/* ============================================================
   KAITLYN CAUGHLIN — Principal, Vanguard
   Enterprise Strategy & Transformation
   Design System  ·  v1.0
   ============================================================ */

/* ----------  Reset & Foundations  ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

/* ----------  Tokens  ---------- */
:root {
  --paper:        #F2EEE6;
  --paper-deep:   #E7E1D4;
  --paper-soft:   #FAF7F1;
  --ink:          #0E1116;
  --ink-soft:     #2A2D33;
  --ink-mute:     #5A5D63;
  --rule:         #C9C2B0;
  --rule-soft:    #DDD6C6;
  --terracotta:   #B85C36;
  --rust:         #8C3D1F;
  --teal-deep:    #1B3A4B;
  --gold:         #B89058;
  --cream:        #EFE8D8;

  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans:  "Inter", system-ui, -apple-system, sans-serif;
  --mono:  "JetBrains Mono", "SF Mono", monospace;

  --gut:    clamp(20px, 4vw, 64px);
  --pad:    clamp(24px, 5vw, 96px);
  --maxw:   1680px;

  --t-fast: 240ms cubic-bezier(.2,.7,.2,1);
  --t-mid:  520ms cubic-bezier(.2,.7,.2,1);
  --t-slow: 880ms cubic-bezier(.2,.7,.2,1);
}

/* ----------  Containers  ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.wrap-narrow { max-width: 1180px; margin: 0 auto; padding: 0 var(--pad); }
.flush { padding: 0; }

/* ----------  Typography Scale  ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.eyebrow .dot {
  display: inline-block; width: 6px; height: 6px; background: var(--terracotta);
  border-radius: 50%; vertical-align: 1px; margin-right: 12px;
}
.label-num {
  font-family: var(--mono); font-size: 11px; color: var(--ink-mute);
  letter-spacing: 0.16em; text-transform: uppercase;
}
.h-display {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 0.92;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(54px, 11vw, 180px);
}
.h-display em {
  font-style: italic;
  font-weight: 300;
  color: var(--terracotta);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.h1 {
  font-family: var(--serif);
  font-weight: 320;
  letter-spacing: -0.025em;
  line-height: 1.0;
  font-size: clamp(40px, 6.4vw, 96px);
  font-variation-settings: "opsz" 100;
}
.h1 em { font-style: italic; color: var(--terracotta); font-weight: 320; }
.h2 {
  font-family: var(--serif);
  font-weight: 360;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: clamp(32px, 4.4vw, 64px);
  font-variation-settings: "opsz" 80;
}
.h2 em { font-style: italic; color: var(--terracotta); }
.h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.15;
  font-size: clamp(24px, 2.6vw, 36px);
}
.h4 {
  font-family: var(--serif);
  font-weight: 420;
  letter-spacing: -0.01em;
  line-height: 1.25;
  font-size: clamp(20px, 1.6vw, 24px);
}
.lead {
  font-family: var(--serif);
  font-weight: 320;
  font-size: clamp(20px, 1.85vw, 28px);
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--ink-soft);
}
.lead em { font-style: italic; color: var(--terracotta); }
.body-l {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.body { font-size: 16px; line-height: 1.65; color: var(--ink-soft); }
.body-s { font-size: 14px; line-height: 1.55; color: var(--ink-mute); }
.mono { font-family: var(--mono); }

/* ----------  Rule Lines  ---------- */
.rule { width: 100%; height: 1px; background: var(--rule); border: none; }
.rule-soft { width: 100%; height: 1px; background: var(--rule-soft); border: none; }

/* ============================================================
   ACCESS GATE
   ============================================================ */
.gate {
  min-height: 100vh; display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink); color: var(--paper);
  position: relative; overflow: hidden;
}
.gate::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 40% at 70% 30%, rgba(184,92,54,0.10), transparent 60%),
    radial-gradient(50% 50% at 20% 80%, rgba(27,58,75,0.35), transparent 70%);
  pointer-events: none;
}
.gate-art {
  position: relative; overflow: hidden; border-right: 1px solid rgba(255,255,255,0.06);
}
.gate-art-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: radial-gradient(80% 60% at 30% 50%, black, transparent);
}
.gate-art-mark {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(120px, 22vw, 380px); color: rgba(242,238,230,0.06);
  letter-spacing: -0.05em; line-height: 1;
}
.gate-art-meta {
  position: absolute; left: var(--pad); right: var(--pad); top: var(--pad);
  display: flex; justify-content: space-between; align-items: flex-start;
}
.gate-art-meta .ident {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(242,238,230,0.55);
}
.gate-art-bottom {
  position: absolute; left: var(--pad); right: var(--pad); bottom: var(--pad);
}
.gate-art-bottom .h2 { color: var(--paper); }
.gate-art-bottom .h2 em { color: var(--terracotta); }

.gate-form {
  position: relative; z-index: 2; padding: var(--pad);
  display: flex; flex-direction: column; justify-content: space-between;
}
.gate-form .top {
  display: flex; justify-content: flex-end;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(242,238,230,0.55);
}
.gate-form .center { max-width: 480px; }
.gate-form .center .eyebrow { color: rgba(242,238,230,0.6); }
.gate-form .center .eyebrow .dot { background: var(--terracotta); }
.gate-form h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1.0; letter-spacing: -0.025em;
  margin: 24px 0 16px; color: var(--paper);
}
.gate-form h1 em { font-style: italic; color: var(--terracotta); font-weight: 300; }
.gate-form p.lead {
  color: rgba(242,238,230,0.7); font-family: var(--serif);
  font-size: 18px; font-weight: 300; line-height: 1.5;
  margin-bottom: 40px; max-width: 420px;
}
.gate-input-row {
  display: grid; grid-template-columns: 1fr auto;
  border-top: 1px solid rgba(242,238,230,0.18);
  border-bottom: 1px solid rgba(242,238,230,0.18);
  padding: 18px 0; gap: 16px; align-items: center;
}
.gate-input-row input {
  background: transparent; border: none; outline: none;
  color: var(--paper); font-family: var(--serif); font-size: 22px;
  font-weight: 300; letter-spacing: 0.04em; width: 100%; padding: 4px 0;
  font-variation-settings: "opsz" 36;
}
.gate-input-row input::placeholder { color: rgba(242,238,230,0.3); font-style: italic; }
.gate-submit {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 14px 22px; border: 1px solid rgba(242,238,230,0.4); color: var(--paper);
  border-radius: 999px; transition: var(--t-fast);
  display: inline-flex; align-items: center; gap: 10px;
}
.gate-submit:hover { background: var(--terracotta); border-color: var(--terracotta); }
.gate-submit svg { transition: transform var(--t-fast); }
.gate-submit:hover svg { transform: translateX(4px); }
.gate-msg {
  margin-top: 16px; min-height: 22px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(242,238,230,0.5);
}
.gate-msg.error { color: var(--terracotta); }
.gate-form .bottom {
  display: flex; justify-content: space-between; align-items: flex-end;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(242,238,230,0.45);
}
.gate-form .bottom a { color: rgba(242,238,230,0.7); }
.gate-form .bottom a:hover { color: var(--terracotta); }

@media (max-width: 900px) {
  .gate { grid-template-columns: 1fr; }
  .gate-art { display: none; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--rule-soft);
}
.nav-inner {
  display: flex; align-items: center;
  gap: clamp(14px, 1.8vw, 32px);
  padding: 14px var(--pad);
  min-height: 64px;
}
.nav-mark {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif); font-weight: 380; letter-spacing: -0.02em;
  font-size: 17px; flex: 0 0 auto; min-width: 0;
  white-space: nowrap;
  margin-right: auto;
}
.nav-mark > span:not(.glyph) {
  display: flex; flex-direction: column; line-height: 1.1; min-width: 0;
  overflow: hidden; text-overflow: ellipsis;
}
.nav-mark .glyph {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--ink); color: var(--paper);
  display: grid; place-items: center; flex-shrink: 0;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 17px; letter-spacing: -0.02em;
}
.nav-mark .role {
  display: block; font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-mute);
  font-weight: 500; line-height: 1; margin-top: 4px; white-space: nowrap;
}
.nav-links {
  display: flex; gap: clamp(14px, 1.4vw, 26px); justify-content: flex-end;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft); flex-wrap: nowrap; flex: 0 0 auto;
}
.nav-links a { position: relative; padding: 8px 0; transition: color var(--t-fast); white-space: nowrap; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--terracotta); transform: scaleX(0);
  transform-origin: left; transition: transform var(--t-fast);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.is-active { color: var(--terracotta); }
.nav-links a.is-active::after { transform: scaleX(1); }
.nav-cta {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  border: 1px solid var(--ink); padding: 9px 16px; border-radius: 999px;
  transition: var(--t-fast); flex-shrink: 0; white-space: nowrap;
}
.nav-cta:hover { background: var(--ink); color: var(--paper); }

.nav-burger {
  display: none; width: 38px; height: 38px; border: 1px solid var(--ink);
  border-radius: 50%; align-items: center; justify-content: center; gap: 4px; flex-direction: column;
  flex-shrink: 0;
}
.nav-burger span { display: block; width: 14px; height: 1px; background: var(--ink); }

@media (max-width: 1380px) {
  .nav-mark .role { display: none; }
}
@media (max-width: 1280px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}
@media (max-width: 720px) {
  .nav-cta { display: none; }
  .nav-mark { font-size: 16px; }
  .nav-mark .glyph { width: 30px; height: 30px; font-size: 16px; }
}

.mobile-menu {
  position: fixed; inset: 0; background: var(--ink); color: var(--paper);
  z-index: 100;
  transform: translateY(-100%);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: transform var(--t-mid), opacity var(--t-mid), visibility 0s linear var(--t-mid);
  padding: 32px var(--pad); display: flex; flex-direction: column; justify-content: space-between;
}
.mobile-menu.is-open {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: transform var(--t-mid), opacity var(--t-mid), visibility 0s;
}
.mobile-menu .top { display: flex; justify-content: space-between; align-items: center; }
.mobile-menu .close {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(242,238,230,0.35);
  display: grid; place-items: center; font-family: var(--mono); font-size: 14px;
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu nav a {
  font-family: var(--serif); font-weight: 320; font-size: clamp(36px, 8vw, 64px);
  letter-spacing: -0.025em; line-height: 1.1; color: var(--paper);
  border-bottom: 1px solid rgba(242,238,230,0.12); padding: 14px 0;
  display: flex; justify-content: space-between; align-items: baseline;
}
.mobile-menu nav a span {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(242,238,230,0.45);
}
.mobile-menu nav a:hover { color: var(--terracotta); }
.mobile-menu .bottom {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(242,238,230,0.55);
  display: flex; justify-content: space-between;
}

/* ============================================================
   HERO  ·  Homepage
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(64px, 9vw, 140px) 0 clamp(40px, 6vw, 80px);
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(32px, 5vw, 96px);
  align-items: end;
}
.hero-meta {
  display: grid; grid-template-columns: 1fr auto; align-items: end;
  gap: 32px; margin-bottom: 32px;
}
.hero-meta .label-num { padding-bottom: 6px; }
.hero-name {
  font-family: var(--serif);
  font-size: clamp(64px, 14vw, 220px);
  line-height: 0.86; letter-spacing: -0.045em;
  font-weight: 280; font-variation-settings: "opsz" 144;
}
.hero-name .l-1, .hero-name .l-2 { display: block; }
.hero-name .l-1 .it { font-style: italic; color: var(--terracotta); font-weight: 280; }
.hero-name .l-2 { padding-left: 18%; }
.hero-name .l-2 .it { font-style: italic; color: var(--terracotta); font-weight: 280; }
.hero-rule { margin: 36px 0 32px; }
.hero-credentials {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 48px);
}
.hero-credentials .item .label-num { display: block; margin-bottom: 12px; }
.hero-credentials .item p { font-family: var(--serif); font-weight: 320; font-size: clamp(15px, 1.2vw, 18px); line-height: 1.4; color: var(--ink-soft); }

.hero-portrait {
  position: relative; height: clamp(420px, 64vh, 760px);
  overflow: hidden; background: var(--paper-deep);
}
.hero-portrait img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 22%;
  transform: scale(1.02); transition: transform 1.2s ease;
}
.hero-portrait:hover img { transform: scale(1.05); }
.hero-portrait .stamp {
  position: absolute; left: 24px; bottom: 24px;
  background: var(--paper); padding: 14px 18px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
}
.hero-portrait .stamp strong { display: block; font-family: var(--serif); font-weight: 380; font-size: 16px; letter-spacing: -0.01em; text-transform: none; margin-top: 4px; color: var(--ink); }

.hero-marquee {
  margin-top: 60px; padding: 28px 0;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  overflow: hidden; white-space: nowrap;
}
.hero-marquee-track {
  display: inline-flex; gap: 60px;
  animation: marq 38s linear infinite;
  font-family: var(--serif); font-weight: 280; font-style: italic;
  font-size: clamp(36px, 5vw, 72px); letter-spacing: -0.025em; color: var(--ink);
  font-variation-settings: "opsz" 100;
}
.hero-marquee-track span { display: inline-flex; align-items: center; gap: 60px; }
.hero-marquee-track .dot { width: 10px; height: 10px; background: var(--terracotta); border-radius: 50%; display: inline-block; }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-portrait { height: 60vh; }
  .hero-name .l-2 { padding-left: 0; }
  .hero-credentials { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   SECTION  ·  generic frame
   ============================================================ */
.sect { padding: clamp(80px, 10vw, 160px) 0; }
.sect-dark { background: var(--ink); color: var(--paper); }
.sect-dark .h1, .sect-dark .h2, .sect-dark .h3, .sect-dark .h4 { color: var(--paper); }
.sect-dark .lead, .sect-dark .body, .sect-dark .body-l { color: rgba(242,238,230,0.78); }
.sect-dark .label-num, .sect-dark .eyebrow { color: rgba(242,238,230,0.55); }
.sect-dark .rule, .sect-dark .rule-soft { background: rgba(242,238,230,0.18); }
.sect-dark .quote-panel blockquote { color: var(--paper); }
.sect-dark .quote-panel blockquote em { color: var(--terracotta); }
.sect-dark .quote-panel cite { color: rgba(242,238,230,0.55); }
.sect-dark .quote-panel cite strong { color: var(--paper); }
.sect-dark .quote-panel .mark { color: var(--terracotta); }
.sect-dark .stats { border-color: rgba(242,238,230,0.18); }
.sect-dark .stats .stat { border-color: rgba(242,238,230,0.18); }
.sect-dark .stats .stat .n { color: var(--paper); }
.sect-dark .stats .stat .l { color: rgba(242,238,230,0.55); }
.sect-dark .stats .stat p { color: rgba(242,238,230,0.78); }
.sect-dark .framework, .sect-dark .framework > div { border-color: rgba(242,238,230,0.18); }
.sect-dark .framework .head h3 { color: var(--paper); }
.sect-dark .framework .cell h4 { color: var(--paper); }
.sect-dark .framework .cell p { color: rgba(242,238,230,0.78); }
.sect-dark .pillars, .sect-dark .pillars .pillar { border-color: rgba(242,238,230,0.18); }
.sect-dark .pillars .pillar h3 { color: var(--paper); }
.sect-dark .pillars .pillar p { color: rgba(242,238,230,0.78); }
.sect-dark .pillars .pillar:hover { background: rgba(255,255,255,0.04); }
.sect-dark .pillars .pillar .more { color: var(--paper); }

.sect-soft { background: var(--paper-soft); }
.sect-deep { background: var(--paper-deep); }

.sect-teal { background: var(--teal-deep); color: var(--paper); }
.sect-teal .h1, .sect-teal .h2, .sect-teal .h3, .sect-teal .h4 { color: var(--paper); }
.sect-teal .h2 em, .sect-teal .h3 em, .sect-teal .h1 em { color: var(--gold); }
.sect-teal .lead, .sect-teal .body, .sect-teal .body-l { color: rgba(242,238,230,0.78); }
.sect-teal .label-num, .sect-teal .eyebrow { color: rgba(242,238,230,0.6); }
.sect-teal .quote-panel blockquote { color: var(--paper); }
.sect-teal .quote-panel blockquote em { color: var(--gold); }
.sect-teal .quote-panel cite { color: rgba(242,238,230,0.6); }
.sect-teal .quote-panel cite strong { color: var(--paper); }
.sect-teal .quote-panel .mark { color: var(--gold); }
.sect-teal .pillars, .sect-teal .pillars .pillar { border-color: rgba(242,238,230,0.18); }
.sect-teal .pillars .pillar h3 { color: var(--paper); }
.sect-teal .pillars .pillar p { color: rgba(242,238,230,0.78); }
.sect-teal .pillars .pillar:hover { background: rgba(255,255,255,0.04); }
.sect-teal .pillars .pillar .more,
.sect-teal .pillars .pillar .num { color: var(--paper); }
.sect-teal .editorial .ed-text .more { color: var(--paper); }

.sect-head {
  display: grid; grid-template-columns: 1fr; gap: clamp(20px, 2.4vw, 32px);
  margin-bottom: clamp(48px, 7vw, 96px);
}
.sect-head .col-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 24px; padding-bottom: 18px; border-bottom: 1px solid var(--rule);
}
.sect-head .col-meta .eyebrow,
.sect-head .col-meta .label-num { display: inline-block; }
.sect-head .col-body { max-width: 1100px; }
.sect-dark .sect-head .col-meta { border-bottom-color: rgba(242,238,230,0.18); }
.sect-teal .sect-head .col-meta { border-bottom-color: rgba(242,238,230,0.18); }
@media (max-width: 700px) {
  .sect-head .col-meta { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ============================================================
   PILLARS / FEATURE CARDS
   ============================================================ */
.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
.pillars .pillar {
  padding: clamp(32px, 4vw, 64px) clamp(20px, 3vw, 40px);
  border-right: 1px solid var(--rule); position: relative;
  display: flex; flex-direction: column; min-height: 380px;
  transition: background var(--t-mid);
}
.pillars .pillar:last-child { border-right: none; }
.pillars .pillar:hover { background: var(--paper-deep); }
.pillars .pillar .num {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 28px;
}
.pillars .pillar h3 { margin-bottom: 18px; }
.pillars .pillar p { color: var(--ink-soft); margin-bottom: auto; }
.pillars .pillar .more {
  margin-top: 32px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink); display: inline-flex; align-items: center; gap: 10px;
}
.pillars .pillar .more::after { content: "→"; transition: transform var(--t-fast); }
.pillars .pillar:hover .more::after { transform: translateX(4px); }
@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr; border-top: 1px solid var(--rule); }
  .pillars .pillar { border-right: none; border-bottom: 1px solid var(--rule); }
  .pillars .pillar:last-child { border-bottom: none; }
}

/* ============================================================
   EDITORIAL  ·  text + image columns
   ============================================================ */
.editorial {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 80px);
  align-items: stretch;
}
.editorial.right-img { grid-template-columns: 1fr 1.1fr; }
.editorial.left-img { grid-template-columns: 1.1fr 1fr; }
.editorial .ed-img {
  position: relative; height: clamp(360px, 56vh, 720px); overflow: hidden; background: var(--paper-deep);
}
.editorial .ed-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.editorial .ed-img.bottom img { object-position: center bottom; }
.editorial .ed-img.top img { object-position: center top; }
.editorial .ed-img figcaption {
  position: absolute; left: 20px; bottom: 20px; right: 20px;
  background: rgba(14,17,22,0.78); color: var(--paper);
  padding: 12px 16px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
}
.editorial .ed-text { display: flex; flex-direction: column; justify-content: center; padding: 24px 0; }
.editorial .ed-text .eyebrow { margin-bottom: 24px; }
.editorial .ed-text .h2 { margin-bottom: 28px; }
.editorial .ed-text .body-l + .body-l { margin-top: 18px; }
@media (max-width: 900px) {
  .editorial, .editorial.right-img, .editorial.left-img { grid-template-columns: 1fr; }
  .editorial .ed-img { height: 60vh; }
}

/* ============================================================
   QUOTE PANEL
   ============================================================ */
.quote-panel {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(32px, 5vw, 80px);
  padding: clamp(60px, 8vw, 120px) 0; align-items: start;
}
.quote-panel .mark {
  font-family: var(--serif); font-style: italic; font-weight: 200;
  font-size: clamp(120px, 16vw, 240px); line-height: 0.7; color: var(--terracotta);
}
.quote-panel blockquote {
  font-family: var(--serif); font-weight: 280; font-style: normal;
  font-size: clamp(28px, 3.6vw, 56px); line-height: 1.18; letter-spacing: -0.02em;
  color: var(--ink); font-variation-settings: "opsz" 100;
}
.quote-panel blockquote em { font-style: italic; color: var(--terracotta); }
.quote-panel cite {
  display: block; margin-top: 36px; font-style: normal;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-mute);
}
.quote-panel cite strong {
  font-family: var(--serif); font-weight: 380; font-size: 18px; letter-spacing: -0.01em;
  text-transform: none; color: var(--ink); display: block; margin-bottom: 4px;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
.stats .stat {
  padding: clamp(32px, 4vw, 56px) clamp(18px, 2.4vw, 32px);
  border-right: 1px solid var(--rule);
}
.stats .stat:last-child { border-right: none; }
.stats .stat .n {
  font-family: var(--serif); font-weight: 280;
  font-size: clamp(48px, 6vw, 96px); line-height: 1; letter-spacing: -0.04em;
  color: var(--ink); font-variation-settings: "opsz" 144;
}
.stats .stat .n .it { font-style: italic; color: var(--terracotta); }
.stats .stat .n .sub {
  font-family: var(--sans); font-size: 13px; font-weight: 500; color: var(--ink-mute);
  letter-spacing: 0.04em; vertical-align: middle; padding-left: 8px;
}
.stats .stat .l {
  margin-top: 18px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-mute);
}
.stats .stat p {
  margin-top: 12px; color: var(--ink-soft); font-size: 14px; line-height: 1.5;
}
@media (max-width: 900px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stats .stat:nth-child(2n) { border-right: none; }
  .stats .stat:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
}
@media (max-width: 540px) {
  .stats { grid-template-columns: 1fr; }
  .stats .stat { border-right: none; border-bottom: 1px solid var(--rule); }
  .stats .stat:last-child { border-bottom: none; }
}

/* ============================================================
   FRAMEWORK GRID
   ============================================================ */
.framework {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr);
  border-top: 1px solid var(--rule);
}
.framework > div {
  padding: clamp(32px, 4vw, 56px) clamp(20px, 2.4vw, 40px);
  border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
.framework > div:last-child { border-right: none; }
.framework .head h3 { font-family: var(--serif); font-weight: 320; font-size: clamp(32px, 4.2vw, 56px); letter-spacing: -0.02em; line-height: 1; }
.framework .head h3 em { font-style: italic; color: var(--terracotta); }
.framework .head p { margin-top: 22px; color: var(--ink-soft); font-size: 15px; }
.framework .cell .num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--terracotta); }
.framework .cell h4 { margin-top: 20px; font-family: var(--serif); font-weight: 380; font-size: 22px; letter-spacing: -0.01em; line-height: 1.2; }
.framework .cell p { margin-top: 14px; font-size: 14px; line-height: 1.55; color: var(--ink-soft); }

.framework.cols-2 { grid-template-columns: 1fr 1fr; }
.framework.cols-2 > div:nth-child(2n) { border-right: none; }
.framework.cols-3 { grid-template-columns: repeat(3, 1fr); }
.framework.cols-3 > div:nth-child(3n) { border-right: none; }
.framework.cols-4 { grid-template-columns: repeat(4, 1fr); }
.framework.cols-4 > div:nth-child(4n) { border-right: none; }

@media (max-width: 1100px) {
  .framework { grid-template-columns: 1fr 1fr; }
  .framework .head { grid-column: 1 / -1; }
  .framework > div { border-right: 1px solid var(--rule); }
  .framework > div:nth-child(odd):not(.head) { border-right: 1px solid var(--rule); }
  .framework > div:nth-child(even) { border-right: none; }
}
@media (max-width: 700px) {
  .framework, .framework.cols-2, .framework.cols-3, .framework.cols-4 { grid-template-columns: 1fr; }
  .framework > div { border-right: none; }
}

/* ============================================================
   EDGE-TO-EDGE FEATURE  ·  full-bleed image with caption
   ============================================================ */
.bleed {
  position: relative; width: 100%; overflow: hidden;
  height: clamp(420px, 80vh, 820px); background: var(--ink);
}
.bleed img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 28%;
}
.bleed .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,17,22,0.0) 30%, rgba(14,17,22,0.65) 100%);
}
.bleed .caption {
  position: absolute; left: var(--pad); right: var(--pad); bottom: var(--pad);
  display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 32px;
  color: var(--paper);
}
.bleed .caption .title {
  font-family: var(--serif); font-weight: 320; font-size: clamp(28px, 3.6vw, 56px);
  letter-spacing: -0.02em; line-height: 1.05; max-width: 720px;
}
.bleed .caption .title em { font-style: italic; color: var(--gold); }
.bleed .caption .meta {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(242,238,230,0.7); text-align: right;
}

/* ============================================================
   INSIGHTS GRID
   ============================================================ */
.insights-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(20px, 2.4vw, 40px); }
.insight-card { display: flex; flex-direction: column; }
.insight-card .img {
  position: relative; aspect-ratio: 4 / 5; background: var(--paper-deep); overflow: hidden;
}
.insight-card .img img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; transition: transform 1s ease; }
.insight-card:hover .img img { transform: scale(1.05); }
.insight-card .meta {
  display: flex; justify-content: space-between; margin-top: 22px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-mute);
}
.insight-card h3 {
  margin-top: 14px; font-family: var(--serif); font-weight: 360;
  font-size: clamp(22px, 2vw, 30px); line-height: 1.15; letter-spacing: -0.015em; color: var(--ink);
}
.insight-card h3 em { font-style: italic; color: var(--terracotta); }
.insight-card p { margin-top: 14px; color: var(--ink-soft); font-size: 15px; }
.insight-card .more {
  margin-top: 18px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink); display: inline-flex; gap: 10px; align-items: center;
}
.insight-card .more::after { content: "→"; transition: transform var(--t-fast); }
.insight-card:hover .more::after { transform: translateX(4px); }

.span-7 { grid-column: span 7; } .span-5 { grid-column: span 5; }
.span-6 { grid-column: span 6; } .span-4 { grid-column: span 4; } .span-8 { grid-column: span 8; }
.span-3 { grid-column: span 3; } .span-9 { grid-column: span 9; } .span-12 { grid-column: span 12; }

@media (max-width: 1024px) {
  .insights-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .span-3, .span-4, .span-5, .span-6, .span-7, .span-8, .span-9, .span-12 { grid-column: span 1; }
}
@media (max-width: 640px) {
  .insights-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline { position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px; background: var(--rule); transform: translateX(-0.5px);
}
.tl-row {
  display: grid; grid-template-columns: 1fr 80px 1fr;
  gap: 0; padding: 60px 0; align-items: center;
}
.tl-node {
  width: 14px; height: 14px; border-radius: 50%; background: var(--paper);
  border: 1px solid var(--ink); margin: 0 auto; position: relative; z-index: 2;
}
.tl-row.is-active .tl-node { background: var(--terracotta); border-color: var(--terracotta); }
.tl-card {
  padding: 32px clamp(20px, 3vw, 48px); background: var(--paper-soft);
  border: 1px solid var(--rule-soft);
}
.tl-card .yr {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--terracotta);
}
.tl-card h3 {
  margin-top: 14px; font-family: var(--serif); font-weight: 360;
  font-size: clamp(22px, 2.2vw, 32px); letter-spacing: -0.015em; line-height: 1.15;
}
.tl-card p { margin-top: 14px; color: var(--ink-soft); font-size: 15px; line-height: 1.55; }
.tl-row .tl-spacer { display: block; }
.tl-row.right .tl-spacer { grid-column: 1; }
.tl-row.right .tl-card { grid-column: 3; }
.tl-row.left .tl-card { grid-column: 1; }
.tl-row.left .tl-spacer { grid-column: 3; }

@media (max-width: 900px) {
  .timeline::before { left: 20px; }
  .tl-row { grid-template-columns: 40px 1fr; padding: 32px 0; }
  .tl-row.right .tl-card, .tl-row.left .tl-card { grid-column: 2; }
  .tl-row.right .tl-spacer, .tl-row.left .tl-spacer { display: none; }
  .tl-node { margin: 0 auto; width: 12px; height: 12px; }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(160px, 14vw, 220px);
  gap: clamp(12px, 1.6vw, 24px);
}
.gal { position: relative; overflow: hidden; background: var(--paper-deep); }
.gal img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s ease; object-position: center top;
}
.gal:hover img { transform: scale(1.04); }
.gal .lab {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(14,17,22,0.78); color: var(--paper); padding: 8px 12px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
}
.gal-a { grid-column: span 5; grid-row: span 3; }
.gal-b { grid-column: span 7; grid-row: span 2; }
.gal-c { grid-column: span 4; grid-row: span 2; }
.gal-d { grid-column: span 3; grid-row: span 2; }
.gal-e { grid-column: span 5; grid-row: span 2; }
.gal-f { grid-column: span 4; grid-row: span 3; }
.gal-g { grid-column: span 4; grid-row: span 2; }
.gal-h { grid-column: span 4; grid-row: span 2; }
.gal-i { grid-column: span 8; grid-row: span 2; }
.gal-j { grid-column: span 6; grid-row: span 2; }
.gal-k { grid-column: span 6; grid-row: span 2; }
.gal img.center-face { object-position: center 22%; }
.gal img.top-face { object-position: center 14%; }
.gal img.full { object-position: center; }

@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 140px; }
  .gal-a { grid-column: span 6; grid-row: span 3; }
  .gal-b { grid-column: span 6; grid-row: span 2; }
  .gal-c { grid-column: span 3; grid-row: span 2; }
  .gal-d { grid-column: span 3; grid-row: span 2; }
  .gal-e { grid-column: span 6; grid-row: span 2; }
  .gal-f { grid-column: span 6; grid-row: span 3; }
  .gal-g { grid-column: span 3; grid-row: span 2; }
  .gal-h { grid-column: span 3; grid-row: span 2; }
  .gal-i { grid-column: span 6; grid-row: span 2; }
  .gal-j { grid-column: span 6; grid-row: span 2; }
  .gal-k { grid-column: span 6; grid-row: span 2; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-hero {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 96px); align-items: center;
  padding: clamp(80px, 10vw, 140px) 0 clamp(40px, 5vw, 80px);
}
.contact-hero .col-img {
  position: relative; height: clamp(420px, 64vh, 700px); background: var(--paper-deep); overflow: hidden;
}
.contact-hero .col-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.contact-list { border-top: 1px solid var(--rule); }
.contact-list .row {
  display: grid; grid-template-columns: 200px 1fr auto; gap: 32px;
  padding: 28px 0; border-bottom: 1px solid var(--rule); align-items: center;
  transition: background var(--t-fast);
}
.contact-list .row:hover { background: var(--paper-soft); }
.contact-list .row .lbl {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-mute);
}
.contact-list .row .val {
  font-family: var(--serif); font-weight: 360; font-size: clamp(22px, 2vw, 32px); letter-spacing: -0.015em;
}
.contact-list .row .val em { font-style: italic; color: var(--terracotta); }
.contact-list .row .arrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px; color: var(--ink);
}
.contact-list .row .arrow::after { content: "→"; transition: transform var(--t-fast); }
.contact-list .row:hover .arrow::after { transform: translateX(4px); }

.socials {
  display: flex; gap: 10px; flex-wrap: nowrap;
}
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--ink); display: grid; place-items: center;
  transition: var(--t-fast); color: var(--ink); flex-shrink: 0;
}
.socials a:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.socials.dark a { border-color: rgba(242,238,230,0.4); color: var(--paper); }
.socials.dark a:hover { background: var(--terracotta); border-color: var(--terracotta); color: var(--paper); }
.socials svg { width: 15px; height: 15px; }

/* Larger socials (used outside footer, e.g. on contact page) */
.socials.lg { gap: 14px; }
.socials.lg a { width: 52px; height: 52px; }
.socials.lg svg { width: 18px; height: 18px; }

@media (max-width: 900px) {
  .contact-hero { grid-template-columns: 1fr; }
  .contact-list .row { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
  .contact-list .row .arrow { justify-self: start; }
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form-wrap {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(40px, 5vw, 96px);
  align-items: start;
}
.contact-form-intro .eyebrow { display: block; margin-bottom: 18px; }
.contact-form-intro .h2 { margin-bottom: 22px; }
.contact-form-intro p { color: var(--ink-soft); font-size: 16px; line-height: 1.65; max-width: 460px; }
.contact-form-intro .meta {
  margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--rule);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute); line-height: 1.8;
}
.contact-form-intro .meta strong {
  display: block; font-family: var(--serif); font-weight: 380; font-size: 18px;
  letter-spacing: -0.01em; color: var(--ink); text-transform: none; margin-top: 4px;
}

.contact-form { display: grid; gap: 28px; }
.contact-form .row-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.contact-form .field { display: grid; gap: 8px; }
.contact-form label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-mute);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: transparent; border: none;
  border-bottom: 1px solid var(--rule);
  padding: 10px 0 14px; outline: none;
  font-family: var(--serif); font-size: 20px; font-weight: 320;
  letter-spacing: -0.01em; color: var(--ink); width: 100%;
  transition: border-color var(--t-fast);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--ink-mute); font-style: italic; opacity: 0.55;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--terracotta);
}
.contact-form select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%230E1116' stroke-width='1.2' fill='none'/></svg>");
  background-repeat: no-repeat; background-position: right 4px center;
  padding-right: 28px;
}
.contact-form textarea {
  resize: vertical; min-height: 140px; font-family: var(--serif); line-height: 1.5;
}
.contact-form .actions {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  margin-top: 12px; flex-wrap: wrap;
}
.contact-form .consent {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mute); max-width: 360px;
}
.contact-form .submit {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  background: var(--ink); color: var(--paper);
  padding: 16px 28px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 12px;
  transition: var(--t-fast); cursor: pointer;
}
.contact-form .submit:hover { background: var(--terracotta); transform: translateY(-1px); }
.contact-form .submit svg { transition: transform var(--t-fast); }
.contact-form .submit:hover svg { transform: translateX(4px); }
.contact-form .form-msg {
  margin-top: 14px; min-height: 22px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute);
}
.contact-form .form-msg.ok { color: var(--terracotta); }

@media (max-width: 900px) {
  .contact-form-wrap { grid-template-columns: 1fr; }
  .contact-form .row-2 { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink); color: var(--paper);
  padding: clamp(60px, 7vw, 120px) 0 32px;
}
.footer-mark {
  display: grid; grid-template-columns: 1fr auto; gap: 32px;
  padding-bottom: clamp(40px, 5vw, 80px); border-bottom: 1px solid rgba(242,238,230,0.15);
  align-items: end;
}
.footer-mark .name {
  font-family: var(--serif); font-weight: 280; line-height: 0.92;
  font-size: clamp(54px, 9vw, 140px); letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144;
}
.footer-mark .name em { font-style: italic; color: var(--terracotta); font-weight: 280; }
.footer-mark .meta {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(242,238,230,0.55); text-align: right; line-height: 1.8;
}

.footer-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: clamp(24px, 3vw, 56px);
  padding: clamp(40px, 5vw, 64px) 0;
}
.footer-grid h4 {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(242,238,230,0.5); margin-bottom: 22px;
}
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-grid ul a {
  font-family: var(--serif); font-size: 18px; font-weight: 360; color: var(--paper);
  letter-spacing: -0.01em; transition: color var(--t-fast);
}
.footer-grid ul a:hover { color: var(--terracotta); }
.footer-grid p { color: rgba(242,238,230,0.7); font-size: 15px; line-height: 1.6; }
.footer-grid .credit a { color: rgba(242,238,230,0.7); }
.footer-grid .credit a:hover { color: var(--terracotta); }
.footer-grid .credit em { font-style: italic; color: var(--terracotta); }

.footer-bottom {
  padding-top: 28px; border-top: 1px solid rgba(242,238,230,0.15);
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; align-items: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(242,238,230,0.5);
}
.footer-bottom .center { text-align: center; }
.footer-bottom .right { text-align: right; }
.footer-bottom a:hover { color: var(--terracotta); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-mark { grid-template-columns: 1fr; }
  .footer-mark .meta { text-align: left; }
  .footer-bottom { grid-template-columns: 1fr; gap: 16px; text-align: left; }
  .footer-bottom .center, .footer-bottom .right { text-align: left; }
}

/* ============================================================
   BIO LONG-FORM
   ============================================================ */
.bio-long { display: grid; grid-template-columns: 280px 1fr; gap: clamp(40px, 6vw, 96px); }
.bio-long .side {
  position: sticky; top: 110px; align-self: start;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-mute);
}
.bio-long .side .pill {
  display: inline-block; padding: 6px 12px; border: 1px solid var(--rule);
  border-radius: 999px; margin-right: 6px; margin-bottom: 6px; color: var(--ink-soft);
}
.bio-long article p {
  font-family: var(--serif); font-weight: 320; font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55; color: var(--ink-soft); margin-bottom: 22px;
}
.bio-long article p strong { font-weight: 480; color: var(--ink); }
.bio-long article p em { font-style: italic; color: var(--terracotta); }
.bio-long article h3 {
  font-family: var(--serif); font-weight: 360;
  font-size: clamp(28px, 3vw, 40px); line-height: 1.1; letter-spacing: -0.02em;
  margin: 56px 0 24px; color: var(--ink);
}
.bio-long article h3 em { font-style: italic; color: var(--terracotta); }
.bio-long article .pull {
  font-family: var(--serif); font-style: italic; font-weight: 280;
  font-size: clamp(28px, 3.4vw, 44px); line-height: 1.18; letter-spacing: -0.02em;
  color: var(--ink); padding: 32px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  margin: 32px 0;
}
@media (max-width: 900px) { .bio-long { grid-template-columns: 1fr; } .bio-long .side { position: static; } }

/* ============================================================
   PAGE HEAD  ·  for sub-pages
   ============================================================ */
.page-head {
  padding: clamp(80px, 10vw, 160px) 0 clamp(60px, 7vw, 120px);
  border-bottom: 1px solid var(--rule);
}
.page-head .crumb {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 36px;
}
.page-head .crumb span { color: var(--terracotta); }
.page-head .title {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 4vw, 80px); align-items: end;
}
.page-head .title h1 {
  font-family: var(--serif); font-weight: 280;
  font-size: clamp(48px, 8vw, 140px); line-height: 0.92; letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144;
}
.page-head .title h1 em { font-style: italic; color: var(--terracotta); font-weight: 280; }
.page-head .title .lead { color: var(--ink-soft); }
@media (max-width: 900px) { .page-head .title { grid-template-columns: 1fr; } }

/* ============================================================
   UTILITIES
   ============================================================ */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity var(--t-slow), transform var(--t-slow); }
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

.hidden { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

::selection { background: var(--terracotta); color: var(--paper); }

/* ----------  Print (basic)  ---------- */
@media print {
  .nav, .footer, .gate, .mobile-menu { display: none !important; }
  body { background: white; color: black; }
}
