/* ==========================================================================
   Eleven Pillars Book – V2 Modern Landing Page
   Sans-serif, gradients, glassmorphism, 2026 aesthetic
   Colors: Off-white #FAF9F6, Charcoal #1A1A2E, Oxblood #6B1C23
   Accent gradient: Oxblood → warm rose
   ========================================================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
  color: #1A1A2E;
  background-color: #FAF9F6;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

/* --- Ambient background blobs --- */
body::before,
body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

body::before {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(107, 28, 35, 0.08) 0%, transparent 70%);
}

body::after {
  width: 500px;
  height: 500px;
  bottom: -150px;
  left: -150px;
  background: radial-gradient(circle, rgba(180, 80, 60, 0.06) 0%, transparent 70%);
}

/* --- Skip link (accessibility) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: #6B1C23;
  color: #FAF9F6;
  padding: 0.5rem 1rem;
  border-radius: 0 0 8px 8px;
  z-index: 1000;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

.skip-link:focus {
  top: 0;
}

/* --- Layout container --- */
.container {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* --- Header / Nav --- */
.site-header {
  padding: 1.25rem 0;
  position: relative;
  z-index: 10;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-title {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1A1A2E;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-title:hover {
  color: #6B1C23;
}

.site-nav {
  display: flex;
  gap: 0.25rem;
}

.site-nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #5A5A6E;
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-radius: 100px;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus {
  background: rgba(107, 28, 35, 0.08);
  color: #6B1C23;
}

/* --- Header Social Icons --- */
.header-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
}

.header-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #6E6E80;
  background: rgba(107, 28, 35, 0.06);
  border: 1px solid rgba(107, 28, 35, 0.1);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.2s ease;
}

.header-social a:hover,
.header-social a:focus {
  background: #6B1C23;
  color: #FAF9F6;
  border-color: #6B1C23;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(107, 28, 35, 0.25);
}

.header-social svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* --- Mobile Menu Toggle --- */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 5px;
  z-index: 100;
}

.menu-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #1A1A2E;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Mobile Navigation Drawer --- */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 70%;
  max-width: 320px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid rgba(107, 28, 35, 0.1);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(107, 28, 35, 0.1);
}

.mobile-nav-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1A1A2E;
}

.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(107, 28, 35, 0.06);
  border: 1px solid rgba(107, 28, 35, 0.1);
  border-radius: 50%;
  cursor: pointer;
  color: #1A1A2E;
  transition: all 0.2s ease;
}

.mobile-nav-close:hover,
.mobile-nav-close:focus {
  background: #6B1C23;
  color: #FAF9F6;
  border-color: #6B1C23;
}

.mobile-nav-close svg {
  width: 20px;
  height: 20px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.mobile-nav-links a {
  font-size: 1.125rem;
  font-weight: 500;
  color: #1A1A2E;
  text-decoration: none;
  padding: 0.875rem 1rem;
  border-radius: 12px;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:focus {
  background: rgba(107, 28, 35, 0.08);
  color: #6B1C23;
}

.mobile-nav-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding-top: 1.5rem;
  margin-top: auto;
  border-top: 1px solid rgba(107, 28, 35, 0.1);
}

.mobile-nav-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #6E6E80;
  background: rgba(107, 28, 35, 0.06);
  border: 1px solid rgba(107, 28, 35, 0.1);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobile-nav-social a:hover,
.mobile-nav-social a:focus {
  background: #6B1C23;
  color: #FAF9F6;
  border-color: #6B1C23;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(107, 28, 35, 0.25);
}

.mobile-nav-social svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* --- Mobile Overlay --- */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

/* --- Hero Section --- */
.hero {
  padding: 4rem 0 2rem;
  text-align: center;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6B1C23;
  background: linear-gradient(135deg, rgba(107, 28, 35, 0.1) 0%, rgba(180, 80, 60, 0.08) 100%);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  border: 1px solid rgba(107, 28, 35, 0.12);
}

.hero-book-link {
  display: block;
  width: auto;
  max-width: min(640px, 100%);
  text-decoration: none;
  border-radius: 4px;
  overflow: hidden;
  line-height: 0;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.04),
    0 16px 40px rgba(107, 28, 35, 0.12),
    0 24px 60px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.hero-book-link:hover,
.hero-book-link:focus {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.06),
    0 24px 60px rgba(107, 28, 35, 0.18),
    0 32px 80px rgba(0, 0, 0, 0.08);
}

.hero-book {
  display: block;
  width: 100%;
  height: auto;
  max-height: 750px;
  object-fit: contain;
}

.hero-title {
  margin-top: 2.5rem;
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #1A1A2E;
}

.hero-title-accent {
  background: linear-gradient(135deg, #6B1C23 0%, #A13340 50%, #B4503C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  margin-top: 0.75rem;
  font-size: 1.125rem;
  font-weight: 400;
  color: #6E6E80;
  line-height: 1.5;
}

/* --- Buy Links --- */
.buy-section {
  padding: 1.5rem 0 3rem;
  text-align: center;
}

.buy-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8E8E9E;
  margin-bottom: 1rem;
}

.buy-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.buy-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #6B1C23;
  text-decoration: none;
  background: rgba(107, 28, 35, 0.06);
  border: 1px solid rgba(107, 28, 35, 0.1);
  border-radius: 100px;
  transition: all 0.2s ease;
}

.buy-links a:hover,
.buy-links a:focus {
  background: #6B1C23;
  color: #FAF9F6;
  border-color: #6B1C23;
  box-shadow: 0 4px 12px rgba(107, 28, 35, 0.25);
  transform: translateY(-1px);
}

/* --- Divider --- */
.divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #6B1C23, #B4503C);
  margin: 0 auto;
  border: none;
  border-radius: 2px;
  opacity: 0.4;
}

/* --- Glass card component --- */
.glass-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
}

/* --- About Section --- */
.about {
  padding: 3.5rem 0;
  text-align: center;
}

.about .glass-card {
  max-width: 600px;
  margin: 0 auto;
}

.about h2 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: #1A1A2E;
}

.about p {
  font-size: 1rem;
  line-height: 1.75;
  color: #4A4A5E;
  margin-bottom: 0.75rem;
}

.about p:last-of-type {
  margin-bottom: 0;
}

/* --- About: Read More Expandable --- */
.about-expanded {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease, margin 0.4s ease;
  margin-top: 0;
  text-align: left;
}

.about-expanded.is-open {
  max-height: 800px;
  opacity: 1;
  margin-top: 1rem;
}

.about-expanded p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #4A4A5E;
  margin-bottom: 0.625rem;
  text-align: left;
}

.about-expanded p:last-child {
  margin-bottom: 0;
}

.about-expanded ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.625rem 0;
}

.about-expanded ul li {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #4A4A5E;
  padding-left: 1.25rem;
  position: relative;
  text-align: left;
}

.about-expanded ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #6B1C23;
}

.read-more-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6B1C23;
  background: transparent;
  border: 1.5px solid #6B1C23;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.02em;
}

.read-more-btn:hover {
  background: #6B1C23;
  color: #fff;
}

/* --- Reviews Mini Block (Landing Page) --- */
.reviews-mini {
  padding: 3.5rem 0;
  text-align: center;
}

.reviews-mini-card {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reviews-mini-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.reviews-mini-header svg {
  width: 22px;
  height: 22px;
  color: #6B1C23;
  opacity: 0.7;
}

.reviews-mini-header h2 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1A1A2E;
}

.reviews-mini-desc {
  font-size: 0.9375rem;
  color: #6E6E80;
  margin-bottom: 1.25rem;
}

.reviews-mini-flags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}

.reviews-mini-flags a {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1A1A2E;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.reviews-mini-flags a:hover,
.reviews-mini-flags a:focus {
  border-color: rgba(107, 28, 35, 0.25);
  box-shadow: 0 4px 12px rgba(107, 28, 35, 0.1);
  transform: translateY(-2px);
}

.reviews-mini-flags a .flag-emoji {
  font-size: 1.125rem;
  line-height: 1;
}

.reviews-mini-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #6B1C23;
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(107, 28, 35, 0.2);
  border-radius: 100px;
  transition: all 0.2s ease;
}

.reviews-mini-link:hover,
.reviews-mini-link:focus {
  background: rgba(107, 28, 35, 0.06);
  border-color: #6B1C23;
  transform: translateY(-1px);
}

.reviews-mini-link svg {
  width: 14px;
  height: 14px;
}

/* --- Newsletter Section --- */
.newsletter {
  padding: 3.5rem 0;
  text-align: center;
}

.newsletter .glass-card {
  max-width: 520px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(107, 28, 35, 0.04) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(180, 80, 60, 0.03) 100%);
}

.newsletter h2 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: #1A1A2E;
}

.newsletter p {
  font-size: 0.9375rem;
  color: #6E6E80;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.8rem 1rem;
  font-family: inherit;
  font-size: 0.9375rem;
  color: #1A1A2E;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-form input[type="email"]:focus {
  border-color: #6B1C23;
  box-shadow: 0 0 0 3px rgba(107, 28, 35, 0.12);
}

.newsletter-form input[type="email"]::placeholder {
  color: #B0B0BE;
}

.newsletter-form button {
  padding: 0.8rem 1.75rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #FAF9F6;
  background: linear-gradient(135deg, #6B1C23 0%, #8B2830 50%, #A13340 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(107, 28, 35, 0.2);
}

.newsletter-form button:hover,
.newsletter-form button:focus {
  background: linear-gradient(135deg, #4A1219 0%, #6B1C23 50%, #8B2830 100%);
  box-shadow: 0 4px 16px rgba(107, 28, 35, 0.35);
  transform: translateY(-1px);
}

.newsletter-success {
  display: none;
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: #6B1C23;
  font-weight: 500;
}

.newsletter-success.visible {
  display: block;
}

/* --- Contact Section --- */
.contact {
  padding: 3.5rem 0;
  text-align: center;
}

.contact h2 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: #1A1A2E;
}

.contact p {
  font-size: 0.9375rem;
  color: #6E6E80;
  margin-bottom: 1rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #6B1C23;
  text-decoration: none;
  padding: 0.6rem 1.25rem;
  border: 1px solid rgba(107, 28, 35, 0.2);
  border-radius: 100px;
  transition: all 0.2s ease;
}

.contact-link:hover,
.contact-link:focus {
  background: rgba(107, 28, 35, 0.06);
  border-color: #6B1C23;
  transform: translateY(-1px);
}

.contact-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* --- Footer --- */
.site-footer {
  margin-top: auto;
  padding: 2.5rem 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.site-footer p {
  font-size: 0.75rem;
  color: #B0B0BE;
  letter-spacing: 0.03em;
}

/* --- Social Media Icons --- */
.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #6E6E80;
  background: rgba(107, 28, 35, 0.06);
  border: 1px solid rgba(107, 28, 35, 0.1);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-links a:hover,
.social-links a:focus {
  background: #6B1C23;
  color: #FAF9F6;
  border-color: #6B1C23;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(107, 28, 35, 0.25);
}

.social-links svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* --- Focus styles (accessibility) --- */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid #6B1C23;
  outline-offset: 2px;
}

/* --- Selection --- */
::selection {
  background: rgba(107, 28, 35, 0.15);
  color: #1A1A2E;
}

/* --- Fade-in on scroll --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delays */
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* --- Screen reader only (accessibility) --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* Small screens */
@media (max-width: 480px) {
  .hero {
    padding: 2.5rem 0 1.5rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-book-link {
    max-width: min(420px, 100%);
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input[type="email"],
  .newsletter-form button {
    width: 100%;
  }

  .buy-links {
    gap: 0.375rem;
  }

  .buy-links a {
    padding: 0.4rem 0.75rem;
    font-size: 0.8125rem;
  }

  .site-nav {
    gap: 0;
  }

  .site-nav a {
    font-size: 0.75rem;
    padding: 0.35rem 0.5rem;
  }

  .glass-card {
    padding: 1.75rem 1.25rem;
    border-radius: 12px;
  }

  .about,
  .newsletter,
  .contact {
    padding: 2.5rem 0;
  }
}

/* Medium screens */
@media (min-width: 481px) and (max-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }

  .hero-book-link {
    max-width: min(520px, 100%);
  }
}

/* Mobile navigation - breakpoint at 768px */
@media (max-width: 768px) {
  .site-nav {
    display: none;
  }
  
  .site-header .container {
    justify-content: space-between;
  }
  
  .header-social {
    margin-left: auto;
    margin-right: 0.75rem;
  }
  
  .header-social a {
    width: 28px;
    height: 28px;
  }
  
  .header-social svg {
    width: 14px;
    height: 14px;
  }
  
  .menu-toggle {
    display: flex;
  }
}

/* Large screens */
@media (min-width: 769px) {
  .mobile-nav,
  .mobile-overlay {
    display: none !important;
  }
  
  .menu-toggle {
    display: none !important;
  }
  
  .hero {
    padding: 5rem 0 2.5rem;
  }

  .hero-book-link {
    max-width: min(680px, 100%);
  }

  .hero-title {
    font-size: 3rem;
  }

  .about,
  .newsletter,
  .contact {
    padding: 4rem 0;
  }
}
