/* ============================================================
   360 BC DIGITAL — STYLE SYSTEM
   Sibling page to the Production landing page — same brand tokens
   (coral/aubergine from the logo, Poppins/Big Shoulders/Space Mono),
   different signature motif: this page is about strategy, content
   and performance, not film — so instead of the letterbox/timecode
   device, the recurring motif here is a "campaign brief" grid line
   + a live-updating percentage counter in the corner chrome, and a
   growth-line graphic on the hero. Same restraint: one motif, used
   consistently, not scattered decoration.
   ============================================================ */

:root {
  --void:          #0b0a0b;
  --void-soft:     #141215;
  --aubergine:     #57404c;
  --aubergine-deep:#2b1f26;
  --coral:         #ef4046;
  --coral-deep:    #c22a30;
  --bone:          #f5f1ec;
  --white:         #ffffff;
  --stone:         #a79ca1;
  --stone-dim:     #6b6266;
  --line:          rgba(245,241,236,0.14);
  --line-strong:   rgba(245,241,236,0.28);

  --font-display: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
  --font-body:    'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'Space Mono', 'Courier New', monospace;

  --wrap: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --chrome-h: 28px;
  --chrome-h-mobile: 18px;

  --ease: cubic-bezier(.16,.84,.32,1);
  --ease-soft: cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--void);
  color: var(--bone);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--chrome-h);
  padding-bottom: var(--chrome-h);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* The hidden attribute/property must always win over any class's own
   display value — without !important here, an element like
   `<button class="btn" hidden>` stays visible in every real browser
   (not just old ones) because [hidden] and .btn are equal-specificity
   selectors and .btn is declared later in the cascade. This bit the
   discovery form's step buttons (continueBtn/submitBtn/backBtn all
   use .hidden toggling) until this rule was added. */
[hidden] { display: none !important; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
:focus-visible { outline: 2px solid var(--coral); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   CHROME — top/bottom bars (signature element, this page's variant)
   ============================================================ */
.chrome {
  position: fixed; left: 0; right: 0; height: var(--chrome-h);
  background: var(--void); z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 18px; pointer-events: none;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em;
  color: var(--stone-dim); text-transform: uppercase;
}
.chrome--top { top: 0; border-bottom: 1px solid var(--line); }
.chrome--bottom { bottom: 0; border-top: 1px solid var(--line); }
.chrome__growth { display: flex; align-items: center; gap: 6px; }
.chrome__growth-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.25} }
@media (max-width: 480px) {
  :root { --chrome-h: var(--chrome-h-mobile); }
  .chrome { font-size: 8px; padding: 0 12px; }
  .chrome--bottom { display: none; }
  body { padding-bottom: 0; }
}

/* ============================================================
   TYPE UTILITIES
   ============================================================ */
.eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--coral);
  display: flex; align-items: center; gap: 10px; margin-bottom: 22px;
}
.eyebrow::before { content:''; width: 26px; height: 1px; background: var(--coral); display: inline-block; }
.eyebrow--light { color: var(--bone); }
.eyebrow--light::before { background: var(--bone); opacity: .6; }

.h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(34px, 5.5vw, 60px); line-height: .98; letter-spacing: -.01em;
  text-transform: uppercase; color: var(--bone);
}
.lede { font-size: 18px; font-weight: 400; color: var(--stone); margin-top: 16px; }
.lede--wide { max-width: 580px; }
.body-text { font-size: 16px; color: var(--stone); max-width: 620px; margin-top: 6px; }
.strong-line {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(20px, 2.6vw, 28px); color: var(--coral);
  text-transform: uppercase; line-height: 1.25; margin: 18px 0;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  letter-spacing: .04em; text-transform: uppercase; padding: 16px 30px;
  border: 1px solid transparent; transition: transform .35s var(--ease), background .3s, color .3s, border-color .3s;
  white-space: nowrap;
}
.btn--primary { background: var(--coral); color: var(--white); }
.btn--primary:hover { background: var(--coral-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--bone); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--coral); color: var(--coral); }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.hero-enter { opacity: 0; transform: translateY(22px); animation: heroEnter .9s var(--ease) forwards; animation-delay: 200ms; }
.hero-enter--1 { animation-delay: 310ms; }
.hero-enter--2 { animation-delay: 420ms; }
.hero-enter--3 { animation-delay: 530ms; }
.hero-enter--4 { animation-delay: 640ms; }
.hero-enter--5 { animation-delay: 750ms; }
@keyframes heroEnter { to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .hero-enter { opacity:1; transform:none; animation:none; } }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: var(--chrome-h); left: 0; right: 0; z-index: 400;
  background: linear-gradient(to bottom, rgba(11,10,11,.9), rgba(11,10,11,0));
  border-bottom: 1px solid transparent; transition: background .3s, border-color .3s;
}
.nav.is-scrolled { background: rgba(11,10,11,.92); backdrop-filter: blur(10px); border-bottom-color: var(--line); }
.nav__inner { max-width: var(--wrap); margin: 0 auto; padding: 18px var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo-img { height: 30px; width: auto; }
.nav__logo-text { font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; color: var(--stone); display: none; }
@media (min-width: 640px) { .nav__logo-text { display: inline; } }
.nav__links { display: none; align-items: center; gap: 40px; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; font-weight: 500; }
.nav__links a { position: relative; padding: 4px 0; color: var(--bone); }
.nav__links a::after { content:''; position:absolute; left:0; bottom:0; width:0; height:1px; background:var(--coral); transition: width .3s var(--ease); }
.nav__links a:hover::after { width: 100%; }
@media (min-width: 900px) { .nav__links { display: flex; } }
.nav__burger { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 30px; height: 22px; background: none; border: none; padding: 0; }
.nav__burger span { width: 100%; height: 1px; background: var(--bone); transition: transform .3s, opacity .3s; }
@media (min-width: 900px) { .nav__burger { display: none; } }
.nav__burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media (max-width: 899px) {
  .nav__links {
    position: fixed; top: calc(var(--chrome-h) + 66px); left: 0; right: 0; bottom: var(--chrome-h);
    background: var(--void); flex-direction: column; justify-content: flex-start;
    padding: 40px var(--gutter); gap: 28px; font-size: 22px;
    transform: translateX(100%); transition: transform .4s var(--ease);
  }
  .nav__links.is-open { display: flex; transform: translateX(0); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,10,11,.55) 0%, rgba(11,10,11,.4) 40%, rgba(11,10,11,.9) 100%),
              linear-gradient(90deg, rgba(11,10,11,.65) 0%, rgba(11,10,11,.15) 55%);
}
.hero__content { position: relative; z-index: 1; padding: calc(var(--chrome-h) + 90px) var(--gutter) 60px; max-width: 920px; }
.hero__title { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: clamp(42px, 8.5vw, 100px); line-height: .95; letter-spacing: -.01em; color: var(--bone); margin: 0 0 22px; }
.hero__title-line { display: block; }
.hero__kicker { font-size: clamp(16px, 2vw, 20px); font-weight: 500; color: var(--coral); margin-bottom: 14px; }
.hero__desc { font-size: clamp(15px, 1.6vw, 18px); color: var(--stone); max-width: 560px; margin-bottom: 36px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }

.trust-strip { position: relative; z-index: 1; padding: 0 var(--gutter); display: flex; flex-wrap: wrap; gap: clamp(24px,4vw,56px); border-top: 1px solid var(--line); padding-top: 28px; max-width: 920px; margin: 0 auto; width: 100%; }
.trust-strip__item { font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--stone); }
.trust-strip__item b { display: block; font-family: var(--font-display); font-size: clamp(22px,2.6vw,30px); color: var(--bone); font-weight: 800; text-transform: none; letter-spacing: 0; margin-bottom: 4px; }

/* ============================================================
   SECTION RHYTHM
   ============================================================ */
section { padding: clamp(80px, 10vw, 150px) 0; position: relative; }
.problem { background: var(--void-soft); border-top: 1px solid var(--line); }
.services { background: var(--void); border-top: 1px solid var(--line); }
.proof { background: var(--void-soft); border-top: 1px solid var(--line); }
.cases { background: var(--void); border-top: 1px solid var(--line); }
.seo { background: var(--void-soft); border-top: 1px solid var(--line); }
.process { background: var(--void); border-top: 1px solid var(--line); }
.work { background: var(--void-soft); border-top: 1px solid var(--line); }
.qualify { background: var(--void); border-top: 1px solid var(--line); }
.faq { background: var(--void-soft); border-top: 1px solid var(--line); }

/* ============================================================
   PROBLEM
   ============================================================ */
.problem__head { margin-bottom: 48px; max-width: 720px; }
.problem__grid { display: flex; flex-wrap: wrap; gap: 2px; background: var(--line); margin-bottom: 48px; }
.problem__item { flex: 1 1 260px; background: var(--void-soft); padding: 34px 28px; min-height: 160px; }
.problem__title { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: clamp(18px,2vw,24px); color: var(--bone); margin-bottom: 10px; }
.problem__desc { font-size: 14px; color: var(--stone); }
.problem__close { max-width: 680px; font-size: 17px; color: var(--stone); }
.problem__close b { color: var(--bone); font-weight: 600; }

/* ============================================================
   SERVICES
   ============================================================ */
.services__head { margin-bottom: 56px; }
.services__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--line); }
.scard { position: relative; aspect-ratio: 5/4; overflow: hidden; background: var(--void); display: block; }
.scard__media { position: absolute; inset: 0; }
.scard__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(35%) brightness(.6); transition: transform 1.1s var(--ease-soft), filter .6s; }
.scard:hover .scard__media img { transform: scale(1.08); filter: grayscale(0%) brightness(.45); }
.scard::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(11,10,11,0) 30%, rgba(11,10,11,.92) 100%); }
.scard__body { position: absolute; left:0; right:0; bottom:0; padding: 26px; z-index: 1; }
.scard__num { font-family: var(--font-mono); font-size: 13px; color: var(--coral); letter-spacing: .1em; transition: font-size .3s; }
.scard:hover .scard__num { font-size: 22px; }
.scard__title { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: clamp(19px,2vw,26px); margin: 6px 0; color: var(--bone); }
.scard__desc { font-size: 13px; color: var(--stone); max-width: 260px; }
.scard__arrow { position: absolute; top: 26px; right: 26px; font-size: 18px; color: var(--bone); opacity: 0; transform: translate(-6px,6px); transition: opacity .35s, transform .35s var(--ease); }
.scard:hover .scard__arrow { opacity: 1; transform: translate(0,0); }
@media (max-width: 760px) { .services__grid { grid-template-columns: 1fr; } .scard { aspect-ratio: 4/3; } }

/* ============================================================
   PROOF / STATS
   ============================================================ */
.proof__head { max-width: 720px; margin-bottom: 20px; }
.proof__big { margin-bottom: 56px; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line); }
.stats-grid__item { background: var(--void); padding: 34px 26px; min-height: 170px; }
.stats-grid__num { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(38px,4.2vw,56px); color: var(--coral); line-height: 1; margin-bottom: 12px; }
.stats-grid__desc { font-size: 13px; color: var(--stone); }
.proof__disclaimer { margin-top: 28px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--stone-dim); }
@media (max-width: 760px) { .stats-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CASE STUDIES
   ============================================================ */
.cases__head { margin-bottom: 56px; }
.case { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; padding: 48px 0; border-top: 1px solid var(--line); }
.case:first-of-type { border-top: none; }
.case__media { flex: 1 1 440px; aspect-ratio: 4/3; overflow: hidden; }
.case__media img { width: 100%; height: 100%; object-fit: cover; }
.case__content { flex: 1 1 400px; }
.case__cat { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--coral); margin-bottom: 12px; }
.case__title { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(24px,3vw,36px); color: var(--bone); line-height: 1.05; margin-bottom: 16px; }
.case__desc { font-size: 15px; color: var(--stone); margin-bottom: 18px; max-width: 480px; }
.case__results { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-bottom: 20px; }
.case__result { font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--bone); border-left: 2px solid var(--coral); padding-left: 10px; }
.case__link { font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--bone); border-bottom: 1px solid var(--line-strong); padding-bottom: 4px; transition: color .3s, border-color .3s; }
.case__link:hover { color: var(--coral); border-color: var(--coral); }

@media (max-width: 760px) {
  /* Without this, flex-shrink lets both columns just squeeze thinner
     on narrow screens instead of stacking — there's no min-width to
     force a hard wrap point on its own. */
  .case { flex-direction: column; align-items: stretch; }
  .case__media, .case__content { flex-basis: auto; width: 100%; }
}

/* ============================================================
   SEO SECTION
   ============================================================ */
.seo__head { margin-bottom: 48px; max-width: 700px; }
.seo-scorecard { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; background: var(--line); margin-bottom: 56px; }
.seo-scorecard__item { background: var(--void-soft); padding: 26px 18px; text-align: center; }
.seo-scorecard__num { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(22px,2.4vw,32px); color: var(--bone); margin-bottom: 6px; }
.seo-scorecard__label { font-size: 11px; color: var(--stone); font-family: var(--font-mono); letter-spacing: .04em; }
.seo-highlight { text-align: center; padding: 40px 20px; border: 1px solid var(--line); margin-bottom: 56px; }
.seo-highlight__num { font-family: var(--font-display); font-weight: 900; font-size: clamp(56px,9vw,110px); color: var(--coral); line-height: 1; }
.seo-highlight__label { font-family: var(--font-mono); font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--stone); margin-top: 8px; }
.seo-cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line); }
.seo-case { background: var(--void-soft); padding: 32px 26px; }
.seo-case__brand { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--coral); margin-bottom: 10px; }
.seo-case__stat { font-family: var(--font-display); font-weight: 800; font-size: clamp(22px,2.4vw,28px); color: var(--bone); text-transform: uppercase; margin-bottom: 12px; line-height: 1.1; }
.seo-case__desc { font-size: 13px; color: var(--stone); }
@media (max-width: 900px) { .seo-scorecard { grid-template-columns: repeat(3,1fr); } .seo-cases { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .seo-scorecard { grid-template-columns: repeat(2,1fr); } }

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
.process__head { margin-bottom: 20px; }
.process__copy { max-width: 620px; margin-bottom: 70px; }
.timeline__track { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); border-top: 1px solid var(--line); padding-top: 34px; }
.timeline__progress { position: absolute; top: -1px; left: 0; height: 2px; width: 0%; background: var(--coral); transition: width .2s linear; }
.timeline__step { position: relative; padding-right: 20px; border-left: 1px solid var(--line); padding-left: 20px; }
.timeline__step:first-child { border-left: none; padding-left: 0; }
.timeline__num { display: block; font-family: var(--font-mono); font-size: 12px; color: var(--coral); letter-spacing: .1em; margin-bottom: 10px; }
.timeline__label { display: block; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: clamp(15px,1.5vw,20px); color: var(--bone); margin-bottom: 6px; }
.timeline__desc { font-size: 12px; color: var(--stone); }
@media (max-width: 860px) {
  .timeline__track { grid-template-columns: 1fr; gap: 26px; padding-top: 0; border-top: none; }
  .timeline__progress { display: none; }
  .timeline__step { border-left: 2px solid var(--line); padding: 4px 0 4px 22px; }
  .timeline__step.is-visible { border-left-color: var(--coral); }
}

/* ============================================================
   WORK / PORTFOLIO
   ============================================================ */
.work__head { margin-bottom: 56px; }
.work__grid { columns: 3; column-gap: 16px; }
.wcard { position: relative; display: block; break-inside: avoid; margin-bottom: 16px; overflow: hidden; background: var(--void); aspect-ratio: 4/3; }
.wcard img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-soft), filter .5s; filter: brightness(.8); }
.wcard:hover img { transform: scale(1.06); filter: brightness(.6); }
.wcard__overlay { position: absolute; left:0; right:0; bottom:0; padding: 18px 20px; background: linear-gradient(180deg, rgba(11,10,11,0) 0%, rgba(11,10,11,.88) 100%); }
.wcard__title { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 17px; color: var(--bone); }
.work__more { margin-top: 40px; }
.link-arrow { font-family: var(--font-mono); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--bone); border-bottom: 1px solid var(--line-strong); padding-bottom: 4px; transition: color .3s, border-color .3s; }
.link-arrow:hover { color: var(--coral); border-color: var(--coral); }
@media (max-width: 760px) { .work__grid { columns: 2; } }
@media (max-width: 480px) { .work__grid { columns: 1; } }

/* ============================================================
   QUALIFY — intent cards
   ============================================================ */
.qualify__head { margin-bottom: 48px; }
.qualify__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line); }
.qcard { background: var(--void-soft); border: none; text-align: left; padding: 30px 26px; color: var(--bone); transition: background .3s; cursor: pointer; }
.qcard:hover, .qcard.is-selected { background: var(--aubergine-deep); }
.qcard.is-selected { box-shadow: inset 0 0 0 1px var(--coral); }
.qcard__title { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 18px; margin-bottom: 8px; }
.qcard__desc { font-size: 13px; color: var(--stone); }
@media (max-width: 760px) { .qualify__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .qualify__grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq__head { margin-bottom: 48px; max-width: 700px; }
.faq__list { border-top: 1px solid var(--line); max-width: 860px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; display: flex; align-items: center; gap: 20px; background: none; border: none; text-align: left; padding: 24px 0; color: var(--bone); }
.faq__num { font-family: var(--font-mono); font-size: 13px; color: var(--coral); letter-spacing: .08em; flex: 0 0 auto; }
.faq__q-text { flex: 1 1 auto; font-family: var(--font-body); font-weight: 500; font-size: clamp(15px,1.7vw,17px); line-height: 1.4; transition: color .3s; }
.faq__q:hover .faq__q-text { color: var(--coral); }
.faq__toggle { position: relative; flex: 0 0 auto; width: 18px; height: 18px; }
.faq__toggle::before, .faq__toggle::after { content:''; position:absolute; background: var(--bone); transition: transform .35s var(--ease), background .3s; }
.faq__toggle::before { top:50%; left:0; width:18px; height:1px; transform: translateY(-50%); }
.faq__toggle::after { left:50%; top:0; width:1px; height:18px; transform: translateX(-50%); }
.faq__q[aria-expanded="true"] .faq__toggle::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq__q[aria-expanded="true"] .faq__toggle::before { background: var(--coral); }
.faq__a { padding: 0 0 24px 38px; max-width: 620px; }
.faq__a p { font-size: 14px; color: var(--stone); line-height: 1.7; }
.faq__list.js-accordion .faq__a { overflow: hidden; max-height: 0; padding-bottom: 0; transition: max-height .45s var(--ease), padding .3s; }
.faq__list.js-accordion .faq__item.is-open .faq__a { max-height: 400px; padding-bottom: 24px; }
@media (max-width: 640px) { .faq__a { padding-left: 0; } .faq__q { gap: 14px; } }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { position: relative; border-top: 1px solid var(--line); }
.final-cta__media { position: absolute; inset: 0; z-index: 0; }
.final-cta__media img { width: 100%; height: 100%; object-fit: cover; opacity: .12; filter: blur(1px); }
.final-cta__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, var(--void) 0%, rgba(11,10,11,.92) 30%, var(--void) 100%); }
.final-cta__wrap { position: relative; z-index: 1; }
.h2--cta { color: var(--white); }
.h3-cta { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px,3.4vw,36px); color: var(--coral); text-transform: uppercase; margin-top: 6px; }
.lede--light { color: rgba(245,241,236,.82); max-width: 540px; }

/* ============================================================
   MULTI-STEP FORM
   ============================================================ */
.discover {
  margin-top: 64px;
  max-width: 840px;
  background: var(--void-soft);
  border: 1px solid var(--line);
}
.discover__intro { padding: clamp(30px,5vw,52px) clamp(28px,5vw,56px) 0; }
.discover__small { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; color: var(--stone-dim); margin-top: 14px; }

.discover__progress {
  display: flex; align-items: center; gap: 6px;
  padding: 24px clamp(28px,5vw,56px) 0;
}
.discover__progress-step {
  flex: 1 1 auto; height: 2px; background: var(--line); position: relative;
}
.discover__progress-step.is-done, .discover__progress-step.is-active { background: var(--coral); }
.discover__progress-label {
  display: none;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--stone);
}
@media (min-width: 640px) {
  .discover__progress { justify-content: space-between; }
  .discover__progress-label { display: block; padding: 0 clamp(28px,5vw,56px); margin-top: 10px; }
}
.discover__progress-mobile {
  display: block; font-family: var(--font-mono); font-size: 11px; color: var(--stone);
  padding: 10px clamp(28px,5vw,56px) 0; letter-spacing: .08em;
}
@media (min-width: 640px) { .discover__progress-mobile { display: none; } }

.discover__body { padding: clamp(28px,5vw,56px); }
.discover__step { display: none; }
.discover__step.is-active { display: block; }

.discover__q-heading {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(24px,3.2vw,34px); color: var(--bone); line-height: 1.05; margin-bottom: 8px;
}
.discover__q-sub { font-size: 13px; color: var(--stone-dim); margin-bottom: 28px; font-family: var(--font-mono); letter-spacing: .04em; text-transform: uppercase; }

.discover__options { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 8px; }
.opt-card {
  position: relative; text-align: left; padding: 18px 20px; background: var(--void);
  border: 1px solid var(--line-strong); color: var(--bone); font-family: var(--font-body);
  font-size: 14px; font-weight: 500; transition: border-color .25s, background .25s;
  flex: 1 1 calc(50% - 6px);
}
.opt-card:hover { border-color: var(--stone); }
.opt-card.is-selected { border-color: var(--coral); background: var(--aubergine-deep); }
.opt-card__check {
  position: absolute; top: 14px; right: 14px; width: 18px; height: 18px;
  border: 1px solid var(--line-strong); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .25s, background .25s;
}
.opt-card.is-selected .opt-card__check { border-color: var(--coral); background: var(--coral); }
.opt-card__check::after {
  content: ''; width: 6px; height: 10px; border-right: 2px solid var(--white); border-bottom: 2px solid var(--white);
  transform: rotate(45deg) translate(-1px, -1px); opacity: 0; transition: opacity .2s;
}
.opt-card.is-selected .opt-card__check::after { opacity: 1; }

.opt-card--mood { text-align: center; padding: 32px 20px; font-size: 17px; flex: 1 1 calc(50% - 6px); }
.opt-card--mood .opt-card__emoji { display: block; font-size: 34px; margin-bottom: 10px; }
.discover__options--mood { max-width: 420px; }

.discover__error { font-size: 12px; color: var(--coral); margin-top: 14px; min-height: 16px; }

.discover__nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; }
.discover__back { font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--stone); background: none; border: none; padding: 10px 0; }
.discover__back:hover { color: var(--bone); }
.discover__back[hidden] { visibility: hidden; }

.discover__contact-grid { display: flex; flex-wrap: wrap; gap: 20px; }
.discover__field { flex: 1 1 calc(50% - 10px); margin-bottom: 4px; }
.discover__field label { display:block; font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--stone); margin-bottom: 10px; }
.discover__field input {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--line-strong);
  color: var(--bone); font-family: var(--font-body); font-size: 15px; padding: 10px 2px; transition: border-color .3s;
}
.discover__field input:focus { border-bottom-color: var(--coral); outline: none; }
.discover__field.has-error input { border-bottom-color: var(--coral); }
@media (max-width: 560px) { .discover__contact-grid .discover__field { flex-basis: 100%; } .opt-card, .opt-card--mood { flex-basis: 100%; } }

.discover__state { text-align: center; padding: 20px 0; }
.discover__state h3 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(24px,3.4vw,34px); margin-bottom: 14px; }
.discover__state--success h3 { color: var(--coral); }
.discover__state--error h3 { color: var(--bone); }
.discover__state p { color: var(--stone); max-width: 460px; margin: 0 auto 14px; }
.discover__state .discover__small { text-align: center; }
.discover__footer-note { font-size: 12px; color: var(--stone-dim); margin-top: 22px; text-align: center; }

.discover__honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* ============================================================
   FOOTER + FLOATING CTAs
   ============================================================ */
.footer { background: var(--void); border-top: 1px solid var(--line); padding: 60px 0 0; }
.footer__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; padding-bottom: 40px; }
.footer__logo { height: 34px; width: auto; margin-bottom: 14px; }
.footer__tagline { color: var(--stone); font-size: 14px; max-width: 260px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 28px; font-size: 13px; text-transform: uppercase; letter-spacing: .05em; color: var(--stone); }
.footer__links a:hover { color: var(--coral); }
.footer__bottom { border-top: 1px solid var(--line); padding: 22px 0; font-size: 12px; color: var(--stone-dim); }

.mobile-cta {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 300;
  background: var(--coral); color: var(--white); text-align: center; padding: 16px;
  font-family: var(--font-body); font-weight: 600; font-size: 14px; letter-spacing: .04em; text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0,0,0,.4); transform: translateY(120%); transition: transform .35s var(--ease);
}
.mobile-cta.is-visible { transform: translateY(0); }
@media (min-width: 900px) { .mobile-cta { display: none; } }
.desktop-cta {
  position: fixed; right: 28px; bottom: 28px; z-index: 300; display: none; align-items: center; gap: 8px;
  background: var(--void-soft); border: 1px solid var(--line-strong); color: var(--bone); padding: 14px 22px;
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  opacity: 0; transform: translateY(12px); transition: opacity .3s, transform .3s, border-color .3s, color .3s;
}
.desktop-cta.is-visible { opacity: 1; transform: translateY(0); }
.desktop-cta:hover { border-color: var(--coral); color: var(--coral); }
@media (min-width: 900px) { .desktop-cta { display: inline-flex; } }
