/* ============================================================
   STRATEGIC GAINS: style.css
   Landing-page architecture (centred, conversion-first) in the
   Strategic Gains palette: gold on black, never neon.
   Order: reset → tokens → base → utilities → components →
   sections in DOM order → responsive → reduced motion
   ============================================================ */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { min-height: 100vh; overflow-x: hidden; }
img, video, canvas, svg { display: block; max-width: 100%; }
button { background: none; border: 0; font: inherit; color: inherit; cursor: pointer; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
figure, blockquote { margin: 0; }

/* ---------- TOKENS ---------- */
:root {
  --black:      #0A0A0A;
  --obsidian:   #0F1113;
  --charcoal:   #16191C;
  --graphite:   #2A2E33;
  --ash:        #6E7276;   /* rules and decoration only */
  --ash-text:   #9BA0A5;   /* body copy: passes AA on black and charcoal */
  --bone:       #E8E6E1;
  --white:      #FFFFFF;
  --gold:       #C9A227;
  --gold-light: #E5C766;
  --gold-dim:   rgba(201,162,39,0.14);

  --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1240px;
  --gutter: clamp(20px, 5vw, 48px);
  --pad: clamp(72px, 10vh, 128px);
  --radius: 12px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- BASE ---------- */
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  line-height: 1.7;
  color: var(--ash-text);
  background: var(--black);
}
h1, h2, h3 { font-family: var(--font-display); color: var(--white); line-height: 1.1; text-wrap: balance; }
strong, b { color: var(--bone); font-weight: 600; }
::selection { background: var(--gold); color: var(--black); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

.skip-link {
  position: fixed; top: -100px; left: 20px; z-index: 999;
  padding: 12px 22px; background: var(--gold); color: var(--black);
  font-weight: 600; font-size: 13px; border-radius: 6px;
  transition: top 0.3s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ---------- GRAIN ---------- */
.grain {
  position: fixed; inset: 0; width: 100%; height: 100%;
  opacity: 0.03; mix-blend-mode: overlay;
  pointer-events: none; z-index: 400;
}

/* ---------- REVEAL ----------
   Content is visible by default and only hidden once JS has confirmed
   it can actually animate it (html.reveal-armed). If IntersectionObserver
   is missing, blocked, or throttled in a background tab, the page still
   reads normally instead of staying permanently blank. */
.reveal { transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
html.reveal-armed .reveal { opacity: 0; transform: translateY(26px); }
html.reveal-armed .reveal.is-in { opacity: 1; transform: none; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 34px; min-height: 48px; border-radius: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase; white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.btn--primary {
  background: linear-gradient(100deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--black);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,162,39,0.28); }
.btn--ghost { border: 1px solid var(--graphite); color: var(--bone); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--lg { padding: 19px 52px; font-size: 14px; min-height: 56px; }
.btn--block { display: flex; width: 100%; }
.btn__glyph { flex: 0 0 auto; }

.pill {
  display: inline-block; padding: 8px 20px; border-radius: 999px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  font-size: 12px; font-weight: 500; letter-spacing: 0.1em;
  color: var(--bone); margin-bottom: 26px;
}
.pill--dark { background: var(--gold-dim); border-color: rgba(201,162,39,0.3); color: var(--gold); }

/* ---------- SECTION SHELL ---------- */
.section { padding: var(--pad) 0; }
.section--alt { background: var(--obsidian); }
.section__head { text-align: center; max-width: 760px; margin: 0 auto clamp(44px, 6vh, 72px); }
/* Wider measure for headings designed to break only at their <br>. */
.section__head--wide { max-width: 1100px; }
.section__title {
  font-size: clamp(2rem, 4.6vw, 3.4rem); font-weight: 800;
  text-transform: uppercase; letter-spacing: -0.01em;
}
.section__title--xl { font-size: clamp(1.9rem, 4.6vw, 3.6rem); }
@media (min-width: 900px) { .section__title--xl { text-wrap: nowrap; } }
@media (max-width: 899px) { .section__title--xl br { display: none; } }
.section__title--left { text-align: left; margin-bottom: 22px; }
.section__sub { margin-top: 16px; color: var(--ash-text); }

/* ---------- CINEMATIC MEDIA (video with photo fallback) ---------- */
.cine-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: contrast(1.06) saturate(0.85);
}
.cine-fallback {
  position: absolute; inset: 0; background-size: cover; background-position: center 22%;
  filter: contrast(1.06) saturate(0.85); opacity: 0; transition: opacity 0.6s var(--ease);
}
[data-cine].is-fallback .cine-fallback { opacity: 1; }
[data-cine].is-fallback .cine-video { opacity: 0; visibility: hidden; }
[data-cine].is-void::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 240px; height: 1px;
  transform: translate(-50%,-50%);
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: voidPulse 3s ease-in-out infinite;
}
@keyframes voidPulse { 0%,100% { opacity: .25; width: 160px; } 50% { opacity: 1; width: 280px; } }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-stuck {
  background: rgba(10,10,10,0.82);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom-color: var(--graphite);
}
.header__inner {
  display: flex; align-items: center; gap: 24px;
  max-width: var(--container); margin: 0 auto; padding: 16px var(--gutter);
}
.header__brand { display: flex; align-items: center; gap: 10px; margin-right: auto; }
/* The logo artwork is on solid black with no alpha. Screen blending drops
   that black away so the mark floats over the hero film instead of sitting
   in a dark box. */
.header__mark {
  width: 34px; height: 34px; object-fit: contain;
  mix-blend-mode: screen; opacity: 0.95; flex: 0 0 auto;
}
.header__word {
  font-family: var(--font-display); font-weight: 500; font-size: 15px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--bone);
}
.header__word strong { color: var(--gold); font-weight: 700; }
.header__nav { display: flex; gap: clamp(14px, 1.8vw, 30px); }
.header__link {
  position: relative; font-size: 12.5px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--bone); padding: 6px 0; white-space: nowrap;
}
.header__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.header__link:hover::after { transform: scaleX(1); }
.header__cta { padding: 12px 28px; min-height: 44px; }
.header__burger { display: none; width: 46px; height: 46px; position: relative; }
.header__burger span {
  position: absolute; left: 12px; width: 22px; height: 2px; background: var(--bone); border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.2s;
}
.header__burger span:nth-child(1) { top: 16px; }
.header__burger span:nth-child(2) { top: 22px; }
.header__burger span:nth-child(3) { top: 28px; }
.header__burger.is-open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.header__burger.is-open span:nth-child(2) { opacity: 0; }
.header__burger.is-open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px var(--gutter) 24px;
  background: rgba(10,10,10,0.96);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--graphite);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a:not(.btn) {
  padding: 14px 0; font-family: var(--font-display); font-weight: 500; font-size: 15px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--bone);
  border-bottom: 1px solid var(--graphite);
}
.mobile-nav .btn { margin-top: 16px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 140px var(--gutter) 90px; overflow: hidden;
}
.hero__media { position: absolute; inset: 0; background: var(--black); }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(10,10,10,0.72), rgba(10,10,10,0.86)),
    radial-gradient(ellipse at center, transparent 20%, rgba(10,10,10,0.75) 100%);
}
.hero__content { position: relative; z-index: 2; max-width: 1120px; }
.hero__title {
  /* Sized so "Success is never accidental." holds one line on desktop -
     the headline is designed to break only at the <br>. */
  font-size: clamp(1.9rem, 4.4vw, 3.5rem); font-weight: 800;
  text-transform: uppercase; letter-spacing: -0.015em; line-height: 1.1;
  text-wrap: nowrap;
}
.hero__title-em { color: var(--gold); }
.hero__sub {
  max-width: 640px; margin: 26px auto 0;
  font-size: clamp(1rem, 1.35vw, 1.18rem); color: var(--bone); font-weight: 300;
}
.hero__content .btn { margin-top: 36px; }

.proof {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 14px clamp(24px, 4vw, 56px); margin-top: 46px;
}
.proof li {
  display: flex; align-items: center; gap: 9px;
  font-size: 14px; color: var(--ash-text);
}
.proof strong { color: var(--bone); font-weight: 600; }
.tick { width: 15px; height: 15px; flex: 0 0 auto; color: var(--gold); }

/* ============================================================
   PROGRAMME CARDS
   ============================================================ */
/* Stretch (not start) so all three cards share a height and the
   flex:1 body copy pushes every Apply button onto the same baseline. */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 28px); align-items: stretch; }
.card {
  background: var(--charcoal); border: 1px solid var(--graphite);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: rgba(201,162,39,0.4); }

.card__head {
  position: relative; aspect-ratio: 16 / 10;
  background-size: cover; background-position: center 25%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  padding: 24px; text-align: center;
}
.card__head::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(10,10,10,0.72), rgba(10,10,10,0.88));
}
.card__lockup {
  position: relative;
  font-family: var(--font-display); font-weight: 500; font-size: 10px;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold);
}
.card__wordmark {
  position: relative; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.4rem, 2.3vw, 2rem); text-transform: uppercase;
  letter-spacing: -0.01em; color: var(--white); line-height: 1.05;
}
.card__rule { position: relative; width: 46px; height: 2px; background: var(--gold); }

.card__body { padding: clamp(22px, 2.4vw, 30px); display: flex; flex-direction: column; flex: 1; }
.card__title {
  font-size: clamp(1.15rem, 1.6vw, 1.4rem); font-weight: 700;
  color: var(--white); margin-bottom: 18px;
  /* Reserve two lines so the Who/What/How rows align across all three
     cards even when one title wraps. */
  line-height: 1.15; min-height: 2.3em;
}
/* Scannable lists rather than paragraphs: the card has to be readable at a
   glance, so each point stands on its own line under a labelled group. */
.card__detail { flex: 1; }
/* "Who it's for" is boxed so a reader can find their own situation instantly.
   A shared min-height keeps the three boxes aligned even though one card
   lists three points and the others list two. */
.card__who {
  padding: 15px 16px 17px;
  border: 1px solid var(--graphite); border-radius: 8px;
  background: rgba(255,255,255,0.025);
  min-height: 148px;
}
.card__label {
  font-family: var(--font-display); font-weight: 600; font-size: 10px;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold);
  margin: 22px 0 10px;
}
.card__who .card__label { margin-top: 0; }
.card__detail > .card__label:first-child { margin-top: 0; }
.card__list { display: flex; flex-direction: column; gap: 8px; }
/* The promise panel now separates the two lists, so it carries the spacing. */
.card__promise { margin: 20px 0 18px; }
.card__list li {
  position: relative; padding-left: 17px;
  font-size: 13.5px; line-height: 1.5; color: var(--ash-text);
}
.card__list li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 7px; height: 1px; background: var(--gold);
}
/* Every card opens with the same one-line promise panel, so all three run to
   the same length and no card is left with dead space above its button. */
.card__promise {
  padding: 11px 14px;
  background: var(--gold-dim); border: 1px solid rgba(201,162,39,0.3); border-radius: 6px;
  font-size: 12.5px; line-height: 1.5; letter-spacing: 0.04em; color: var(--bone);
}
.card__promise strong {
  display: block; margin-bottom: 3px;
  font-family: var(--font-display); font-weight: 600; font-size: 10px;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold);
}
.card__body .btn { margin-top: 22px; }
.card__note {
  margin-top: 12px; text-align: center; font-size: 12px;
  font-style: italic; color: var(--ash);
}

/* ============================================================
   VIDEO TESTIMONIALS
   Portrait cards. Only the poster loads until a card is clicked.
   ============================================================ */
.vgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.6vw, 24px); }
.vtest {
  position: relative; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--graphite); background: var(--charcoal);
  aspect-ratio: 9 / 16;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.vtest:hover { border-color: rgba(201,162,39,0.45); transform: translateY(-4px); }
.vtest__video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  background: var(--black);
}
/* Native controls only appear once the card is playing. */
.vtest:not(.is-playing) .vtest__video::-webkit-media-controls { display: none !important; }

.vtest__play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(rgba(10,10,10,0.12), rgba(10,10,10,0.55));
  transition: opacity 0.3s var(--ease), background 0.3s var(--ease);
}
.vtest__play::before {
  content: ""; position: absolute; width: 62px; height: 62px; border-radius: 50%;
  background: rgba(201,162,39,0.92);
  transition: transform 0.35s var(--ease), background 0.3s var(--ease);
}
.vtest:hover .vtest__play::before { transform: scale(1.08); background: var(--gold-light); }
.vtest__tri {
  position: relative; width: 0; height: 0; margin-left: 5px;
  border-top: 11px solid transparent; border-bottom: 11px solid transparent;
  border-left: 18px solid var(--black);
}
.vtest.is-playing .vtest__play { opacity: 0; pointer-events: none; }

.vtest__name {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 40px 14px 13px;
  background: linear-gradient(transparent, rgba(10,10,10,0.92));
  font-family: var(--font-display); font-weight: 600; font-size: 12.5px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--white);
  pointer-events: none; transition: opacity 0.3s var(--ease);
}
.vtest.is-playing .vtest__name { opacity: 0; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.about__media { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--graphite); }
.about__media img { width: 100%; height: auto; filter: contrast(1.06) saturate(0.85); }
.about__body p { margin-bottom: 16px; }
.about__body .btn { margin-top: 14px; }

/* ============================================================
   METHOD STEPS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 26px); }
.step {
  background: var(--charcoal); border: 1px solid var(--graphite);
  border-radius: var(--radius); padding: clamp(24px, 2.4vw, 32px);
}
.step__num {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: 2rem; color: var(--gold); margin-bottom: 12px; line-height: 1;
}
.step h3 {
  font-size: 1.15rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 10px;
}
.step p { font-size: 14px; line-height: 1.65; }

/* ---------- INSTAGRAM LINK (under the Results heading) ---------- */
.ig-link {
  display: inline-flex; align-items: center; gap: 9px; flex-wrap: wrap;
  justify-content: center; margin-top: 22px; padding: 11px 22px;
  border: 1px solid var(--graphite); border-radius: 999px;
  font-family: var(--font-display); font-weight: 500; font-size: 12.5px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--bone);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.ig-link:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.ig-link__icon { flex: 0 0 auto; color: var(--gold); transition: color 0.3s var(--ease); }
.ig-link:hover .ig-link__icon { color: inherit; }
.ig-link__handle { color: var(--gold); letter-spacing: 0.04em; text-transform: none; }
.ig-link:hover .ig-link__handle { color: inherit; }

/* ============================================================
   RESULTS GRID
   ============================================================ */
/* White frames and centre seams were cropped out of the source files
   themselves; CSS alone could not have removed those. Split collages render
   as two halves butted together with no seam. */
.shot__pair { display: flex; gap: 0; }
.shot__pair img { width: 50%; height: auto; }

/* Featured cards: masonry columns (mixed aspect ratios), name bar below.
   Every card carries the full before AND after, never a single half. */
.fgrid { columns: 4; column-gap: clamp(12px, 1.4vw, 20px); }
.fcard {
  break-inside: avoid; margin-bottom: clamp(12px, 1.4vw, 20px);
  background: var(--charcoal); border: 1px solid var(--graphite);
  border-radius: var(--radius); overflow: hidden;
}
.fcard__media { line-height: 0; }
.fcard__media img {
  width: 100%; height: auto;
  filter: contrast(1.04) saturate(0.92) brightness(0.94);
  transition: filter 0.45s var(--ease);
}
/* Must come after the rule above and beat it on specificity: otherwise both
   halves of a split collage take the full card width, the "after" is pushed
   outside the card and clipped away, and only the "before" is visible. */
.fcard__media .shot__pair img { width: 50%; }
.fcard:hover .fcard__media img { filter: contrast(1.04) saturate(0.92) brightness(1.03); }
.fcard figcaption {
  padding: 11px 14px;
  font-family: var(--font-display); font-weight: 600; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
  border-top: 1px solid var(--graphite);
}

/* The full set: a swipeable snap strip. */
.tstrip__label {
  margin: clamp(36px, 6vh, 60px) auto 18px; text-align: center;
  font-size: 12px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ash-text);
}
.tstrip { position: relative; }
.tstrip__track {
  display: flex; gap: clamp(10px, 1.2vw, 16px);
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  scrollbar-width: none;
}
.tstrip__track::-webkit-scrollbar { display: none; }
.tstrip__track:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.tcard {
  flex: 0 0 auto; scroll-snap-align: start;
  background: var(--charcoal); border: 1px solid var(--graphite);
  border-radius: var(--radius); overflow: hidden;
}
.tcard__media { height: clamp(220px, 30vw, 300px); line-height: 0; }
.tcard__media img { height: 100%; width: auto; }
.tcard__media .shot__pair { height: 100%; }
.tcard__media .shot__pair img { width: auto; height: 100%; }
.tcard figcaption {
  padding: 9px 12px;
  font-family: var(--font-display); font-weight: 600; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ash-text);
  border-top: 1px solid var(--graphite); white-space: nowrap;
}
.tstrip__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(10,10,10,0.82); border: 1px solid var(--graphite);
  color: var(--gold); font-size: 26px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.tstrip__nav:hover { border-color: var(--gold); color: var(--gold-light); }
.tstrip__nav--prev { left: -8px; }
.tstrip__nav--next { right: -8px; }
.shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 40px 16px 14px;
  background: linear-gradient(transparent, rgba(10,10,10,0.94));
  display: flex; flex-direction: column; gap: 2px;
  font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ash-text);
}
.shot figcaption strong {
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  letter-spacing: 0.14em; color: var(--gold);
}

/* ============================================================
   FAQs: native <details>, works with JS disabled
   ============================================================ */
.faqs { max-width: 880px; margin: 0 auto; border-top: 1px solid var(--graphite); }
.faq { border-bottom: 1px solid var(--graphite); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(0.95rem, 1.3vw, 1.1rem); color: var(--white);
  transition: color 0.25s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold); }
.faq__sign { position: relative; width: 14px; height: 14px; flex: 0 0 auto; }
.faq__sign::before, .faq__sign::after {
  content: ""; position: absolute; left: 0; top: 6px; width: 14px; height: 2px;
  background: var(--gold); border-radius: 2px; transition: transform 0.3s var(--ease);
}
.faq__sign::after { transform: rotate(90deg); }
.faq[open] .faq__sign::after { transform: rotate(0deg); }
.faq__body { padding: 0 4px 24px; max-width: 68ch; }
.faq__body p { font-size: 15px; line-height: 1.75; }

/* ============================================================
   SHOP
   ============================================================ */
/* ============================================================
   COMPETITIVE ATHLETES
   Uniform stage-photo grid: these are single shots, not before/after
   comparisons, so a consistent 4:5 crop is right here.
   ============================================================ */
.agrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.5vw, 20px); }
.athlete {
  /* Positioning context for the caption, which is absolutely placed. */
  position: relative;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--graphite); background: var(--black);
  aspect-ratio: 4 / 5; line-height: 0;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.athlete:hover { border-color: rgba(201,162,39,0.4); transform: translateY(-4px); }
.athlete img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.04) saturate(0.92) brightness(0.9);
  transition: filter 0.45s var(--ease), transform 0.6s var(--ease);
}
.athlete:hover img { filter: contrast(1.04) saturate(0.92) brightness(1.02); transform: scale(1.03); }
.athlete figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 46px 16px 15px;
  background: linear-gradient(transparent, rgba(10,10,10,0.94));
  display: flex; flex-direction: column; gap: 3px;
  font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ash-text); line-height: 1.45;
}
.athlete figcaption strong {
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  letter-spacing: 0.16em; color: var(--gold);
}

/* ============================================================
   EVENTS
   ============================================================ */
.events__label {
  font-family: var(--font-display); font-weight: 600; font-size: 11px;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold);
  padding-bottom: 14px; margin-bottom: clamp(20px, 3vh, 30px);
  border-bottom: 1px solid var(--graphite);
}
.events__label + .events { margin-bottom: clamp(48px, 7vh, 80px); }
.events { display: grid; gap: clamp(18px, 2vw, 28px); }
/* Past events are secondary to the upcoming one, so they sit in a narrower
   track with a shallower crop and smaller type. */
.events--past { grid-template-columns: repeat(2, 1fr); max-width: 680px; }
.events--past .event__media { aspect-ratio: 4 / 3; }
/* Both group shots sit low in frame, under a projector screen or ceiling.
   Pulling the crop window down lifts the faces toward the middle of the card. */
.events--past .event__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.events--past .event__body { padding: clamp(16px, 1.8vw, 22px); }
.events--past .event__title { font-size: clamp(0.95rem, 1.2vw, 1.1rem); margin-bottom: 8px; }
.events--past .event__copy { font-size: 13px; line-height: 1.6; }

.event {
  background: var(--charcoal); border: 1px solid var(--graphite);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.event:hover { border-color: rgba(201,162,39,0.4); transform: translateY(-4px); }
.event__media { position: relative; line-height: 0; background: var(--black); }
.event__media img { width: 100%; height: auto; }
.event__flag {
  position: absolute; top: 14px; left: 14px;
  padding: 6px 14px; border-radius: 999px;
  background: var(--gold); color: var(--black);
  font-family: var(--font-display); font-weight: 600; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.event__body { padding: clamp(22px, 2.6vw, 34px); }
.event__eyebrow {
  font-family: var(--font-display); font-weight: 600; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--bone);
  margin-bottom: 12px;
}
.event__title {
  font-size: clamp(1.15rem, 1.9vw, 1.7rem); font-weight: 700;
  text-transform: uppercase; line-height: 1.2; margin-bottom: 14px;
}
.event__x { color: var(--gold); }
.event__meta {
  display: flex; flex-direction: column; gap: 5px;
  padding-bottom: 16px; margin-bottom: 16px;
  border-bottom: 1px solid var(--graphite);
  font-size: 13.5px; line-height: 1.5;
}
.event__meta strong { color: var(--gold); font-weight: 600; }
.event__copy { font-size: 14.5px; line-height: 1.7; }
.event__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.event__body > .btn { margin-top: 20px; }

/* The upcoming event leads: artwork beside the copy rather than above it. */
.event--feature { display: grid; grid-template-columns: 0.85fr 1fr; align-items: center; }
.event--feature .event__media { height: 100%; }
.event--feature .event__media img { height: 100%; object-fit: cover; }
.event--feature .event__body { padding: clamp(28px, 3.5vw, 52px); }

/* ============================================================
   APPLY
   ============================================================ */
.apply {
  position: relative; text-align: center; overflow: hidden;
  padding: clamp(96px, 14vh, 170px) 0;
}
.apply__media { position: absolute; inset: 0; background: var(--black); }
.apply__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(10,10,10,0.78), rgba(10,10,10,0.9)),
    radial-gradient(ellipse at center, transparent 15%, rgba(10,10,10,0.85) 95%);
}
.apply__content { position: relative; z-index: 2; }
.apply__title {
  font-size: clamp(2.4rem, 7vw, 5.4rem); font-weight: 800;
  text-transform: uppercase; letter-spacing: -0.015em;
}
.apply__sub {
  max-width: 520px; margin: 24px auto 0; color: var(--ash-text);
  font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase;
}
.apply__em { color: var(--gold); }
.apply__content .btn { margin-top: 34px; }
.apply__socials {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 12px clamp(14px, 2vw, 26px); margin-top: 26px;
}
.apply__socials a {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 20px; min-height: 44px;
  border: 1px solid var(--graphite); border-radius: 999px;
  font-family: var(--font-display); font-weight: 500; font-size: 12.5px;
  letter-spacing: 0.06em; color: var(--bone);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.apply__socials a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.apply__socials svg { flex: 0 0 auto; color: var(--gold); transition: color 0.3s var(--ease); }
.apply__socials a:hover svg { color: inherit; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--black); border-top: 1px solid var(--graphite); padding-top: clamp(56px, 8vh, 88px); }
.footer__inner { display: grid; grid-template-columns: 1fr 2fr; gap: clamp(32px, 5vw, 72px); padding-bottom: clamp(40px, 6vh, 64px); }
.footer__brand img { width: 72px; height: 72px; object-fit: contain; margin-bottom: 16px; }
.footer__tagline { font-family: var(--font-display); font-weight: 500; font-size: 14px; letter-spacing: 0.06em; color: var(--gold); }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer__cols h3 {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white); margin-bottom: 14px;
}
.footer__cols a { display: block; padding: 6px 0; font-size: 13.5px; color: var(--ash-text); transition: color 0.25s; }
.footer__cols a:hover { color: var(--gold); }
.footer__bar {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  padding-top: 22px; padding-bottom: 26px; border-top: 1px solid var(--graphite);
  font-size: 12px; color: var(--ash);
}

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 250;
  display: none; padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(10,10,10,0.9);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-top: 1px solid var(--graphite);
  transform: translateY(110%); transition: transform 0.4s var(--ease);
}
.sticky-cta.is-visible { transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* Six nav links plus a CTA stop fitting well before the tablet breakpoint,
   so the burger takes over earlier than the rest of the layout changes. */
@media (max-width: 1080px) {
  .header__nav, .header__cta { display: none; }
  .header__burger { display: block; }
  .header {
    background: rgba(10,10,10,0.82);
    -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    border-bottom-color: var(--graphite);
  }
}

@media (max-width: 1024px) {
  .cards { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .vgrid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .fgrid { columns: 3; }
  .about { grid-template-columns: 1fr; }
  .about__media { max-width: 460px; }
  .event--feature { grid-template-columns: 1fr; }
  .event--feature .event__media img { max-height: 420px; object-position: center top; }
}

@media (max-width: 768px) {
  .sticky-cta { display: block; }
  .vgrid { grid-template-columns: repeat(2, 1fr); }
  .vtest__play::before { width: 50px; height: 50px; }
  .events--past { grid-template-columns: 1fr; }
  .agrid { grid-template-columns: repeat(2, 1fr); }
  .fgrid { columns: 2; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__bar { flex-direction: column; align-items: flex-start; }
  .hero { padding-top: 120px; padding-bottom: 100px; }
  .proof { flex-direction: column; align-items: center; gap: 12px; }
  /* Below tablet the line is too long to hold: let it wrap naturally. */
  .hero__title { text-wrap: balance; }
  .hero__title br { display: none; }
}

@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .fgrid { columns: 2; }
  .tstrip__nav { display: none; } /* touch scrolls natively */
  .btn--lg { width: 100%; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.15s !important;
  }
  .reveal { opacity: 1; transform: none; }
}
