/* ═══════════════════════════════════════════
   MIROSH — cinematic scroll portfolio
   ═══════════════════════════════════════════ */

:root {
  --ivory: #F5F0E7;
  --ivory-deep: #EDE6D8;
  --gold: #C6A15B;
  --gold-soft: #E5D3AC;
  --char: #26241F;
  --char-soft: #6B6459;
  --display: 'Anton', sans-serif;
  --body: 'Archivo', sans-serif;
  --mono: 'IBM Plex Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: initial; }

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

body {
  background: var(--ivory);
  color: var(--char);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Preloader ─────────────────────────── */
.preloader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .8s cubic-bezier(.7,0,.3,1), visibility .8s;
}
.preloader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__inner { text-align: center; }
.preloader__word {
  font-family: var(--display);
  font-size: clamp(48px, 9vw, 120px);
  letter-spacing: .04em;
  color: var(--char);
  display: flex; justify-content: center; overflow: hidden;
}
.preloader__word span {
  display: inline-block;
  transform: translateY(110%);
  animation: pre-rise .9s cubic-bezier(.2,.9,.2,1) forwards;
}
.preloader__word span:nth-child(1) { animation-delay: .05s; }
.preloader__word span:nth-child(2) { animation-delay: .12s; }
.preloader__word span:nth-child(3) { animation-delay: .19s; }
.preloader__word span:nth-child(4) { animation-delay: .26s; }
.preloader__word span:nth-child(5) { animation-delay: .33s; }
.preloader__word span:nth-child(6) { animation-delay: .40s; }
@keyframes pre-rise { to { transform: translateY(0); } }
.preloader__bar {
  width: min(320px, 60vw); height: 2px;
  background: rgba(38,36,31,.14);
  margin: 28px auto 14px; overflow: hidden;
}
.preloader__fill {
  width: 0%; height: 100%;
  background: var(--gold);
  transition: width .25s ease-out;
}
.preloader__pct {
  font-family: var(--mono);
  font-size: 12px; letter-spacing: .18em;
  color: var(--char-soft);
}

/* ── Grain ─────────────────────────────── */
.grain {
  position: fixed; inset: -100%; z-index: 150;
  pointer-events: none; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift .6s steps(4) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0,0); }
  25% { transform: translate(-2%,1%); }
  50% { transform: translate(1%,-2%); }
  75% { transform: translate(-1%,2%); }
  100% { transform: translate(2%,-1%); }
}

/* ── Scroll progress ───────────────────── */
.progress {
  position: fixed; top: 0; left: 0; right: 0; z-index: 120;
  height: 3px; background: transparent;
  pointer-events: none;
}
.progress__fill {
  height: 100%; width: 100%;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
}

/* ── Nav ───────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 56px);
  mix-blend-mode: normal;
  transform: translateY(-110%);
  transition: transform .8s cubic-bezier(.2,.9,.2,1);
}
.nav.is-in { transform: translateY(0); }
.nav__left { display: flex; align-items: center; gap: 14px; }
.nav__logo {
  font-family: var(--display);
  font-size: 26px; color: var(--char); text-decoration: none;
  letter-spacing: .02em;
}
.nav__logo-dot { color: var(--gold); }
.nav__status {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .16em;
  color: var(--char-soft);
  border: 1px solid rgba(38,36,31,.25);
  border-radius: 100px;
  padding: 6px 12px;
  background: rgba(245,240,231,.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.nav__status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4E9B47;
  animation: status-pulse 2s ease-in-out infinite;
}
@keyframes status-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(78,155,71,.45); }
  55% { box-shadow: 0 0 0 6px rgba(78,155,71,0); }
}
@media (max-width: 520px) { .nav__status { display: none; } }
.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--char); text-decoration: none;
  position: relative; padding-bottom: 3px;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s cubic-bezier(.2,.9,.2,1);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta {
  font-family: var(--mono); font-size: 12px; letter-spacing: .1em;
  text-transform: uppercase; text-decoration: none;
  color: var(--ivory); background: var(--char);
  padding: 11px 22px; border-radius: 100px;
  transition: background .3s, transform .3s;
}
.nav__cta:hover { background: var(--gold); transform: translateY(-2px); }
@media (max-width: 720px) { .nav__links { display: none; } }

/* ── Section tag ───────────────────────── */
.sec-tag {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: .18em; color: var(--gold);
  display: inline-block; margin-bottom: 14px;
}
.sec-tag--light { color: var(--gold-soft); }

/* ── Hero ──────────────────────────────── */
.hero { height: 420vh; position: relative; }
.hero__sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  background: var(--ivory-deep);
}
.hero__canvas, .hero__video-fallback {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__video-fallback { display: none; }
.hero__video-fallback.is-active { display: block; }
.hero__vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 52%, rgba(38,36,31,.18) 100%),
    linear-gradient(to bottom, rgba(245,240,231,.24), transparent 22%, transparent 72%, rgba(245,240,231,.5));
  pointer-events: none;
}
.hero__title {
  position: absolute; left: 50%; top: 38%;
  transform: translate(-50%,-50%);
  display: flex;
  font-family: var(--display);
  font-size: clamp(72px, 15vw, 260px);
  line-height: .96; letter-spacing: .015em;
  color: var(--char);
  pointer-events: none;
  white-space: nowrap;
}
.hero__letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(60%);
  text-shadow: 0 2px 60px rgba(245,240,231,.5);
}
.hero__sub {
  position: absolute; left: 50%; bottom: 6vh;
  transform: translateX(-50%);
  text-align: center; width: min(760px, 92vw);
  opacity: 0;
  padding: 22px 30px 24px;
  background: rgba(245,240,231,.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 18px;
}
.hero__kicker {
  font-family: var(--mono); font-size: 13px;
  letter-spacing: .22em; text-transform: uppercase;
  color: #9A7830; margin-bottom: 10px;
}
.hero__tagline {
  font-size: clamp(16px, 2vw, 21px);
  font-weight: 500; color: var(--char);
}
.hero__cue {
  position: absolute; right: 4vw; bottom: 5vh;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__statement {
  position: absolute; left: clamp(20px, 6vw, 90px); top: 50%;
  transform: translateY(-50%);
  width: min(640px, 86vw);
  opacity: 0; visibility: hidden;
  pointer-events: none;
}
.hero__statement-title {
  font-family: var(--display);
  font-size: clamp(40px, 6.4vw, 104px);
  line-height: 1.0; color: var(--char);
  text-transform: uppercase;
  margin-top: 12px;
  text-shadow: 0 1px 40px rgba(245,240,231,.65);
}
.hero__statement-title em { font-style: normal; color: var(--gold); }
.hero__statement-sub {
  margin-top: 26px;
  font-size: clamp(15px, 1.7vw, 19px);
  color: var(--char-soft);
  max-width: 520px;
  background: rgba(245,240,231,.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 14px 18px;
  border-radius: 12px;
}
.hero__statement-sub strong { color: var(--char); }
.hero__cue-label {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--char-soft);
}
.hero__cue-line {
  width: 1px; height: 42px;
  background: var(--char-soft);
  transform-origin: top;
  animation: cue 1.8s cubic-bezier(.7,0,.3,1) infinite;
}
@keyframes cue {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Stats ─────────────────────────────── */
.stats {
  padding: clamp(90px, 14vh, 160px) clamp(20px, 5vw, 64px);
  background: var(--ivory);
}
.stats__rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 4vw, 56px);
  max-width: 1400px; margin: 0 auto;
}
.stat { border-top: 1px solid rgba(38,36,31,.2); padding-top: 22px; }
.stat__num {
  font-family: var(--display);
  font-size: clamp(56px, 7.5vw, 118px);
  line-height: 1; color: var(--char);
}
.stat__suffix { color: var(--gold); }
.stat__label {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--char); margin-top: 12px;
}
.stat__note { font-size: 13.5px; color: var(--char-soft); margin-top: 5px; }
@media (max-width: 880px) { .stats__rail { grid-template-columns: repeat(2, 1fr); } }

/* ── Section scaffolding (shared) ──────── */
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
  margin-bottom: clamp(36px, 5vh, 60px);
}
.section-title {
  font-family: var(--display);
  font-size: clamp(38px, 5.6vw, 84px);
  line-height: .98; color: var(--char);
  text-transform: uppercase;
  margin-top: 8px;
}
.section-intro {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--char-soft); max-width: 480px;
  padding-bottom: 8px;
}
.section-intro strong { color: var(--char); }
.showreel, .live, .services, .venture, .about {
  padding: clamp(90px, 13vh, 160px) clamp(20px, 5vw, 64px) 0;
  max-width: 1400px; margin: 0 auto;
}

/* ── Case plates ───────────────────────── */
.plates {
  padding: clamp(100px, 15vh, 180px) clamp(20px, 5vw, 64px);
  max-width: 1400px; margin: 0 auto;
  background: var(--ivory);
}
.plates__title {
  font-family: var(--display);
  font-size: clamp(38px, 5.6vw, 84px);
  line-height: .98; color: var(--char);
  text-transform: uppercase;
}
.plates__intro {
  margin: 18px 0 54px;
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--char-soft); max-width: 560px;
}
.plates__intro strong { color: var(--char); }
.plate {
  border: 1px solid var(--char);
  background: #FBF8F2;
  margin-bottom: 38px;
  box-shadow: 6px 6px 0 rgba(198,161,91,.22);
}
.plate__bar {
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px; flex-wrap: wrap;
  border-bottom: 1px solid var(--char);
  padding: 13px 24px;
  font-family: var(--mono); font-size: 12px; letter-spacing: .1em;
}
.plate__num { color: var(--gold); font-weight: 500; }
.plate__client { color: var(--char-soft); }
.plate__body {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  padding: clamp(28px, 3.4vw, 48px);
}
.plate__body--flip .plate__copy { order: 2; }
.plate__body--flip .plate__visual { order: 1; }
.plate__copy h3 {
  font-family: var(--display);
  font-size: clamp(24px, 2.6vw, 40px);
  line-height: 1.08; color: var(--char);
  text-transform: uppercase; margin-bottom: 16px;
}
.plate__copy p { font-size: 15.5px; color: var(--char-soft); margin-bottom: 20px; }
.plate__copy p strong { color: var(--char); }
.plate__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.plate__tags span {
  font-family: var(--mono); font-size: 11px; letter-spacing: .06em;
  border: 1px solid rgba(38,36,31,.3); padding: 5px 11px;
  color: var(--char-soft);
}
.plate__proof {
  font-family: var(--mono); font-size: 12px; letter-spacing: .1em;
  color: #7A6023; background: rgba(198,161,91,.16);
  padding: 9px 14px; display: inline-block;
}
.plate__visual { display: flex; align-items: center; justify-content: center; }
.chat-demo { width: 100%; display: flex; flex-direction: column; gap: 10px; }
.chat-demo__row {
  border: 1px solid rgba(38,36,31,.18);
  background: #fff; padding: 12px 16px;
  font-size: 13.5px; position: relative;
}
.chat-demo__row--ai { background: rgba(198,161,91,.1); border-color: rgba(198,161,91,.5); margin-left: 26px; }
.chat-demo__user {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em;
  color: var(--gold); display: block; margin-bottom: 4px;
}
.chat-demo__msg { color: var(--char); }
.chat-demo__approve {
  font-family: var(--mono); font-size: 10px; letter-spacing: .1em;
  color: #fff; background: var(--char);
  padding: 5px 10px; position: absolute; right: 10px; bottom: 10px;
}
.channel-board { width: 100%; border: 1px solid rgba(38,36,31,.25); background: #fff; }
.channel-board__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 18px;
  font-family: var(--mono); font-size: 12px; letter-spacing: .06em;
  border-bottom: 1px solid rgba(38,36,31,.12);
  color: var(--char);
}
.channel-board__row:last-child { border-bottom: none; }
.channel-board__status { color: #7A6023; font-size: 11px; }
.plate__launch {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 14px; letter-spacing: .12em;
  color: var(--char); text-decoration: none;
  border: 1px solid var(--char);
  padding: 26px 40px;
  transition: background .35s, color .35s, transform .35s;
}
.plate__launch:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: translateY(-4px); }
.plate__launch-arrow { transition: transform .35s; }
.plate__launch:hover .plate__launch-arrow { transform: translateX(6px); }
@media (max-width: 880px) {
  .plate__body { grid-template-columns: 1fr; }
  .plate__body--flip .plate__copy { order: 1; }
  .plate__body--flip .plate__visual { order: 2; }
}

/* ── Marquee ───────────────────────────── */
.marquee {
  overflow: hidden; padding: 26px 0;
  border-top: 1px solid rgba(38,36,31,.14);
  border-bottom: 1px solid rgba(38,36,31,.14);
  background: var(--ivory);
}
.marquee__track {
  display: flex; white-space: nowrap; will-change: transform;
  font-family: var(--display);
  font-size: clamp(26px, 3.4vw, 46px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(38,36,31,.55);
}

/* ── Pillars (over clip 2) ─────────────── */
.pillars { height: 400vh; position: relative; }
.pillars__sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  background: var(--char);
}
.pillars__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.pillars__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(245,240,231,.93) 0%, rgba(245,240,231,.82) 38%, rgba(245,240,231,.12) 75%, rgba(245,240,231,0) 100%);
}
.pillars__head {
  position: absolute; top: clamp(80px, 12vh, 130px); left: clamp(20px, 5vw, 72px);
}
.pillars__title {
  font-family: var(--display);
  font-size: clamp(38px, 5.6vw, 84px);
  line-height: .98; color: var(--char);
  text-transform: uppercase;
}
.pillars__list {
  position: absolute; left: clamp(20px, 5vw, 72px); bottom: clamp(40px, 9vh, 96px);
  width: min(620px, 88vw);
}
.pillar {
  position: absolute; bottom: 0; left: 0; width: 100%;
  opacity: 0; visibility: hidden;
}
.pillar__index {
  font-family: var(--mono); font-size: 13px;
  letter-spacing: .2em; color: var(--gold);
}
.pillar__name {
  font-family: var(--display);
  font-size: clamp(34px, 4.6vw, 68px);
  line-height: 1; color: var(--char);
  text-transform: uppercase;
  margin: 10px 0 14px;
}
.pillar__desc {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--char-soft); max-width: 460px;
}
.pillars__progress {
  position: absolute; right: clamp(20px, 4vw, 56px); bottom: clamp(40px, 9vh, 96px);
  display: flex; flex-direction: column; gap: 10px;
}
.pillars__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(38,36,31,.25);
  transition: background .3s, transform .3s;
}
.pillars__dot.is-on { background: var(--gold); transform: scale(1.4); }

/* ── Work (over clip 3) ────────────────── */
.work { height: 380vh; position: relative; }
.work__sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  background: var(--char);
}
.work__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.work__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(28,26,22,.55), rgba(28,26,22,.28) 40%, rgba(28,26,22,.72));
}
.work__head {
  position: absolute; top: clamp(80px, 12vh, 130px); left: clamp(20px, 5vw, 72px);
}
.work__title {
  font-family: var(--display);
  font-size: clamp(38px, 5.6vw, 84px);
  line-height: .98; color: var(--ivory);
  text-transform: uppercase;
}
.work__cards {
  position: absolute; left: clamp(20px, 5vw, 72px); right: clamp(20px, 5vw, 72px);
  bottom: clamp(36px, 8vh, 88px);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 26px);
}
.card {
  position: relative; display: block;
  padding: clamp(20px, 2.4vw, 34px);
  background: rgba(245,240,231,.07);
  border: 1px solid rgba(245,240,231,.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  text-decoration: none;
  transform: translateY(60px); opacity: 0;
  transition: background .4s, border-color .4s, transform .5s cubic-bezier(.2,.9,.2,1);
}
.card:hover {
  background: rgba(245,240,231,.14);
  border-color: var(--gold);
  transform: translateY(-8px) !important;
}
.card__index {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: .2em; color: var(--gold);
}
.card__name {
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 34px);
  color: var(--ivory); text-transform: uppercase;
  margin: 10px 0 10px; line-height: 1.05;
}
.card__pitch { font-size: 14px; color: rgba(245,240,231,.78); }
.card__arrow {
  position: absolute; top: clamp(18px, 2vw, 30px); right: clamp(18px, 2vw, 30px);
  color: var(--gold); font-size: 20px;
  transform: translateX(-6px); opacity: 0;
  transition: transform .4s, opacity .4s;
}
.card:hover .card__arrow { transform: translateX(0); opacity: 1; }
@media (max-width: 880px) {
  .work__cards { grid-template-columns: 1fr; bottom: 4vh; gap: 10px; }
  .card__pitch { display: none; }
}

/* ── Campaigns ─────────────────────────── */
.campaigns {
  padding: clamp(90px, 13vh, 160px) clamp(20px, 5vw, 64px) 0;
  max-width: 1400px; margin: 0 auto;
}
.camp {
  border: 1px solid var(--char);
  background: #FBF8F2;
  margin-bottom: 34px;
  box-shadow: 6px 6px 0 rgba(198,161,91,.22);
}
.camp__bar {
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px; flex-wrap: wrap;
  border-bottom: 1px solid var(--char);
  padding: 13px 24px;
  font-family: var(--mono); font-size: 12px; letter-spacing: .1em;
}
.camp__num { color: var(--gold); font-weight: 500; }
.camp__client { color: var(--char-soft); }
.camp__rail {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 1.4vw, 18px);
  padding: clamp(18px, 2.2vw, 30px) clamp(18px, 2.2vw, 30px) 8px;
}
.camp__rail--five { grid-template-columns: repeat(5, 1fr); }
.camp-item { min-width: 0; }
.camp-tile {
  margin: 0; position: relative; overflow: hidden;
  border: 1px solid var(--char);
  background: #fff;
  aspect-ratio: 9/14;
  box-shadow: 4px 4px 0 rgba(198,161,91,.22);
}
.camp-tile img, .camp-tile video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(.2,.9,.2,1);
}
.camp-tile:hover img, .camp-tile:hover video { transform: scale(1.05); }
.camp-badge {
  position: absolute; top: 7px; right: 7px;
  font-family: var(--mono); font-size: 9px; letter-spacing: .1em;
  color: #fff; background: rgba(28,26,22,.72);
  padding: 2px 7px;
}
.camp-sound {
  position: absolute; bottom: 8px; left: 8px;
  font-family: var(--mono); font-size: 9px; letter-spacing: .1em;
  color: #fff; background: rgba(198,161,91,.92);
  border: none; padding: 5px 9px; cursor: pointer;
  transition: background .3s;
}
.camp-sound:hover { background: var(--char); }
.camp-sound.is-on { background: var(--char); }
.camp-cap {
  font-family: var(--mono); font-size: 10px; letter-spacing: .1em;
  color: var(--char-soft); margin-top: 9px; line-height: 1.5;
}
.camp-cap b { color: #9A7830; font-weight: 500; display: block; }
.camp__foot {
  padding: 14px clamp(18px, 2.2vw, 30px) 24px;
  font-size: 14.5px; color: var(--char-soft); max-width: 720px;
}
.camp__foot strong { color: var(--char); }
@media (max-width: 880px) {
  .camp__rail, .camp__rail--five { grid-template-columns: repeat(2, 1fr); }
}

/* ── Why me ────────────────────────────── */
.whyme {
  padding: clamp(90px, 13vh, 160px) clamp(20px, 5vw, 64px) 0;
  max-width: 1400px; margin: 0 auto;
}
.whyme__wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.whyme__table {
  width: 100%; min-width: 760px;
  border-collapse: collapse;
  border: 1px solid var(--char);
  background: #FBF8F2;
  box-shadow: 6px 6px 0 rgba(198,161,91,.22);
}
.whyme__table thead th {
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em;
  color: var(--char-soft); text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--char);
  border-right: 1px solid rgba(38,36,31,.15);
}
.whyme__table thead th.me {
  color: var(--ivory); background: var(--char);
  font-size: 12px;
}
.whyme__table tbody th {
  font-family: var(--display); font-size: 15px; letter-spacing: .05em;
  text-transform: uppercase; color: var(--char); text-align: left;
  padding: 18px 20px; vertical-align: top;
  border-bottom: 1px solid rgba(38,36,31,.15);
  border-right: 1px solid rgba(38,36,31,.15);
  width: 130px;
}
.whyme__table tbody td {
  font-size: 14px; color: var(--char-soft); line-height: 1.55;
  padding: 18px 20px; vertical-align: top;
  border-bottom: 1px solid rgba(38,36,31,.15);
  border-right: 1px solid rgba(38,36,31,.15);
}
.whyme__table tbody td em { font-style: italic; }
.whyme__table tbody td.me {
  background: rgba(198,161,91,.14);
  color: var(--char); font-weight: 500;
  border-left: 2px solid var(--gold);
}
.whyme__table tbody tr:last-child th,
.whyme__table tbody tr:last-child td { border-bottom: none; }
.whyme__cta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin-top: 34px;
  padding: 26px clamp(20px, 3vw, 40px);
  background: var(--char);
}
.whyme__cta p { color: rgba(245,240,231,.8); font-size: 15.5px; max-width: 560px; }
.whyme__cta p strong { color: var(--gold-soft); }
.whyme__cta .btn--solid { background: var(--gold); border-color: var(--gold); color: #fff; }
.whyme__cta .btn--solid:hover { background: var(--ivory); border-color: var(--ivory); color: var(--char); }

/* ── Venture gallery + clients ─────────── */
.venture__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 1.4vw, 18px);
  margin-bottom: clamp(24px, 3vh, 40px);
}
.v-tile {
  margin: 0; position: relative; overflow: hidden;
  border: 1px solid var(--char);
  background: #fff;
  aspect-ratio: 4/3;
  box-shadow: 5px 5px 0 rgba(198,161,91,.22);
}
.v-tile--wide { grid-column: span 2; aspect-ratio: auto; }
.v-tile img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(.2,.9,.2,1);
}
.v-tile:hover img { transform: scale(1.05); }
.v-tile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; justify-content: space-between; gap: 8px;
  padding: 9px 12px;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .1em;
  color: var(--ivory);
  background: linear-gradient(to top, rgba(28,26,22,.82), transparent);
}
.v-tile figcaption span:first-child { color: var(--gold-soft); }
@media (max-width: 880px) {
  .venture__gallery { grid-template-columns: repeat(2, 1fr); }
  .v-tile--wide { grid-column: span 2; }
}
.venture__clients {
  display: flex; align-items: center; gap: clamp(20px, 4vw, 48px);
  flex-wrap: wrap;
  background: var(--char);
  border: 1px solid var(--char);
  padding: 20px clamp(20px, 3vw, 40px);
  margin-bottom: clamp(24px, 3vh, 40px);
}
.venture__clients-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: .18em;
  color: var(--gold-soft);
}
.venture__logos { display: flex; align-items: center; gap: clamp(24px, 4vw, 56px); flex-wrap: wrap; }
.venture__logos img { height: 34px; width: auto; opacity: .9; }

/* ── Showreel ──────────────────────────── */
.showreel__grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: clamp(10px, 1.4vw, 18px);
}
.reel-tile {
  margin: 0; position: relative;
  border: 1px solid var(--char);
  box-shadow: 5px 5px 0 rgba(198,161,91,.25);
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.9,.2,1), box-shadow .4s;
  aspect-ratio: 9/14;
  background: var(--char);
}
.reel-tile:hover { transform: translateY(-8px); box-shadow: 8px 10px 0 rgba(198,161,91,.35); }
.reel-tile img, .reel-tile video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(.2,.9,.2,1);
}
.reel-tile:hover img, .reel-tile:hover video { transform: scale(1.05); }
.reel-tile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
  padding: 10px 12px;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .1em;
  color: var(--ivory);
  background: linear-gradient(to top, rgba(28,26,22,.82), transparent);
}
.reel-tile figcaption span:first-child { color: var(--gold-soft); }
@media (max-width: 980px) { .showreel__grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Live links ────────────────────────── */
.live__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.6vw, 20px);
}
.live-card {
  position: relative; display: block;
  border: 1px solid var(--char);
  background: #FBF8F2;
  padding: 24px 22px 22px;
  text-decoration: none;
  box-shadow: 4px 4px 0 rgba(198,161,91,.22);
  transition: transform .35s cubic-bezier(.2,.9,.2,1), background .35s, box-shadow .35s;
}
.live-card:hover { background: #fff; transform: translateY(-6px); box-shadow: 6px 8px 0 rgba(198,161,91,.32); }
.live-card__tag {
  font-family: var(--mono); font-size: 10px; letter-spacing: .12em;
  color: var(--gold); display: block; margin-bottom: 12px;
}
.live-card__arrow {
  position: absolute; top: 18px; right: 18px;
  font-family: var(--mono); font-size: 14px; color: var(--gold);
  transition: transform .35s;
}
.live-card:hover .live-card__arrow { transform: translate(3px, -3px); }
.live-card h3 {
  font-family: var(--body); font-weight: 600;
  font-size: 17px; line-height: 1.3; color: var(--char);
  margin-bottom: 7px;
}
.live-card p { font-size: 13px; color: var(--char-soft); line-height: 1.5; }
@media (max-width: 980px) { .live__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .live__grid { grid-template-columns: 1fr; } }

/* ── Services ──────────────────────────── */
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--char);
  border-left: 1px solid var(--char);
}
.svc {
  border-right: 1px solid var(--char);
  border-bottom: 1px solid var(--char);
  padding: 28px 26px 30px;
  background: #FBF8F2;
  transition: background .3s;
}
.svc:hover { background: rgba(198,161,91,.1); }
.svc__for {
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em;
  color: var(--gold); display: block; margin-bottom: 12px;
}
.svc h3 {
  font-family: var(--body); font-weight: 600;
  font-size: 18.5px; line-height: 1.25; color: var(--char);
  margin-bottom: 8px;
}
.svc p { font-size: 13.5px; color: var(--char-soft); line-height: 1.55; }
.svc__proof {
  font-family: var(--mono); font-size: 10px; letter-spacing: .08em;
  color: #7A6023; margin-top: 14px; display: block;
}
@media (max-width: 980px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services__grid { grid-template-columns: 1fr; } }

/* ── Venture ───────────────────────────── */
.venture__role {
  display: grid; grid-template-columns: 1.1fr .9fr;
  border: 1px solid var(--char);
  background: #FBF8F2;
  margin-bottom: clamp(24px, 3vh, 40px);
  box-shadow: 6px 6px 0 rgba(198,161,91,.22);
}
.venture__role-copy { padding: 26px 28px; border-right: 1px solid var(--char); }
.venture__role-copy p { font-size: 14.5px; color: var(--char); line-height: 1.6; margin-top: 4px; }
.venture__stats { display: grid; grid-template-columns: repeat(3, 1fr); }
.venture__stats > div {
  padding: 20px 16px;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid rgba(38,36,31,.15);
}
.venture__stats > div:last-child { border-right: none; }
.venture__stats strong {
  font-family: var(--display);
  font-size: clamp(26px, 2.8vw, 38px); line-height: 1; color: var(--char);
}
.venture__stats span {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .12em;
  color: var(--char-soft); margin-top: 8px; line-height: 1.5;
}
.venture__slides {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.6vw, 20px);
}
.slide {
  border: 1px solid rgba(38,36,31,.35);
  background: #FBF8F2;
  padding: 24px 24px 26px;
  position: relative;
  text-decoration: none;
  transition: transform .35s cubic-bezier(.2,.9,.2,1), border-color .35s, background .35s;
}
.slide--media { padding: 0 0 26px; overflow: hidden; }
.slide--media .slide__body { padding: 20px 24px 0; }
.slide__media {
  margin: 0; overflow: hidden;
  aspect-ratio: 16/10;
  border-bottom: 1px solid rgba(38,36,31,.35);
  background: #fff;
}
.slide__media img, .slide__media video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(.2,.9,.2,1);
}
.slide:hover .slide__media img, .slide:hover .slide__media video { transform: scale(1.06); }
.slide--cta { position: relative; overflow: hidden; }
.slide__bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: .38;
  transition: opacity .5s;
}
.slide--cta:hover .slide__bg-video { opacity: .55; }
.slide--cta .slide__body { position: relative; z-index: 1; }
.slide--cta .slide__body h3,
.slide--cta .slide__body p { text-shadow: 0 1px 12px rgba(28,26,22,.8); }
.slide:hover { transform: translateY(-5px); border-color: var(--gold); }
.slide__num {
  font-family: var(--mono); font-size: 11px; letter-spacing: .16em;
  color: var(--gold); display: block; margin-bottom: 12px;
}
.slide h3 {
  font-family: var(--display); font-size: 21px;
  text-transform: uppercase; color: var(--char);
  margin-bottom: 8px; letter-spacing: .02em;
}
.slide p { font-size: 13.5px; color: var(--char-soft); line-height: 1.55; }
.slide--cta { background: var(--char); }
.slide--cta h3 { color: var(--ivory); }
.slide--cta p { color: rgba(245,240,231,.75); }
.slide--cta:hover { background: var(--gold); }
.slide--cta:hover p, .slide--cta:hover .slide__num, .slide--cta:hover .slide__go { color: #fff; }
.slide__go {
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
  color: var(--gold-soft); display: block; margin-top: 14px;
}
@media (max-width: 980px) {
  .venture__role { grid-template-columns: 1fr; }
  .venture__role-copy { border-right: none; border-bottom: 1px solid var(--char); }
  .venture__slides { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) { .venture__slides { grid-template-columns: 1fr; } }

/* ── About / timeline ──────────────────── */
.about { padding-bottom: clamp(40px, 8vh, 90px); }
.timeline {
  list-style: none;
  border-left: 1px solid var(--char);
  padding-left: 28px;
  max-width: 640px;
}
.timeline li { position: relative; padding-bottom: 26px; }
.timeline li::before {
  content: ''; position: absolute; left: -32px; top: 7px;
  width: 8px; height: 8px; background: var(--gold);
}
.timeline__when {
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
  color: var(--char-soft); display: block; margin-bottom: 3px;
}
.timeline li strong { font-size: 16px; font-weight: 600; color: var(--char); }
.timeline__where { display: block; font-size: 14px; color: var(--char-soft); margin-top: 2px; }

/* ── Finale ────────────────────────────── */
.finale {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 120px clamp(20px, 5vw, 64px) 100px;
  text-align: center;
  background: var(--ivory);
}
.finale__title {
  font-family: var(--display);
  font-size: clamp(52px, 10.5vw, 172px);
  line-height: .96; color: var(--char);
  text-transform: uppercase;
}
.finale__title em { font-style: normal; color: var(--gold); }
.finale__line { display: block; overflow: hidden; }
.finale__line span { display: inline-block; transform: translateY(110%); }
.finale__ctas { display: flex; gap: 16px; margin-top: 54px; flex-wrap: wrap; justify-content: center; }
.btn {
  font-family: var(--mono); font-size: 13px;
  letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none;
  padding: 18px 38px; border-radius: 100px;
  transition: transform .35s cubic-bezier(.2,.9,.2,1), background .35s, color .35s, border-color .35s;
}
.btn--solid { background: var(--char); color: var(--ivory); border: 1px solid var(--char); }
.btn--solid:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.btn--ghost { background: transparent; color: var(--char); border: 1px solid rgba(38,36,31,.4); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

.finale__contact {
  margin-top: 34px;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center;
  font-family: var(--mono); font-size: 13px; letter-spacing: .06em;
  color: var(--char-soft);
}
.finale__contact a {
  color: var(--char); text-decoration: none;
  border-bottom: 1px solid rgba(198,161,91,.5);
  transition: color .3s, border-color .3s;
}
.finale__contact a:hover { color: var(--gold); border-color: var(--gold); }
.finale__contact-sep { color: var(--gold); }
.finale__promise {
  margin-top: 12px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: #9A7830;
}

/* ── Footer ────────────────────────────── */
.footer {
  padding: 46px clamp(20px, 5vw, 64px) 38px;
  border-top: 1px solid rgba(38,36,31,.16);
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  background: var(--ivory);
}
.footer__brand { font-family: var(--display); font-size: 20px; letter-spacing: .04em; }
.footer__links { display: flex; gap: 26px; }
.footer__links a {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--char); text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .3s, border-color .3s;
}
.footer__links a:hover { color: var(--gold); border-color: var(--gold); }
.footer__meta {
  display: flex; gap: 22px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .1em; color: var(--char-soft);
}
.footer__meta a {
  color: var(--char-soft); text-decoration: none;
  transition: color .3s;
}
.footer__meta a:hover { color: var(--gold); }

/* ── Reduced motion ────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .grain { animation: none; }
  .hero__cue-line { animation: none; }
}
