/* ============================================================
   STRONGHOLD RECOVERY — main.css
   BUILD 0: design tokens, reset, typography, utilities
   Layout reference: thegrind.nl (patterns only, code is ours)
   Copper Lane Studio
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Colour — accent is a working placeholder until Steven confirms brand */
  --bg:        #04132a;   /* logo navy, replaces near-black */
  --bg-raised: #151517;
  --ink:       #f2efe9;
  --ink-dim:   rgba(242, 239, 233, .62);
  --card:      #ffffff;       /* bright white cards and light sections */
  --card-ink:  #141414;
  --accent:    #ff6a00;       /* recovery amber-orange */
  --accent-ink:#04132a;
  --emerald:   #041516;       /* deep teal-green (Steven's ref), reviews + founder story */
  --line:      rgba(242, 239, 233, .14);

  /* Type */
  --font-display: 'Anton', 'Arial Narrow', Impact, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Fluid type scale */
  --fs-hero: clamp(3.2rem, 9.5vw, 8.5rem);
  --fs-h2:   clamp(2.2rem, 5.5vw, 4.8rem);
  --fs-h3:   clamp(1.5rem, 3vw, 2.4rem);
  --fs-h4:   clamp(1.15rem, 2vw, 1.5rem);
  --fs-body: clamp(.95rem, 1.1vw, 1.06rem);
  --fs-small:.85rem;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --section-pad: clamp(4rem, 10vw, 8.5rem);
  --radius: 14px;
  --radius-sm: 8px;

  /* Motion */
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --dur: .7s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul[role="list"], ol[role="list"] { list-style: none; }

/* ---------- Grain overlay ---------- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: url("../assets/img/grain.png") repeat;
  background-size: 256px 256px;
  opacity: .07;
  pointer-events: none;
  z-index: 2000;
}

/* ---------- Display type ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;            /* Anton is single-weight */
  text-transform: uppercase;
  line-height: .92;
  letter-spacing: .01em;
}
h1 { font-size: var(--fs-hero); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-family: var(--font-body); font-weight: 700; font-size: var(--fs-h4); line-height: 1.25; }
.muted { color: var(--ink-dim); }
.accent { color: var(--accent); }

/* Eyebrow label with accent dot, per reference */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
}
.eyebrow::before {
  content: "";
  width: .5em; height: .5em;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}

/* ---------- Layout utilities ---------- */
.container { width: min(var(--container), 100% - var(--gutter) * 2); margin-inline: auto; }
.section { padding-block: var(--section-pad); position: relative; }
.section--raised { background: var(--bg-raised); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  padding: .95em 1.9em;
  border-radius: 999px;
  font-weight: 700;
  font-size: var(--fs-small);
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .25s var(--ease-out), background .25s, color .25s;
}
.btn--primary { background: var(--accent); color: var(--accent-ink); }
.btn--primary:hover { transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Cream card (reviews, story) ---------- */
.card {
  background: var(--card);
  color: var(--card-ink);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

/* ---------- Placeholder frames ---------- */
.ph {
  background: var(--bg-raised);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.ph > img, .ph > svg { width: 100%; height: 100%; object-fit: cover; }

/* Aspect ratio holders — swap placeholder src for real photos later, layout holds */
.ratio-1x1  { aspect-ratio: 1 / 1; }
.ratio-4x5  { aspect-ratio: 4 / 5; }
.ratio-3x4  { aspect-ratio: 3 / 4; }
.ratio-16x9 { aspect-ratio: 16 / 9; }
.ratio-9x16 { aspect-ratio: 9 / 16; }

/* ---------- Reveal (JS adds .is-visible) ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
.no-js [data-reveal] { opacity: 1; transform: none; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================================
   BUILD 2 — HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-block: clamp(6rem, 12vh, 9rem) clamp(3rem, 6vh, 5rem);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media video,
.hero__media .hero__poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(12,12,13,.92) 0%, rgba(12,12,13,.45) 45%, rgba(12,12,13,.55) 100%);
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  width: min(var(--container), 100% - var(--gutter) * 2);
}
.hero__title { margin-block: 1.1rem 1.2rem; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: inline-block; }
.hero__sub { max-width: 46ch; color: var(--ink-dim); }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.hero__wizard { margin-top: 2.2rem; min-height: 2px; } /* BUILD 3 mounts here */

/* Layered photo cards, right side */
.hero__cards { position: relative; height: clamp(320px, 42vw, 520px); }
.hero__card {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.hero__card img { width: 100%; height: 100%; object-fit: cover; }
.hero__card--a { width: 62%; aspect-ratio: 4/5; right: 26%; bottom: 18%; rotate: -4deg; z-index: 2; }
.hero__card--b { width: 46%; aspect-ratio: 3/4; right: 0; bottom: 0; rotate: 5deg; z-index: 3; }
.hero__card--c { width: 38%; aspect-ratio: 1/1; right: 58%; bottom: 0; rotate: 2deg; z-index: 1; opacity: .85; }

/* Scroll cue */
.hero__scroll {
  position: absolute;
  right: clamp(1rem, 3vw, 2.5rem);
  bottom: clamp(1rem, 3vh, 2rem);
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-dim);
  writing-mode: vertical-rl;
}
.hero__scroll::after {
  content: "";
  display: block;
  width: 1px; height: 42px;
  background: var(--accent);
  margin: .8em auto 0;
  animation: scrollPulse 1.8s var(--ease-out) infinite;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Initial states only when GSAP is running, so no-JS stays fully visible */
.has-gsap .hero__title .line > span { transform: translateY(110%); }
.has-gsap [data-hero-fade] { opacity: 0; transform: translateY(22px); }
.has-gsap .hero__card { opacity: 0; transform: translateY(46px); }

@media (max-width: 820px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__cards { height: auto; display: flex; gap: .8rem; margin-top: 1rem; }
  .hero__card { position: static; rotate: none; width: 33.33%; opacity: 1 !important; }
  .hero__card--a, .hero__card--b, .hero__card--c { aspect-ratio: 3/4; }
  .hero__scroll { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__scroll::after { animation: none; }
  .has-gsap .hero__title .line > span,
  .has-gsap [data-hero-fade],
  .has-gsap .hero__card { transform: none; opacity: 1; }
}

/* ============================================================
   BUILD 1 — HEADER / NAV / CONTACT POPOUT
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 3100;
  transition: background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(4,19,42,.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}
.header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: .9rem;
}
.header__logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1;
}
.header__logo .accent { color: var(--accent); }
.header__nav { display: flex; gap: 2rem; }
.header__nav a {
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-dim);
  transition: color .25s;
}
.header__nav a:hover, .header__nav a:focus-visible { color: var(--ink); }
.header__actions { display: flex; align-items: center; gap: .8rem; }
.header__cta { padding: .7em 1.5em; }

/* Burger (mobile) */
.burger { display: none; position: relative; width: 44px; height: 44px; z-index: 1102; }
.burger span {
  position: absolute; left: 10px; right: 10px;
  height: 2px; background: var(--ink);
  transition: transform .3s var(--ease-out), opacity .2s;
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Full-screen overlay menu */
.menu {
  position: fixed; inset: 0;
  z-index: 3000;
  background: var(--bg);
  display: flex;
  align-items: center;
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
  transition: clip-path .55s var(--ease-out), visibility 0s .55s;
}
.menu.is-open {
  clip-path: inset(0 0 0% 0);
  visibility: visible;
  transition: clip-path .55s var(--ease-out), visibility 0s;
}
.menu__list { list-style: none; }
.menu__list a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 9vw, 4.5rem);
  text-transform: uppercase;
  line-height: 1.12;
  padding-block: .12em;
  transition: color .25s;
}
.menu__list a:hover, .menu__list a:focus-visible { color: var(--accent); }
.menu__list li {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.menu.is-open .menu__list li { opacity: 1; transform: none; }
.menu.is-open .menu__list li:nth-child(1) { transition-delay: .18s; }
.menu.is-open .menu__list li:nth-child(2) { transition-delay: .26s; }
.menu.is-open .menu__list li:nth-child(3) { transition-delay: .34s; }
.menu.is-open .menu__list li:nth-child(4) { transition-delay: .42s; }
.menu.is-open .menu__list li:nth-child(5) { transition-delay: .50s; }
.menu__meta { margin-top: 2.2rem; color: var(--ink-dim); font-size: var(--fs-small); }
.menu__meta a { color: var(--ink); font-weight: 700; }

/* Contact popout */
.popout-wrap { position: relative; }
.popout {
  position: absolute;
  top: calc(100% + .9rem);
  right: 0;
  width: min(300px, 86vw);
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .25s var(--ease-out), transform .25s var(--ease-out);
}
.popout.is-open { opacity: 1; transform: none; pointer-events: auto; }
.popout h4 { font-size: 1rem; margin-bottom: .35rem; }
.popout p { font-size: var(--fs-small); color: var(--ink-dim); margin-bottom: 1rem; }
.popout .btn { width: 100%; justify-content: center; margin-top: .5rem; }
.popout__wa { background: #25d366; color: #0c0c0d; }
.popout__wa:hover { transform: translateY(-2px); }

@media (max-width: 820px) {
  .header__nav { display: none; }
  .burger { display: block; }
  .header__cta { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .menu { transition: none; }
  .menu__list li { transition: none; }
}

/* ============================================================
   BUILD 3 — QUOTE WIZARD
   ============================================================ */
.wizard {
  background: rgba(21, 21, 23, .82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  max-width: 560px;
}
.wizard__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: .9rem;
}
.wizard__step-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.wizard__q {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.wizard__bar {
  height: 3px;
  background: var(--line);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 1.2rem;
}
.wizard__bar i {
  display: block;
  height: 100%;
  background: var(--accent);
  width: 25%;
  transition: width .4s var(--ease-out);
}
.wizard fieldset { border: none; }
.wizard fieldset[hidden] { display: none; }
.wizard legend {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

/* Option pills */
.wizard__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
}
.wizard__opt input { position: absolute; opacity: 0; pointer-events: none; }
.wizard__opt span {
  display: block;
  text-align: center;
  padding: .85em 1em;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
}
.wizard__opt input:checked + span {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}
.wizard__opt input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }

/* Text inputs */
.wizard__field { margin-bottom: .8rem; }
.wizard__field label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: .4rem;
}
.wizard__field input {
  width: 100%;
  padding: .85em 1em;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font: inherit;
}
.wizard__field input:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }

/* Controls + messages */
.wizard__controls {
  display: flex;
  justify-content: space-between;
  gap: .8rem;
  margin-top: 1.2rem;
}
.wizard__back[disabled] { opacity: .35; cursor: default; }
.wizard__error {
  color: #ff7b6b;
  font-size: var(--fs-small);
  margin-top: .7rem;
  min-height: 1.2em;
}
.wizard__done { text-align: center; padding-block: 1.2rem; }
.wizard__done h4 { margin-bottom: .5rem; }
.wizard__done p { color: var(--ink-dim); font-size: var(--fs-small); }

@media (max-width: 480px) {
  .wizard__options { grid-template-columns: 1fr; }
}

/* ============================================================
   BUILD 4 (v2) — PINNED GRID ASSEMBLY (light section)
   One centred image scales back into a 15-image grid while pinned.
   ============================================================ */
.proof {
  background: var(--card);
  color: var(--card-ink);
  padding-block: 0;
  z-index: 2001; /* above the grain overlay: clean white, no paper texture */
}
.proof__head {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  padding-top: var(--section-pad);
  padding-inline: var(--gutter);
}
.proof__head h2 { font-size: clamp(2.6rem, 6vw, 5.2rem); }
.proof__head p {
  max-width: 54ch;
  margin: 1.6rem auto 0;
  color: rgba(20,20,20,.65);
}
.proof__stage {
  min-height: 100svh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 8vh, 6rem);
}
.proof__caption {
  position: absolute;
  top: clamp(5rem, 11vh, 7rem);
  left: var(--gutter);
  z-index: 5;
}
.proof__caption .eyebrow { color: var(--card-ink); }
.proof__caption p {
  font-size: var(--fs-small);
  color: rgba(20,20,20,.55);
  font-weight: 700;
}
.proof__caption b {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--card-ink);
  margin-right: .3em;
}
.proof__grid {
  transform-origin: 50% 50%;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(.8rem, 1.5vw, 1.5rem);
  width: min(1360px, 94vw, 118vh);
}
.proof__cell {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(20,20,20,.06);
}
.proof__cell img { width: 100%; height: 100%; object-fit: cover; }
.proof__cell--mid { z-index: 3; }
.proof__word {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: end center;
  padding-bottom: 14%;
  text-align: center;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(1.32rem, 2.4vw, 2.28rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--ink);
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
  padding: .5em;
}
.proof__word--a { opacity: 0; }

/* Static fallback: without the pin runtime everything is simply visible */
@media (max-width: 820px) {
  .proof__stage { min-height: 0; padding-block: var(--section-pad); }
  .proof__grid { grid-template-columns: repeat(3, 1fr); }
  .proof__cell:nth-child(n+13) { display: none; } /* 12 shots on mobile */
  .proof__caption { position: static; margin-bottom: 1.6rem; }
  .proof__stage { display: block; }
  .proof__word--a { opacity: 1; }
  .proof__word--q { opacity: 0; }
}

/* ============================================================
   BUILD 5 — MISSION + MARQUEES + VIDEO LIGHTBOX
   ============================================================ */
.mission { overflow: hidden; padding-bottom: 0; }
.mission__head { max-width: 880px; }
.mission__head h2 { margin-block: .9rem 1.2rem; }
.mission__lead { max-width: 56ch; color: var(--ink-dim); }
.mission__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.mission__play {
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.mission__play::before {
  content: "";
  width: 0; height: 0;
  border-style: solid;
  border-width: .38em 0 .38em .62em;
  border-color: transparent transparent transparent currentColor;
}

/* Marquee rows */
.marquee {
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee + .marquee { margin-top: 1rem; }
.marquee__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marqueeX var(--marquee-speed, 42s) linear infinite;
}
.marquee--reverse .marquee__track { animation-direction: reverse; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  height: clamp(150px, 22vw, 230px);
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex: none;
}
.marquee__item img { height: 100%; width: auto; object-fit: cover; }
@keyframes marqueeX {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .marquee { overflow-x: auto; mask-image: none; -webkit-mask-image: none; }
}

/* Video lightbox */
.lightbox {
  border: none;
  padding: 0;
  background: transparent;
  max-width: min(960px, 92vw);
  width: 100%;
}
.lightbox::backdrop { background: rgba(0,0,0,.82); backdrop-filter: blur(4px); }
.lightbox__body { border-radius: var(--radius); overflow: hidden; background: #000; }
.lightbox__body video { width: 100%; aspect-ratio: 16/9; display: block; }
.lightbox__close {
  position: absolute;
  top: -2.6rem; right: 0;
  color: var(--ink);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.lightbox__close:hover { color: var(--accent); }

/* ============================================================
   BUILD 6 — STATS BAND
   ============================================================ */
.stats { border-block: 1px solid var(--line); }
.stats__head { text-align: center; max-width: 760px; margin-inline: auto; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.stats__head h2 { margin-top: .9rem; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stats__cell {
  text-align: center;
  padding: clamp(1.2rem, 3vw, 2.4rem) 1rem;
}
.stats__cell + .stats__cell { border-left: 1px solid var(--line); }
.stats__value {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: .95;
}
.stats__label {
  margin-top: .5rem;
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
@media (max-width: 640px) {
  .stats__grid { grid-template-columns: 1fr; }
  .stats__cell + .stats__cell { border-left: none; border-top: 1px solid var(--line); }
}

/* ============================================================
   BUILD 7 — TREATMENTS STORYTELLING (sticky media + flowing panels)
   ============================================================ */
.services__head { max-width: 820px; margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.services__head h2 { margin-top: .9rem; }
.services__layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

/* Sticky media column */
.services__media {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;            /* vertically centre the image in the viewport */
}
.services__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  max-height: 82vh;               /* keep the frame within tall scrolls */
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(0,0,0,.5);
}
.services__img {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .55s var(--ease-out);
}
.services__img img { width: 100%; height: 100%; object-fit: cover; }
.services__img.is-active { opacity: 1; }
.services__chip {
  position: absolute;
  left: 1.1rem; bottom: 1.1rem;
  z-index: 2;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: .06em;
  padding: .45em .9em;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

/* Flowing panels */
.services__panel {
  min-height: 68vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  padding-block: clamp(2rem, 5vh, 3.5rem);
}
.services__panel:last-child { border-bottom: none; }
.services__num {
  font-family: var(--font-display);
  font-size: .95rem;
  color: var(--accent);
  letter-spacing: .12em;
}
.services__panel h3 { margin-block: .5rem .9rem; }
.services__panel p { max-width: 50ch; color: var(--ink-dim); }
.services__panel .btn { margin-top: 1.4rem; align-self: flex-start; }
.services__inline { display: none; }

@media (max-width: 820px) {
  .services__layout { grid-template-columns: 1fr; }
  .services__media { display: none; }
  .services__panel { min-height: 0; }
  .services__inline {
    display: block;
    aspect-ratio: 16/9;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 1.2rem;
  }
  .services__inline img { width: 100%; height: 100%; object-fit: cover; }
}

/* ============================================================
   BUILD 8 — WE COME TO YOU SHOWCASE
   ============================================================ */
.showcase { overflow: hidden; }
.showcase__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.showcase__copy h2 { margin-block: .9rem 1.1rem; }
.showcase__copy > p { max-width: 50ch; color: var(--ink-dim); }
.showcase__points {
  margin-top: 1.6rem;
  display: grid;
  gap: .7rem;
}
.showcase__points li {
  display: flex;
  align-items: baseline;
  gap: .7em;
  font-weight: 700;
  font-size: var(--fs-small);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.showcase__points li::before {
  content: "";
  width: .45em; height: .45em;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
  transform: translateY(-.1em);
}
.showcase__copy .btn { margin-top: 1.8rem; }

/* Floating visual */
.showcase__stage { position: relative; padding-block: 2rem; }
.showcase__device {
  width: min(330px, 78%);
  margin-inline: auto;
  aspect-ratio: 9/16;
  border-radius: calc(var(--radius) * 1.6);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.55);
  animation: floatY 5.5s ease-in-out infinite;
}
.showcase__device img { width: 100%; height: 100%; object-fit: cover; }
.showcase__badge {
  position: absolute;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .7em 1em;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 14px 38px rgba(0,0,0,.45);
  animation: floatY 6.5s ease-in-out infinite;
}
.showcase__badge b { color: var(--accent); display: block; font-family: var(--font-display); font-size: 1.15rem; letter-spacing: .05em; }
.showcase__badge--1 { top: 14%; left: 2%; animation-delay: .6s; }
.showcase__badge--2 { top: 46%; right: 0; animation-delay: 1.4s; }
.showcase__badge--3 { bottom: 10%; left: 8%; animation-delay: 2.2s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@media (max-width: 820px) {
  .showcase__inner { grid-template-columns: 1fr; }
  .showcase__stage { order: 2; }
  .showcase__badge { position: static; display: inline-block; margin: .8rem .4rem 0 0; animation: none; }
  .showcase__stage { display: flex; flex-direction: column; align-items: center; }
}
@media (prefers-reduced-motion: reduce) {
  .showcase__device, .showcase__badge { animation: none; }
}

/* ============================================================
   BUILD 9 — SESSIONS GALLERY (scroll-scrubbed columns)
   ============================================================ */
.jobs__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.jobs__head h2 { margin-top: .9rem; }
.jobs__head p { max-width: 38ch; color: var(--ink-dim); }

.jobs__window {
  height: clamp(480px, 72vh, 680px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 7%, #000 93%, transparent);
}
.jobs__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  height: 100%;
}
.jobs__col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  will-change: transform;
}
.jobs__col--mid { margin-top: -3rem; }
.jobs__shot {
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex: none;
}
.jobs__shot img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 640px) {
  .jobs__cols { grid-template-columns: 1fr 1fr; }
  .jobs__col--c { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .jobs__col { transform: none !important; }
}

/* ============================================================
   BUILD 10 (v2) — REVIEWS CAROUSEL (split cards: review left, photo right)
   ============================================================ */
.reviews__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.reviews__head h2 { margin-top: .9rem; font-size: clamp(2.64rem, 6.6vw, 5.76rem); }
.reviews__nav { display: flex; gap: .6rem; }
.reviews__arrow {
  width: 48px; height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  transition: border-color .25s, color .25s, transform .25s var(--ease-out);
}
.reviews__arrow:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.reviews__track {
  /* Full-bleed: cards run to the screen edges, but the first card
     starts aligned with the container under the title */
  margin-inline: calc(50% - 50vw);
  padding-inline: calc((100vw - min(var(--container), 100vw - var(--gutter) * 2)) / 2);
  scroll-padding-inline: calc((100vw - min(var(--container), 100vw - var(--gutter) * 2)) / 2);
  position: relative;
  z-index: 2001; /* above the grain overlay so the white cards stay clean */
  display: flex;
  gap: 1.4rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  padding-bottom: .5rem;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}
.reviews__track::-webkit-scrollbar { display: none; }
.reviews__track.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.reviews__track.is-dragging .review-card { pointer-events: none; }

/* Split card: cream review panel left, full-bleed photo right */
.review-card {
  scroll-snap-align: start;
  flex: 0 0 min(984px, 92vw);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 1.4rem;
  padding: 0;
  background: none;
  border-radius: 0;
}
.review-card__body,
.review-card__media {
  border-radius: var(--radius);
  box-shadow: 0 22px 55px rgba(0,0,0,.45);
}
.review-card__body { background: var(--card); }
.review-card__media { overflow: hidden; }
.review-card__body {
  display: flex;
  flex-direction: column;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  min-height: clamp(456px, 43vw, 552px);
}
.review-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 3.6vw, 3.15rem);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: .01em;
}
.review-card__stars {
  color: var(--accent);
  font-size: clamp(1.95rem, 3vw, 2.55rem);
  letter-spacing: .18em;
  margin-top: 1rem;
}
.review-card__quote {
  font-size: calc(var(--fs-small) * 1.5);
  line-height: 1.65;
  color: var(--card-ink);
  margin-top: 1.2rem;
}
.review-card__meta {
  margin-top: auto;
  padding-top: 1.6rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 700;
}
.review-card__src {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(20,20,20,.45);
}
.review-card__media { position: relative; }
.review-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 680px) {
  .review-card { grid-template-columns: 1fr; }
  .review-card__body { min-height: 0; }
  .review-card__media { aspect-ratio: 4/3; }
}

/* ============================================================
   BUILD 11 — FOUNDER STORY
   ============================================================ */
.story__inner {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.story__photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(0,0,0,.5);
  rotate: -2deg;
}
.story__photo img { width: 100%; height: 100%; object-fit: cover; }
.story__panel h2 { margin-block: .9rem 1.2rem; }
.story__lead { color: var(--ink-dim); max-width: 54ch; }
.story__more {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .6s var(--ease-out);
}
.story__more.is-open { grid-template-rows: 1fr; }
.story__more > div { overflow: hidden; }
.story__more p { color: var(--ink-dim); max-width: 54ch; margin-top: 1rem; }
.story__toggle { margin-top: 1.5rem; }
.story__sig {
  margin-top: 1.6rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.story__sig span { color: var(--accent); }

@media (max-width: 820px) {
  .story__inner { grid-template-columns: 1fr; }
  .story__photo { max-width: 420px; rotate: none; }
}
@media (prefers-reduced-motion: reduce) {
  .story__more { transition: none; }
}

/* ============================================================
   BUILD 12 — FAQ + FINAL CTA
   ============================================================ */
.faq__inner { max-width: 820px; margin-inline: auto; }
.faq__head { text-align: center; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.faq__head h2 { margin-top: .9rem; }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.3rem;
  font-weight: 700;
  font-size: var(--fs-h4);
  transition: color .25s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent); }
.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  flex: none;
  transition: rotate .3s var(--ease-out);
}
.faq details[open] summary::after { rotate: 45deg; }
.faq details > div {
  padding-bottom: 1.4rem;
  color: var(--ink-dim);
  max-width: 64ch;
}
.faq details > div p + p { margin-top: .7rem; }

/* Final CTA */
.cta { text-align: center; }
.cta__inner { max-width: 720px; margin-inline: auto; display: flex; flex-direction: column; align-items: center; }
.cta h2 { margin-block: .9rem 1rem; font-size: clamp(2.6rem, 7vw, 5.5rem); }
.cta__sub { color: var(--ink-dim); max-width: 46ch; }
.cta .wizard { margin-top: 2.2rem; width: 100%; max-width: 560px; text-align: left; }
.cta__or { margin-top: 1.4rem; font-size: var(--fs-small); color: var(--ink-dim); }
.cta__or a { color: var(--ink); font-weight: 700; border-bottom: 1px solid var(--accent); }

/* ============================================================
   BUILD 13 — FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  padding-block: clamp(3rem, 7vw, 5rem) 1.5rem;
}
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
  border-bottom: 1px solid var(--line);
}
.footer__tag h2 { margin-top: .9rem; }
.footer__photo {
  border-radius: var(--radius);
  overflow: hidden;
  rotate: 2deg;
  max-width: 360px;
  justify-self: end;
}
.footer__photo img { width: 100%; height: 100%; object-fit: cover; }

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  padding-block: clamp(2rem, 5vw, 3rem);
  border-bottom: 1px solid var(--line);
}
.footer__col h4 {
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 1rem;
}
.footer__col ul { list-style: none; display: grid; gap: .55rem; }
.footer__col a { color: var(--ink); font-size: var(--fs-small); transition: color .25s; }
.footer__col a:hover { color: var(--accent); }
.footer__col p { font-size: var(--fs-small); color: var(--ink-dim); }

.copy-email {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px dashed var(--line);
  padding-bottom: .15em;
  position: relative;
  transition: color .25s, border-color .25s;
}
.copy-email:hover { color: var(--accent); border-color: var(--accent); }
.copy-email__toast {
  position: absolute;
  left: 50%;
  bottom: calc(100% + .5rem);
  translate: -50% 4px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35em .8em;
  border-radius: 99px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease-out), translate .25s var(--ease-out);
}
.copy-email.is-copied .copy-email__toast { opacity: 1; translate: -50% 0; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  font-size: .78rem;
  color: var(--ink-dim);
}
.footer__bottom a { color: var(--ink-dim); transition: color .25s; }
.footer__bottom a:hover { color: var(--ink); }
.footer__legal { display: flex; gap: 1.4rem; }

@media (max-width: 820px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__photo { justify-self: start; rotate: none; }
  .footer__grid { grid-template-columns: 1fr; }
}


/* ============================================================
   NAVY VARIANT OVERRIDES  (Copper Lane — Stronghold recolour)
   bg: black -> logo navy  |  reviews + founder story -> emerald
   grey (--bg-raised) intentionally left as-is, colour TBC
   ============================================================ */
#services { background: var(--emerald); }   /* Hands-on. Heat. Cold. Movement. */
#reviews { background: var(--emerald); }
#story   { background: var(--emerald); }   /* beats .section--raised grey */
#cta     { background: var(--emerald); }   /* final CTA, beats .section--raised grey */
.footer  { background: #0c0c0d; position: relative; overflow: hidden; isolation: isolate; }  /* near-black + castle watermark */


/* ---- FAQ: eggshell panel, black text, doubled sizes ---- */
#faq { background: #e7e6e2; color: #111111; position: relative; z-index: 2001; }   /* z-index lifts eggshell above the grain overlay, no paper texture */
#faq .eyebrow { color: #111111; font-size: calc(var(--fs-small) * 2); }
#faq .faq__head h2 { font-size: calc(var(--fs-h2) * 2); color: #111111; }
#faq details { border-bottom-color: rgba(0,0,0,.16); }
#faq summary { font-size: var(--fs-h4); color: #111111; }
#faq summary:hover { color: var(--accent); }
#faq details > div { color: #1c1c1c; font-size: var(--fs-body); }

/* ---- FAQ: each item as a bright white rounded card ---- */
#faq details {
  background: #ffffff;
  border: none;
  border-radius: 16px;
  padding-inline: clamp(1.1rem, 2.5vw, 1.8rem);
  margin-bottom: 1rem;
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
}
#faq summary { padding-block: 1.25rem; }
#faq details > div { padding-bottom: 1.4rem; }

/* ---- Sessions/"Where the work happens": orange panel, navy accents ---- */
#jobs { background: var(--accent); }
#jobs .accent { color: var(--bg); }            /* orange accent words -> navy */
#jobs .eyebrow::before { background: var(--bg); } /* eyebrow dot -> navy */

/* ---- Inline logo image (header + footer) ---- */
.header__logo { display: inline-flex; align-items: center; line-height: 0; }
.header__logo img { height: 68px; width: auto; }
@media (max-width: 640px) { .header__logo img { height: 56px; } }
.footer__logo { height: 92px; width: auto; margin-bottom: .9rem; }

/* ---- Nav / menu text bright white ---- */
.header__nav a { color: #ffffff; }
.header__nav a:hover, .header__nav a:focus-visible { color: var(--accent); }
.menu__list a { color: #ffffff; }

/* ---- Footer castle watermark (left-to-middle, subtle) ---- */
.footer::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  height: 88%;
  width: 46%;
  background: url("../assets/img/footer-castle.png") no-repeat left center;
  background-size: contain;
  opacity: .14;
  pointer-events: none;
  z-index: 0;
}
.footer .container { position: relative; z-index: 1; }
@media (max-width: 640px) {
  .footer::before { left: 50%; transform: translate(-50%, -50%); width: 80%; height: 70%; opacity: .1; }
}

#grow .container { width: min(1400px, 100% - var(--gutter) * 2); }
/* ============================================================
   GROW — centred title + 3 vertical video tiles
   ============================================================ */
.grow__head { text-align: center; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.grow__head h2 { margin-top: .9rem; }
.grow__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(.9rem, 2vw, 1.5rem);
  max-width: 1352px;
  margin-inline: auto;
  padding-top: 1.75rem;            /* room for the raised middle tile */
}
.grow__tile {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 4;             /* slightly shorter than 9:16 */
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-raised);
}
.grow__tile:nth-child(2) { transform: translateY(-1.75rem); }  /* staggered centre */
.grow__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.grow__tile::after {                /* bottom scrim so the label reads */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6), rgba(0,0,0,0) 46%);
  z-index: 1;
}
.grow__label {
  position: absolute;
  left: clamp(.9rem, 2vw, 1.4rem);
  bottom: clamp(.9rem, 2vw, 1.3rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.grow__label b {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: .9;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
}
.grow__label span {
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
}
@media (max-width: 760px) {
  .grow__grid { grid-template-columns: 1fr 1fr; padding-top: 0; }
  .grow__tile:nth-child(2) { transform: none; }
  .grow__tile:nth-child(3) { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
}
@media (max-width: 460px) {
  .grow__grid { grid-template-columns: 1fr; max-width: 380px; }
  .grow__tile:nth-child(3) { aspect-ratio: 3 / 4; }
}

/* ---- Spotlight: alternating text / video rows on the orange band ---- */
.spotlight { background: var(--accent); color: var(--accent-ink); }
.spotlight__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}
.spotlight__row + .spotlight__row { margin-top: clamp(3.5rem, 8vw, 7rem); }
.spotlight__row--flip .spotlight__media { order: -1; }      /* video on the left */
.spotlight__copy .eyebrow { color: var(--accent-ink); }
.spotlight__copy .eyebrow::before { background: var(--accent-ink); }
.spotlight__copy h2 { color: var(--accent-ink); }
.spotlight__copy h2 .accent { color: #fff; }                /* white pop on orange */
.spotlight__lead {
  margin-top: 1.2rem;
  max-width: 46ch;
  color: rgba(4, 19, 42, .82);
  font-size: var(--fs-body);
  line-height: 1.6;
}
.spotlight__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(4, 19, 42, .15);
  box-shadow: 0 24px 60px rgba(4, 19, 42, .28);
}

/* Alternating intentional shapes: leaf on normal rows, soft arch on flipped rows */
.spotlight__row:not(.spotlight__row--flip) .spotlight__media {
  border-radius: var(--radius) clamp(48px, 7vw, 104px) var(--radius) clamp(48px, 7vw, 104px);
}
.spotlight__row--flip .spotlight__media {
  border-radius: clamp(70px, 11vw, 150px) clamp(70px, 11vw, 150px) var(--radius) var(--radius);
}
@media (max-width: 820px) {
  .spotlight__row:not(.spotlight__row--flip) .spotlight__media {
    border-radius: var(--radius) 56px var(--radius) 56px;
  }
  .spotlight__row--flip .spotlight__media {
    border-radius: 80px 80px var(--radius) var(--radius);
  }
}
.spotlight__media video,
.spotlight__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.spotlight__tag {
  position: absolute; left: 1rem; top: 1rem;
  display: inline-flex; align-items: center; gap: .5em;
  padding: .5em .9em;
  border-radius: 999px;
  background: rgba(4, 19, 42, .55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: .04em;
}
.spotlight__tag::before {
  content: ""; width: .5em; height: .5em; border-radius: 50%;
  background: var(--accent); flex: none;
}
@media (max-width: 820px) {
  .spotlight__row { grid-template-columns: 1fr; gap: 1.6rem; }
  .spotlight__media { order: -1; }                          /* media on top for every row */
}
