/* ==========================================================================
   TAYLORED TRANSFORMATIONS — Core Stylesheet
   Visual identity: black · white · brand red · sharp angular geometry
   Author: Design system for tayloredtransformations.ca (V1 static)
   ========================================================================== */

/* ---------------------------------------------------------------
   1. DESIGN TOKENS
   --------------------------------------------------------------- */
:root {
  /* Brand core */
  --black:        #000000;
  --ink:          #0A0A0A;
  --surface-1:    #111111;
  --surface-2:    #171717;
  --surface-3:    #202020;
  --line:         rgba(255, 255, 255, 0.10);
  --line-strong:  rgba(255, 255, 255, 0.18);

  /* Light / editorial ground */
  --paper:        #F5F5F3;
  --paper-2:      #ECECE8;
  --paper-line:   rgba(10, 10, 10, 0.10);

  /* Text */
  --white:        #FFFFFF;
  --text-dark:    #0A0A0A;
  --muted:        rgba(255, 255, 255, 0.62);
  --muted-2:      rgba(255, 255, 255, 0.42);
  --muted-dark:   rgba(10, 10, 10, 0.60);

  /* Accent — red sampled from the Taylored Transformations logo */
  --red:          #E50914;
  --red-bright:   #FF1420;
  --red-deep:     #B00710;
  --red-glow:     rgba(229, 9, 20, 0.35);

  /* Typography */
  --font-display: "Saira Condensed", "Arial Narrow", sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Spacing scale */
  --gutter:       clamp(1.25rem, 4vw, 4rem);
  --section-y:    clamp(5rem, 12vw, 11rem);
  --maxw:         1320px;
  --maxw-narrow:  920px;

  /* Motion */
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout:   cubic-bezier(0.65, 0, 0.35, 1);
  --dur:          0.6s;

  /* Radius (kept sharp — this brand is angular) */
  --radius:       2px;

  /* Header */
  --header-h:     78px;
}

/* ---------------------------------------------------------------
   2. RESET & BASE
   --------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scrollbar-color: var(--surface-3) var(--black);
}

/* Lenis manages scroll when active; native smooth as fallback */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img, picture, svg, video { display: block; max-width: 100%; }
img, video { height: auto; }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
input, textarea, select, button { font-family: inherit; }
ul { list-style: none; padding: 0; }

::selection { background: var(--red); color: #fff; }

:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 3px;
}

/* ---------------------------------------------------------------
   3. TYPOGRAPHY
   --------------------------------------------------------------- */
.display,
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.h-hero {
  font-size: clamp(3.4rem, 12vw, 10rem);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.015em;
}

.h-xl { font-size: clamp(2.6rem, 7.5vw, 6.5rem); }
.h-lg { font-size: clamp(2.1rem, 5.5vw, 4.5rem); }
.h-md { font-size: clamp(1.7rem, 4vw, 3rem); }
.h-sm { font-size: clamp(1.35rem, 2.6vw, 2rem); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}
.eyebrow.no-line::before { display: none; }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--muted);
  max-width: 46ch;
  line-height: 1.65;
}

.text-red { color: var(--red); }
.text-muted { color: var(--muted); }
.nowrap { white-space: nowrap; }

/* ---------------------------------------------------------------
   4. LAYOUT UTILITIES
   --------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: var(--maxw-narrow); }

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(3rem, 7vw, 6rem); }

.bg-black   { background: var(--black); color: var(--white); }
.bg-ink     { background: var(--ink); color: var(--white); }
.bg-surface { background: var(--surface-1); color: var(--white); }
.bg-paper   { background: var(--paper); color: var(--text-dark); }

.bg-paper .lead,
.bg-paper .text-muted { color: var(--muted-dark); }

.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

.divider { height: 1px; background: var(--line); border: 0; }
.bg-paper .divider { background: var(--paper-line); }

.stack-sm > * + * { margin-top: 1rem; }
.stack   > * + * { margin-top: 1.6rem; }
.stack-lg > * + * { margin-top: 2.6rem; }

.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* ---------------------------------------------------------------
   5. BUTTONS
   --------------------------------------------------------------- */
.btn {
  --btn-bg: var(--red);
  --btn-fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  padding: 1.05rem 1.9rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.3s;
  isolation: isolate;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn__arrow {
  display: inline-block;
  transition: transform 0.35s var(--ease-out);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px var(--red-glow); }
.btn:hover .btn__arrow { transform: translateX(5px); }
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border: 1px solid var(--line-strong);
  clip-path: none;
}
.btn--ghost:hover { border-color: #fff; box-shadow: none; }

.btn--dark {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
}

.btn--light {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
}
.bg-paper .btn--ghost { --btn-fg: var(--ink); border-color: var(--paper-line); }
.bg-paper .btn--ghost:hover { border-color: var(--ink); }

.btn--lg { padding: 1.25rem 2.4rem; font-size: 0.88rem; }
.btn--block { width: 100%; justify-content: center; }

/* Text link with animated underline */
.link-underline {
  position: relative;
  font-weight: 600;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding-bottom: 3px;
}
.link-underline::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.link-underline:hover::after { transform: scaleX(1); }
.link-underline .btn__arrow { transition: transform 0.35s var(--ease-out); }
.link-underline:hover .btn__arrow { transform: translateX(4px); }

/* ---------------------------------------------------------------
   6. HEADER / NAV
   --------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(8, 8, 8, 0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
}
.site-header.is-hidden { transform: translateY(-100%); }
.site-header { transition: transform 0.45s var(--ease-out), background 0.4s var(--ease-out), border-color 0.4s; }

.header-inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand { display: inline-flex; align-items: center; gap: 0.7rem; z-index: 2; }
.brand img { height: 46px; width: auto; }
.brand__fallback {
  display: none; /* only shown when the real logo image is missing */
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
}
.brand__fallback b { color: var(--red); }
/* When logo.png is absent, JS adds .logo-missing: hide broken img, show wordmark */
.brand.logo-missing img,
.footer-brand.logo-missing img { display: none; }
.brand.logo-missing .brand__fallback,
.footer-brand.logo-missing .brand__fallback { display: inline-flex; }
.footer-brand .brand__fallback { font-size: 1.7rem; margin-bottom: 1.2rem; }

.nav { display: flex; align-items: center; gap: 2.4rem; }
.nav__links { display: flex; gap: 2rem; align-items: center; }
.nav__link {
  position: relative;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  padding: 0.4rem 0;
  transition: color 0.25s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.nav__link:hover,
.nav__link[aria-current="page"] { color: #fff; }
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

.nav__cta { display: inline-flex; }

/* Burger */
.burger {
  display: none;
  width: 46px; height: 46px;
  position: relative;
  z-index: 120;
}
.burger span {
  position: absolute;
  left: 11px;
  width: 24px; height: 2px;
  background: #fff;
  transition: transform 0.4s var(--ease-out), opacity 0.3s;
}
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 23px; }
.burger span:nth-child(3) { top: 29px; }
body.menu-open .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile overlay menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gutter);
  padding-top: calc(var(--header-h) + 2rem);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.6s var(--ease-inout);
  pointer-events: none;
}
body.menu-open .mobile-menu { clip-path: inset(0 0 0 0); pointer-events: auto; }
.mobile-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 80% 0%, rgba(229,9,20,0.16), transparent 60%);
  pointer-events: none;
}
.mobile-menu__links { display: flex; flex-direction: column; gap: 0.4rem; }
.mobile-menu__link {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 12vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: #fff;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), color 0.25s;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.mobile-menu__link .idx {
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.1em;
}
body.menu-open .mobile-menu__link { opacity: 1; transform: translateY(0); }
body.menu-open .mobile-menu__link:nth-child(1) { transition-delay: 0.14s; }
body.menu-open .mobile-menu__link:nth-child(2) { transition-delay: 0.20s; }
body.menu-open .mobile-menu__link:nth-child(3) { transition-delay: 0.26s; }
body.menu-open .mobile-menu__link:nth-child(4) { transition-delay: 0.32s; }
body.menu-open .mobile-menu__link:nth-child(5) { transition-delay: 0.38s; }
.mobile-menu__link:hover { color: var(--red); }
.mobile-menu__footer {
  margin-top: auto;
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mobile-menu__cta { margin-top: 2.4rem; }

/* ---------------------------------------------------------------
   7. HERO
   --------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 100%;
  align-items: end;
  overflow: hidden;
  background: var(--black);
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: grayscale(0.35) contrast(1.06) brightness(0.62);
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.94) 24%, rgba(0,0,0,0.55) 48%, rgba(0,0,0,0.10) 72%, rgba(0,0,0,0) 100%),
    linear-gradient(to top, rgba(0,0,0,0.92) 3%, rgba(0,0,0,0) 44%);
}
.hero__slash {
  position: absolute;
  top: 0; bottom: 0;
  left: 62%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--red) 30%, var(--red) 70%, transparent);
  transform: skewX(-14deg);
  opacity: 0.55;
  z-index: -1;
  filter: drop-shadow(0 0 14px var(--red-glow));
}
/* Hero subject — Andrew, right-anchored full body, monochrome-cinematic grade */
.hero__subject {
  position: absolute;
  z-index: -1;                 /* above bg + glow, below scrim/slash/text */
  right: clamp(-40px, 1vw, 48px);
  bottom: 0;
  height: 96%;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
  animation: heroSubjectIn 1.3s var(--ease-out) both;
}
.hero__subject picture, .hero__subject img { height: 100%; width: auto; display: block; }
.hero__subject img {
  object-fit: contain;
  object-position: bottom center;
  filter: grayscale(1) contrast(1.12) brightness(0.92);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 28%, #000 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 28%, #000 100%);
}
/* Red halo behind the subject (replaces the amber glow in-camera) */
.hero__glow {
  position: absolute;
  z-index: -1;
  right: 6%;
  top: 16%;
  width: 46%;
  height: 66%;
  pointer-events: none;
  background: radial-gradient(closest-side, rgba(229, 9, 20, 0.22), transparent 72%);
  filter: blur(8px);
  animation: heroGlowIn 1.6s var(--ease-out) both;
}
@keyframes heroSubjectIn {
  from { opacity: 0; transform: translateX(26px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes heroGlowIn { from { opacity: 0; } to { opacity: 1; } }

.hero__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-bottom: clamp(3rem, 8vh, 6rem);
  padding-top: calc(var(--header-h) + 2rem);
}
.hero__title { margin: 1.4rem 0 1.6rem; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero__meta {
  margin-top: 2.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2.4rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero__meta .dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; }
.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(3rem, 8vh, 6rem);
  writing-mode: vertical-rl;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted-2);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero__scroll::after {
  content: "";
  width: 1px; height: 54px;
  background: linear-gradient(var(--red), transparent);
  animation: scrollpulse 2.4s var(--ease-inout) infinite;
}
@keyframes scrollpulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; transform-origin: top; }
  50%      { transform: scaleY(1); opacity: 1; transform-origin: top; }
}

/* ---------------------------------------------------------------
   8. IMAGE PLACEHOLDER SYSTEM
   Real <img> drops in; if missing, JS adds .img-fallback
   --------------------------------------------------------------- */
.media {
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
}
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out);
}
.media--zoom:hover img { transform: scale(1.05); }
/* Light brand grade for photography (keeps warmth, ties to the mono/red system) */
.media.is-graded img { filter: grayscale(0.42) contrast(1.08) brightness(0.98); }
.media picture { display: block; width: 100%; height: 100%; }
/* Bias a portrait crop toward the top so the subject's head stays in frame */
.media--top img { object-position: 50% 10%; }

/* About hero: portrait matches the full height of the headline block */
/* Heading sized so the height-matched portrait keeps a natural proportion
   (close to the photo's ~0.6 aspect) — so his full frame/elbows stay in view. */
.about-hero__title { font-size: clamp(2.4rem, 6.2vw, 6.5rem); }
.about-hero__portrait { height: 100%; min-height: 320px; }
.about-hero__portrait img { object-position: 50% 18%; } /* keep his face in frame */
@media (max-width: 900px) {
  .about-hero__portrait { height: auto; min-height: 0; aspect-ratio: 4 / 5; }
}

.img-fallback {
  position: relative;
  background:
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 12px),
    linear-gradient(135deg, var(--surface-2), var(--ink));
}
.img-fallback img { opacity: 0; }
.img-fallback::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  font-family: var(--font-body);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  line-height: 1.7;
}
.img-fallback::before {
  content: "";
  position: absolute;
  top: 14px; left: 14px;
  width: 26px; height: 26px;
  border-top: 2px solid var(--red);
  border-left: 2px solid var(--red);
}

/* ---------------------------------------------------------------
   9. POSITIONING / STATEMENT SECTIONS
   --------------------------------------------------------------- */
.statement {
  position: relative;
  overflow: hidden;
}
.statement__big {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.015em;
  font-size: clamp(2.6rem, 8vw, 7rem);
}
.statement__big .fade { color: var(--muted-2); }

.giant-type {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: -0.02em;
  font-size: clamp(3rem, 11vw, 10rem);
}

/* Reveal-on-scroll (JS toggles .in). Progressive enhancement: the hidden
   state applies ONLY once JS has armed it (html.reveals-armed). Without JS —
   or if scripts fail/are blocked — content stays fully visible, never blank. */
[data-reveal] {
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveals-armed [data-reveal] { opacity: 0; transform: translateY(28px); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }

/* Word-by-word / line reveal */
.reveal-lines .line { display: block; overflow: hidden; }
.reveal-lines .line > span {
  display: block;
  transition: transform 0.9s var(--ease-out);
}
.reveals-armed .reveal-lines .line > span { transform: translateY(105%); }
.reveal-lines.in .line > span { transform: none; }
.reveal-lines.in .line:nth-child(2) > span { transition-delay: 0.08s; }
.reveal-lines.in .line:nth-child(3) > span { transition-delay: 0.16s; }
.reveal-lines.in .line:nth-child(4) > span { transition-delay: 0.24s; }

/* ---------------------------------------------------------------
   10. STAT BLOCKS
   --------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.stat { background: var(--black); padding: clamp(1.6rem, 3vw, 2.4rem); }
.stat__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.01em;
}
.stat__num .unit { color: var(--red); }
.stat__label {
  margin-top: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------------------------------------------------------------
   11. TRANSFORMATION CARDS + BEFORE/AFTER SLIDER
   --------------------------------------------------------------- */
.transform-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(86vw, 460px);
  gap: clamp(1rem, 2.5vw, 1.8rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1.4rem;
  margin-inline: calc(-1 * var(--gutter));
  padding-inline: var(--gutter);
  scrollbar-width: thin;
}
.transform-rail::-webkit-scrollbar { height: 6px; }
.transform-rail::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 4px; }
.transform-rail::-webkit-scrollbar-track { background: transparent; }

.tcard { scroll-snap-align: start; }

/* Before/After compare */
.ba {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--surface-2);
  user-select: none;
  touch-action: pan-y;
  border: 1px solid var(--line);
}
.ba__img { position: absolute; inset: 0; }
.ba__img img { width: 100%; height: 100%; object-fit: cover; }
.ba__after { clip-path: inset(0 0 0 50%); }
.ba__label {
  position: absolute;
  bottom: 14px;
  padding: 0.3rem 0.7rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.66);
  backdrop-filter: blur(4px);
  border: 1px solid var(--line);
}
.ba__label--before { left: 14px; }
.ba__label--after { right: 14px; color: #fff; border-color: var(--red); }
.ba__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--red);
  transform: translateX(-50%);
  z-index: 3;
  box-shadow: 0 0 18px var(--red-glow);
}
.ba__grip {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}
.ba__grip svg { width: 22px; height: 22px; fill: #fff; }
.ba input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
}

.tcard__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 1.1rem;
  gap: 1rem;
}
.tcard__name { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; text-transform: uppercase; }
.tcard__time { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); font-weight: 700; }
.tcard__result { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.25rem; line-height: 1.05; margin-top: 0.5rem; }
.tcard__quote { color: var(--muted); font-size: 0.92rem; margin-top: 0.7rem; }

/* Sticky-stat transformation moment */
.sticky-result { position: relative; }
.sticky-result__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.sticky-result__stat { position: sticky; top: calc(var(--header-h) + 4vh); }

/* ---------------------------------------------------------------
   12. THE METHOD (sticky steps)
   --------------------------------------------------------------- */
.method__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.method__sticky { position: sticky; top: calc(var(--header-h) + 6vh); }
.method__index {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(6rem, 16vw, 13rem);
  line-height: 0.8;
  color: var(--red);
}
.method__steps { display: flex; flex-direction: column; }
.method__step {
  padding: clamp(2rem, 5vw, 3.6rem) 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem 2rem;
  transition: opacity 0.5s;
}
.method__step:last-child { border-bottom: 1px solid var(--line); }
.method__step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--red);
  letter-spacing: 0.1em;
  padding-top: 0.4rem;
}
.method__step.is-dim { opacity: 0.32; }
.method__step h3 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.method__step p { color: var(--muted); margin-top: 0.8rem; max-width: 46ch; }

/* ---------------------------------------------------------------
   13. COACHING / SERVICE CARDS
   --------------------------------------------------------------- */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.service {
  background: var(--ink);
  padding: clamp(1.8rem, 3vw, 2.8rem);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  transition: background 0.4s;
  min-height: 100%;
}
.service:hover { background: var(--surface-2); }
.service__num { font-family: var(--font-display); font-weight: 800; color: var(--red); font-size: 0.9rem; letter-spacing: 0.12em; }
.service h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.service__desc { color: var(--muted); font-size: 0.95rem; }
.service__list { display: flex; flex-direction: column; gap: 0.55rem; margin-top: auto; }
.service__list li {
  display: flex;
  gap: 0.7rem;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.78);
  padding-top: 0.55rem;
  border-top: 1px solid var(--line);
}
.service__list li::before { content: "—"; color: var(--red); }
.service__cta { margin-top: 1.6rem; }

/* Feature tag */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--muted);
}
.tag--red { color: #fff; border-color: var(--red); background: rgba(229,9,20,0.12); }

/* ---------------------------------------------------------------
   14. TESTIMONIALS
   --------------------------------------------------------------- */
.quote-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.quote {
  background: var(--black);
  padding: clamp(1.8rem, 3.5vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.quote__mark { font-family: var(--font-display); color: var(--red); font-size: 3rem; line-height: 0.5; }
.quote__text { font-size: clamp(1.05rem, 1.8vw, 1.4rem); line-height: 1.5; font-weight: 500; }
.quote__by { margin-top: auto; display: flex; align-items: center; gap: 0.9rem; }
.quote__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--surface-3); flex: none; overflow: hidden; }
.quote__name { font-weight: 700; font-size: 0.9rem; letter-spacing: 0.04em; }
.quote__role { font-size: 0.76rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }

/* ---------------------------------------------------------------
   15. SHOP / PRODUCTS
   --------------------------------------------------------------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.product {
  background: var(--surface-1);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: border-color 0.35s, transform 0.35s var(--ease-out);
  position: relative;
}
.product:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.product__media { aspect-ratio: 1 / 1; position: relative; overflow: hidden; background: var(--surface-2); }
.product__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-out); }
.product:hover .product__media img { transform: scale(1.05); }
.product__badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.35rem 0.6rem;
  background: var(--red);
  color: #fff;
}
.product__badge--muted { background: var(--surface-3); color: var(--muted); }
.product__badge--soldout { background: #000; border: 1px solid var(--red); color: var(--red); }
.product__body { padding: 1.2rem 1.3rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.product__cat { font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); font-weight: 700; }
.product__name { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; text-transform: uppercase; line-height: 1.05; }
.product__desc { font-size: 0.82rem; color: var(--muted); }
.product__foot { margin-top: auto; padding-top: 1rem; display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; }
.product__price { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; }
.product__price--tbd { color: var(--muted); font-size: 0.8rem; font-family: var(--font-body); letter-spacing: 0.1em; text-transform: uppercase; }
.product__cta {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.25s, gap 0.25s;
}
.product__cta:hover { color: var(--red); gap: 0.7rem; }
.product__cta[disabled], .product__cta.is-disabled { color: var(--muted-2); cursor: not-allowed; pointer-events: none; }

/* Product line hero (supplement drop) */
.line-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  background: linear-gradient(120deg, var(--ink), var(--surface-1));
  border: 1px solid var(--line);
  overflow: hidden;
}
.line-hero__media { aspect-ratio: 4/3; }

/* Shop filter chips */
.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--line-strong);
  border-radius: 40px;
  color: var(--muted);
  transition: all 0.25s;
}
.chip:hover { color: #fff; border-color: #fff; }
.chip.is-active { background: var(--red); border-color: var(--red); color: #fff; }

/* ---------------------------------------------------------------
   16. FORMS / APPLICATION
   --------------------------------------------------------------- */
.form { display: grid; gap: 1.6rem; }
.form__row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.field label .req { color: var(--red); }
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--surface-1);
  border: 1px solid var(--line-strong);
  color: #fff;
  padding: 0.95rem 1rem;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: border-color 0.25s, background 0.25s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--surface-2);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--muted-2); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23E50914' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.6rem; }
.field--error input,
.field--error select,
.field--error textarea { border-color: var(--red-bright); }
.field__error { font-size: 0.74rem; color: var(--red-bright); display: none; }
.field--error .field__error { display: block; }

/* Range / commitment scale */
.scale { display: flex; flex-direction: column; gap: 0.8rem; }
.scale__track {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--surface-3);
  border-radius: 4px;
  outline: none;
}
.scale__track::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--red);
  cursor: pointer;
  border: 3px solid #000;
  box-shadow: 0 0 0 1px var(--red);
}
.scale__track::-moz-range-thumb {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--red);
  cursor: pointer;
  border: 3px solid #000;
}
.scale__val { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; }
.scale__row { display: flex; align-items: center; justify-content: space-between; font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; }

/* Radio card group */
.radio-cards { display: grid; gap: 0.8rem; }
.radio-cards.cols { grid-template-columns: repeat(3, 1fr); }
.radio-card {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}
.radio-card:hover { border-color: var(--muted); }
.radio-card input { position: absolute; opacity: 0; }
.radio-card__dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--line-strong);
  flex: none;
  margin-top: 2px;
  transition: border-color 0.2s;
  position: relative;
}
.radio-card input:checked ~ .radio-card__dot { border-color: var(--red); }
.radio-card input:checked ~ .radio-card__dot::after {
  content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--red);
}
.radio-card:has(input:checked) { border-color: var(--red); background: rgba(229,9,20,0.06); }
.radio-card__title { display: block; font-weight: 600; font-size: 0.92rem; }
.radio-card__sub { display: block; font-size: 0.78rem; color: var(--muted); margin-top: 0.2rem; }
.radio-card > span:last-child { display: block; }

.form__note { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }
.form__note a { color: var(--red); }

.form-status {
  padding: 1rem 1.2rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font-size: 0.9rem;
  display: none;
}
.form-status.is-success { display: block; border-color: #1f7a35; background: rgba(31,122,53,0.12); }
.form-status.is-error { display: block; border-color: var(--red); background: rgba(229,9,20,0.1); }

/* ---------------------------------------------------------------
   17. PAGE HERO (interior pages)
   --------------------------------------------------------------- */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(4rem, 12vh, 9rem));
  padding-bottom: clamp(3rem, 8vh, 6rem);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(90% 100% at 85% 0%, rgba(229,9,20,0.14), transparent 55%), var(--black);
}
.page-hero__index {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------------------------------------------------------------
   18. CTA BANNER
   --------------------------------------------------------------- */
.cta-banner {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.cta-banner__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 80% at 50% 120%, rgba(229,9,20,0.30), transparent 60%),
    var(--black);
}
.cta-banner .giant-type { margin-bottom: 1.6rem; }

/* ---------------------------------------------------------------
   18b. EDITORIAL BAND (split: copy left · Andrew right)
   --------------------------------------------------------------- */
.editorial-band {
  position: relative;
  min-height: min(84vh, 700px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(4rem, 10vw, 8rem);
  background: var(--black);
}
/* Photo occupies the right side; its left edge feathers into black */
.editorial-band__media {
  position: absolute;
  top: -10%; bottom: -10%; right: 0;
  width: min(58%, 900px);
  z-index: -2;
}
.editorial-band__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;          /* his head, looking down */
  filter: grayscale(0.5) contrast(1.08) brightness(0.82);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 36%, #000 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 36%, #000 100%);
}
.editorial-band__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.58) 46%, rgba(0,0,0,0) 68%),
    linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0) 40%);
}
.editorial-band__content { max-width: 44ch; }
.editorial-band__content .giant-type { font-size: clamp(2.6rem, 7vw, 6rem); margin: 1rem 0 1.6rem; }
.editorial-band__content .lead { margin-bottom: 2rem; }
@media (max-width: 1199px) {
  /* Not enough room for a clean split — stack: photo as a top-anchored cover,
     copy overlaid at the bottom (same treatment as mobile). */
  .editorial-band { align-items: end; }
  .editorial-band__media { top: -8%; bottom: -8%; right: 0; width: 100%; }
  .editorial-band__media img {
    object-position: 60% 12%;
    -webkit-mask-image: none;
            mask-image: none;
  }
  .editorial-band__scrim {
    background: linear-gradient(to top, rgba(0,0,0,0.94) 14%, rgba(0,0,0,0.4) 56%, rgba(0,0,0,0.5) 100%);
  }
  .editorial-band__content { max-width: none; }
}

/* ---------------------------------------------------------------
   18c. OFFERS — pricing, value ladder, inclusions, offer/ebook cards
   --------------------------------------------------------------- */
/* Price display */
.price { display: flex; align-items: baseline; gap: 0.6rem; flex-wrap: wrap; }
.price__amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.01em;
}
.price__amount .cur { font-size: 0.46em; vertical-align: super; color: var(--muted); margin-right: 0.06em; }
.price__meta { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.price__plan {
  margin-top: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.86);
}
.price__plan .pill {
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; background: rgba(229,9,20,0.14); border: 1px solid var(--red);
  padding: 0.3rem 0.6rem; border-radius: 40px;
}
.price__plan b { color: #fff; }

/* Value ladder (3 steps, flagship emphasised) */
.ladder { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.ladder__step {
  background: var(--ink);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  display: flex; flex-direction: column; gap: 0.9rem;
  position: relative; transition: background 0.4s;
}
.ladder__step:hover { background: var(--surface-2); }
.ladder__step--flagship {
  background: linear-gradient(180deg, rgba(229,9,20,0.12), var(--ink) 58%);
}
.ladder__step--flagship:hover { background: linear-gradient(180deg, rgba(229,9,20,0.18), var(--surface-2) 58%); }
.ladder__tier { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); font-weight: 700; }
.ladder__title { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(1.4rem, 2.4vw, 1.9rem); line-height: 1.02; }
.ladder__price { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; }
.ladder__desc { color: var(--muted); font-size: 0.92rem; flex: 1; }
.ladder__cta { margin-top: 0.4rem; }
.ladder__step--flagship .badge-best { position: absolute; top: 0; right: 0; }

/* Best-value / flagship ribbon */
.badge-best {
  background: var(--red); color: #fff;
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.4rem 0.7rem;
}
.badge-best--muted { background: var(--surface-3); color: var(--muted); }

/* Beast Mode inclusions checklist */
.inclusions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 2.4rem; }
.inclusions li {
  display: flex; gap: 0.8rem; align-items: flex-start;
  padding: 0.85rem 0; border-top: 1px solid var(--line);
  font-size: 0.95rem; color: rgba(255,255,255,0.86);
}
.inclusions li::before {
  content: ""; flex: none; margin-top: 3px;
  width: 16px; height: 16px;
  background: var(--red);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 12l5 5L20 6' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 12l5 5L20 6' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* One-off offer cards */
.offer {
  background: var(--surface-1);
  border: 1px solid var(--line);
  padding: clamp(1.6rem, 2.6vw, 2.2rem);
  display: flex; flex-direction: column; gap: 0.9rem;
  position: relative; transition: border-color 0.35s, transform 0.35s var(--ease-out);
  min-height: 100%;
}
.offer:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.offer--featured { border-color: var(--red); }
.offer--featured::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: 0 0 0 1px var(--red) inset, 0 30px 60px -30px var(--red-glow);
}
.offer__cat { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); font-weight: 700; }
.offer__name { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(1.35rem, 2.2vw, 1.8rem); line-height: 1.03; }
.offer__desc { color: var(--muted); font-size: 0.92rem; }
.offer__list { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.4rem; }
.offer__list li { display: flex; gap: 0.6rem; font-size: 0.86rem; color: rgba(255,255,255,0.78); }
.offer__list li::before { content: "—"; color: var(--red); }
.offer__foot { margin-top: auto; padding-top: 1.2rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

/* E-book / digital product cards (reuse .product but add price prominence) */
.ebook__price { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; }

/* Buy button + inline "coming soon" note */
.buy-note { display: none; font-size: 0.78rem; color: var(--muted); margin-top: 0.6rem; }
.buy-note a { color: var(--red); }
.is-note-shown .buy-note { display: block; }

/* Big split feature (Beast Mode centrepiece on home) */
.feature-split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }

@media (max-width: 960px) {
  .ladder { grid-template-columns: 1fr; }
  .feature-split { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .inclusions { grid-template-columns: 1fr; }
  .inclusions li:nth-child(2) { border-top: 1px solid var(--line); }
}

/* ---------------------------------------------------------------
   19. FOOTER
   --------------------------------------------------------------- */
.site-footer { background: var(--black); border-top: 1px solid var(--line); padding-top: clamp(3.5rem, 7vw, 6rem); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand__logo { height: 60px; width: auto; margin-bottom: 1.4rem; }
.footer-brand p { color: var(--muted); max-width: 30ch; font-size: 0.9rem; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col a { font-size: 0.92rem; color: rgba(255,255,255,0.82); transition: color 0.2s; }
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 1.6rem 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.footer-bottom .legal { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer-social { display: flex; gap: 0.8rem; }
.footer-social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  transition: all 0.25s;
}
.footer-social a:hover { background: var(--red); border-color: var(--red); }
.footer-social svg { width: 17px; height: 17px; fill: currentColor; }

/* ---------------------------------------------------------------
   20. MISC / DECOR
   --------------------------------------------------------------- */
.angle-rule {
  height: 3px;
  width: 60px;
  background: var(--red);
  transform: skewX(-24deg);
}
.kicker-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding-block: 1.1rem;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  gap: 3rem;
  animation: marquee 26s linear infinite;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  letter-spacing: 0.02em;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 3rem; color: var(--muted); }
.marquee__track .sep { color: var(--red); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Custom cursor (desktop, opt-in) */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; border-radius: 50%; mix-blend-mode: difference; }
.cursor-dot { width: 7px; height: 7px; background: #fff; transform: translate(-50%, -50%); }
.cursor-ring { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.6); transform: translate(-50%, -50%); transition: width 0.25s, height 0.25s, background 0.25s; }
.cursor-ring.is-hover { width: 52px; height: 52px; background: rgba(255,255,255,0.08); }
body.has-cursor { cursor: none; }
body.has-cursor a, body.has-cursor button { cursor: none; }

/* Skip link */
.skip-link {
  position: absolute;
  left: 1rem; top: -60px;
  background: var(--red);
  color: #fff;
  padding: 0.7rem 1.1rem;
  z-index: 200;
  border-radius: var(--radius);
  transition: top 0.2s;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.skip-link:focus { top: 1rem; }

/* ---------------------------------------------------------------
   21. RESPONSIVE
   --------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero__subject { right: clamp(-70px, -3vw, -20px); height: 88%; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .method__grid { grid-template-columns: 1fr; }
  .method__sticky { position: static; }
  .method__index { font-size: clamp(4rem, 14vw, 7rem); }
  .line-hero { grid-template-columns: 1fr; }
}

/* Inline two-column grids collapse to one column on smaller screens */
@media (max-width: 900px) {
  .stack-mobile { grid-template-columns: 1fr !important; }
  .stack-mobile > * { position: static !important; }
}

@media (max-width: 860px) {
  :root { --header-h: 66px; }
  .nav__links, .nav__cta.desktop-only { display: none; }
  /* Mobile hero: Andrew becomes a right/top-anchored cover, text overlaid at the bottom */
  .hero__subject {
    inset: 0;
    right: auto;
    height: auto;
    display: block;
  }
  .hero__subject picture { height: 100%; width: 100%; }
  .hero__subject img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 62% 12%;
    filter: grayscale(1) contrast(1.08) brightness(0.72);
    -webkit-mask-image: linear-gradient(to bottom, #000 34%, rgba(0,0,0,0) 94%);
            mask-image: linear-gradient(to bottom, #000 34%, rgba(0,0,0,0) 94%);
  }
  .hero__glow { right: auto; left: 50%; transform: translateX(-50%); top: 4%; width: 96%; height: 46%; }
  .hero__scrim {
    background:
      linear-gradient(to top, rgba(0,0,0,0.96) 12%, rgba(0,0,0,0.35) 52%, rgba(0,0,0,0.55) 100%);
  }
  .burger { display: block; }
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .sticky-result__grid { grid-template-columns: 1fr; }
  .sticky-result__stat { position: static; }
  .form__row { grid-template-columns: 1fr; }
  .radio-cards.cols { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: 1fr 1fr; }
  .stats .stat:last-child { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .product-grid { grid-template-columns: 1fr; }
  .hero__scroll { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
  .hero__actions .btn { width: 100%; }
}

/* ---------------------------------------------------------------
   22. REDUCED MOTION
   --------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .reveal-lines .line > span { transform: none !important; }
  .hero__scroll::after, .marquee__track { animation: none !important; }
  .cursor-dot, .cursor-ring { display: none !important; }
}
