:root {
  --cream: #FBF6EF;
  --cream-dark: #F3E7D8;
  --blush: #EFD3CC;
  --blush-deep: #D99C90;
  --sage: #B7C4A9;
  --sage-deep: #7C9070;
  --terracotta: #C87B52;
  --gold: #D9A441;
  --charcoal: #3A342C;
  --charcoal-soft: #6B6155;
  --white: #FFFFFF;
  --shadow: 0 20px 45px -25px rgba(58, 52, 44, 0.35);
  --radius: 22px;
  --serif: "Fraunces", serif;
  --sans: "Jost", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  margin: 0;
  color: var(--charcoal);
}

p { line-height: 1.7; margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.script { font-style: italic; color: var(--terracotta); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 14px 30px -12px rgba(200, 123, 82, 0.6);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -12px rgba(200, 123, 82, 0.7); }
.btn-outline {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); transform: translateY(-3px); }
.btn-full { width: 100%; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.navbar.scrolled {
  background: rgba(251, 246, 239, 0.9);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 8px 24px -16px rgba(58,52,44,0.3);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--charcoal);
}
.logo-mark { color: var(--terracotta); font-size: 1.4rem; }
.nav-links {
  display: flex;
  gap: 30px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal-soft);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--terracotta);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: 11px 26px; font-size: 0.88rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 80px;
  overflow: hidden;
  background: radial-gradient(circle at 20% 20%, var(--cream-dark), var(--cream) 60%);
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.55;
  z-index: 0;
  animation: float 12s ease-in-out infinite;
}
.blob-1 { width: 420px; height: 420px; background: var(--blush); top: -120px; right: -100px; }
.blob-2 { width: 320px; height: 320px; background: var(--sage); bottom: -100px; left: -80px; animation-delay: -4s; }
.blob-3 { width: 200px; height: 200px; background: var(--gold); opacity: 0.25; top: 30%; left: 8%; animation-delay: -8s; }
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-24px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
}
.eyebrow, .section-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 600;
  margin-bottom: 18px;
  display: block;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.08rem;
  color: var(--charcoal-soft);
  max-width: 600px;
  margin: 0 auto 36px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stats div { text-align: center; }
.hero-stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--terracotta);
}
.hero-stats span {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.scroll-cue span {
  width: 1px; height: 34px;
  background: var(--charcoal-soft);
  position: relative;
  overflow: hidden;
}
.scroll-cue span::after {
  content: "";
  position: absolute;
  top: -100%; left: 0; right: 0;
  height: 100%;
  background: var(--terracotta);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% { top: -100%; }
  60%, 100% { top: 100%; }
}
.scroll-cue p {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}

/* ---------- Section shared ---------- */
section { padding: 110px 24px; }
.section-head {
  max-width: 640px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-bottom: 14px; }
.section-sub { color: var(--charcoal-soft); font-size: 1.02rem; }
.section-sub.light { color: rgba(251,246,239,0.78); }
.section-eyebrow.light { color: var(--gold); }

/* ---------- About strip ---------- */
.about-strip { background: var(--white); padding: 90px 24px; }
.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about-text { max-width: 560px; }
.about-text h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin: 14px 0 18px; }
.about-text p { color: var(--charcoal-soft); }
.about-flowers {
  display: flex;
  gap: 18px;
  font-size: 3rem;
  color: var(--blush-deep);
}
.about-flowers span:nth-child(2) { color: var(--sage-deep); }
.about-flowers span:nth-child(3) { color: var(--gold); }

/* ---------- Ecosystem / Bloom cards ---------- */
.ecosystem { max-width: 1240px; margin: 0 auto; }
.bloom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.bloom-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent, var(--terracotta));
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.bloom-card:hover { transform: translateY(-8px); box-shadow: 0 28px 50px -22px rgba(58,52,44,0.4); }
.bloom-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--accent-soft, var(--blush));
  color: var(--accent, var(--terracotta));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.bloom-icon svg { width: 28px; height: 28px; }
.bloom-tag {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent, var(--terracotta));
  font-weight: 600;
  margin-bottom: 8px;
}
.bloom-card h3 { font-size: 1.4rem; margin-bottom: 16px; }
.bloom-card ul li {
  padding: 7px 0 7px 22px;
  position: relative;
  color: var(--charcoal-soft);
  font-size: 0.94rem;
  border-top: 1px dashed rgba(58,52,44,0.1);
}
.bloom-card ul li:first-child { border-top: none; }
.bloom-card ul li::before {
  content: "✿";
  position: absolute;
  left: 0; top: 7px;
  color: var(--accent, var(--terracotta));
  font-size: 0.7rem;
}

/* ---------- Progress section ---------- */
.progress-section {
  background: linear-gradient(160deg, var(--charcoal), #4A4238);
  color: var(--cream);
}
.progress-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.progress-copy h2 { color: var(--cream); font-size: clamp(1.9rem, 3.4vw, 2.5rem); margin: 14px 0 16px; }
.score-ring-wrap {
  position: relative;
  width: 160px;
  height: 160px;
  margin-top: 40px;
}
.score-ring { width: 160px; height: 160px; transform: rotate(-90deg); }
.ring-track {
  fill: none;
  stroke: rgba(251,246,239,0.14);
  stroke-width: 12;
}
.ring-fill {
  fill: none;
  stroke: var(--gold);
  stroke-width: 12;
  stroke-linecap: round;
  stroke-dasharray: 439.8;
  stroke-dashoffset: 439.8;
  transition: stroke-dashoffset 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.score-ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.score-ring-label strong { font-family: var(--serif); font-size: 2.4rem; color: var(--cream); }
.score-ring-label span { font-size: 0.8rem; color: rgba(251,246,239,0.6); }

.score-bars { display: flex; flex-direction: column; gap: 20px; }
.score-row-top {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  margin-bottom: 8px;
  color: rgba(251,246,239,0.85);
}
.score-row-top em { font-style: normal; color: var(--gold); font-weight: 600; }
.bar {
  width: 100%;
  height: 10px;
  background: rgba(251,246,239,0.12);
  border-radius: 999px;
  overflow: hidden;
}
.bar i {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 999px;
  transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.total-row { margin-top: 6px; padding-top: 14px; border-top: 1px solid rgba(251,246,239,0.18); }
.total-row .score-row-top span, .total-row .score-row-top em { font-weight: 700; font-size: 1.02rem; }

/* ---------- Kitchen ---------- */
.kitchen { background: var(--blush); }
.kitchen-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--terracotta);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}
.kitchen h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 14px; }
.kitchen .section-sub { margin-bottom: 48px; }
.kitchen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}
.kitchen-item {
  background: var(--white);
  border-radius: 18px;
  padding: 28px 16px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}
.kitchen-item:hover { transform: translateY(-6px); }
.kitchen-item span { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.kitchen-item p { font-size: 0.9rem; color: var(--charcoal-soft); font-weight: 500; }

/* ---------- Testimonials ---------- */
.testimonials { max-width: 1100px; margin: 0 auto; }
.testimonial-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.testimonial-card {
  background: var(--cream-dark);
  border-radius: var(--radius);
  padding: 34px 30px;
}
.testimonial-card p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--charcoal);
  margin-bottom: 18px;
}
.testimonial-card span {
  font-size: 0.82rem;
  color: var(--sage-deep);
  font-weight: 600;
}

/* ---------- Booking ---------- */
.booking { background: var(--white); }
.booking-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.booking-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); margin: 14px 0 16px; }
.booking-list { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.booking-list li { color: var(--charcoal-soft); font-size: 0.95rem; }
.booking-list strong { color: var(--charcoal); margin-right: 6px; }
.booking-form {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow);
}
.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal-soft);
}
.booking-form input, .booking-form select {
  font-family: var(--sans);
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid rgba(58,52,44,0.14);
  background: var(--white);
  font-size: 0.95rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.25s ease;
}
.booking-form input:focus, .booking-form select:focus { border-color: var(--terracotta); }
.form-success {
  display: none;
  text-align: center;
  font-size: 0.9rem;
  color: var(--sage-deep);
  font-weight: 500;
}
.form-success.show { display: block; }

/* ---------- Footer ---------- */
.footer { background: var(--charcoal); color: rgba(251,246,239,0.75); padding: 70px 24px 0; }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(251,246,239,0.12);
}
.footer-brand .logo { color: var(--cream); margin-bottom: 10px; }
.footer-brand p { font-size: 0.85rem; }
.footer-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-cols h4 { color: var(--cream); font-family: var(--sans); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-cols a { display: block; font-size: 0.9rem; margin-bottom: 10px; color: rgba(251,246,239,0.7); transition: color 0.2s ease; }
.footer-cols a:hover { color: var(--gold); }
.socials { display: flex; gap: 14px; margin-top: 6px; }
.socials a { font-size: 1.2rem; margin: 0; }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding: 24px 0; text-align: center; font-size: 0.8rem; }

/* ---------- Bloom Fuel scan button ---------- */
.btn-scan {
  margin-top: 24px;
  width: 100%;
  background: var(--accent, var(--terracotta));
  color: var(--white);
  gap: 8px;
  box-shadow: 0 14px 30px -14px rgba(200, 123, 82, 0.55);
}
.btn-scan:hover { transform: translateY(-3px); }

/* ---------- Scanner modal ---------- */
.scanner-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(58, 52, 44, 0.55);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.scanner-overlay.open { display: flex; }
.scanner-modal {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 36px;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.5);
  animation: modalIn 0.35s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.scanner-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--charcoal-soft);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.scanner-close:hover { background: var(--terracotta); color: var(--white); }
.scanner-head h3 {
  font-size: 1.5rem;
  margin: 8px 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.beta-tag {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--sage);
  color: var(--charcoal);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}
.scanner-hint { color: var(--charcoal-soft); font-size: 0.92rem; margin-bottom: 24px; }

.camera-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--cream-dark);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.camera-frame video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: none;
}
.camera-frame video.active { display: block; }
.camera-placeholder {
  text-align: center;
  color: var(--charcoal-soft);
  padding: 20px;
}
.camera-placeholder span { font-size: 2.4rem; display: block; margin-bottom: 10px; }
.camera-placeholder p { font-size: 0.88rem; max-width: 220px; margin: 0 auto; }
.camera-frame.hide-placeholder .camera-placeholder { display: none; }

.scanner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.scanner-actions .btn { flex: 1; min-width: 140px; padding: 13px 18px; font-size: 0.88rem; }
.upload-label { display: inline-flex; align-items: center; justify-content: center; }
.scanner-error {
  color: var(--terracotta);
  font-size: 0.85rem;
  margin-top: 14px;
  display: none;
}
.scanner-error.show { display: block; }

.captured-preview {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.captured-preview.small { width: 120px; aspect-ratio: 1 / 1; border-radius: 14px; flex-shrink: 0; }

.analyzing-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}
.analyzing-spinner {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 3px solid var(--cream-dark);
  border-top-color: var(--terracotta);
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.analyzing-box p { color: var(--charcoal-soft); font-size: 0.92rem; }

.results-top {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
}
.score-ring.small { width: 110px; height: 110px; }
.health-score-ring-wrap { position: relative; width: 110px; height: 110px; }
.health-score-ring-wrap .ring-fill {
  stroke: var(--gold);
  stroke-dasharray: 439.8;
  stroke-dashoffset: 439.8;
}
.health-score-ring-wrap .ring-track { stroke: var(--cream-dark); }
.health-score-ring-wrap .ring-fill.unknown { stroke: var(--charcoal-soft); opacity: 0.35; }
.score-ring-label.dark strong { color: var(--charcoal); font-size: 1.9rem; }
.score-ring-label.dark span { color: var(--charcoal-soft); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; }

.meal-verdict {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 22px;
}

.nutrient-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}
.nutrient-item {
  background: var(--white);
  border-radius: 14px;
  padding: 14px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nutrient-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--charcoal-soft); }
.nutrient-value { font-family: var(--serif); font-size: 1.4rem; color: var(--terracotta); }
.nutrient-unit { font-size: 0.7rem; color: var(--charcoal-soft); }
.nutrient-value.unknown { font-family: var(--sans); font-size: 0.82rem; color: var(--charcoal-soft); font-weight: 500; }

.score-row-scan .score-row-top { color: var(--charcoal-soft); }
.score-row-scan .score-row-top em { color: var(--sage-deep); font-weight: 600; }
.score-row-scan .bar { background: var(--cream-dark); }

.scanner-disclaimer {
  font-size: 0.76rem;
  color: var(--charcoal-soft);
  margin-top: 18px;
  text-align: center;
  opacity: 0.8;
}

@media (max-width: 560px) {
  .scanner-modal { padding: 30px 22px; }
  .nutrient-grid { grid-template-columns: repeat(2, 1fr); }
  .results-top { flex-direction: column; text-align: center; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .progress-inner, .booking-inner { grid-template-columns: 1fr; }
  .about-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 900px) {
  .navbar.menu-active {
    background: rgba(251, 246, 239, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
  }
  .nav-inner.menu-open { flex-wrap: wrap; }
  .nav-inner.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    order: 10;
    gap: 18px;
    padding: 24px 0 8px;
  }
  .nav-inner.menu-open .nav-cta {
    display: inline-flex;
    order: 11;
    width: 100%;
    margin: 0 0 12px;
  }
}

@media (max-width: 560px) {
  section { padding: 80px 20px; }
  .hero { padding-top: 120px; }
  .hero-stats { gap: 28px; }
}
