/* ═══════════════════════════════════════════════════════════
   PROVENANCE — Media Rights & Original IP
   Palette: near-black · bone · champagne gold
   ═══════════════════════════════════════════════════════════ */

:root {
  --black: #0a0a0b;
  --ink: #101013;
  --ink-2: #17171b;
  --line: rgba(232, 226, 214, 0.12);
  --bone: #e8e2d6;
  --bone-dim: rgba(232, 226, 214, 0.62);
  --bone-faint: rgba(232, 226, 214, 0.38);
  --gold: #c9a24d;
  --gold-soft: rgba(201, 162, 77, 0.35);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 76px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--bone);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
html, body { overflow-x: clip; }

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.gold { color: var(--gold); }

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

.container { width: min(1240px, 92vw); margin: 0 auto; }
.section { padding: clamp(96px, 12vw, 160px) 0; position: relative; }

/* ── Typography ────────────────────────────── */
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.lead {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.65;
  color: var(--bone-dim);
  max-width: 56ch;
}
.body { color: var(--bone-faint); max-width: 58ch; margin-top: 18px; }

/* ── Reveal primitives ─────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

.reveal-lines .line, .hero-title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
.reveal-lines .line i, .hero-title .line i {
  display: block;
  font-style: normal;
  transform: translateY(110%);
  transition: transform 1.1s var(--ease);
}
.reveal-lines.in .line i, .hero-title.in .line i { transform: none; }
.reveal-lines .line:nth-child(2) i, .hero-title .line:nth-child(2) i { transition-delay: 0.09s; }
.reveal-lines .line:nth-child(3) i, .hero-title .line:nth-child(3) i { transition-delay: 0.18s; }

/* staggered children */
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }

/* ── Preloader ─────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease 0.1s, visibility 0.7s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader-word {
  font-family: var(--serif);
  font-size: clamp(28px, 5vw, 52px);
  letter-spacing: 0.42em;
  display: flex;
}
.preloader-word span {
  opacity: 0;
  transform: translateY(20px);
  animation: plChar 0.7s var(--ease) forwards;
}
.preloader-word span:nth-child(n) { animation-delay: calc(0.05s * var(--i, 0)); }
.preloader-word span:nth-child(1) { --i: 1; } .preloader-word span:nth-child(2) { --i: 2; }
.preloader-word span:nth-child(3) { --i: 3; } .preloader-word span:nth-child(4) { --i: 4; }
.preloader-word span:nth-child(5) { --i: 5; } .preloader-word span:nth-child(6) { --i: 6; }
.preloader-word span:nth-child(7) { --i: 7; } .preloader-word span:nth-child(8) { --i: 8; }
.preloader-word span:nth-child(9) { --i: 9; } .preloader-word span:nth-child(10) { --i: 10; }
@keyframes plChar { to { opacity: 1; transform: none; } }
.preloader-bar {
  width: min(300px, 60vw);
  height: 1px;
  background: var(--line);
  margin: 28px auto 0;
  overflow: hidden;
}
.preloader-bar i {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 0.3s ease;
}

/* ── Cursor ────────────────────────────────── */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 150;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold);
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1px solid var(--gold-soft);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.cursor-ring.hot {
  width: 62px; height: 62px;
  background: rgba(201, 162, 77, 0.08);
  border-color: var(--gold);
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ── Grain ─────────────────────────────────── */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  z-index: 140;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 3%); }
}

/* ── Navigation ────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 48px);
  transition: transform 0.5s var(--ease), background 0.5s ease, border-color 0.5s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 10, 11, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav.hidden { transform: translateY(-100%); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: clamp(14px, 1.5vw, 20px);
  letter-spacing: 0.06em;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-mark { width: 26px; height: 26px; color: var(--gold); }

.nav-links { display: flex; gap: clamp(18px, 2.6vw, 38px); }
.nav-links a {
  font-size: 13.5px;
  letter-spacing: 0.06em;
  color: var(--bone-dim);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}
.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 0.4s var(--ease);
}
.nav-links a:hover { color: var(--bone); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  font-size: 13px;
  letter-spacing: 0.08em;
  border: 1px solid var(--gold-soft);
  padding: 11px 22px;
  border-radius: 100px;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
.nav-cta:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

.nav-burger {
  display: none;
  background: none;
  border: 0;
  width: 40px; height: 40px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
}
.nav-burger i {
  display: block;
  height: 1.5px;
  background: var(--bone);
  transition: transform 0.4s var(--ease), opacity 0.3s;
}
.nav-burger.open i:first-child { transform: translateY(4.2px) rotate(45deg); }
.nav-burger.open i:last-child { transform: translateY(-4.2px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(10, 10, 11, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 8px; text-align: center; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: clamp(30px, 8vw, 44px);
  padding: 6px 0;
  color: var(--bone-dim);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ── Hero ──────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--black);
}
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.6s ease;
  will-change: transform;
}
.hero-media video.ready { opacity: 1; }
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10,10,11,0.96) 0%, rgba(10,10,11,0.45) 34%, rgba(10,10,11,0.25) 60%, rgba(10,10,11,0.6) 100%),
    radial-gradient(120% 90% at 20% 80%, rgba(10,10,11,0.5), transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1240px, 92vw);
  margin: 0 auto;
  padding-top: calc(var(--nav-h) + 8vh);
}
.hero-eyebrow {
  overflow: hidden;
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
}
.hero-eyebrow span {
  display: inline-block;
  transform: translateY(120%);
  transition: transform 1s var(--ease) 0.1s;
}
.hero.in .hero-eyebrow span { transform: none; }

.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 8.4vw, 118px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: 30px;
}
.hero-title .line i { transition-duration: 1.3s; }
.hero.in .hero-title .line i { transform: none; }
.hero-title .line:nth-child(1) i { transition-delay: 0.25s; }
.hero-title .line:nth-child(2) i { transition-delay: 0.37s; }
.hero-title .line:nth-child(3) i { transition-delay: 0.49s; }
.hero-title b { font-weight: 300; }

.hero-sub {
  max-width: 54ch;
  color: var(--bone-dim);
  font-size: clamp(15px, 1.5vw, 18px);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease) 0.75s, transform 1s var(--ease) 0.75s;
}
.hero.in .hero-sub { opacity: 1; transform: none; }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease) 0.9s, transform 1s var(--ease) 0.9s;
}
.hero.in .hero-actions { opacity: 1; transform: none; }

.hero-foot {
  position: relative;
  z-index: 2;
  width: min(1240px, 92vw);
  margin: 9vh auto 0;
  padding-bottom: 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  opacity: 0;
  transition: opacity 1.1s ease 1.15s;
}
.hero.in .hero-foot { opacity: 1; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4.5vw, 64px);
  border-top: 1px solid var(--line);
  padding-top: 24px;
  flex: 1;
}
.hstat b {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 36px);
  color: var(--bone);
}
.hstat span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-faint);
}

.scroll-hint {
  width: 1px;
  height: 64px;
  background: var(--line);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.scroll-hint span {
  position: absolute;
  top: -40%;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--gold);
  animation: scrollHint 2.2s var(--ease) infinite;
}
@keyframes scrollHint {
  0% { top: -40%; }
  60%, 100% { top: 110%; }
}

/* ── Buttons ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 15px 32px;
  border-radius: 100px;
  font-size: 14px;
  letter-spacing: 0.06em;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  overflow-wrap: break-word;
  text-align: center;
  transition: color 0.4s ease, border-color 0.4s ease;
}
.btn span { position: relative; z-index: 1; }
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.45s var(--ease);
}
.btn:hover::before { transform: scaleY(1); }

.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold::before { background: var(--bone); }
.btn-ghost { border: 1px solid var(--line); color: var(--bone); }
.btn-ghost::before { background: var(--bone); }
.btn-ghost:hover { color: var(--black); border-color: var(--bone); }
.btn-lg { padding: 19px 44px; font-size: clamp(12.5px, 3vw, 15px); }

/* ── Marquee ───────────────────────────────── */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 22px 0;
  background: var(--ink);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 44px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--serif);
  font-size: clamp(18px, 2.2vw, 26px);
  color: var(--bone-dim);
  white-space: nowrap;
}
.marquee-track em { color: var(--gold); font-style: normal; font-size: 13px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Thesis ────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.thesis-points { margin-top: 48px; display: flex; flex-direction: column; }
.thesis-points li {
  display: flex;
  gap: 24px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.thesis-points li:last-child { border-bottom: 1px solid var(--line); }
.thesis-points b {
  font-family: var(--serif);
  color: var(--gold);
  font-weight: 400;
  font-size: 15px;
  padding-top: 3px;
}
.thesis-points h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  margin-bottom: 6px;
}
.thesis-points p { color: var(--bone-faint); font-size: 14.5px; max-width: 46ch; }

.thesis-visual { position: sticky; top: calc(var(--nav-h) + 24px); }
.parallax-frame {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}
.parallax-frame img {
  width: 100%;
  height: clamp(360px, 44vw, 560px);
  object-fit: cover;
  transform: scale(1.18);
  will-change: transform;
  filter: saturate(0.7) sepia(0.14) contrast(1.05);
}
.parallax-frame figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 22px 16px;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--bone-dim);
  background: linear-gradient(to top, rgba(10,10,11,0.85), transparent);
}
.parallax-frame figcaption .gold { font-size: 9px; margin-right: 6px; }

.thesis-quote {
  margin-top: 36px;
  padding-left: 26px;
  border-left: 1px solid var(--gold-soft);
}
.thesis-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(18px, 1.9vw, 23px);
  line-height: 1.45;
  color: var(--bone);
  font-weight: 300;
}
.thesis-quote cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-faint);
}

/* ── Capabilities ──────────────────────────── */
.capabilities { background: var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cap-list {
  width: min(1240px, 92vw);
  margin: 56px auto 0;
}
.cap-row {
  border-top: 1px solid var(--line);
  cursor: pointer;
  outline: none;
}
.cap-row:last-child { border-bottom: 1px solid var(--line); }
.cap-head {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  padding: clamp(24px, 3vw, 38px) 8px;
  transition: padding-left 0.5s var(--ease);
}
.cap-row:hover .cap-head, .cap-row:focus-visible .cap-head { padding-left: clamp(16px, 2vw, 28px); }
.cap-num {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 15px;
  width: 34px;
  flex-shrink: 0;
}
.cap-head h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 3.4vw, 44px);
  flex: 1;
  transition: color 0.4s ease;
}
.cap-row:hover .cap-head h3, .cap-row.open .cap-head h3 { color: var(--gold); }
.cap-toggle {
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.4s ease, background 0.4s ease, transform 0.5s var(--ease);
}
.cap-toggle::before, .cap-toggle::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--bone);
  transition: background 0.3s, transform 0.45s var(--ease);
}
.cap-toggle::before { width: 14px; height: 1px; transform: translate(-50%, -50%); }
.cap-toggle::after { width: 1px; height: 14px; transform: translate(-50%, -50%); }
.cap-row.open .cap-toggle { background: var(--gold); border-color: var(--gold); transform: rotate(180deg); }
.cap-row.open .cap-toggle::before, .cap-row.open .cap-toggle::after { background: var(--black); }
.cap-row.open .cap-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }

.cap-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.6s var(--ease);
}
.cap-row.open .cap-body { grid-template-rows: 1fr; }
.cap-body-inner {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(20px, 4vw, 64px);
  padding-left: calc(34px + clamp(18px, 3vw, 44px));
  padding-right: 8px;
}
.cap-row.open .cap-body-inner { padding-bottom: clamp(28px, 3vw, 44px); }
.cap-body p { color: var(--bone-dim); max-width: 56ch; }
.cap-body ul { display: flex; flex-direction: column; gap: 10px; }
.cap-body li {
  font-size: 13.5px;
  letter-spacing: 0.04em;
  color: var(--bone-faint);
  padding-left: 18px;
  position: relative;
}
.cap-body li::before {
  content: "◆";
  color: var(--gold);
  font-size: 8px;
  position: absolute;
  left: 0;
  top: 5px;
}

/* ── Portfolio (horizontal) ────────────────── */
.portfolio { position: relative; }
.portfolio-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(28px, 4vh, 56px);
}
.portfolio-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-top: var(--nav-h);
}
.portfolio-head .h2 { margin-bottom: 0; }
.portfolio-hint {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-faint);
  animation: hintPulse 2.4s ease infinite;
  white-space: nowrap;
}
@keyframes hintPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

.portfolio-track {
  display: flex;
  gap: clamp(20px, 2.5vw, 36px);
  padding-left: max(calc((100vw - 1240px) / 2), 4vw);
  padding-right: 4vw;
  will-change: transform;
  width: max-content;
}
.pcard {
  width: clamp(300px, 34vw, 460px);
  flex-shrink: 0;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.6s var(--ease);
}
.pcard:hover { border-color: var(--gold-soft); transform: translateY(-8px); }
.pcard figure { overflow: hidden; height: clamp(220px, 26vw, 320px); }
.pcard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.05);
  transition: transform 0.8s var(--ease), filter 0.6s ease;
}
.pcard:hover img { transform: scale(1.06); filter: saturate(1) contrast(1.05); }
.pcard-info { padding: 26px 26px 30px; }
.pcard-num {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 14px;
}
.pcard-info h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 28px);
  margin: 8px 0 10px;
}
.pcard-info p { color: var(--bone-faint); font-size: 14.5px; margin-bottom: 18px; }
.pcard-tag {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-soft);
  border-radius: 100px;
  padding: 6px 14px;
  display: inline-block;
}

.pcard-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-style: dashed;
}
.pcard-cta-inner { text-align: center; padding: 40px; }
.pcard-cta h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.15;
  margin-bottom: 26px;
}

/* ── Outcomes ──────────────────────────────── */
.outcomes { border-top: 1px solid var(--line); }
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 64px);
  margin-top: 24px;
}
.outcome b {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 5.4vw, 76px);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 18px;
}
.outcome p { color: var(--bone-dim); font-size: 15px; max-width: 40ch; }

/* ── Team ──────────────────────────────────── */
.leadership { background: var(--ink); border-top: 1px solid var(--line); }
.leadership .lead { margin-top: -4px; margin-bottom: 8px; }
.credential-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 48px;
  background: var(--line);
  border: 1px solid var(--line);
}
.credential {
  position: relative;
  padding: clamp(28px, 3vw, 40px);
  background: var(--ink);
  outline: none;
  transition: background 0.4s ease;
}
.credential:hover, .credential:focus-visible { background: var(--ink-2); }
.credential-num {
  display: block;
  font-family: var(--serif);
  color: var(--gold);
  font-size: 15px;
  margin-bottom: 18px;
}
.credential h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 25px);
  margin-bottom: 12px;
}
.credential p {
  font-size: 14.5px;
  color: var(--bone-faint);
  line-height: 1.6;
  max-width: 46ch;
}

/* ── Insights ──────────────────────────────── */
.insights-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.insights-head .h2 { margin-bottom: 0; }
.insight-list { display: flex; flex-direction: column; }
.insight {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: start;
  gap: clamp(18px, 3vw, 48px);
  padding: 32px 8px;
  border-top: 1px solid var(--line);
  transition: padding-left 0.5s var(--ease), background 0.4s ease;
}
.insight:last-child { border-bottom: 1px solid var(--line); }
.insight:hover { padding-left: 24px; background: rgba(232, 226, 214, 0.02); }
.insight-meta {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-faint);
  padding-top: 9px;
}
.insight-arrow { align-self: center; }
.insight h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 28px);
  margin-bottom: 8px;
  transition: color 0.35s ease;
}
.insight:hover h3 { color: var(--gold); }
.insight p { color: var(--bone-faint); font-size: 14.5px; max-width: 64ch; }
.insight-arrow {
  font-size: 26px;
  color: var(--gold);
  transform: translateX(-8px);
  opacity: 0.4;
  transition: transform 0.4s var(--ease), opacity 0.4s;
}
.insight:hover .insight-arrow { transform: translateX(0); opacity: 1; }

/* ── CTA ───────────────────────────────────── */
.cta {
  position: relative;
  padding: clamp(120px, 16vw, 220px) 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.cta-bg { position: absolute; inset: 0; }
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transform: scale(1.2);
  will-change: transform;
}
.cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 80% at 50% 50%, rgba(10,10,11,0.25), rgba(10,10,11,0.92));
}
.cta-inner { position: relative; z-index: 2; text-align: center; }
.cta-inner .eyebrow { justify-content: center; }
.cta-inner .eyebrow::before { display: none; }
.cta-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(38px, 6.4vw, 92px);
  line-height: 1.05;
  margin-bottom: 30px;
}
.cta-inner .lead { margin: 0 auto; }
.cta-actions { margin-top: 44px; }
.cta-offices {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-faint);
}
.cta-offices em { color: var(--gold); font-style: normal; }

/* ── Footer ────────────────────────────────── */
.footer {
  border-top: 1px solid var(--line);
  padding: 56px 0;
  background: var(--black);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
}
.footer-brand {
  display: grid;
  grid-template-columns: 26px auto;
  gap: 4px 10px;
  align-items: center;
}
.footer-brand span { font-family: var(--serif); font-size: 19px; letter-spacing: 0.05em; }
.footer-brand p { grid-column: 2; font-size: 13px; color: var(--bone-faint); }
.footer-links { display: flex; gap: 26px; align-self: center; }
.footer-links a {
  font-size: 13px;
  color: var(--bone-faint);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-note { text-align: right; }
.footer-note p { font-size: 12px; color: rgba(232, 226, 214, 0.28); max-width: 44ch; margin-left: auto; }

/* ── Responsive ────────────────────────────── */
@media (max-width: 1020px) {
  .split { grid-template-columns: 1fr; }
  .thesis-visual { position: static; }
  .outcome-grid { grid-template-columns: 1fr; gap: 44px; }
  .insight { grid-template-columns: 1fr; gap: 10px; }
  .insight-arrow { display: none; }
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
  .footer-note { text-align: left; }
  .footer-note p { margin-left: 0; }
}

@media (max-width: 920px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

@media (max-width: 760px) {
  .hero-stats { gap: 20px 32px; }
  .hstat span { font-size: 10.5px; }
  .scroll-hint { display: none; }
  .credential-grid { grid-template-columns: 1fr; }
  .cap-body-inner { grid-template-columns: 1fr; padding-left: 0; }
  .cap-head { gap: 16px; }
  .portfolio-head { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ── Audit mode (dev review only, via ?audit) ── */
html.audit { scroll-behavior: auto !important; }
html.audit *, html.audit *::before, html.audit *::after {
  transition: none !important;
  animation: none !important;
}
html.audit .reveal, html.audit .hero-sub, html.audit .hero-actions, html.audit .hero-foot { opacity: 1 !important; transform: none !important; }
html.audit .reveal-lines .line i, html.audit .hero-title .line i, html.audit .hero-eyebrow span { transform: none !important; }
html.audit .preloader { display: none !important; }
html.audit .hero-media video { opacity: 1 !important; }

/* ── Reduced motion ────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .reveal-lines .line i, .hero-title .line i { opacity: 1; transform: none; }
}
