/* ============================================================
   CREATIVE MARKETING DOJO — Press Play
   Brand System v1.0 · 2026
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  /* Core — clean & bright: neutral near-black on crisp near-white, red as the only signal */
  --ink:      #101012;
  --paper:    #FBFBFA;
  --red:      #DA251D;
  --blue:     #1E4FD8;
  --white:    #FFFFFF;

  /* Neutral grey scale */
  --charcoal: #1D1D20;
  --slate:    #55555C;
  --stone:    #8B8B93;
  --mist:     #E6E6E9;
  --cloud:    #F2F2F4;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(16,16,18,.05), 0 2px 8px rgba(16,16,18,.05);
  --shadow-md: 0 2px 6px rgba(16,16,18,.06), 0 12px 32px rgba(16,16,18,.10);

  /* Fonts */
  --display: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
  --text:    'Archivo', system-ui, sans-serif;
  --mono:    'Space Mono', ui-monospace, monospace;

  /* Fluid type scale */
  --fs-mono:   clamp(0.68rem, 0.62rem + 0.3vw, 0.78rem);
  --fs-body:   clamp(1rem, 0.95rem + 0.4vw, 1.18rem);
  --fs-lead:   clamp(1.25rem, 1.05rem + 1.1vw, 1.7rem);
  --fs-h3:     clamp(1.5rem, 1.2rem + 1.6vw, 2.2rem);
  --fs-h2:     clamp(2.6rem, 1.4rem + 6vw, 7rem);
  --fs-h1:     clamp(3rem, 1.4rem + 8vw, 8.5rem);
  --fs-mega:   clamp(3.8rem, 1.2rem + 14vw, 14rem);

  /* Layout */
  --gutter:    clamp(1.25rem, 1rem + 3vw, 5rem);
  --maxw:      1480px;
  --radius:    11px;

  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--text);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
::selection { background: var(--red); color: var(--white); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 4px; }

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

.mono {
  font-family: var(--mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.kicker {
  font-family: var(--mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.kicker::before {
  content: ""; width: 1.8em; height: 1px; background: var(--red);
}

.section-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: var(--fs-h2);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.section-head { margin-bottom: clamp(1.8rem, 1rem + 2.5vw, 3.4rem); }
/* Titles span the full content width so they fill the space, never a narrow column */
.section-head .section-title, .section-head .kicker { max-width: none; }
.section-title { width: 100%; }
.section-head--split {
  display: flex; flex-wrap: wrap; gap: 2rem 4rem;
  align-items: flex-end; justify-content: space-between; max-width: none;
}
/* When the title is long enough to take the full row, keep the note tucked
   to the right (matches the Reels header) instead of stranded bottom-left. */
.section-head--split .work__note { margin-left: auto; }

/* ---------- LOGO ---------- */
.logo { width: clamp(74px, 6vw, 104px); height: auto; overflow: visible; }
.logo__word {
  font-family: var(--display); font-weight: 800; font-size: 150px;
  letter-spacing: -2px; fill: var(--ink);
}
.logo__play { fill: var(--red); }
.logo--rev .logo__word { fill: var(--paper); }

/* ---------- BUTTONS ---------- */
.btn {
  --c: var(--ink);
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--mono); font-size: var(--fs-mono);
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.95em 1.5em; border-radius: 100px;
  border: 1.5px solid var(--c); color: var(--c);
  background: transparent; position: relative; overflow: hidden;
  transition: color .5s var(--ease), border-color .5s var(--ease);
  min-height: 44px;
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--c); transform: translateY(101%);
  transition: transform .5s var(--ease);
}
.btn:hover::after { transform: translateY(0); }
.btn__play { font-size: 0.85em; transition: transform .5s var(--ease); }
.btn:hover .btn__play { transform: translateX(3px); }

.btn--red { --c: var(--red); color: var(--white); border-color: var(--red); background: var(--red); }
.btn--red::after { background: var(--ink); transform: translateY(101%); }
.btn--red:hover { color: var(--white); border-color: var(--ink); }

.btn--ghost { --c: var(--ink); }
.btn--ghost:hover { color: var(--paper); }

.btn--ghost-light { --c: var(--paper); color: var(--paper); }
.btn--ghost-light::after { background: var(--paper); }
.btn--ghost-light:hover { color: var(--ink); }

.btn--lg { padding: 1.1em 1.9em; font-size: clamp(0.72rem, 0.66rem + 0.3vw, 0.84rem); }

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--ink); color: var(--paper);
  display: grid; place-items: center;
  clip-path: inset(0 0 0 0);
  transition: clip-path .85s cubic-bezier(0.76, 0, 0.24, 1);
}
.preloader--out { clip-path: inset(0 0 100% 0); pointer-events: none; }
.preloader__inner { width: min(80vw, 420px); text-align: center; }
.preloader__mark { width: 84px; margin: 0 auto 2rem; }
.preloader__mark polygon { fill: var(--red); }
.preloader__meta {
  display: flex; justify-content: space-between;
  color: var(--stone); margin-bottom: 0.8rem;
}
.preloader__bar { height: 2px; background: rgba(251,251,250,.16); overflow: hidden; }
.preloader__bar span { display: block; height: 100%; width: 0%; background: var(--red); }
body.loaded .preloader { pointer-events: none; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(1rem, 0.6rem + 1.4vw, 1.7rem) var(--gutter);
  mix-blend-mode: normal;
  transition: background .5s var(--ease), padding .5s var(--ease), transform .5s var(--ease);
}
.nav--scrolled {
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(14px) saturate(1.4);
  padding-block: clamp(0.7rem, 0.5rem + 0.8vw, 1rem);
  border-bottom: 1px solid var(--mist);
  box-shadow: 0 1px 12px rgba(16,16,18,.04);
}
.nav--hidden { transform: translateY(-105%); }
.nav__logo { z-index: 2; }

.nav__links { display: flex; gap: clamp(1.2rem, 2vw, 2.6rem); }
.nav__links a {
  font-family: var(--mono); font-size: var(--fs-mono);
  letter-spacing: 0.14em; text-transform: uppercase;
  position: relative; padding: 0.3em 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--red); transition: width .4s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
/* Legible over the dark hero before the bar gains its paper backdrop on scroll */
.nav:not(.nav--scrolled) .nav__links a { color: var(--paper); }
/* Logo is white over the dark hero (transparent bar); ink once the bar gains its paper backdrop on scroll */
.nav:not(.nav--scrolled) .nav__logo .logo__word { fill: var(--paper); }
/* Logo: white over the dark hero (transparent bar), dark once the paper backdrop appears */
.nav:not(.nav--scrolled) .logo__word { fill: var(--paper); }

.nav__burger {
  display: none; width: 44px; height: 44px; z-index: 2;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.nav__burger span { width: 26px; height: 2px; background: var(--ink); transition: transform .4s var(--ease), opacity .3s; }
body.menu-open .nav__burger span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ---------- MOBILE MENU ---------- */
.menu {
  position: fixed; inset: 0; z-index: 850;
  background: var(--ink); color: var(--paper);
  display: flex; flex-direction: column; justify-content: center; gap: 2.5rem;
  padding: var(--gutter);
  clip-path: inset(0 0 100% 0);
  transition: clip-path .7s var(--ease);
  pointer-events: none;
}
body.menu-open .menu { clip-path: inset(0 0 0% 0); pointer-events: auto; }
.menu__links { display: flex; flex-direction: column; gap: 0.6rem; }
.menu__links a {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(2.6rem, 14vw, 4.5rem); line-height: 1;
  display: flex; align-items: baseline; gap: 1rem;
}
.menu__links a span { color: var(--red); font-size: 0.9rem; }
.menu .btn { align-self: flex-start; color: var(--white); border-color: var(--white); }
.menu__foot { color: var(--stone); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column;
  padding: clamp(7rem, 4rem + 7vh, 10rem) var(--gutter) clamp(3rem, 2rem + 5vw, 6rem);
  overflow: hidden; background: var(--ink); color: var(--paper);
  isolation: isolate;
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero__poster {
  position: absolute; inset: 0; z-index: 0; opacity: 0;
  background-color: var(--ink);
  background-image:
    linear-gradient(to top, rgba(16,16,18,.92) 8%, rgba(16,16,18,.55) 45%, rgba(16,16,18,.62)),
    radial-gradient(120% 90% at 80% 12%, rgba(218,37,29,.30), transparent 55%),
    url('../assets/media/work-03.jpg');
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero::after { /* vignette + grain veil */
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(120% 120% at 50% 40%, transparent 40%, rgba(16,16,18,.55) 100%);
}
/* margin-top:auto bottom-aligns the content (editorial) but never lets it ride
   up under the nav — when content is tall it simply sits below the top padding. */
.hero__content { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin-inline: auto; margin-top: auto; }

.hero__title {
  font-family: var(--display); font-weight: 800;
  font-size: var(--fs-h1); line-height: 0.9; letter-spacing: -0.015em;
  text-transform: uppercase; margin: 0.5rem 0 1.6rem;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; }
.hero__title .line--red > span { color: var(--red); }

.hero .kicker { color: var(--red); }
.hero__sub { max-width: 46ch; font-size: var(--fs-lead); color: var(--mist); line-height: 1.4; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero__actions .btn--ghost { --c: var(--paper); color: var(--paper); }
.hero__actions .btn--ghost::after { background: var(--paper); }
.hero__actions .btn--ghost:hover { color: var(--ink); }

/* Oversized cropped play triangle */
.hero__triangle {
  position: absolute; z-index: 1; right: -6%; top: 50%; transform: translateY(-50%);
  width: clamp(280px, 42vw, 720px); aspect-ratio: 1/1; opacity: .9;
  pointer-events: none; will-change: transform;
}
.hero__triangle svg { width: 100%; height: 100%; }
.hero__triangle polygon { fill: none; stroke: var(--red); stroke-width: 0.6; }

.hero__scroll {
  position: absolute; bottom: clamp(1.5rem,3vw,2.5rem); right: var(--gutter); z-index: 2;
  display: flex; align-items: center; gap: 0.8rem; color: var(--stone);
}
.hero__scroll-line { width: 60px; height: 1px; background: var(--stone); position: relative; overflow: hidden; }
.hero__scroll-line::after {
  content:""; position:absolute; inset:0; background: var(--red);
  transform: translateX(-100%); animation: scrollLine 2.4s var(--ease) infinite;
}
@keyframes scrollLine { 0%{transform:translateX(-100%)} 50%{transform:translateX(0)} 100%{transform:translateX(100%)} }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--ink); color: var(--paper);
  padding: clamp(1rem, 0.6rem + 1vw, 1.6rem) 0; overflow: hidden;
  border-block: 1px solid var(--charcoal);
}
.marquee__track { display: flex; width: max-content; will-change: transform; animation: marquee-run 28s linear infinite; }
@keyframes marquee-run { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 4rem); line-height: 1; letter-spacing: 0.01em;
  white-space: nowrap; padding-right: 0.4em;
}
.marquee__track em { color: var(--red); font-style: normal; padding-inline: 0.3em; }

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto { position: relative; padding: clamp(3.5rem, 2.5rem + 4vw, 7rem) 0; }
.manifesto__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: end;
}
.manifesto__head {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: var(--fs-h2); line-height: 0.92; letter-spacing: -0.01em;
  max-width: 14ch; margin-bottom: 0;
}
.manifesto__body { display: grid; grid-template-columns: 1fr; gap: 1.4rem; max-width: 50ch; }
.manifesto__body p { font-size: var(--fs-lead); line-height: 1.45; }
.manifesto__tag { color: var(--red); font-size: var(--fs-mono); letter-spacing: 0.2em; line-height: 1.7; }
.red-cut {
  position: absolute; left: 0; right: 0; bottom: -1px; height: clamp(60px, 8vw, 120px);
  background: var(--red);
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 calc(100% - 0px));
  /* diagonal ~25 deg */
  clip-path: polygon(0 100%, 100% calc(100% - 46px), 100% 100%, 0 100%);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--ink); color: var(--paper); padding: clamp(5rem,4rem+8vw,10rem) 0; }
.services .kicker { color: var(--red); }
.services .section-title { color: var(--paper); }
.services__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  border-top: 1px solid var(--charcoal);
}
.service {
  padding: clamp(2rem, 1.5rem + 2vw, 3.2rem) clamp(1.2rem,2vw,2.4rem) clamp(2.2rem,3vw,3.4rem);
  border-bottom: 1px solid var(--charcoal); border-right: 1px solid var(--charcoal);
  position: relative; transition: background .5s var(--ease); overflow: hidden;
}
.service::before {
  content: ""; position: absolute; inset: 0; background: var(--red);
  transform: translateY(101%); transition: transform .55s var(--ease); z-index: 0;
}
.service:hover::before { transform: translateY(0); }
.service > * { position: relative; z-index: 1; }
.service:hover { color: var(--white); }
.service__num { color: var(--stone); display: block; margin-bottom: 2.5rem; transition: color .4s; }
.service:hover .service__num { color: var(--white); }
.service__icon { display: block; width: 48px; height: 48px; margin-bottom: 1.4rem; }
.service__icon svg { width: 100%; height: 100%; fill: none; stroke: var(--red); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: stroke .4s; }
.service__icon svg polygon { fill: var(--red); stroke: var(--red); }
.service:hover .service__icon svg { stroke: var(--white); }
.service:hover .service__icon svg polygon { fill: var(--white); stroke: var(--white); }
.service h3 { font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: var(--fs-h3); line-height: 1; margin-bottom: 0.8rem; }
.service p { color: var(--mist); max-width: 34ch; transition: color .4s; }
.service:hover p { color: var(--white); }

/* ============================================================
   WORK
   ============================================================ */
.work { padding: clamp(5rem,4rem+8vw,10rem) 0; background: var(--paper); }
.work__note { color: var(--slate); max-width: 34ch; line-height: 1.8; letter-spacing: 0.12em; text-wrap: balance; }
.work__grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(104px, 9vw, 150px);
  gap: clamp(0.7rem, 1.1vw, 1.3rem);
  max-width: 1180px;
  margin-bottom: clamp(1.5rem, 3vw, 3.25rem);
}
.work__item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--cloud); grid-column: span 4; grid-row: span 2;
  border: 1px solid var(--mist);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .5s var(--ease), transform .5s var(--ease);
}
.work__item:hover { box-shadow: var(--shadow-md); }
.work__item--feature { grid-column: span 4; grid-row: span 4; }
.work__item--tall { grid-column: span 4; grid-row: span 4; }
.work__item--wide { grid-column: span 4; grid-row: span 2; }
/* Captioned video: anchor the crop to the bottom so baked-in captions are never cut */
.work__item--tall .work__vid { object-position: center bottom; }
.work__media { width: 100%; height: 100%; overflow: hidden; }
.work__media img, .work__media video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease), filter .8s var(--ease);
  filter: saturate(1.02) contrast(1.04);
}
.work__item:hover .work__media img, .work__item:hover .work__media video { transform: scale(1.05); }

/* Video sound toggle */
.vid-sound {
  position: absolute; top: clamp(.65rem, 1.2vw, 1rem); right: clamp(.65rem, 1.2vw, 1rem); z-index: 3;
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: color-mix(in srgb, var(--ink) 55%, transparent); backdrop-filter: blur(6px);
  border: 1px solid rgba(251,251,250,.28); color: var(--paper); cursor: pointer;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.vid-sound:hover { background: var(--red); transform: scale(1.06); }
.vid-sound:focus-visible { outline: 2px solid var(--paper); outline-offset: 2px; }
.vid-sound svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.vid-sound svg polygon { fill: currentColor; stroke: currentColor; }
.vid-sound__on { display: none; }
.vid-sound:not(.is-muted) .vid-sound__muted { display: none; }
.vid-sound:not(.is-muted) .vid-sound__on { display: block; }
.work__item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem;
  padding: clamp(1rem,2vw,1.6rem);
  background: linear-gradient(to top, rgba(16,16,18,.85), transparent);
  color: var(--paper);
  transform: translateY(0); opacity: 1;
}
.work__tag {
  background: var(--red); color: var(--white);
  padding: 0.4em 0.7em; border-radius: 6px; letter-spacing: 0.14em;
}
.work__caption { font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: clamp(1rem,2.4vw,1.5rem); line-height: 1; text-align: right; }

/* ============================================================
   METHOD (pinned horizontal)
   ============================================================ */
/* ============================================================
   REELS
   ============================================================ */
.reels { background: var(--ink); color: var(--paper); padding: clamp(4rem,3rem+5vw,7.5rem) 0; overflow: hidden; }
.reels .kicker { color: var(--red); }
.reels .section-title { color: var(--paper); }
.reels .work__note { color: var(--stone); }
.reels__row {
  display: flex; gap: clamp(1rem,2vw,1.6rem);
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 1.2rem; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--slate) transparent;
}
.reels__row::-webkit-scrollbar { height: 6px; }
.reels__row::-webkit-scrollbar-thumb { background: var(--charcoal); border-radius: 3px; }
.reel-card {
  position: relative; flex: 0 0 clamp(240px, 62vw, 300px);
  aspect-ratio: 9/16; border-radius: var(--radius); overflow: hidden;
  scroll-snap-align: start; background: var(--charcoal);
}
.reel-card--feature { flex-basis: clamp(264px, 68vw, 340px); }
.reel-video {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.02) contrast(1.04);
  transition: transform .8s var(--ease);
}
.reel-card:hover .reel-video { transform: scale(1.05); }
.reel-card figcaption {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  display: flex; align-items: flex-end; justify-content: space-between; gap: .6rem;
  padding: clamp(.8rem,1.5vw,1.2rem);
  background: linear-gradient(to top, rgba(16,16,18,.85), transparent);
}
.reel-card .work__caption { text-align: right; font-size: clamp(.95rem,2vw,1.2rem); }
.reel-card--cta {
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  gap: 1rem; padding: clamp(1.4rem,2.4vw,2rem); text-decoration: none;
  border: 1px solid var(--charcoal); background: var(--ink);
}
.reel-cta__label { color: var(--stone); }
.reel-cta__head { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: clamp(1.7rem,4.5vw,2.6rem); line-height: .92; color: var(--paper); }
.reel-card--cta .btn { color: var(--white); pointer-events: none; }

.method { background: var(--ink); color: var(--paper); padding: clamp(4rem,3rem+5vw,7.5rem) 0; overflow: hidden; }
.method .kicker { color: var(--red); }
.method .section-title { color: var(--paper); }
.method__intro { margin-bottom: clamp(2rem,4vw,3.5rem); }
.method__viewport { width: 100%; }
.method__track {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter);
}
.step {
  padding: clamp(1.8rem,2.5vw,2.8rem) clamp(1.2rem,1.8vw,2rem);
  border-top: 1px solid var(--charcoal); border-left: 1px solid var(--charcoal);
}
.step:first-child { border-left: none; }
.step__num {
  font-family: var(--display); font-weight: 800; font-size: clamp(3.6rem, 6vw, 7rem);
  line-height: 0.8; color: transparent; -webkit-text-stroke: 1.5px var(--slate);
  display: block; margin-bottom: clamp(1.6rem,3vw,2.6rem); transition: -webkit-text-stroke .4s;
}
.step:hover .step__num { -webkit-text-stroke: 1.5px var(--red); }
.step h3 { font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: var(--fs-h3); margin: 0 0 0.8rem; }
.step p { color: var(--mist); max-width: 32ch; }

/* ============================================================
   PROMISE
   ============================================================ */
.promise { padding: clamp(5rem,4rem+8vw,10rem) 0; }
.promise__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,220px),1fr));
  gap: 0; border-top: 1px solid var(--mist);
}
.principle { padding: clamp(2rem,3vw,3rem) 0 clamp(2rem,3vw,3rem); border-bottom: 1px solid var(--mist); padding-right: 2rem; }
.principle h3 {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: var(--fs-h3); margin-bottom: 0.8rem; position: relative; padding-left: 1.4rem;
}
.principle h3::before { content:""; position:absolute; left:0; top:0.18em; width:0; height:0; border-style:solid; border-width: 0.42em 0 0.42em 0.6em; border-color: transparent transparent transparent var(--red); }
.principle p { color: var(--slate); max-width: 28ch; }

.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,220px),1fr));
  gap: 2rem; margin-top: clamp(3rem,5vw,5rem);
  border-top: 2px solid var(--ink); padding-top: clamp(2.5rem,4vw,4rem);
}
.stat { display: flex; flex-direction: column; gap: 0.6rem; }
.stat__num { font-family: var(--display); font-weight: 800; font-size: clamp(2.2rem,5vw,4rem); line-height: 0.9; color: var(--blue); }
.stat__label { color: var(--slate); letter-spacing: 0.16em; }

/* ============================================================
   CTA
   ============================================================ */
.cta { position: relative; background: var(--ink); color: var(--paper); padding: clamp(7rem,6rem+9vw,14rem) 0 clamp(5rem,4rem+6vw,9rem); overflow: hidden; }
.cta__cut { position: absolute; top: -1px; left: 0; right: 0; height: clamp(60px,8vw,120px); background: var(--red); clip-path: polygon(0 0, 100% 0, 100% 0, 0 46px); }
.cta .kicker { color: var(--red); }
.cta__head {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: var(--fs-mega); line-height: 0.86; letter-spacing: -0.02em; margin-bottom: 2.5rem;
}
.cta__head span { display: block; }
.cta__head--red { color: var(--red); }
.cta__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--mist); padding: clamp(3rem,3vw,5rem) 0 2rem; border-top: 1px solid var(--charcoal); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem; padding-bottom: clamp(3rem,5vw,5rem); }
.footer__brand .logo { width: 120px; margin-bottom: 1.4rem; }
.footer__name { font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: 1.3rem; color: var(--paper); }
.footer__desc { max-width: 32ch; color: var(--stone); margin-top: 0.5rem; }
.footer__nav { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__col-h { color: var(--stone); margin-bottom: 0.6rem; }
.footer__nav a { width: fit-content; position: relative; }
.footer__nav a:not(.footer__col-h):hover { color: var(--red); }
.footer__base {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding-top: 2rem; border-top: 1px solid var(--charcoal); color: var(--stone);
}
.footer__top:hover { color: var(--red); }

/* ============================================================
   ANIMATION PRIMITIVES (JS-driven via GSAP; CSS fallback states)
   ============================================================ */
.reveal, .reveal-line { will-change: transform, opacity; }

/* Pre-init hidden states (only when JS active) to avoid flash before GSAP */
.js .hero__title .line > span { transform: translateY(115%); }
.js .hero .reveal-line { opacity: 0; }
/* settled end-state wins (equal specificity, later source order) */
.hero__title.is-in .line > span { transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .method__track { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(odd) { border-left: none; }
}

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  /* Mobile: single-column stack with true per-card aspect ratios (no bento gaps, no video crop) */
  .work__grid { grid-template-columns: 1fr; grid-auto-rows: auto; max-width: none; gap: clamp(0.9rem, 2.5vw, 1.4rem); }
  .work__item, .work__item--feature, .work__item--tall, .work__item--wide { grid-column: auto; grid-row: auto; }
  .work__media { height: auto; aspect-ratio: 4 / 5; }
  .work__item--feature .work__media, .work__item--tall .work__media { aspect-ratio: 9 / 16; }
  .work__item--wide .work__media { aspect-ratio: 16 / 9; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero__content { margin-block: auto; }   /* vertically center on mobile */
  .hero__triangle { opacity: .5; right: -20%; }
}

@media (max-width: 768px) {
  .manifesto__grid { grid-template-columns: 1fr; gap: 1.6rem; align-items: start; }
  .manifesto__head { max-width: 100%; }
}

@media (max-width: 560px) {
  .method__track { grid-template-columns: 1fr; }
  .step { border-left: none; }
  .step:first-child { border-top: 1px solid var(--charcoal); }
}

@media (max-width: 560px) {
  .hero__scroll { display: none; }
  .section-head--split { gap: 1.2rem; }
  .work__note { max-width: none; }
  .cta__actions .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .hero__canvas { display: none; }
  .hero__poster { opacity: 1; }
  .hero__title .line > span, .hero .reveal-line { transform: none !important; opacity: 1 !important; }
  .marquee__track { animation: none !important; }
}
