/* ═══════════════════════════════════════════════
   MIRROR PRODUCTION — Editorial cinema design
   ═══════════════════════════════════════════════ */

/* Brand typeface — Franie (Mirror Rebranding 2026).
   Drop the licensed files into assets/fonts/ as:
   Franie-Light.woff2/.otf, Franie-Regular.woff2/.otf, Franie-Bold.woff2/.otf
   Until then the site falls back to Archivo. */
@font-face {
  font-family: "Franie";
  src: url("../assets/fonts/Franie-Light.otf") format("opentype");
  font-weight: 300; font-display: swap;
}
@font-face {
  font-family: "Franie";
  src: url("../assets/fonts/Franie-Regular.otf") format("opentype");
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: "Franie";
  src: url("../assets/fonts/Franie-SemiBold.otf") format("opentype");
  font-weight: 500 649; font-display: swap;
}
@font-face {
  font-family: "Franie";
  src: url("../assets/fonts/Franie-Bold.otf") format("opentype");
  font-weight: 650 779; font-display: swap;
}
@font-face {
  font-family: "Franie";
  src: url("../assets/fonts/Franie-ExtraBold.otf") format("opentype");
  font-weight: 780 849; font-display: swap;
}
@font-face {
  font-family: "Franie";
  src: url("../assets/fonts/Franie-Black.otf") format("opentype");
  font-weight: 850 900; font-display: swap;
}

:root {
  /* Mirror Rebranding 2026 — main colors */
  --black: #0a0a0a;   /* Cod Gray */
  --surface: #131313;
  --ink: #ECECEC;     /* Gallery */
  --muted: #7a7a7a;
  --red: #CB0606;     /* Milano Red */
  /* Secondary colors (by department) */
  --c-video: #575BFA;   /* Cornflower Blue — Video Production */
  --c-mgmt: #E6BAE5;    /* Melanie — Management */
  --c-account: #DE5719; /* Hot Cinnamon — Account Management */
  --c-design: #DBF73A;  /* Starship — Graphic Design */
  --hairline: rgba(236, 236, 236, 0.12);
  --hairline-soft: rgba(236, 236, 236, 0.06);
  --display: "Franie", "Archivo", sans-serif;
  --serif: "Instrument Serif", serif;
  --mono: "JetBrains Mono", monospace;
  --pad: clamp(1.4rem, 4vw, 4rem);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

:root[data-theme="light"] {
  --black: #ECECEC;
  --surface: #DFDFDF;
  --ink: #0a0a0a;
  --muted: #6f6f6f;
  --hairline: rgba(10, 10, 10, 0.16);
  --hairline-soft: rgba(10, 10, 10, 0.07);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

body, .about, .services, .hwork, .nav, .menu {
  transition: background-color 0.45s ease, color 0.45s ease;
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  background: var(--black);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { background: none; border: none; color: inherit; font: inherit; cursor: pointer; }

.mono {
  font-family: var(--mono);
  font-weight: 300;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.serif { font-family: var(--serif); font-weight: 400; font-style: italic; letter-spacing: 0; text-transform: none; }
.accent { color: var(--red); }
.outline { color: transparent; -webkit-text-stroke: 1.5px var(--ink); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.rec-dot {
  width: 8px; height: 8px; background: var(--red); border-radius: 50%;
  display: inline-block; box-shadow: 0 0 10px rgba(203, 6, 6, 0.9);
  animation: blink 1.4s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.15; } }

/* ─── Fixed furniture ─── */
.gridlines { position: fixed; inset: 0; z-index: 1; pointer-events: none; display: flex; }
.gridlines i { flex: 1; border-right: 1px solid var(--hairline-soft); }
.gridlines i:last-child { border-right: none; }

.progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 100%;
  background: var(--red); transform-origin: 0 0; transform: scaleX(0);
  z-index: 8500; pointer-events: none;
}

.grain { position: fixed; inset: 0; z-index: 9000; pointer-events: none; opacity: 0.055; width: 100%; height: 100%; }

/* ─── Cursor ─── */
.cursor, .cursor-dot { display: none; }
@media (pointer: fine) {
  .cursor {
    display: block; position: fixed; top: 0; left: 0; z-index: 9999;
    width: 34px; height: 34px; border: 1px solid rgba(236, 236, 236, 0.45);
    border-radius: 50%; pointer-events: none;
    margin: -17px 0 0 -17px;
    transition: width 0.3s var(--ease-expo), height 0.3s var(--ease-expo),
      margin 0.3s var(--ease-expo), background 0.3s, border-color 0.3s;
    mix-blend-mode: difference;
  }
  .cursor-dot {
    display: block; position: fixed; top: 0; left: 0; z-index: 9999;
    width: 4px; height: 4px; margin: -2px 0 0 -2px;
    background: var(--red); border-radius: 50%; pointer-events: none;
  }
  .cursor.is-hover {
    width: 64px; height: 64px; margin: -32px 0 0 -32px;
    background: rgba(203, 6, 6, 0.14); border-color: var(--red);
  }
  body, a, button { cursor: none; }
}

/* ─── Preloader (always cinematic dark) ─── */
.preloader {
  position: fixed; inset: 0; z-index: 10000; background: #0a0a0a;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.2rem;
}
.preloader__meta { display: flex; align-items: center; gap: 0.7rem; color: #7a7a7a; }
.preloader__count { color: #ECECEC; min-width: 3ch; text-align: right; font-variant-numeric: tabular-nums; }
.preloader__logo {
  width: clamp(230px, 36vw, 360px); height: auto;
  clip-path: inset(0 100% 0 0);
  animation: logoWipe 1.4s var(--ease-expo) 0.15s forwards,
             logoGlow 2.6s ease-in-out 1.6s infinite;
}
@keyframes logoWipe { to { clip-path: inset(0 0 0 0); } }
@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(203, 6, 6, 0)); }
  50% { filter: drop-shadow(0 0 22px rgba(203, 6, 6, 0.35)); }
}
.preloader__word { color: #7a7a7a; }
.preloader__bar { position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: rgba(236, 236, 236, 0.06); }
.preloader__bar span { display: block; height: 100%; width: 0%; background: var(--red); }

/* ─── Nav ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 8000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem var(--pad);
  transition: transform 0.5s var(--ease-expo), background 0.5s, backdrop-filter 0.5s;
}
.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--hairline-soft);
}
.nav.is-hidden { transform: translateY(-100%); }
.nav__logo img { height: 36px; display: block; }
.nav__links { display: flex; gap: 2.4rem; position: absolute; left: 50%; transform: translateX(-50%); }
.nav__link {
  color: var(--muted); position: relative; display: inline-block;
  font-size: 0.74rem; letter-spacing: 0.24em;
  transition: color 0.3s, transform 0.35s var(--ease-expo);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 2px; width: 0;
  background: var(--red); transition: width 0.35s var(--ease-expo);
}
.nav__link:hover { color: var(--ink); transform: translateY(-2px); }
.nav__link:hover::after { width: 100%; }
/* Over the hero video (nav not yet scrolled) — keep nav items bright ivory in both themes */
.nav:not(.is-scrolled) .nav__link { color: rgba(236, 236, 236, 0.92); text-shadow: 0 2px 16px rgba(10, 10, 10, 0.55); }
.nav:not(.is-scrolled) .nav__link:hover { color: #ffffff; }
.nav:not(.is-scrolled) .nav__time { color: rgba(236, 236, 236, 0.75); }
.nav:not(.is-scrolled) .nav__cta { color: #ECECEC; border-color: rgba(236, 236, 236, 0.55); }
.nav:not(.is-scrolled) .nav__theme { color: #ECECEC; border-color: rgba(236, 236, 236, 0.45); }
.nav__right { display: flex; align-items: center; gap: 1.6rem; }
.nav__theme {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--hairline);
  display: grid; place-items: center; color: var(--ink);
  transition: border-color 0.3s, transform 0.4s var(--ease-expo);
}
.nav__theme:hover { border-color: var(--red); transform: rotate(40deg); }
.nav__theme svg { width: 17px; height: 17px; grid-area: 1 / 1; transition: opacity 0.3s, transform 0.45s var(--ease-expo); }
:root[data-theme="dark"] .nav__theme-sun { opacity: 1; transform: none; }
:root[data-theme="dark"] .nav__theme-moon { opacity: 0; transform: scale(0.5) rotate(-90deg); }
:root[data-theme="light"] .nav__theme-sun { opacity: 0; transform: scale(0.5) rotate(90deg); }
:root[data-theme="light"] .nav__theme-moon { opacity: 1; transform: none; }
.nav__time { color: var(--muted); font-variant-numeric: tabular-nums; }
.nav__cta {
  padding: 0.75rem 1.4rem; border: 1px solid var(--hairline); border-radius: 999px;
  overflow: hidden; position: relative; transition: border-color 0.3s;
}
.nav__cta::before {
  content: ""; position: absolute; inset: 0; background: var(--red);
  transform: translateY(101%); transition: transform 0.4s var(--ease-expo); border-radius: inherit;
}
.nav__cta span { position: relative; z-index: 1; }
.nav__cta:hover::before { transform: translateY(0); }
.nav__cta:hover { border-color: var(--red); }
.nav__burger { display: none; }

/* ─── Menu ─── */
.menu {
  position: fixed; inset: 0; z-index: 7500; background: var(--surface);
  display: flex; flex-direction: column; justify-content: center; gap: 3rem;
  padding: 6rem var(--pad) 3rem;
  clip-path: circle(0% at calc(100% - 3rem) 2.5rem);
  transition: clip-path 0.8s var(--ease-expo); visibility: hidden;
}
.menu.is-open { clip-path: circle(150% at calc(100% - 3rem) 2.5rem); visibility: visible; }
.menu__links { display: flex; flex-direction: column; gap: 0.5rem; }
.menu__link {
  font-family: var(--display); font-size: clamp(2.4rem, 9vw, 4rem);
  font-weight: 800; font-stretch: 110%; text-transform: uppercase;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.5s var(--ease-expo), transform 0.5s var(--ease-expo), color 0.3s;
}
.menu.is-open .menu__link { opacity: 1; transform: none; }
.menu.is-open .menu__link:nth-child(1) { transition-delay: 0.15s; }
.menu.is-open .menu__link:nth-child(2) { transition-delay: 0.22s; }
.menu.is-open .menu__link:nth-child(3) { transition-delay: 0.29s; }
.menu.is-open .menu__link:nth-child(4) { transition-delay: 0.36s; }
.menu__link:hover, .menu__link:active { color: var(--red); }
.menu__footer { display: flex; flex-direction: column; gap: 0.6rem; color: var(--muted); }

/* ─── Section header ─── */
.shead {
  display: flex; align-items: baseline; gap: 1.4rem;
  border-top: 1px solid var(--hairline);
  padding-top: 1rem; margin-bottom: clamp(2.4rem, 5vw, 4.5rem);
  position: relative; z-index: 2;
}
.shead__idx { color: var(--red); }
.shead__label { color: var(--ink); }
.shead__meta { margin-left: auto; color: var(--muted); text-align: right; }

/* ─── Hero ─── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 var(--pad) 3rem; overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden; will-change: transform;
}
.hero__exit { position: absolute; inset: 0; background: #0a0a0a; opacity: 0; pointer-events: none; }
.hero__video {
  width: 100%; height: 115%; object-fit: cover; display: block;
  filter: saturate(0.8) contrast(1.06);
  will-change: transform;
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0.15) 38%, rgba(10, 10, 10, 0.92) 100%),
    radial-gradient(85% 60% at 50% 42%, transparent 40%, rgba(10, 10, 10, 0.5) 100%);
}
.hero__particles {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  width: 100%; height: 100%;
}
.hero__bar {
  position: absolute; left: 0; right: 0; height: 11vh; background: var(--black);
  z-index: 3; will-change: transform;
}
.hero__bar--top { top: 0; transform: translateY(-100%); }
.hero__bar--bottom { bottom: 0; transform: translateY(100%); }

.hero__meta {
  position: absolute; top: 5.4rem; left: var(--pad); right: var(--pad); z-index: 2;
  display: flex; justify-content: space-between; gap: 1rem;
  color: rgba(236, 236, 236, 0.8);
}
.hero__meta-item { display: flex; align-items: center; gap: 0.6rem; }
.hero__meta-item:nth-child(2) { text-align: center; }
.hero__meta-item:nth-child(3) { text-align: right; }

.hero__content { position: relative; z-index: 2; }
.hero__title {
  font-size: clamp(1.9rem, 11.2vw, 11rem);
  font-weight: 860; font-stretch: 115%;
  line-height: 0.88; letter-spacing: -0.018em;
  text-transform: uppercase; margin-bottom: 2.4rem;
  position: relative;
}
.hero__title-line { display: block; overflow: hidden; }
.hero__title-line .ht { display: inline-block; }
.hero__title-line .ht sup { font-size: 0.14em; font-weight: 400; vertical-align: super; letter-spacing: 0; -webkit-text-stroke: 0; color: var(--ink); }
.hero__title-line--outline .ht { color: transparent; -webkit-text-stroke: 2px var(--ink); }
.hero__title-line + .hero__title-line { margin-top: 0.06em; }
.hero__bottom {
  display: flex; align-items: flex-end; justify-content: flex-end;
  gap: 2.5rem; flex-wrap: wrap;
}

.hero__play { position: relative; width: 120px; height: 120px; flex: none; }
.hero__play-text { position: absolute; inset: 0; animation: spin 14s linear infinite; }
.hero__play-text text {
  font-family: var(--mono); font-size: 10.2px; letter-spacing: 0.32em;
  fill: rgba(236, 236, 236, 0.85);
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero__play-icon {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 0; height: 0;
  border-left: 14px solid var(--red);
  border-top: 9px solid transparent; border-bottom: 9px solid transparent;
  transition: transform 0.35s var(--ease-expo);
}
.hero__play:hover .hero__play-icon { transform: translate(-50%, -50%) scale(1.25); }

/* ─── Counter bar ─── */
.countbar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--hairline);
  background: var(--black); position: relative; z-index: 3;
}
.countbar__item {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 2.2rem 1rem;
  border-right: 1px solid var(--hairline-soft);
  transition: background 0.35s;
}
.countbar__item:last-child { border-right: none; }
.countbar__item:hover { background: rgba(203, 6, 6, 0.05); }
.countbar__num {
  font-weight: 860; font-stretch: 115%; line-height: 1;
  font-size: clamp(1.9rem, 4.6vw, 3.6rem); letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.countbar__num i { font-style: normal; color: var(--red); font-size: 0.7em; margin-left: 0.12em; }
/* Secondary brand colors accent the four counters */
.countbar__item:nth-child(1) .countbar__num i { color: var(--c-design); }
.countbar__item:nth-child(2) .countbar__num i { color: var(--c-video); }
.countbar__item:nth-child(3) .countbar__num i { color: var(--c-account); }
.countbar__item:nth-child(4) .countbar__num i { color: var(--c-mgmt); }
.countbar__label { color: var(--muted); text-align: center; }
@media (max-width: 700px) {
  .countbar { grid-template-columns: 1fr 1fr; }
  .countbar__item { padding: 1.5rem 0.8rem; }
  .countbar__item:nth-child(2) { border-right: none; }
  .countbar__item:nth-child(-n+2) { border-bottom: 1px solid var(--hairline-soft); }
}

/* ─── Ticker ─── */
.ticker {
  overflow: hidden; border-block: 1px solid var(--hairline);
  padding: 1.1rem 0; background: var(--black); position: relative; z-index: 3;
}
.ticker__track {
  display: flex; white-space: nowrap; will-change: transform;
  font-weight: 250; font-stretch: 105%; font-size: 1.15rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: rgba(236, 236, 236, 0.7);
}
.ticker__track span { padding-right: 1rem; }
.ticker__track em, .cta-band em { font-family: var(--serif); font-style: italic; text-transform: none; letter-spacing: 0; }
.ticker i, .clients i { color: var(--red); font-style: normal; font-size: 0.5em; vertical-align: middle; padding: 0 1rem; }

/* ─── Sections ─── */
section { padding: clamp(4.5rem, 9vw, 8rem) var(--pad); position: relative; }

/* ─── About Us / founder's message (compact — flows after the counter bar) ─── */
.manifesto {
  padding-top: 3.2rem; padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
  background: var(--black); position: relative; z-index: 2;
}
.manifesto__grid {
  display: grid; grid-template-columns: minmax(260px, 0.75fr) 1.25fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.manifesto__portrait { max-width: 430px; margin: 0; }
.manifesto__portrait img {
  width: 100%; height: auto; display: block;
  /* fade every edge into the page so photo and background read as one surface */
  -webkit-mask-image: radial-gradient(115% 115% at 50% 42%, #000 55%, transparent 97%);
  mask-image: radial-gradient(115% 115% at 50% 42%, #000 55%, transparent 97%);
}
/* Giant section title — same voice as THE WORK */
.manifesto__title {
  font-weight: 900; font-stretch: 120%;
  font-size: clamp(2.6rem, 8vw, 7.5rem); line-height: 0.88;
  text-transform: uppercase; letter-spacing: -0.02em;
  margin-bottom: clamp(2.2rem, 5vw, 4rem);
}

/* Signature block */
.manifesto__sig { margin-top: 1.3rem; display: flex; flex-direction: column; gap: 0.4rem; }
.manifesto__name {
  font-family: var(--display); font-weight: 850; font-stretch: 112%;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem); line-height: 1;
  text-transform: uppercase; letter-spacing: 0.01em;
}
.manifesto__name em {
  font-style: normal; font-weight: 850;
  color: transparent; -webkit-text-stroke: 1.3px var(--ink);
}
.manifesto__role { color: var(--muted); }
.manifesto__role i { font-style: normal; color: var(--red); }
@media (max-width: 900px) {
  .manifesto__grid { grid-template-columns: 1fr; }
  .manifesto__portrait { max-width: 320px; margin: 0 auto; }
  .manifesto__portrait figcaption { text-align: center; }
}
.manifesto__text {
  font-weight: 640; font-stretch: 106%;
  font-size: clamp(1.2rem, 2.5vw, 2.35rem); line-height: 1.32; letter-spacing: -0.01em;
  max-width: 34ch;
}
.manifesto__foot {
  position: absolute; bottom: clamp(2.4rem, 5vw, 4rem); right: var(--pad);
  color: var(--muted); font-variant-numeric: tabular-nums;
}

/* ─── About ─── */
.about { background: var(--surface); }
.about__title {
  font-weight: 860; font-stretch: 115%;
  font-size: clamp(1.8rem, 7.4vw, 7rem); line-height: 0.95; text-transform: uppercase;
  letter-spacing: -0.016em; margin-bottom: clamp(3rem, 6vw, 5.5rem);
}
.about__title .serif { text-transform: none; font-weight: 400; font-size: 0.94em; }
.about__rows { border-top: 1px solid var(--hairline); margin-bottom: 5rem; }
.about__row {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 2rem;
  padding: 2.2rem 0; border-bottom: 1px solid var(--hairline); align-items: baseline;
}
.about__row h3 {
  font-weight: 640; font-stretch: 108%; font-size: 1.35rem;
  text-transform: uppercase; letter-spacing: 0.02em;
}
.about__row p { color: var(--muted); font-size: 0.97rem; max-width: 52ch; }
.about__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: left; }
@media (max-width: 700px) { .about__stats { grid-template-columns: 1fr; } }
.stat__num, .stat__plus {
  font-family: var(--display); font-weight: 860; font-stretch: 115%;
  font-size: clamp(2.8rem, 5.4vw, 4.6rem); line-height: 1;
  letter-spacing: -0.02em; font-variant-numeric: tabular-nums;
}
.stat__plus { color: var(--red); }
.stat p { color: var(--muted); margin-top: 0.7rem; }

/* ─── Services ─── */
.services { padding-top: clamp(2.2rem, 4vw, 3.6rem); }
.services__title {
  font-weight: 860; font-stretch: 115%;
  font-size: clamp(1.7rem, 6.6vw, 6.2rem); line-height: 0.98; text-transform: uppercase;
  letter-spacing: -0.016em; margin-bottom: clamp(1.6rem, 3vw, 2.6rem);
}
.services__title .serif { text-transform: none; font-weight: 400; font-size: 0.94em; }
/* ─── Service orbit: particle logo + services around it ─── */
.orbit {
  position: relative; z-index: 2;
  height: clamp(480px, 84vh, 800px);
  display: grid; place-items: center;
}
.orbit__canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: block;
}
.orbit__chips { position: absolute; inset: 0; pointer-events: none; }
.orbit__chip {
  position: absolute; top: 0; left: 0; pointer-events: auto;
  font-family: var(--display); font-weight: 780; font-stretch: 112%;
  text-transform: uppercase; letter-spacing: 0.03em; line-height: 1;
  color: var(--ink); background: none; border: none; padding: 0.2em 0.3em;
  white-space: nowrap; will-change: transform;
  transition: color 0.3s, text-shadow 0.3s, -webkit-text-stroke-color 0.3s;
  text-shadow: 0 2px 18px rgba(10, 10, 10, 0.4);
}
.orbit__chip i {
  font-family: var(--mono); font-style: normal; font-weight: 300;
  font-size: 0.5em; letter-spacing: 0.15em; color: var(--red);
  vertical-align: super; margin-right: 0.45em;
  -webkit-text-stroke: 0;
}
.orbit__chip--lg { font-size: clamp(1.3rem, 2.2vw, 1.8rem); }
.orbit__chip--md { font-size: clamp(1.05rem, 1.7vw, 1.4rem); }
.orbit__chip--sm { font-size: clamp(0.9rem, 1.4vw, 1.15rem); }
.orbit__chip--outline {
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(236, 236, 236, 0.55);
  text-shadow: none;
}
:root[data-theme="light"] .orbit__chip--outline { -webkit-text-stroke-color: rgba(10, 10, 10, 0.5); }
.orbit__chip:hover, .orbit__chip.is-active {
  color: var(--red); -webkit-text-stroke-color: transparent;
  text-shadow: 0 0 26px rgba(203, 6, 6, 0.55);
}
@media (max-width: 900px) {
  .orbit { height: auto; display: block; }
  .orbit__canvas { position: relative; height: 320px; }
  .orbit__chips { position: static; display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-top: 1.4rem; }
  .orbit__chip { position: static; transform: none !important; }
}

.services__list { border-top: 1px solid var(--hairline); position: relative; z-index: 2; }
.service {
  display: grid; grid-template-columns: 3.4rem 1fr auto 2.4rem; align-items: center;
  gap: 1.4rem; padding: 1.35rem 0.8rem;
  border-bottom: 1px solid var(--hairline);
  position: relative; overflow: hidden; cursor: pointer;
  transition: padding-left 0.4s var(--ease-expo);
}
.service::before {
  content: ""; position: absolute; inset: 0; background: var(--red);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.45s var(--ease-expo); z-index: 0;
}
.service:hover::before { transform: scaleY(1); transform-origin: top; }
.service:hover { padding-left: 1.8rem; }
.service > * { position: relative; z-index: 1; }
.service__index { color: var(--muted); transition: color 0.3s; }
.service__name {
  font-weight: 780; font-stretch: 112%;
  font-size: clamp(1.4rem, 3.6vw, 2.7rem); text-transform: uppercase; letter-spacing: -0.01em;
  line-height: 1.05; transition: transform 0.4s var(--ease-expo);
}
.service:hover .service__name { transform: translateX(8px) skewX(-3deg); }
.service:hover .service__index { color: rgba(236, 236, 236, 0.85); }
.service__tag { color: var(--muted); transition: color 0.3s; }
.service:hover .service__tag { color: rgba(236, 236, 236, 0.85); }
.service__arrow {
  font-size: 1.3rem; opacity: 0; transform: translateX(-12px);
  transition: opacity 0.35s, transform 0.35s var(--ease-expo);
}
.service:hover .service__arrow { opacity: 1; transform: none; }
.services__preview {
  margin-top: 0.6rem; min-height: 9.5em;
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 0.55rem;
}
.services__preview-idx { color: var(--red); }
.services__preview-name {
  font-weight: 850; font-stretch: 114%;
  font-size: clamp(1.5rem, 3.4vw, 2.6rem); line-height: 1;
  text-transform: uppercase; letter-spacing: -0.01em;
}
.services__preview-rule {
  display: block; width: clamp(70px, 9vw, 130px); height: 3px;
  background: var(--red); border-radius: 2px;
  transform-origin: center; will-change: transform;
}
.services__preview-desc {
  color: var(--muted); max-width: 56ch; margin: 0 auto;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem); line-height: 1.55;
}

/* ─── Horizontal work ─── */
.hwork { padding: 0; overflow: hidden; background: var(--surface); }
.hwork__track { display: flex; height: 100vh; will-change: transform; }
.hpanel {
  flex: none; width: 88vw; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(4.5rem, 8vh, 7rem) var(--pad);
  border-right: 1px solid var(--hairline-soft);
  position: relative;
}
.hpanel--intro .shead { position: absolute; top: clamp(3rem, 6vh, 5rem); left: var(--pad); right: var(--pad); }
.hpanel__giant {
  font-weight: 900; font-stretch: 120%;
  font-size: clamp(2.6rem, 16vh, 12rem); line-height: 0.85;
  text-transform: uppercase; letter-spacing: -0.02em;
}
.hpanel__note { margin-top: 2rem; color: var(--muted); font-size: clamp(1.1rem, 2.4vh, 1.5rem); }
.hpanel--reel { width: 92vw; justify-content: center; }
.reel__frame {
  position: relative; overflow: hidden; border-radius: 6px;
  aspect-ratio: 16 / 9; max-height: 76vh; width: 100%;
  will-change: transform;
}
.reel__video { width: 100%; height: 100%; object-fit: cover; display: block; will-change: transform; }
.reel__btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 116px; height: 116px; border-radius: 50%;
  background: rgba(10, 10, 10, 0.55); backdrop-filter: blur(8px);
  border: 1px solid rgba(236, 236, 236, 0.35);
  line-height: 1.6;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-expo);
}
.reel__btn:hover { background: var(--red); border-color: var(--red); transform: translate(-50%, -50%) scale(1.1); }
.reel__timecode {
  position: absolute; bottom: 1.2rem; right: 1.4rem;
  color: rgba(236, 236, 236, 0.85); font-variant-numeric: tabular-nums;
  background: rgba(10, 10, 10, 0.5); padding: 0.4rem 0.7rem; border-radius: 3px;
}
/* Vertical client reels inside the horizontal rail */
.hpanel--vreel {
  width: clamp(400px, 42vw, 640px);
  align-items: center;
  padding-block: 3vh; padding-inline: 1.2rem;
}
.vreel {
  position: relative; width: 100%; aspect-ratio: 9 / 16;
  max-height: 88vh; max-width: calc(88vh * 9 / 16);
  border-radius: 12px; overflow: hidden; cursor: pointer;
  border: 1px solid var(--hairline);
  background: var(--surface);
  transition: border-color 0.35s, transform 0.5s var(--ease-expo), box-shadow 0.5s;
}
.vreel:hover {
  border-color: rgba(203, 6, 6, 0.6);
  transform: translateY(-8px);
  box-shadow: 0 34px 80px -28px rgba(203, 6, 6, 0.3);
}
.vreel video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* landscape reels ride as wide cards instead of cropped portraits */
.hpanel--vreel-land { width: clamp(560px, 58vw, 900px); }
.vreel--land { aspect-ratio: 16 / 9; max-height: 78vh; max-width: none; }
.vreel__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 0; height: 0; z-index: 2; pointer-events: none;
  border-left: 18px solid rgba(236, 236, 236, 0.9);
  border-top: 11px solid transparent; border-bottom: 11px solid transparent;
  filter: drop-shadow(0 4px 14px rgba(10, 10, 10, 0.6));
  transition: opacity 0.3s;
}
.vreel.is-playing .vreel__play { opacity: 0; }

.hpanel--case { width: 70vw; max-width: 860px; }
.case {
  border: 1px solid var(--hairline); border-radius: 8px;
  padding: clamp(1.8rem, 4vh, 3rem);
  background: linear-gradient(160deg, rgba(236, 236, 236, 0.04), transparent 55%);
  transition: border-color 0.4s, box-shadow 0.5s;
  will-change: transform;
}
.case:hover { border-color: rgba(203, 6, 6, 0.55); box-shadow: 0 30px 80px -30px rgba(203, 6, 6, 0.25); }
.case__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.8rem; flex-wrap: wrap; gap: 0.8rem; }
.case__client { font-weight: 860; font-stretch: 112%; font-size: 1.6rem; text-transform: uppercase; }
.case__tag { color: var(--red); border: 1px solid rgba(203, 6, 6, 0.45); padding: 0.45rem 0.9rem; border-radius: 999px; }
.case h3 { font-weight: 640; font-size: clamp(1.4rem, 3vh, 1.9rem); line-height: 1.22; margin-bottom: 1.1rem; }
.case h3 .serif { font-weight: 400; }
.case p { color: var(--muted); font-size: 0.95rem; margin-bottom: 2rem; }
.case__results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; border-top: 1px solid var(--hairline); padding-top: 1.4rem; }
.case__results strong { display: block; color: var(--ink); margin-bottom: 0.3rem; letter-spacing: 0.18em; }
.case__results span { color: var(--muted); font-size: 0.62rem; letter-spacing: 0.1em; }
.hpanel--cta { width: 80vw; }
.hpanel__link { display: inline-block; margin-top: 2rem; font-size: clamp(1.3rem, 3vh, 1.9rem); color: var(--muted); transition: color 0.3s; }
.hpanel__link:hover { color: var(--red); }

/* ─── Client Reviews — the screening room (pinned scrub) ─── */
.reviews { background: var(--black); }
.rvx {
  position: relative; height: 88vh; min-height: 540px;
  display: grid; place-items: center; overflow: hidden;
}
.rvx__words { position: absolute; inset: 0; pointer-events: none; }
.rvx__word {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 900; font-stretch: 120%;
  font-size: clamp(6rem, 24vw, 22rem); line-height: 1;
  text-transform: uppercase; letter-spacing: -0.02em; white-space: nowrap;
  color: transparent; -webkit-text-stroke: 1.5px rgba(236, 236, 236, 0.14);
  will-change: transform;
}
:root[data-theme="light"] .rvx__word { -webkit-text-stroke-color: rgba(10, 10, 10, 0.12); }
.rvx__word--red,
:root[data-theme="light"] .rvx__word--red { -webkit-text-stroke-color: rgba(203, 6, 6, 0.55); }
.rvx__slides { position: absolute; inset: 0; }
.rvx__slide {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.8rem; text-align: center; padding: 0 var(--pad);
  visibility: hidden;
}
.rvx__quote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.6rem, 3.8vw, 3.1rem); line-height: 1.3;
  border: none; max-width: 27ch;
}
.rvx__quote .accent { font-style: italic; }
.rvx__slate {
  display: flex; align-items: center; gap: 1.1rem;
  color: var(--muted);
}
.rvx__slate b { color: var(--ink); font-weight: 300; }
.rvx__slate i { font-style: normal; color: var(--red); }
.rvx__logo {
  flex: 0 0 auto; width: 58px; height: 58px; border-radius: 50%;
  border: 1px solid var(--hairline); background: var(--surface);
  display: flex; align-items: center; justify-content: center;
}
.rvx__logo img {
  max-width: 62%; max-height: 46%; width: auto; height: auto; display: block;
  filter: brightness(0) invert(1); opacity: 0.92;
}
:root[data-theme="light"] .rvx__logo img { filter: brightness(0); }
.rvx__scene {
  position: absolute; top: 1.4rem; left: 0; z-index: 3;
  display: flex; align-items: center; gap: 0.7rem; color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.rvx__track {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--hairline-soft); z-index: 3;
}
.rvx__track span {
  display: block; height: 100%; width: 100%;
  background: var(--red); transform: scaleX(0); transform-origin: left;
}
@media (max-width: 900px) {
  .rvx { height: auto; min-height: 0; display: block; overflow: visible; }
  .rvx__words, .rvx__scene, .rvx__track { display: none; }
  .rvx__slides { position: static; }
  .rvx__slide {
    position: static; visibility: visible !important; opacity: 1 !important;
    padding: 2.4rem 0; border-bottom: 1px solid var(--hairline);
    gap: 1.2rem;
  }
  .rvx__slide:last-child { border-bottom: none; }
}

/* ─── The Statics mosaic (logo made of the work) ─── */
.mosaic { overflow: visible; }
.mosaic__stage { position: relative; height: 100vh; }
.mosaic__tiles { position: absolute; inset: 0; }
.mosaic__tile {
  position: absolute; top: 0; left: 0;
  overflow: hidden; border-radius: 8px; cursor: pointer;
  will-change: transform; margin: 0;
  box-shadow: 0 16px 44px -18px rgba(0, 0, 0, 0.6);
}
.mosaic__tile img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(0.82) saturate(0.9);
  transition: filter 0.35s, transform 0.5s var(--ease-expo);
}
.mosaic__tile:hover img { filter: brightness(1) saturate(1); transform: scale(1.07); }
.mosaic__dot {
  position: absolute; top: 0; left: 0; width: 16px; height: 16px;
  border-radius: 50%; background: var(--red); pointer-events: none;
  box-shadow: 0 0 18px rgba(203, 6, 6, 0.9), 0 0 44px rgba(203, 6, 6, 0.5);
  animation: blink 1.4s infinite;
}
@media (max-width: 900px) {
  .mosaic__stage { height: auto; }
  .mosaic__tiles {
    position: static; display: grid;
    grid-template-columns: repeat(3, 1fr); gap: 8px;
  }
  .mosaic__tile { position: static !important; transform: none !important; aspect-ratio: 1; width: auto !important; height: auto !important; }
  .mosaic__dot { display: none; }
}

/* ─── The Statics ring ─── */
.ring { overflow: hidden; }
.ring__stage {
  position: relative; height: clamp(420px, 78vh, 760px);
  display: grid; place-items: center;
  touch-action: pan-y;
}
.ring__scene {
  position: absolute; inset: 0;
  perspective: 1600px; perspective-origin: 50% 46%;
  display: grid; place-items: center;
}
.ring__carousel {
  position: relative; width: 1px; height: 1px;
  transform-style: preserve-3d;
  will-change: transform;
}
.ring__band {
  position: absolute; top: 0; left: 0; width: 1px; height: 1px;
  transform-style: preserve-3d;
  will-change: transform;
}
.ring__card {
  position: absolute; top: 50%; left: 50%;
  width: clamp(102px, 11.5vw, 172px); aspect-ratio: 3 / 4;
  margin: calc(clamp(102px, 11.5vw, 172px) * -0.6667) 0 0 calc(clamp(102px, 11.5vw, 172px) * -0.5);
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 24px 60px -18px rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(236, 236, 236, 0.12);
  background: var(--surface);
  will-change: transform;
}
.ring__card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(0.72) saturate(0.85);
  transform: scale(1.02);
  transition: filter 0.45s ease, transform 0.6s var(--ease-expo);
}
.ring__card:hover img { filter: brightness(1) saturate(1); transform: scale(1.1); }
.ring__center {
  position: relative; z-index: 2; text-align: center;
  display: flex; flex-direction: column; gap: 0.9rem; align-items: center;
  pointer-events: none;
}
.ring__center-serif {
  font-size: clamp(2.2rem, 6vw, 4.6rem); color: var(--ink);
  text-shadow: 0 4px 40px rgba(10, 10, 10, 0.8);
}
.ring__center-hint { color: var(--muted); letter-spacing: 0.3em; }
.ring__stage.is-dragging { cursor: grabbing; }
.ring__stage.is-dragging .ring__card img { transition: none; }

/* ─── Work lightbox ─── */
.lightbox {
  position: fixed; inset: 0; z-index: 9600;
  background: rgba(8, 8, 8, 0.93); backdrop-filter: blur(12px);
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  padding: 3vw; gap: 1rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease-expo), visibility 0.4s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__figure {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  transform: scale(0.92); transition: transform 0.5s var(--ease-expo);
}
.lightbox.is-open .lightbox__figure { transform: scale(1); }
.lightbox__figure img {
  max-width: min(1100px, 86vw); max-height: 78vh;
  border-radius: 8px; box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7);
  object-fit: contain;
}
.lightbox__figure figcaption {
  color: rgba(236, 236, 236, 0.85); display: flex; gap: 1.6rem; align-items: baseline;
}
.lightbox__count { color: #7a7a7a; }
.lightbox__close {
  position: absolute; top: 2rem; right: 2.4rem; font-size: 1.4rem; z-index: 2;
  width: 54px; height: 54px; border-radius: 50%; color: #ECECEC;
  border: 1px solid rgba(236, 236, 236, 0.3);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.lightbox__close:hover { background: var(--red); border-color: var(--red); transform: rotate(90deg); }
.lightbox__nav {
  width: 56px; height: 56px; border-radius: 50%; font-size: 1.2rem; color: #ECECEC;
  border: 1px solid rgba(236, 236, 236, 0.3); flex: none;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-expo);
}
.lightbox__nav:hover { background: var(--red); border-color: var(--red); transform: scale(1.1); }
@media (max-width: 700px) {
  .lightbox { grid-template-columns: 1fr; padding: 4vw; }
  .lightbox__nav { position: fixed; bottom: 1.4rem; z-index: 2; }
  .lightbox__nav--prev { left: 1.4rem; }
  .lightbox__nav--next { right: 1.4rem; }
}

/* ─── WhatsApp float ─── */
.wa {
  position: fixed; right: clamp(1.1rem, 2.5vw, 2rem); bottom: clamp(1.1rem, 2.5vw, 2rem);
  z-index: 8700;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 14px 40px -8px rgba(37, 211, 102, 0.55);
  transition: box-shadow 0.3s, background 0.3s;
}
.wa svg { width: 32px; height: 32px; position: relative; z-index: 2; }
.wa__ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.7);
  animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(1.75); opacity: 0; }
}
.wa__label {
  position: absolute; right: calc(100% + 0.9rem); top: 50%; transform: translateY(-50%) translateX(8px);
  background: rgba(10, 10, 10, 0.85); color: var(--ink);
  padding: 0.55rem 0.9rem; border-radius: 6px; border: 1px solid var(--hairline);
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.3s var(--ease-expo);
}
.wa:hover .wa__label { opacity: 1; transform: translateY(-50%) translateX(0); }
.wa:hover { background: #1fc65b; box-shadow: 0 18px 50px -8px rgba(37, 211, 102, 0.75); }

/* ─── Clients ─── */
.clients { overflow: hidden; }
.clients__rows { display: flex; flex-direction: column; gap: 0.3rem; }
.clients__row { overflow: hidden; }
.clients__track {
  display: flex; align-items: center; white-space: nowrap; will-change: transform;
  font-weight: 820; font-stretch: 112%;
  font-size: clamp(2rem, 5.2vw, 4.4rem); text-transform: uppercase; letter-spacing: -0.01em;
  color: var(--ink);
}
.clients__track .outline { color: transparent; -webkit-text-stroke: 1px rgba(236, 236, 236, 0.4); }
.clients__track span { padding: 0 0.6rem; opacity: 0.85; transition: opacity 0.3s; }
.clients__row:hover .clients__track span { opacity: 1; }

/* Big serif section title, contact-style, with the red underline highlight */
.clients__title {
  font-weight: 860; font-stretch: 115%;
  font-size: clamp(1.9rem, 7.4vw, 7rem); line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: clamp(2.6rem, 5vw, 4.2rem);
}
.clients__title .serif { font-weight: 400; color: var(--ink); }

/* ─── Floating client logos (cursor-light field, JS-driven) ─── */
.clients__logos {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: clamp(1.4rem, 3.2vw, 2.6rem) clamp(1.6rem, 3.8vw, 3.2rem);
  padding-top: 1rem;
}
.clients__logo { display: inline-block; will-change: transform; --glow: #ECECEC; }
:root[data-theme="light"] .clients__logo { --glow: #0a0a0a; }
.clients__logo img {
  height: clamp(24px, 3.6vw, 40px); width: auto; display: block;
  opacity: 0.55;
  filter: brightness(0) invert(1);
  transition: filter 0.35s ease, opacity 0.35s ease, transform 0.45s var(--ease-expo);
}
:root[data-theme="light"] .clients__logo img { filter: brightness(0); }
/* hover: the mark ignites in its own brand color */
.clients__logo:hover img {
  opacity: 1; transform: scale(1.14);
  filter: brightness(0) invert(1)
          drop-shadow(0 0 9px var(--glow))
          drop-shadow(0 0 26px var(--glow));
}
:root[data-theme="light"] .clients__logo:hover img {
  filter: brightness(0)
          drop-shadow(0 0 9px var(--glow))
          drop-shadow(0 0 26px var(--glow));
}
/* colored brands drop the silhouette and reveal their true colors */
.clients__logo.is-colored:hover img,
:root[data-theme="light"] .clients__logo.is-colored:hover img {
  filter: drop-shadow(0 0 9px var(--glow))
          drop-shadow(0 0 26px var(--glow));
}

/* ─── FAQ ─── */
.faq__list { max-width: 900px; border-top: 1px solid var(--hairline); }
.faq__item { border-bottom: 1px solid var(--hairline); }
.faq__item summary {
  display: flex; align-items: baseline; gap: 1.2rem;
  padding: 1.5rem 0.4rem; cursor: pointer; list-style: none;
  font-family: var(--display); font-weight: 640; font-stretch: 108%;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  transition: color 0.3s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--red); }
.faq__num { color: var(--red); flex: none; }
.faq__plus {
  margin-left: auto; font-weight: 300; font-size: 1.4em; line-height: 1;
  color: var(--muted); transition: transform 0.4s var(--ease-expo), color 0.3s;
}
.faq__item[open] .faq__plus { transform: rotate(45deg); color: var(--red); }
.faq__item p {
  padding: 0 0.4rem 1.7rem calc(1.2rem + 2ch);
  color: var(--muted); max-width: 62ch; font-size: 0.98rem;
}
.faq__item p a { color: var(--ink); border-bottom: 1px solid var(--hairline); }
.faq__item p a:hover { color: var(--red); border-color: var(--red); }

/* ─── Contact ─── */
.contact { padding-bottom: clamp(4rem, 8vw, 7rem); }
.cta-band {
  overflow: hidden; border-block: 1px solid var(--hairline);
  padding: 0.6rem 0; margin-bottom: clamp(3rem, 7vw, 6rem);
}
.cta-band__track {
  display: flex; white-space: nowrap; will-change: transform;
  font-weight: 900; font-stretch: 120%;
  font-size: clamp(1.8rem, 7vw, 6.4rem); text-transform: uppercase; letter-spacing: -0.015em;
  color: transparent; -webkit-text-stroke: 1.5px rgba(236, 236, 236, 0.5);
}
.cta-band__track span { padding-right: 1rem; }
.cta-band__track em { -webkit-text-stroke: 0; color: var(--red); }
.contact__title {
  font-weight: 860; font-stretch: 115%;
  font-size: clamp(1.7rem, 8vw, 7.6rem); line-height: 0.98; text-transform: uppercase;
  letter-spacing: -0.02em; margin-bottom: 3rem;
}
.contact__line { display: block; }
.contact__line--serif .serif { text-transform: none; font-weight: 400; color: var(--ink); }
.contact__email {
  display: inline-block;
  font-weight: 250; font-stretch: 105%;
  font-size: clamp(1.2rem, 3.4vw, 2.4rem);
  border-bottom: 1px solid var(--hairline); padding-bottom: 0.35rem;
  transition: color 0.3s, border-color 0.3s;
}
.contact__email:hover { color: var(--red); border-color: var(--red); }
.contact__meta {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem; margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--hairline); padding-top: 2rem;
  color: var(--ink);
}
.contact__meta div { display: flex; flex-direction: column; gap: 0.5rem; }
.contact__meta-label { color: var(--muted); }
.contact__meta a:hover { color: var(--red); }

/* Social buttons */
.socials { display: flex; gap: 0.9rem; margin-top: 0.3rem; }
.social {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--hairline);
  display: grid; place-items: center; color: var(--ink);
  transition: transform 0.45s var(--ease-expo), background 0.35s,
    border-color 0.35s, color 0.35s, box-shadow 0.45s;
}
.social svg { width: 21px; height: 21px; }
.social:hover { transform: translateY(-5px) scale(1.06); border-color: transparent; color: #fff; }
.social--ig:hover {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  box-shadow: 0 14px 34px -10px rgba(214, 36, 159, 0.6);
}
.social--li:hover {
  background: #0a66c2;
  box-shadow: 0 14px 34px -10px rgba(10, 102, 194, 0.6);
}

/* ─── Footer ─── */
.footer {
  border-top: 1px solid var(--hairline);
}
.footer__row { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; justify-content: center; }
.footer__icon { height: 26px; opacity: 0.8; }
/* Centered at the very bottom — clear of the WhatsApp float on the right */
.footer__top {
  color: var(--muted);
  padding: 0.85rem 1.7rem; border: 1px solid var(--hairline); border-radius: 999px;
  transition: color 0.3s, border-color 0.3s, background 0.3s, transform 0.4s var(--ease-expo);
}
.footer__top:hover {
  color: #ECECEC; border-color: var(--red); background: var(--red);
  transform: translateY(-3px);
}

/* ─── Modal ─── */
.modal {
  position: fixed; inset: 0; z-index: 9500;
  background: rgba(8, 8, 8, 0.94); backdrop-filter: blur(10px);
  display: grid; place-items: center; padding: 4vw;
  opacity: 0; visibility: hidden;
  transition: opacity 0.45s var(--ease-expo), visibility 0.45s;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__video {
  width: min(1200px, 100%); max-height: 82vh; border-radius: 6px;
  transform: scale(0.94); transition: transform 0.5s var(--ease-expo);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
}
.modal.is-open .modal__video { transform: scale(1); }
.modal__close {
  position: absolute; top: 2rem; right: 2.4rem; font-size: 1.4rem;
  width: 54px; height: 54px; border-radius: 50%;
  border: 1px solid rgba(236, 236, 236, 0.3);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.modal__close:hover { background: var(--red); border-color: var(--red); transform: rotate(90deg); }

/* ─── Split-reveal & generic reveal (GSAP-driven) ─── */
.split-reveal .sr-line { display: block; overflow: hidden; }
.split-reveal .sr-inner { display: block; }
.reveal { opacity: 0; }
#siteFooter .reveal { opacity: 1; }
.word { display: inline-block; will-change: color; }

/* Underline draw (Cicada-style) */
.u-draw { position: relative; white-space: nowrap; }
.u-draw::after {
  content: ""; position: absolute; left: 0.02em; right: 0.02em; bottom: -0.04em;
  height: 0.045em; min-height: 2px; background: var(--red); border-radius: 2px;
  transform: scaleX(0); transform-origin: left center;
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.u-draw.is-drawn::after { transform: scaleX(1); }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  /* perf: skip decorative layers on phones */
  .gridlines { display: none; }
  .grain { opacity: 0.04; }

  .nav__links, .nav__time { display: none; }
  .nav__burger {
    display: flex; flex-direction: column; gap: 7px; z-index: 7600;
    width: 44px; height: 44px; align-items: center; justify-content: center;
  }
  .nav__burger span { width: 26px; height: 2px; background: var(--ink); display: block; transition: transform 0.4s var(--ease-expo); }
  .nav__burger.is-open span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
  .nav__burger.is-open span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }
  .nav__cta { display: none; }

  .hero { padding-bottom: 4.5rem; }
  .hero__meta { flex-direction: column; gap: 0.4rem; top: 4.6rem; }
  .hero__meta-item:nth-child(2), .hero__meta-item:nth-child(3) { text-align: left; }
  .hero__play { width: 100px; height: 100px; }

  .about__row { grid-template-columns: 1fr; gap: 0.7rem; padding: 1.7rem 0; }
  .service { grid-template-columns: 2.4rem 1fr auto; gap: 0.9rem; padding: 1.1rem 0.3rem; }
  .service__tag { display: none; }

  /* Horizontal section falls back to vertical stack */
  .hwork__track { display: block; height: auto; }
  .hpanel { width: 100% !important; height: auto; padding: 3.5rem var(--pad); border-right: none; border-bottom: 1px solid var(--hairline-soft); }
  .hpanel--intro .shead { position: static; margin-bottom: 2.5rem; }
  .case__results { grid-template-columns: 1fr; gap: 0.9rem; }

  .contact__meta { grid-template-columns: 1fr; }
  .footer { padding: 0; }
}

/* ─── Light theme targeted overrides ─── */
:root[data-theme="light"] .nav.is-scrolled { background: rgba(236, 236, 236, 0.78); }
/* White logo → dark version on light surfaces (hue-rotate keeps the red dot red) */
:root[data-theme="light"] .nav.is-scrolled .nav__logo img,
:root[data-theme="light"] .footer__icon { filter: invert(1) hue-rotate(180deg); }
:root[data-theme="light"] .menu .nav__logo img { filter: invert(1) hue-rotate(180deg); }
:root[data-theme="light"] .grain { filter: invert(1); opacity: 0.045; }
/* Hero sits on dark video in both themes — keep its type ivory */
:root[data-theme="light"] .hero__title { color: #ECECEC; }
:root[data-theme="light"] .hero__title-line--outline .ht { -webkit-text-stroke-color: #ECECEC; }
:root[data-theme="light"] .hero__title-line .ht sup { color: #ECECEC; }
:root[data-theme="light"] .clients__track .outline { -webkit-text-stroke-color: rgba(10, 10, 10, 0.42); }
:root[data-theme="light"] .cta-band__track { -webkit-text-stroke-color: rgba(10, 10, 10, 0.5); }
:root[data-theme="light"] .ring__card { box-shadow: 0 24px 60px -20px rgba(10, 10, 10, 0.35); }
:root[data-theme="light"] .ring__card img { filter: brightness(0.94) saturate(0.92); }
:root[data-theme="light"] .ring__center-serif { text-shadow: 0 4px 40px rgba(236, 236, 236, 0.8); }
:root[data-theme="light"] .case { background: linear-gradient(160deg, rgba(10, 10, 10, 0.04), transparent 55%); }

/* ─── Ultra-compact ─── */
@media (max-width: 480px) {
  .shead { flex-wrap: wrap; row-gap: 0.4rem; }
  .shead__meta { flex-basis: 100%; margin-left: 0; text-align: left; }
  .service { grid-template-columns: 1.8rem 1fr 1.6rem; gap: 0.7rem; }
  .service__name { font-size: 1.15rem; }
  .contact__email { font-size: 1.05rem; word-break: break-all; }
  .hero__play { width: 88px; height: 88px; }
  .case__top { flex-direction: column; align-items: flex-start; }
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .grain { display: none; }
}

/* ═══════════════ SUB-PAGES (service pages) ═══════════════ */
.phero {
  position: relative; min-height: 88svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 8rem var(--pad) 4rem; overflow: hidden;
}
.phero__media { position: absolute; inset: 0; z-index: 0; }
.phero__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.8) brightness(0.9); }
.phero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.35) 40%, rgba(10,10,10,0.94) 100%);
}
.phero__content { position: relative; z-index: 2; }
.phero__crumb { color: rgba(236,236,236,0.8); margin-bottom: 1.4rem; }
.phero__crumb i { font-style: normal; color: var(--red); padding: 0 0.5rem; font-size: 0.6em; vertical-align: middle; }
.phero__crumb a:hover { color: #fff; }
.phero__title {
  font-weight: 900; font-stretch: 118%;
  font-size: clamp(2.6rem, 8.6vw, 8rem); line-height: 0.95;
  text-transform: uppercase; letter-spacing: -0.02em;
  color: #ECECEC; margin-bottom: 1.6rem;
}
.phero__title .serif { text-transform: none; font-weight: 400; color: #ECECEC; }
.phero__lede { max-width: 60ch; color: rgba(236,236,236,0.85); font-size: clamp(1rem, 1.6vw, 1.2rem); margin-bottom: 2.6rem; }
.phero__stats { display: grid; grid-template-columns: repeat(3, minmax(120px, 220px)); gap: 1.6rem; }
.phero__stats .stat p, .phero__stats .stat__num { color: #ECECEC; }

.pblock { padding: clamp(4rem, 8vw, 7rem) var(--pad); }
.pblock--surface { background: var(--surface); padding: clamp(4rem, 8vw, 7rem) var(--pad); }
.pgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 1.6rem; }
.pcard {
  border: 1px solid var(--hairline); border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  transition: border-color 0.35s, transform 0.45s var(--ease-expo);
}
.pcard:hover { border-color: rgba(203, 6, 6, 0.5); transform: translateY(-5px); }
.pcard h3 {
  font-weight: 780; font-stretch: 110%; font-size: 1.25rem;
  text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 0.7rem;
}
.pcard p { color: var(--muted); font-size: 0.95rem; }

.pwork__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); gap: 1.4rem; }
.pwork__card {
  position: relative; aspect-ratio: 9 / 16; max-height: 70vh;
  border-radius: 12px; overflow: hidden; cursor: pointer;
  border: 1px solid var(--hairline); padding: 0; width: 100%;
  transition: border-color 0.35s, transform 0.5s var(--ease-expo), box-shadow 0.5s;
}
.pwork__card:hover { border-color: rgba(203,6,6,0.6); transform: translateY(-7px); box-shadow: 0 30px 70px -26px rgba(203,6,6,0.3); }
.pwork__card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pblock__note { margin-top: 2.2rem; color: var(--muted); max-width: 70ch; }
.plink { color: var(--ink); border-bottom: 1px solid var(--hairline); }
.plink:hover { color: var(--red); border-color: var(--red); }

.psteps { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr)); gap: 1.6rem; }
.pstep { border-top: 1px solid var(--hairline); padding-top: 1.4rem; }
.pstep__num { color: var(--red); display: block; margin-bottom: 0.8rem; }
.pstep h3 { font-weight: 780; font-stretch: 110%; font-size: 1.1rem; text-transform: uppercase; margin-bottom: 0.6rem; }
.pstep p { color: var(--muted); font-size: 0.94rem; }

.pcta {
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.6rem;
}
.pcta__title {
  font-weight: 860; font-stretch: 115%;
  font-size: clamp(2.2rem, 7vw, 6.4rem); line-height: 1;
  text-transform: uppercase; letter-spacing: -0.02em;
}
.pcta__title .serif { text-transform: none; font-weight: 400; color: var(--ink); }
.pcta__sub { color: var(--muted); }
.footer__nav a:hover { color: var(--ink); }

@media (max-width: 700px) {
  .phero { min-height: 74svh; padding-bottom: 3rem; }
  .phero__stats { grid-template-columns: 1fr 1fr 1fr; gap: 0.8rem; }
  .pwork__card { max-height: none; }
}

/* Orbit spec-card page link */
.services__preview-link {
  color: var(--red); letter-spacing: 0.24em;
  border-bottom: 1px solid rgba(203, 6, 6, 0.4);
  padding-bottom: 0.2rem; transition: color 0.3s, border-color 0.3s;
}
.services__preview-link:hover { color: var(--ink); border-color: var(--ink); }

/* Static image work cards (branding page) */
.pwork__card--img { margin: 0; cursor: default; }
.pwork__row--static .pwork__card { aspect-ratio: 4 / 5; max-height: 60vh; }
.pwork__card--img:hover { transform: none; box-shadow: none; border-color: rgba(203,6,6,0.35); }

/* Case study pages */
.pprose { max-width: 62ch; color: var(--muted); font-size: 1.08rem; line-height: 1.75; }
.pprose strong { color: var(--ink); font-weight: 640; }
.cgallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 1.4rem; }
.cgallery figure { margin: 0; border-radius: 12px; overflow: hidden; border: 1px solid var(--hairline); }
.cgallery img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4 / 5; }
.cgallery--wide { grid-template-columns: 1fr; max-width: 640px; }
.cgallery--wide img { aspect-ratio: auto; }
.cquote {
  margin: 0; padding: clamp(2rem, 5vw, 3.6rem) 0 0;
  max-width: 46ch;
}
.cquote p {
  font-family: "Instrument Serif", serif; font-style: italic;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem); line-height: 1.3; color: var(--ink);
}
.cquote p::before { content: "\201C"; color: var(--red); }
.cquote p::after { content: "\201D"; color: var(--red); }
.cquote footer { margin-top: 1.4rem; color: var(--red); letter-spacing: 0.22em; }
.cres { border-left: 2px solid var(--red); padding-left: 1.4rem; }
.cres h3 { font-weight: 820; font-stretch: 112%; font-size: clamp(1.6rem, 3.4vw, 2.6rem); text-transform: uppercase; margin-bottom: 0.5rem; }
.cres p { color: var(--muted); font-size: 0.95rem; }

/* Blog */
.bgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 1.4rem; }
a.bcard {
  display: block; border: 1px solid var(--hairline); border-radius: 14px;
  padding: 1.8rem 1.6rem; background: var(--surface);
  transition: border-color 0.35s, transform 0.5s var(--ease-expo);
}
a.bcard:hover { border-color: rgba(203, 6, 6, 0.5); transform: translateY(-5px); }
.bcard__meta { color: var(--red); letter-spacing: 0.2em; font-size: 0.72rem; display: block; margin-bottom: 0.9rem; }
.bcard h3 { font-weight: 780; font-stretch: 110%; font-size: 1.3rem; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 0.7rem; }
.bcard p { color: var(--muted); font-size: 0.95rem; }
.bcard__more { display: inline-block; margin-top: 1.1rem; color: var(--ink); font-size: 0.8rem; letter-spacing: 0.18em; }
a.bcard:hover .bcard__more { color: var(--red); }

.apost { max-width: 68ch; }
.apost__meta { color: var(--red); letter-spacing: 0.22em; margin-bottom: 1rem; display: block; }
.apost > p { color: var(--muted); font-size: 1.06rem; line-height: 1.8; margin-bottom: 1.4rem; }
.apost > p strong, .apost li strong { color: var(--ink); font-weight: 640; }
.apost h2 {
  font-weight: 800; font-stretch: 112%; text-transform: uppercase;
  font-size: clamp(1.4rem, 3vw, 1.9rem); letter-spacing: 0.01em;
  margin: 2.6rem 0 1rem; padding-top: 1.6rem; border-top: 1px solid var(--hairline);
}
.apost h3 { font-weight: 720; font-size: 1.12rem; text-transform: uppercase; margin: 1.8rem 0 0.7rem; }
.apost ul, .apost ol { margin: 0 0 1.4rem 1.2rem; }
.apost li { color: var(--muted); font-size: 1.02rem; line-height: 1.75; margin-bottom: 0.55rem; }
.apost li::marker { color: var(--red); }
.apost a { color: var(--ink); border-bottom: 1px solid var(--hairline); }
.apost a:hover { color: var(--red); border-color: var(--red); }
.apost blockquote {
  margin: 2rem 0; padding-left: 1.4rem; border-left: 2px solid var(--red);
  font-family: "Instrument Serif", serif; font-style: italic; font-size: 1.3rem; color: var(--ink);
}

/* ═══ Conversion: proof strip ═══ */
.proof { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem; }
.proof__badge {
  border: 1px solid rgba(203, 6, 6, 0.45); color: var(--ink);
  border-radius: 100px; padding: 0.55rem 1.1rem;
  font-size: 0.72rem; letter-spacing: 0.18em; white-space: nowrap;
}
.proof__badge:first-child { background: var(--red); border-color: var(--red); color: #fff; }

/* ═══ Conversion: 60-second brief form ═══ */
.brief {
  width: min(760px, 100%); margin: 0 auto; text-align: left;
  background: var(--surface); border: 1px solid var(--hairline);
  border-radius: 18px; padding: clamp(1.6rem, 4vw, 2.6rem);
}
.brief__title { color: var(--red); letter-spacing: 0.26em; margin-bottom: 1.4rem; }
.brief__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.4rem; }
.brief__field { display: flex; flex-direction: column; gap: 0.45rem; }
.brief__field > span { color: var(--muted); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; }
.brief__field--wide { grid-column: 1 / -1; }
.brief input, .brief select, .brief textarea {
  background: var(--black); color: var(--ink);
  border: 1px solid var(--hairline); border-radius: 10px;
  padding: 0.85rem 1rem; font: inherit; font-size: 0.95rem;
  outline: none; transition: border-color 0.3s; width: 100%;
}
.brief input:focus, .brief select:focus, .brief textarea:focus { border-color: var(--red); }
.brief textarea { resize: vertical; min-height: 84px; }
.brief select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px; background-repeat: no-repeat; }
.brief__actions { display: flex; align-items: center; gap: 1.3rem; flex-wrap: wrap; margin-top: 1.5rem; }
.brief__send {
  display: inline-block; background: var(--red); color: #fff;
  border: none; border-radius: 100px; cursor: pointer;
  padding: 1.05rem 2.1rem; font-family: var(--mono); font-size: 0.8rem;
  letter-spacing: 0.2em; transition: transform 0.4s var(--ease-expo), box-shadow 0.4s;
}
.brief__send:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -14px rgba(203, 6, 6, 0.55); }
.brief__alt { background: none; border: none; cursor: pointer; color: var(--muted);
  font-size: 0.75rem; letter-spacing: 0.16em; border-bottom: 1px solid var(--hairline); padding-bottom: 0.2rem; }
.brief__alt:hover { color: var(--ink); border-color: var(--ink); }
.brief__promise { margin-top: 1.3rem; color: var(--muted); font-size: 0.68rem; letter-spacing: 0.22em; }
.brief__note { margin-top: 0.7rem; color: var(--red); font-size: 0.72rem; letter-spacing: 0.12em; }
.contact__email--sub { font-size: clamp(1rem, 2vw, 1.3rem); opacity: 0.75; margin-top: 1.8rem; }
.pcta__row .brief__send--link { text-decoration: none; }
@media (max-width: 700px) { .brief__grid { grid-template-columns: 1fr; } }

/* ═══ Conversion: playbook lead magnet ═══ */
.magnet {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem;
  justify-content: space-between;
  border: 1px solid rgba(203, 6, 6, 0.45); border-radius: 18px;
  background: var(--surface); padding: clamp(1.4rem, 3.4vw, 2.2rem);
  margin-top: 3rem;
}
.magnet__txt h3 { font-weight: 800; font-stretch: 112%; text-transform: uppercase; font-size: 1.25rem; margin-bottom: 0.45rem; }
.magnet__txt p { color: var(--muted); font-size: 0.92rem; max-width: 52ch; }
.magnet .brief__send { white-space: nowrap; }

/* ═══ Footer 2.0 — statement footer ═══ */
.footer { padding: 0; border-top: 1px solid var(--hairline); }
.footer__cta {
  display: flex; flex-direction: column; align-items: center; gap: 0.9rem;
  padding: clamp(3.4rem, 7vw, 5.5rem) var(--pad) clamp(2.4rem, 5vw, 4rem);
  text-align: center;
}
.footer__hook { color: var(--red); letter-spacing: 0.3em; font-size: 0.72rem; }
.footer__talk {
  font-weight: 860; font-stretch: 115%; text-transform: uppercase;
  font-size: clamp(2.4rem, 7vw, 5.6rem); line-height: 1; color: var(--ink);
  display: inline-flex; align-items: center; gap: 1.6rem;
  transition: color 0.35s;
}
.footer__talk em { font-style: italic; font-weight: 400; text-transform: none; transition: transform 0.45s var(--ease-expo); }
.footer__talk:hover { color: var(--red); }
.footer__talk:hover em { transform: translateX(0.65em); }
.footer__grid {
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 2.2rem; padding: 0 var(--pad) clamp(2.4rem, 5vw, 4rem);
  border-top: 1px solid var(--hairline);
  padding-top: clamp(2.4rem, 5vw, 4rem);
  max-width: 1340px; margin: 0 auto;
}
.footer__col h4 { color: var(--red); font-size: 0.68rem; letter-spacing: 0.3em; font-weight: 400; margin-bottom: 1.2rem; }
.footer__col a {
  display: block; color: var(--muted); font-size: 0.78rem; letter-spacing: 0.1em;
  padding: 0.34rem 0; position: relative; transition: color 0.3s, transform 0.35s var(--ease-expo);
}
.footer__col a::before {
  content: ""; position: absolute; left: -1.05em; top: 50%;
  width: 0.65em; height: 1px; background: var(--red);
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease-expo);
}
.footer__col a:hover { color: var(--ink); transform: translateX(1.05em); }
.footer__col a:hover::before { transform: scaleX(1); }
.footer__col--brand { display: flex; flex-direction: column; gap: 1.1rem; align-items: flex-start; }
.footer__icon { width: 44px; opacity: 0.9; }
:root[data-theme="light"] .footer__icon { filter: invert(1); }
.footer__tagline { color: var(--muted); font-size: 0.92rem; line-height: 1.6; }
.footer__word {
  font-weight: 900; font-stretch: 120%; text-transform: uppercase;
  font-size: clamp(4rem, 17.5vw, 17rem); line-height: 0.82;
  text-align: center; letter-spacing: 0.01em;
  color: var(--ink); user-select: none; cursor: pointer;
  overflow: hidden; padding-top: 0.08em;
}
.footer__word .fl { display: inline-block; will-change: transform; transition: color 0.3s; transform-origin: bottom center; }
.footer__word .fl.is-hot { color: var(--red); }
.footer__base {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.9rem;
  padding: 1.3rem var(--pad) 1.5rem; border-top: 1px solid var(--hairline);
  font-size: 0.66rem; letter-spacing: 0.18em; color: var(--muted);
}
.footer__toTop {
  background: none; border: 1px solid var(--hairline); border-radius: 100px;
  color: var(--ink); font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.2em;
  padding: 0.6rem 1.2rem; cursor: pointer; transition: border-color 0.3s, color 0.3s;
}
.footer__toTop:hover { border-color: var(--red); color: var(--red); }
@media (max-width: 980px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__col--brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } .footer__base { justify-content: center; text-align: center; } }

/* ═══ Footer v3: classy ═══ */
.footer__contact {
  border-bottom: 1px solid var(--hairline); color: var(--ink);
  padding-left: var(--pad); padding-right: var(--pad);
  text-align: center; display: flex; flex-direction: column; align-items: center;
}
.footer__contact .cta-band { width: calc(100% + 2 * var(--pad)); margin-inline: calc(-1 * var(--pad)); }
.footer__contact .contact__title { color: var(--ink); }
.footer__grid--neat {
  grid-template-columns: repeat(4, auto); justify-content: center;
  gap: clamp(2rem, 6vw, 5.5rem); max-width: 1100px;
}
@media (max-width: 760px) { .footer__grid--neat { grid-template-columns: 1fr 1fr; justify-items: start; } }
.footer__mark {
  overflow: hidden; text-align: center; line-height: 0.8;
  padding-top: 0.1em; user-select: none;
}
.footer__mark-line {
  display: inline-block; white-space: nowrap;
  font-weight: 900; font-stretch: 120%; text-transform: uppercase;
  font-size: clamp(1.6rem, 6.5vw, 6.9rem); letter-spacing: -0.015em;
  color: var(--ink); transform: translateY(14%);
  transition: color 0.5s, -webkit-text-stroke-color 0.5s;
}
.footer__mark-line .outline { transition: -webkit-text-stroke-color 0.5s; }
.footer__mark:hover .footer__mark-line { color: var(--red); }
.footer__mark:hover .outline { -webkit-text-stroke-color: var(--red); }

/* ═══ Madlib brief ═══ */
.brief--mad { background: none; border: none; padding: 0; width: min(880px, 100%); text-align: center; }
.mad {
  font-size: clamp(1.15rem, 2.6vw, 1.85rem); line-height: 2.1;
  color: var(--ink); font-weight: 460; text-align: center;
}
.mad__t { opacity: 0.85; }
.brief--mad input.mad__in, .brief--mad select.mad__in {
  display: inline-block; background: transparent; border: none;
  border-bottom: 1px solid var(--hairline);
  font-family: var(--serif); font-style: italic;
  font-size: 1em; color: var(--red); text-align: center;
  padding: 0 0.35em 0.05em; margin: 0 0.15em; outline: none;
  width: 7.5em; transition: border-color 0.3s;
}
.brief--mad input.mad__in::placeholder { color: var(--muted); opacity: 0.75; font-size: 0.82em; }
.brief--mad input.mad__in:focus, .brief--mad select.mad__in:focus { border-color: var(--red); }
.brief--mad input.mad__in--wide { width: min(19em, 90%); }
.brief--mad select.mad__sel {
  appearance: none; -webkit-appearance: none; cursor: pointer; width: auto;
  max-width: 14em; border-bottom-style: dashed; background-image: none;
}
.mad__sel option { font-family: var(--display); font-style: normal; color: #0a0a0a; background: #ECECEC; }
.brief--mad .brief__actions { justify-content: center; margin-top: 2rem; }

/* ═══ FAQ giant title ═══ */
.faq__giant {
  font-weight: 900; font-stretch: 120%;
  font-size: clamp(3.4rem, 13vw, 11rem); line-height: 0.85;
  text-transform: uppercase; letter-spacing: -0.02em;
  margin-bottom: clamp(2rem, 5vw, 3.6rem);
}

/* ═══ Client logos — every mark ignites in its brand color ═══ */
.clients__logo { position: relative; }
.clients__logo:not(.is-colored)::after {
  content: ""; position: absolute; inset: 0;
  background: var(--glow);
  -webkit-mask: var(--mark) center / contain no-repeat;
  mask: var(--mark) center / contain no-repeat;
  opacity: 0; transition: opacity 0.35s ease;
  pointer-events: none;
  filter: drop-shadow(0 0 9px var(--glow)) drop-shadow(0 0 26px var(--glow));
  transform: scale(1);
  transition: opacity 0.35s ease, transform 0.45s var(--ease-expo);
}
.clients__logo:not(.is-colored):hover::after { opacity: 1; transform: scale(1.14); }
.clients__logo:not(.is-colored):hover img { opacity: 0; }

/* ═══ Footer contact rail ═══ */
.footer__rail {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--hairline);
  max-width: 1340px; margin: 0 auto; width: 100%;
}
.rail__cell {
  position: relative; display: flex; flex-direction: column; gap: 0.55rem;
  padding: clamp(1.6rem, 3.2vw, 2.4rem) clamp(1.2rem, 2.4vw, 2rem);
  border-right: 1px solid var(--hairline);
  transition: background 0.35s;
  overflow: hidden;
}
.rail__cell:last-child { border-right: none; }
.rail__label { color: var(--muted); font-size: 0.62rem; letter-spacing: 0.28em; transition: color 0.3s; }
.rail__value {
  font-weight: 640; font-stretch: 108%; font-size: clamp(0.95rem, 1.4vw, 1.18rem);
  color: var(--ink); transition: color 0.3s, transform 0.4s var(--ease-expo);
  overflow-wrap: anywhere; padding-right: 1.6rem;
}
.rail__arrow {
  position: absolute; right: 1.3rem; bottom: 1.1rem;
  font-family: var(--serif); font-style: italic; font-size: 1.3rem;
  color: var(--red); opacity: 0; transform: translateX(-10px);
  transition: opacity 0.35s, transform 0.4s var(--ease-expo);
}
a.rail__cell:hover { background: var(--surface); }
a.rail__cell:hover .rail__label { color: var(--red); }
a.rail__cell:hover .rail__value { color: var(--red); transform: translateX(4px); }
a.rail__cell:hover .rail__arrow { opacity: 1; transform: translateX(0); }
.rail__cell--social .socials { margin-top: 0.1rem; }
@media (max-width: 900px) { .footer__rail { grid-template-columns: 1fr 1fr; } .rail__cell { border-bottom: 1px solid var(--hairline); } .rail__cell:nth-child(2n) { border-right: none; } }
@media (max-width: 480px) { .footer__rail { grid-template-columns: 1fr; } .rail__cell { border-right: none; } }

/* Footer contact: tighter rhythm under the tape */
.footer__contact .cta-band { margin-bottom: clamp(1.8rem, 3.4vw, 2.8rem); }
.footer__contact .contact__title { margin-bottom: 1.6rem; }
.footer__contact .proof { margin-bottom: 2rem; }
.footer__contact { padding-top: 0; }

/* ═══ CTA buttons — curtain fill, arrow slide, glow ═══ */
.btn-cta {
  position: relative; overflow: hidden; cursor: pointer;
  border-radius: 100px; padding: 1.1rem 2.2rem;
  font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.2em;
  transition: transform 0.45s var(--ease-expo), box-shadow 0.45s, border-color 0.35s;
  will-change: transform;
}
.btn-cta__label {
  position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 0.7rem;
  transition: color 0.35s;
}
.btn-cta__label svg { width: 1.15rem; height: 1.15rem; }
.btn-cta__label em {
  font-style: normal; display: inline-block;
  transition: transform 0.45s var(--ease-expo);
}
.btn-cta__fill {
  position: absolute; inset: 0; border-radius: inherit;
  transform: translateY(101%); transition: transform 0.5s var(--ease-expo);
}
.btn-cta:hover { transform: translateY(-3px); }
.btn-cta:hover .btn-cta__fill { transform: translateY(0); }
.btn-cta:hover .btn-cta__label em { transform: translateX(6px); }
.btn-cta:active { transform: translateY(-1px) scale(0.98); }

.btn-cta--solid { background: var(--red); border: 1px solid var(--red); color: #fff; }
.btn-cta--solid .btn-cta__fill { background: #0a0a0a; }
.btn-cta--solid:hover { box-shadow: 0 18px 45px -14px rgba(203, 6, 6, 0.65); border-color: #0a0a0a; }
:root[data-theme="light"] .btn-cta--solid .btn-cta__fill { background: #0a0a0a; }
:root[data-theme="light"] .btn-cta--solid:hover { border-color: #0a0a0a; }

.btn-cta--ghost { background: transparent; border: 1px solid var(--hairline); color: var(--ink); }
.btn-cta--ghost .btn-cta__fill { background: var(--red); }
.btn-cta--ghost:hover { border-color: var(--red); box-shadow: 0 18px 45px -14px rgba(203, 6, 6, 0.45); }
.btn-cta--ghost:hover .btn-cta__label { color: #fff; }

/* ═══ FAQ film strip — the work rolls by ═══ */
.faq { position: relative; overflow: hidden; }
.faq__film {
  position: absolute; top: -4%; bottom: -4%;
  right: clamp(1rem, 3vw, 4rem);
  width: clamp(220px, 17vw, 340px);
  display: flex; gap: 1.1rem;
  transform: rotate(3.5deg);
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
}
.faq__filmcol { flex: 1; animation: filmRoll 44s linear infinite; will-change: transform; }
.faq__filmcol--down { animation-direction: reverse; animation-duration: 56s; }
.filmset { display: flex; flex-direction: column; }
.filmset img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: 10px; margin-bottom: 1.1rem;
  opacity: 0.55; filter: saturate(0.85);
  border: 1px solid var(--hairline);
}
@keyframes filmRoll { to { transform: translateY(-50%); } }
@media (max-width: 1150px) { .faq__film { display: none; } }
@media (prefers-reduced-motion: reduce) { .faq__filmcol { animation: none; } }

/* ═══ Founder section — rotating ring + floating quote ═══ */
.manifesto { position: relative; overflow: hidden; }
.founder-orb {
  position: absolute; top: clamp(2rem, 9vh, 7rem); right: clamp(2rem, 7vw, 8rem);
  width: clamp(170px, 15vw, 250px); aspect-ratio: 1;
  animation: spin 28s linear infinite;
  opacity: 0.9; pointer-events: none;
}
.founder-orb__text {
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.32em;
  fill: var(--muted); text-transform: uppercase;
}
.founder-mark {
  position: absolute; right: clamp(0.5rem, 4vw, 4rem); bottom: -4%;
  font-family: var(--serif); line-height: 1;
  font-size: clamp(8rem, 18vw, 19rem);
  color: transparent; -webkit-text-stroke: 1.5px rgba(203, 6, 6, 0.4);
  pointer-events: none; user-select: none;
  animation: markFloat 7s ease-in-out infinite alternate;
}
@keyframes markFloat { from { transform: translateY(0) rotate(-2deg); } to { transform: translateY(-26px) rotate(2deg); } }
@media (max-width: 1150px) { .founder-orb, .founder-mark { display: none; } }
@media (prefers-reduced-motion: reduce) { .founder-orb, .founder-mark { animation: none; } }

/* FAQ: second strip on the left, list centered between the two */
.faq__film--left { left: clamp(1rem, 4vw, 5rem); right: auto; transform: rotate(-3.5deg); }
.faq__film--left .faq__filmcol { animation-duration: 52s; }
.faq__film--left .faq__filmcol--down { animation-duration: 47s; }
.faq__list {
  position: relative; z-index: 1; margin: 0 auto;
  background: var(--black);
  box-shadow: 0 0 46px 46px var(--black);
}
.faq__giant { position: relative; z-index: 1; text-align: center; }
@media (max-width: 1290px) { .faq__film { width: clamp(180px, 15vw, 250px); } }

/* Founder: bigger title, portrait, quote mark; orb removed (desktop only —
   the base <=900px media query must keep its single-column collapse) */
@media (min-width: 901px) {
  .manifesto__title { font-size: clamp(3rem, 10.5vw, 10rem); }
  .manifesto__grid { grid-template-columns: minmax(300px, 0.95fr) 1.05fr; }
  .manifesto__portrait { max-width: 560px; }
}
@media (max-width: 900px) {
  .manifesto__title { font-size: clamp(2.2rem, 10.5vw, 3.3rem); line-height: 0.92; }
}
.founder-mark {
  font-size: clamp(10rem, 26vw, 28rem) !important;
  right: clamp(0.5rem, 3vw, 3rem) !important; bottom: -9% !important;
  -webkit-text-stroke-width: 2px;
}

/* ═══ Pixel run — filmstrip game separator ═══ */
.pixelrun {
  position: relative; overflow: hidden;
  height: clamp(170px, 22vw, 270px);
  background: #000; border-block: 1px solid var(--hairline);
}
.pixelrun__rec {
  position: absolute; top: 1.1rem; left: 1.4rem; z-index: 2;
  color: #ECECEC; font-size: 0.66rem; letter-spacing: 0.3em;
}
.pixelrun__rec i { color: #CB0606; font-style: normal; animation: blink 1.1s steps(1) infinite; }
.pixelrun__stage { position: absolute; inset: 0; }
.pixelrun__stage svg { position: absolute; shape-rendering: crispEdges; }
.px-dash { position: absolute; background: #F7E11A; border-radius: 1px; }
.px-hero { will-change: transform; }
.px-balloon { animation: pxBob 3.2s ease-in-out infinite alternate; }
.px-flagwave { transform-origin: left center; animation: pxWave 1.6s ease-in-out infinite alternate; }
@keyframes pxBob { from { transform: translateY(0); } to { transform: translateY(-16px); } }
@keyframes pxWave { from { transform: skewY(0deg); } to { transform: skewY(-6deg); } }
@media (prefers-reduced-motion: reduce) {
  .px-balloon, .px-flagwave, .pixelrun__rec i { animation: none; }
}

/* ═══ Work rail intro — collage + circled serif sentence ═══ */
.hpanel--intro { width: 100vw; }
.hintro {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  align-items: center; gap: clamp(1rem, 3vw, 3rem);
  width: 100%; height: 100%; padding: 0 var(--pad);
}
.hintro__stickers { position: relative; height: min(64vh, 560px); }
.hsticker { position: absolute; display: block; will-change: transform; }
.hsticker__in { display: block; animation: stickerFloat 5.4s ease-in-out infinite alternate; }
.hsticker__in--slow { animation-duration: 7.2s; animation-delay: -2s; }
.hsticker__in--fast { animation-duration: 4.4s; animation-delay: -1s; }
@keyframes stickerFloat { from { transform: translateY(0) rotate(-1.5deg); } to { transform: translateY(-18px) rotate(1.5deg); } }
.polaroid {
  display: block; background: #ECECEC; padding: 8px 8px 30px;
  border-radius: 3px; box-shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.65);
}
.polaroid img {
  display: block; width: 100%; height: auto; aspect-ratio: 1; object-fit: cover;
  filter: grayscale(1) contrast(1.12);
}
.hsticker--pol1 { width: clamp(120px, 11vw, 190px); left: 6%; top: 4%; transform: rotate(-7deg); }
.hsticker--pol2 { width: clamp(100px, 9.5vw, 165px); right: 8%; top: 30%; transform: rotate(6deg); }
.hsticker--clap { width: clamp(110px, 10vw, 175px); left: 40%; top: 0; }
.hsticker--film { width: clamp(150px, 13vw, 230px); left: 12%; bottom: 8%; }
.hsticker--cam { left: 52%; bottom: 2%; }
.hintro__lead {
  font-weight: 300; font-stretch: 105%;
  font-size: clamp(1.6rem, 3.4vw, 3rem); color: var(--ink);
  margin-bottom: 0.4rem;
}
.hintro__big {
  font-family: var(--serif); font-weight: 400; text-transform: none;
  font-size: clamp(2.8rem, 7vw, 7rem); line-height: 1.06; letter-spacing: 0;
  color: var(--ink);
}
.hintro__circled { position: relative; white-space: nowrap; }
.scribble {
  position: absolute; inset: -0.28em -0.3em -0.24em; width: auto; height: auto;
  overflow: visible; pointer-events: none;
}
.scribble path {
  stroke-dasharray: 1400; stroke-dashoffset: 1400;
  vector-effect: non-scaling-stroke;
}
.scribble.is-drawn path { animation: scribbleDraw 1.4s cubic-bezier(0.5, 0, 0.2, 1) forwards; }
@keyframes scribbleDraw { to { stroke-dashoffset: 0; } }
@media (max-width: 900px) {
  .hintro { grid-template-columns: 1fr; gap: 2.5rem; padding: 0; }
  .hintro__stickers { height: 300px; order: 2; }
  .hintro__big { font-size: clamp(2.4rem, 10vw, 4rem); }
}
@media (prefers-reduced-motion: reduce) {
  .hsticker__in { animation: none; }
  .scribble path { stroke-dashoffset: 0; }
}

/* ═══ Work rail intro v2 — burst-from-the-box collage ═══ */
.hintro2 {
  display: grid; grid-template-columns: 0.95fr 1.05fr;
  align-items: center; gap: clamp(1rem, 2.5vw, 2.5rem);
  width: 100%;
}
.hintro2__stage { position: relative; height: min(62vh, 540px); }
.hst { position: absolute; display: block; will-change: transform; visibility: hidden; }
.hst__in { display: block; animation: stickerFloat 5.6s ease-in-out infinite alternate; }
.hst__in--slow { animation-duration: 7.4s; animation-delay: -2.4s; }
.hst__in--fast { animation-duration: 4.2s; animation-delay: -1.2s; }
.hst:hover .hst__in { animation-play-state: paused; }
.hst { transition: filter 0.3s; }
.hst:hover { filter: drop-shadow(0 0 18px rgba(203, 6, 6, 0.35)); }
.hst--box { left: 50%; bottom: -2%; width: clamp(170px, 15vw, 240px); transform: translateX(-50%); z-index: 2; }
.hst--box svg { width: 100%; height: auto; }
.hst--vhs { width: clamp(160px, 14vw, 240px); left: 2%; top: 34%; }
.hst--clap { width: clamp(120px, 11vw, 185px); left: 22%; top: -2%; }
.hst--pol1 { width: clamp(115px, 10.5vw, 175px); right: 4%; top: 6%; }
.hst--pol2 { width: clamp(95px, 9vw, 150px); right: 12%; top: 48%; }
.hst--play { width: clamp(62px, 5.5vw, 92px); left: 55%; top: 20%; }
.hst--cam { left: 8%; bottom: 12%; }
.hst svg { display: block; width: 100%; height: auto; }
.hst--cam svg { width: clamp(58px, 5vw, 80px); }

.hintro2__lead {
  font-weight: 300; font-stretch: 105%;
  font-size: clamp(1.6rem, 3.2vw, 2.9rem); color: var(--ink);
  margin-bottom: 0.35rem;
}
.hintro2__big {
  font-family: var(--serif); font-weight: 400; text-transform: none;
  font-size: clamp(2.8rem, 6.6vw, 6.6rem); line-height: 1.08; letter-spacing: 0;
  color: var(--ink);
}
.hintro2__circled { position: relative; white-space: nowrap; display: inline-block; }
.hintro2__circled .scribble {
  position: absolute; left: -7%; top: -20%; width: 114%; height: 142%;
  overflow: visible; pointer-events: none;
}
.hintro2__hint { margin-top: 2rem; color: var(--muted); letter-spacing: 0.24em; font-size: 0.7rem; }
.hintro2__hint em { color: var(--red); font-style: normal; }
.hintro2__arrow { display: inline-block; color: var(--red); animation: hintNudge 1.3s ease-in-out infinite; }
@keyframes hintNudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(8px); } }
@media (max-width: 900px) {
  .hintro2 { grid-template-columns: 1fr; gap: 2rem; }
  .hintro2__stage { height: 300px; order: 2; }
  .hintro2__big { font-size: clamp(2.3rem, 9.6vw, 3.8rem); }
}
@media (prefers-reduced-motion: reduce) {
  .hst { visibility: visible !important; }
  .hst__in, .hintro2__arrow { animation: none; }
}

/* Intro v2.1 — bigger sentence, fuller collage */
.hintro2__lead { font-size: clamp(1.9rem, 3.8vw, 3.4rem); }
.hintro2__big { font-size: clamp(3.2rem, 8vw, 8rem); }
.hst--reel { width: clamp(80px, 7.5vw, 120px); left: 34%; top: 34%; }
.hst--mega { width: clamp(85px, 8vw, 130px); right: 28%; top: -4%; }
.hst--rec { width: clamp(85px, 8vw, 125px); left: -2%; top: 6%; }
.hst--cup { width: clamp(60px, 5.5vw, 90px); right: -1%; bottom: 16%; }
.hst--spark { width: clamp(38px, 3.4vw, 58px); left: 44%; bottom: 22%; }
.hst--pol3 { width: clamp(100px, 9vw, 155px); right: 10%; bottom: -7%; }

/* ═══ FAQ handwritten tagline ═══ */
.faq__script {
  font-family: "Caveat", cursive; font-weight: 600;
  font-size: clamp(1.7rem, 3.6vw, 2.9rem); color: var(--red);
  text-align: center; transform: rotate(-3deg) translateX(9%);
  margin: -1.2rem 0 2.4rem; position: relative; z-index: 1;
}

/* ═══ Founder message doodles — drawn by scroll ═══ */
.doodle {
  display: inline-block; width: 1.5em; height: auto;
  vertical-align: -0.3em; margin: 0 0.18em; overflow: visible;
}
.doodle path {
  stroke: var(--red); stroke-width: 4.5; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 320; stroke-dashoffset: 320;
}

}
@media (prefers-reduced-motion: reduce) {
  .doodle path { stroke-dashoffset: 0; }
}

/* ═══ Mobile polish pass (2026-08-09) ═══ */
@media (max-width: 900px) {
  /* intro collage: fewer, calmer pieces on small stages */
  .hst--pol2, .hst--pol3, .hst--mega, .hst--rec, .hst--cup, .hst--reel { display: none; }
  .hst--pol1 { right: 2%; top: 0; width: clamp(105px, 26vw, 130px); }
  .hst--vhs { left: -1%; top: 30%; width: clamp(140px, 36vw, 170px); }
  .hst--clap { left: 30%; top: -3%; width: clamp(100px, 26vw, 130px); }
  .hst--play { right: 14%; top: 42%; width: clamp(54px, 14vw, 70px); }
  .hst--cam { left: 7%; bottom: 10%; }
  .hst--spark { right: 8%; bottom: 26%; }
  .hst--box { width: clamp(150px, 40vw, 190px); }
  .hintro2__hint { margin-top: 1.2rem; }
  /* footer mark gets more presence on phones */
  .footer__mark-line { font-size: clamp(2rem, 8.4vw, 6.9rem); }
  /* rail cells: comfier tap targets */
  .rail__cell { padding: 1.4rem 1.2rem; }
  /* madlib blanks: slightly narrower so lines break cleanly */
  .brief--mad input.mad__in { width: 6.5em; }
  .brief--mad input.mad__in--wide { width: 100%; }
}
@media (max-width: 520px) {
  .faq__script { transform: rotate(-3deg); }
  .hintro2__big { font-size: clamp(2.5rem, 12vw, 3.4rem); }
  .hintro2__lead { font-size: clamp(1.5rem, 6vw, 2rem); }
  .footer__toTop { padding: 0.75rem 1.4rem; }
}

/* ═══ Preloader v2 — film countdown leader ═══ */
.leader {
  position: relative; width: min(56vmin, 340px); aspect-ratio: 1;
  color: var(--ink);
  animation: leaderFlicker 0.16s steps(2) infinite;
}
.leader__art { position: absolute; inset: 0; width: 100%; height: 100%; }
.leader__sweep { transform-origin: 200px 200px; animation: spin 1s linear infinite; }
.leader__num {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-weight: 900; font-stretch: 120%;
  font-size: clamp(6rem, 26vmin, 11rem); line-height: 1;
  transform: translateY(-0.03em);
}
.leader__label {
  position: absolute; left: 50%; transform: translateX(-50%);
  font-size: 0.62rem; letter-spacing: 0.42em; color: var(--muted); white-space: nowrap;
}
.leader__label--top { top: -2.4rem; }
.leader__label--start {
  bottom: -2.4rem; color: var(--red); opacity: 0;
}
.preloader.is-done .leader__num { visibility: hidden; }
.preloader.is-done .leader__label--start { animation: blink 0.18s steps(1) infinite; opacity: 1; }
@keyframes leaderFlicker { 0% { opacity: 1; } 100% { opacity: 0.93; } }
@media (prefers-reduced-motion: reduce) {
  .leader, .leader__sweep { animation: none; }
}

/* ═══ Preloader v3 — camera viewfinder focus lock ═══ */
.preloader .preloader__meta { position: absolute; top: 1.6rem; left: 1.8rem; }
.preloader .preloader__word { position: absolute; bottom: 2.6rem; left: 50%; transform: translateX(-50%); }
.preloader .preloader__bar { position: absolute; bottom: 0; left: 0; right: 0; }
.vf { position: absolute; inset: 0; }
.vf__thirds {
  position: absolute; inset: 0; opacity: 0.14;
  background:
    linear-gradient(90deg, transparent calc(33.3% - 0.5px), var(--ink) 33.3%, transparent calc(33.3% + 0.5px)),
    linear-gradient(90deg, transparent calc(66.6% - 0.5px), var(--ink) 66.6%, transparent calc(66.6% + 0.5px)),
    linear-gradient(0deg, transparent calc(33.3% - 0.5px), var(--ink) 33.3%, transparent calc(33.3% + 0.5px)),
    linear-gradient(0deg, transparent calc(66.6% - 0.5px), var(--ink) 66.6%, transparent calc(66.6% + 0.5px));
}
.vf__corner { position: absolute; width: 34px; height: 34px; border: 2px solid var(--ink); opacity: 0.75; }
.vf__corner--tl { top: 1.2rem; left: 1.2rem; border-right: none; border-bottom: none; }
.vf__corner--tr { top: 1.2rem; right: 1.2rem; border-left: none; border-bottom: none; }
.vf__corner--bl { bottom: 1.2rem; left: 1.2rem; border-right: none; border-top: none; }
.vf__corner--br { bottom: 1.2rem; right: 1.2rem; border-left: none; border-top: none; }
.vf__center {
  position: absolute; inset: 0; display: grid; place-items: center;
}
.vf__word {
  font-weight: 900; font-stretch: 120%; letter-spacing: 0.02em;
  font-size: clamp(3rem, 12vw, 9.5rem); line-height: 1; color: var(--ink);
  filter: blur(16px); opacity: 0.5;
  will-change: filter, opacity;
}
.vf__focus {
  position: absolute; left: 50%; top: 50%;
  width: min(78vw, 560px); height: clamp(7rem, 24vw, 15rem);
  transform: translate(-50%, -50%);
  animation: focusHunt 0.9s ease-in-out infinite;
}
.vf__focus i {
  position: absolute; width: 26px; height: 26px;
  border: 2.5px solid var(--ink); transition: border-color 0.25s;
}
.vf__focus i:nth-child(1) { top: 0; left: 0; border-right: none; border-bottom: none; }
.vf__focus i:nth-child(2) { top: 0; right: 0; border-left: none; border-bottom: none; }
.vf__focus i:nth-child(3) { bottom: 0; left: 0; border-right: none; border-top: none; }
.vf__focus i:nth-child(4) { bottom: 0; right: 0; border-left: none; border-top: none; }
.vf__af {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%) translate(calc(min(39vw, 280px) + 1.4rem), calc(clamp(3.5rem, 12vw, 7.5rem) * -1));
  font-size: 0.62rem; letter-spacing: 0.3em; color: var(--muted);
}
@keyframes focusHunt {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  40% { transform: translate(calc(-50% + 5px), calc(-50% - 3px)) scale(1.025); }
  70% { transform: translate(calc(-50% - 4px), calc(-50% + 2px)) scale(0.985); }
}
.preloader.is-locked .vf__focus { animation: none; transform: translate(-50%, -50%) scale(1); }
.preloader.is-locked .vf__focus i { border-color: var(--red); }
.preloader.is-locked .vf__af { color: var(--red); }
.preloader.is-locked .vf__af::after { content: " LOCK"; }
.vf__hud { position: absolute; font-size: 0.62rem; letter-spacing: 0.28em; color: var(--muted); }
.vf__hud em { color: var(--red); font-style: normal; }
.vf__hud--tr { top: 1.7rem; right: 1.8rem; }
.vf__hud--bl { bottom: 2.7rem; left: 1.8rem; }
.vf__flash {
  position: absolute; inset: 0; background: #fff; opacity: 0; pointer-events: none;
}
.preloader.is-done .vf__flash { animation: shutterFlash 0.34s ease-out; }
@keyframes shutterFlash {
  0% { opacity: 0; } 18% { opacity: 0.95; } 42% { opacity: 0; }
  58% { opacity: 0.35; } 100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .vf__focus { animation: none; }
  .preloader.is-done .vf__flash { animation: none; }
}
@media (max-width: 700px) {
  .vf__hud--tr { top: auto; bottom: 4.4rem; right: 1.4rem; }
  .vf__af { display: none; }
}

/* ═══ Preloader v4 — glitch wordmark ═══ */
.glitch { position: absolute; inset: 0; overflow: hidden; display: grid; place-items: center; }
.glitch__word {
  position: relative; z-index: 1;
  font-weight: 900; font-stretch: 120%; letter-spacing: 0.01em;
  font-size: clamp(3.2rem, 13.5vw, 11rem); line-height: 1; color: var(--ink);
  animation: gBase 3.8s steps(1) infinite;
}
.glitch__word::before, .glitch__word::after {
  content: attr(data-text); position: absolute; inset: 0; z-index: -1;
}
.glitch__word::before { color: #575BFA; animation: gSliceA 2.9s steps(1) infinite; }
.glitch__word::after { color: #CB0606; animation: gSliceB 3.7s steps(1) infinite; }
@keyframes gBase {
  0%, 100% { transform: none; }
  7% { transform: skewX(-2.5deg) translateX(3px); } 8.6% { transform: none; }
  36% { transform: translateX(-4px); } 37.2% { transform: none; }
  64% { transform: skewX(1.8deg); } 65% { transform: none; }
  88% { transform: translate(2px, -2px); } 89.4% { transform: none; }
}
@keyframes gSliceA {
  0%, 100% { transform: none; clip-path: none; opacity: 0; }
  6% { opacity: 1; transform: translate(-9px, 2px); clip-path: inset(8% 0 62% 0); }
  9% { opacity: 0; }
  34% { opacity: 1; transform: translate(-13px, -3px); clip-path: inset(55% 0 12% 0); }
  38% { opacity: 0; }
  61% { opacity: 1; transform: translate(-7px, 1px); clip-path: inset(30% 0 42% 0); }
  63.5% { opacity: 0; }
  86% { opacity: 1; transform: translate(-11px, 4px); clip-path: inset(70% 0 4% 0); }
  90% { opacity: 0; }
}
@keyframes gSliceB {
  0%, 100% { transform: none; clip-path: none; opacity: 0; }
  11% { opacity: 1; transform: translate(10px, -2px); clip-path: inset(48% 0 26% 0); }
  14% { opacity: 0; }
  41% { opacity: 1; transform: translate(8px, 3px); clip-path: inset(4% 0 74% 0); }
  44.5% { opacity: 0; }
  70% { opacity: 1; transform: translate(14px, -1px); clip-path: inset(62% 0 10% 0); }
  73% { opacity: 0; }
  93% { opacity: 1; transform: translate(6px, 2px); clip-path: inset(22% 0 51% 0); }
  96% { opacity: 0; }
}
.glitch__scan {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(0, 0, 0, 0.22) 3px 4px);
}
.glitch__band {
  position: absolute; left: 0; right: 0; height: 110px; top: -20%;
  background: linear-gradient(180deg, transparent, rgba(236, 236, 236, 0.05) 45%, rgba(87, 91, 250, 0.05) 55%, transparent);
  animation: gBand 2.7s linear infinite;
}
@keyframes gBand { to { top: 115%; } }
.glitch__flash { position: absolute; inset: 0; background: #fff; opacity: 0; pointer-events: none; }
.preloader.is-done .glitch__word { animation: gTear 0.3s steps(2) both; }
.preloader.is-done .glitch__flash { animation: gFlash 0.3s steps(2) both; }
@keyframes gTear {
  0% { transform: none; }
  33% { transform: translateX(-22px) skewX(-9deg); }
  66% { transform: translateX(18px) skewX(6deg); letter-spacing: 0.12em; }
  100% { transform: none; }
}
@keyframes gFlash { 0% { opacity: 0; } 34% { opacity: 0.9; } 67% { opacity: 0.15; } 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .glitch__word, .glitch__word::before, .glitch__word::after, .glitch__band { animation: none; }
  .glitch__word::before, .glitch__word::after { opacity: 0; }
  .preloader.is-done .glitch__flash { animation: none; }
}

/* ═══ Preloader v5 — ORLA-style photo stack ═══ */
.stackload { position: absolute; inset: 0; }
.stackload__pile { position: absolute; inset: 0; }
.stackload__img {
  position: absolute; left: 50%; top: 50%;
  width: var(--w); aspect-ratio: var(--ar, 4 / 3); object-fit: cover;
  border-radius: 6px; visibility: hidden;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.6);
  will-change: transform, width, height;
}
.stackload__word {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  font-weight: 900; font-stretch: 120%;
  font-size: clamp(2.6rem, 8.5vw, 7.5rem); line-height: 1;
  color: #fff; letter-spacing: 0.02em;
  mix-blend-mode: normal; visibility: hidden;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.35);
  white-space: nowrap; z-index: 3;
}
.stackload__count {
  position: absolute; left: clamp(1.4rem, 4vw, 3rem); bottom: clamp(1.2rem, 3.5vw, 2.6rem);
  font-size: clamp(2.2rem, 6vw, 4.4rem); font-weight: 300; color: var(--ink);
  letter-spacing: 0.02em; z-index: 3;
}
.stackload__count i { font-style: normal; font-size: 0.5em; color: var(--red); margin-left: 0.1em; }
@media (prefers-reduced-motion: reduce) {
  .stackload__img, .stackload__word { visibility: visible; }
}

/* Stack loader: logo icon instead of wordmark */
.stackload__logo {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: clamp(84px, 11vw, 160px); height: auto; z-index: 3;
  visibility: hidden;
  filter: drop-shadow(0 6px 30px rgba(0, 0, 0, 0.55));
}

/* Language toggle */
.nav__lang {
  font-size: 0.9rem; color: var(--muted); border: 1px solid var(--hairline);
  border-radius: 50%; width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: color 0.3s, border-color 0.3s;
}
.nav__lang:hover { color: var(--red); border-color: var(--red); }

/* ═══ Preloader v6 — pixel counter ═══ */
.pxload {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: clamp(1.8rem, 4vh, 3rem);
}
.pxload__num svg { display: block; width: clamp(210px, 34vw, 430px); height: auto; shape-rendering: crispEdges; }
.pxload__stage { position: relative; width: min(62vw, 430px); }
.pxload__track { display: flex; gap: 5px; }
.pxload__track i {
  flex: 1; height: 12px; background: #1d1d1d; border-radius: 1px;
  transition: background 0.15s steps(1);
}
.pxload__track i.on { background: #CB0606; }
.pxload__cam { position: absolute; bottom: 16px; left: 0; will-change: transform; }
.pxload__cam svg { display: block; width: 46px; height: auto; shape-rendering: crispEdges; }
.pxload .preloader__word { position: static; margin-top: 0.6rem; }
@media (prefers-reduced-motion: reduce) { .pxload__track i { transition: none; } }

/* ═══ One-line doodle — Dubai x social ═══ */
@media (prefers-reduced-motion: reduce) {  }
@media (prefers-reduced-motion: reduce) {
  
  
}



/* ═══ Doodle crowd — halftone spectators watching the mural ═══ */
:root[data-theme="light"] 
@media (max-width: 700px) {  }

/* ═══════════ SUBPAGE CINEMA KIT — every page is a production ═══════════ */

/* — Filmstrip scroll progress — */
#filmprog {
  position: fixed; top: 0; left: 0; right: 0; height: 13px; z-index: 1200;
  background: rgba(10, 10, 10, 0.92); pointer-events: none;
  opacity: 0; transition: opacity 0.4s; border-bottom: 1px solid var(--hairline);
}
#filmprog.is-on { opacity: 1; }
#filmprog .filmprog__fill { height: 100%; width: 0%; background: var(--red); }
#filmprog::after {
  content: ""; position: absolute; top: 4px; bottom: 4px; left: 0; right: 0;
  background-image: repeating-linear-gradient(90deg, transparent 0 16px, var(--black) 16px 22px);
}
:root[data-theme="light"] #filmprog { background: rgba(10, 10, 10, 0.9); }

/* — Viewfinder HUD on hero — */
.vf { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.vf i {
  position: absolute; width: 26px; height: 26px;
  border: 0 solid rgba(236, 236, 236, 0.55); font-style: normal;
}
.vf i:nth-child(1) { top: 96px; left: 22px; border-top-width: 2px; border-left-width: 2px; }
.vf i:nth-child(2) { top: 96px; right: 22px; border-top-width: 2px; border-right-width: 2px; }
.vf i:nth-child(3) { bottom: 22px; left: 22px; border-bottom-width: 2px; border-left-width: 2px; }
.vf i:nth-child(4) { bottom: 22px; right: 22px; border-bottom-width: 2px; border-right-width: 2px; }
.vf__rec {
  position: absolute; top: 104px; right: 62px;
  font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.3em;
  color: #ECECEC;
}
.vf__rec i { position: static; border: 0; color: var(--red); animation: vfblink 1.1s steps(2, start) infinite; }
.vf__meta {
  position: absolute; bottom: 30px; right: 62px;
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.24em;
  color: rgba(236, 236, 236, 0.65);
}
@keyframes vfblink { 50% { opacity: 0.1; } }
@media (prefers-reduced-motion: reduce) { .vf__rec i { animation: none; } }
@media (max-width: 760px) { .vf { display: none; } }

/* — Clapperboard breadcrumb — */
.phero__crumb {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 0 1rem 0 0; border: 1px solid rgba(236, 236, 236, 0.28);
  border-radius: 7px; overflow: hidden; width: fit-content;
  background: rgba(10, 10, 10, 0.38); backdrop-filter: blur(5px);
  line-height: 2.4;
}
.phero__crumb::before {
  content: ""; align-self: stretch; width: 22px; flex: 0 0 22px;
  background: repeating-linear-gradient(125deg, rgba(236, 236, 236, 0.92) 0 7px, rgba(10, 10, 10, 0.95) 7px 14px);
}

/* — Giant slate section heads (sub-pages only) — */
.pblock .shead { align-items: baseline; gap: 1.2rem; border-top: 0; border-bottom: 1px solid var(--hairline); padding: 0 0 1.1rem; }
.pblock .shead__idx {
  font-family: var(--display); font-weight: 900; font-stretch: 115%;
  font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 0.9;
  color: transparent; -webkit-text-stroke: 1.5px var(--red);
}
.pblock .shead__label {
  font-family: var(--display); font-weight: 850; font-stretch: 112%;
  font-size: clamp(1.5rem, 3.6vw, 2.7rem); line-height: 1;
  text-transform: uppercase; letter-spacing: 0.01em;
}

/* — Editorial article treatment — */
.apost { counter-reset: scene; }
.apost > p:first-of-type::first-letter {
  font-family: var(--display); font-weight: 900; font-stretch: 112%;
  float: left; font-size: 4.35em; line-height: 0.8;
  padding: 0.06em 0.14em 0 0; color: var(--red);
}
.apost h2 {
  counter-increment: scene;
  font-weight: 850; font-stretch: 112%; text-transform: uppercase;
  font-size: clamp(1.45rem, 3vw, 2.1rem); line-height: 1.05;
  margin: 2.8em 0 0.9em; letter-spacing: 0.01em;
}
.apost h2::before {
  content: "SC " counter(scene, decimal-leading-zero);
  display: block; font-family: var(--mono); font-weight: 400;
  font-size: 0.66rem; letter-spacing: 0.34em; color: var(--red);
  border-top: 2px solid var(--red); width: fit-content;
  padding-top: 0.6em; margin-bottom: 1.1em;
}
.apost blockquote {
  position: relative; margin: 2.4em 0; padding: 0.2em 0 0.2em clamp(2.6rem, 5vw, 3.6rem);
  border: 0; font-family: var(--serif); font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem); line-height: 1.4; color: var(--ink);
}
.apost blockquote::before {
  content: "\201C"; position: absolute; left: -0.04em; top: -0.12em;
  font-family: var(--serif); font-size: clamp(4rem, 8vw, 6rem);
  line-height: 1; color: var(--red);
}
.apost a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--red); text-decoration-thickness: 2px; text-underline-offset: 3px; transition: color 0.25s; }
.apost a:hover { color: var(--red); }
.apost__meta .apost__time { color: var(--muted); }

/* — Cut mark + next episodes — */
.cutmark {
  display: flex; align-items: center; gap: 1.4rem; margin: 3.6rem 0 0;
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.42em; color: var(--muted);
}
.cutmark::before, .cutmark::after { content: ""; height: 1px; background: var(--hairline); flex: 1; }
.nextep { margin-top: 2.6rem; }
.nextep__label {
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.3em;
  color: var(--red); display: block; margin-bottom: 1.2rem;
}
.nextep__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 1.4rem; }

/* — Case-study gallery: numbered stills + viewfinder hover — */
.cgallery { counter-reset: still; }
.cgallery figure { position: relative; counter-increment: still; }
.cgallery figure::after {
  content: "STILL " counter(still, decimal-leading-zero);
  position: absolute; left: 12px; bottom: 12px;
  font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.26em;
  color: #ECECEC; background: rgba(10, 10, 10, 0.72);
  padding: 0.4em 0.9em; border-radius: 4px; pointer-events: none;
}
.cgallery figure::before {
  content: ""; position: absolute; inset: 12px; z-index: 1; pointer-events: none;
  opacity: 0; transition: opacity 0.35s;
  background:
    linear-gradient(#ECECEC, #ECECEC) top left / 20px 2px,
    linear-gradient(#ECECEC, #ECECEC) top left / 2px 20px,
    linear-gradient(#ECECEC, #ECECEC) top right / 20px 2px,
    linear-gradient(#ECECEC, #ECECEC) top right / 2px 20px,
    linear-gradient(#ECECEC, #ECECEC) bottom left / 20px 2px,
    linear-gradient(#ECECEC, #ECECEC) bottom left / 2px 20px,
    linear-gradient(#ECECEC, #ECECEC) bottom right / 20px 2px,
    linear-gradient(#ECECEC, #ECECEC) bottom right / 2px 20px;
  background-repeat: no-repeat;
}
.cgallery figure:hover::before { opacity: 0.85; }
.cgallery img { transition: transform 0.7s var(--ease-expo); }
.cgallery figure:hover img { transform: scale(1.045); }

/* — Big cinematic pull-quote — */
.pblock .cquote { position: relative; border-left: 0; padding-left: clamp(2.8rem, 6vw, 4.4rem); max-width: 56ch; }
.pblock .cquote::before {
  content: "\201C"; position: absolute; left: -0.05em; top: -0.16em;
  font-family: var(--serif); font-size: clamp(5rem, 10vw, 8rem);
  line-height: 1; color: var(--red);
}
.pblock .cquote p { font-size: clamp(1.35rem, 2.8vw, 2rem); line-height: 1.42; }
.pblock .cquote p::before, .pblock .cquote p::after { content: none; }

/* — Viewfinder corners on cards — */
.pcard { position: relative; }
.pcard::before, .pcard::after {
  content: ""; position: absolute; width: 18px; height: 18px;
  border: 0 solid var(--red); opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.pcard::before { top: 10px; left: 10px; border-top-width: 2px; border-left-width: 2px; transform: translate(7px, 7px); }
.pcard::after { bottom: 10px; right: 10px; border-bottom-width: 2px; border-right-width: 2px; transform: translate(-7px, -7px); }
.pcard:hover::before, .pcard:hover::after { opacity: 1; transform: translate(0, 0); }
.pcard:hover { box-shadow: 0 22px 60px rgba(203, 6, 6, 0.14); }

/* — Blog index: featured latest post — */
.bgrid .bcard:first-child { grid-column: 1 / -1; position: relative; padding: clamp(1.8rem, 4vw, 3.2rem); overflow: hidden; }
.bgrid .bcard:first-child h3 { font-size: clamp(1.7rem, 4.2vw, 3rem); max-width: 22ch; }
.bgrid .bcard:first-child p { max-width: 58ch; font-size: 1.02rem; }
.bgrid .bcard:first-child::after {
  content: "● NOW SHOWING"; position: absolute; top: 0; right: 0;
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.3em;
  color: #ECECEC; background: var(--red); padding: 0.55em 1.1em 0.55em 1.3em;
  border-radius: 0 0 0 8px;
}
a.bcard { transition: transform 0.45s var(--ease-expo), border-color 0.3s, box-shadow 0.45s; }
a.bcard:hover { box-shadow: 0 22px 60px rgba(203, 6, 6, 0.14); }

/* — Sub-page CTA tape — */
.cta-band--page { margin-bottom: 0; border-bottom: 0; }
.cta-band--page .cta-band__track { animation: pageband 26s linear infinite; }
@keyframes pageband { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .cta-band--page .cta-band__track { animation: none; } }

@media (max-width: 760px) {
  .apost > p:first-of-type::first-letter { font-size: 3.4em; }
  .pblock .shead__idx { -webkit-text-stroke-width: 1.2px; }
}

.pblock .pgrid + .pprose { margin-top: clamp(2rem, 4vw, 3.2rem); }

/* ═══════════ CASE-STUDY HERO — the contact-sheet stack ═══════════ */
.phero--stack .phero__media img { filter: blur(34px) saturate(1.35) brightness(0.42); transform: scale(1.18); }
.phero--stack .phero__scrim { background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.25) 45%, rgba(10,10,10,0.92) 100%); }
.phero--stack .phero__content { max-width: min(60ch, 54%); }

.phero__stack {
  position: absolute; right: calc(var(--pad) + 1vw); top: 52%;
  width: clamp(340px, 39vw, 600px); aspect-ratio: 1 / 0.86;
  transform: translateY(-50%); z-index: 1; pointer-events: none;
}
.phero__mark {
  position: absolute; right: -6%; top: 50%;
  transform: translate(50%, -50%) rotate(-90deg);
  font-family: var(--display); font-weight: 900; font-stretch: 118%;
  font-size: clamp(5rem, 12vw, 12rem); line-height: 1; white-space: nowrap;
  letter-spacing: -0.02em; text-transform: uppercase;
  color: transparent; -webkit-text-stroke: 1.5px rgba(236, 236, 236, 0.34);
  opacity: 0.6;
}
.phero__frame {
  position: absolute; width: 56%; aspect-ratio: 4 / 5; margin: 0;
  border-radius: 10px; overflow: hidden; background: #111;
  box-shadow: 0 44px 90px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(236, 236, 236, 0.16);
  transform-origin: 50% 100%; will-change: transform;
  animation: fr-float 7s ease-in-out infinite;
}
.phero__frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.phero__frame::before, .phero__frame::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 11px; z-index: 2;
  background: repeating-linear-gradient(180deg, rgba(10,10,10,0.88) 0 11px, rgba(236,236,236,0.5) 11px 16px);
}
.phero__frame::before { left: 0; }
.phero__frame::after { right: 0; }
.phero__frame span {
  position: absolute; left: 18px; bottom: 12px; z-index: 3;
  font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.28em;
  color: #ECECEC; background: rgba(10,10,10,0.7); padding: 0.35em 0.7em; border-radius: 4px;
}
.phero__frame:nth-child(2) { left: 0;   top: 9%;  rotate: -9deg; z-index: 1; animation-delay: -1.2s; }
.phero__frame:nth-child(3) { left: 22%; top: 0;   rotate: -1deg; z-index: 3; animation-delay: -3.4s; }
.phero__frame:nth-child(4) { left: 44%; top: 11%; rotate: 8deg;  z-index: 2; animation-delay: -5.1s; }
@keyframes fr-float { 50% { translate: 0 -12px; } }

/* typographic frames (no imagery) */
.phero__frame--type { display: flex; flex-direction: column; justify-content: flex-end; padding: 1.3rem 1.3rem 2.6rem 1.5rem; }
.phero__frame--type b {
  font-family: var(--display); font-weight: 900; font-stretch: 112%;
  font-size: clamp(0.95rem, 1.55vw, 1.4rem); line-height: 1; text-transform: uppercase;
  color: #ECECEC; letter-spacing: -0.01em;
}
.phero__frame--type i { font-family: var(--mono); font-style: normal; font-size: 0.58rem; letter-spacing: 0.3em; color: rgba(236,236,236,0.7); margin-bottom: 0.8rem; }
.phero__frame--plum  { background: radial-gradient(120% 90% at 20% 10%, #5B2D8E 0%, #1C0F33 60%, #0E0818 100%); }
.phero__frame--teal  { background: radial-gradient(120% 90% at 80% 0%, #1E8C8A 0%, #0D3E45 55%, #071A1F 100%); }
.phero__frame--rose  { background: radial-gradient(120% 90% at 30% 100%, #D77A8F 0%, #7A2F44 55%, #2A0F18 100%); }

@media (prefers-reduced-motion: reduce) { .phero__frame { animation: none; } }
@media (max-width: 900px) {
  .phero--stack { justify-content: flex-end; }
  .phero--stack .phero__content { max-width: none; }
  .phero__stack {
    position: relative; right: auto; top: auto; transform: none;
    order: -1; width: min(84%, 340px); margin: 0 auto 2.2rem; aspect-ratio: 1 / 0.82;
  }
  .phero__mark { display: none; }
  .phero__frame { box-shadow: 0 24px 50px rgba(0,0,0,0.55), 0 0 0 1px rgba(236,236,236,0.16); }
}

/* ═══════════ UGC FEED — phones straight from the feed ═══════════ */
.ugc { padding: clamp(4rem, 9vw, 8rem) 0 clamp(3rem, 6vw, 5rem); overflow: hidden; position: relative; }
.ugc::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 45% at 50% 0%, rgba(203, 6, 6, 0.07), transparent 70%);
}
.ugc__head { text-align: center; padding: 0 var(--pad); margin-bottom: clamp(2.4rem, 5vw, 4rem); }
.ugc__cap { color: var(--muted); letter-spacing: 0.3em; font-size: 0.64rem; margin-bottom: 1rem; }
.ugc__cap i { color: var(--red); font-style: normal; }
.ugc__title {
  font-weight: 880; font-stretch: 115%; text-transform: uppercase; line-height: 0.92;
  font-size: clamp(2.6rem, 7vw, 6rem); letter-spacing: -0.015em;
}
.ugc__title .serif { text-transform: none; font-weight: 400; }
.ugc__sub { color: var(--muted); max-width: 52ch; margin: 2.6rem auto 0; font-size: 0.98rem; }

.ugc__belt {
  overflow: hidden; padding: 2.4rem 0 1.4rem;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.ugc__track { display: flex; gap: clamp(1.2rem, 2.4vw, 2.2rem); width: max-content; will-change: transform; }
.ugc__phone {
  position: relative; flex: 0 0 auto; cursor: pointer;
  width: clamp(190px, 21vw, 260px); aspect-ratio: 9 / 18.5;
  padding: 9px; border: 1px solid rgba(236, 236, 236, 0.22); border-radius: 40px;
  background: #060606; box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
  transition: transform 0.5s var(--ease-expo), border-color 0.3s, box-shadow 0.5s;
}
.ugc__phone:nth-child(odd) { rotate: -1.7deg; }
.ugc__phone:nth-child(even) { rotate: 1.7deg; translate: 0 26px; }
.ugc__phone:hover { transform: translateY(-10px) scale(1.025); border-color: rgba(203, 6, 6, 0.6); box-shadow: 0 36px 80px rgba(203, 6, 6, 0.18); }
.ugc__phone video { width: 100%; height: 100%; object-fit: cover; border-radius: 31px; display: block; background: #111; }
.ugc__notch {
  position: absolute; top: 17px; left: 50%; transform: translateX(-50%); z-index: 3;
  width: 34%; height: 13px; border-radius: 100px; background: #060606;
}
.ugc__meta {
  position: absolute; left: 9px; right: 9px; bottom: 9px; z-index: 2;
  display: flex; flex-direction: column; gap: 0.2rem; text-align: left;
  padding: 2.2rem 1.1rem 1rem; border-radius: 0 0 31px 31px;
  background: linear-gradient(180deg, transparent, rgba(6, 6, 6, 0.88));
  pointer-events: none;
}
.ugc__meta b { color: #ECECEC; font-size: 0.78rem; letter-spacing: 0.06em; font-weight: 700; }
.ugc__meta i { color: rgba(236, 236, 236, 0.62); font-style: normal; font-size: 0.56rem; letter-spacing: 0.26em; }
.ugc__sound {
  position: absolute; top: 40px; left: 50%; transform: translateX(-50%) translateY(-6px); z-index: 3;
  font-size: 0.56rem; letter-spacing: 0.22em; color: #ECECEC; white-space: nowrap;
  background: rgba(203, 6, 6, 0.92); padding: 0.45em 1em; border-radius: 100px;
  opacity: 0; transition: opacity 0.3s, transform 0.3s; pointer-events: none;
}
.ugc__phone:hover .ugc__sound { opacity: 1; transform: translateX(-50%) translateY(0); }
.ugc__hearts { position: absolute; right: 16px; bottom: 24%; z-index: 3; pointer-events: none; }
.ugc__hearts i {
  position: absolute; right: 0; bottom: 0; font-style: normal; color: var(--red);
  font-size: 1.1rem; opacity: 0;
}
.ugc__phone:hover .ugc__hearts i { animation: heartrise 1.6s ease-out infinite; }
.ugc__phone:hover .ugc__hearts i:nth-child(2) { animation-delay: 0.5s; font-size: 0.85rem; }
.ugc__phone:hover .ugc__hearts i:nth-child(3) { animation-delay: 1s; font-size: 1.3rem; }
@keyframes heartrise {
  0% { opacity: 0; transform: translate(0, 0) scale(0.6); }
  18% { opacity: 0.95; }
  100% { opacity: 0; transform: translate(-14px, -110px) scale(1.15) rotate(-14deg); }
}
:root[data-theme="light"] .ugc__phone { background: #0a0a0a; box-shadow: 0 30px 70px rgba(10, 10, 10, 0.28); }
:root[data-theme="light"] .ugc__notch { background: #0a0a0a; }
@media (prefers-reduced-motion: reduce) { .ugc__phone:hover .ugc__hearts i { animation: none; } }
@media (max-width: 700px) {
  .ugc__phone:nth-child(even) { translate: 0 14px; }
  .ugc__belt { padding-top: 1.6rem; }
}

/* ═══════════ THE CRAFT — raw vs graded drag comparator ═══════════ */
.craft { padding: clamp(4rem, 9vw, 8rem) var(--pad); }
.craft__head { text-align: center; margin-bottom: clamp(2.2rem, 4.5vw, 3.6rem); }
.craft__title {
  font-weight: 880; font-stretch: 115%; text-transform: uppercase; line-height: 0.92;
  font-size: clamp(2.6rem, 7vw, 6rem); letter-spacing: -0.015em;
}
.craft__title .serif { text-transform: none; font-weight: 400; }
.craft__sub { color: var(--muted); max-width: 54ch; margin: 2.2rem auto 0; font-size: 0.98rem; }
.craft__stage {
  --cut: 50%;
  position: relative;
  width: calc(100% + 2 * var(--pad)); margin-inline: calc(-1 * var(--pad));
  height: min(92svh, 56.25vw); min-height: 420px;
  overflow: hidden; background: #0e0e0e;
  cursor: ew-resize; touch-action: pan-y;
}
.craft__stage > video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.craft__veil { position: absolute; top: 0; bottom: 0; left: 0; width: var(--cut); overflow: hidden; z-index: 2; }
.craft__rawvid {
  position: absolute; top: 0; left: 0; height: 100%; object-fit: cover; max-width: none;
  filter: grayscale(0.92) brightness(0.68) contrast(0.9) saturate(0.6);
}
.craft__chip {
  position: absolute; top: 18px; z-index: 4; font-size: 0.6rem; letter-spacing: 0.24em;
  padding: 0.55em 1.1em; border-radius: 6px; pointer-events: none;
}
.craft__chip--raw { left: 18px; background: rgba(10, 10, 10, 0.82); color: #ECECEC; }
.craft__chip--final { right: 18px; background: var(--red); color: #fff; }
.craft__bar {
  position: absolute; top: 0; bottom: 0; left: var(--cut); width: 4px; z-index: 3;
  background: var(--red); box-shadow: 0 0 26px rgba(203, 6, 6, 0.75);
  transform: translateX(-50%); cursor: ew-resize;
}
.craft__bar:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.craft__knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 50%; background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.craft__takes { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; margin-top: 1.8rem; }
.craft__take {
  font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.22em; cursor: pointer;
  color: var(--muted); background: none; border: 1px solid var(--hairline); border-radius: 100px;
  padding: 0.75em 1.5em; transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.craft__take:hover { color: var(--ink); border-color: rgba(203, 6, 6, 0.5); }
.craft__take.is-active { color: #fff; background: var(--red); border-color: var(--red); }
@media (max-width: 700px) {
  .craft__stage { height: 64svh; min-height: 340px; }
  .craft__knob { width: 44px; height: 44px; }
}

/* ═══════════ ORBIT SYSTEM — clients ═══════════ */
.clients__logos.is-orbit {
  display: block; position: relative;
  height: min(104vw, 940px); max-width: 1300px; margin: 0 auto;
}
.orbit__center {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 5;
  width: clamp(64px, 9vw, 110px);
}
.orbit__center img { width: 100%; filter: drop-shadow(0 0 34px rgba(203, 6, 6, 0.45)); }
.orbit__ring { position: absolute; left: 50%; top: 50%; width: 0; height: 0; }
.orbit__guide {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  border: 1px dashed rgba(236, 236, 236, 0.13); border-radius: 50%; pointer-events: none;
}
.orbit__item { position: absolute; left: 0; top: 0; }
.orbit__hold { transform: translate(-50%, -50%); }
.orbit__ring .clients__logo { display: block; }
.orbit__ring--1 .clients__logo img { width: clamp(38px, 5vw, 62px); }
.orbit__ring--2 .clients__logo img { width: clamp(36px, 4.8vw, 58px); }
.orbit__ring--3 .clients__logo img { width: clamp(30px, 4vw, 50px); }
.orbit__ring--4 .clients__logo img { width: clamp(24px, 3.2vw, 42px); }
.orbit__ring--3 { opacity: 0.85; }
.orbit__ring--4 { opacity: 0.7; }
.clients__logos.is-orbit:hover .orbit__ring,
.clients__logos.is-orbit:hover .orbit__hold { animation-play-state: paused; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
