/* ================================================================
   Stillwater Productions — stillwaterproductions.com
   Style-matched to the portfolio reference:
   flat · hairline borders · 2–4px radii · type-first sections
   Ground #F7F5F0 · Ink #082228 · Sand #F9CE8F · Espresso #421C0B
   ================================================================ */

@font-face {
  font-family: 'Raveo Display';
  src: url('../assets/fonts/raveo.woff2') format('woff2');
  font-weight: 400 800; font-display: swap;
}
@font-face {
  font-family: 'Source Serif 4';
  src: url('../assets/fonts/sourceserif-italic.woff2') format('woff2');
  font-weight: 200 900; font-display: swap;
}
@font-face {
  font-family: 'Instrument Sans';
  src: url('../assets/fonts/instrument.woff2') format('woff2');
  font-weight: 400 700; font-display: swap;
}
@font-face {
  font-family: 'Hanken Grotesk';
  src: url('../assets/fonts/hanken.woff2') format('woff2');
  font-weight: 100 900; font-display: swap;
}

:root {
  --ground: #f7f5f0;
  --ink: #082228;
  --panel: #0d2e36;
  --muted: #3a4e54;
  --sand: #f9ce8f;
  --espresso: #421c0b;
  --stone: #9f9a93;
  --hair: rgba(8, 34, 40, 0.14);
  --hair-sand: rgba(249, 206, 143, 0.25);
  --sand-dim: rgba(249, 206, 143, 0.7);

  --display: 'Raveo Display', sans-serif;
  --serif: 'Source Serif 4', serif;
  --sans: 'Instrument Sans', system-ui, sans-serif;
  --label: 'Hanken Grotesk', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ground);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--sand); color: var(--ink); }
:focus-visible { outline: 2px solid var(--espresso); outline-offset: 3px; }

.wrap { max-width: 1280px; margin: 0 auto; padding-left: 40px; padding-right: 40px; }

/* ---------- type kit ---------- */
.eyebrow {
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.eyebrow--stone { color: var(--stone); }
.eyebrow--sand { color: var(--sand-dim); }

h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(52px, 7vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  max-width: 16ch;
}
h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 20ch;
}
h1 em, h2 em, .serif-it {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 460;
}
.lede {
  font-size: 19px;
  color: var(--muted);
  max-width: 54ch;
  margin-top: 28px;
}

/* ---------- buttons & links ---------- */
.btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--ground);
  border-radius: 2px;
  transition: background 0.2s;
}
.btn:hover { background: var(--panel); }
.btn--sand { background: var(--sand); color: var(--ink); }
.btn--sand:hover { background: #f5c377; }
.arrow-link {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--hair);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.arrow-link:hover { color: var(--espresso); border-color: var(--espresso); }
.arrow-link--sand { color: var(--sand); border-color: var(--hair-sand); }
.arrow-link--sand:hover { color: var(--ground); border-color: var(--ground); }

/* ---------- reveal ---------- */
[data-io] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1), transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
[data-io].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-io] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ================================================================
   NAV
================================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(247, 245, 240, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hair);
}
.nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.nav__logo img { height: 28px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a { font-size: 14px; font-weight: 500; color: var(--ink); transition: color 0.2s; }
.nav__links a:hover { color: var(--espresso); }
.nav__links a.btn { font-size: 13px; color: var(--ground); }
.nav__links a.btn:hover { color: var(--ground); }
.nav__burger { display: none; }

/* mobile menu */
.mmenu {
  display: none;
  border-bottom: 1px solid var(--hair);
  background: var(--ground);
}
.mmenu.open { display: block; }
.mmenu a {
  display: block;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 500;
  border-top: 1px solid var(--hair);
}

/* ================================================================
   HERO
================================================================ */
.hero { padding-top: 96px; padding-bottom: 72px; }
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
}

/* ---------- film embed ---------- */
.film { padding-bottom: 110px; }
.film__frame {
  position: relative;
  border: 1px solid var(--hair);
  border-radius: 4px;
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
}
.film__frame video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.film__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s;
}
.film__frame.playing .film__poster { opacity: 0; pointer-events: none; }
.film__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transition: opacity 0.3s;
}
.film__frame.playing .film__play { opacity: 0; pointer-events: none; }
.film__play span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ground);
  background: rgba(8, 34, 40, 0.72);
  border: 1px solid rgba(247, 245, 240, 0.4);
  border-radius: 2px;
  padding: 14px 26px;
  transition: background 0.2s;
}
.film__frame:hover .film__play span { background: rgba(8, 34, 40, 0.9); }
.film__caption {
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 16px;
}

/* ================================================================
   PROOF BAND (navy stats)
================================================================ */
.proof { background: var(--ink); color: var(--ground); }
.proof__head { padding-top: 64px; padding-bottom: 20px; }
.proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-bottom: 64px;
}
.proof__cell { padding: 0 40px; border-left: 1px solid var(--hair-sand); }
.proof__cell:first-child { border-left: 0; padding-left: 0; }
.proof__num {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(44px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--sand);
}
.proof__num em { font-family: var(--serif); font-style: italic; font-weight: 460; }
.proof__label {
  font-family: var(--label);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand-dim);
  margin-top: 14px;
}

/* ================================================================
   SECTIONS (shared)
================================================================ */
.sec { padding-top: 110px; padding-bottom: 110px; scroll-margin-top: 80px; }
.sec--hair { border-top: 1px solid var(--hair); }
.sec--ink { background: var(--ink); color: var(--ground); }

/* ================================================================
   PRICING
================================================================ */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.tier {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--hair);
  border-radius: 4px;
  padding: 36px 32px;
  background: #fff;
}
.tier--featured { border-color: var(--ink); }
.tier__flag {
  font-family: var(--label);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--espresso);
  margin-bottom: 14px;
}
.tier__name {
  font-family: var(--display);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.01em;
}
.tier__price {
  font-family: var(--display);
  font-size: 44px;
  letter-spacing: -0.02em;
  margin-top: 18px;
}
.tier__price small {
  font-family: var(--label);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-left: 8px;
}
.tier__desc { font-size: 15px; color: var(--muted); margin-top: 14px; }
.tier__list { margin: 22px 0 28px; flex: 1; }
.tier__list li {
  font-size: 15px;
  color: var(--muted);
  padding: 9px 0 9px 24px;
  border-top: 1px solid var(--hair);
  position: relative;
}
.tier__list li::before {
  content: '✓';
  position: absolute;
  left: 2px;
  color: var(--espresso);
  font-size: 13px;
}
.tier .btn { text-align: center; }
.pricing__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px 32px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--hair);
  font-size: 15px;
  color: var(--muted);
}

/* ================================================================
   PLAN (navy)
================================================================ */
.plan__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
}
.plan__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 460;
  font-size: 44px;
  line-height: 1;
  color: var(--sand);
}
.plan__step h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  margin: 18px 0 10px;
}
.plan__step p { font-size: 16px; color: rgba(247, 245, 240, 0.72); max-width: 34ch; }
.plan__vows {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 40px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--hair-sand);
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand-dim);
}

/* ================================================================
   CREW
================================================================ */
.crew__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.crew__card { border-radius: 4px; overflow: hidden; position: relative; }
.crew__card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.crew__card:hover img { transform: scale(1.04); }
.crew__card figcaption {
  font-family: var(--label);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 12px;
}
.crew__foot { margin-top: 48px; display: flex; flex-wrap: wrap; align-items: center; gap: 28px; }

/* ================================================================
   CASE CARDS
================================================================ */
.cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.case { display: block; }
.case__img { border-radius: 4px; overflow: hidden; }
.case__img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.case:hover .case__img img { transform: scale(1.04); }
.case__meta {
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 20px;
}
.case__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.01em;
  margin-top: 8px;
}
.case__result {
  font-size: 15px;
  color: var(--muted);
  margin-top: 6px;
}
.case__result i { font-style: normal; transition: transform 0.3s; display: inline-block; }
.case:hover .case__result i { transform: translateX(4px); }

/* ================================================================
   SESSION (lead gen)
================================================================ */
.session__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}
.form { display: grid; gap: 22px; margin-top: 8px; }
.form label {
  display: grid;
  gap: 8px;
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.form input, .form select {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 2px;
  padding: 13px 14px;
  outline: none;
  appearance: none;
  transition: border-color 0.2s;
}
.form input:focus, .form select:focus { border-color: var(--ink); }
.form .btn { justify-self: start; margin-top: 4px; }
.form__fine { font-size: 13px; color: var(--stone); }

/* ================================================================
   FINAL CTA (navy, ambient video)
================================================================ */
.cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-top: 130px;
  padding-bottom: 130px;
}
.cta video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.cta__inner { position: relative; }
.cta h2 { margin: 0 auto; }
.cta h2 em { color: var(--sand); }
.cta .btn { margin-top: 44px; }

/* ================================================================
   FOOTER
================================================================ */
.footer { border-top: 1px solid var(--hair); background: var(--ground); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-top: 64px;
  padding-bottom: 48px;
}
.footer__brand img { height: 26px; width: auto; }
.footer__tag {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 460;
  font-size: 17px;
  color: var(--muted);
  margin-top: 14px;
}
.footer__h {
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 16px;
}
.footer__grid a {
  display: block;
  font-size: 15px;
  color: var(--muted);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer__grid a:hover { color: var(--espresso); }
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 32px;
  padding-top: 22px;
  padding-bottom: 28px;
  border-top: 1px solid var(--hair);
  font-size: 13px;
  color: var(--stone);
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 960px) {
  .wrap { padding-left: 24px; padding-right: 24px; }
  .nav__links { display: none; }
  .nav__burger {
    display: grid;
    gap: 5px;
    padding: 8px 0;
  }
  .nav__burger span { width: 24px; height: 2px; background: var(--ink); }
  .tiers, .plan__grid, .crew__grid, .cases { grid-template-columns: 1fr; }
  .proof__grid { grid-template-columns: 1fr 1fr; gap: 40px 0; }
  .proof__cell:nth-child(3) { border-left: 0; padding-left: 0; }
  .session__grid { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .sec { padding-top: 80px; padding-bottom: 80px; }
  .hero { padding-top: 64px; }
  .mmenu a { padding: 16px 24px; }
}

/* ================================================================
   V2 additions — full-bleed film, BTS accents, subpages, quiz
================================================================ */

/* ---------- full-bleed autoplay film ---------- */
.filmwide { position: relative; background: var(--ink); }
.filmwide video {
  width: 100vw;
  aspect-ratio: 16 / 9;
  height: auto;
  max-height: 92vh;
  object-fit: cover;
  display: block;
}
.filmwide__sound {
  position: absolute;
  right: clamp(16px, 3vw, 40px);
  bottom: clamp(16px, 3vw, 32px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ground);
  background: rgba(8, 34, 40, 0.72);
  border: 1px solid rgba(247, 245, 240, 0.35);
  border-radius: 2px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.filmwide__sound:hover { background: rgba(8, 34, 40, 0.92); }

/* ---------- split section with BTS image ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.split__img { border-radius: 4px; overflow: hidden; }
.split__img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.split__img figcaption {
  font-family: var(--label);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 12px;
}

/* ---------- plan step images ---------- */
.plan__img {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
}
.plan__img img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }

/* ---------- crew wide image ---------- */
.crew__wide { border-radius: 4px; overflow: hidden; margin-top: 48px; }
.crew__wide img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; }
.crew__wide figcaption {
  font-family: var(--label);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 12px;
}

/* ---------- case duo image (Sandlot kids) ---------- */
.case__img--duo { display: flex; gap: 4px; aspect-ratio: 4 / 3; }
.case__img--duo img { width: 50%; height: 100%; aspect-ratio: auto; object-fit: cover; object-position: top; }

/* ---------- prominent quiz CTA ---------- */
.quizcta {
  margin-top: 48px;
  padding: clamp(28px, 5vw, 44px);
  background: var(--ink);
  border-radius: 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 40px;
  color: var(--ground);
}
.quizcta__t {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -0.01em;
}
.quizcta__t em { color: var(--sand); }
.quizcta__s { font-size: 15px; color: rgba(247, 245, 240, 0.7); margin-top: 6px; }

/* ---------- page hero (subpages) ---------- */
.phero { padding-top: 96px; padding-bottom: 88px; }
.phero--ink { background: var(--ink); color: var(--ground); }

/* ---------- track record band ---------- */
.track { background: var(--ink); color: var(--ground); }

/* ---------- team grid (about) ---------- */
.team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.team__card img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 4px; }
.team__name {
  font-family: var(--display);
  font-weight: 400;
  font-size: 20px;
  margin-top: 16px;
}
.team__role {
  font-family: var(--label);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 4px;
}

/* ---------- big quote / testimonial ---------- */
.bigquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 460;
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.35;
  max-width: 30ch;
}
.bigquote__by {
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 24px;
}

/* ---------- film embeds (portfolio) ---------- */
.embeds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 64px;
}
.embed { border-radius: 4px; overflow: hidden; background: var(--panel); }
.embed iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; display: block; }
.embed__label {
  font-family: var(--label);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 12px;
}
.reels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 64px;
}
.reel { border-radius: 4px; overflow: hidden; background: rgba(247, 245, 240, 0.05); }
.reel iframe { width: 100%; aspect-ratio: 9 / 16; border: 0; display: block; }
.reel__label {
  font-family: var(--label);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sand-dim);
  margin-top: 10px;
}

/* ---------- gallery (portfolio) ---------- */
.gallery { columns: 3; column-gap: 18px; margin-top: 64px; }
.gallery figure { break-inside: avoid; margin-bottom: 18px; border-radius: 4px; overflow: hidden; cursor: zoom-in; }
.gallery img { width: 100%; display: block; transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1); }
.gallery figure:hover img { transform: scale(1.03); }
.gallery__note {
  font-family: var(--label);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 20px;
}

/* ---------- lightbox ---------- */
.box {
  position: fixed; inset: 0;
  z-index: 2000;
  background: rgba(5, 20, 24, 0.94);
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 56px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0s linear 0.4s;
}
.box.on { opacity: 1; visibility: visible; transition: opacity 0.4s, visibility 0s; }
.box img { max-width: min(1200px, 100%); max-height: 86vh; border-radius: 4px; }
.box__x {
  position: absolute;
  top: 20px; right: 40px;
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ground);
  border-bottom: 1px solid var(--ground);
  padding-bottom: 4px;
  cursor: pointer;
}

/* ---------- comparison table (pricing) ---------- */
.cmp { width: 100%; border-collapse: collapse; margin-top: 64px; font-size: 15px; }
.cmp th, .cmp td { padding: 16px 14px; border-bottom: 1px solid var(--hair); text-align: left; vertical-align: top; }
.cmp thead th { border-bottom: 2px solid var(--ink); }
.cmp__pkg { font-family: var(--display); font-weight: 500; font-size: 17px; }
.cmp__price { font-family: var(--serif); font-style: italic; font-size: 15px; }
.cmp__save { font-family: var(--label); font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); display: block; margin-top: 4px; }
.cmp td.on { color: var(--ink); font-weight: 500; }
.cmp td.off { color: var(--stone); }
.cmp tfoot td { font-family: var(--display); font-weight: 500; font-size: 18px; border-bottom: 0; }

/* ---------- à la carte ---------- */
.carte {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 72px);
  margin-top: 64px;
}
.carte__h {
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 8px;
}
.carte ul li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hair);
  font-size: 16px;
}
.carte ul li b { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 17px; white-space: nowrap; }
.carte ul li small { color: var(--stone); font-size: 12px; }
.carte__note { font-size: 13px; color: var(--stone); margin-top: 12px; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; }
.faq__item { border-bottom: 1px solid var(--hair); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  text-align: left;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(17px, 1.6vw, 20px);
}
.faq__q i { font-style: normal; font-size: 24px; color: var(--stone); }
.faq__a { display: none; padding: 0 0 24px; font-size: 15px; line-height: 1.6; color: var(--muted); max-width: 66ch; }
.faq__item.open .faq__a { display: block; }

/* ---------- quiz (pricing) ---------- */
.quiz {
  background: #fff;
  border-radius: 8px;
  padding: clamp(24px, 3.5vw, 36px);
  color: var(--ink);
  box-shadow: 0 20px 60px rgba(4, 16, 20, 0.35);
}
.quiz__top {
  display: flex;
  justify-content: space-between;
  font-family: var(--label);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 10px;
}
.quiz__bar { height: 3px; background: var(--hair); border-radius: 99px; overflow: hidden; margin-bottom: 26px; }
.quiz__bar i { display: block; height: 100%; width: 0%; background: var(--sand); transition: width 0.4s; }
.quiz__prompt { font-family: var(--display); font-weight: 400; font-size: clamp(22px, 2.4vw, 28px); letter-spacing: -0.01em; }
.quiz__help { font-size: 14px; color: var(--muted); margin: 6px 0 20px; }
.quiz__opt {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  border: 1px solid var(--hair);
  border-radius: 6px;
  padding: 15px 18px;
  margin-bottom: 12px;
  background: #fff;
  transition: border-color 0.2s, background 0.2s;
}
.quiz__opt:hover { border-color: var(--ink); }
.quiz__opt.sel { border-color: var(--ink); background: rgba(249, 206, 143, 0.14); }
.quiz__opt b { display: block; font-size: 16px; font-weight: 600; }
.quiz__opt span { display: block; font-size: 13.5px; color: var(--muted); margin-top: 2px; }
.quiz__dot {
  flex: none;
  width: 20px; height: 20px;
  border: 1.5px solid var(--stone);
  border-radius: 50%;
  position: relative;
}
.quiz__opt.sel .quiz__dot { border-color: var(--espresso); }
.quiz__opt.sel .quiz__dot::after {
  content: '';
  position: absolute; inset: 4px;
  border-radius: 50%;
  background: var(--espresso);
}
.quiz__nav { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.quiz__back { font-size: 14px; color: var(--muted); }
.quiz__next {
  padding: 13px 24px;
  border-radius: 2px;
  background: var(--ink);
  color: var(--ground);
  font-weight: 600;
  font-size: 14px;
  opacity: 0.4;
  cursor: not-allowed;
}
.quiz__next.ok { opacity: 1; cursor: pointer; }
/* result card */
.quiz__result { text-align: center; padding: 8px 4px 4px; position: relative; }
.quiz__badge {
  display: inline-block;
  font-family: var(--label);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--sand);
  color: var(--espresso);
  border-radius: 999px;
  padding: 6px 15px;
  margin-bottom: 16px;
}
.quiz__pkg { font-family: var(--display); font-size: clamp(28px, 3vw, 36px); }
.quiz__price { font-family: var(--serif); font-style: italic; font-size: 20px; margin-top: 4px; }
.quiz__why { font-size: 14.5px; color: var(--muted); max-width: 46ch; margin: 14px auto 0; text-align: left; }
.quiz__feats { text-align: left; max-width: 46ch; margin: 16px auto 0; }
.quiz__feats li { font-size: 14px; color: var(--muted); padding: 6px 0 6px 22px; position: relative; }
.quiz__feats li::before { content: '✓'; position: absolute; left: 0; color: var(--espresso); font-size: 12px; }
.quiz__book {
  display: block;
  margin-top: 22px;
  padding: 15px 24px;
  background: var(--sand);
  color: var(--espresso);
  border-radius: 2px;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
}
.quiz__retake { display: inline-block; margin-top: 14px; font-size: 13.5px; color: var(--muted); border-bottom: 1px solid var(--hair); cursor: pointer; }

/* hero+quiz layout (pricing) */
.qhero {
  position: relative;
  background: var(--ink);
  color: var(--ground);
  overflow: hidden;
}
.qhero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
  gap: clamp(40px, 5vw, 64px);
  align-items: center;
  padding-top: clamp(52px, 7vw, 104px);
  padding-bottom: clamp(60px, 7vw, 116px);
}
.qhero__ticks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 28px;
  font-family: var(--label);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247, 245, 240, 0.55);
}

/* stat rows in case writeups */
.statrow { display: flex; gap: clamp(20px, 4vw, 48px); margin-top: 18px; flex-wrap: wrap; }
.statrow b {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--ink);
}
.statrow span {
  font-family: var(--label);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}

@media (max-width: 960px) {
  .split, .carte, .embeds, .qhero__grid { grid-template-columns: 1fr; }
  .team { grid-template-columns: 1fr 1fr; }
  .reels { grid-template-columns: repeat(2, 1fr); }
  .gallery { columns: 2; }
  .cmp { font-size: 13px; }
  .cmp th, .cmp td { padding: 10px 8px; }
}
@media (max-width: 620px) {
  .gallery { columns: 1; }
  .reels { grid-template-columns: 1fr; }
}


/* ---------- press + client logos ---------- */
.press { border-top: 1px solid var(--hair); padding-top: 72px; padding-bottom: 72px; }
.press__feature {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 18px;
  margin-bottom: 44px;
}
.press__as {
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--stone);
}
.press__nyt {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(26px, 3.2vw, 38px);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(28px, 4.5vw, 64px);
}
.logos img {
  height: clamp(26px, 3vw, 40px);
  width: auto;
  filter: grayscale(1);
  opacity: 0.55;
  transition: opacity 0.25s, filter 0.25s;
}
.logos img:hover { filter: none; opacity: 1; }
