/* ============================================================
   MyEscapeRoute — styles.css
   Warm-industrial · proof-first · outcome-led.
   All text pairs WCAG 2.1 verified. Amber = surface/shape color,
   not small-text-on-light (use --c-accent-text for that).
   Sections: 1 Tokens · 2 Reset · 3 Layout · 4 Type · 5 Buttons
   · 6 Header/Nav · 7 Hero · 8 Authority · 9 Cards/Explainer
   · 10 Offers · 11 Method · 12 Proof · 13 Guarantee · 14 FAQ
   · 15 Final CTA · 16 Footer · 17 Motion/Reveal · 18 Responsive
   ============================================================ */

/* ---------------------- 1 · TOKENS ---------------------- */
:root {
  /* Color: raw palette (locked) */
  --c-bg: #FAF8F5;
  --c-ink: #1C1A17;
  --c-accent: #D9651F;
  --c-accent-hover: #C2551A;
  --c-success: #127C5A;
  --c-surface: #F2EDE6;
  --c-card: #FEFCF9;          /* warm card surface — never pure #fff */
  --c-border: #E4DDD2;
  --c-text-secondary: #6B6256;
  --c-on-dark: #FAF8F5;

  /* Color: contrast-fix tokens */
  --c-on-accent: #FFFFFF;
  --c-accent-text: #B34A14;   /* amber small text on light = 4.63:1 */
  --c-success-text: #0F6B4E;  /* emerald small text on sand = 5.2:1 */
  --c-focus: #D9651F;
  --c-surface-on-dark: #26221E;
  --c-text-on-dark-muted: #B9B1A6;

  /* Type families */
  --font-display: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Type scale: fluid clamp() (360 → 1280 vp) */
  --fs-display: clamp(2.5rem, 1.6rem + 4.0vw, 4.75rem);
  --fs-h1:      clamp(2.0rem, 1.45rem + 2.44vw, 3.25rem);
  --fs-h2:      clamp(1.625rem, 1.3rem + 1.46vw, 2.375rem);
  --fs-h3:      clamp(1.25rem, 1.16rem + 0.43vw, 1.5rem);
  --fs-stat:    clamp(2.25rem, 1.5rem + 3.33vw, 3.75rem);
  --fs-lead:    clamp(1.125rem, 1.0rem + 0.55vw, 1.375rem);
  --fs-body:    clamp(1.0rem, 0.98rem + 0.11vw, 1.0625rem);
  --fs-small:   clamp(0.875rem, 0.87rem + 0.05vw, 0.906rem);
  --fs-eyebrow: clamp(0.8125rem, 0.79rem + 0.1vw, 0.875rem);
  --fs-button:  clamp(0.969rem, 0.95rem + 0.11vw, 1.031rem);

  /* Weights */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* Line heights / letter spacing */
  --lh-display: 1.06;
  --lh-heading: 1.1;
  --lh-snug: 1.2;
  --lh-body: 1.6;
  --lh-lead: 1.5;
  --ls-display: -0.02em;
  --ls-heading: -0.014em;
  --ls-eyebrow: 0.08em;

  /* Spacing: 8pt grid */
  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs:  0.75rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2rem;
  --space-xl:  3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  --space-section: clamp(4rem, 9vw, 8rem);

  /* Layout */
  --container-max: 1200px;
  --container-pad: var(--space-lg);
  --container-narrow: 760px;

  /* Radius */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* Shadow: soft, warm (charcoal-tinted, never #000) */
  --shadow-xs: 0 1px 2px rgba(28,26,23,0.05);
  --shadow-sm: 0 2px 4px rgba(28,26,23,0.05), 0 4px 12px rgba(28,26,23,0.04);
  --shadow-md: 0 4px 10px rgba(28,26,23,0.06), 0 12px 28px rgba(28,26,23,0.06);
  --shadow-lg: 0 12px 28px rgba(28,26,23,0.08), 0 28px 56px rgba(28,26,23,0.08);
  --shadow-accent: 0 6px 18px rgba(217,101,31,0.22);
  --shadow-accent-hover: 0 10px 26px rgba(217,101,31,0.30);

  /* Borders */
  --border-hairline: 1px solid var(--c-border);
  --border-ink: 1px solid var(--c-ink);
  --border-on-dark: 1px solid rgba(250,248,245,0.16);

  /* Motion */
  --dur-fast: 150ms;
  --dur-base: 220ms;
  --dur-slow: 300ms;
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --reveal-distance: 16px;

  --header-h: 76px;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --dur-fast: 0.01ms;
    --dur-base: 0.01ms;
    --dur-slow: 0.01ms;
    --reveal-distance: 0px;
  }
}

/* ---------------------- 2 · RESET ---------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
/* In-page anchors are JS-handled with a header offset, so no html-level
   scroll-behavior is needed (avoids double-animating the same scroll). */

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }

.tabular { font-variant-numeric: tabular-nums; }
.muted { color: var(--c-text-secondary); }
.text-success { color: var(--c-success-text); }

:focus-visible {
  outline: 2px solid var(--c-focus);
  outline-offset: 2px;
  border-radius: 3px;
}

.skip-link {
  position: absolute;
  left: var(--space-sm);
  top: -100px;
  z-index: 200;
  background: var(--c-ink);
  color: var(--c-on-dark);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-sm);
  font-weight: var(--fw-semibold);
  transition: top var(--dur-base) var(--ease-standard);
}
.skip-link:focus { top: var(--space-sm); }

/* Inline SVG icon defaults (stroke style) */
.icon, .card__icon svg, .offer__icon svg {
  width: 1.4em; height: 1.4em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------------------- 3 · LAYOUT ---------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.container--narrow { max-width: calc(var(--container-narrow) + 2 * var(--container-pad)); }

.section { padding-block: var(--space-section); }
.surface-band { background: var(--c-surface); }

.section-head { max-width: 60ch; margin-bottom: var(--space-xl); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head__lead { margin-top: var(--space-md); color: var(--c-text-secondary); }
.section-head--dark .section-head__lead { color: var(--c-text-on-dark-muted); }

/* Full-bleed charcoal contrast bands */
.band-dark {
  background: var(--c-ink);
  color: var(--c-on-dark);
}
.band-dark .h2 { color: var(--c-on-dark); }

/* ---------------------- 4 · TYPE ---------------------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--c-accent-text);
  margin: 0;
}
/* On-dark eyebrow: #D9651F on #1C1A17 = 4.82:1, passes AA. */
.eyebrow--on-dark { color: var(--c-accent); }
/* On-light accent eyebrow: small text must use the WCAG-safe token (5.07:1). */
.eyebrow--accent { color: var(--c-accent-text); position: relative; padding-left: 1.6em; }
.eyebrow--accent::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 1.1em; height: 2px;
  background: var(--c-accent);
  transform: translateY(-50%);
}

.h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
  margin-top: var(--space-sm);
}
.h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
  letter-spacing: -0.008em;
}
.lead {
  font-size: var(--fs-lead);
  line-height: var(--lh-lead);
}

/* ---------------------- 5 · BUTTONS ---------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xs);
  min-height: 44px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--fs-button);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.01em;
  line-height: 1;
  text-align: center;
  transition: background var(--dur-fast) var(--ease-standard),
              box-shadow var(--dur-fast) var(--ease-standard),
              transform var(--dur-fast) var(--ease-standard),
              border-color var(--dur-fast) var(--ease-standard);
}
.btn .icon { width: 1.15em; height: 1.15em; stroke-width: 2; }

/* Standard primary: resting fill #C2551A → white label 4.56:1 AA */
.btn--primary {
  background: var(--c-accent-hover);
  color: var(--c-on-accent);
  box-shadow: var(--shadow-accent);
}
.btn--primary:hover {
  background: var(--c-accent);
  box-shadow: var(--shadow-accent-hover);
  transform: translateY(-1px);
}
.btn--primary:active { transform: translateY(0); }

/* Hero / large primary: 17px/700 label is below the AA-large threshold,
   so 4.5:1 is required — use resting fill #C2551A (white on it = 4.56:1). */
.btn--lg {
  min-height: 52px;
  padding: 18px 32px;
  font-size: 1.0625rem;
  font-weight: var(--fw-bold);
}
.btn--primary.btn--lg { background: var(--c-accent-hover); }
.btn--primary.btn--lg:hover { background: var(--c-accent); }

/* Ghost / secondary */
.btn--ghost {
  background: transparent;
  color: var(--c-ink);
  border: var(--border-ink);
}
.btn--ghost:hover { background: var(--c-surface); transform: translateY(-1px); }

/* On-dark (charcoal band) */
.btn--on-dark {
  background: var(--c-bg);
  color: var(--c-ink);
}
.btn--on-dark:hover { background: #fff; transform: translateY(-1px); }

.btn--block { width: 100%; }

/* ---------------------- 6 · HEADER / NAV ---------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-bg);
  border-bottom: var(--border-hairline);
  transition: background var(--dur-base) var(--ease-in-out),
              box-shadow var(--dur-base) var(--ease-in-out),
              border-color var(--dur-base) var(--ease-in-out);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  min-height: var(--header-h);
  padding-block: var(--space-xs);
  transition: min-height var(--dur-base) var(--ease-in-out);
}
.wordmark {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  margin-right: auto;
  transition: color var(--dur-base) var(--ease-in-out);
}
/* "Escape" is the valuable part of the route — amber it (large display text). */
.wordmark__accent { color: var(--c-accent); }

.nav-desktop { display: none; }
.nav-desktop__list { display: flex; gap: var(--space-lg); }
.nav-desktop__list a {
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--c-text-secondary);
  padding-block: var(--space-2xs);
  position: relative;
  transition: color var(--dur-fast) var(--ease-standard);
}
.nav-desktop__list a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--c-accent);
  transition: width var(--dur-base) var(--ease-out);
}
.nav-desktop__list a:hover { color: var(--c-ink); }
.nav-desktop__list a:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: var(--space-sm); }
.header__cta { display: none; }

/* Condensed state (set by JS on scroll) */
.site-header.is-condensed {
  background: var(--c-ink);
  border-bottom-color: transparent;
  box-shadow: var(--shadow-lg);
}
.site-header.is-condensed .header__inner { min-height: 62px; }
.site-header.is-condensed .wordmark { color: var(--c-on-dark); }
.site-header.is-condensed .nav-desktop__list a { color: var(--c-text-on-dark-muted); }
.site-header.is-condensed .nav-desktop__list a:hover { color: var(--c-on-dark); }
.site-header.is-condensed .nav-toggle { color: var(--c-on-dark); }

/* Hamburger toggle */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: none;
  color: var(--c-ink);
  border-radius: var(--radius-sm);
}
.nav-toggle .icon { width: 26px; height: 26px; }
.nav-toggle .icon--close { display: none; }
.nav-toggle[aria-expanded="true"] .icon--menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon--close { display: block; }

/* Mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 150; }
.drawer[hidden] { display: none; }
.drawer__backdrop {
  position: absolute; inset: 0;
  background: rgba(28,26,23,0.5);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-standard);
}
.drawer__panel {
  position: absolute; top: 0; right: 0;
  height: 100%;
  width: min(86vw, 360px);
  background: var(--c-ink);
  color: var(--c-on-dark);
  padding: calc(var(--header-h) + var(--space-md)) var(--space-lg) var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-out);
  overflow-y: auto;
}
.drawer.is-open .drawer__backdrop { opacity: 1; }
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__list { display: flex; flex-direction: column; gap: var(--space-2xs); }
.drawer__list a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: var(--fw-semibold);
  padding: var(--space-sm) 0;
  border-bottom: var(--border-on-dark);
}
.drawer__list a:hover { color: var(--c-accent); }
.drawer .btn--block { margin-top: auto; }

/* ---------------------- 7 · HERO ---------------------- */
.hero { padding-block: clamp(3rem, 7vw, 6rem) var(--space-section); }
.hero__inner { max-width: 980px; }
.hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: var(--fw-bold);
  line-height: var(--lh-display);
  letter-spacing: var(--ls-display);
  margin: var(--space-md) 0 0;
}
.accent-word { color: var(--c-accent); }
.hero__sub {
  margin-top: var(--space-lg);
  max-width: 56ch;
  color: var(--c-text-secondary);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}
/* Mobile: stack CTAs full-width so primary + secondary align cleanly. */
.hero__cta .btn { width: 100%; justify-content: center; }
@media (min-width: 600px) {
  .hero__cta .btn { width: auto; }
}

.trust-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}
.chip {
  background: var(--c-surface);
  border: var(--border-hairline);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-3xs);
}
.chip__num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: var(--fw-bold);
  letter-spacing: -0.02em;
  line-height: 1;
}
.chip__label { font-size: var(--fs-small); color: var(--c-text-secondary); }

/* ---------------------- 8 · AUTHORITY ---------------------- */
.authority { border-block: var(--border-hairline); background: var(--c-bg); }
.authority__inner { padding-block: var(--space-2xl); text-align: center; }
.authority__title {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  letter-spacing: -0.01em;
  max-width: 30ch;
  margin-inline: auto;
}
.authority__sub {
  margin: var(--space-md) auto 0;
  max-width: 64ch;
  color: var(--c-text-secondary);
  font-size: var(--fs-body);
}
.authority__marks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg) var(--space-2xl);
  margin: var(--space-xl) 0 var(--space-md);
}
.mark {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: 1.05rem;
  color: var(--c-text-secondary);
  opacity: 0.7;
  filter: grayscale(1);
}
.mark__shape {
  width: 20px; height: 20px;
  border: 2px solid currentColor;
  border-radius: 5px;
  transform: rotate(45deg);
}
.authority__caption { font-size: var(--fs-small); color: var(--c-text-secondary); }

/* ---------------------- 9 · CARDS / EXPLAINER ---------------------- */
.cards-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.card {
  position: relative;
  background: var(--c-card);
  border: var(--border-hairline);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur-base) var(--ease-standard),
              transform var(--dur-base) var(--ease-standard);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card__icon {
  display: inline-flex;
  width: 52px; height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--c-surface);
  color: var(--c-accent-text);
  margin-bottom: var(--space-md);
}
.card__icon--success { color: var(--c-success-text); background: rgba(18,124,90,0.1); }
/* The phone — "the moment a customer calls" — gets a chunkier, more deliberate stroke. */
.card__icon--success svg { stroke-width: 2.4; }
.card__step {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 1.1rem;
  color: var(--c-border);
}
.card__step--success { color: var(--c-success); }
.card .h3 { margin-bottom: var(--space-2xs); }
.card p { color: var(--c-text-secondary); }
.card--success { border-color: rgba(18,124,90,0.35); }

/* ---------------------- 10 · OFFERS ---------------------- */
.offers {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
.offer {
  background: var(--c-card);
  border: var(--border-hairline);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-lg), 3vw, var(--space-2xl));
  box-shadow: var(--shadow-sm);
}
.offer__icon {
  display: inline-flex;
  width: 56px; height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--c-surface);
  color: var(--c-accent-text);
  margin-bottom: var(--space-md);
}
.offer__label {
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--c-accent-text);
}
.offer__title {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  letter-spacing: -0.01em;
  margin: var(--space-2xs) 0 var(--space-sm);
}
.offer__body { color: var(--c-text-secondary); margin-bottom: var(--space-md); }
.checklist { display: flex; flex-direction: column; gap: var(--space-sm); }
.checklist li {
  position: relative;
  padding-left: 2rem;
  color: var(--c-ink);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.12em;
  width: 1.25rem; height: 1.25rem;
  background-color: var(--c-success);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 0.85rem no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 0.85rem no-repeat;
  border-radius: var(--radius-xs);
}

/* ---------------------- 11 · METHOD (charcoal) ---------------------- */
.method .eyebrow { margin-bottom: 0; }
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.step {
  padding: var(--space-lg) 0;
  border-top: var(--border-on-dark);
}
.step:first-child { border-top: none; }
.step__num {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(2.5rem, 7vw, 4rem);
  line-height: 1;
  color: var(--c-accent);
  letter-spacing: -0.02em;
}
.step__num--success { color: var(--c-success); }
.step__name {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  margin: var(--space-sm) 0 var(--space-2xs);
}
.step__desc { color: var(--c-text-on-dark-muted); max-width: 38ch; }

/* ---------------------- 12 · PROOF ---------------------- */
.results { margin-bottom: var(--space-xl); }
.result {
  background: var(--c-card);
  border: var(--border-hairline);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur-base) var(--ease-standard),
              transform var(--dur-base) var(--ease-standard);
}
.result:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.result__metric {
  font-family: var(--font-display);
  font-size: var(--fs-stat);
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-success-text);
}
.result__label {
  margin-top: var(--space-2xs);
  font-weight: var(--fw-semibold);
}
.result__rule { border: none; border-top: var(--border-hairline); margin: var(--space-md) 0; }
.result__context { font-size: var(--fs-small); color: var(--c-text-secondary); }

.testimonial {
  background: var(--c-surface);
  border: var(--border-hairline);
  border-left: 4px solid var(--c-accent);
  border-radius: var(--radius-md);
  padding: clamp(var(--space-lg), 3vw, var(--space-2xl));
  max-width: 56rem;
}
.testimonial__quote {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.testimonial__quote::before {
  content: "\201C";
  display: block;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 3rem;
  line-height: 0.4;
  color: var(--c-accent);
  margin-bottom: var(--space-2xs);
}
.testimonial__by {
  margin-top: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2xs) var(--space-sm);
}
.testimonial__name { font-weight: var(--fw-semibold); }
.testimonial__tag {
  font-size: var(--fs-small);
  color: var(--c-text-secondary);
  padding: 2px var(--space-2xs);
  border: var(--border-hairline);
  border-radius: var(--radius-pill);
}

/* ---------------------- 13 · GUARANTEE ---------------------- */
.guarantee__inner { max-width: 920px; margin-inline: auto; text-align: left; }
.guarantee__statement {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: var(--fw-bold);
  line-height: var(--lh-display);
  letter-spacing: var(--ls-display);
  margin: var(--space-md) 0;
}
.guarantee__support { color: var(--c-text-on-dark-muted); max-width: 60ch; margin-inline: auto; }
.guarantee__included {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  text-align: left;
  max-width: 560px;
  margin: var(--space-xl) auto;
}
.guarantee__included li {
  position: relative;
  padding-left: 2rem;
  color: var(--c-on-dark);
}
.guarantee__included li::before {
  content: "";
  position: absolute; left: 0; top: 0.12em;
  width: 1.25rem; height: 1.25rem;
  background-color: var(--c-accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 0.9rem no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 0.9rem no-repeat;
}

/* ---------------------- 14 · FAQ ---------------------- */
.accordion { border-top: var(--border-hairline); }
.faq-item { border-bottom: var(--border-hairline); }
.faq-item__heading { margin: 0; }
.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  text-align: left;
  background: transparent;
  border: none;
  padding: var(--space-md) var(--space-2xs);
  min-height: 60px;
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  letter-spacing: -0.008em;
  color: var(--c-ink);
}
.faq-item__trigger .icon--chevron {
  flex: none;
  width: 26px; height: 26px;
  color: var(--c-accent-text);
  transition: transform var(--dur-base) var(--ease-in-out);
}
.faq-item__trigger[aria-expanded="true"] .icon--chevron { transform: rotate(180deg); }
.faq-item__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--dur-slow) var(--ease-in-out);
}
.faq-item__panel p {
  padding: 0 var(--space-2xs) var(--space-lg);
  color: var(--c-text-secondary);
  max-width: 64ch;
}

/* ---------------------- 15 · FINAL CTA ---------------------- */
.final-cta { background: rgba(217,101,31,0.06); }
.final-cta__inner { max-width: 720px; margin-inline: auto; text-align: center; }
.final-cta__title {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
  margin: var(--space-sm) 0 var(--space-md);
}
.final-cta__sub { color: var(--c-text-secondary); margin-bottom: var(--space-xl); }
.final-cta .eyebrow { color: var(--c-accent-text); }
.final-cta__reassure {
  margin-top: var(--space-md);
  font-size: var(--fs-small);
  color: var(--c-text-secondary);
}

/* ---------------------- 16 · FOOTER ---------------------- */
.site-footer { background: var(--c-ink); color: var(--c-text-on-dark-muted); }
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding-block: var(--space-2xl) var(--space-xl);
}
.wordmark--footer {
  color: var(--c-on-dark);
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}
.footer__tagline { margin-top: var(--space-2xs); font-size: var(--fs-small); }
.footer__nav ul { display: flex; flex-wrap: wrap; gap: var(--space-sm) var(--space-lg); }
.footer__nav a { font-size: var(--fs-small); padding-block: var(--space-xs); transition: color var(--dur-fast); }
.footer__nav a:hover { color: var(--c-on-dark); }
.footer__contact { display: flex; flex-direction: column; gap: var(--space-2xs); }
.footer__email {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  color: var(--c-on-dark);
  font-weight: var(--fw-medium);
}
.footer__email:hover { color: var(--c-accent); }
.footer__email .icon { width: 20px; height: 20px; }
.footer__india { font-size: var(--fs-small); }
.footer__legal {
  border-top: var(--border-on-dark);
  padding-block: var(--space-md);
}
.footer__legal p { font-size: var(--fs-small); }

/* ---------------------- 17 · MOTION / REVEAL ----------------------
   SAFETY: content is visible by default. Reveal elements are only hidden
   when `html.anim` is present — added by JS ONLY when GSAP has loaded and
   reduced-motion is off. So CDN-blocked / JS-off / reduced-motion users
   never get hidden content, and GSAP drives the reveal tweens itself. */
html.anim .reveal {
  opacity: 0;
  transform: translateY(var(--reveal-distance));
  will-change: opacity, transform;
}
/* Non-enhanced fallback path (JS present, GSAP missing): IO toggles this. */
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .btn:hover, .card:hover, .result:hover { transform: none; }
}

/* ---------------------- 18 · RESPONSIVE ---------------------- */
@media (min-width: 600px) {
  .trust-strip { grid-template-columns: repeat(3, 1fr); }
  .guarantee__included { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .header__cta { display: inline-flex; }
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
  /* Keep the 01→02→03 explainer linear: skip the 2+1 grid at this width. */
  .explainer .cards-3 { grid-template-columns: 1fr; }
  .offers { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; column-gap: var(--space-xl); }
  .step { padding-block: var(--space-md); border-top: var(--border-on-dark); }
  .steps .step:nth-child(1), .steps .step:nth-child(2) { border-top: none; }
  .footer__inner {
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  :root { --container-pad: var(--space-xl); }
  .nav-desktop { display: block; margin-inline: auto; }
  .nav-toggle { display: none; }

  .hero__title { margin-top: var(--space-lg); }

  .cards-3 { grid-template-columns: repeat(3, 1fr); }
  .results { gap: var(--space-md); }

  /* connector arrows between explainer cards */
  .explainer .cards-3 { position: relative; }
  .explainer .card:not(:first-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(-1 * var(--space-md) - 1px);
    width: var(--space-md);
    height: 2px;
    background: var(--c-text-secondary);
    transform: translateX(-50%);
  }
  .explainer .card:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(-1 * var(--space-md) + 4px);
    width: 8px; height: 8px;
    border-top: 2px solid var(--c-text-secondary);
    border-right: 2px solid var(--c-text-secondary);
    transform: translate(-50%, -50%) rotate(45deg);
  }

  /* In the 4-up layout the number is a label, not the message — cap it. */
  .step__num { font-size: 2rem; }
  /* Refine the FAQ chevron on desktop: a detail, not a chunky mobile control. */
  .faq-item__trigger .icon--chevron { width: 20px; height: 20px; }

  .steps { grid-template-columns: repeat(4, 1fr); column-gap: var(--space-lg); }
  .steps .step { border-top: none; }
  .step {
    border-top: none;
    border-left: var(--border-on-dark);
    padding: var(--space-lg) 0 var(--space-2xs) var(--space-lg);
  }
  .steps .step:first-child { border-left: none; padding-left: 0; }
}

/* ============================================================
   19 · CINEMATIC ENHANCEMENT LAYER
   All effects are additive and gated behind `html.anim` (set by JS only
   when GSAP is present and reduced-motion is off). Nothing here hides
   content or shifts layout for the un-enhanced / reduced-motion path.
   ============================================================ */

/* --- Scroll progress bar --- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 200;
  background: transparent;
  pointer-events: none;
  opacity: 0;
}
html.anim .scroll-progress { opacity: 1; }
.scroll-progress__bar {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent-hover));
}

/* --- Hero backdrop (decorative, parallaxed) --- */
.hero { position: relative; overflow: hidden; }
.hero__backdrop {
  position: absolute;
  inset: -10% -5% 0;
  z-index: 0;
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; }
.hero__route {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.5;
}
.hero__route-line {
  stroke: var(--c-accent);
  stroke-width: 2;
  opacity: 0.28;
  stroke-dasharray: 1 0;
}
html.anim .hero__route-line {
  /* drawn in by JS */
  stroke-dasharray: var(--route-len, 2000);
  stroke-dashoffset: var(--route-len, 2000);
}
.hero__route-dot {
  fill: var(--c-accent);
  opacity: 0;
}
html.anim .hero__route-dot { opacity: 0; }
/* Subtle film grain — pure CSS, no asset request */
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* --- Hero kinetic headline (SplitType line masks) --- */
.hero__title .line {
  overflow: hidden;
  padding-bottom: 0.08em;   /* protect descenders from the clip */
  margin-bottom: -0.08em;
}
html.anim .hero__title .word { display: inline-block; }

/* --- Magnetic buttons --- */
[data-magnetic] { will-change: transform; }
/* gsap writes inline transforms; suppress the CSS hover-lift to avoid fighting it */
html.anim [data-magnetic].btn:hover { transform: none; }
.btn__label { display: inline-flex; align-items: center; gap: inherit; }

/* --- Method: progress rail + step polish --- */
.steps { position: relative; }
.steps__rail {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(250, 248, 245, 0.12);
  overflow: hidden;
  z-index: 1;
}
.steps__rail-fill {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--c-accent) 70%, var(--c-success));
  transform: scaleX(0);
  transform-origin: left center;
}
.step { position: relative; }
.step__num {
  display: inline-block;
  transition: color var(--dur-base) var(--ease-standard);
}
/* On enhanced desktop the rail replaces the static left borders for a cleaner row */
html.anim .step { border-left-color: transparent; }

/* --- Reveal-on-scroll variant for the hero route dot pulse --- */
@keyframes routePulse {
  0%   { opacity: 0.9; r: 6; }
  70%  { opacity: 0;   r: 16; }
  100% { opacity: 0;   r: 16; }
}

/* --- Respect reduced motion: neutralize everything decorative --- */
@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none; }
  .hero__route-line { stroke-dashoffset: 0 !important; }
  .hero__backdrop { opacity: 0.5; }
  .steps__rail-fill { transform: scaleX(1); }
}

/* ---------------------- 20 · ANOMALY (hero WebGL) ----------------------
   Ported from 21st.dev dhiluxui/anomalous-matter-hero (Three.js).
   Rebranded amber-on-charcoal; perf-tuned; reduced-motion/no-WebGL fallback. */
.anomaly {
  position: relative;
  margin-top: var(--space-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-ink);
  border: 1px solid rgba(250, 248, 245, 0.10);
  box-shadow: var(--shadow-lg);
  min-height: clamp(300px, 42vw, 460px);
  isolation: isolate;
}
.anomaly__stage { position: absolute; inset: 0; z-index: 0; }
.anomaly__stage canvas { display: block; width: 100% !important; height: 100% !important; }
/* warm radial fallback shown when WebGL/motion unavailable */
.anomaly__stage::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(58% 58% at 50% 42%, rgba(217,101,31,0.34), rgba(28,26,23,0) 70%);
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease-standard);
}
.anomaly.is-static .anomaly__stage::after { opacity: 1; }
.anomaly__caption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: clamp(1.25rem, 4vw, 2.25rem);
  background: linear-gradient(to top, rgba(28,26,23,0.94) 0%, rgba(28,26,23,0.55) 55%, rgba(28,26,23,0) 100%);
}
.anomaly__eyebrow {
  font-size: var(--fs-eyebrow); font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-eyebrow); text-transform: uppercase;
  color: var(--c-accent); margin: 0 0 var(--space-2xs);
}
.anomaly__title {
  font-family: var(--font-display); font-weight: var(--fw-bold);
  font-size: var(--fs-h3); line-height: var(--lh-snug);
  letter-spacing: var(--ls-heading); color: var(--c-on-dark);
  margin: 0; max-width: 24ch;
}
.anomaly__desc {
  margin: var(--space-2xs) 0 0; max-width: 50ch;
  color: var(--c-text-on-dark-muted); font-size: var(--fs-body);
}
@media (prefers-reduced-motion: reduce) {
  .anomaly { min-height: clamp(220px, 32vw, 320px); }
}
/* Mobile: shorten the visual so the hero's primary CTA stays above the fold. */
@media (max-width: 599px) {
  .anomaly { min-height: clamp(188px, 52vw, 240px); }
}

/* ---------------------- 21 · NAV DROPDOWN + FOOTER GRID + POLISH ---------------------- */
/* Desktop dropdown menus (CSS-only: hover + focus-within, no JS) */
.nav-has-menu { position: relative; }
.nav-menu-trigger {
  display: inline-flex; align-items: center; gap: 0.3em;
  background: none; border: 0; padding: 0; margin: 0;
  font: inherit; color: inherit; cursor: pointer;
}
.nav-menu-trigger .icon--chevron-sm {
  width: 0.9em; height: 0.9em; stroke-width: 2.2;
  transition: transform var(--dur-fast) var(--ease-standard);
}
.nav-has-menu:hover .nav-menu-trigger .icon--chevron-sm,
.nav-has-menu:focus-within .nav-menu-trigger .icon--chevron-sm { transform: rotate(180deg); }
/* invisible hover bridge across the gap so the menu doesn't flicker closed */
.nav-has-menu::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 14px; }
.nav-menu {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 250px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.4rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
  z-index: 120;
}
.nav-has-menu:hover .nav-menu,
.nav-has-menu:focus-within .nav-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-menu li a {
  display: block; padding: 0.6rem 0.8rem; border-radius: var(--radius-sm);
  font-size: var(--fs-small); color: var(--c-ink); white-space: nowrap;
  transition: background var(--dur-fast) var(--ease-standard), color var(--dur-fast) var(--ease-standard);
}
.nav-menu li a:hover { background: var(--c-surface); color: var(--c-accent-text); }

/* Mobile drawer group labels */
.drawer__group {
  font-size: var(--fs-small); text-transform: uppercase;
  letter-spacing: var(--ls-eyebrow); color: var(--c-text-secondary);
  font-weight: var(--fw-semibold);
  margin: var(--space-md) 0 var(--space-2xs);
}

/* Footer: organized columns */
.footer__grid {
  display: grid; grid-template-columns: 1fr; gap: var(--space-xl);
}
@media (min-width: 600px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .footer__grid { grid-template-columns: 1.7fr 1fr 1fr 1fr; } }
.footer__col-title {
  font-size: var(--fs-small); text-transform: uppercase;
  letter-spacing: var(--ls-eyebrow); color: var(--c-text-secondary);
  font-weight: var(--fw-semibold); margin: 0 0 var(--space-sm);
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer__col a { color: var(--c-text-secondary); transition: color var(--dur-fast) var(--ease-standard); }
.footer__col a:hover { color: var(--c-accent-text); }
.footer__brand .footer__email { margin-top: var(--space-md); }

/* Polish: subtle card lift on hover (skipped under reduced-motion) */
@media (prefers-reduced-motion: no-preference) {
  .card, .offer, .result {
    transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
  }
  .card:hover, .offer:hover, .result:hover {
    transform: translateY(-3px); box-shadow: var(--shadow-md);
  }
}

/* ---------------------- 22 · RELATED PAGES ---------------------- */
.related { background: var(--c-surface); }
.related__grid {
  display: grid; grid-template-columns: 1fr; gap: var(--space-sm);
  margin-top: var(--space-lg);
}
@media (min-width: 600px) { .related__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .related__grid { grid-template-columns: repeat(4, 1fr); } }
.related__card {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-sm);
  background: var(--c-card); border: 1px solid var(--c-border);
  border-radius: var(--radius-md); padding: var(--space-md);
  font-weight: var(--fw-semibold); color: var(--c-ink); line-height: var(--lh-snug);
  transition: border-color var(--dur-fast) var(--ease-standard),
              transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.related__card:hover { border-color: var(--c-accent); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.related__card svg { width: 1.1em; height: 1.1em; color: var(--c-accent); flex: none; }
