/* =========================================================
   CHHUKS FITNESS — faithful rebuild of lahuella.club
   Design tokens reverse-engineered from the original build.
   ========================================================= */

/* ---- Bundled display typeface (original CWM Bold) ---- */
@font-face {
  font-family: "CWM";
  src: url("../fonts/CWM-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* colours (lifted from the original stylesheet) */
  --brand-500: #fdca38;   /* signature yellow */
  --brand-900: #6a5518;   /* deep gold */
  --gray-950: #0f0f0f;    /* near-black */
  --gray-800: #424242;
  --gray-500: #787878;
  --gray-300: #a5a5a5;
  --gray-50:  #f2f2f2;
  --paper:    #fbfbfb;    /* light text on dark */
  --bg:       #0f0f0f;    /* dark page background */
  --line:     rgba(255,255,255,0.2); /* dividers on dark */
  --black: #000;
  --white: #fff;

  --font-display: "CWM", "Arial Black", "Helvetica Neue", sans-serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;

  --pad: 1rem;            /* container side padding (mobile) */
  --maxw: 1440px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 1024px) { :root { --pad: 2rem; } }

/* ---- reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; background: var(--bg); color-scheme: dark; }
::selection { background: var(--brand-500); color: var(--gray-950); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

/* ScrollSmoother requires no-scroll on body while it owns the scroll */
.no-scroll { overflow: hidden; height: 100vh; }

/* ---- layout helpers ---- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.grid-12 { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(0.75rem, 1.4vw, 1rem); }
.grid-8  { display: grid; grid-template-columns: repeat(8, minmax(0, 1fr));  column-gap: clamp(0.75rem, 1.4vw, 1rem); }

/* ---- typography ---- */
.display, .h-sec {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.86;
  letter-spacing: -0.01em;
}
/* hero headline */
.h-hero {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.01em;
  font-size: clamp(2.4rem, 7.5vw, 6.5rem);
}
/* big section headings (text-4xl -> text-9xl) */
.h-sec { font-size: clamp(2.5rem, 10vw, 8.5rem); }
/* program row titles (text-xl -> text-5xl) */
.h-prog {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  font-size: clamp(1.6rem, 6.5vw, 3.6rem);
}
.kicker {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
.lead { font-size: clamp(1rem, 1.4vw, 1.25rem); color: var(--gray-300); }

.text-brand { color: var(--brand-500); }
.bg-brand { background: var(--brand-500); }
.bg-dark { background: var(--gray-950); }

/* center-grow underline (the original .hover-effect) */
.hover-effect { position: relative; transition: color 0.4s var(--ease); display: inline-block; }
.hover-effect::after {
  content: ""; position: absolute; top: 100%; left: 50%;
  height: 3px; width: 0; transform: translateX(-50%);
  background: var(--brand-500); transition: width 0.4s var(--ease);
}
.hover-effect:hover { color: var(--brand-500); }
.hover-effect:hover::after { width: 100%; }

/* ===========================================================
   PRELOADER
   =========================================================== */
#preloader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--gray-950); color: var(--brand-500);
  display: flex; align-items: center; justify-content: center;
}
#preloader .pl-word { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(2rem, 9vw, 6rem); line-height: 1; overflow: hidden; }
#preloader .pl-count { position: absolute; bottom: 6vh; right: var(--pad); font-family: var(--font-display); font-size: clamp(3rem, 14vw, 11rem); line-height: 0.8; color: var(--brand-500); }
#preloader .pl-bar { position: absolute; bottom: 0; left: 0; height: 4px; width: 0; background: var(--brand-500); }

/* ===========================================================
   HEADER + MENU
   =========================================================== */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 90;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.35rem var(--pad);
  color: var(--brand-500);
  transition: transform 0.5s var(--ease);
}
.hd-group { display: flex; align-items: center; gap: clamp(1.25rem, 2.6vw, 2.75rem); }
.hd-link, .hd-lang {
  font-family: var(--font-display); text-transform: uppercase; line-height: 1;
  font-size: clamp(1rem, 1.25vw, 1.35rem); letter-spacing: 0.005em; color: var(--brand-500);
}
.hd-lang { cursor: default; }
.hd-wa { color: var(--brand-500); display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; transition: transform 0.3s var(--ease); }
.hd-wa:hover { transform: scale(1.12); }
.menu-toggle { display: flex; flex-direction: column; justify-content: center; align-items: flex-end; gap: 5px; width: 48px; height: 48px; padding: 0 12px; background: var(--brand-500); color: var(--gray-950); transition: transform 0.3s var(--ease); }
.menu-toggle span { height: 3px; width: 100%; background: currentColor; transition: transform 0.4s var(--ease), opacity 0.3s, width 0.3s var(--ease); }
.menu-toggle span:nth-child(2) { width: 58%; }
.menu-toggle:hover { transform: scale(1.08); }
.menu-toggle:hover span:nth-child(2) { width: 100%; }
.hd-logo { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); font-family: var(--font-display); text-transform: uppercase; color: var(--brand-500); font-size: clamp(1rem, 1.4vw, 1.3rem); line-height: 1; letter-spacing: -0.01em; white-space: nowrap; }
@media (max-width: 1023px) { .hd-link, .hd-lang { display: none; } }
body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.header-hidden { transform: translateY(-110%); }

/* full-screen overlay menu */
.menu-overlay {
  position: fixed; inset: 0; z-index: 80;
  background: var(--gray-950); color: var(--paper);
  display: grid; grid-template-rows: 1fr auto;
  padding: 7rem var(--pad) 2.5rem;
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
}
.menu-overlay nav { display: flex; flex-direction: column; justify-content: center; gap: 0.4rem; }
.menu-overlay nav a {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(2.2rem, 9vw, 6rem); line-height: 1.02; color: var(--paper);
  width: max-content;
}
.menu-overlay nav a:hover { color: var(--brand-500); }
.menu-foot { display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; justify-content: space-between; align-items: end; border-top: 1px solid #2a2a2a; padding-top: 1.5rem; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-300); }
.menu-foot a:hover { color: var(--brand-500); }

/* ===========================================================
   HERO
   =========================================================== */
.hero { position: relative; height: 100svh; min-height: 600px; overflow: hidden; }
.hero__media { position: absolute; inset: -8% 0; z-index: 0; will-change: transform; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 50%; will-change: transform; }
/* mobile: shift crop so the man on the left sits left-of-frame, face clear of the text */
@media (max-width: 1023px) { .hero__media img { object-position: 44% center; } }
.hero::after { content: ""; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(125% 95% at 50% 38%, rgba(0,0,0,0.22), rgba(0,0,0,0.8) 100%); }

/* giant stacked headline with cycling middle word */
.hero-title {
  position: absolute; z-index: 3; top: 45%; left: 50%; transform: translate(-50%, -50%);
  width: 100%; margin: 0; padding: 0 var(--pad); text-align: center;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  color: var(--brand-500); line-height: 0.86; letter-spacing: -0.01em;
  font-size: clamp(2.8rem, 13.5vw, 12rem);
}
.ht-line { display: block; overflow: hidden; }
.ht-line > span { display: block; }
/* taller mask box fully contains the glyph so the next word can't peek;
   negative margin pulls the line back to the tight visual rhythm */
.ht-rotwrap { height: 1.3em; margin-block: -0.22em; }
.ht-rotator { display: block; overflow: hidden; height: 1.3em; }
.ht-words { display: flex; flex-direction: column; will-change: transform; }
.ht-word { height: 1.3em; line-height: 1.3; display: flex; align-items: center; justify-content: center; white-space: nowrap; }

/* video / motion pause control */
.hero-pause {
  position: absolute; z-index: 5; right: var(--pad);
  bottom: calc(clamp(58px, 8vh, 92px) + 1.4rem);
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  color: var(--brand-500); transition: transform 0.3s var(--ease);
}
.hero-pause:hover { transform: scale(1.1); }
.pause-ic { position: relative; width: 16px; height: 19px; }
.pause-ic::before, .pause-ic::after { content: ""; position: absolute; top: 0; width: 5px; height: 100%; background: currentColor; }
.pause-ic::before { left: 1px; } .pause-ic::after { right: 1px; }
.hero-pause.is-paused .pause-ic::before {
  left: 50%; transform: translateX(-40%); width: 0; height: 0; background: transparent;
  border-top: 9px solid transparent; border-bottom: 9px solid transparent; border-left: 15px solid currentColor;
}
.hero-pause.is-paused .pause-ic::after { display: none; }

/* bottom yellow band + bordered CTA */
.hero-band {
  position: absolute; bottom: 0; left: 0; width: 100%; z-index: 4;
  height: clamp(58px, 8vh, 92px); background: var(--brand-500);
  display: flex; align-items: center; justify-content: center;
}
.hero-cta {
  font-family: var(--font-display); text-transform: uppercase; line-height: 1;
  font-size: clamp(1.05rem, 2.1vw, 1.9rem); color: var(--gray-950);
  background: var(--brand-500); border: 3px solid var(--gray-950);
  padding: 0.6em 1.5em; transition: background 0.35s var(--ease), color 0.35s var(--ease);
}
.hero-cta:hover { background: var(--gray-950); color: var(--brand-500); }

.hero__row { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; align-items: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
  padding: 0.95rem 1.6rem; border-radius: 0; transition: background 0.35s, color 0.35s, transform 0.35s var(--ease);
}
.btn-primary { background: var(--brand-500); color: var(--gray-950); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,0.55); color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--gray-950); }
.btn-dark { background: transparent; border: 1.5px solid rgba(255,255,255,0.35); color: var(--paper); }
.btn-dark:hover { background: var(--brand-500); color: var(--gray-950); border-color: var(--brand-500); transform: translateY(-2px); }

/* ===========================================================
   SECTION SHELL
   =========================================================== */
section { position: relative; }
.section-pad { padding-block: clamp(3.5rem, 9vw, 8rem); }
.section-label { color: var(--brand-500); margin-bottom: 2.5rem; }

/* ===========================================================
   PROGRAMS (accordion rows w/ hover image)
   =========================================================== */
.programs .h-sec { color: var(--brand-500); margin-bottom: clamp(1.75rem, 4vw, 3.5rem); }
.programs__grid { display: grid; gap: 2rem; }
@media (min-width: 1024px) {
  .programs__grid { grid-template-columns: 0.82fr 1.18fr; gap: clamp(2rem, 4vw, 4.5rem); align-items: start; }
}

/* LEFT — image that swaps with the active program */
.programs__media { position: relative; }
@media (min-width: 1024px) { .programs__media { position: sticky; top: 92px; } }
.pm-stack { position: relative; width: 100%; aspect-ratio: 4/5; overflow: hidden; border-radius: 0; background: #1a1a1a; }
.pm-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.06); transition: opacity 0.6s var(--ease), transform 1s var(--ease); }
.pm-img.is-active { opacity: 1; transform: scale(1); }
.pm-cta {
  position: absolute; left: 0; bottom: clamp(1rem, 3vw, 2rem); z-index: 3;
  font-family: var(--font-display); text-transform: uppercase; line-height: 1;
  font-size: clamp(0.95rem, 1.3vw, 1.35rem); color: var(--gray-950);
  background: var(--brand-500); border: 3px solid var(--gray-950);
  padding: 0.55em 1.1em; transition: background 0.35s var(--ease), color 0.35s var(--ease);
}
.pm-cta:hover { background: var(--gray-950); color: var(--brand-500); }

/* RIGHT — program list; active item becomes a yellow panel */
.programs__list { display: flex; flex-direction: column; gap: 0.4rem; }
.prog-item { border-radius: 0; transition: background 0.45s var(--ease); overflow: hidden; }
.prog-item__title {
  display: block; width: 100%; text-align: left; cursor: pointer;
  font-family: var(--font-display); text-transform: uppercase; line-height: 1;
  font-size: clamp(1.45rem, 3.4vw, 3rem); color: var(--paper);
  padding: clamp(0.65rem, 1.3vw, 1rem) clamp(1rem, 1.8vw, 1.5rem);
  transition: color 0.4s var(--ease);
}
.prog-item.is-active { background: var(--brand-500); }
.prog-item.is-active .prog-item__title { color: var(--gray-950); }
.prog-item__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.5s var(--ease); }
.prog-item__body > div { overflow: hidden; }
.prog-item.is-active .prog-item__body { grid-template-rows: 1fr; }
.prog-item__body p {
  color: var(--gray-950); max-width: 54ch; font-size: clamp(0.95rem, 1.05vw, 1.1rem);
  padding: 0 clamp(1rem, 1.8vw, 1.5rem) clamp(1rem, 1.5vw, 1.35rem);
}
/* per-item image: shown only on mobile (desktop uses the big left image) */
.prog-item__thumb { display: none; }
@media (max-width: 1023px) {
  .programs__media { display: none; }
  .prog-item__thumb { display: block; aspect-ratio: 16/10; overflow: hidden; border-radius: 0; margin: 0 clamp(1rem,1.8vw,1.5rem) clamp(1rem,1.5vw,1.35rem); }
  .prog-item__thumb img { width: 100%; height: 100%; object-fit: cover; }
}

/* ===========================================================
   WAYS TO TRAIN (marquee + swiper)
   =========================================================== */
.ways .h-sec { text-align: left; }
@media (min-width: 1024px) { .ways .h-sec { text-align: center; } }
.ways__sub { text-align: center; color: var(--gray-300); margin-top: 0.5rem; text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.85rem; }
.marquee { overflow: hidden; width: 100%; margin-block: clamp(2rem, 5vw, 4rem); border-block: 2px solid var(--line); padding-block: 1.2rem; }
.marquee__track { display: flex; gap: 0; width: max-content; will-change: transform; }
.marquee__item {
  font-family: var(--font-display); text-transform: uppercase; line-height: 0.7;
  font-size: clamp(2.5rem, 8vw, 7rem); padding-inline: clamp(1.5rem, 3vw, 3rem);
  display: inline-flex; align-items: center;
}
.marquee__item .sep { color: var(--brand-500); margin-left: clamp(1.5rem,3vw,3rem); }

.ways-swiper { overflow: visible; }
.way-card { position: relative; overflow: hidden; border-radius: 0; border: 3px solid var(--brand-500); aspect-ratio: 3/4; display: flex; align-items: flex-end; }
.way-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.way-card:hover img { transform: scale(1.06); }
.way-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.8) 100%); }
.way-card__body { position: relative; z-index: 2; padding: 1.5rem; color: #fff; }
.way-card__body h3 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.4rem, 2.4vw, 2rem); line-height: 1; }
.way-card__body p { color: rgba(255,255,255,0.82); font-size: 0.95rem; margin-top: 0.5rem; }
.way-card__tag { position: absolute; top: 1.1rem; left: 1.1rem; z-index: 2; background: var(--brand-500); color: var(--gray-950); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.4rem 0.7rem; border-radius: 999px; }

/* ===========================================================
   FEATURE — "This is Chhuks Fitness"
   =========================================================== */
.feature .h-sec { margin-bottom: clamp(1.5rem, 4vw, 3rem); }
.feature__grid { display: grid; gap: 2rem; }
.feature__media { overflow: hidden; border-radius: 6px; aspect-ratio: 4/5; }
.feature__media img { width: 100%; height: 115%; object-fit: cover; will-change: transform; }
.feature__text h3 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.5rem, 3vw, 2.6rem); line-height: 1; margin-bottom: 1.2rem; }
.feature__text p { color: var(--gray-300); max-width: 50ch; font-size: clamp(1rem,1.2vw,1.15rem); }
.feature__stats { display: flex; flex-wrap: wrap; gap: 2.5rem; margin-top: 2.5rem; }
.feature__stats .num { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1; color: var(--brand-500); }
.feature__stats .lbl { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-300); margin-top: 0.4rem; }
@media (min-width: 1024px) {
  .feature__grid { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
}

/* ===========================================================
   GALLERY — "Inside the training"
   =========================================================== */
.inside .h-sec { color: var(--brand-500); margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.inside-statement {
  position: relative; z-index: 2;
  font-family: var(--font-display); text-transform: uppercase; color: var(--brand-500);
  line-height: 1.04; letter-spacing: -0.005em;
  font-size: clamp(1.4rem, 3.2vw, 2.9rem); max-width: 30ch; margin-bottom: 1.5rem;
}
.inside-grid { position: relative; display: grid; gap: clamp(0.9rem, 2vw, 1.6rem); }
@media (min-width: 768px) {
  .inside-grid { grid-template-columns: repeat(12, 1fr); align-items: start; column-gap: clamp(0.9rem,2vw,1.6rem); row-gap: clamp(0.9rem,2vw,1.6rem); }
  .inside-statement { grid-column: 4 / 13; grid-row: 1; margin-bottom: 0; }
  .i-a { grid-column: 1 / 4; grid-row: 1 / 4; align-self: stretch; aspect-ratio: auto; }
  .i-b { grid-column: 4 / 8; grid-row: 2; }
  .i-c { grid-column: 8 / 13; grid-row: 2; }
  .inside-cta { grid-column: 4 / 13; grid-row: 3; }
}
.inside-img { display: block; overflow: hidden; position: relative; z-index: 1; aspect-ratio: 3 / 4; }
.inside-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.inside-img:hover img { transform: scale(1.04); }
.inside-cta {
  justify-self: center; align-self: center; text-align: center; white-space: nowrap;
  font-family: var(--font-display); text-transform: uppercase; line-height: 1;
  font-size: clamp(0.85rem, 1.4vw, 1.4rem); color: var(--gray-950);
  background: var(--brand-500); border: 3px solid var(--gray-950);
  padding: 0.7em 1.3em; transition: background 0.35s var(--ease), color 0.35s var(--ease);
}
.inside-cta:hover { background: var(--gray-950); color: var(--brand-500); }

/* mobile: smaller, alternating images so the parallax reads (like desktop) */
@media (max-width: 767px) {
  .inside-grid { gap: clamp(1.4rem, 6vw, 2.4rem); }
  .inside-statement { margin-bottom: 0.5rem; }
  .inside-img { width: 72%; aspect-ratio: 3 / 4; }
  .i-a { justify-self: start; width: 78%; }
  .i-b { justify-self: end;   width: 62%; }
  .i-c { justify-self: start; width: 70%; }
}

/* ===========================================================
   FAQ
   =========================================================== */
.faq .h-sec { margin-bottom: clamp(1.5rem, 4vw, 3rem); }
.faq__list { border-top: 2px solid var(--line); }
.faq-item { border-bottom: 2px solid var(--line); }
.faq-item.extra { display: none; }
.faq-item.extra.show { display: block; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; text-align: left; padding-block: 1.15rem; }
.faq-q h3 { font-size: clamp(1rem, 1.6vw, 1.3rem); text-transform: uppercase; letter-spacing: 0.01em; font-weight: 600; }
.faq-q .ic { width: 22px; height: 22px; position: relative; flex: none; }
.faq-q .ic::before, .faq-q .ic::after { content: ""; position: absolute; background: var(--paper); transition: transform 0.4s var(--ease); }
.faq-q .ic::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.faq-q .ic::after  { left: 50%; top: 0; height: 100%; width: 2px; transform: translateX(-50%); }
.faq-item.open .ic::after { transform: translateX(-50%) scaleY(0); }
.faq-a { height: 0; overflow: hidden; }
.faq-a p { padding-bottom: 1.3rem; max-width: 70ch; color: var(--gray-300); }
.faq-more { margin-top: 1.6rem; }

/* ===========================================================
   CULTURE / CTA
   =========================================================== */
.culture { position: relative; color: #fff; overflow: hidden; }
.culture__bg { position: absolute; inset: -10% 0; z-index: 0; }
.culture__bg img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.culture::after { content: ""; position: absolute; inset: 0; background: rgba(15,15,15,0.72); z-index: 1; }
.culture__inner { position: relative; z-index: 2; }
.culture .h-sec { color: var(--brand-500); }
.culture__statement { font-family: var(--font-display); text-transform: uppercase; line-height: 0.95; font-size: clamp(1.6rem, 4.5vw, 3.6rem); max-width: 20ch; margin-block: 1.5rem 2.5rem; }
.culture__statement em { color: var(--brand-500); font-style: normal; }

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer { background: var(--black); color: var(--brand-500); padding-block: clamp(3rem, 6vw, 5rem) 2rem; border-top: 1px solid rgba(255,255,255,0.09); }
.footer-logo { font-family: var(--font-display); text-transform: uppercase; line-height: 0.82; font-size: clamp(3rem, 16vw, 13rem); color: var(--brand-500); letter-spacing: -0.01em; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.footer-col h4 { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 1rem; }
.footer-col a { display: block; padding-block: 0.5rem; color: var(--paper); text-transform: uppercase; font-size: 0.95rem; }
.footer-col a:hover { color: var(--brand-500); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid #242424; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-500); }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ===========================================================
   ANIMATION BASE STATES (revealed by JS; safe fallback if JS off)
   =========================================================== */
.line-mask { overflow: hidden; }
[data-reveal] { will-change: transform, opacity; }
.no-js [data-reveal], .reduced [data-reveal] { opacity: 1 !important; transform: none !important; }

/* ===========================================================
   RESPONSIVE TWEAKS
   =========================================================== */
@media (max-width: 1023px) {
  .header-cta { display: none; }
  .prog-head { grid-template-columns: 1fr auto; }
  .prog-index { display: none; }
}

/* reduced motion */
/* ===========================================================
   MARK LINE — video grows from between the words on scroll
   =========================================================== */
.markline { position: relative; height: 300vh; background: var(--bg); }
.markline__stage { position: relative; height: 100vh; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: clamp(0.25rem, 2vh, 1.4rem); }
.ml-text { position: relative; z-index: 1; font-family: var(--font-display); text-transform: uppercase; color: var(--brand-500); line-height: 0.84; letter-spacing: -0.01em; text-align: center; font-size: clamp(2rem, 8.5vw, 7rem); will-change: transform, opacity; }
.ml-text span { display: block; }
.ml-video { position: relative; z-index: 2; height: 26vh; aspect-ratio: 9 / 16; overflow: hidden; flex: none; will-change: transform; }
.ml-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.ml-cta { position: absolute; z-index: 3; left: 50%; bottom: clamp(2rem, 8vh, 5rem); transform: translateX(-50%); font-family: var(--font-display); text-transform: uppercase; line-height: 1; font-size: clamp(1rem, 1.6vw, 1.6rem); color: var(--gray-950); background: var(--brand-500); border: 3px solid var(--gray-950); padding: 0.65em 1.4em; opacity: 0; will-change: opacity; transition: background 0.35s var(--ease), color 0.35s var(--ease); }
.ml-cta:hover { background: var(--gray-950); color: var(--brand-500); }
.no-js .ml-cta, .reduced .ml-cta { opacity: 1; }

/* ---- yellow scrollbar ---- */
html { scrollbar-color: var(--brand-500) #0f0f0f; scrollbar-width: thin; }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: #0f0f0f; }
::-webkit-scrollbar-thumb { background: var(--brand-500); border: 3px solid #0f0f0f; border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: #ffd84d; }

/* footer credit */
.credit-wiggle { color: var(--gray-500); display: inline-block; transition: color 0.3s var(--ease); }
.credit-wiggle:hover { color: var(--brand-500); animation: credit-wiggle 0.45s ease-in-out; }
@keyframes credit-wiggle { 0%,100%{transform:rotate(0)} 20%{transform:rotate(-3deg)} 50%{transform:rotate(3deg)} 80%{transform:rotate(-2deg)} }

/* markline sound toggle */
.ml-sound { position: absolute; z-index: 4; right: clamp(1rem, 4vw, 2.5rem); bottom: clamp(2rem, 8vh, 5rem); width: 50px; height: 50px; border-radius: 50%; background: rgba(15,15,15,0.55); color: var(--brand-500); display: grid; place-items: center; backdrop-filter: blur(4px); transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease); }
.ml-sound:hover { transform: scale(1.1); background: var(--brand-500); color: var(--gray-950); }
.ml-sound .snd-on { display: none; }
.ml-sound.is-on .snd-off { display: none; }
.ml-sound.is-on .snd-on { display: block; }

/* ===========================================================
   TESTIMONIALS — social proof
   =========================================================== */
.testi .h-sec { color: var(--brand-500); margin-bottom: clamp(1.5rem, 4vw, 3rem); }
.testi-grid { display: grid; gap: clamp(1rem, 2vw, 1.5rem); }
@media (min-width: 768px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi-card { background: #141414; border: 1px solid rgba(255,255,255,0.1); padding: clamp(1.4rem, 2.5vw, 2rem); display: flex; flex-direction: column; gap: 1rem; }
.testi-stars { color: var(--brand-500); letter-spacing: 3px; font-size: 0.95rem; }
.testi-card blockquote { margin: 0; font-size: clamp(1rem, 1.25vw, 1.2rem); line-height: 1.5; color: var(--paper); }
.testi-card figcaption { margin-top: auto; display: flex; flex-direction: column; gap: 0.25rem; }
.t-name { font-family: var(--font-display); text-transform: uppercase; font-size: 1.1rem; line-height: 1; color: var(--brand-500); }
.t-meta { font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-500); }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
}
