/* =========================================================
   ISOLATION MEDIA
   Montreal Medium (display) · Franklin Gothic Book (body)
   Instrument Serif (editorial italic accent)
   Ink / Signal Orange / Paper / Stone
   ========================================================= */

@font-face {
  font-family: "Montreal";
  src: url("../fonts/Montreal-Medium.ttf") format("truetype");
  font-weight: 400 700; font-display: swap;
}
@font-face {
  font-family: "Franklin";
  src: url("../fonts/FranklinGothic-Book.otf") format("opentype");
  font-weight: 400; font-display: swap;
}

:root {
  --ink: #0F0E0C;
  --ink-2: #17150F;
  --signal: #FF5C00;
  --signal-deep: #D94E00;
  --paper: #F2F0EA;
  --paper-2: #E8E5DB;
  --stone: #8A8782;
  --stone-dk: #57544E;

  --display: "Montreal", "Arial Narrow", Arial, sans-serif;
  --body: "Franklin", "Helvetica Neue", Arial, sans-serif;
  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;

  --maxw: 1380px;
  --pad: clamp(20px, 5vw, 96px);
  --radius: clamp(18px, 2.4vw, 34px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body); background: var(--paper); color: var(--ink);
  line-height: 1.5; overflow-x: hidden; -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--signal); color: var(--paper); }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

/* serif editorial accent */
.ser { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: 0; }

.signal-dot { color: var(--signal); }

/* ---------- Brand ---------- */
.brand { display: inline-flex; align-items: center; gap: 9px; }
.brand__mark { position: relative; width: 10px; height: 28px; flex: none; }
.brand__dot { position: absolute; top: 0; left: 0; width: 10px; height: 10px; background: var(--signal); }
.brand__stem { position: absolute; top: 14px; left: 0; width: 10px; height: 14px; background: currentColor; }
.brand__word { font-family: var(--display); font-size: 23px; letter-spacing: -0.035em; line-height: 1; position: relative; top: 1px; }
.brand__period { color: var(--signal); }
.brand--footer .brand__word { font-size: clamp(40px, 7vw, 88px); }
.brand--footer .brand__mark { width: clamp(16px,2.6vw,30px); height: clamp(46px,7.6vw,90px); }
.brand--footer .brand__dot { width: clamp(16px,2.6vw,30px); height: clamp(16px,2.6vw,30px); }
.brand--footer .brand__stem { width: clamp(16px,2.6vw,30px); height: clamp(22px,3.6vw,44px); top: clamp(24px,4vw,46px); }

/* ---------- Eyebrow (numbered, editorial) ---------- */
.eyebrow {
  display: inline-flex; align-items: baseline; gap: 12px;
  font-family: var(--display); text-transform: uppercase;
  letter-spacing: 0.18em; font-size: 12px; color: var(--stone-dk);
}
.eyebrow i { font-family: var(--serif); font-style: italic; font-size: 17px; letter-spacing: 0; color: var(--signal); text-transform: none; }
.eyebrow.light { color: var(--stone); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; font-family: var(--display);
  font-size: 15px; letter-spacing: -0.01em; padding: 13px 22px; border-radius: 100px;
  border: 1.5px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .5s var(--ease), background .35s, color .35s, border-color .35s;
}
.btn svg { transition: transform .45s var(--ease); }
.btn:hover svg { transform: translateX(5px); }
.btn--lg { padding: 17px 30px; font-size: 16px; }
.btn--signal { background: var(--signal); color: var(--paper); }
.btn--signal:hover { background: var(--paper); color: var(--ink); transform: translateY(-2px); }
.btn--ghost { background: transparent; border-color: rgba(242,240,234,0.28); color: var(--paper); }
.btn--ghost:hover { border-color: var(--paper); transform: translateY(-2px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--display);
  font-size: 16px; border-bottom: 1.5px solid currentColor; padding-bottom: 3px;
  transition: gap .35s var(--ease), color .3s; width: fit-content;
}
.link-arrow:hover { gap: 14px; color: var(--signal); }

/* =========================================================
   LOADER
   ========================================================= */
.loader {
  position: fixed; inset: 0; z-index: 9999; background: var(--ink); color: var(--paper);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
  transition: opacity .7s var(--ease), visibility .7s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader__row { display: flex; align-items: center; gap: 12px; }
.loader__mark { position: relative; width: 16px; height: 44px; }
.loader__dot { position: absolute; top: 0; left: 0; width: 16px; height: 16px; background: var(--signal); }
.loader__stem { position: absolute; top: 22px; left: 0; width: 16px; height: 22px; background: var(--paper); transform-origin: bottom; transform: scaleY(0); animation: stemgrow 1s var(--ease) forwards; }
@keyframes stemgrow { to { transform: scaleY(1); } }
.loader__word { font-family: var(--display); font-size: 34px; letter-spacing: -0.04em; }
.loader__period { color: var(--signal); }
.loader__bar { width: min(260px, 60vw); height: 2px; background: rgba(242,240,234,0.18); overflow: hidden; }
.loader__fill { display: block; width: 0; height: 100%; background: var(--signal); }
.loader__count { font-family: var(--display); font-size: 12px; letter-spacing: 0.2em; color: var(--stone); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 900; padding: 22px 0;
  transition: transform .5s var(--ease), background .4s, padding .4s, backdrop-filter .4s, box-shadow .4s, color .4s;
  color: var(--paper);
}
.nav.hide { transform: translateY(-130%); }
.nav.solid {
  background: rgba(242,240,234,0.86); backdrop-filter: blur(16px) saturate(1.3);
  padding: 13px 0; box-shadow: 0 1px 0 rgba(15,14,12,0.08); color: var(--ink);
}
.nav__inner {
  width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__links { display: flex; gap: 30px; }
.nav__link { font-family: var(--display); font-size: 15px; position: relative; padding: 4px 0; display: inline-flex; align-items: baseline; gap: 6px; }
.nav__link span { font-family: var(--serif); font-style: italic; font-size: 12px; color: var(--signal); opacity: .9; }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 0; height: 1.5px; background: currentColor; transition: width .35s var(--ease); }
.nav__link:hover::after { width: 100%; }
.nav__cta {
  font-family: var(--display); font-size: 15px; padding: 10px 20px; border-radius: 100px;
  border: 1.5px solid currentColor; transition: background .3s, color .3s, transform .4s var(--ease);
}
.nav.solid .nav__cta:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.nav:not(.solid) .nav__cta:hover { background: var(--signal); border-color: var(--signal); transform: translateY(-2px); }
.nav__burger { display: none; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 880; background: var(--ink); color: var(--paper);
  flex-direction: column; align-items: flex-start; justify-content: center; gap: 4px;
  padding: var(--pad); transform: translateY(-100%); transition: transform .65s var(--ease);
  display: flex; visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu__link { font-family: var(--display); font-size: clamp(40px, 12vw, 68px); letter-spacing: -0.04em; line-height: 1.15; display: flex; align-items: baseline; gap: 14px; transition: color .3s; }
.mobile-menu__link i { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--signal); }
.mobile-menu__link:hover { color: var(--signal); }
.mobile-menu__cta { margin-top: 26px; }
.mobile-menu__meta { margin-top: 40px; display: flex; flex-direction: column; gap: 6px; color: var(--stone); font-size: 15px; }
.mobile-menu__meta a:hover { color: var(--signal); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100svh; background: var(--ink); color: var(--paper);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 150px var(--pad) 96px; overflow: hidden;
}
.hero__grain {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.05; mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__meta {
  position: absolute; top: 0; bottom: 96px; display: flex; flex-direction: column; justify-content: center; gap: 14px;
  font-family: var(--display); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone);
  writing-mode: vertical-rl;
}
.hero__meta--left { left: clamp(14px, 2.4vw, 36px); }
.hero__meta--right { right: clamp(14px, 2.4vw, 36px); transform: rotate(180deg); }
.hero__inner { position: relative; width: 100%; max-width: var(--maxw); margin-inline: auto; }
.hero__eyebrow { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.18em; font-size: 12px; color: var(--stone); margin-bottom: clamp(24px, 4vw, 44px); }
.hero__title {
  font-family: var(--display); font-weight: 400; font-size: clamp(58px, 13vw, 215px);
  line-height: 0.88; letter-spacing: -0.045em;
}
.hero__title .ser { color: var(--signal); letter-spacing: -0.01em; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line__in { display: block; transform: translateY(110%); }
.hero.in .hero__title .line__in { transform: translateY(0); transition: transform 1s var(--ease); }
.hero.in .hero__title .line:nth-child(2) .line__in { transition-delay: .1s; }
.hero.in .hero__title .line:nth-child(3) .line__in { transition-delay: .2s; }
.hero__bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 48px; flex-wrap: wrap; margin-top: clamp(34px, 5vw, 60px); }
.hero__lede { font-size: clamp(16px, 1.5vw, 20px); max-width: 480px; color: rgba(242,240,234,0.74); line-height: 1.55; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__scroll { position: absolute; left: 50%; bottom: 100px; transform: translateX(-50%); display: none; }
@media (min-width: 900px) {
  .hero__scroll { display: flex; flex-direction: column; align-items: center; gap: 12px; left: var(--pad); transform: none; bottom: 110px;
    font-family: var(--display); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone); }
  .hero__scroll-line { width: 1px; height: 46px; background: var(--stone); position: relative; overflow: hidden; }
  .hero__scroll-line::after { content:""; position: absolute; top: -24px; left: 0; width: 100%; height: 24px; background: var(--signal); animation: scrolldn 2.2s var(--ease) infinite; }
}
@keyframes scrolldn { to { top: 100%; } }
@keyframes marquee { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* =========================================================
   INTRO
   ========================================================= */
.intro { padding: clamp(90px, 13vw, 190px) 0; }
.intro__grid { display: grid; grid-template-columns: 1fr; gap: clamp(34px, 5vw, 64px); }
.intro__headline { font-family: var(--display); font-weight: 400; font-size: clamp(30px, 5vw, 72px); line-height: 1.06; letter-spacing: -0.025em; max-width: 20ch; }
.intro__headline .ser { color: var(--signal); }
.reveal-word { display: inline-block; opacity: 0; transform: translateY(16px); }
.intro__aside { max-width: 460px; justify-self: end; }
.intro__aside p { color: var(--stone-dk); font-size: 18px; line-height: 1.55; margin-bottom: 22px; }
@media (min-width: 1000px) {
  .intro__grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .intro__headline { grid-column: 1 / 2; }
  .eyebrow.reveal:first-child { grid-column: 1 / -1; }
  .intro__aside { grid-column: 2 / 3; padding-top: 10px; }
}

/* =========================================================
   STATS
   ========================================================= */
.stats { padding: 0 0 clamp(80px, 11vw, 150px); }
.stats__row { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 3vw, 48px); border-top: 1px solid var(--paper-2); padding-top: clamp(34px,4vw,56px); }
.stat { display: flex; flex-direction: column; gap: 16px; }
.stat__num { font-family: var(--display); font-size: clamp(46px, 6.5vw, 96px); line-height: 0.9; letter-spacing: -0.05em; }
.stat__num .u { color: var(--signal); }
.stat__label { color: var(--stone-dk); font-size: 15px; max-width: 22ch; line-height: 1.4; }

/* =========================================================
   WORK
   ========================================================= */
.work { padding: clamp(20px,3vw,40px) 0 clamp(90px,12vw,160px); }
.work__head { display: grid; gap: 20px; margin-bottom: clamp(40px,5vw,72px); }
.work__title { font-family: var(--display); font-weight: 400; font-size: clamp(46px, 9vw, 130px); line-height: 0.9; letter-spacing: -0.04em; }
.work__title .ser { color: var(--signal); }
.work__note { font-family: var(--serif); font-style: italic; font-size: clamp(20px, 2vw, 28px); line-height: 1.3; color: var(--ink); max-width: 26ch; }
@media (min-width: 900px) { .work__head { grid-template-columns: 1fr auto; align-items: end; } .work__note { text-align: right; } .work__title { grid-column: 1 / -1; order: 2; } .work__head .eyebrow { order: 1; } .work__note { order: 1; } }

.work__list { border-top: 1px solid var(--paper-2); }
.case {
  display: grid; grid-template-columns: 64px 1fr; gap: clamp(16px,2vw,32px); align-items: center;
  padding: clamp(20px,2.6vw,34px) 0; border-bottom: 1px solid var(--paper-2);
  transition: padding-left .5s var(--ease);
}
.case:hover { padding-left: clamp(8px,1.4vw,22px); }
.case__no { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--signal); }
.case__media {
  display: none; border-radius: 14px; aspect-ratio: 16/10; overflow: hidden;
  background: #fff; border: 1px solid var(--paper-2);
  align-items: center; justify-content: center; padding: clamp(14px, 1.4vw, 22px);
  transition: transform .6s var(--ease), box-shadow .4s;
}
.case__media img { max-width: 100%; max-height: 80%; width: auto; height: auto; object-fit: contain; }
.case__body { display: flex; flex-direction: column; gap: 10px; }
.case__row { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; justify-content: space-between; }
.case__body h3 { font-family: var(--display); font-weight: 400; font-size: clamp(28px, 4.6vw, 60px); letter-spacing: -0.03em; line-height: 0.95; transition: color .3s; }
.case:hover .case__body h3 { color: var(--signal); }
.case__meta { font-family: var(--display); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--stone-dk); }
.case__body p { color: var(--stone-dk); font-size: 16px; max-width: 50ch; }
@media (min-width: 900px) {
  .case { grid-template-columns: 64px 220px 1fr; }
  .case__media { display: flex; }
  .case:hover .case__media { transform: scale(1.02); box-shadow: 0 8px 24px rgba(15,14,12,0.08); }
  .case__body p { max-width: 44ch; }
}

/* =========================================================
   SERVICES (dark)
   ========================================================= */
.services { background: var(--ink); color: var(--paper); padding: clamp(90px,12vw,160px) 0; border-radius: var(--radius) var(--radius) 0 0; }
.services__head { display: grid; gap: 22px; margin-bottom: clamp(40px,5vw,68px); }
.services__title { font-family: var(--display); font-weight: 400; font-size: clamp(42px, 8vw, 116px); line-height: 0.9; letter-spacing: -0.04em; }
.services__title .ser { color: var(--signal); }
.services__list { border-top: 1px solid rgba(242,240,234,0.14); }
.service {
  display: grid; grid-template-columns: 70px 1fr; gap: 18px 30px; align-items: start;
  padding: clamp(28px, 4vw, 52px) 0; border-bottom: 1px solid rgba(242,240,234,0.14);
  transition: padding-left .5s var(--ease);
}
.service:hover { padding-left: clamp(8px,1.4vw,22px); }
.service__no { font-family: var(--serif); font-style: italic; color: var(--signal); font-size: 22px; }
.service__main { display: flex; flex-direction: column; gap: 14px; }
.service__name { font-family: var(--display); font-weight: 400; font-size: clamp(28px, 4vw, 56px); letter-spacing: -0.03em; line-height: 0.95; }
.service__desc { color: rgba(242,240,234,0.66); font-size: 17px; max-width: 50ch; line-height: 1.5; }
.service__tags { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.service__tags li { font-family: var(--display); font-size: 13px; padding: 6px 14px; border: 1px solid rgba(242,240,234,0.22); border-radius: 100px; color: rgba(242,240,234,0.85); }
@media (min-width: 1000px) {
  .service { grid-template-columns: 70px 1.5fr 1fr; align-items: center; }
  .service__tags { justify-content: flex-end; }
}

/* =========================================================
   PROCESS — sticky stacked cards
   ========================================================= */
.process { background: var(--ink); color: var(--paper); padding: clamp(30px,4vw,60px) 0 0; }
.process__head { display: grid; gap: 20px; margin-bottom: 24px; }
.process__title { font-family: var(--display); font-weight: 400; font-size: clamp(40px, 7.5vw, 108px); line-height: 0.9; letter-spacing: -0.04em; }
.process__title .ser { color: var(--signal); }
.process__stack { padding: 0 var(--pad) clamp(60px,8vw,120px); }
.pcard { position: sticky; top: clamp(96px, 13vh, 150px); width: 100%; max-width: var(--maxw); margin: 0 auto clamp(18px,2.4vw,32px); }
.pcard__inner {
  border-radius: var(--radius); padding: clamp(30px, 4.4vw, 64px);
  min-height: clamp(300px, 44vh, 440px); display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 -16px 50px rgba(0,0,0,0.3); background: var(--paper); color: var(--ink);
  transform: scale(calc(1 - (3 - var(--i)) * 0.018)); transform-origin: top center;
  border: 1px solid transparent;
}
.pcard:nth-child(1) .pcard__inner { background: var(--paper); }
.pcard:nth-child(2) .pcard__inner { background: var(--paper-2); }
.pcard:nth-child(3) .pcard__inner { background: var(--signal); color: var(--paper); }
.pcard:nth-child(4) .pcard__inner { background: var(--ink-2); color: var(--paper); border-color: rgba(242,240,234,0.14); }
.pcard__top { display: flex; align-items: baseline; gap: 16px; }
.pcard__no { font-family: var(--serif); font-style: italic; font-size: 26px; color: var(--signal); }
.pcard:nth-child(3) .pcard__no { color: var(--ink); }
.pcard__kind { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.2em; font-size: 13px; opacity: .7; }
.pcard__content { max-width: 760px; }
.pcard__title { font-family: var(--display); font-weight: 400; font-size: clamp(28px, 4.6vw, 66px); line-height: 0.96; letter-spacing: -0.035em; margin-bottom: 22px; }
.pcard__text { font-size: clamp(16px, 1.35vw, 20px); line-height: 1.55; opacity: .82; max-width: 56ch; }

/* =========================================================
   STUDIO
   ========================================================= */
.studio { background: var(--ink); color: var(--paper); padding: clamp(70px,9vw,130px) 0 clamp(90px,12vw,160px); border-radius: 0 0 var(--radius) var(--radius); }
.studio__grid { display: grid; grid-template-columns: 1fr; gap: clamp(40px,6vw,90px); }
.studio__title { font-family: var(--display); font-weight: 400; font-size: clamp(44px, 7vw, 104px); line-height: 0.92; letter-spacing: -0.04em; margin: 22px 0 28px; }
.studio__title .ser { color: var(--signal); }
.studio__quote { font-family: var(--serif); font-style: italic; font-size: clamp(20px, 2.2vw, 30px); line-height: 1.35; color: rgba(242,240,234,0.9); max-width: 26ch; }
.studio__lead { font-size: clamp(19px, 1.8vw, 26px); line-height: 1.42; margin-bottom: 22px; }
.studio__right > p:not(.studio__lead) { color: rgba(242,240,234,0.68); font-size: 17px; line-height: 1.6; }
.studio__facts { margin-top: clamp(36px,4vw,56px); display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(242,240,234,0.14); border: 1px solid rgba(242,240,234,0.14); border-radius: 14px; overflow: hidden; }
.fact { background: var(--ink); padding: 22px 24px; }
.fact dt { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.16em; font-size: 11px; color: var(--stone); margin-bottom: 8px; }
.fact dd { font-family: var(--display); font-size: clamp(17px,1.5vw,21px); letter-spacing: -0.01em; }
@media (min-width: 1000px) { .studio__grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; } }

/* =========================================================
   PARTNERS (carousel)
   ========================================================= */
.partners { padding: clamp(80px,10vw,140px) 0; overflow: hidden; }
.partners__head { display: grid; gap: 18px; margin-bottom: clamp(40px,5vw,64px); }
.partners__title { font-family: var(--display); font-weight: 400; font-size: clamp(38px, 6.5vw, 92px); line-height: 0.92; letter-spacing: -0.04em; }
.partners__title .ser { color: var(--signal); }
.partners__note { font-family: var(--serif); font-style: italic; font-size: clamp(21px, 2.2vw, 30px); line-height: 1.3; color: var(--ink); max-width: 30ch; }
.partners__marquee {
  overflow: hidden; white-space: nowrap;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.partners__track { display: inline-flex; align-items: stretch; gap: clamp(14px, 1.6vw, 22px); animation: marquee 58s linear infinite; will-change: transform; }
.partners:hover .partners__track { animation-play-state: paused; }
.partners__card {
  flex: none; width: clamp(190px, 20vw, 240px); height: clamp(112px, 12vw, 142px);
  background: #fff; border: 1px solid #E3E0D6; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(18px, 2vw, 28px); overflow: hidden;
  box-shadow: 0 2px 10px rgba(15,14,12,0.04);
}
.partners__card img { max-width: 100%; max-height: 74%; width: auto; height: auto; object-fit: contain; }
/* denser, taller badges get capped a touch smaller so the row stays balanced */
.partners__card img[src*="Snapchat"],
.partners__card img[src*="Google"] { max-height: 66%; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.quotes { padding: 0 0 clamp(90px,12vw,160px); }
.quotes__head { display: grid; gap: 18px; margin-bottom: clamp(36px,4.5vw,60px); }
.quotes__title { font-family: var(--display); font-weight: 400; font-size: clamp(40px, 6.5vw, 92px); line-height: 0.92; letter-spacing: -0.04em; }
.quotes__title .ser { color: var(--signal); }
.quotes__grid { display: grid; grid-template-columns: 1fr; gap: clamp(16px, 1.8vw, 22px); }
.qcard {
  background: var(--paper-2); border-radius: var(--radius); padding: clamp(28px, 3vw, 44px);
  display: flex; flex-direction: column; justify-content: space-between; gap: clamp(24px,3vw,40px);
  min-height: 240px;
}
.qcard blockquote { font-family: var(--serif); font-style: italic; font-size: clamp(20px, 1.9vw, 26px); line-height: 1.32; letter-spacing: 0; }
.qcard figcaption { display: flex; flex-direction: column; gap: 3px; }
.qcard__name { font-family: var(--display); font-size: 17px; letter-spacing: -0.01em; }
.qcard__role { font-family: var(--display); font-size: 14px; color: var(--stone-dk); }
.qcard--feature { background: var(--ink); color: var(--paper); }
.qcard--feature blockquote { font-size: clamp(24px, 2.6vw, 38px); line-height: 1.22; }
.qcard--feature .qcard__role { color: var(--stone); }
@media (min-width: 760px) {
  .quotes__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 1fr; }
  .qcard--feature { grid-column: 1 / -1; }
}
@media (min-width: 1080px) {
  .quotes__grid { grid-template-columns: repeat(3, 1fr); }
  .qcard--feature { grid-column: 1 / 3; grid-row: span 2; justify-content: center; }
}

/* =========================================================
   CTA
   ========================================================= */
.cta { background: var(--signal); color: var(--ink); padding: clamp(80px,11vw,160px) 0; border-radius: var(--radius) var(--radius) 0 0; }
.cta__eyebrow { display: inline-flex; align-items: baseline; gap: 12px; font-family: var(--display); text-transform: uppercase; letter-spacing: 0.18em; font-size: 12px; color: rgba(15,14,12,0.7); }
.cta__eyebrow i { font-family: var(--serif); font-style: italic; font-size: 17px; text-transform: none; color: var(--ink); }
.cta__title { font-family: var(--display); font-weight: 400; font-size: clamp(54px, 11vw, 168px); line-height: 0.86; letter-spacing: -0.045em; margin: 20px 0 0; }
.cta__title .ser { color: var(--paper); }
.cta__title .signal-dot { color: var(--paper); }
.cta__title .line { display: block; overflow: hidden; }
.cta__title .line__in { display: block; transform: translateY(112%); transition: transform .9s var(--ease); }
.cta.in .cta__title .line__in { transform: translateY(0); }
.cta.in .cta__title .line:nth-child(2) .line__in { transition-delay: .1s; }
.cta__lede { font-size: clamp(18px, 1.9vw, 24px); max-width: 520px; margin: 30px 0 0; }

.cta__form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 28px; max-width: 820px; margin-top: clamp(48px,6vw,80px); }
.field { position: relative; }
.field--full { grid-column: 1 / -1; }
.field input, .field textarea {
  width: 100%; background: transparent; border: none; border-bottom: 2px solid rgba(15,14,12,0.32);
  padding: 22px 0 12px; font-family: var(--body); font-size: 18px; color: var(--ink); resize: none; transition: border-color .3s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--ink); }
.field label { position: absolute; left: 0; top: 22px; font-family: var(--display); font-size: 18px; color: rgba(15,14,12,0.62); pointer-events: none; transition: all .25s var(--ease); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  top: 0; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink);
}
.cta__submit { grid-column: 1 / -1; justify-self: start; margin-top: 10px; background: var(--ink); color: var(--paper); padding: 17px 30px; font-size: 16px; }
.cta__submit:hover { background: var(--paper); color: var(--ink); transform: translateY(-2px); }
.cta__note { grid-column: 1/-1; font-family: var(--display); font-size: 15px; min-height: 20px; }

.cta__meta { display: grid; grid-template-columns: 1fr; gap: 26px; margin-top: clamp(56px,6vw,84px); padding-top: clamp(34px,4vw,48px); border-top: 2px solid rgba(15,14,12,0.22); }
.cta__meta-item { display: flex; flex-direction: column; gap: 6px; }
.cta__meta-k { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.16em; font-size: 11px; opacity: .65; }
.cta__meta-v { font-family: var(--display); font-size: clamp(20px, 2.2vw, 30px); letter-spacing: -0.02em; }
.cta__meta-social { display: flex; gap: 18px; }
.cta__meta-social a { transition: opacity .3s; }
.cta__meta-social a:hover { opacity: .55; }
a.cta__meta-item:hover .cta__meta-v { text-decoration: underline; }
@media (min-width: 800px) { .cta__meta { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 620px) { .cta__form { grid-template-columns: 1fr; } }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--ink); color: var(--paper); padding: clamp(60px,7vw,100px) 0 32px; }
.footer__inner { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; padding-bottom: clamp(40px,5vw,64px); border-bottom: 1px solid rgba(242,240,234,0.12); }
.footer__tag { font-family: var(--display); color: var(--stone); font-size: clamp(18px,2vw,26px); }
.footer__tag .ser { color: var(--signal); }
.footer__base { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 26px; color: var(--stone); font-size: 13px; font-family: var(--display); letter-spacing: 0.02em; }

/* =========================================================
   REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-word.in { opacity: 1; transform: none; transition: opacity .6s var(--ease), transform .6s var(--ease); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-word, .hero__title .line__in, .cta__title .line__in, .loader__stem { opacity: 1 !important; transform: none !important; transition: none !important; animation: none !important; }
  .hero__scroll-line::after { animation: none !important; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) { .stats__row { grid-template-columns: repeat(2,1fr); row-gap: 40px; } }
@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; flex-direction: column; gap: 6px; width: 44px; height: 44px; align-items: center; justify-content: center; background: none; border: none; cursor: pointer; }
  .nav__burger span { width: 26px; height: 2px; background: currentColor; transition: transform .35s var(--ease); }
  .nav__burger.open span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav__burger.open span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .hero__meta { display: none; }
}
@media (max-width: 560px) {
  .stats__row { grid-template-columns: 1fr; }
  .studio__facts { grid-template-columns: 1fr; }
  .case { grid-template-columns: 40px 1fr; }
}
