/* ============================================================
   K&M AUTO SPA — site.css
   Design system: Ferrari.com extraction ("cavallino rampante on
   black marble") re-accented in K&M gold — black void, white
   uppercase tracked type, #ebc738 (sampled from the K&M logo)
   for interactive states only, zero radius, hairlines.
   ============================================================ */

:root {
  /* Colors */
  --oro: #ebc738;
  --oro-dark: #9a7b12;
  --bianco: #ffffff;
  --nero: #000000;
  --notte: #181818;
  --grafite: #303030;
  --fumo: #8f8f8f;
  --piombo: #666666;
  --argento: #d2d2d2;

  /* Type */
  --font: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --track-wide: 0.091em;
  --track-label: 0.083em;
  --track-display: 0.02em;

  /* Layout */
  --page-max: 1440px;
  --gutter: clamp(20px, 4vw, 60px);
  --nav-h: 64px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

:root { color-scheme: dark; }

body {
  font-family: var(--font);
  font-size: 13px;
  line-height: 1.78;
  font-weight: 400;
  color: var(--bianco);
  background: var(--nero);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--oro); color: var(--nero); }

:focus-visible {
  outline: 1px solid var(--oro);
  outline-offset: 3px;
}

/* ---------- Anti-dither treatment (house rule) ----------
   Never a perfectly flat dark solid across a full-width section:
   every dark section = imperceptible 2-stop gradient + SVG
   fractal-noise overlay so display-pipeline dithering has no
   flat field to latch onto. */
.noise-overlay {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  position: absolute;
  inset: 0;
  opacity: 0.035;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.sec-void {
  position: relative;
  background: linear-gradient(180deg, #000000 0%, #070707 62%, #030303 100%);
}
.sec-night {
  position: relative;
  background: linear-gradient(180deg, #1a1a1a 0%, #151515 100%);
}
.sec-void > .sec-inner,
.sec-night > .sec-inner { position: relative; z-index: 1; }
/* mix-blend compositing is a hotspot on mobile GPUs; the dither
   artifact this masks is a desktop display-pipeline issue, so
   phones get a cheap plain-opacity noise instead. */
@media (max-width: 768px) {
  .noise-overlay { mix-blend-mode: normal; opacity: 0.02; }
}

/* ---------- Type utilities ---------- */
.label {
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: var(--track-wide);
  line-height: 1.78;
  color: var(--fumo);
}
.display {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--track-display);
  line-height: 1.25;
  color: var(--bianco);
}
.display--lg { font-size: clamp(22px, 3.4vw, 40px); }
.display--md { font-size: clamp(17px, 1.8vw, 22px); }
.display--sm { font-size: 16px; letter-spacing: 0.03em; }
.body-copy { font-size: 13px; line-height: 1.78; color: var(--argento); }
.body-muted { color: var(--fumo); }

.hairline { border: 0; border-top: 1px solid var(--grafite); }

/* ---------- Links / CTAs ---------- */
.arrow-link {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: var(--track-label);
  color: var(--bianco);
  padding: 5px 0;
  transition: color 0.25s ease;
}
.arrow-link .arr { display: inline-block; transition: transform 0.25s ease; margin-left: 6px; }
.arrow-link:hover, .arrow-link:focus-visible { color: var(--oro); }
.arrow-link:hover .arr { transform: translateX(4px); }

.ghost-btn {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: var(--track-label);
  color: var(--bianco);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 0;
  padding: 14px 32px;
  transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}
.ghost-btn:hover, .ghost-btn:focus-visible {
  color: var(--oro);
  border-color: var(--oro);
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
section { scroll-margin-top: calc(var(--nav-h) + 8px); }

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 200;
  background: var(--nero);
  border: 1px solid var(--grafite);
  padding: 10px 18px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--track-label);
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.35s ease, border-color 0.35s ease;
}
.nav--solid {
  background: linear-gradient(180deg, rgba(0,0,0,0.96), rgba(4,4,4,0.96));
  border-bottom-color: var(--grafite);
}
.nav-inner {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--bianco);
  white-space: nowrap;
  transition: color 0.25s ease;
}
.wordmark-logo {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: cover;
  border: 1px solid var(--grafite);
  flex: none;
}
.footer .wordmark-logo { width: 40px; height: 40px; }
.wordmark span { color: var(--fumo); font-weight: 400; }
.wordmark:hover, .wordmark:focus-visible { color: var(--oro); }
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
}
.nav-link {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--track-label);
  color: var(--bianco);
  padding: 5px 0;
  transition: color 0.25s ease;
}
.nav-link:hover, .nav-link:focus-visible { color: var(--oro); }
.nav-cta { border-bottom: 1px solid rgba(255,255,255,0.5); padding-bottom: 4px; }
.nav-cta:hover, .nav-cta:focus-visible { border-bottom-color: var(--oro); }

.menu-btn {
  display: none;
  width: 40px; height: 40px;
  position: relative;
}
.menu-btn .bar {
  position: absolute;
  left: 9px; right: 9px;
  height: 1px;
  background: var(--bianco);
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.25s ease;
}
.menu-btn .bar:nth-child(1) { top: 15px; }
.menu-btn .bar:nth-child(2) { top: 20px; }
.menu-btn .bar:nth-child(3) { top: 25px; }
.menu-btn:hover .bar { background: var(--oro); }
.menu-btn[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-btn[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: linear-gradient(180deg, #000000, #0a0a0a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--track-label);
  color: var(--bianco);
  transition: color 0.25s ease;
}
.mobile-menu a:hover, .mobile-menu a:focus-visible { color: var(--oro); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--nero);
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media video,
.hero-media .hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-media video.active,
.hero-media .hero-poster.active { opacity: 1; }
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.30) 48%, rgba(0,0,0,0.42) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 28%, rgba(0,0,0,0) 58%, rgba(0,0,0,0.60) 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: clamp(36px, 5vw, 90px);
  align-items: center;
  max-width: var(--page-max);
  margin-inline: auto;
  min-height: 100vh;
  min-height: 100svh;
  padding: calc(var(--nav-h) + 44px) var(--gutter) 110px;
}
.hero-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: var(--track-wide);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(46px, 6.4vw, 88px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  line-height: 1.02;
  color: var(--bianco);
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  max-width: 46ch;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(16px, 3vw, 36px);
  flex-wrap: wrap;
}

/* ---------- Hero quote panel ---------- */
.quote-panel {
  background: rgba(0, 0, 0, 0.68);
  border: 1px solid var(--grafite);
  padding: clamp(26px, 2.6vw, 36px);
}
.quote-title {
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--bianco);
  margin-bottom: 6px;
}
.quote-sub {
  font-size: 13px;
  line-height: 1.6;
  color: var(--fumo);
  margin-bottom: 10px;
}
.q-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: var(--track-wide);
  color: var(--fumo);
  margin-top: 20px;
  margin-bottom: 2px;
}
.q-input {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #4a4a4a;
  border-radius: 0;
  color: var(--bianco);
  font-family: var(--font);
  font-size: 16px;      /* ≥16px prevents iOS focus zoom */
  line-height: 1.4;
  padding: 8px 2px;
  transition: border-color 0.25s ease;
}
.q-input:focus {
  outline: none;
  border-bottom-color: var(--oro);
}
.q-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M0 0l5 6 5-6z' fill='%23ffffff'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
  cursor: pointer;
}
.q-submit {
  width: 100%;
  margin-top: 30px;
  text-align: center;
}
.q-note {
  font-size: 11px;
  line-height: 1.6;
  color: var(--piombo);
  margin-top: 14px;
  text-align: center;
}
.hero-dots {
  position: absolute;
  left: 0; right: 0;
  bottom: 36px;
  display: flex;
  justify-content: center;
  gap: 14px;
  z-index: 3;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 0;               /* geometric, zero radius */
  background: var(--fumo);
  padding: 0;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.hero-dot:hover { background: var(--bianco); }
.hero-dot[aria-current="true"] { background: var(--oro); transform: scale(1.25); }
.hero.no-motion .hero-dots { display: none; }

/* ---------- Manifesto ---------- */
.manifesto { padding: clamp(80px, 11vw, 150px) 0; text-align: center; }
.manifesto .label { margin-bottom: 22px; }
.manifesto-line {
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 24px;
}
.manifesto-copy {
  max-width: 620px;
  margin-inline: auto;
  color: var(--fumo);
}

/* ---------- Programs ---------- */
.programs { padding: clamp(72px, 9vw, 128px) 0; }
.sec-head { text-align: center; margin-bottom: clamp(44px, 6vw, 72px); }
.sec-head .label { margin-bottom: 16px; }
.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;                        /* hairline gutters via bg */
  background: var(--grafite);
  border: 1px solid var(--grafite);
}
.program-card {
  background: linear-gradient(180deg, #191919, #141414);
  position: relative;
  display: flex;
  flex-direction: column;
}
.program-card .noise-overlay { z-index: 0; }
.program-media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.program-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease, opacity 0.4s ease;
}
.program-card:hover .program-media img { transform: scale(1.035); }
.program-body {
  position: relative;
  z-index: 1;
  padding: 28px clamp(20px, 2.4vw, 32px) 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.program-body .num {
  font-size: 11px;
  letter-spacing: var(--track-wide);
  color: var(--piombo);
  text-transform: uppercase;
}
.program-body h3 { margin-bottom: 2px; }
.program-body p { color: var(--fumo); }
.program-body .arrow-link { margin-top: auto; }

/* ---------- Services collapse (phones/tablets) ---------- */
.services-more { display: none; }
.services-more[hidden] { display: none; }
@media (max-width: 900px) {
  .program-grid.collapsed .program-card:nth-child(n + 4) { display: none; }
  .services-more {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
  .services-more[hidden] { display: none; }
}

/* ---------- Stats ---------- */
.stats { padding: clamp(64px, 8vw, 110px) 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  text-align: center;
  padding: 10px 18px;
  border-left: 1px solid var(--grafite);
}
.stat:first-child { border-left: 0; }
.stat-value {
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--bianco);
  line-height: 1.2;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--track-wide);
  color: var(--fumo);
}

/* ---------- Method (full-bleed panel) ---------- */
.method {
  position: relative;
  min-height: min(88vh, 780px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--nero);
}
.method-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.method-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.78) 100%);
}
.method-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(56px, 8vw, 110px) var(--gutter);
  max-width: var(--page-max);
  margin-inline: auto;
}
.method-content .label { margin-bottom: 14px; color: rgba(255,255,255,0.75); }
.method-content h2 { margin-bottom: 16px; }
.method-copy { max-width: 520px; color: var(--argento); margin-bottom: 22px; }

/* ---------- Reviews ---------- */
.reviews { padding: clamp(72px, 9vw, 128px) 0; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.review {
  padding: 8px clamp(20px, 2.6vw, 40px);
  border-left: 1px solid var(--grafite);
  text-align: left;
}
.review:first-child { border-left: 0; }
.review blockquote {
  color: var(--argento);
  margin-bottom: 18px;
}
.review .who {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--track-wide);
  color: var(--fumo);
}
.review .stars {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--bianco);
  margin-bottom: 14px;
}

/* ---------- Pricing ---------- */
.pricing { padding: clamp(72px, 9vw, 128px) 0; }
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--grafite);
  border: 1px solid var(--grafite);
}
.price-card {
  position: relative;
  background: linear-gradient(180deg, #191919, #141414);
  padding: clamp(28px, 3vw, 40px) clamp(22px, 2.6vw, 36px);
  display: flex;
  flex-direction: column;
}
.price-card .noise-overlay { z-index: 0; }
.price-card > * { position: relative; z-index: 1; }
.price-tag {
  /* The system's single rounded element: 9999px pill */
  position: absolute;
  top: 18px; right: 18px;
  border: 1px solid var(--bianco);
  border-radius: 9999px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: var(--track-wide);
  padding: 4px 12px;
  color: var(--bianco);
  z-index: 2;
}
.price-name {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: var(--track-wide);
  color: var(--fumo);
  margin-bottom: 18px;
}
.price-value {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 4px;
}
.price-per {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--track-label);
  color: var(--piombo);
  margin-bottom: 26px;
}
.price-feats { margin-bottom: 30px; }
.price-feats li {
  padding: 11px 0;
  border-top: 1px solid var(--grafite);
  color: var(--argento);
  font-size: 13px;
}
.price-feats li:last-child { border-bottom: 1px solid var(--grafite); }
.price-card .ghost-btn { margin-top: auto; text-align: center; }
.price-note {
  text-align: center;
  margin-top: 26px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--track-label);
  color: var(--piombo);
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  min-height: min(72vh, 640px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--nero);
}
.cta-band video, .cta-band .cta-poster {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.cta-scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
}
.cta-content {
  position: relative;
  z-index: 1;
  padding: 90px var(--gutter);
}
.cta-content .label { margin-bottom: 16px; color: rgba(255,255,255,0.75); }
.cta-content h2 { margin-bottom: 30px; }
.cta-content .hero-ctas { justify-content: center; }

/* ---------- Footer ---------- */
.footer {
  position: relative;
  background: linear-gradient(180deg, #1a1a1a 0%, #141414 100%);
  border-top: 1px solid var(--grafite);
}
.footer-inner {
  position: relative;
  z-index: 1;
  max-width: var(--page-max);
  margin-inline: auto;
  padding: clamp(56px, 7vw, 90px) var(--gutter) 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.footer h4 {
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: var(--track-label);
  color: var(--bianco);
  margin-bottom: 18px;
}
.footer-brand p { color: var(--fumo); max-width: 300px; margin-top: 14px; }
.footer li { margin-bottom: 10px; }
.footer li a, .footer li span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--track-wide);
  color: var(--fumo);
  transition: color 0.25s ease;
}
.footer li a:hover, .footer li a:focus-visible { color: var(--oro); }
.footer-bottom {
  border-top: 1px solid var(--grafite);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: var(--track-wide);
  color: var(--piombo);
}

/* ---------- Mobile sticky CTA bar ---------- */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  display: none;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(180deg, rgba(0,0,0,0.97), rgba(6,6,6,0.97));
  border-top: 1px solid var(--grafite);
  padding-bottom: env(safe-area-inset-bottom, 0);
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.mobile-bar.hidden-bar { transform: translateY(110%); }
.mobile-bar a {
  text-align: center;
  padding: 16px 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: var(--track-label);
  color: var(--bianco);
}
.mobile-bar a + a { border-left: 1px solid var(--grafite); }
.mobile-bar a:active, .mobile-bar a:hover { color: var(--oro); }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: calc(var(--nav-h) + 36px);
    padding-bottom: 96px;
  }
  .quote-panel { max-width: 460px; }
  .program-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; gap: 34px; }
  .review { border-left: 0; padding-inline: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .stat:nth-child(3) { border-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-btn { display: block; }
  .wordmark-logo { width: 40px; height: 40px; }
  .wordmark { gap: 10px; }
  .mobile-bar { display: grid; }
  body { padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px)); }

  /* Mobile readability: the tracked 11-13px system is too small on
     phones — step body copy and labels up one notch. */
  .body-copy, .program-body p, .review blockquote,
  .price-feats li, .footer-brand p, .quote-sub { font-size: 14px; }
  .label, .stat-label, .program-body .num { font-size: 12px; }
  .arrow-link, .nav-link, .price-name { font-size: 13px; }
  .footer li a, .footer li span { font-size: 12px; }
  .hero-eyebrow { font-size: 12px; }
  .hero-title { font-size: clamp(42px, 12vw, 56px); }
  .hero-sub { font-size: 15px; color: rgba(255,255,255,0.94); }
  .q-label { font-size: 11px; }
  .q-note { font-size: 12px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
