/* ═══════════════════════════════════════════════════════════════
   ARTIS BULLS — premium personal trainer site
   Dark editorial · oversized condensed type · brand red accent
   Built for one client. Not a template.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg:        #0A0A0A;
  --bg-2:      #111111;
  --bg-3:      #161616;
  --line:      #222222;
  --line-2:    #2E2E2E;
  --text:      #F4F1EC;
  --text-dim:  #8E8A84;
  --text-mid:  #B8B3AB;
  --red:       #E63232;
  --red-2:     #FF3A3A;
  --red-deep:  #B81C1C;
  --red-glow:  rgba(230, 50, 50, 0.55);
  --on-red:    #FFFFFF;
  --max:       1440px;
  --gut:       clamp(20px, 4vw, 56px);
  --radius:    14px;
  --ease:      cubic-bezier(.2, .65, .25, 1);
  --ease-out:  cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
*::selection { background: var(--red); color: var(--on-red); }

html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-x: clip;
}

main.page { display: block; max-width: 100vw; overflow-x: clip; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

/* ── Typography helpers ───────────────────────── */
.h-display {
  font-family: 'Bebas Neue', 'Anton', Impact, sans-serif;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 0.92;
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 6.4rem);
  text-transform: uppercase;
}
.h-display .line { display: block; }
.accent { color: var(--red); }
.accent em { font-style: normal; color: var(--red-2); }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 26px;
}
.kicker::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red-glow);
}

/* ═══════════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  z-index: 50;
  width: min(calc(100% - 32px), 1240px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px 14px 12px 20px;
  background: rgba(10, 10, 10, 0.62);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  transition: transform .5s var(--ease), background .5s var(--ease), border-color .5s var(--ease);
}
.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.92);
  border-color: rgba(230, 50, 50, 0.22);
}
.nav__brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--text);
}
.nav__mark { width: 28px; height: 28px; color: var(--red); flex-shrink: 0; }
.nav__wordmark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 0.04em; line-height: 1;
  display: inline-flex;
}
.nav__bull { color: var(--red); }

.nav__links {
  justify-self: center;
  display: flex; gap: 30px;
  font-size: 13.5px; font-weight: 500;
  color: var(--text-dim);
}
.nav__links a {
  position: relative;
  padding: 6px 0;
  transition: color .3s var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease-out);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px 11px 20px;
  background: var(--red);
  color: var(--on-red);
  font-weight: 600; font-size: 13px;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: transform .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
  box-shadow: 0 8px 24px -10px var(--red-glow);
}
.nav__cta svg { width: 14px; height: 14px; }
.nav__cta:hover {
  background: var(--red-2);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -10px var(--red-glow);
}

@media (max-width: 820px) {
  .nav { gap: 12px; padding: 10px 12px 10px 16px; }
  .nav__links { display: none; }
  .nav__cta span { display: none; }
  .nav__cta { padding: 10px 12px; min-height: 44px; min-width: 44px; }
  .nav__cta svg { width: 16px; height: 16px; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO — animated gradient mesh + ken-burns + duotone overlay
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(150px, 22vh, 220px) var(--gut) clamp(64px, 10vh, 120px);
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  overflow-x: clip;
  isolation: isolate;
}
/* Reserve right-side space for the stat tower at all widths >= 420px */
@media (min-width: 420px) {
  .hero { padding-right: clamp(180px, 44vw, 500px); }
  .hero__topline,
  .hero__titlewrap,
  .hero__sub,
  .hero__ctas,
  .hero__meta { max-width: 100%; }
  .hero__sub { max-width: 56ch; }
}
@media (min-width: 1101px) {
  .hero { padding-right: clamp(400px, 32vw, 480px); }
}
.hero__bg {
  position: absolute; inset: 0; z-index: -3;
}
.hero__bg img,
.hero__bg video {
  width: 100%; height: 100%; object-fit: cover;
  /* IG reel (9:16) cropped to wide hero — keep face higher in frame */
  object-position: center 15%;
  /* Darker, higher contrast so massive headline pops over bg */
  filter: contrast(1.22) saturate(0.62) brightness(0.46);
  transform: scale(1.14);
  transform-origin: center 22%;
  will-change: transform;
  animation: ken-burns 26s var(--ease) infinite alternate;
}

/* Red+black duotone wash — sits between video and mesh */
.hero__duotone {
  position: absolute; inset: 0; z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(120% 80% at 20% 20%, rgba(140, 16, 16, 0.55) 0%, transparent 60%),
    radial-gradient(120% 100% at 80% 100%, rgba(0, 0, 0, 0.85) 0%, transparent 60%),
    linear-gradient(180deg, rgba(10,10,10,0.10) 0%, rgba(10,10,10,0.55) 70%, rgba(10,10,10,0.92) 100%);
  mix-blend-mode: multiply;
  opacity: 0.95;
}
@keyframes ken-burns {
  0%   { transform: scale(1.14) translate3d(0, 0, 0); }
  100% { transform: scale(1.22) translate3d(-1.5%, -2%, 0); }
}
@media (max-width: 720px) {
  .hero__bg img,
  .hero__bg video {
    object-position: center 8%;
    transform: scale(1.20);
  }
}

/* Animated gradient mesh — GPU accelerated, ~30s loop */
.hero__mesh {
  position: absolute; inset: -10%; z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(38% 32% at 18% 24%, rgba(230, 50, 50, 0.32) 0%, transparent 70%),
    radial-gradient(42% 36% at 82% 78%, rgba(230, 50, 50, 0.20) 0%, transparent 70%),
    radial-gradient(34% 28% at 65% 18%, rgba(255, 80, 80, 0.18) 0%, transparent 70%),
    radial-gradient(28% 24% at 14% 80%, rgba(120, 18, 18, 0.34) 0%, transparent 70%);
  filter: blur(40px);
  will-change: transform, opacity;
  animation: mesh-drift 32s var(--ease) infinite;
  mix-blend-mode: screen;
  opacity: 0.8;
}
@keyframes mesh-drift {
  0%   { transform: translate3d(0, 0, 0)     rotate(0deg)   scale(1.0); }
  25%  { transform: translate3d(2%, -3%, 0)  rotate(2deg)   scale(1.06); }
  50%  { transform: translate3d(-3%, 2%, 0)  rotate(-1deg)  scale(1.1); }
  75%  { transform: translate3d(1%, 3%, 0)   rotate(1.5deg) scale(1.05); }
  100% { transform: translate3d(0, 0, 0)     rotate(0deg)   scale(1.0); }
}

/* Duotone (black + brand red) overlay */
.hero__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.18) 38%, rgba(10,10,10,0.92) 100%),
    linear-gradient(100deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.10) 50%, rgba(120, 8, 8, 0.22) 100%);
}
.hero__grain {
  position: absolute; inset: 0; z-index: -1;
  opacity: 0.13; pointer-events: none; mix-blend-mode: overlay;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence baseFrequency='1.05' numOctaves='3' stitchTiles='stitch' /><feColorMatrix values='0 0 0 0 1   0 0 0 0 1   0 0 0 0 1   0 0 0 1.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.85'/></svg>");
  animation: grain-shift 1.6s steps(6) infinite;
}
@keyframes grain-shift {
  0%   { transform: translate3d(0, 0, 0); }
  20%  { transform: translate3d(-1%, 1%, 0); }
  40%  { transform: translate3d(1%, -1%, 0); }
  60%  { transform: translate3d(-1%, -1%, 0); }
  80%  { transform: translate3d(1%, 1%, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

/* Edge-to-edge magazine masthead strip — top of hero */
.hero__strip {
  position: absolute;
  top: clamp(80px, 12vh, 110px);
  left: 0; right: 0;
  z-index: 4;
  display: flex; flex-direction: column; align-items: stretch;
  gap: 8px;
  pointer-events: none;
  padding: 0;
  overflow: hidden;
}
.hero__strip-rule {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(244,241,236,0.32) 8%, rgba(244,241,236,0.32) 92%, transparent 100%);
}
.hero__strip-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(8px, 2vw, 18px);
  padding: 0 var(--gut);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: clamp(9px, 0.85vw, 11px);
  letter-spacing: 0.34em;
  color: rgba(244,241,236,0.74);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
}
.hero__strip-row > span:not(.hero__strip-sep) {
  flex: 0 1 auto; min-width: 0;
  overflow: hidden; text-overflow: ellipsis;
}
.hero__strip-sep {
  color: var(--red);
  flex: 0 0 auto;
}
@media (max-width: 720px) {
  .hero__strip { top: clamp(64px, 9vh, 86px); }
  .hero__strip-row { font-size: 8px; letter-spacing: 0.22em; gap: 6px; }
}
@media (max-width: 540px) {
  .hero__strip-row {
    /* Drop middle separators visually by reducing gap; keep all words readable */
    font-size: 7.5px; letter-spacing: 0.18em; gap: 5px;
  }
  .hero__strip-sep { opacity: 0.55; }
}

.hero__topline {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--text-mid);
  text-transform: uppercase;
  margin-bottom: clamp(28px, 5vh, 48px);
}
.hero__topline .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(230,50,50,0.18);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230,50,50,0.55); }
  50%      { box-shadow: 0 0 0 10px rgba(230,50,50,0); }
}

/* Layered hero title — massive ghost masthead behind, mega per-line treatment in front */
.hero__titlewrap {
  position: relative;
  margin: 0 0 clamp(20px, 3vh, 36px);
  isolation: isolate;
  /* Don't let the ghost masthead spill horizontally on tablets */
  overflow: visible;
}
.hero__ghost {
  position: absolute;
  left: -0.04em;
  top: 50%;
  transform: translate(0, -52%);
  z-index: -1;
  pointer-events: none;
  font-family: 'Anton', 'Bebas Neue', Impact, sans-serif;
  /* Bigger magazine-masthead scale, but still contained — capped at 22rem */
  font-size: clamp(7rem, 22vw, 22rem);
  line-height: 0.78;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(255,255,255,0.06);
  opacity: 0;
  transition: opacity 1.4s var(--ease-out) 0.4s, transform 1.4s var(--ease-out) 0.4s;
  transform: translate(0, -46%);
}
.hero__ghost span {
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(230,50,50,0.18);
}
.hero__titlewrap.is-in .hero__ghost { opacity: 1; transform: translate(0, -52%); }

/* Tablet (≤720px) — shrink ghost so it never spills the viewport horizontally */
@media (max-width: 720px) {
  .hero__ghost {
    font-size: clamp(4rem, 18vw, 8rem);
    -webkit-text-stroke-width: 1px;
    opacity: 0.5;
    /* Belt + suspenders: clamp horizontally */
    max-width: 100vw;
    overflow: hidden;
  }
  .hero__titlewrap.is-in .hero__ghost { opacity: 0.5; }
}
@media (max-width: 540px) {
  /* Hide ghost entirely on phones — already too cramped to add value */
  .hero__ghost { display: none !important; }
}

.hero__title {
  position: relative;
  font-family: 'Bebas Neue', 'Anton', Impact, sans-serif;
  font-size: clamp(3rem, 9.4vw, 8.8rem);
  line-height: 0.88;
  letter-spacing: -0.01em;
  margin: 0;
  text-transform: uppercase;
  max-width: 1200px;
  /* Subtle text-shadow to lift over ghost layer */
  text-shadow: 0 2px 0 rgba(0,0,0,0.4);
}

/* MEGA editorial treatment — magazine cover scale */
.hero__title--mega {
  font-family: 'Anton', 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(64px, 12vw, 180px);
  line-height: 0.86;
  letter-spacing: -0.025em;
  font-weight: 400;
  max-width: none;
  text-shadow: none;
}
/* Mega lines need horizontal breathing room for the per-line drop-shadow on
   line--shadow. Keep `.line` clipping the kinetic rise vertically — but add
   horizontal padding via negative margin so the drop-shadow isn't clipped on
   the right edge. */
.hero__title--mega .line {
  padding: 0.06em 0 0.12em;
  position: relative;
  /* The word kinetic rise needs vertical clip — keep overflow:hidden on .line.
     The drop-shadow on line--shadow will be partially clipped at the very
     bottom edge — acceptable trade-off, and the shadow extends mostly to the
     right where horizontal overflow is fine. */
}
.hero__title--mega .line--shadow {
  /* This line uses text-shadow with bottom-right offset — give it room below
     by adding extra bottom padding so the shadow is not clipped. */
  padding-bottom: 0.22em;
}

/* Per-line magazine layered treatments */
.hero__title--mega .line--outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(244,241,236,0.96);
  text-shadow:
    0 2px 0 rgba(0,0,0,0.45),
    0 0 38px rgba(0,0,0,0.55);
}
.hero__title--mega .line--filled {
  color: var(--red);
  -webkit-text-stroke: 0;
  /* Slight horizontal nudge — magazine off-axis layering */
  margin-left: clamp(8px, 1.4vw, 28px);
  text-shadow:
    0 2px 0 rgba(0,0,0,0.55),
    0 18px 60px rgba(184, 28, 28, 0.45);
}
.hero__title--mega .line--shadow {
  color: transparent;
  -webkit-text-stroke: 2px rgba(244,241,236,0.96);
  /* Red drop-shadow under the outline — editorial layered look */
  text-shadow:
    6px 6px 0 rgba(230, 50, 50, 0.92),
    12px 12px 0 rgba(184, 28, 28, 0.55),
    0 0 60px rgba(0,0,0,0.6);
}

/* Phone — keep mega scale but contained: clamp(48px, 12vw, 90px) per spec */
@media (max-width: 540px) {
  .hero__title--mega {
    font-size: clamp(48px, 12vw, 90px);
    line-height: 0.92;
    letter-spacing: -0.015em;
  }
  .hero__title--mega .line--filled { margin-left: 4px; }
  .hero__title--mega .line--outline,
  .hero__title--mega .line--shadow {
    -webkit-text-stroke-width: 1.4px;
  }
  .hero__title--mega .line--shadow {
    text-shadow:
      3px 3px 0 rgba(230, 50, 50, 0.92),
      6px 6px 0 rgba(184, 28, 28, 0.55);
  }
}
@media (max-width: 360px) {
  .hero__title--mega { font-size: clamp(42px, 13vw, 64px); }
}

.hero__title .line { display: block; overflow: hidden; padding: 0.04em 0; }
.hero__title em { font-style: italic; color: var(--red-2); }

/* Kinetic letter-rise */
.hero__title .word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 1.1s var(--ease-out), opacity 1.1s var(--ease-out);
}
.hero__title.is-in .word,
.hero__titlewrap.is-in .hero__title .word { transform: translateY(0); opacity: 1; }
.hero__title.is-in .line:nth-child(2) .word,
.hero__titlewrap.is-in .hero__title .line:nth-child(2) .word { transition-delay: 0.18s; }
.hero__titlewrap.is-in .hero__title .line:nth-child(3) .word { transition-delay: 0.36s; }

.hero__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.32rem);
  line-height: 1.5;
  color: var(--text);
  max-width: 620px;
  margin: 0 0 clamp(28px, 4vh, 44px);
  font-weight: 400;
}

.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: clamp(48px, 8vh, 88px);
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 720px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}
.hero__meta > div { display: flex; flex-direction: column; gap: 4px; }
.meta__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  color: var(--red);
  letter-spacing: 0.02em;
  line-height: 1;
}
.meta__lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute;
  bottom: 28px; right: var(--gut);
  display: flex; align-items: center; gap: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; letter-spacing: 0.24em;
  color: var(--text-dim);
}
.hero__scrollbar {
  position: relative;
  width: 60px; height: 1px;
  background: rgba(255,255,255,0.18);
  overflow: hidden;
}
.hero__scrollfill {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 30%; background: var(--red);
  animation: scroll-loop 2.4s var(--ease) infinite;
}
@keyframes scroll-loop {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(330%); }
}

@media (max-width: 720px) {
  /* Keep 3-col proportional — don't drop the third stat */
  .hero__meta { gap: clamp(8px, 2vw, 16px); padding-top: 16px; }
  .hero__scroll { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO STAT TOWER — right-side editorial panel
   ═══════════════════════════════════════════════════════════════ */
.hero__stack {
  position: absolute;
  right: clamp(24px, 4vw, 56px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(240px, 22vw, 340px);
  display: grid;
  gap: 10px;
  z-index: 3;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: linear-gradient(
    180deg,
    rgba(15, 14, 13, 0.55) 0%,
    rgba(15, 14, 13, 0.78) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 30px 60px -30px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(230, 50, 50, 0.06) inset;
}

/* Editorial variant — less "card", more tabular print */
.hero__stack.hero__stack--editorial {
  width: clamp(260px, 24vw, 380px);
  padding: 22px 4px 22px 22px;
  border: 0;
  border-left: 1px solid rgba(244,241,236,0.18);
  border-radius: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 8, 8, 0.30) 0%,
    rgba(8, 8, 8, 0.55) 100%
  );
  box-shadow: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  gap: 4px;
}
.hero__stack--editorial::before {
  content: '';
  position: absolute;
  left: -1px; top: 0;
  width: 3px; height: 64px;
  background: var(--red);
}
.hero__stack--editorial .hero__stack-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  padding: 14px 0 12px;
  border-bottom: 1px solid rgba(244,241,236,0.08);
}
.hero__stack--editorial .hero__stack-num {
  font-family: 'Anton', 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 4vw, 72px);
  letter-spacing: -0.02em;
  line-height: 0.9;
  color: #F4F2EE;
}
.hero__stack--editorial .hero__stack-num sup {
  font-size: 0.42em;
  color: var(--red);
  vertical-align: super;
}
.hero__stack--editorial .hero__stack-num small {
  font-size: 0.28em;
  color: rgba(244,242,238,0.6);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-left: 6px;
}
.hero__stack--editorial .hero__stack-lbl {
  font-size: 9.5px;
  letter-spacing: 0.2em;
  color: rgba(244,242,238,0.5);
}
.hero__stack--editorial .hero__stack-head {
  border-bottom: 1px solid rgba(244,241,236,0.18);
  padding-bottom: 12px;
  margin-bottom: 0;
  color: var(--red);
  font-size: 10px;
  letter-spacing: 0.3em;
}
.hero__stack--editorial .hero__stack-mono {
  font-family: 'Anton', 'Bebas Neue', sans-serif;
  font-size: clamp(20px, 1.6vw, 28px);
  line-height: 1.05;
  letter-spacing: 0;
}
.hero__stack--editorial .hero__stack-pulse {
  margin-top: 10px;
  background: transparent;
  border: 1px dashed rgba(230,50,50,0.45);
  border-radius: 0;
  padding: 9px 12px;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--red);
  text-transform: uppercase;
}
.hero__stack--editorial .hero__stack-live {
  background: var(--red);
}
.hero__stack-head {
  display: flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(230, 50, 50, 0.95);
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.10);
  margin-bottom: 4px;
}
.hero__stack-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red, #E63232);
  box-shadow: 0 0 0 0 rgba(230, 50, 50, 0.7);
  animation: hero-stack-pulse 2.4s var(--ease, ease) infinite;
}
@keyframes hero-stack-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(230, 50, 50, 0.65); }
  70%  { box-shadow: 0 0 0 10px rgba(230, 50, 50, 0);    }
  100% { box-shadow: 0 0 0 0   rgba(230, 50, 50, 0);    }
}
.hero__stack-card {
  display: grid;
  gap: 4px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.hero__stack-card:last-of-type { border-bottom: 0; }
.hero__stack-num {
  font-family: 'Bebas Neue', 'Anton', sans-serif;
  font-size: clamp(34px, 3vw, 44px);
  line-height: 1;
  color: #F4F2EE;
  letter-spacing: 0.005em;
}
.hero__stack-num sup {
  font-size: 0.55em;
  font-weight: 600;
  color: var(--red, #E63232);
  vertical-align: super;
  margin-left: 2px;
}
.hero__stack-num small {
  font-size: 0.35em;
  font-weight: 600;
  color: rgba(244, 242, 238, 0.55);
  letter-spacing: 0.04em;
  margin-left: 4px;
}
.hero__stack-mono {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 13px;
  line-height: 1.45;
  color: #F4F2EE;
  letter-spacing: 0.02em;
}
.hero__stack-card--mono { padding-top: 12px; }
.hero__stack-lbl {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 242, 238, 0.45);
}
.hero__stack-pulse {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px;
  margin-top: 6px;
  background: rgba(230, 50, 50, 0.10);
  border: 1px solid rgba(230, 50, 50, 0.22);
  border-radius: 8px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(244, 242, 238, 0.92);
}
.hero__stack-live {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red, #E63232);
  box-shadow: 0 0 8px rgba(230, 50, 50, 0.8);
  animation: hero-stack-pulse 1.6s var(--ease, ease) infinite;
}

/* Tablet — keep absolute, scale down */
@media (max-width: 1100px) and (min-width: 420px) {
  .hero__stack {
    width: clamp(160px, 38vw, 260px);
    right: clamp(14px, 3vw, 32px);
    padding: 14px;
    gap: 8px;
  }
  .hero__stack-num { font-size: clamp(22px, 4.4vw, 36px); }
  .hero__stack-mono { font-size: clamp(11px, 1.6vw, 13px); }
  .hero__stack-pulse { font-size: clamp(9.5px, 1.4vw, 11px); padding: 8px 10px; }
  .hero__stack-head { font-size: 9.5px; }
  .hero__stack-lbl { font-size: 9px; }
}
/* Phone (≤540px) — collapse stat tower to static glass card below meta.
   Kills the right-side reservation so headline/lede/CTAs use full width. */
@media (max-width: 540px) {
  .hero__stack {
    position: static;
    transform: none;
    width: auto;
    max-width: 100%;
    margin: 22px 0 0;
    padding: 14px 16px;
    gap: 8px;
    border-radius: 12px;
    /* Keep glass styling exactly as desktop — backdrop-filter + gradient + shadow */
  }
  /* Editorial tower on phone — drop the left-rule + give it a glass card frame */
  .hero__stack.hero__stack--editorial {
    border: 1px solid rgba(244,241,236,0.10);
    border-left: 2px solid var(--red);
    border-radius: 10px;
    padding: 14px 16px;
    background: linear-gradient(180deg, rgba(15,14,13,0.55) 0%, rgba(15,14,13,0.78) 100%);
  }
  .hero__stack--editorial::before { display: none; }
  .hero__stack-head { font-size: 9px; padding-bottom: 8px; margin-bottom: 2px; }
  .hero__stack-card { padding: 8px 0; }
  .hero__stack-num { font-size: 28px; }
  .hero__stack--editorial .hero__stack-num { font-size: 36px; }
  .hero__stack-mono { font-size: 12px; line-height: 1.4; }
  .hero__stack--editorial .hero__stack-mono { font-size: 18px; line-height: 1.1; }
  .hero__stack-lbl { font-size: 9px; letter-spacing: 0.12em; }
  .hero__stack-pulse { font-size: 10px; padding: 8px 10px; }
  .hero__stack--editorial .hero__stack-pulse { font-size: 9.5px; padding: 7px 10px; }
}

/* ── Reveal init ─────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════════════
   SECTION DIVIDER — aurora sweep
   ═══════════════════════════════════════════════════════════════ */
.divider {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--line-2) 30%, var(--red) 50%, var(--line-2) 70%, transparent 100%);
  overflow: visible;
}
.divider::before {
  content: '';
  position: absolute; left: 0; right: 0; top: -40px; bottom: -40px;
  background:
    radial-gradient(50% 100% at 50% 50%, rgba(230, 50, 50, 0.10) 0%, transparent 60%);
  pointer-events: none;
}
.divider svg {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 28px; height: 28px;
  background: var(--bg);
  padding: 0 8px;
  color: var(--red);
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn {
  --pad-y: 16px;
  --pad-x: 22px;
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform .35s var(--ease-out), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
  white-space: nowrap;
  overflow: hidden;
  min-height: 44px;
}
.btn__arrow {
  display: inline-flex;
  transition: transform .35s var(--ease-out);
}
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

.btn--gold,
.btn--red {
  background: var(--red);
  color: var(--on-red);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 -1px 0 rgba(0,0,0,0.22) inset,
    0 14px 32px -12px var(--red-glow);
}
.btn--gold:hover,
.btn--red:hover {
  background: var(--red-2);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.22) inset,
    0 -1px 0 rgba(0,0,0,0.22) inset,
    0 22px 44px -14px var(--red-glow);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.22);
}
.btn--ghost svg { width: 18px; height: 18px; }
.btn--ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.btn--xl {
  --pad-y: 22px;
  --pad-x: 32px;
  font-size: 17px;
}
.btn--block { width: 100%; justify-content: space-between; }

/* ═══════════════════════════════════════════════════════════════
   TICKER
   ═══════════════════════════════════════════════════════════════ */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  padding: 18px 0;
  overflow: hidden;
  overflow-x: clip;
  max-width: 100vw;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(20px, 2.6vw, 30px);
  letter-spacing: 0.06em;
  color: var(--text);
  text-transform: uppercase;
}
.ticker__track {
  display: inline-flex; gap: 32px;
  white-space: nowrap;
  animation: ticker 38s linear infinite;
}
.ticker__sep { color: var(--red); }
.ticker:hover .ticker__track { animation-play-state: paused; }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════
   PROOF
   ═══════════════════════════════════════════════════════════════ */
.proof {
  padding: clamp(80px, 14vh, 160px) var(--gut);
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.proof__head { max-width: 880px; margin-bottom: clamp(48px, 8vh, 96px); }
.proof__head .h-display {
  font-size: clamp(2.6rem, 8vw, 7.2rem);
}
.proof__head .h-display .accent { color: var(--red); }
.proof__lead {
  margin-top: 28px;
  font-size: clamp(1.05rem, 1.3vw, 1.22rem);
  color: var(--text-mid);
  max-width: 640px;
  line-height: 1.6;
}

.proof__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.proof__shot {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--bg-2);
  aspect-ratio: 1 / 1;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.7), 0 0 0 1px var(--line);
}
.proof__shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 1.2s var(--ease-out);
}
.proof__shot:hover img { transform: scale(1.04); }
.proof__shot::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.7) 100%);
}
.proof__shot figcaption {
  position: absolute; left: 18px; bottom: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--text); text-transform: uppercase;
  z-index: 2;
  display: flex; align-items: center; gap: 8px;
}
.proof__shot figcaption::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red-glow);
}

.stats { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 28px; }
.stats li {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  align-items: baseline;
  gap: 8px 16px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.stats li:last-child { border-bottom: none; }
.stats__from {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--text-dim);
  text-decoration: line-through;
  text-decoration-color: rgba(230,50,50,0.6);
  text-decoration-thickness: 2px;
  line-height: 1;
}
.stats__arrow {
  width: 28px; height: 28px;
  color: var(--red);
  align-self: center;
}
.stats__to {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  color: var(--red);
  line-height: 1;
}
.stats__lbl {
  grid-column: 1 / -1;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-top: 4px;
}
.stats__bar {
  grid-column: 1 / -1;
  display: block;
  height: 2px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.stats__fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0;
  background: linear-gradient(90deg, var(--red), var(--red-2));
  box-shadow: 0 0 12px var(--red-glow);
  transition: width 1.4s var(--ease-out);
}
.stats__bar.is-in .stats__fill { width: var(--target, 0%); }

.proof__quote {
  margin: clamp(48px, 7vh, 80px) 0 0;
  padding: 32px 36px;
  border-left: 2px solid var(--red);
  background: var(--bg-2);
  font-size: clamp(1.05rem, 1.4vw, 1.32rem);
  color: var(--text);
  font-style: italic;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: 'Source Serif Pro', 'Georgia', serif;
}
.proof__quote em { color: var(--text); font-style: italic; }
.proof__quote span {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--text-dim);
  text-transform: uppercase;
}

@media (max-width: 880px) {
  /* Keep 2-col proportional, just tighten gap */
  .proof__grid { gap: clamp(20px, 3.5vw, 40px); }
  .proof__shot { aspect-ratio: 4 / 5; }
}
@media (max-width: 360px) {
  .proof__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES — staggered, asymmetric, massive faded numerals
   ═══════════════════════════════════════════════════════════════ */
.services {
  padding: clamp(80px, 14vh, 160px) var(--gut);
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.services__head {
  display: flex; flex-direction: column;
  margin-bottom: clamp(48px, 8vh, 88px);
  max-width: 1100px;
}
.services__head .h-display {
  font-size: clamp(2.4rem, 7vw, 6.4rem);
}

.services__list {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 32px);
}

.svc {
  position: relative;
  display: grid;
  grid-template-columns: clamp(160px, 22vw, 280px) 1fr clamp(180px, 18vw, 240px);
  align-items: stretch;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(32px, 4vw, 52px) clamp(28px, 4vw, 48px);
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .55s var(--ease-out), border-color .4s var(--ease), background .4s var(--ease);
  isolation: isolate;
}
.svc::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--red);
  transform: scaleY(0); transform-origin: top;
  transition: transform .6s var(--ease-out);
}
.svc:hover { transform: translateY(-4px); border-color: rgba(230,50,50,0.28); }
.svc:hover::before { transform: scaleY(1); }

/* Massive faded numerals behind copy */
.svc__bignum {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(7rem, 14vw, 14rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(230, 50, 50, 0.32);
  position: relative;
  display: flex; align-items: center;
  user-select: none;
}
.svc__bignum span {
  display: block;
  background: linear-gradient(180deg, rgba(230, 50, 50, 0.12) 0%, transparent 80%);
  -webkit-background-clip: text;
  background-clip: text;
}

.svc__body { display: flex; flex-direction: column; justify-content: center; }
.svc__kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.svc__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.9rem, 3.6vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: -0.005em;
  margin: 0 0 16px;
  text-transform: uppercase;
}
.svc__copy {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 18px;
  max-width: 56ch;
}
.svc__list {
  list-style: none; padding: 0; margin: 0 0 22px;
  display: flex; flex-wrap: wrap; gap: 8px 14px;
}
.svc__list li {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.16em;
  color: var(--text-dim);
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.svc__action { display: flex; align-items: center; justify-content: flex-end; }
.svc__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  font-size: 13.5px; font-weight: 600;
  color: var(--text);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  transition: all .35s var(--ease);
  white-space: nowrap;
  min-height: 44px;
}
.svc__cta:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--on-red);
  transform: translateX(2px);
  box-shadow: 0 12px 28px -10px var(--red-glow);
}
.svc__cta svg { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.svc__cta:hover svg { transform: translateX(3px); }

/* Stagger every other card */
.svc:nth-child(even) {
  margin-left: clamp(0px, 4vw, 80px);
}
.svc:nth-child(odd) {
  margin-right: clamp(0px, 4vw, 80px);
}

/* Featured (the lead one) */
.svc--lead {
  grid-template-columns: clamp(160px, 22vw, 280px) 1fr clamp(180px, 18vw, 240px);
  background:
    radial-gradient(80% 60% at 90% 30%, rgba(230,50,50,0.08), transparent 70%),
    linear-gradient(180deg, #161010 0%, var(--bg-2) 100%);
  border-color: rgba(230,50,50,0.22);
}
.svc--lead .svc__bignum {
  -webkit-text-stroke: 1px rgba(230, 50, 50, 0.55);
}
.svc--lead .svc__title { color: var(--text); }
.svc--lead .svc__cta {
  background: var(--red);
  border-color: var(--red);
  color: var(--on-red);
  box-shadow: 0 14px 32px -12px var(--red-glow);
}
.svc--lead .svc__cta:hover { background: var(--red-2); }

/* CTA-style bookend card */
.svc--cta {
  grid-template-columns: clamp(160px, 22vw, 280px) 1fr clamp(180px, 18vw, 240px);
  background: linear-gradient(135deg, #1a0e0e 0%, var(--bg-2) 70%);
  border-color: rgba(230,50,50,0.30);
}
.svc--cta .svc__title { color: var(--red); }

@media (max-width: 980px) {
  /* Keep 3-col bento; scale numerals proportionally */
  .svc {
    grid-template-columns: clamp(60px, 14vw, 120px) 1fr clamp(70px, 14vw, 140px);
    gap: clamp(14px, 2.5vw, 24px);
    padding: 24px 22px;
  }
  .svc:nth-child(even),
  .svc:nth-child(odd) { margin-left: 0; margin-right: 0; }
  .svc__bignum { font-size: clamp(3.4rem, 12vw, 6rem); }
}
@media (max-width: 560px) {
  /* Stay multi-col, just tighter */
  .svc {
    grid-template-columns: clamp(48px, 14vw, 90px) 1fr clamp(60px, 16vw, 110px);
    gap: 12px;
    padding: 20px 16px;
  }
  .svc__bignum { font-size: clamp(2.6rem, 13vw, 4.2rem); opacity: 0.85; }
}
@media (max-width: 360px) {
  .svc {
    grid-template-columns: clamp(44px, 16vw, 70px) 1fr;
    gap: 12px;
  }
  .svc__action { grid-column: 1 / -1; justify-content: flex-start; margin-top: 8px; }
  .svc__bignum { font-size: 3.2rem; opacity: 0.7; }
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT — split-screen with parallax photo + pull-quote serif italic
   ═══════════════════════════════════════════════════════════════ */
.about {
  padding: clamp(80px, 14vh, 160px) var(--gut);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute; right: -10%; top: 20%;
  width: 60%; height: 60%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(230,50,50,0.08), transparent 70%);
  pointer-events: none;
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  max-width: var(--max);
  margin: 0 auto;
  align-items: center;
  position: relative;
}

.about__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 100px -40px rgba(0,0,0,0.8), 0 0 0 1px var(--line);
}
.about__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: contrast(1.05) saturate(0.9);
  transform: scale(1.05);
  transition: transform 1.2s var(--ease-out);
  will-change: transform;
}
.about__photo:hover img { transform: scale(1.1); }
.about__photo::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, transparent 60%, rgba(230,50,50,0.18) 100%),
    linear-gradient(180deg, transparent 70%, rgba(10,10,10,0.5) 100%);
}
.about__photo-stamp {
  position: absolute; left: 18px; bottom: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; letter-spacing: 0.22em;
  color: var(--text); text-transform: uppercase;
  padding: 8px 12px;
  background: rgba(10,10,10,0.72);
  backdrop-filter: blur(8px);
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.08);
  z-index: 2;
}

.about__copy { display: flex; flex-direction: column; gap: 24px; }
.about__h { font-size: clamp(2.4rem, 6.5vw, 5.6rem); }
.about__bio {
  margin: 0;
  display: flex; flex-direction: column; gap: 14px;
  font-size: clamp(1.05rem, 1.32vw, 1.22rem);
  line-height: 1.6;
  color: var(--text-mid);
  max-width: 540px;
}
.about__bio span {
  transition: color .6s var(--ease), opacity .6s var(--ease);
}
.about__bio span.is-active { color: var(--text); }

.about__pullquote {
  margin: 12px 0 0;
  padding: 26px 28px;
  border-left: 2px solid var(--red);
  font-family: 'Source Serif Pro', 'Iowan Old Style', 'Georgia', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  line-height: 1.4;
  color: var(--text);
  background: rgba(230,50,50,0.04);
  border-radius: 0 12px 12px 0;
}
.about__pullquote cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.about__stamps {
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--text-dim);
  text-transform: uppercase;
  padding-top: 12px;
}
.about__stamps .dot { color: var(--red); }

@media (max-width: 980px) {
  /* Keep split-screen; tighten gap and shrink photo aspect */
  .about__inner { gap: clamp(20px, 3.5vw, 40px); }
  .about__photo { aspect-ratio: 3 / 4; }
}
@media (max-width: 360px) {
  .about__inner { grid-template-columns: 1fr; }
  .about__photo { aspect-ratio: 4 / 5; max-width: 480px; }
}

/* ═══════════════════════════════════════════════════════════════
   PRICING — 3-card with featured middle lifted on hover
   ═══════════════════════════════════════════════════════════════ */
.pricing {
  padding: clamp(80px, 14vh, 160px) var(--gut);
  max-width: var(--max);
  margin: 0 auto;
}
.pricing__head {
  display: flex; flex-direction: column;
  margin-bottom: clamp(48px, 8vh, 88px);
  max-width: 920px;
}
.pricing__head .h-display { font-size: clamp(2.4rem, 7vw, 6rem); }
.pricing__head p {
  margin-top: 24px;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--text-mid);
  max-width: 620px;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 28px);
  align-items: stretch;
}

.price {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 32px 32px;
  display: flex; flex-direction: column;
  transition: transform .55s var(--ease-out), border-color .4s var(--ease), box-shadow .55s var(--ease-out);
  isolation: isolate;
  overflow: hidden;
}
.price__name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin: 0 0 14px;
}
.price__amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 4.4vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.005em;
  margin: 0 0 8px;
  color: var(--text);
}
.price__amount sup {
  font-size: 0.5em; vertical-align: top;
  color: var(--text-dim);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  margin-right: 2px;
}
.price__per {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.16em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin: 0 0 24px;
}
.price__list {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 12px;
  flex: 1;
}
.price__list li {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text);
  padding-left: 26px;
  position: relative;
}
.price__list li::before {
  content: '';
  position: absolute; left: 0; top: 6px;
  width: 14px; height: 10px;
  background: linear-gradient(45deg, transparent 35%, var(--red) 35%, var(--red) 65%, transparent 65%),
              linear-gradient(-45deg, transparent 35%, var(--red) 35%, var(--red) 65%, transparent 65%);
  background-size: 8px 2px;
  background-repeat: no-repeat;
  background-position: 0 4px, 6px 0;
}

.price__cta {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  color: var(--text);
  font-weight: 600; font-size: 14px;
  transition: all .3s var(--ease);
  min-height: 44px;
}
.price__cta:hover {
  border-color: var(--red);
  color: var(--red);
}

.price--featured {
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(230,50,50,0.14), transparent 70%),
    linear-gradient(180deg, #181010 0%, var(--bg-2) 100%);
  border-color: rgba(230,50,50,0.30);
  transform: translateY(-12px);
  z-index: 2;
  box-shadow: 0 30px 80px -30px rgba(230,50,50,0.25);
}
.price--featured::before {
  content: 'POPULĀRĀKAIS';
  position: absolute; top: 14px; right: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.22em;
  color: var(--on-red);
  background: var(--red);
  padding: 5px 10px;
  border-radius: 4px;
}
.price--featured .price__amount { color: var(--red); }
.price--featured:hover {
  transform: translateY(-18px);
  box-shadow: 0 50px 120px -40px rgba(230,50,50,0.5);
  border-color: rgba(230,50,50,0.5);
}
.price--featured .price__cta {
  background: var(--red);
  border-color: var(--red);
  color: var(--on-red);
}
.price--featured .price__cta:hover {
  background: var(--red-2);
  border-color: var(--red-2);
  color: var(--on-red);
}

.price:not(.price--featured):hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
}

@media (max-width: 880px) {
  /* Keep 3-col proportional; smaller cards */
  .pricing__grid { gap: clamp(10px, 1.6vw, 18px); }
  .price { padding: 24px 18px 22px; border-radius: 14px; }
  .price__amount { font-size: clamp(1.8rem, 5vw, 2.4rem); }
  .price__list li { font-size: 13px; padding-left: 22px; }
  .price__cta { padding: 12px 14px; font-size: 12.5px; min-height: 44px; }
  .price--featured { transform: translateY(-6px); }
  .price--featured:hover { transform: translateY(-10px); }
  .price--featured::before { font-size: 9px; padding: 4px 7px; top: 10px; right: 10px; }
}
@media (max-width: 540px) {
  .pricing__grid { gap: 8px; }
  .price { padding: 18px 12px 16px; border-radius: 12px; }
  .price__name { font-size: 9.5px; margin-bottom: 8px; letter-spacing: 0.16em; }
  .price__amount { font-size: clamp(1.4rem, 6vw, 1.9rem); }
  .price__per { font-size: 10px; margin-bottom: 14px; }
  .price__list { gap: 7px; margin-bottom: 14px; }
  .price__list li { font-size: 11.5px; line-height: 1.4; padding-left: 18px; }
  .price__list li::before { width: 10px; height: 8px; top: 5px; }
  .price__cta { padding: 10px 8px; font-size: 11px; min-height: 44px; }
  .price--featured::before { font-size: 7.5px; padding: 3px 5px; letter-spacing: 0.14em; }
}
@media (max-width: 360px) {
  .pricing__grid { grid-template-columns: 1fr; gap: 16px; }
  .price--featured { transform: none; }
  .price--featured:hover { transform: translateY(-4px); }
}

/* ═══════════════════════════════════════════════════════════════
   GALLERY — bento masonry
   ═══════════════════════════════════════════════════════════════ */
.gallery {
  padding: clamp(80px, 14vh, 160px) var(--gut);
  max-width: var(--max);
  margin: 0 auto;
}
.gallery__head {
  display: flex; flex-direction: column;
  margin-bottom: clamp(48px, 8vh, 88px);
  max-width: 920px;
}
.gallery__head .h-display { font-size: clamp(2.4rem, 7vw, 6.4rem); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-flow: dense;
  grid-auto-rows: 180px;
  gap: 14px;
}
.gal {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.gal img,
.gal video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transition: transform 1.6s var(--ease-out), filter .8s var(--ease);
  filter: contrast(1.04) saturate(0.92);
}
/* XL tile holds the reel (9:16 source) — keep face area higher in frame */
.gal--xl video { object-position: center 22%; }
.gal:hover img,
.gal:hover video { transform: scale(1.06); filter: contrast(1.08) saturate(1); }

/* Abstract tiles — CSS-only fillers replacing duplicated images */
.gal--abstract {
  display: flex;
  align-items: center; justify-content: center;
  position: relative;
}
.gal--abstract::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(transparent 95%, rgba(255,255,255,0.04) 95%),
    linear-gradient(90deg, transparent 95%, rgba(255,255,255,0.04) 95%);
  background-size: 24px 24px;
  opacity: 0.6;
  pointer-events: none;
}
.gal--abstract-1 {
  background:
    radial-gradient(60% 80% at 30% 30%, rgba(230,50,50,0.42) 0%, transparent 65%),
    radial-gradient(80% 60% at 80% 90%, rgba(120,18,18,0.5) 0%, transparent 70%),
    linear-gradient(135deg, #1a0a0a 0%, #0a0a0a 100%);
}
.gal--abstract-2 {
  background:
    radial-gradient(50% 70% at 70% 25%, rgba(230,50,50,0.18) 0%, transparent 70%),
    linear-gradient(180deg, #161616 0%, #0a0a0a 100%);
}
.gal--abstract-3 {
  background:
    repeating-linear-gradient(45deg, rgba(230,50,50,0.08) 0 2px, transparent 2px 14px),
    linear-gradient(180deg, #141414 0%, #0a0a0a 100%);
}
.gal--abstract-4 {
  background:
    radial-gradient(70% 60% at 20% 50%, rgba(230,50,50,0.22) 0%, transparent 70%),
    radial-gradient(60% 80% at 90% 30%, rgba(120,18,18,0.34) 0%, transparent 70%),
    linear-gradient(120deg, #131313 0%, #0a0a0a 100%);
}
.gal__abstract {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
  text-align: center;
  padding: 16px;
}
.gal__abstract-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.85;
  letter-spacing: -0.01em;
  color: var(--text);
  text-shadow: 0 0 24px rgba(230,50,50,0.45);
}
.gal__abstract-unit {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.24em;
  color: var(--red);
  text-transform: uppercase;
  margin-top: 4px;
}
.gal__abstract-mono {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1;
}
.gal__abstract-line {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; letter-spacing: 0.24em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-top: 6px;
}
.gal::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.5) 100%);
  pointer-events: none;
}
.gal__tag {
  position: absolute; left: 14px; bottom: 12px; z-index: 2;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.22em;
  color: var(--text); text-transform: uppercase;
  padding: 5px 9px;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(8px);
  border-radius: 4px;
}

/* Bento — varied sizes */
.gal--xl   { grid-column: span 4; grid-row: span 3; }
.gal--md   { grid-column: span 2; grid-row: span 2; }
.gal--sm   { grid-column: span 2; grid-row: span 1; }
.gal--wide { grid-column: span 3; grid-row: span 2; }
.gal--tall { grid-column: span 3; grid-row: span 3; }

@media (max-width: 880px) {
  /* Keep asymmetric bento — 4-col with proportional rows */
  .gallery__grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: clamp(80px, 16vw, 140px);
    gap: 10px;
  }
  .gal--xl   { grid-column: span 4; grid-row: span 2; }
  .gal--tall { grid-column: span 2; grid-row: span 2; }
  .gal--wide { grid-column: span 2; grid-row: span 1; }
  .gal--md   { grid-column: span 2; grid-row: span 1; }
  .gal--sm   { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 540px) {
  /* Keep at least 2-col on phone, scale rows proportionally */
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: clamp(70px, 22vw, 130px);
    gap: 8px;
  }
  .gal--xl   { grid-column: span 2; grid-row: span 2; }
  .gal--tall { grid-column: span 1; grid-row: span 2; }
  .gal--wide { grid-column: span 2; grid-row: span 1; }
  .gal--md   { grid-column: span 1; grid-row: span 1; }
  .gal--sm   { grid-column: span 1; grid-row: span 1; }
  .gal__tag { font-size: 8.5px; padding: 4px 6px; left: 8px; bottom: 8px; }
}
@media (max-width: 360px) {
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 200px; gap: 12px; }
  .gal--xl, .gal--md, .gal--sm, .gal--wide, .gal--tall { grid-column: span 1; grid-row: span 1; }
  .gal--xl { grid-row: span 2; }
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT + MAP
   ═══════════════════════════════════════════════════════════════ */
.contact {
  padding: clamp(80px, 14vh, 160px) var(--gut) clamp(80px, 12vh, 140px);
  background:
    radial-gradient(50% 60% at 80% 20%, rgba(230,50,50,0.08), transparent 70%),
    var(--bg);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  overflow-x: clip;
}
.contact::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--red) 50%, transparent 100%);
  pointer-events: none;
}
.contact__head {
  max-width: var(--max);
  margin: 0 auto clamp(48px, 7vh, 80px);
  text-align: left;
}
.contact__h {
  font-size: clamp(2.6rem, 8.4vw, 7.2rem);
}
.contact__h .line { display: block; }

.contact__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: stretch;
}
@media (max-width: 980px) {
  /* Keep map + form side-by-side; tighten gap */
  .contact__grid { gap: clamp(16px, 3vw, 32px); }
}
@media (max-width: 360px) {
  .contact__grid { grid-template-columns: 1fr; }
}

/* ── Editorial map ─────────────────────────────────────────────── */
.map {
  position: relative;
  margin: 0;
  background: #0c0c0c;
  border: 1px solid var(--line-2);
  border-radius: 6px;
  overflow: hidden;
  display: flex; flex-direction: column;
  min-height: 420px;
}
.map__head {
  position: absolute; top: 14px; left: 16px; right: 16px; z-index: 2;
  display: flex; justify-content: space-between; gap: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  pointer-events: none;
}
.map__head .map__coord { color: var(--red); }
.map__svg {
  width: 100%;
  flex: 1;
  display: block;
  min-height: 360px;
}
.map__ring {
  transform-origin: 240px 240px;
  animation: map-ping 3.4s var(--ease) infinite;
}
.map__ring--2 { animation-delay: 0.6s; }
.map__ring--3 { animation-delay: 1.2s; }
@keyframes map-ping {
  0%   { transform: scale(0.85); opacity: 0.85; }
  60%  { opacity: 0.0; }
  100% { transform: scale(1.6);  opacity: 0; }
}
.map__cap {
  display: flex; justify-content: space-between; gap: 16px;
  align-items: center;
  padding: 14px 18px;
  border-top: 1px solid var(--line-2);
  background: rgba(0,0,0,0.5);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.map__addr { color: var(--text); }
.map__nav {
  color: var(--red);
  border-bottom: 1px solid rgba(230,50,50,0.4);
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.map__nav:hover { color: var(--red-2); border-color: var(--red-2); }

/* ── Contact form ──────────────────────────────────────────────── */
.contact__form {
  display: flex; flex-direction: column;
  gap: 18px;
}
.contact__lead {
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.55;
  color: var(--text);
  margin: 0 0 8px;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form__field {
  display: flex; flex-direction: column;
  gap: 6px;
}
.contact-form__field--full { grid-column: 1 / -1; }
.contact-form__field span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.contact-form__field input,
.contact-form__field textarea {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 4px;
  padding: 14px 16px;
  font: inherit;
  font-size: 15px;
  color: var(--text);
  transition: border-color .3s var(--ease), background .3s var(--ease);
  min-height: 50px;
}
.contact-form__field textarea {
  resize: vertical;
  min-height: 110px;
  font-family: inherit;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--bg-3);
  box-shadow: 0 0 0 3px rgba(230,50,50,0.15);
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: var(--text-dim);
}
.contact-form__submit {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 6px;
}

.contact__channels {
  list-style: none; margin: 24px 0 0; padding: 24px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 24px;
}
.contact__channels li {
  display: flex; flex-direction: column; gap: 4px;
}
.contact__chk {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.contact__channels a {
  color: var(--text);
  font-size: 14.5px;
  border-bottom: 1px solid transparent;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.contact__channels a:hover { color: var(--red); border-color: var(--red); }
.contact__val { color: var(--red); font-weight: 600; font-size: 14.5px; }

@media (max-width: 560px) {
  /* Keep 2-col form + 3-col channels on phone */
  .contact-form { gap: 10px; }
  .contact__channels { gap: 10px 14px; }
}
@media (max-width: 360px) {
  .contact-form { grid-template-columns: 1fr; }
  .contact__channels { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   STICKY SCROLL PROGRESS — right edge
   ═══════════════════════════════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex; flex-direction: column; align-items: center;
  gap: 12px;
  pointer-events: none;
  mix-blend-mode: difference;
}
.scroll-progress__rail {
  position: relative;
  width: 2px;
  height: 180px;
  background: rgba(255,255,255,0.10);
  overflow: hidden;
}
.scroll-progress__fill {
  display: block;
  position: absolute;
  left: 0; top: 0; right: 0;
  height: 100%;
  background: var(--red);
  box-shadow: 0 0 14px rgba(230,50,50,0.6);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 80ms linear;
}
.scroll-progress__pct {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
@media (max-width: 980px) {
  .scroll-progress { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER — dark gradient with brand accent line
   ═══════════════════════════════════════════════════════════════ */
.footer {
  background: linear-gradient(180deg, var(--bg-3) 0%, #050505 100%);
  padding: clamp(56px, 8vh, 96px) var(--gut) 36px;
  border-top: 1px solid var(--line);
  position: relative;
  overflow-x: clip;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--red) 50%, transparent 100%);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max);
  margin: 0 auto clamp(40px, 6vh, 64px);
}
.footer__brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--red);
}
.footer__wordmark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; letter-spacing: 0.04em; line-height: 1;
  color: var(--text);
}
.footer__wordmark span { color: var(--red); }
.footer__col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin: 0 0 14px;
}
.footer__col p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
}
.footer__col a {
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.footer__col a:hover { color: var(--red); border-color: var(--red); }

.footer__legal {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 32px;
  align-items: center;
}
.footer__company { font-size: 12.5px; color: var(--text-dim); margin: 0; }
.footer__details { grid-column: 1 / -1; font-size: 12px; color: var(--text-dim); margin: 0; }
.footer__details a { color: var(--text-dim); }
.footer__details a:hover { color: var(--red); }
.footer__links { margin: 0; font-size: 12.5px; }
.footer__links a { color: var(--text-dim); }
.footer__links a:hover { color: var(--red); }

@media (max-width: 880px) {
  /* Keep 4-col proportional; brand spans full width */
  .footer__top { gap: clamp(16px, 2.5vw, 28px); }
  .footer__brand { grid-column: 1 / -1; }
  .footer__col h4 { font-size: 10px; }
  .footer__col p { font-size: 12.5px; line-height: 1.65; }
}
@media (max-width: 520px) {
  /* Stay 3-col scaled down (drop the brand-spanning card off the grid) */
  .footer__top {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .footer__col h4 { font-size: 9px; letter-spacing: 0.18em; margin-bottom: 8px; }
  .footer__col p { font-size: 11.5px; line-height: 1.55; }
}
@media (max-width: 360px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__legal { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════════════════════════════ */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  z-index: 60;
  max-width: 520px;
  margin-left: auto;
  background: rgba(15, 15, 15, 0.96);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.7);
  display: none;
}
.cookie.is-visible { display: block; }
.cookie p {
  margin: 0 0 14px;
  font-size: 13.5px; line-height: 1.55;
  color: var(--text);
}
.cookie a {
  color: var(--red); border-bottom: 1px solid rgba(230,50,50,0.4);
}
.cookie__row { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie__btn {
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--text);
  transition: all .3s var(--ease);
  min-height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none;
}
.cookie__btn--primary {
  background: var(--red);
  color: var(--on-red);
  border-color: var(--red);
}
.cookie__btn--primary:hover { background: var(--red-2); border-color: var(--red-2); }
.cookie__btn:hover { border-color: var(--text-dim); }

/* ═══════════════════════════════════════════════════════════════
   PRIVACY (legal page)
   ═══════════════════════════════════════════════════════════════ */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(140px, 20vh, 200px) var(--gut) clamp(80px, 14vh, 160px);
  position: relative;
}
.legal__back {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 36px;
  padding: 12px 18px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--text);
  text-transform: uppercase;
  transition: all .3s var(--ease);
  min-height: 44px;
}
.legal__back:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateX(-2px);
}
.legal h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.legal__updated {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 36px;
  display: inline-flex; align-items: center; gap: 10px;
}
.legal__updated::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 8px var(--red-glow);
}
.legal h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  text-transform: uppercase;
  color: var(--red);
  margin: 56px 0 16px;
  letter-spacing: 0.005em;
  line-height: 1;
}
.legal h2::before {
  content: ''; display: block;
  width: 32px; height: 2px;
  background: var(--red);
  margin-bottom: 14px;
}
.legal p, .legal li {
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.75;
}
.legal p { margin: 0 0 14px; color: var(--text-mid); }
.legal p strong { color: var(--text); font-weight: 600; }
.legal ul, .legal ol { padding-left: 22px; color: var(--text-mid); }
.legal li { margin-bottom: 6px; }
.legal li strong { color: var(--text); }
.legal a {
  color: var(--red);
  border-bottom: 1px solid rgba(230,50,50,0.4);
  transition: border-color .3s var(--ease);
}
.legal a:hover { border-color: var(--red); }
.legal table {
  width: 100%; border-collapse: collapse; margin: 18px 0;
  font-size: 14px;
  background: var(--bg-2);
  border-radius: 10px;
  overflow: hidden;
}
.legal th, .legal td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.legal tr:last-child td { border-bottom: none; }
.legal th {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: var(--bg-3);
}
.legal td { color: var(--text-mid); }

/* ═══════════════════════════════════════════════════════════════
   MOBILE PARITY PASS — mirror desktop layout, scale (don't stack)
   Floor at 360px. Above that, multi-col grids stay multi-col.
   ═══════════════════════════════════════════════════════════════ */

/* Tablet polish — 541–900px */
@media (max-width: 900px) and (min-width: 541px) {
  /* Map a touch shorter on tablet */
  .map { min-height: 380px; }
  .map__svg { min-height: 320px; }
}

/* Phone — 540px and below (above 360 floor) */
@media (max-width: 540px) and (min-width: 361px) {
  :root {
    --gut: clamp(14px, 4vw, 22px);
  }

  /* HERO — stat tower is static at this width, so reclaim the right padding */
  .hero {
    padding-top: clamp(120px, 17vh, 160px);
    padding-right: var(--gut);
    padding-bottom: clamp(40px, 6vh, 64px);
  }
  .hero__topline { margin-bottom: 18px; font-size: 9.5px; letter-spacing: 0.18em; }
  /* Hide the outline ghost ≤480px — too wide, it overflows */
  .hero__ghost { display: none; }
  /* Default headline (non-mega) — fallback */
  .hero__title:not(.hero__title--mega) { font-size: clamp(2.125rem, 11vw, 3rem); line-height: 1.0; letter-spacing: -0.005em; }
  .hero__title .line { padding: 0.06em 0; }
  /* Lede: max 38ch, 16–17px, comfortable read */
  .hero__sub {
    font-size: clamp(15px, 4.2vw, 17px);
    line-height: 1.55;
    margin-bottom: 22px;
    max-width: 38ch;
  }
  /* CTAs: full-width stacked */
  .hero__ctas { flex-direction: column; gap: 10px; margin-bottom: 26px; flex-wrap: nowrap; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  /* Meta: 2-col on mobile (was 3-col cramped) */
  .hero__meta { grid-template-columns: 1fr 1fr; gap: 10px 16px; padding-top: 16px; }
  .hero__meta > div:nth-child(3) {
    grid-column: 1 / -1;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .meta__num { font-size: clamp(1.05rem, 5vw, 1.5rem); }
  .meta__lbl { font-size: 9px; letter-spacing: 0.12em; }

  /* SECTION PADDINGS — tighter, proportional */
  .proof,
  .services,
  .about,
  .pricing,
  .gallery,
  .contact {
    padding-top: clamp(48px, 8vh, 72px);
    padding-bottom: clamp(48px, 8vh, 72px);
  }
  .proof__head,
  .services__head,
  .pricing__head,
  .gallery__head { margin-bottom: 28px; }
  /* Headlines — clamp with vw for linear scaling */
  .proof__head .h-display,
  .services__head .h-display,
  .pricing__head .h-display,
  .gallery__head .h-display,
  .about__h,
  .contact__h { font-size: clamp(1.8rem, 9vw, 2.8rem); }
  .proof__lead,
  .pricing__head p { font-size: 0.94rem; margin-top: 14px; }

  /* PROOF — keep 2-col, tighten quote */
  .proof__quote { padding: 16px 18px; font-size: 0.95rem; margin-top: 24px; }
  .stats { gap: 14px; }
  .stats li { padding-bottom: 14px; gap: 4px 8px; }
  .stats__from { font-size: clamp(1.4rem, 7vw, 2.4rem); }
  .stats__to { font-size: clamp(1.6rem, 8vw, 2.8rem); }
  .stats__lbl { font-size: 9.5px; letter-spacing: 0.14em; }

  /* SERVICES — multi-col preserved by earlier rule, just tighten copy */
  .svc__title { font-size: clamp(1.1rem, 5.4vw, 1.6rem); margin-bottom: 8px; }
  .svc__copy { font-size: 12.5px; line-height: 1.5; margin-bottom: 12px; }
  .svc__list { gap: 4px 6px; margin-bottom: 12px; }
  .svc__list li { font-size: 9px; padding: 3px 6px; letter-spacing: 0.12em; }
  .svc__cta { padding: 10px 14px; font-size: 11.5px; min-height: 44px; }
  .svc__kicker { font-size: 9.5px; margin-bottom: 8px; }

  /* ABOUT — keep 2-col split, tighten */
  .about__inner { gap: 18px; }
  .about__bio { font-size: 0.92rem; gap: 8px; max-width: 100%; }
  .about__pullquote { padding: 14px 16px; font-size: 1rem; line-height: 1.4; }
  .about__stamps { font-size: 9px; gap: 6px; }

  /* MAP — fit viewport */
  .map { min-height: 240px; border-radius: 6px; }
  .map__svg { min-height: 200px; }
  .map__head { top: 8px; left: 10px; right: 10px; font-size: 8.5px; gap: 8px; }
  .map__cap { padding: 9px 11px; font-size: 9.5px; gap: 8px; flex-wrap: wrap; }

  /* CONTACT — keep 2-col form, touch targets ≥ 44px */
  .contact__lead { font-size: 0.94rem; }
  .contact-form__field span { font-size: 9px; letter-spacing: 0.14em; }
  .contact-form__field input,
  .contact-form__field textarea {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 16px; /* prevents iOS zoom */
  }
  .contact-form__field textarea { min-height: 96px; }
  .contact-form__submit { width: 100%; justify-content: center; }
  .contact__channels {
    gap: 8px 12px;
    margin-top: 16px; padding-top: 16px;
  }
  .contact__channels a, .contact__val { font-size: 12px; }
  .contact__chk { font-size: 9px; }

  /* COOKIE banner */
  .cookie {
    left: 10px; right: 10px; bottom: 10px;
    padding: 12px 14px;
    border-radius: 10px;
    max-width: none;
  }
  .cookie p { font-size: 12px; margin-bottom: 10px; }
  .cookie__btn { min-height: 44px; padding: 10px 14px; flex: 1; font-size: 12px; }
  .cookie__row { gap: 6px; }

  /* Buttons — comfortable thumb tap */
  .btn { min-height: 44px; --pad-y: 12px; --pad-x: 16px; font-size: 13px; }
  .btn--xl { --pad-y: 14px; --pad-x: 20px; font-size: 14px; }

  /* Privacy back */
  .legal__back { min-height: 44px; padding: 10px 14px; }

  /* Ticker */
  .ticker { font-size: clamp(15px, 5vw, 20px); padding: 12px 0; }

  /* Footer mini */
  .footer { padding: 36px var(--gut) 24px; }
}

/* Extra-narrow floor — 360 and below allow proportional → stack collapse */
@media (max-width: 360px) {
  :root { --gut: 12px; }
  .hero { padding-top: 110px; padding-right: var(--gut); }
  .hero__ghost { display: none; }
  .hero__title:not(.hero__title--mega) { font-size: clamp(2rem, 10vw, 2.4rem); line-height: 1.02; }
  .hero__sub { font-size: 15px; max-width: 38ch; }
  .hero__ctas { flex-direction: column; gap: 10px; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__meta { grid-template-columns: 1fr 1fr; gap: 10px 14px; }
  .hero__meta > div:nth-child(3) {
    grid-column: 1 / -1;
    padding-top: 6px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .proof__head .h-display,
  .services__head .h-display,
  .pricing__head .h-display,
  .gallery__head .h-display,
  .about__h,
  .contact__h { font-size: clamp(1.8rem, 10vw, 2.4rem); }

  .svc__bignum { font-size: 3.2rem; }
  .gal__abstract-num { font-size: 3rem; }
  .gal__abstract-mono { font-size: 1.7rem; }
  .price__amount { font-size: 2rem; }
  .price { padding: 22px 18px; }
  .price__list li { font-size: 13px; padding-left: 24px; }
  .price__cta { padding: 12px 16px; font-size: 13px; min-height: 44px; }

  .btn { min-height: 44px; }
}

/* ═══════════════════════════════════════════════════════════════
   ACCESSIBILITY · MOTION
   ═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__title .word { transform: none; opacity: 1; }
  .hero__ghost { opacity: 1; transform: translateY(-52%); }
  .ticker__track { animation: none; }
  .hero__bg img, .hero__bg video { animation: none; }
  .hero__mesh { animation: none; }
  .hero__grain { animation: none; }
  .map__ring { animation: none; }
}
