/* ============================================================
   Banyan Ventures — design system
   Dark editorial VC aesthetic · signature accent #ae1f19
   ============================================================ */

:root {
  /* surfaces */
  --bg:        #0a0d0b;
  --bg-2:      #0d1210;
  --panel:     #111813;
  --panel-2:   #16201a;
  --panel-3:   #1b271f;

  /* ink */
  --ink:       #f4efe6;   /* primary cream */
  --ink-soft:  #d2cabb;   /* muted cream  */
  --ink-dim:   #948c7d;   /* beige        */
  --ink-faint: #6b675d;

  /* brand + accents */
  --red:        #ae1f19;
  --red-bright: #d6342b;
  --red-glow:   rgba(174, 31, 25, 0.35);
  --gold:       #c6a667;
  --green:      #3f6f54;

  /* lines */
  --line:    rgba(244, 239, 230, 0.10);
  --line-2:  rgba(244, 239, 230, 0.18);
  --line-3:  rgba(244, 239, 230, 0.28);

  /* type */
  --serif: "Fraunces", "Times New Roman", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:  "Space Mono", "SFMono-Regular", ui-monospace, monospace;

  /* metrics */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  background: var(--bg);
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  position: relative;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--red); color: var(--ink); }

/* subtle film-grain / vignette anchor for the whole page.
   absolute (not fixed) so it never repaints as a viewport layer on scroll */
body::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 700px at 75% -10%, rgba(174,31,25,0.10), transparent 60%),
    radial-gradient(900px 600px at -10% 110%, rgba(63,111,84,0.10), transparent 60%);
  pointer-events: none; z-index: 0;
}

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-wide { max-width: 1380px; }
section { position: relative; z-index: 1; }

.section-pad   { padding-block: clamp(72px, 11vw, 150px); }
.section-pad-s { padding-block: clamp(56px, 8vw, 100px); }
.divider { border-top: 1px solid var(--line); }

/* ---------- typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); color: var(--ink); font-weight: 380; line-height: 1.04; letter-spacing: -0.015em; }
.serif { font-family: var(--serif); }

.display {
  font-size: clamp(2.9rem, 7.4vw, 6.2rem);
  font-weight: 350;
  line-height: 0.99;
  letter-spacing: -0.025em;
}
.h-xl { font-size: clamp(2.1rem, 4.6vw, 3.7rem); font-weight: 360; }
.h-lg { font-size: clamp(1.7rem, 3.1vw, 2.6rem); }
.h-md { font-size: clamp(1.3rem, 2vw, 1.7rem); }

.lead {
  font-size: clamp(1.12rem, 1.7vw, 1.4rem);
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
}
em, .italic { font-style: italic; }
.serif em { font-style: italic; }

/* eyebrow / kicker */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7em;
  font-family: var(--mono);
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-dim); font-weight: 400;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--red); display: inline-block;
}
.eyebrow.gold { color: var(--gold); }
.eyebrow.gold::before { background: var(--gold); }

.idx { font-family: var(--mono); font-size: 0.74rem; color: var(--red-bright); letter-spacing: 0.1em; }
.text-red { color: var(--red-bright); }
.text-ink { color: var(--ink); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--sans); font-size: 0.92rem; font-weight: 500; letter-spacing: 0.01em;
  padding: 0.92em 1.5em; border-radius: var(--radius);
  border: 1px solid transparent; transition: all 0.4s var(--ease);
  white-space: nowrap;
}
.btn .arw { transition: transform 0.4s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

.btn-primary { background: var(--red); color: var(--ink); border-color: var(--red); }
.btn-primary:hover { background: var(--red-bright); border-color: var(--red-bright); box-shadow: 0 10px 34px -12px var(--red-glow); transform: translateY(-1px); }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-3); }
.btn-outline:hover { border-color: var(--ink); background: rgba(244,239,230,0.04); }

.btn-ghost { background: transparent; color: var(--ink-soft); padding-inline: 0.2em; }
.btn-ghost:hover { color: var(--ink); }

.btn-lg { padding: 1.05em 1.8em; font-size: 0.98rem; }
.link-underline { position: relative; color: var(--ink); }
.link-underline::after {
  content: ""; position: absolute; left: 0; bottom: -3px; height: 1px; width: 100%;
  background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease);
}
.link-underline:hover::after { transform: scaleX(1); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
  transform: translateZ(0);
  isolation: isolate;
}
.nav.scrolled {
  background: rgba(10, 13, 11, 0.94);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 0.6em; color: var(--ink); }
.brand svg { width: 26px; height: 26px; flex: none; }
.brand-name { font-family: var(--serif); font-size: 1.42rem; letter-spacing: -0.01em; line-height: 1; }
.brand-name b { font-weight: 400; }
.brand-sub { font-family: var(--mono); font-size: 0.56rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--ink-dim); display: block; margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav-links a { font-size: 0.9rem; color: var(--ink-soft); transition: color 0.3s; position: relative; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.cta { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle { display: none; background: none; border: 0; color: var(--ink); width: 40px; height: 40px; }
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 920px) {
  .nav-links.main { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .mobile-menu { display: flex; }
}
.mobile-menu {
  position: fixed; inset: 76px 0 auto 0; z-index: 99;
  background: rgba(10,13,11,0.98);
  border-bottom: 1px solid var(--line);
  flex-direction: column; padding: 18px var(--gutter) 30px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  display: none;
}
@media (max-width: 920px) { .mobile-menu { display: flex; } }
.mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu a { padding: 13px 0; font-size: 1.15rem; font-family: var(--serif); color: var(--ink); border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 18px; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
/* promoted to its own stable layer + no opacity/filter on the <img> itself,
   so Safari paints it once and just composites it on scroll (no flicker/breakup).
   Dimming is done entirely by the ::after overlay below. */
.hero-media { position: absolute; inset: 0; z-index: 0; transform: translateZ(0); backface-visibility: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,10,9,0.74) 0%, rgba(8,10,9,0.48) 35%, rgba(8,10,9,0.82) 80%, var(--bg) 100%),
    linear-gradient(90deg, rgba(8,10,9,0.85) 0%, rgba(8,10,9,0.3) 55%, transparent 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(48px, 8vh, 90px); padding-top: 120px; }
.hero h1 { max-width: 16ch; margin-top: 0.5em; }
.hero .lead { max-width: 52ch; margin-top: 1.5em; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2.4em; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 26px 40px; margin-top: 3.2em; padding-top: 2em; border-top: 1px solid var(--line); }
.hero-meta .stat { display: flex; flex-direction: column; gap: 4px; }
.hero-meta .stat .n { font-family: var(--serif); font-size: 1.9rem; color: var(--ink); line-height: 1; }
.hero-meta .stat .l { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-dim); }

.scroll-cue { position: absolute; right: var(--gutter); bottom: 36px; z-index: 2; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-dim); writing-mode: vertical-rl; display: flex; align-items: center; gap: 12px; }
.scroll-cue::after { content: ""; width: 1px; height: 46px; background: linear-gradient(var(--ink-dim), transparent); animation: cue 2.4s var(--ease) infinite; }
@keyframes cue { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@media (max-width: 700px) { .scroll-cue { display: none; } }

/* ---------- marquee ticker ---------- */
.ticker { border-block: 1px solid var(--line); background: var(--bg-2); overflow: hidden; }
.ticker-track { display: flex; gap: 0; white-space: nowrap; animation: marquee 38s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-dim); padding: 16px 30px; display: inline-flex; align-items: center; gap: 30px; }
.ticker-track span::after { content: "✳"; color: var(--red-bright); font-size: 0.7em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   GENERIC SECTION BITS
   ============================================================ */
.section-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 18px 40px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head .left { max-width: 40ch; }
.section-head h2 { margin-top: 0.7em; }
.section-head .right { max-width: 38ch; color: var(--ink-dim); font-size: 0.98rem; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 90px); align-items: start; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }

/* ---------- what / pillars ---------- */
.statement { font-family: var(--serif); font-size: clamp(1.6rem, 3.4vw, 2.85rem); line-height: 1.22; letter-spacing: -0.02em; color: var(--ink); font-weight: 350; max-width: 22ch; }
.statement .muted { color: var(--ink-faint); }
.statement b { color: var(--red-bright); font-weight: 350; }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 8px; }
@media (max-width: 720px) { .pillars { grid-template-columns: 1fr; } }
.pillar { background: var(--bg); padding: 30px 28px; transition: background 0.4s var(--ease); }
.pillar:hover { background: var(--panel); }
.pillar .idx { display: block; margin-bottom: 18px; }
.pillar h3 { font-size: 1.25rem; margin-bottom: 10px; }
.pillar p { font-size: 0.95rem; color: var(--ink-dim); }

/* ---------- program timeline ---------- */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (max-width: 900px) { .timeline { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .timeline { grid-template-columns: 1fr; } }
.week { background: var(--bg); padding: 34px 26px 40px; position: relative; transition: background 0.45s var(--ease); }
.week:hover { background: var(--panel); }
.week::before { content: ""; position: absolute; top: 0; left: 0; width: 0; height: 2px; background: var(--red); transition: width 0.5s var(--ease); }
.week:hover::before { width: 100%; }
.week .wk { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red-bright); }
.week h3 { font-size: 1.42rem; margin: 16px 0 14px; line-height: 1.1; }
.week ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.week li { font-size: 0.9rem; color: var(--ink-dim); padding-left: 18px; position: relative; line-height: 1.45; }
.week li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 6px; height: 1px; background: var(--ink-faint); }

/* phased program */
.phase-block + .phase-block { margin-top: 14px; }
.phase-head { display: flex; align-items: baseline; gap: 14px 18px; flex-wrap: wrap; margin: 40px 0 18px; }
.phase-block:first-of-type .phase-head { margin-top: 0; }
.phase-tag { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; padding: 7px 13px; border-radius: 100px; line-height: 1; }
.phase-tag.p1 { background: rgba(174,31,25,0.16); color: #e8867f; border: 1px solid rgba(174,31,25,0.45); }
.phase-tag.p2 { background: rgba(198,166,103,0.14); color: var(--gold); border: 1px solid rgba(198,166,103,0.45); }
.phase-head h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
.phase-head .when { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.04em; color: var(--ink-dim); margin-left: auto; }
@media (max-width: 560px) { .phase-head .when { margin-left: 0; flex-basis: 100%; } }

.week { display: flex; flex-direction: column; }
.wk-date { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.04em; color: var(--ink-faint); text-transform: none; }
.wk-focus { font-size: 0.9rem; color: var(--ink-dim); margin: 13px 0 18px; line-height: 1.5; }
.deliv { margin-top: auto; padding-top: 15px; border-top: 1px solid var(--line); font-size: 0.92rem; color: var(--ink); }
.deliv .lbl { display: block; font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red-bright); margin-bottom: 5px; }
.phase-block.p2 .week::before { background: var(--gold); }
.phase-block.p2 .wk { color: var(--gold); }
.phase-block.p2 .deliv .lbl { color: var(--gold); }

.phase-break { display: flex; align-items: center; gap: 16px; margin: 18px 0; padding: 16px 0; }
.phase-break .line { flex: 1; height: 1px; background: var(--line); }
.phase-break span { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-dim); white-space: nowrap; }

.program-extras { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.chip { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.06em; color: var(--ink-soft); border: 1px solid var(--line-2); border-radius: 100px; padding: 8px 15px; transition: all 0.35s var(--ease); }
.chip:hover { border-color: var(--red); color: var(--ink); }

/* ---------- for startups ---------- */
.panel-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(28px, 4vw, 46px); }
.receive-list { list-style: none; display: flex; flex-direction: column; }
.receive-list li { display: flex; gap: 16px; padding: 17px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.receive-list li:last-child { border-bottom: 0; }
.receive-list .n { font-family: var(--mono); font-size: 0.74rem; color: var(--red-bright); padding-top: 4px; flex: none; width: 26px; }
.receive-list .t { color: var(--ink); font-size: 1.05rem; }
.receive-list .d { color: var(--ink-dim); font-size: 0.9rem; display: block; margin-top: 2px; }

.media-frame { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9) contrast(1.02); transition: transform 0.8s var(--ease); }
.media-frame:hover img { transform: scale(1.04); }
.media-frame .tag { position: absolute; left: 16px; bottom: 16px; font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); background: rgba(10,13,11,0.82); border: 1px solid var(--line-2); padding: 7px 12px; border-radius: 100px; }

/* ---------- insights ---------- */
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (max-width: 880px) { .insights-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .insights-grid { grid-template-columns: 1fr; } }
.insight { background: var(--bg); padding: 30px 26px 34px; display: flex; flex-direction: column; min-height: 250px; transition: background 0.45s var(--ease); }
.insight:hover { background: var(--panel); }
.insight .meta { font-family: var(--mono); font-size: 0.67rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-dim); display: flex; gap: 12px; align-items: center; }
.insight .meta .sector { color: var(--red-bright); }
.insight h3 { font-size: 1.4rem; margin: 18px 0 12px; line-height: 1.12; }
.insight p { font-size: 0.93rem; color: var(--ink-dim); flex: 1; }
.insight .more { margin-top: 20px; font-size: 0.85rem; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; }
.insight:hover .more { color: var(--red-bright); }
.insight .more .arw { transition: transform 0.4s var(--ease); }
.insight:hover .more .arw { transform: translateX(4px); }

/* ---------- team ---------- */
.team-photos { display: grid; grid-template-columns: 1.5fr 1fr; gap: 14px; }
@media (max-width: 760px) { .team-photos { grid-template-columns: 1fr; } }
.team-photos .col { display: flex; flex-direction: column; gap: 14px; }
.team-photos .media-frame { aspect-ratio: 4/3; }
.team-photos .media-frame.tall { aspect-ratio: 3/4; }

.interest-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.interest-tags .chip { border-color: var(--line); color: var(--ink-dim); }
.interest-tags .chip:hover { color: var(--ink); border-color: var(--gold); }

.member-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 60px; }
@media (max-width: 900px) { .member-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .member-grid { grid-template-columns: 1fr; } }
.member { background: var(--bg); padding: 26px 22px 30px; transition: background 0.4s var(--ease); }
.member:hover { background: var(--panel); }
.member .av { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; font-family: var(--serif); color: var(--ink); font-size: 1.1rem; margin-bottom: 16px; background: var(--panel-2); }
.member h4 { font-size: 1.12rem; }
.member .role { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red-bright); margin: 4px 0 12px; }
.member p { font-size: 0.85rem; color: var(--ink-dim); }

/* ---------- beliefs ---------- */
.beliefs-sec { background: var(--panel); border-block: 1px solid var(--line); }
.beliefs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 8px; }
@media (max-width: 760px) { .beliefs { grid-template-columns: 1fr; } }
.belief { background: var(--panel); padding: 34px 30px; display: flex; gap: 22px; transition: background 0.4s var(--ease); }
.belief:hover { background: var(--panel-2); }
.belief .num { font-family: var(--serif); font-size: 2.1rem; color: var(--red); line-height: 1; flex: none; opacity: 0.9; }
.belief p { font-family: var(--serif); font-size: 1.22rem; line-height: 1.35; color: var(--ink); font-weight: 350; letter-spacing: -0.01em; }
.belief .sub { font-family: var(--sans); font-size: 0.9rem; color: var(--ink-dim); margin-top: 10px; line-height: 1.5; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-block: 1px solid var(--line); }
.cta-band .bg { position: absolute; inset: 0; z-index: 0; }
.cta-band .bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.22; filter: grayscale(0.2); }
.cta-band .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--bg) 10%, rgba(10,13,11,0.6) 60%, rgba(10,13,11,0.85)); }
.cta-band .inner { position: relative; z-index: 1; }

/* ---------- newsletter ---------- */
.newsletter { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; max-width: 480px; }
.newsletter input { flex: 1; min-width: 220px; background: rgba(244,239,230,0.04); border: 1px solid var(--line-2); border-radius: var(--radius); color: var(--ink); padding: 0.95em 1.1em; font-family: var(--sans); font-size: 0.95rem; transition: border-color 0.3s; }
.newsletter input::placeholder { color: var(--ink-faint); }
.newsletter input:focus { outline: none; border-color: var(--red); }
.form-note { font-size: 0.78rem; color: var(--ink-faint); margin-top: 12px; }
.form-msg { font-family: var(--mono); font-size: 0.8rem; margin-top: 14px; min-height: 1.2em; }
.form-msg.ok { color: var(--gold); }
.form-msg.err { color: var(--red-bright); }

/* ============================================================
   FORMS (apply / submit pages)
   ============================================================ */
.page-hero { padding-top: 150px; padding-bottom: 20px; }
.form-shell { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
@media (max-width: 900px) { .form-shell { grid-template-columns: 1fr; } }
.form-aside { position: sticky; top: 110px; }
@media (max-width: 900px) { .form-aside { position: static; } }
.form-aside .lead { margin-top: 1.2em; }
.aside-list { list-style: none; margin-top: 30px; display: flex; flex-direction: column; gap: 0; }
.aside-list li { padding: 14px 0; border-top: 1px solid var(--line); display: flex; gap: 14px; font-size: 0.92rem; color: var(--ink-soft); }
.aside-list li .n { font-family: var(--mono); color: var(--red-bright); font-size: 0.78rem; }

form.app { display: flex; flex-direction: column; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-dim); }
.field label .req { color: var(--red-bright); }
.field input, .field select, .field textarea {
  background: rgba(244,239,230,0.03); border: 1px solid var(--line-2); border-radius: var(--radius);
  color: var(--ink); padding: 0.85em 1em; font-family: var(--sans); font-size: 0.98rem; width: 100%;
  transition: border-color 0.3s, background 0.3s;
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.55; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); background: rgba(244,239,230,0.05); }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23948c7d' stroke-width='1.4' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1em center; padding-right: 2.4em; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
.form-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 8px; }

/* ============================================================
   ARTICLE
   ============================================================ */
.article-hero { padding-top: 150px; }
.article-hero .meta { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-dim); display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.article-hero .meta .sector { color: var(--red-bright); }
.article-hero h1 { margin: 22px 0 0; max-width: 20ch; }
.article-hero .standfirst { font-family: var(--serif); font-size: clamp(1.2rem, 2.2vw, 1.6rem); line-height: 1.4; color: var(--ink-soft); max-width: 60ch; margin-top: 26px; font-weight: 350; }
.article-body { max-width: 720px; margin-inline: auto; }
.article-body p { font-size: 1.12rem; line-height: 1.75; color: var(--ink-soft); margin-bottom: 1.5em; }
.article-body h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 1.6em 0 0.6em; }
.article-body h3 { font-size: 1.3rem; margin: 1.4em 0 0.5em; color: var(--ink); }
.article-body ul, .article-body ol { margin: 0 0 1.5em 1.2em; color: var(--ink-soft); }
.article-body li { margin-bottom: 0.6em; line-height: 1.7; }
.article-body blockquote { border-left: 2px solid var(--red); padding-left: 24px; margin: 1.8em 0; font-family: var(--serif); font-size: 1.5rem; line-height: 1.4; color: var(--ink); font-style: italic; }
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body a { color: var(--ink); border-bottom: 1px solid var(--red); }
.article-figure { margin: 2em 0; }
.article-figure img { border-radius: var(--radius); border: 1px solid var(--line); }
.article-figure figcaption { font-family: var(--mono); font-size: 0.72rem; color: var(--ink-faint); margin-top: 10px; letter-spacing: 0.04em; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); padding-block: clamp(56px, 7vw, 90px) 36px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 820px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 36px 24px; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }
.footer .brand { margin-bottom: 18px; }
.footer-col h5 { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 18px; font-weight: 400; }
.footer-col a, .footer-col p { display: block; font-size: 0.92rem; color: var(--ink-soft); padding: 6px 0; transition: color 0.3s; }
.footer-col a:hover { color: var(--ink); }
.footer-blurb { font-size: 0.92rem; color: var(--ink-dim); max-width: 34ch; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; margin-top: clamp(44px, 6vw, 70px); padding-top: 28px; border-top: 1px solid var(--line); }
.footer-bottom p, .footer-bottom a { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.04em; color: var(--ink-faint); }
.footer-bottom a:hover { color: var(--ink-soft); }
.footer-legal { display: flex; gap: 22px; flex-wrap: wrap; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* utility */
.mt-s { margin-top: 1.2em; } .mt-m { margin-top: 2em; } .mt-l { margin-top: 3em; }
.muted { color: var(--ink-dim); }
.center { text-align: center; }
.maxw-60 { max-width: 60ch; }
.nowrap { white-space: nowrap; }
