/* ===========================================================
   Nofakha — editorial site stylesheet (v2)
   =========================================================== */

:root {
  --bg:        #0B0709;
  --bg-2:      #0F0A0C;
  --bg-3:      #070405;
  --bg-pure:   #050304;
  --fg:        #F4EEF0;
  --fg-2:      #B6ABAF;
  --fg-3:      #6F656A;
  --fg-4:      #443D41;
  --mag:       #F0277E;
  --mag-bri:   #FF5BA0;
  --mag-soft:  #F7A8C8;
  --berry:     #5A0E32;
  --line:      rgba(244,238,240,0.10);
  --line-2:    rgba(244,238,240,0.055);
  --line-3:    rgba(244,238,240,0.18);
  --d: 'Sora', system-ui, sans-serif;
  --b: 'Inter', system-ui, -apple-system, sans-serif;
  --m: 'IBM Plex Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --pad: clamp(96px, 13vw, 220px);
  --pad-s: clamp(64px, 9vw, 140px);
  --gut: clamp(24px, 5vw, 92px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--b);
  background: var(--bg);
  color: var(--fg-2);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
::selection { background: var(--mag); color: #fff; }
img, svg { display: block; max-width: 100%; }
:focus-visible { outline: 2px solid var(--mag); outline-offset: 3px; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

.wrap { max-width: 1480px; margin: 0 auto; padding: 0 var(--gut); }

/* ---- film grain + custom cursor ---- */
.grain {
  position: fixed; inset: -50%;
  z-index: 9000; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  opacity: 0.035; mix-blend-mode: overlay;
  animation: grain 0.5s steps(2) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(-2%, 1%); }
}
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9999;
  pointer-events: none; border-radius: 50%;
  mix-blend-mode: difference;
}
.cursor-dot { width: 6px; height: 6px; background: #fff; margin: -3px 0 0 -3px; }
.cursor-ring {
  width: 38px; height: 38px; margin: -19px 0 0 -19px;
  border: 1px solid rgba(255,255,255,0.7);
  transition: width .3s var(--ease), height .3s var(--ease), margin .3s var(--ease), background .3s var(--ease);
}
.cursor-ring.hot { width: 64px; height: 64px; margin: -32px 0 0 -32px; background: rgba(240,39,126,0.18); border-color: transparent; }
@media (pointer: fine) { body, a, button, label, input, textarea, select { cursor: none; } }
@media (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ---- mark ---- */
.mark { display: inline-block; }
.mark svg { width: 100%; height: 100%; display: block; }
.mark.spin svg { animation: spin 50s linear infinite; transform-origin: center; }
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* ---- wordmark ---- */
.wm .nf {
  font-family: var(--d); font-weight: 800; font-size: 17px;
  letter-spacing: 1.6px; line-height: 1; display: block; color: var(--fg);
}
.wm .nf .o { color: var(--mag); }
.wm .nf-sub {
  font-family: var(--m); font-size: 6.5px; letter-spacing: 3.4px;
  text-transform: uppercase; margin-top: 5px; display: block; color: var(--fg-3);
}

/* ---- shared type ---- */
.kicker {
  font-family: var(--m); font-size: 11px; font-weight: 500;
  letter-spacing: 2.6px; text-transform: uppercase; color: var(--mag-soft);
  display: inline-flex; align-items: center; gap: 12px;
}
.kicker .ix { color: var(--fg-3); }
.kicker::before { content: ''; width: 22px; height: 1px; background: var(--mag); }

h2.head {
  font-family: var(--d); font-weight: 700;
  font-size: clamp(36px, 5.4vw, 82px);
  line-height: 1.02; letter-spacing: -0.035em; color: var(--fg);
}
h2.head .out { -webkit-text-stroke: 1.4px var(--fg-3); color: transparent; }
h2.head .mag { color: var(--mag); }
.lede { font-size: clamp(16px, 1.35vw, 19px); color: var(--fg-2); font-weight: 300; line-height: 1.62; }

.sec-head {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.2fr);
  gap: clamp(24px, 5vw, 90px); align-items: end;
  margin-bottom: clamp(48px, 7vw, 96px);
}
.sec-head .lede { max-width: 460px; }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--d); font-weight: 600; font-size: 14px;
  padding: 17px 30px; border-radius: 100px;
  background: var(--mag); color: #fff;
  position: relative; overflow: hidden;
  transition: transform .4s var(--ease);
}
.btn span { position: relative; z-index: 1; }
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: var(--mag-bri); transform: translateY(101%);
  transition: transform .45s var(--ease);
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { transform: translateY(-3px); }
.btn .ar { transition: transform .4s var(--ease); }
.btn:hover .ar { transform: translate(4px, -4px); }
.btn.ghost { background: transparent; border: 1px solid var(--line-3); color: var(--fg); }
.btn.ghost::before { background: rgba(240,39,126,0.10); }

.link-ar {
  font-family: var(--d); font-weight: 600; font-size: 14px; color: var(--fg);
  display: inline-flex; align-items: center; gap: 9px;
  padding-bottom: 4px; position: relative;
}
.link-ar::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--mag); transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease);
}
.link-ar:hover::after { transform: scaleX(1); transform-origin: left; }
.link-ar .ar { transition: transform .4s var(--ease); }
.link-ar:hover .ar { transform: translateX(4px); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 26px 0;
  transition: padding .45s var(--ease), background .45s var(--ease), border-color .45s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.stuck {
  padding: 14px 0; background: rgba(7,4,5,0.72);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom-color: var(--line-2);
}
.nav .row { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.nav-lock { display: inline-flex; align-items: center; gap: 12px; }
.nav-lock .mark { width: 28px; height: 28px; color: var(--fg); }
.nav-mid { display: flex; gap: 34px; }
.nav-mid a {
  font-family: var(--m); font-size: 12px; letter-spacing: 1px;
  text-transform: uppercase; color: var(--fg-2);
  position: relative; padding: 4px 0;
  transition: color .3s var(--ease);
}
.nav-mid a .dot { color: var(--mag); opacity: 0; transition: opacity .3s var(--ease); margin-right: 4px; }
.nav-mid a:hover, .nav-mid a.active { color: var(--fg); }
.nav-mid a:hover .dot, .nav-mid a.active .dot { opacity: 1; }
.nav-end { display: flex; align-items: center; gap: 20px; }
.nav-lang {
  display: inline-flex; align-items: center; gap: 4px; white-space: nowrap;
  font-family: var(--m); font-size: 11px; letter-spacing: 1px; color: var(--fg-3);
  cursor: pointer; user-select: none;
}
.nav-lang b { color: var(--fg); font-weight: 500; }
.nav-cta {
  font-family: var(--d); font-weight: 600; font-size: 13px; color: var(--fg);
  border: 1px solid var(--line); border-radius: 100px; padding: 11px 22px;
  transition: border-color .35s var(--ease), background .35s var(--ease);
  white-space: nowrap;
}
.nav-cta:hover { border-color: var(--mag); background: rgba(240,39,126,0.1); }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.burger span { width: 22px; height: 1.5px; background: var(--fg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 150px 0 0; overflow: hidden;
}
.hero-fx { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-fx::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 78% 8%, rgba(240,39,126,0.28) 0%, transparent 62%),
    radial-gradient(55% 60% at 12% 96%, rgba(90,14,50,0.6) 0%, transparent 60%),
    radial-gradient(40% 35% at 50% 102%, rgba(255,91,160,0.14) 0%, transparent 70%);
}
.beam {
  position: absolute; top: -15%; height: 135%; transform-origin: top center;
  filter: blur(14px); mix-blend-mode: screen; opacity: 0.55;
}
.beam.b1 { left: 6%; width: 30vw; background: linear-gradient(180deg, rgba(255,91,160,0.22), transparent 65%); animation: sway 11s var(--ease) infinite alternate; }
.beam.b2 { right: 10%; width: 26vw; background: linear-gradient(180deg, rgba(140,90,255,0.14), transparent 65%); animation: sway2 14s var(--ease) infinite alternate; }
@keyframes sway { from { transform: rotate(12deg); } to { transform: rotate(5deg); } }
@keyframes sway2 { from { transform: rotate(-13deg); } to { transform: rotate(-6deg); } }
.hero-mark {
  position: absolute; right: -14vw; top: 46%; transform: translateY(-50%);
  width: 56vw; height: 56vw; max-width: 760px; max-height: 760px;
  color: var(--fg); opacity: 0.07; z-index: 0;
}
.hero-mark svg { width: 100%; height: 100%; animation: spin 90s linear infinite; transform-origin: center; }
.hero-side {
  position: absolute; left: calc(var(--gut) - 14px); top: 50%;
  transform: translateY(-50%) rotate(-90deg); transform-origin: left;
  font-family: var(--m); font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--fg-3); z-index: 3;
  white-space: nowrap;
}

.hero-inner { position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.hero .kicker { margin-bottom: clamp(22px, 3vw, 38px); }

h1.hero-h {
  font-family: var(--d); font-weight: 800;
  font-size: clamp(54px, 11.2vw, 178px);
  line-height: 0.92; letter-spacing: -0.05em; color: var(--fg);
  margin-bottom: clamp(28px, 3.4vw, 46px);
}
h1.hero-h .ln { display: block; overflow: hidden; }
h1.hero-h .ln > span {
  display: block; transform: translateY(108%);
  animation: rise 1.05s var(--ease) forwards;
}
h1.hero-h .ln:nth-child(1) > span { animation-delay: .15s; }
h1.hero-h .ln:nth-child(2) > span { animation-delay: .27s; }
h1.hero-h .ln:nth-child(3) > span { animation-delay: .39s; }
h1.hero-h .ln:nth-child(2) { color: transparent; -webkit-text-stroke: 1.7px var(--fg-3); }
h1.hero-h .ln:nth-child(3) { color: var(--mag); }
@keyframes rise { to { transform: translateY(0); } }

.hero-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 48px; flex-wrap: wrap;
  opacity: 0; animation: fadein 1s var(--ease) .7s forwards;
}
@keyframes fadein { to { opacity: 1; } }
.hero-sub { max-width: 480px; font-size: clamp(15px, 1.15vw, 17px); color: var(--fg-2); font-weight: 300; }
.hero-act { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }

/* hero stat strip below ticker */
.ticker {
  position: relative; z-index: 2; margin-top: clamp(40px, 6vw, 90px);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 16px 0; overflow: hidden;
  display: flex;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ticker-tr { display: flex; gap: 0; flex-shrink: 0; animation: tick 34s linear infinite; }
@keyframes tick { to { transform: translateX(-100%); } }
.ticker-tr .t {
  font-family: var(--d); font-weight: 600; font-size: 14px;
  letter-spacing: 0.5px; text-transform: uppercase; color: var(--fg-3);
  padding: 0 26px; white-space: nowrap; display: flex; align-items: center; gap: 26px;
}
.ticker-tr .t::after { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--mag); }
.ticker-tr .t.live { color: var(--mag-soft); }
.ticker-tr .t .pulse {
  width: 7px; height: 7px; background: var(--mag); border-radius: 50%;
  animation: pulse 2s var(--ease) infinite;
  display: inline-block;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240,39,126,0.6); }
  50%      { box-shadow: 0 0 0 8px rgba(240,39,126,0); }
}

/* =========================================================
   STATEMENT (manifesto / about)
   ========================================================= */
.statement { padding: var(--pad) 0; }
.statement .grid {
  display: grid; grid-template-columns: minmax(0,0.8fr) minmax(0,2.4fr);
  gap: clamp(28px, 6vw, 110px);
}
.statement .big {
  font-family: var(--d); font-weight: 600;
  font-size: clamp(26px, 3.5vw, 54px);
  line-height: 1.18; letter-spacing: -0.025em; color: var(--fg-3);
}
.statement .big b { color: var(--fg); font-weight: 600; }
.statement .big .mag { color: var(--mag); font-weight: 600; }
.statement .aside { font-family: var(--m); font-size: 11px; letter-spacing: 1.5px; line-height: 2; text-transform: uppercase; color: var(--fg-3); }
.statement .aside b { color: var(--fg-2); font-weight: 500; }

/* =========================================================
   STATS — editorial counter band
   ========================================================= */
.stats { background: var(--bg-pure); border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
.stats .grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat {
  padding: clamp(48px, 7vw, 96px) clamp(20px, 2.4vw, 44px);
  border-right: 1px solid var(--line-2); position: relative;
}
.stat:last-child { border-right: none; }
.stat .n {
  font-family: var(--d); font-weight: 700;
  font-size: clamp(54px, 7.4vw, 110px); line-height: 0.9;
  letter-spacing: -0.05em; color: var(--fg);
}
.stat .n em { font-style: normal; color: var(--mag); }
.stat .l {
  font-family: var(--m); font-size: 11px; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--fg-3); margin-top: 20px;
  max-width: 220px;
}

/* =========================================================
   PROCESS — editorial timeline w/ deliverables on hover
   ========================================================= */
.process { padding: var(--pad) 0; background: var(--bg-pure); }
.proc-track {
  display: grid; grid-template-columns: repeat(5, 1fr);
  margin-top: clamp(36px, 5vw, 72px); position: relative;
}
.proc-track::before {
  content: ''; position: absolute; top: 5px; left: 0; right: 0; height: 1px;
  background: var(--line);
}
.proc {
  padding: 34px clamp(14px,1.6vw,28px) 0; position: relative;
  border-right: 1px solid var(--line-2);
  cursor: pointer;
}
.proc:last-child { border-right: none; }
.proc::before {
  content: ''; position: absolute; top: 0; left: clamp(14px,1.6vw,28px);
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--bg-pure); border: 1px solid var(--fg-3);
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.proc:hover::before, .proc.lit::before { background: var(--mag); border-color: var(--mag); box-shadow: 0 0 0 5px rgba(240,39,126,0.18); }
.proc .px { font-family: var(--m); font-size: 11px; letter-spacing: 1.5px; color: var(--mag-soft); }
.proc .pn {
  font-family: var(--d); font-weight: 600; font-size: clamp(17px, 1.7vw, 23px);
  color: var(--fg); margin: 12px 0 9px; letter-spacing: -0.02em;
}
.proc .pd { font-size: 13px; color: var(--fg-3); line-height: 1.55; }
.proc .pdel {
  margin-top: 18px;
  list-style: none;
  padding: 14px 0 0;
  border-top: 1px solid var(--line-2);
  display: flex; flex-direction: column; gap: 7px;
}
.proc .pdel li {
  font-family: var(--m); font-size: 10.5px; letter-spacing: 1.2px;
  color: var(--fg-3); text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.proc .pdel li::before {
  content: ''; width: 4px; height: 4px; background: var(--mag);
  display: inline-block; flex-shrink: 0;
}
.proc:hover .pn { color: var(--mag-soft); }

/* =========================================================
   SERVICES — numbered horizontal rows
   ========================================================= */
.services { padding: var(--pad) 0; }
.svc-list { border-top: 1px solid var(--line); }
.svc-row {
  display: grid;
  grid-template-columns: 110px minmax(0,1.1fr) minmax(0,1.3fr) 60px;
  gap: clamp(16px, 3vw, 56px); align-items: center;
  padding: clamp(26px, 3.4vw, 46px) 8px;
  border-bottom: 1px solid var(--line);
  position: relative; transition: padding .5s var(--ease);
}
.svc-row::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: linear-gradient(90deg, rgba(240,39,126,0.10), transparent);
  transition: width .55s var(--ease);
}
.svc-row:hover { padding-left: 26px; padding-right: 26px; }
.svc-row:hover::before { width: 100%; }
.svc-row .sx {
  font-family: var(--d); font-weight: 700; font-size: clamp(28px,3vw,46px);
  -webkit-text-stroke: 1.3px var(--fg-4); color: transparent;
  transition: -webkit-text-stroke .4s var(--ease), color .4s var(--ease);
}
.svc-row:hover .sx { -webkit-text-stroke: 1.3px transparent; color: var(--mag); }
.svc-row .sn {
  font-family: var(--d); font-weight: 600; font-size: clamp(22px, 2.5vw, 38px);
  letter-spacing: -0.02em; color: var(--fg); line-height: 1.05;
  transition: transform .5s var(--ease);
}
.svc-row:hover .sn { transform: translateX(8px); }
.svc-row .sd { font-size: 14.5px; color: var(--fg-3); line-height: 1.55; transition: color .4s var(--ease); }
.svc-row:hover .sd { color: var(--fg-2); }
.svc-row .sa {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; color: var(--fg-3);
  justify-self: end;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
}
.svc-row:hover .sa { background: var(--mag); color: #fff; border-color: var(--mag); transform: rotate(-45deg); }
.svc-cap { font-family: var(--m); font-size: 10.5px; letter-spacing: 1px; text-transform: uppercase; color: var(--fg-4); margin-top: 10px; display: block; }

/* =========================================================
   WORK — featured + indexed rows w/ hover preview
   ========================================================= */
.work { padding: var(--pad) 0; position: relative; }
.work-feat {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(20px,3vw,48px);
  margin-bottom: clamp(40px,5vw,74px); align-items: stretch;
}
.frame {
  position: relative; overflow: hidden; background: #0c0709;
  border: 1px solid var(--line);
}
.frame::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 32%, transparent 24%, rgba(0,0,0,0.62) 100%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
  background-blend-mode: overlay; background-size: cover, 180px;
}
.ph1 { background-image: radial-gradient(70% 60% at 26% 18%, #ff5ba0 0%, transparent 56%), radial-gradient(70% 70% at 82% 92%, #5a0e32 0%, transparent 60%), linear-gradient(150deg,#2a0c1c,#0a0608); }
.ph2 { background-image: radial-gradient(70% 60% at 74% 14%, #6b86ff 0%, transparent 55%), radial-gradient(70% 70% at 16% 94%, #1c2160 0%, transparent 60%), linear-gradient(150deg,#11142e,#070810); }
.ph3 { background-image: radial-gradient(66% 58% at 22% 22%, #ff9a4d 0%, transparent 54%), radial-gradient(70% 68% at 86% 90%, #b0145e 0%, transparent 58%), linear-gradient(150deg,#2c1410,#0b0606); }
.ph4 { background-image: radial-gradient(70% 60% at 78% 18%, #c45bff 0%, transparent 56%), radial-gradient(66% 70% at 14% 92%, #3a0b5e 0%, transparent 60%), linear-gradient(150deg,#1d0c2e,#08060c); }
.ph5 { background-image: radial-gradient(64% 56% at 30% 16%, #2fd0e9 0%, transparent 54%), radial-gradient(70% 70% at 88% 92%, #0b3a5e 0%, transparent 60%), linear-gradient(150deg,#0c2230,#060a0c); }
.ph6 { background-image: radial-gradient(70% 60% at 64% 20%, #f0277e 0%, transparent 56%), radial-gradient(64% 70% at 16% 92%, #5a0e3c 0%, transparent 60%), linear-gradient(150deg,#2a0c1e,#0a0608); }

.work-feat .frame {
  min-height: clamp(360px, 46vw, 580px);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(26px,3vw,46px);
  transition: transform .6s var(--ease);
}
.work-feat .frame:hover { transform: scale(0.992); }
.work-feat .frame > * { position: relative; z-index: 2; }
.work-feat .tag {
  font-family: var(--m); font-size: 10.5px; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--fg); align-self: flex-start; margin-bottom: auto;
  border: 1px solid rgba(255,255,255,0.22); padding: 6px 13px; border-radius: 100px;
  background: rgba(0,0,0,0.3); backdrop-filter: blur(6px);
}
.work-feat .ft {
  font-family: var(--d); font-weight: 700; font-size: clamp(28px,3.4vw,52px);
  letter-spacing: -0.03em; color: #fff; line-height: 1.02;
}
.work-feat .fm { display: flex; gap: 22px; margin-top: 14px; font-family: var(--m); font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 0.5px; flex-wrap: wrap; }
.work-feat .side {
  display: flex; flex-direction: column; justify-content: space-between;
  padding: clamp(22px,2.4vw,36px); border: 1px solid var(--line);
  background: var(--bg-2); gap: 28px;
}
.work-feat .side .q {
  font-family: var(--d); font-weight: 500; font-size: clamp(18px,1.7vw,24px);
  color: var(--fg); line-height: 1.4; letter-spacing: -0.01em;
}
.work-feat .side .q b { color: var(--mag); font-weight: 500; }
.work-feat .side .meta { font-family: var(--m); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--fg-3); line-height: 1.9; }

.work-index { border-top: 1px solid var(--line); }
.work-row {
  display: grid; grid-template-columns: 70px 1fr auto 70px;
  gap: clamp(14px,3vw,48px); align-items: center;
  padding: clamp(22px,2.8vw,38px) 8px;
  border-bottom: 1px solid var(--line); position: relative;
  transition: padding .5s var(--ease);
}
.work-row:hover { padding-left: 24px; }
.work-row .wx { font-family: var(--m); font-size: 12px; color: var(--fg-3); letter-spacing: 1px; }
.work-row .wn {
  font-family: var(--d); font-weight: 600; font-size: clamp(22px, 2.7vw, 42px);
  letter-spacing: -0.03em; color: var(--fg-2); line-height: 1.05;
  transition: color .4s var(--ease), transform .5s var(--ease);
}
.work-row:hover .wn { color: var(--fg); transform: translateX(6px); }
.work-row .wc { font-family: var(--m); font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--fg-3); }
.work-row .wy { font-family: var(--m); font-size: 12px; color: var(--fg-3); text-align: right; }
.work-row .wy::before { content: ''; display: inline-block; width: 0; height: 1px; background: var(--mag); vertical-align: middle; margin-right: 0; transition: width .45s var(--ease), margin-right .45s var(--ease); }
.work-row:hover .wy::before { width: 26px; margin-right: 12px; }

.work-preview {
  position: fixed; top: 0; left: 0; z-index: 60; pointer-events: none;
  width: 300px; height: 380px; overflow: hidden;
  opacity: 0; transform: translate(-50%,-50%) scale(0.82);
  transition: opacity .4s var(--ease), transform .55s var(--ease);
  border: 1px solid var(--line);
}
.work-preview.on { opacity: 1; transform: translate(-50%,-50%) scale(1); }

.work-foot { margin-top: clamp(40px,5vw,70px); display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }

/* =========================================================
   DISCIPLINE DOSSIER (capabilities dossier — editorial)
   ========================================================= */
.disc { padding: var(--pad) 0; }
.disc-grid {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.4fr);
  gap: clamp(28px,5vw,90px);
  align-items: start;
}
.disc-quote {
  font-family: var(--d); font-weight: 500;
  font-size: clamp(22px, 2.4vw, 36px); line-height: 1.32;
  letter-spacing: -0.02em; color: var(--fg);
  border-left: 1px solid var(--mag);
  padding-left: clamp(20px, 2.5vw, 36px);
  margin-bottom: 36px;
}
.disc-quote b { color: var(--mag); font-weight: 500; }
.disc-meta { font-family: var(--m); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--fg-3); line-height: 2; padding-left: clamp(20px, 2.5vw, 36px); }
.disc-meta b { color: var(--fg-2); font-weight: 500; }

.disc-list { border-top: 1px solid var(--line); }
.disc-row {
  display: grid;
  grid-template-columns: 48px minmax(0,1.4fr) minmax(0,1fr) 70px;
  gap: clamp(14px,2.4vw,40px); align-items: center;
  padding: clamp(18px,2.2vw,28px) 4px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: padding .45s var(--ease);
}
.disc-row:hover { padding-left: 20px; }
.disc-row .dx { font-family: var(--m); font-size: 11px; color: var(--fg-3); letter-spacing: 1.5px; }
.disc-row .dn { font-family: var(--d); font-weight: 500; font-size: clamp(17px, 1.6vw, 22px); color: var(--fg); letter-spacing: -0.015em; transition: color .35s var(--ease); }
.disc-row:hover .dn { color: var(--mag-soft); }
.disc-row .dt {
  font-family: var(--m); font-size: 10.5px; letter-spacing: 1px;
  text-transform: uppercase; color: var(--fg-3);
}
.disc-row .db {
  width: 70px; height: 3px; background: var(--line); position: relative; border-radius: 3px;
  overflow: hidden;
}
.disc-row .db i {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0;
  background: linear-gradient(90deg, var(--mag), var(--mag-bri));
  border-radius: 3px;
  transition: width 1.2s var(--ease);
}
.disc-row.lit .db i { width: var(--lvl, 80%); }

.disc-side {
  background: var(--bg-2); border: 1px solid var(--line);
  padding: clamp(24px,3vw,42px);
  position: relative; overflow: hidden;
}
.disc-side::before {
  content: ''; position: absolute; right: -120px; top: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(240,39,126,0.22) 0%, transparent 70%);
  pointer-events: none;
}

/* =========================================================
   PULL-QUOTE TESTIMONIALS — editorial slide
   ========================================================= */
.voices { padding: var(--pad) 0; background: var(--bg-pure); position: relative; overflow: hidden; }
.voices-track { position: relative; min-height: clamp(360px, 38vw, 520px); }
.voice {
  position: absolute; inset: 0;
  opacity: 0; pointer-events: none;
  transition: opacity .7s var(--ease);
  display: grid; grid-template-columns: minmax(0,2.6fr) minmax(0,1fr);
  gap: clamp(28px, 5vw, 90px);
  align-items: end;
}
.voice.on { opacity: 1; pointer-events: auto; }
.voice .q {
  font-family: var(--d); font-weight: 500;
  font-size: clamp(28px, 4.2vw, 64px);
  line-height: 1.12; letter-spacing: -0.03em; color: var(--fg);
  text-wrap: balance;
}
.voice .q::before {
  content: '“';
  display: block;
  font-family: var(--d); font-weight: 700;
  font-size: clamp(64px, 8vw, 140px);
  line-height: 0.4; color: var(--mag);
  margin-bottom: 24px;
}
.voice .q b { color: var(--mag); font-weight: 500; }
.voice .att { font-family: var(--m); font-size: 12px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--fg-3); line-height: 2; }
.voice .att b { color: var(--fg); font-weight: 500; }
.voice .att .role { color: var(--fg-3); }

.voices-ctrl { display: flex; align-items: center; gap: 28px; margin-top: clamp(36px,5vw,60px); }
.voices-num { font-family: var(--m); font-size: 12px; letter-spacing: 1.6px; color: var(--fg-3); }
.voices-num b { color: var(--fg); font-weight: 500; }
.voices-prog { flex: 1; height: 1px; background: var(--line); position: relative; max-width: 320px; }
.voices-prog i { position: absolute; left: 0; top: 0; bottom: 0; background: var(--mag); height: 1px; transition: width .6s var(--ease); }
.voices-btn {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--line); color: var(--fg);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
}
.voices-btn:hover { border-color: var(--mag); background: rgba(240,39,126,0.08); color: var(--mag-soft); }

/* =========================================================
   CLIENTS — massive type marquee
   ========================================================= */
.clients { padding: clamp(48px,6vw,90px) 0; border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); background: var(--bg-2); overflow: hidden; }
.clients .cap { font-family: var(--m); font-size: 10.5px; letter-spacing: 2.4px; text-transform: uppercase; color: var(--fg-4); margin-bottom: 30px; }
.cli-mq { display: flex; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.cli-tr { display: flex; flex-shrink: 0; animation: tick 40s linear infinite; }
.cli-tr .c {
  font-family: var(--d); font-weight: 700; font-size: clamp(20px, 2.4vw, 34px);
  letter-spacing: -0.01em; color: var(--fg-4); white-space: nowrap;
  padding: 0 clamp(28px,4vw,64px); transition: color .35s var(--ease);
}
.cli-tr .c:hover { color: var(--fg); }

/* =========================================================
   INQUIRY FORM — editorial labels, asymmetric
   ========================================================= */
.inquiry { padding: var(--pad) 0; background: var(--bg); position: relative; }
.inq-grid {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.6fr);
  gap: clamp(28px,5vw,90px);
  align-items: start;
}
.inq-info h2 { margin-top: 18px; }
.inq-info .lede { margin-top: 24px; max-width: 380px; }
.inq-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 22px;
  padding-top: 36px; margin-top: 36px;
  border-top: 1px solid var(--line-2);
}
.inq-list li { display: flex; flex-direction: column; gap: 4px; }
.inq-list .k { font-family: var(--m); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--fg-4); }
.inq-list .v { font-family: var(--d); font-weight: 500; font-size: 15px; color: var(--fg); letter-spacing: -0.01em; }
.inq-list .v a:hover { color: var(--mag-soft); }

.form-blocks { display: flex; flex-direction: column; gap: clamp(20px, 2.5vw, 36px); }
.form-block {
  border-top: 1px solid var(--line);
  padding-top: clamp(20px, 2.4vw, 32px);
}
.form-block .blab {
  font-family: var(--m); font-size: 11px; letter-spacing: 2.2px;
  text-transform: uppercase; color: var(--mag-soft);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.form-block .blab .bx { color: var(--fg-3); }

.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  font-family: var(--m); font-size: 11px; letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--fg-3);
  border: 1px solid var(--line); border-radius: 100px;
  padding: 9px 16px; cursor: pointer;
  transition: border-color .25s var(--ease), color .25s var(--ease), background .25s var(--ease);
  user-select: none;
}
.chip:hover { color: var(--fg); border-color: var(--line-3); }
.chip.on { color: var(--fg); border-color: var(--mag); background: rgba(240,39,126,0.14); }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field-row.single { grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label, .field .lab {
  font-family: var(--m); font-size: 10.5px;
  letter-spacing: 1.6px; text-transform: uppercase; color: var(--fg-3);
}
.field input, .field textarea, .field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 12px 0 12px;
  color: var(--fg);
  font-size: clamp(15px, 1.4vw, 17px);
  font-family: var(--d);
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: border-color .25s var(--ease);
  width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-bottom-color: var(--mag);
}
.field input::placeholder, .field textarea::placeholder { color: var(--fg-4); font-weight: 400; }
.field textarea { resize: vertical; min-height: 92px; font-family: var(--b); font-weight: 400; font-size: 15px; line-height: 1.55; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F7A8C8' stroke-width='1.6'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 16px;
  padding-right: 28px;
  cursor: pointer;
}

/* scale slider */
.scale-row { display: flex; align-items: center; gap: 22px; margin-top: 12px; }
.scale-track {
  flex: 1;
  height: 2px;
  background: var(--line);
  position: relative;
  cursor: pointer;
}
.scale-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--mag);
  width: 50%;
}
.scale-handle {
  position: absolute; top: 50%;
  width: 14px; height: 14px;
  background: var(--mag); border: 2px solid var(--bg);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: grab;
  left: 50%;
  box-shadow: 0 0 0 1px var(--mag);
}
.scale-handle:active { cursor: grabbing; }
.scale-value {
  font-family: var(--d); font-weight: 600;
  font-size: 14px;
  color: var(--fg);
  min-width: 130px;
  text-align: right;
  letter-spacing: -0.01em;
}

.form-actions { margin-top: clamp(24px,3vw,42px); display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.form-foot {
  font-family: var(--m); font-size: 10.5px; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--fg-4);
}
.form-success {
  display: none;
  margin-top: 22px;
  padding: 22px 0;
  border-top: 1px solid var(--mag);
  font-family: var(--d); font-weight: 500; font-size: 16px;
  color: var(--fg); letter-spacing: -0.01em;
  align-items: center; gap: 14px;
}
.form-success.show { display: flex; }
.form-success .ic {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--mag); color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* =========================================================
   CTA
   ========================================================= */
.cta { position: relative; overflow: hidden; background: var(--bg-pure); }
.cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(50% 60% at 84% 6%, rgba(240,39,126,0.34) 0%, transparent 58%),
    radial-gradient(54% 70% at 8% 100%, rgba(90,14,50,0.7) 0%, transparent 62%);
}
.cta-mark { position: absolute; right: -10vw; bottom: -28vh; width: 50vw; height: 50vw; max-width: 620px; max-height: 620px; color: var(--fg); opacity: 0.06; }
.cta-mark svg { width: 100%; height: 100%; animation: spin 100s linear infinite; transform-origin: center; }
.cta .inner { position: relative; z-index: 2; padding: clamp(110px,15vw,240px) 0; }
.cta h2.head { margin: 26px 0 0; font-size: clamp(44px, 8vw, 142px); line-height: 0.95; font-weight: 800; }
.cta-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-top: clamp(40px,5vw,72px); }
.cta-contact { font-family: var(--m); font-size: 12px; letter-spacing: 0.8px; line-height: 2; color: var(--fg-3); text-transform: uppercase; }
.cta-contact b { color: var(--fg-2); font-weight: 500; }

/* =========================================================
   FOOTER
   ========================================================= */
footer { background: var(--bg-pure); border-top: 1px solid var(--line-2); padding: clamp(56px,7vw,96px) 0 40px; }
.foot-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(28px,4vw,64px); padding-bottom: clamp(44px,5vw,68px);
  border-bottom: 1px solid var(--line-2);
}
.foot-brand .wm { margin-bottom: 18px; }
.foot-brand p { font-size: 13.5px; color: var(--fg-3); max-width: 320px; }
.foot-col h4 { font-family: var(--m); font-size: 10px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--fg-4); margin-bottom: 16px; }
.foot-col a, .foot-col .li { display: block; font-size: 13.5px; color: var(--fg-3); margin-bottom: 10px; transition: color .3s var(--ease); }
.foot-col a:hover { color: var(--mag-soft); }
.foot-bot {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  padding-top: 26px; font-family: var(--m); font-size: 11px; letter-spacing: 0.6px; color: var(--fg-4);
}

/* =========================================================
   REVEAL — opacity hidden only after JS marks ready,
   so a no-JS / off-screen state never leaves content blank
   ========================================================= */
.r, .r-stagger > * { transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
html.js-ready .r:not(.in) { opacity: 0; transform: translateY(46px); }
html.js-ready .r-stagger:not(.in) > * { opacity: 0; transform: translateY(46px); }
.r-stagger.in > *:nth-child(2) { transition-delay: .07s; }
.r-stagger.in > *:nth-child(3) { transition-delay: .14s; }
.r-stagger.in > *:nth-child(4) { transition-delay: .21s; }
.r-stagger.in > *:nth-child(5) { transition-delay: .28s; }
.r-stagger.in > *:nth-child(6) { transition-delay: .35s; }
.r-stagger.in > *:nth-child(7) { transition-delay: .42s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; }
  h1.hero-h .ln > span { transform: none; }
  .hero-row { opacity: 1; }
  .r, .r-stagger > * { opacity: 1; transform: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .nav-mid { display: none; }
  .burger { display: flex; }
  .sec-head { grid-template-columns: 1fr; align-items: start; }
  .statement .grid { grid-template-columns: 1fr; }
  .statement .aside { display: flex; gap: 28px; flex-wrap: wrap; }
  .work-feat { grid-template-columns: 1fr; }
  .proc-track { grid-template-columns: repeat(2, 1fr); }
  .proc-track::before { display: none; }
  .proc { border-right: none; border-bottom: 1px solid var(--line-2); padding-bottom: 28px; }
  .disc-grid { grid-template-columns: 1fr; gap: 48px; }
  .inq-grid { grid-template-columns: 1fr; gap: 56px; }
  .stats .grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid var(--line-2); }
  .stat:nth-child(2n) { border-right: none; }
  .voice { grid-template-columns: 1fr; }
  .voice .att { margin-top: 18px; }
  .foot-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-cta { display: none; }
  .nav-lang { display: none; }
  .stats .grid { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: 54px 1fr; row-gap: 10px; }
  .svc-row .sd { grid-column: 2; }
  .svc-row .sa { display: none; }
  .proc-track { grid-template-columns: 1fr; }
  .work-row { grid-template-columns: 44px 1fr; row-gap: 6px; }
  .work-row .wc, .work-row .wy { grid-column: 2; text-align: left; }
  .disc-row { grid-template-columns: 40px 1fr; row-gap: 4px; }
  .disc-row .dt, .disc-row .db { grid-column: 2; }
  .field-row { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; }
  .hero-side { display: none; }
  .voice .q::before { font-size: 80px; }
}


/* =========================================================
   v3 UPGRADES — Hero corner stamp, Ops console, Timeline,
   Run-of-show, Kit inventory, Big-quote testimonial
   ========================================================= */

/* ---------- hero corner stamp ---------- */
.hero-stamp {
  position: absolute;
  top: 110px; right: var(--gut);
  z-index: 5;
  font-family: var(--m);
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-3);
  text-align: right;
  line-height: 1.9;
  white-space: nowrap;
  background: rgba(7,4,5,0.4);
  backdrop-filter: blur(6px);
  padding: 14px 18px;
  border: 1px solid var(--line-2);
  border-radius: 4px;
}
.hero-stamp b { color: var(--fg); font-weight: 500; }
.hero-stamp .pulse {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--mag); border-radius: 50%;
  margin-right: 6px; vertical-align: middle;
  animation: pulse 2s var(--ease) infinite;
}
@media (max-width: 900px) { .hero-stamp { display: none; } }

/* ---------- hero hand-drawn accent (under "one team.") ---------- */
h1.hero-h .ln.acc {
  position: relative;
  display: inline-block;
}
h1.hero-h .ln.acc svg.underline {
  position: absolute;
  left: 0; right: 0; bottom: -8%;
  width: 100%; height: 16%;
  pointer-events: none;
  stroke: var(--mag);
  stroke-width: 3;
  stroke-linecap: round;
  fill: none;
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  animation: drawline 1.5s var(--ease) 1.4s forwards;
}
@keyframes drawline { to { stroke-dashoffset: 0; } }

/* =========================================================
   OPERATIONS CONSOLE — live status bar after hero
   ========================================================= */
.console {
  background: var(--bg-pure);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  padding: clamp(28px, 4vw, 56px) 0;
  font-family: var(--m);
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--fg-3);
  position: relative;
  overflow: hidden;
}
.console::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg,
      transparent 0,
      transparent 2px,
      rgba(244,238,240,0.012) 2px,
      rgba(244,238,240,0.012) 4px);
  pointer-events: none;
}
.console .row {
  display: grid;
  grid-template-columns: minmax(0,1.2fr) repeat(4, minmax(0,1fr));
  gap: clamp(20px, 3vw, 56px);
  align-items: center;
  position: relative;
}
.console .cell { display: flex; flex-direction: column; gap: 8px; }
.console .cell .k { color: var(--fg-4); font-size: 9.5px; letter-spacing: 2px; }
.console .cell .v {
  font-family: var(--d); font-weight: 600;
  font-size: clamp(15px, 1.4vw, 19px);
  color: var(--fg); letter-spacing: -0.01em;
  text-transform: none;
  display: flex; align-items: center; gap: 10px;
}
.console .cell .v .pulse {
  width: 8px; height: 8px; background: var(--mag); border-radius: 50%;
  animation: pulse 2s var(--ease) infinite;
  flex-shrink: 0;
}
.console .cell .v .num {
  font-family: var(--m); font-weight: 500; color: var(--mag);
}
.console .cell.live .v { color: var(--mag-soft); }
@media (max-width: 1080px) {
  .console .row { grid-template-columns: 1fr 1fr; row-gap: 28px; }
}
@media (max-width: 720px) {
  .console .row { grid-template-columns: 1fr; }
}

/* =========================================================
   VERTICAL TIMELINE — magazine-spread process
   ========================================================= */
.timeline { padding: var(--pad) 0; background: var(--bg-pure); }
.tl {
  position: relative;
  margin-top: clamp(36px, 5vw, 64px);
}
.tl::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: calc(34% - 1px);
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, var(--line) 4%, var(--line) 96%, transparent 100%);
}
.tl-step {
  display: grid;
  grid-template-columns: 1fr 60px 1.4fr;
  gap: clamp(20px, 3vw, 50px);
  align-items: flex-start;
  padding: clamp(40px, 5vw, 72px) 0;
  border-bottom: 1px solid var(--line-2);
  position: relative;
}
.tl-step:last-child { border-bottom: 0; }
.tl-step .left {
  text-align: right;
  padding-right: clamp(8px, 1.5vw, 24px);
}
.tl-step .week {
  font-family: var(--m); font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--mag-soft);
  margin-bottom: 14px;
}
.tl-step .week .ix { color: var(--fg-3); margin-right: 8px; }
.tl-step .title {
  font-family: var(--d); font-weight: 700;
  font-size: clamp(28px, 3.6vw, 56px);
  line-height: 1.04; letter-spacing: -0.035em;
  color: var(--fg);
}
.tl-step:nth-child(even) .title { -webkit-text-stroke: 1.4px var(--fg-3); color: transparent; }
.tl-step .marker {
  display: flex; justify-content: center;
  position: relative; padding-top: 18px;
}
.tl-step .marker .dot {
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--bg-pure);
  border: 1px solid var(--fg-3);
  position: relative; z-index: 2;
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.tl-step.lit .marker .dot { background: var(--mag); border-color: var(--mag); box-shadow: 0 0 0 6px rgba(240,39,126,0.16); }
.tl-step .right {
  padding-left: clamp(8px, 1.5vw, 24px);
}
.tl-step .body {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--fg-2);
  font-weight: 300;
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 22px;
  text-wrap: pretty;
}
.tl-step .deliv {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 22px;
}
.tl-step .deliv .d {
  font-family: var(--m); font-size: 10.5px;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--fg-3);
  border: 1px solid var(--line); border-radius: 100px;
  padding: 6px 12px;
}
.tl-step .deliv .d.key { color: var(--mag-soft); border-color: rgba(240,39,126,0.36); }
.tl-step .who {
  font-family: var(--m); font-size: 10.5px;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--fg-4);
}
.tl-step .who b { color: var(--fg-2); font-weight: 500; }

@media (max-width: 1080px) {
  .tl::before { left: 28px; }
  .tl-step { grid-template-columns: 56px 1fr; }
  .tl-step .left { display: contents; }
  .tl-step .left .week { order: 0; grid-column: 2; text-align: left; padding-right: 0; }
  .tl-step .left .title { order: 0; grid-column: 2; text-align: left; padding-right: 0; }
  .tl-step .marker { grid-row: span 2; grid-column: 1; padding-top: 4px; }
  .tl-step .right { grid-column: 2; padding-left: 0; }
}

/* =========================================================
   RUN-OF-SHOW — call sheet excerpt
   ========================================================= */
.ros { padding: var(--pad) 0; }
.ros-wrap {
  border: 1px solid var(--line);
  background: var(--bg-2);
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 2fr);
  position: relative;
}
.ros-meta {
  padding: clamp(28px, 3vw, 44px);
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column;
  gap: 22px;
  font-family: var(--m);
  font-size: 11px; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--fg-3);
  line-height: 1.9;
}
.ros-meta .stamp {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--mag);
  color: var(--mag-soft);
  padding: 5px 10px;
  border-radius: 4px;
  align-self: flex-start;
  font-size: 9.5px;
  letter-spacing: 2px;
}
.ros-meta .stamp .pulse {
  width: 6px; height: 6px; background: var(--mag); border-radius: 50%;
  animation: pulse 2s var(--ease) infinite;
}
.ros-meta b { color: var(--fg); font-weight: 500; display: block; font-size: 13px; letter-spacing: 0.5px; text-transform: none; font-family: var(--d); }
.ros-meta .note {
  margin-top: auto;
  font-size: 10.5px;
  line-height: 1.8;
  color: var(--fg-4);
  border-top: 1px solid var(--line-2);
  padding-top: 22px;
}

.ros-list { padding: clamp(14px, 2vw, 24px) 0; }
.ros-line {
  display: grid;
  grid-template-columns: 88px 24px 1fr auto;
  gap: clamp(14px, 2vw, 32px);
  align-items: baseline;
  padding: clamp(11px, 1.1vw, 16px) clamp(20px, 3vw, 44px);
  position: relative;
  border-bottom: 1px solid var(--line-2);
  transition: background .3s var(--ease);
}
.ros-list .ros-line:last-child { border-bottom: 0; }
.ros-line:hover { background: rgba(244,238,240,0.02); }
.ros-line .t {
  font-family: var(--m); font-size: 13px; letter-spacing: 0.5px;
  color: var(--mag); font-weight: 500;
}
.ros-line .c {
  font-family: var(--m); font-size: 9.5px; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--fg-4);
  border: 1px solid var(--line); border-radius: 100px;
  padding: 3px 8px; align-self: center; min-width: 24px; text-align: center;
}
.ros-line .a {
  font-family: var(--d); font-weight: 500;
  font-size: clamp(14px, 1.15vw, 16px);
  color: var(--fg); letter-spacing: -0.005em;
  line-height: 1.4;
}
.ros-line .a b { color: var(--mag-soft); font-weight: 500; }
.ros-line .o {
  font-family: var(--m); font-size: 10px; letter-spacing: 1px;
  text-transform: uppercase; color: var(--fg-4); white-space: nowrap;
}
.ros-line.cue {
  background: rgba(240,39,126,0.04);
}
.ros-line.cue .a b { color: var(--mag); }

@media (max-width: 980px) {
  .ros-wrap { grid-template-columns: 1fr; }
  .ros-meta { border-right: none; border-bottom: 1px solid var(--line); }
  .ros-line { grid-template-columns: 64px 22px 1fr; }
  .ros-line .o { display: none; }
}

/* =========================================================
   KIT INVENTORY — owned gear list
   ========================================================= */
.kit { padding: var(--pad) 0; background: var(--bg); }
.kit-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; margin-bottom: clamp(40px, 5vw, 72px); }
.kit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.kit-col {
  padding: clamp(24px, 3vw, 40px) clamp(16px, 2vw, 28px) clamp(28px, 3vw, 44px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.kit-col:nth-child(3n) { border-right: none; }
.kit-col .cn { font-family: var(--m); font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--mag-soft); margin-bottom: 22px; display: flex; align-items: center; gap: 10px; }
.kit-col .cn .ix { color: var(--fg-3); }
.kit-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.kit-col li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  font-family: var(--d); font-weight: 500;
  font-size: 14.5px;
  color: var(--fg); letter-spacing: -0.005em;
  align-items: baseline;
}
.kit-col li .qty {
  font-family: var(--m); font-weight: 400;
  font-size: 11px; letter-spacing: 1px;
  color: var(--fg-3); text-transform: uppercase;
}
.kit-foot {
  border-top: 1px solid var(--line);
  padding-top: clamp(22px, 3vw, 36px);
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
  font-family: var(--m); font-size: 11px;
  letter-spacing: 1.2px; text-transform: uppercase; color: var(--fg-3);
}
.kit-foot b { color: var(--fg); font-weight: 500; }
@media (max-width: 980px) {
  .kit-grid { grid-template-columns: 1fr 1fr; }
  .kit-col:nth-child(3n) { border-right: 1px solid var(--line); }
  .kit-col:nth-child(2n) { border-right: none; }
}
@media (max-width: 600px) {
  .kit-grid { grid-template-columns: 1fr; }
  .kit-col { border-right: none; }
}

/* =========================================================
   BIG-QUOTE TESTIMONIAL — one huge pull-quote
   ========================================================= */
.bigq { padding: var(--pad) 0; background: var(--bg); position: relative; overflow: hidden; }
.bigq .stack { position: relative; min-height: clamp(380px, 44vw, 620px); }
.bigq .slot {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .8s var(--ease);
  display: flex; flex-direction: column; justify-content: center;
}
.bigq .slot.on { opacity: 1; }
.bigq .quote {
  font-family: var(--d); font-weight: 600;
  font-size: clamp(34px, 6.2vw, 104px);
  line-height: 1.04; letter-spacing: -0.04em;
  color: var(--fg);
  max-width: 1280px;
  text-wrap: balance;
}
.bigq .quote .mag { color: var(--mag); }
.bigq .quote::before {
  content: '“';
  display: block;
  font-family: var(--d); font-weight: 800;
  font-size: clamp(80px, 12vw, 220px);
  line-height: 0.35; color: var(--mag);
  margin-bottom: clamp(20px, 3vw, 50px);
}
.bigq .att {
  margin-top: clamp(28px, 4vw, 56px);
  display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap;
  font-family: var(--m); font-size: 12px; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--fg-3);
  line-height: 2;
}
.bigq .att b { color: var(--fg); font-weight: 500; }
.bigq .att .who { display: flex; flex-direction: column; }
.bigq .ctrl { display: flex; align-items: center; gap: 22px; }
.bigq .ctrl-btn {
  width: 54px; height: 54px; border-radius: 50%;
  border: 1px solid var(--line); color: var(--fg);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.bigq .ctrl-btn:hover { border-color: var(--mag); background: rgba(240,39,126,0.08); color: var(--mag-soft); }
.bigq .num { font-family: var(--m); font-size: 12px; letter-spacing: 1.6px; color: var(--fg-3); }
.bigq .num b { color: var(--fg); font-weight: 500; }

/* hide old voices section we are replacing */
.voices { display: none !important; }



/* =========================================================
   GALLERY — visual moment, full-bleed asymmetric grid
   ========================================================= */
.gallery { padding: var(--pad) 0 0; background: var(--bg); }
.gal-bleed { margin-top: clamp(40px, 5vw, 72px); padding: 0 var(--gut); }
.gal-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(110px, 14vw, 220px);
  gap: clamp(10px, 1.2vw, 18px);
}
.gal-tile {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  display: block;
  background-color: #0c0709;
  cursor: pointer;
  transition: transform .55s var(--ease);
}
.gal-tile::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%),
    radial-gradient(ellipse at 50% 32%, transparent 24%, rgba(0,0,0,0.4) 100%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
  background-blend-mode: normal, normal, overlay;
  background-size: cover, cover, 180px;
}
.gal-tile:hover { transform: scale(0.985); }
.gal-tile .gal-meta {
  position: absolute;
  left: clamp(18px, 1.6vw, 26px);
  bottom: clamp(18px, 1.6vw, 26px);
  z-index: 2;
  display: flex; flex-direction: column; gap: 4px;
  font-family: var(--m);
  font-size: 10.5px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.gal-tile:hover .gal-meta { opacity: 1; transform: translateY(0); }
.gal-tile .gal-meta b {
  font-family: var(--d); font-weight: 600;
  font-size: clamp(15px, 1.4vw, 19px);
  color: #fff; letter-spacing: -0.01em; text-transform: none;
}

.gal-tile.gal-1 { grid-column: span 5; grid-row: span 2; }
.gal-tile.gal-2 { grid-column: span 4; grid-row: span 2; }
.gal-tile.gal-3 { grid-column: span 3; grid-row: span 2; }
.gal-tile.gal-4 { grid-column: span 4; }
.gal-tile.gal-5 { grid-column: span 5; }
.gal-tile.gal-6 { grid-column: span 3; }

@media (max-width: 980px) {
  .gal-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: clamp(120px, 20vw, 200px); }
  .gal-tile.gal-1 { grid-column: span 4; grid-row: span 2; }
  .gal-tile.gal-2 { grid-column: span 2; grid-row: span 2; }
  .gal-tile.gal-3 { grid-column: span 3; }
  .gal-tile.gal-4 { grid-column: span 3; }
  .gal-tile.gal-5 { grid-column: span 3; }
  .gal-tile.gal-6 { grid-column: span 3; }
}
@media (max-width: 600px) {
  .gal-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gal-tile.gal-1, .gal-tile.gal-2, .gal-tile.gal-3,
  .gal-tile.gal-4, .gal-tile.gal-5, .gal-tile.gal-6 { grid-column: span 1; grid-row: span 1; }
  .gal-tile.gal-1 { grid-column: span 2; grid-row: span 2; }
  .gal-tile .gal-meta { opacity: 1; transform: none; }
}

/* =========================================================
   INQUIRY — trimmed, simpler
   ========================================================= */
.inquiry .form-blocks { gap: clamp(22px, 2.6vw, 36px); }

/* tighten featured work visual presence */
.work-feat .frame { min-height: clamp(420px, 52vw, 660px); }

/* hide kit-related styling that's no longer used (now unused but harmless) */
