/* ─────────────────────────────────────────────────────────────
   The Capital Index · Design system v2
   Cinema-luxury hybrid: dark obsidian ↔ warm cream editorial
   ───────────────────────────────────────────────────────────── */

:root {
  /* Deep luxury palette — warm obsidian, no beige */
  --obsidian: #0A0908;
  --deep: #12100E;
  --ink: #1A1815;
  --ink-2: #221E1A;
  --char: #2C2822;

  /* Legacy aliases (kept for /ventures/* pages) */
  --cream: #F5EFDF;
  --paper: #EEE6D2;
  --paper-2: #E4DBC5;

  /* Accents */
  --wine: #8B1A2B;
  --wine-soft: rgba(139,26,43,0.14);
  --bronze: #B89968;
  --gold: #D4AF6E;
  --champagne: #E5C79A;

  /* Text on dark */
  --dt: #F5EFDF;
  --dt-soft: rgba(245,239,223,0.72);
  --dt-mute: rgba(245,239,223,0.42);
  --dh: rgba(245,239,223,0.10);
  --dh-strong: rgba(245,239,223,0.20);

  /* Legacy light-chapter tokens now map to dark equivalents so the whole site
     reads dark luxury but /ventures/* structural rules that still reference
     --lt / --lh remain readable. */
  --lt: #F5EFDF;
  --lt-soft: rgba(245,239,223,0.72);
  --lt-mute: rgba(245,239,223,0.42);
  --lh: rgba(245,239,223,0.10);

  /* Depth: composited shadows */
  --shadow-soft: 0 4px 12px rgba(0,0,0,0.10);
  --shadow-med:  0 12px 32px rgba(0,0,0,0.22);
  --shadow-hard: 0 32px 80px rgba(0,0,0,0.55);
  --glow-bronze: 0 0 80px rgba(212,175,110,0.35);
  --glow-wine:   0 0 120px rgba(139,26,43,0.40);
  --glow-warm:   0 0 200px rgba(229,199,154,0.15);

  /* Typography */
  --display: 'Playfair Display', 'Fraunces', 'Times New Roman', Georgia, serif;
  --serif:   'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  --sans:    'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Widths */
  --max-w: 1320px;

  /* Motion tokens */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
}
body {
  background: var(--obsidian);
  color: var(--dt);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  cursor: none;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
em, i, cite, blockquote, q { font-style: normal; }
em { color: var(--wine); font-weight: 500; }
::selection { background: var(--wine); color: var(--cream); }

/* Show default cursor for touch or when JS disabled */
@media (hover: none) { body { cursor: auto; } }
.no-cursor body { cursor: auto; }

/* ─── Custom cursor (JS-driven) ─── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transition: opacity .3s;
}
.cursor-ring {
  width: 42px; height: 42px;
  border: 1px solid rgba(212,175,110,0.6);
  border-radius: 50%;
  transition: width .35s var(--ease-out), height .35s var(--ease-out), border-color .3s, background .3s;
}
.cursor-ring.is-hover {
  width: 72px; height: 72px;
  border-color: var(--gold);
  background: rgba(212,175,110,0.10);
}
@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ─── Newsprint paper grain (subtle everywhere) ─── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

/* ─── Top masthead rule ─── */
.top-rule {
  height: 3px;
  background: linear-gradient(90deg, var(--wine), var(--gold), var(--wine));
  position: relative;
  z-index: 200;
}

/* ─── Sticky nav (always dark) ─── */
nav.site-nav {
  position: fixed;
  top: 3px; left: 0; right: 0;
  z-index: 150;
  background: rgba(10,9,8,0.72);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border-bottom: 1px solid rgba(245,239,223,0.08);
  transition: background .4s var(--ease-out);
}
nav.site-nav.on-scroll {
  background: rgba(10,9,8,0.92);
  border-bottom-color: rgba(212,175,110,0.24);
}
.nav-row {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.005em;
  color: var(--dt);
}
.crest-mini {
  width: 30px; height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-mid {
  display: flex;
  gap: 36px;
  justify-content: center;
  font-family: var(--sans);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--dt-soft);
  font-weight: 500;
}
.nav-mid a {
  position: relative;
  padding: 6px 0;
  transition: color .3s;
}
.nav-mid a::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%;
  bottom: -2px;
  height: 1px;
  background: var(--gold);
  transition: left .35s var(--ease-out), right .35s var(--ease-out);
}
.nav-mid a:hover::after { left: 0; right: 0; }
.nav-mid a:hover { color: var(--gold); }
.nav-right { justify-self: end; }
.nav-cta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--dt);
  padding: 10px 20px;
  border: 1px solid var(--gold);
  transition: all .3s var(--ease-out);
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--obsidian);
  border-color: var(--gold);
  box-shadow: 0 0 32px rgba(212,175,110,0.35);
}

/* ─── Chapter primitives ─── */
.chapter {
  position: relative;
  padding: 140px 40px;
  z-index: 2;
}
.chapter--dark {
  background: var(--obsidian);
  color: var(--dt);
}
.chapter--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 1200px 800px at 20% 0%, rgba(139,26,43,0.15), transparent 70%),
    radial-gradient(ellipse 1000px 800px at 80% 100%, rgba(212,175,110,0.08), transparent 70%);
  pointer-events: none;
}
.chapter--light {
  background: var(--deep);
  color: var(--dt);
}
.chapter--dim {
  background: var(--ink);
  color: var(--dt);
}
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ─── Kicker ─── */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 32px;
}
.kicker::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
}

/* ─── Display headings ─── */
.h-display {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.025em;
  color: inherit;
}
.h-display em {
  font-style: normal;
  color: var(--gold);
  font-weight: 500;
}
.chapter--dark .h-display em { color: var(--gold); }

.h-mega {
  font-size: clamp(72px, 12vw, 200px);
  line-height: 0.92;
  letter-spacing: -0.035em;
}
.h-lg {
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.h-md {
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.018em;
}
.h-sm {
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* Kinetic text reveal (JS applies .reveal-word to spans) */
.split-line { display: inline-block; overflow: hidden; vertical-align: bottom; }
.reveal-word {
  display: inline-block;
  transform: translateY(115%);
  opacity: 0;
}
.reveal-in .reveal-word {
  animation: word-in .9s var(--ease-out) both;
}
.reveal-in .reveal-word:nth-child(2) { animation-delay: 60ms; }
.reveal-in .reveal-word:nth-child(3) { animation-delay: 120ms; }
.reveal-in .reveal-word:nth-child(4) { animation-delay: 180ms; }
.reveal-in .reveal-word:nth-child(5) { animation-delay: 240ms; }
.reveal-in .reveal-word:nth-child(6) { animation-delay: 300ms; }
.reveal-in .reveal-word:nth-child(7) { animation-delay: 360ms; }
.reveal-in .reveal-word:nth-child(8) { animation-delay: 420ms; }
.reveal-in .reveal-word:nth-child(9) { animation-delay: 480ms; }
.reveal-in .reveal-word:nth-child(10) { animation-delay: 540ms; }
.reveal-in .reveal-word:nth-child(11) { animation-delay: 600ms; }
.reveal-in .reveal-word:nth-child(12) { animation-delay: 660ms; }
@keyframes word-in {
  0%   { transform: translateY(115%); opacity: 0; }
  100% { transform: translateY(0);   opacity: 1; }
}

/* Fade-and-rise reveal for non-headings */
.rev { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.rev.in { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────────
   CH 1 · Intro (full-viewport hero, dark)
   ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video video {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: brightness(0.55) contrast(1.05);
}
.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 40%, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.75) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 25%, rgba(0,0,0,0.55) 100%);
}
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: 0 40px;
}
.hero-crest {
  width: 104px; height: 104px;
  margin-bottom: 48px;
  filter: drop-shadow(0 0 40px rgba(212,175,110,0.35));
}
.hero-crest svg { width: 100%; height: 100%; overflow: visible; }
.hero-crest .stroke {
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  animation: draw 2s var(--ease-out) 0.3s forwards;
}
.hero-crest .stroke.b { animation-delay: 1s; stroke-dasharray: 260; stroke-dashoffset: 260; animation-duration: 1.6s; }
.hero-crest .crest-letter { opacity: 0; animation: letter-in 0.9s var(--ease-out) forwards; }
.hero-crest .cl-t { animation-delay: 2.0s; }
.hero-crest .cl-c { animation-delay: 2.15s; }
.hero-crest .cl-i { animation-delay: 2.30s; }
.hero-crest .crest-dot { opacity: 0; animation: letter-in 0.6s var(--ease-out) 2.5s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes letter-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-meta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 600;
  margin-bottom: 40px;
  opacity: 0;
  animation: fade-up 1.2s var(--ease-out) 1.6s forwards;
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

h1.hero-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(64px, 11vw, 172px);
  line-height: 0.92;
  letter-spacing: -0.038em;
  color: var(--dt);
  max-width: 1400px;
  margin-bottom: 64px;
}
h1.hero-title em {
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
  text-shadow: 0 0 60px rgba(212,175,110,0.35);
}

.hero-tagline {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
  color: var(--dt-soft);
  max-width: 640px;
  opacity: 0;
  animation: fade-up 1.2s var(--ease-out) 2.4s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--dt-mute);
  font-weight: 600;
  z-index: 3;
  opacity: 0;
  animation: fade-up 1.2s var(--ease-out) 3s forwards;
}
.hero-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 32px;
  margin: 12px auto 0;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-line 2.2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; }
  50%      { transform: scaleY(1);   transform-origin: top; }
}

/* ─────────────────────────────────────────────
   CH 2 · The Firm (light editorial)
   ───────────────────────────────────────────── */
.firm {
  padding: 160px 40px;
}
.firm-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 96px;
  align-items: start;
  margin-top: 56px;
}
.firm-prose p {
  font-family: var(--serif);
  font-size: clamp(19px, 1.5vw, 22px);
  line-height: 1.55;
  color: var(--lt);
  margin-bottom: 28px;
  font-weight: 400;
}
.firm-prose p:last-child { margin-bottom: 0; }
.firm-prose .lift {
  color: var(--gold);
  font-weight: 500;
}
.firm-prose p.first::first-letter {
  font-family: var(--display);
  font-weight: 500;
  font-size: 78px;
  line-height: 0.8;
  float: left;
  padding-right: 14px;
  padding-top: 10px;
  color: var(--gold);
  text-shadow: 0 0 30px rgba(212,175,110,0.35);
}
.firm-aside {
  border-top: 2px solid var(--lt);
  padding-top: 28px;
}
.firm-aside-head {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--lt-mute);
  margin-bottom: 28px;
  font-weight: 600;
}
.firm-aside dl {
  display: grid;
  gap: 28px;
}
.firm-aside dt {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lt-mute);
  margin-bottom: 8px;
  font-weight: 600;
}
.firm-aside dd {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  color: var(--lt);
  line-height: 1.25;
}
.firm-aside dd .muted {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 14px;
  color: var(--lt-soft);
  margin-top: 4px;
}

/* ─────────────────────────────────────────────
   CH 3 · Vault Genome Flagship (dark cinema)
   ───────────────────────────────────────────── */
.flagship {
  min-height: 100vh;
  padding: 140px 40px 160px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.flagship-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.flagship-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.35) contrast(1.1) saturate(0.9);
  transform: scale(1.05);
}
.flagship-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,10,0.6) 0%, transparent 40%, rgba(5,5,10,0.85) 100%),
    radial-gradient(ellipse at right, rgba(139,26,43,0.25), transparent 60%);
}
.flagship-inner {
  position: relative;
  z-index: 3;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 96px;
  align-items: center;
}
.flagship-text .kicker { color: var(--gold); }
.flagship-text .kicker::before { background: var(--gold); }
.flagship-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(56px, 7.5vw, 118px);
  line-height: 0.96;
  letter-spacing: -0.028em;
  color: var(--dt);
  margin-bottom: 32px;
}
.flagship-title em {
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
}
.flagship-deck {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
  color: var(--dt-soft);
  max-width: 620px;
  margin-bottom: 40px;
}
.flagship-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--dh-strong);
  border-bottom: 1px solid var(--dh);
  margin-bottom: 48px;
}
.flagship-stat {
  padding: 20px 20px 20px 0;
  border-right: 1px solid var(--dh);
}
.flagship-stat:last-child { border-right: none; padding-left: 20px; padding-right: 0; }
.flagship-stat:nth-child(2) { padding-left: 20px; }
.flagship-stat-num {
  font-family: var(--display);
  font-weight: 500;
  font-size: 38px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 30px rgba(212,175,110,0.35);
}
.flagship-stat-lbl {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--dt-mute);
  font-weight: 600;
}
.flagship-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 32px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all .35s var(--ease-out);
  box-shadow: var(--glow-bronze);
}
.flagship-cta:hover {
  background: var(--gold);
  color: var(--obsidian);
  box-shadow: 0 0 120px rgba(212,175,110,0.6);
}
.flagship-cta .arrow {
  font-family: var(--display);
  font-size: 16px;
  transition: transform .3s;
}
.flagship-cta:hover .arrow { transform: translateX(5px); }

/* Right column visual - Vault Genome uses SVG art */
.flagship-visual-vg {
  position: relative;
  aspect-ratio: 1;
  max-width: 480px;
  justify-self: end;
}
.flagship-visual-vg svg { width: 100%; height: 100%; }
.vg-ring {
  fill: none;
  stroke: rgba(212,175,110,0.35);
  stroke-width: 0.8;
}
.vg-ring.pulse {
  animation: vg-pulse 4s ease-in-out infinite;
}
@keyframes vg-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); transform-origin: center; }
  50%      { opacity: 1;   transform: scale(1.08); }
}
.vg-core {
  fill: rgba(212,175,110,0.15);
  stroke: var(--gold);
  stroke-width: 1;
}

/* ─────────────────────────────────────────────
   CH 4 · GlossPlate Flagship (dark, cinematic)
   ───────────────────────────────────────────── */
.flagship-gp {
  min-height: 100vh;
  padding: 140px 40px 160px;
  position: relative;
  overflow: hidden;
  background: var(--obsidian);
  display: flex;
  align-items: center;
}
.flagship-gp::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 1400px 800px at 70% 20%, rgba(139,26,43,0.22), transparent 60%),
    radial-gradient(ellipse 1000px 700px at 20% 80%, rgba(212,175,110,0.14), transparent 60%),
    linear-gradient(180deg, #05050A 0%, #0A0A18 100%);
}
.flagship-gp-inner {
  position: relative;
  z-index: 3;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.gp-text .kicker { color: var(--gold); }
.gp-text .kicker::before { background: var(--gold); }

.gp-phones {
  position: relative;
  height: 720px;
  justify-self: end;
  width: 100%;
  max-width: 640px;
}
.gp-phone {
  position: absolute;
  width: 260px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.55),
    0 0 0 8px #131318,
    0 0 60px rgba(212,175,110,0.20);
  transform-style: preserve-3d;
  transition: transform .8s var(--ease-out);
}
.gp-phone img {
  width: 100%; height: auto;
  display: block;
}
.gp-phone.p-1 {
  top: 40px;
  left: 20px;
  transform: rotate(-6deg) translateY(0);
  z-index: 3;
}
.gp-phone.p-2 {
  top: 20px;
  left: 220px;
  transform: rotate(1deg) translateY(0);
  z-index: 2;
}
.gp-phone.p-3 {
  top: 100px;
  right: 30px;
  transform: rotate(7deg) translateY(0);
  z-index: 1;
}
.gp-phones:hover .gp-phone.p-1 { transform: rotate(-10deg) translateY(-14px); }
.gp-phones:hover .gp-phone.p-2 { transform: rotate(0deg)   translateY(-22px); }
.gp-phones:hover .gp-phone.p-3 { transform: rotate(11deg)  translateY(-14px); }

.gp-availability {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 32px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--dt-mute);
  font-weight: 600;
}
.gp-availability .badge {
  padding: 6px 14px;
  border: 1px solid var(--dh-strong);
  color: var(--dt-soft);
  transition: all .3s;
}
.gp-availability .badge:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─────────────────────────────────────────────
   CH 5 · The Portfolio (light editorial grid)
   ───────────────────────────────────────────── */
.portfolio {
  padding: 160px 40px;
}
.portfolio-head {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 96px;
  align-items: end;
  margin-bottom: 64px;
}
.portfolio-lead {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.4;
  color: var(--lt-soft);
  max-width: 460px;
  justify-self: end;
}
.sectors-strip {
  border-top: 2px solid var(--lt);
}
.sector-block {
  padding: 40px 0;
  border-bottom: 1px solid var(--lh);
}
.sector-block-head {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  align-items: baseline;
  margin-bottom: 32px;
}
.sector-num {
  font-family: var(--display);
  font-weight: 500;
  font-size: 28px;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.sector-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.1;
  color: var(--dt);
  letter-spacing: -0.012em;
}
.sector-title em { color: var(--gold); font-style: normal; font-weight: 500; }

.sector-ventures {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--lh);
  margin-left: 132px;
}
.v-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 32px 28px 32px 0;
  border-right: 1px solid var(--dh);
  border-bottom: 1px solid var(--dh);
  transition: background .4s;
  position: relative;
}
.v-card:nth-child(2n) { padding-right: 0; padding-left: 28px; border-right: none; }
.v-card:hover { background: rgba(212,175,110,0.05); }
.v-card:hover .v-name { color: var(--gold); }
.v-card:hover .v-card-tag { color: var(--gold); }
.v-card-tag {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 700;
  margin-bottom: 14px;
  transition: color .3s;
}
.v-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.05;
  color: var(--lt);
  letter-spacing: -0.012em;
  margin-bottom: 12px;
  transition: color .3s;
}
.v-deck {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.55;
  color: var(--lt-soft);
  margin-bottom: 24px;
}
.v-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--lh);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--lt-mute);
  font-weight: 600;
}
.v-foot .arrow { font-family: var(--display); font-size: 16px; transition: transform .3s; color: var(--dt-mute); }
.v-card:hover .v-foot .arrow { transform: translateX(4px); color: var(--gold); }
.v-foot .v-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
}
.v-foot .v-live::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: live-pulse 2s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}

/* ─────────────────────────────────────────────
   CH 6 · Principals (light editorial)
   ───────────────────────────────────────────── */
.principals {
  padding: 160px 40px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.principals::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 900px 500px at 15% 20%, rgba(212,175,110,0.08), transparent 60%),
    radial-gradient(ellipse 900px 500px at 85% 80%, rgba(139,26,43,0.10), transparent 60%);
}
.principals .container { position: relative; z-index: 2; }
.principals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 56px;
}
.principal {
  border-top: 2px solid var(--lt);
  padding-top: 32px;
  position: relative;
}
.principal-num {
  font-family: var(--display);
  font-weight: 500;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.principal-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1;
  color: var(--lt);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.principal-role {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lt-mute);
  margin-bottom: 32px;
  font-weight: 600;
}
.principal-bio {
  font-family: var(--serif);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--lt-soft);
  max-width: 500px;
  margin-bottom: 24px;
}
.principal-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--lt);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--lt);
  transition: all .3s;
}
.principal-link:hover { color: var(--gold); border-color: var(--gold); }
.principal-link .arrow { font-family: var(--display); font-size: 15px; transition: transform .3s; }
.principal-link:hover .arrow { transform: translateX(4px); }

/* ─────────────────────────────────────────────
   CH 7 · Correspondence (dark closing)
   ───────────────────────────────────────────── */
.correspondence {
  padding: 180px 40px 140px;
  background: var(--obsidian);
  color: var(--dt);
  position: relative;
  overflow: hidden;
}
.correspondence::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 1400px 800px at 50% 0%, rgba(212,175,110,0.14), transparent 60%),
    radial-gradient(ellipse 800px 500px at 50% 100%, rgba(139,26,43,0.20), transparent 60%);
  pointer-events: none;
}
.correspondence-inner {
  position: relative;
  z-index: 3;
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.correspondence-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--dt);
  margin-bottom: 28px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.correspondence-title em { color: var(--gold); font-style: normal; font-weight: 500; }
.correspondence-lede {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(19px, 1.4vw, 22px);
  line-height: 1.55;
  color: var(--dt-soft);
  max-width: 680px;
  margin: 0 auto 72px;
}
.correspondence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--dh);
  max-width: 1080px;
  margin: 0 auto;
}
.correspondence-col {
  padding: 40px 24px;
  border-right: 1px solid var(--dh);
  text-align: center;
}
.correspondence-col:last-child { border-right: none; }
.correspondence-col-lbl {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
}
.correspondence-col-val {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(18px, 1.4vw, 22px);
  color: var(--dt);
  line-height: 1.25;
  word-break: break-word;
  letter-spacing: -0.005em;
}
.correspondence-col-val a {
  border-bottom: 1px solid transparent;
  transition: all .3s;
}
.correspondence-col-val a:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.correspondence-col-sub {
  display: block;
  margin-top: 10px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 13px;
  color: var(--dt-mute);
}

/* Single harmonised correspondence block */
.correspondence-single {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 40px;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  background:
    radial-gradient(ellipse 600px 300px at 50% 0%, rgba(212,175,110,0.06), transparent 70%);
}
.correspondence-single-lbl {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 28px;
}
.correspondence-single-email {
  display: inline-block;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(28px, 3.8vw, 52px);
  line-height: 1.1;
  color: var(--dt);
  letter-spacing: -0.02em;
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
  transition: color .3s, border-color .3s, letter-spacing .3s;
}
.correspondence-single-email:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
  text-shadow: 0 0 60px rgba(212,175,110,0.4);
}
.correspondence-single-note {
  margin: 32px auto 40px;
  max-width: 560px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.6;
  color: var(--dt-soft);
}
.correspondence-single-office {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dt-mute);
  font-weight: 600;
  padding-top: 32px;
  border-top: 1px solid var(--dh);
}
.correspondence-single-office .dot {
  display: inline-block;
  margin: 0 12px;
  color: var(--gold);
}
@media (max-width: 700px) {
  .correspondence-single { padding: 44px 24px; }
  .correspondence-single-note { margin: 24px auto 32px; }
}

/* ─── Footer ─── */
footer {
  padding: 44px 40px 40px;
  border-top: 1px solid var(--dh);
  background: var(--obsidian);
  color: var(--dt);
  position: relative;
  z-index: 2;
}
.footer-row {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  color: var(--dt);
}
.footer-meta {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--dt-mute);
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 600;
}

/* ═════════════════════════════════════════════
   VENTURES INDEX + DETAIL — kept for /ventures/*
   ═════════════════════════════════════════════ */
.section-header { padding: 130px 40px 60px; border-bottom: 1px solid var(--lh); }
.section-header .container { max-width: var(--max-w); margin: 0 auto; }
.section-header-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 80px; align-items: end; }
.section-header h1.title { font-family: var(--display); font-weight: 500; font-size: clamp(54px, 7.5vw, 110px); line-height: 0.98; letter-spacing: -0.025em; color: var(--lt); margin-bottom: 0; }
.section-header h1.title em { color: var(--wine); font-style: normal; font-weight: 500; }
.section-header .deck { font-family: var(--display); font-weight: 400; font-size: clamp(20px, 1.7vw, 24px); line-height: 1.45; color: var(--lt-soft); max-width: 480px; }

.ventures-feature { position: relative; overflow: hidden; background: var(--obsidian); }
.ventures-feature-media { position: absolute; inset: 0; z-index: 0; }
.ventures-feature-media video { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.45) grayscale(30%); }
.ventures-feature::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(5,5,10,0.5) 0%, rgba(5,5,10,0.8) 100%); }
.ventures-feature-inner { position: relative; z-index: 2; padding: 140px 40px; max-width: var(--max-w); margin: 0 auto; color: var(--dt); text-align: center; }
.ventures-feature-inner .kicker { color: var(--gold); justify-content: center; }
.ventures-feature-inner .kicker::before { background: var(--gold); }
.ventures-feature-headline { font-family: var(--display); font-weight: 400; font-size: clamp(32px, 4vw, 56px); line-height: 1.15; color: var(--dt); max-width: 900px; margin: 0 auto; letter-spacing: -0.012em; }

.ventures-grid-section { padding: 100px 40px 140px; background: var(--cream); }
.ventures-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 2px solid var(--lt); }
.venture-card { display: grid; grid-template-rows: auto 1fr auto; padding: 44px 36px; border-right: 1px solid var(--lh); border-bottom: 1px solid var(--lh); transition: background .3s; }
.venture-card:nth-child(2n) { border-right: none; }
.venture-card:hover { background: rgba(139,26,43,0.04); }
.venture-card:hover .venture-card-title { color: var(--wine); }
.venture-card-tag { font-family: var(--sans); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--wine); font-weight: 700; margin-bottom: 14px; }
.venture-card-title { font-family: var(--display); font-weight: 500; font-size: clamp(28px, 2.8vw, 38px); line-height: 1.05; letter-spacing: -0.015em; margin-bottom: 16px; color: var(--lt); transition: color .3s; }
.venture-card-deck { font-family: var(--serif); font-size: 16px; line-height: 1.6; color: var(--lt-soft); margin-bottom: 28px; max-width: 520px; }
.venture-card-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 18px; border-top: 1px solid var(--lh); font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--lt-mute); font-weight: 600; }
.venture-card-foot .arrow { font-family: var(--display); font-size: 18px; transition: transform .3s; }
.venture-card:hover .venture-card-foot .arrow { transform: translateX(4px); color: var(--wine); }

/* Article pages (detail) — reuse existing structure */
.article-hero { padding: 100px 40px 80px; border-bottom: 1px solid var(--lh); }
.article-breadcrumb { display: flex; gap: 14px; align-items: center; font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--lt-mute); margin-bottom: 64px; font-weight: 600; }
.article-breadcrumb a:hover { color: var(--wine); }
.article-breadcrumb .sep { color: var(--lh); }
.article-rubric { display: inline-flex; align-items: center; gap: 14px; font-family: var(--sans); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--wine); margin-bottom: 28px; font-weight: 700; }
.article-rubric::before { content: ""; width: 24px; height: 1px; background: var(--wine); }
.article-title { font-family: var(--display); font-weight: 500; font-size: clamp(52px, 7.5vw, 108px); line-height: 1; letter-spacing: -0.025em; color: var(--lt); margin-bottom: 28px; max-width: 1100px; }
.article-title em { color: var(--wine); font-style: normal; font-weight: 500; }
.article-deck { font-family: var(--display); font-weight: 400; font-size: clamp(22px, 2.1vw, 30px); line-height: 1.35; color: var(--lt-soft); max-width: 880px; margin-bottom: 56px; }
.article-byline { display: flex; gap: 36px; align-items: center; padding-top: 22px; border-top: 1px solid var(--lt); flex-wrap: wrap; }
.article-byline-item { font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--lt-mute); font-weight: 600; }
.article-byline-item strong { display: block; color: var(--lt); font-family: var(--display); font-weight: 500; font-size: 17px; letter-spacing: -0.005em; text-transform: none; margin-top: 4px; }

.article-media { width: 100%; height: clamp(380px, 60vh, 640px); background: var(--obsidian); position: relative; overflow: hidden; }
.article-media video, .article-media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85); }
.article-media .caption { position: absolute; bottom: 24px; left: 40px; right: 40px; font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245,239,223,0.85); font-weight: 500; z-index: 2; }
.article-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(5,5,10,0.65) 100%); z-index: 1; }

.article-body { padding: 100px 40px; display: grid; grid-template-columns: 1.6fr 1fr; gap: 100px; max-width: var(--max-w); margin: 0 auto; }
.article-prose p { font-family: var(--serif); font-size: clamp(18px, 1.4vw, 21px); line-height: 1.7; color: var(--lt); margin-bottom: 28px; }
.article-prose p.first::first-letter { font-family: var(--display); font-weight: 500; font-size: 86px; line-height: 0.8; float: left; padding-right: 16px; padding-top: 10px; color: var(--wine); }
.article-prose p .lift { color: var(--wine); font-weight: 500; }
.article-prose h3 { font-family: var(--display); font-weight: 500; font-size: clamp(26px, 2.4vw, 34px); line-height: 1.15; letter-spacing: -0.01em; margin-top: 48px; margin-bottom: 20px; color: var(--lt); }
.article-prose h3 em { color: var(--wine); font-style: normal; font-weight: 500; }
.article-prose ul { list-style: none; margin: 28px 0; border-top: 1px solid var(--lh); }
.article-prose ul li { padding: 16px 0 16px 24px; border-bottom: 1px solid var(--lh); position: relative; font-size: 16px; line-height: 1.65; color: var(--lt-soft); }
.article-prose ul li::before { content: "§"; position: absolute; left: 0; top: 16px; font-family: var(--display); color: var(--wine); font-weight: 500; }

.article-aside { position: sticky; top: 100px; align-self: start; }
.article-aside-block { border-top: 2px solid var(--lt); padding: 24px 0 32px; }
.article-aside-block + .article-aside-block { border-top: 1px solid var(--lh); }
.article-aside-head { font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--lt-mute); margin-bottom: 16px; font-weight: 600; }
.article-aside-body { font-family: var(--display); font-weight: 500; font-size: 22px; line-height: 1.3; letter-spacing: -0.005em; color: var(--lt); }
.article-aside-body .muted { display: block; font-family: var(--serif); font-weight: 400; font-size: 15px; color: var(--lt-soft); margin-top: 6px; }
.article-aside-list { list-style: none; margin-top: 8px; }
.article-aside-list li { font-family: var(--serif); font-size: 16px; color: var(--lt-soft); padding: 8px 0; border-bottom: 1px solid var(--lh); }
.article-aside-list li:last-child { border-bottom: none; }

.related { background: var(--paper); border-top: 1px solid var(--lt); padding: 100px 40px; }
.related .container { max-width: var(--max-w); margin: 0 auto; }
.related-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }
.related-title { font-family: var(--display); font-weight: 500; font-size: clamp(28px, 3vw, 40px); letter-spacing: -0.01em; color: var(--lt); }
.related-title em { color: var(--wine); font-style: normal; font-weight: 500; }
.related-link { font-family: var(--sans); font-size: 11px; letter-spacing: 0.20em; text-transform: uppercase; color: var(--lt); font-weight: 600; padding-bottom: 4px; border-bottom: 1px solid var(--lt); transition: all .3s; }
.related-link:hover { color: var(--wine); border-color: var(--wine); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--lh); }
.related-card { padding: 32px 28px; border-right: 1px solid var(--lh); border-bottom: 1px solid var(--lh); transition: background .3s; }
.related-card:last-child { border-right: none; }
.related-card:hover { background: var(--cream); }
.related-card:hover .related-card-title { color: var(--wine); }
.related-card-tag { font-family: var(--sans); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--lt-mute); margin-bottom: 12px; font-weight: 600; }
.related-card-title { font-family: var(--display); font-weight: 500; font-size: 24px; line-height: 1.15; letter-spacing: -0.005em; margin-bottom: 10px; color: var(--lt); transition: color .3s; }
.related-card-deck { font-family: var(--serif); font-size: 15px; line-height: 1.55; color: var(--lt-soft); }

/* ═════════════════════════════════════════════
   RESPONSIVE
   ═════════════════════════════════════════════ */
@media (max-width: 980px) {
  body { cursor: auto; font-size: 16px; }
  .cursor-dot, .cursor-ring { display: none; }
  .nav-row { padding: 14px 20px; grid-template-columns: 1fr auto; }
  .nav-mid { display: none; }

  .chapter { padding: 80px 20px; }
  .hero { padding-top: 100px; padding-bottom: 80px; min-height: 90vh; }
  .hero-inner { padding: 0 20px; }
  .hero-crest { width: 60px; height: 60px; margin-bottom: 32px; }

  .firm { padding: 80px 20px; }
  .firm-grid { grid-template-columns: 1fr; gap: 48px; }
  .firm-prose p.first::first-letter { font-size: 60px; }

  .flagship, .flagship-gp { padding: 90px 20px; min-height: auto; }
  .flagship-inner, .flagship-gp-inner { grid-template-columns: 1fr; gap: 48px; }
  .flagship-stats { grid-template-columns: repeat(3, 1fr); }
  .flagship-stat-num { font-size: 28px; }
  .flagship-visual-vg { max-width: 340px; justify-self: center; }

  .gp-phones { height: 480px; max-width: 380px; margin: 0 auto; }
  .gp-phone { width: 160px; }
  .gp-phone.p-1 { top: 20px; left: 0; }
  .gp-phone.p-2 { top: 10px; left: 130px; }
  .gp-phone.p-3 { top: 60px; right: 0; }

  .portfolio { padding: 90px 20px; }
  .portfolio-head { grid-template-columns: 1fr; gap: 24px; }
  .sector-block-head { grid-template-columns: 60px 1fr; gap: 16px; }
  .sector-num { font-size: 22px; }
  .sector-ventures { margin-left: 0; grid-template-columns: 1fr; }
  .v-card, .v-card:nth-child(2n) { padding: 24px 0; border-right: none !important; }

  .principals { padding: 90px 20px; }
  .principals-grid { grid-template-columns: 1fr; gap: 48px; }

  .correspondence { padding: 100px 20px 90px; }
  .correspondence-grid { grid-template-columns: 1fr; }
  .correspondence-col { padding: 32px 0; border-right: none; border-bottom: 1px solid var(--dh); }
  .correspondence-col:last-child { border-bottom: none; }

  footer { padding: 32px 20px; }
  .footer-row { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* Ventures index / detail */
  .section-header { padding: 80px 20px 40px; }
  .section-header-grid { grid-template-columns: 1fr; gap: 24px; }
  .ventures-feature-inner { padding: 90px 20px; }
  .ventures-grid-section { padding: 60px 20px 90px; }
  .ventures-grid { grid-template-columns: 1fr; }
  .venture-card { padding: 32px 0; border-right: none !important; }

  .article-hero { padding: 60px 20px; }
  .article-media { height: 320px; }
  .article-body { grid-template-columns: 1fr; gap: 48px; padding: 60px 20px; }
  .article-aside { position: static; }
  .related { padding: 60px 20px; }
  .related-grid { grid-template-columns: 1fr; }
  .related-card { border-right: none !important; padding: 24px 0; }
}
