/* ─────────────────────────────────────────────
   DPNL homepage — "Studio" direction · Navy & Sun
   Warm cream paper, deep navy ink, solar-yellow accent.
   Gradient navy anchors the featured block + footer;
   the Speaking strip is a full yellow band. Italic
   Instrument Serif display, Inter Tight body,
   JetBrains Mono labels. Self-contained (standalone
   homepage, not base.html chrome).
   ───────────────────────────────────────────── */

:root {
  --st-bg:           #f0e7cf;   /* warm cream paper */
  --st-ink:          #0d1b3d;   /* deep navy */
  --st-ink2:         #3e4a6e;   /* muted navy text */
  --st-ink3:         #a39067;   /* warm tertiary on cream */
  --st-accent:       #e8b81e;   /* solar yellow (surfaces / on-dark text) */
  --st-accent-text:  #7d5d12;   /* amber, readable on cream */
  --st-on-accent:    #0d1b3d;   /* navy text on a yellow surface */
  --st-dark:         linear-gradient(155deg, #050d24 0%, #0e2055 55%, #1a3578 100%);
  --st-on-dark:      #f1e7cf;   /* cream on navy */
  --st-card:         #e2d6b3;
  --st-rule:         #c9b88a;
  --st-on-yellow-rule: rgba(13,27,61,0.18);

  --st-display: "Instrument Serif", "Newsreader", Georgia, serif;
  --st-sans:    "Inter Tight", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --st-mono:    "JetBrains Mono", ui-monospace, monospace;

  --st-pad: clamp(20px, 5vw, 56px);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.st-body {
  margin: 0;
  background: var(--st-bg);
  color: var(--st-ink);
  font-family: var(--st-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.st-page { min-height: 100%; overflow-x: hidden; }

a { color: inherit; }

/* ── Mono label ─────────────────────────────── */
.st-mono {
  font-family: var(--st-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--st-ink2);
  font-weight: 500;
}
.st-mono.sm { font-size: 10px; }
.st-mono.xs { font-size: 9px; }
.st-dim { opacity: 0.6; }
.st-mono.on-dark   { color: var(--st-on-dark); }
.st-mono.on-accent { color: var(--st-on-accent); }
.st-mono.yellow    { color: var(--st-accent); }
.st-mono.amber     { color: var(--st-accent-text); }
.st-mono.ink3      { color: var(--st-ink3); }

/* Yellow marker highlight behind display words */
.st-mark {
  background: var(--st-accent);
  color: var(--st-on-accent);
  padding: 0 0.12em 0.05em;
  display: inline-block;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  font-style: italic;
}

/* ── Yellow ribbon strip ────────────────────── */
.st-strip {
  background: var(--st-accent);
  color: var(--st-on-accent);
  padding: 10px var(--st-pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.st-strip .st-mono { color: var(--st-on-accent); }

/* ── Header / nav ───────────────────────────── */
.st-header {
  padding: 24px var(--st-pad) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.st-brand { display: flex; align-items: baseline; gap: 12px; }
.st-brand-name {
  font-family: var(--st-display);
  font-style: italic;
  font-size: 26px;
  letter-spacing: -0.02em;
  line-height: 1;
  text-decoration: none;
  color: var(--st-ink);
}
.st-nav { display: flex; gap: 26px; flex-wrap: wrap; }
.st-nav a {
  font-size: 14px;
  color: var(--st-ink);
  text-decoration: none;
  font-weight: 500;
}
.st-nav a:hover { color: var(--st-accent-text); }
.st-nav .num {
  color: var(--st-ink3);
  margin-right: 6px;
  font-family: var(--st-mono);
  font-size: 11px;
}

/* ── Hero ───────────────────────────────────── */
.st-hero { padding: 60px var(--st-pad) 40px; }
.st-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
  gap: 48px;
  align-items: end;
}
.st-h1 {
  margin: 16px 0 0;
  font-family: var(--st-display);
  font-size: clamp(56px, 12vw, 168px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.86;
  color: var(--st-ink);
}
.st-lede {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 18px;
  max-width: 620px;
}
.st-lede-bar {
  background: var(--st-accent);
  width: 4px;
  margin-top: 8px;
  margin-left: 4px;
}
.st-lede p {
  margin: 0;
  font-size: 19px;
  line-height: 1.55;
  color: var(--st-ink);
  text-wrap: pretty;
}

/* Portrait card (tilted, gradient navy mount) */
.st-portrait-wrap { position: relative; }
.st-portrait {
  transform: rotate(2.5deg);
  transform-origin: bottom right;
  background: var(--st-dark);
  padding: 10px;
  box-shadow: 0 24px 60px -20px rgba(5,10,30,0.45),
              0 6px 18px -6px rgba(5,10,30,0.25);
}
.st-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  background: var(--st-bg);
}
.st-portrait-cap {
  padding: 12px 6px 4px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  color: var(--st-on-dark);
}
.st-portrait-cap .name {
  font-family: var(--st-display);
  font-style: italic;
  font-size: 18px;
}

/* Stat strip — navy numbers with yellow underline-swatch */
.st-stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--st-rule);
  border-bottom: 1px solid var(--st-rule);
}
.st-stat {
  padding: 22px;
  border-right: 1px solid var(--st-rule);
}
.st-stat:last-child { border-right: none; }
.st-stat .big {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  font-family: var(--st-display);
  font-style: italic;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--st-ink);
}
.st-stat .big::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60%;
  height: 6px;
  background: var(--st-accent);
  opacity: 0.85;
  z-index: -1;
}
.st-stat .small { margin-top: 12px; display: block; }

/* ── Section scaffolding ────────────────────── */
.st-section { padding: 64px var(--st-pad) 56px; }
.st-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.st-section-head h2 {
  margin: 10px 0 0;
  font-family: var(--st-display);
  font-style: italic;
  font-size: clamp(42px, 6.5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--st-ink);
}
.st-link {
  font-size: 14px;
  color: var(--st-accent-text);
  text-decoration: underline;
  text-underline-offset: 5px;
  font-weight: 600;
  white-space: nowrap;
}
.st-section-blurb {
  max-width: 340px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--st-ink2);
  margin: 0;
  text-wrap: pretty;
}

/* ── Articles ───────────────────────────────── */
.st-articles-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 28px;
}
.st-featured {
  display: flex;
  flex-direction: column;
  background: var(--st-dark);
  color: var(--st-on-dark);
  padding: 40px 40px 36px;
  text-decoration: none;
  min-height: 520px;
  overflow: hidden;
}
.st-featured .meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.st-featured h3 {
  margin: 80px 0 24px;
  font-family: var(--st-display);
  font-style: italic;
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.98;
  text-wrap: balance;
  color: var(--st-on-dark);
}
.st-featured p {
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 40px;
  max-width: 520px;
  opacity: 0.85;
  text-wrap: pretty;
}
.st-read-btn {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--st-accent);
  color: var(--st-on-accent);
  font-family: var(--st-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.st-article-col {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 28px;
}
.st-mini {
  display: block;
  background: var(--st-card);
  color: var(--st-ink);
  padding: 26px 28px 24px;
  text-decoration: none;
  border: 1px solid var(--st-rule);
}
.st-mini .meta { display: flex; justify-content: space-between; gap: 12px; }
.st-mini h3 {
  margin: 18px 0 12px;
  font-family: var(--st-display);
  font-style: italic;
  font-size: clamp(24px, 3.4vw, 30px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-wrap: balance;
  color: var(--st-ink);
}
.st-mini p {
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
  color: var(--st-ink2);
  text-wrap: pretty;
}

/* ── Speaking — full yellow band ────────────── */
.st-speaking {
  padding: 64px 0;
  background: var(--st-accent);
  color: var(--st-on-accent);
}
.st-speaking-head {
  padding: 0 var(--st-pad);
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.st-speaking-head h2 {
  margin: 10px 0 0;
  font-family: var(--st-display);
  font-style: italic;
  font-size: clamp(42px, 6.5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--st-on-accent);
}
.st-speaking-head .st-mono { color: var(--st-on-accent); }
.st-speaking-head .st-link { color: var(--st-on-accent); }
.st-venues {
  display: flex;
  border-top: 1px solid var(--st-on-yellow-rule);
  border-bottom: 1px solid var(--st-on-yellow-rule);
}
.st-venue {
  flex: 1 1 0;
  min-width: 0;
  padding: 32px 24px;
  border-right: 1px solid var(--st-on-yellow-rule);
}
.st-venue:last-child { border-right: none; }
.st-venue .st-mono { color: var(--st-on-accent); }
.st-venue .name {
  margin-top: 18px;
  font-family: var(--st-display);
  font-style: italic;
  font-size: 26px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--st-on-accent);
  text-wrap: balance;
}

/* ── Ventures — three treatments ────────────── */
.st-ventures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.st-venture {
  display: flex;
  flex-direction: column;
  padding: 26px 26px 24px;
  text-decoration: none;
  gap: 16px;
  min-height: 320px;
}
.st-venture h3 {
  margin: 16px 0 0;
  font-family: var(--st-display);
  font-style: italic;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  text-wrap: balance;
}
.st-venture p {
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
  flex: 1;
  text-wrap: pretty;
}
.st-venture .meta { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }

/* v0 — cream card */
.st-venture.v0 { background: var(--st-card); border: 1px solid var(--st-rule); color: var(--st-ink); }
.st-venture.v0 .label { color: var(--st-accent-text); }
.st-venture.v0 .sub,
.st-venture.v0 p { color: var(--st-ink2); }
/* v1 — solid yellow */
.st-venture.v1 { background: var(--st-accent); color: var(--st-on-accent); }
.st-venture.v1 .label { color: var(--st-on-accent); }
.st-venture.v1 .sub,
.st-venture.v1 p { color: rgba(13,27,61,0.7); }
/* v2 — gradient navy */
.st-venture.v2 { background: var(--st-dark); color: var(--st-on-dark); }
.st-venture.v2 .label { color: var(--st-accent); }
.st-venture.v2 .sub,
.st-venture.v2 p { color: rgba(241,231,207,0.78); }

/* ── Footer — gradient navy ─────────────────── */
.st-footer {
  padding: 56px var(--st-pad) 48px;
  background: var(--st-dark);
  color: var(--st-on-dark);
}
.st-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.st-footer-mark {
  font-family: var(--st-display);
  font-style: italic;
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--st-on-dark);
}
.st-footer-col ul { list-style: none; padding: 0; margin: 14px 0 0; }
.st-footer-col li { margin-bottom: 8px; }
.st-footer-col .st-mono { color: var(--st-accent); }
.st-footer-col a {
  font-family: var(--st-display);
  font-style: italic;
  font-size: 22px;
  color: var(--st-on-dark);
  text-decoration: none;
}
.st-footer-col a:hover { color: var(--st-accent); }

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .st-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .st-portrait-wrap { max-width: 360px; }
  .st-articles-grid { grid-template-columns: 1fr; }
  .st-featured { min-height: 0; }
  .st-featured h3 { margin-top: 40px; }
}

@media (max-width: 900px) {
  .st-ventures-grid { grid-template-columns: 1fr; }
  .st-venue .name { font-size: 22px; }
  .st-footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 720px) {
  .st-strip { flex-direction: column; align-items: flex-start; gap: 4px; }
  .st-venues { flex-wrap: wrap; }
  .st-venue {
    flex: 1 1 50%;
    border-bottom: 1px solid var(--st-on-yellow-rule);
  }
}

@media (max-width: 560px) {
  .st-stats { grid-template-columns: repeat(2, 1fr); }
  .st-stat:nth-child(2) { border-right: none; }
  .st-stat:nth-child(1), .st-stat:nth-child(2) { border-bottom: 1px solid var(--st-rule); }
  .st-venue { flex-basis: 100%; border-right: none; }
  .st-featured { padding: 28px 24px; }
}

/* ═══════════════════════════════════════════════
   INNER PAGES
   ═══════════════════════════════════════════════ */

/* Nav active-page yellow underline swatch */
.st-nav .label.active {
  background-image: linear-gradient(transparent 58%, var(--st-accent) 58%);
  padding: 0 3px;
}

/* Footer mailto */
.st-footer-mail {
  font-family: var(--st-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--st-accent);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
}

/* ── Shared page header ─────────────────────── */
.st-pagehead {
  padding: 72px var(--st-pad) 56px;
  border-bottom: 1px solid var(--st-rule);
}
.st-pagehead h1 {
  margin: 14px 0 0;
  font-family: var(--st-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(56px, 11vw, 144px);
  letter-spacing: -0.03em;
  line-height: 0.88;
  color: var(--st-ink);
  text-wrap: balance;
}
.st-pagehead .lede {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 18px;
  max-width: 760px;
}
.st-pagehead .lede .bar { background: var(--st-accent); width: 4px; margin-top: 8px; margin-left: 4px; }
.st-pagehead .lede p { margin: 0; font-size: 20px; line-height: 1.5; color: var(--st-ink); text-wrap: pretty; }

/* Accent-bar paragraph (reusable) */
.st-accentbar { display: grid; grid-template-columns: 12px 1fr; gap: 18px; max-width: 620px; }
.st-accentbar .bar { background: var(--st-accent); width: 4px; margin-top: 8px; margin-left: 4px; }

/* ── Long-form prose (about, article body) ──── */
.st-prose { max-width: 760px; }
.st-prose p, .st-prose li {
  font-size: 18px;
  line-height: 1.75;
  color: var(--st-ink2);
  text-wrap: pretty;
}
.st-prose p { margin: 0 0 1.2em; }
.st-prose > :first-child { margin-top: 0; }
.st-prose h2 {
  font-family: var(--st-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--st-ink);
  margin: 48px 0 20px;
}
.st-prose h3 {
  font-family: var(--st-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--st-ink);
  margin: 32px 0 14px;
}
.st-prose a { color: var(--st-accent-text); text-decoration: underline; text-underline-offset: 3px; }
.st-prose strong { color: var(--st-ink); font-weight: 600; }
.st-prose em { font-style: italic; }
.st-prose ul, .st-prose ol { margin: 0 0 1.2em; padding-left: 1.3em; }
.st-prose li { margin-bottom: 0.5em; }
.st-prose blockquote {
  margin: 1.4em 0;
  padding-left: 18px;
  border-left: 4px solid var(--st-accent);
  font-family: var(--st-display);
  font-style: italic;
  font-size: 24px;
  line-height: 1.3;
  color: var(--st-ink);
}

/* ── Articles: filter chips ─────────────────── */
.st-filters {
  padding: 28px var(--st-pad);
  border-bottom: 1px solid var(--st-rule);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.st-chip-row { display: flex; gap: 8px; flex-wrap: wrap; }
.st-chip {
  border: 1px solid var(--st-rule);
  background: transparent;
  color: var(--st-ink);
  padding: 8px 14px;
  font-family: var(--st-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: background .15s, color .15s, border-color .15s;
}
.st-chip:hover { border-color: var(--st-ink); }
.st-chip.active { background: var(--st-ink); color: var(--st-bg); border-color: var(--st-ink); }

/* ── Articles: wide featured block ──────────── */
.st-feat-wide {
  margin: 56px var(--st-pad) 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  background: var(--st-dark);
  color: var(--st-on-dark);
  text-decoration: none;
  min-height: 380px;
}
.st-feat-wide .body { padding: 44px 44px 40px; display: flex; flex-direction: column; }
.st-feat-wide .meta { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.st-feat-wide h2 {
  margin: auto 0 0;
  padding-top: 60px;
  font-family: var(--st-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.025em;
  line-height: 0.98;
  color: var(--st-on-dark);
  text-wrap: balance;
}
.st-feat-wide p { margin: 22px 0 0; font-size: 17px; line-height: 1.55; max-width: 560px; opacity: 0.85; text-wrap: pretty; }
.st-feat-wide .aside {
  padding: 40px;
  border-left: 1px solid var(--st-on-yellow-rule);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  background: radial-gradient(circle at 30% 20%, rgba(232,184,30,0.16), transparent 55%);
}
.st-feat-wide .aside .excerpt {
  margin-top: 18px;
  font-family: var(--st-display);
  font-style: italic;
  font-size: 24px;
  line-height: 1.25;
  color: var(--st-on-dark);
  text-wrap: pretty;
}

/* ── Articles: archive rows ─────────────────── */
.st-archive { border-top: 1px solid var(--st-rule); margin-top: 24px; }
.st-archive-row {
  display: grid;
  grid-template-columns: 120px 1.6fr 1fr 96px;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--st-rule);
  color: var(--st-ink);
  text-decoration: none;
  align-items: start;
}
.st-archive-row h3 {
  margin: 0;
  font-family: var(--st-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--st-ink);
  text-wrap: balance;
}
.st-archive-row .dek { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--st-ink2); text-wrap: pretty; }
.st-archive-row .right { text-align: right; }
.st-archive-row:hover h3 { color: var(--st-accent-text); }

/* ── Subscribe band (yellow) ────────────────── */
.st-subscribe {
  background: var(--st-accent);
  color: var(--st-on-accent);
  padding: 56px var(--st-pad);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.st-subscribe .st-mono { color: var(--st-on-accent); }
.st-subscribe h2 {
  margin: 10px 0 0;
  font-family: var(--st-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--st-on-accent);
}
.st-subscribe p { margin: 18px 0 0; font-size: 17px; line-height: 1.55; color: var(--st-on-accent); max-width: 520px; text-wrap: pretty; }
.st-subscribe form { display: flex; align-items: stretch; background: var(--st-on-accent); padding: 6px; }
.st-subscribe input {
  flex: 1; min-width: 0; padding: 12px 14px; border: none; outline: none;
  background: transparent; color: var(--st-bg);
  font-family: var(--st-sans); font-size: 15px;
}
.st-subscribe input::placeholder { color: rgba(240,231,207,0.6); }
.st-subscribe button {
  background: var(--st-accent); color: var(--st-on-accent); border: none;
  padding: 10px 22px; font-family: var(--st-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; cursor: pointer;
}
.st-subscribe .confirm { font-family: var(--st-display); font-style: italic; font-size: 22px; color: var(--st-on-accent); }

/* ── Services / topics cards ────────────────── */
.st-cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.st-card {
  padding: 32px 32px 28px;
  background: var(--st-card);
  border: 1px solid var(--st-rule);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.st-card .meta { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.st-card h3 {
  margin: 0;
  font-family: var(--st-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--st-ink);
}
.st-card p { margin: 0; font-size: 15.5px; line-height: 1.55; color: var(--st-ink2); flex: 1; text-wrap: pretty; }
.st-card ul { margin: 0; padding-left: 1.1em; }
.st-card ul li { font-size: 14.5px; line-height: 1.7; color: var(--st-ink2); }
.st-card .foot {
  padding-top: 16px;
  border-top: 1px solid var(--st-rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Testimonial quotes ─────────────────────── */
.st-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.st-quote {
  margin: 0;
  padding: 28px 28px 26px;
  background: var(--st-card);
  color: var(--st-ink);
  border: 1px solid var(--st-rule);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 240px;
}
.st-quote blockquote {
  margin: 0;
  font-family: var(--st-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.25;
  flex: 1;
  text-wrap: pretty;
}
.st-quote .who { color: var(--st-accent-text); }
.st-quote.dark { background: var(--st-dark); color: var(--st-on-dark); border: none; }
.st-quote.dark .who { color: var(--st-accent); }
.st-quote.yellow { background: var(--st-accent); color: var(--st-on-accent); border: none; }
.st-quote.yellow .who { color: var(--st-on-accent); opacity: 0.8; }

/* ── Gradient-navy CTA block ────────────────── */
.st-cta {
  margin: 64px var(--st-pad) 80px;
  background: var(--st-dark);
  color: var(--st-on-dark);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
}
.st-cta h2 {
  margin: 14px 0 0;
  font-family: var(--st-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 76px);
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--st-on-dark);
}
.st-cta p { margin: 24px 0 0; font-size: 17px; line-height: 1.55; opacity: 0.88; max-width: 540px; text-wrap: pretty; }
.st-cta-card { background: rgba(241,231,207,0.06); padding: 24px; border: 1px solid var(--st-on-yellow-rule); }
.st-cta-card .mail {
  font-family: var(--st-display);
  font-style: italic;
  font-size: 28px;
  color: var(--st-on-dark);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.st-cta-meta {
  margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--st-on-yellow-rule);
  display: grid; grid-template-columns: auto 1fr; row-gap: 10px; column-gap: 18px; font-size: 13px;
}
.st-cta-meta .v { color: var(--st-on-dark); opacity: 0.85; }

/* ── Speaking: venue groups ─────────────────── */
.st-vgroup { margin-bottom: 40px; }
.st-vgroup h3 {
  font-family: var(--st-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--st-ink);
  margin: 0 0 14px;
}
.st-vlist { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--st-rule); }
.st-vlist li {
  padding: 16px 0;
  border-bottom: 1px solid var(--st-rule);
  font-size: 17px;
  line-height: 1.45;
  color: var(--st-ink);
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  align-items: baseline;
}
.st-vlist li .st-mono { color: var(--st-accent-text); }

/* ── Projects: venture panels ───────────────── */
.st-vpanel { padding: 80px var(--st-pad); border-bottom: 1px solid var(--st-rule); }
.st-vpanel.dark { background: var(--st-dark); color: var(--st-on-dark); border-bottom: 1px solid var(--st-on-yellow-rule); }
.st-vpanel.yellow { background: var(--st-accent); color: var(--st-on-accent); border-bottom: 1px solid rgba(13,27,61,0.18); }
.st-vpanel.cream { background: var(--st-bg); color: var(--st-ink); }
.st-vpanel-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: start; }
.st-vpanel h2 {
  margin: 16px 0 0;
  font-family: var(--st-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(44px, 6.5vw, 84px);
  letter-spacing: -0.03em;
  line-height: 0.92;
}
.st-vpanel .desc { margin: 28px 0 0; font-size: 19px; line-height: 1.55; max-width: 580px; text-wrap: pretty; }
.st-vpanel.cream .desc { color: var(--st-ink2); }
.st-vpanel.dark .desc { color: rgba(241,231,207,0.85); }
.st-vpanel.yellow .desc { color: rgba(13,27,61,0.78); }
.st-vpanel .visit {
  margin-top: 32px; display: inline-flex; align-items: center; gap: 10px; padding: 12px 22px;
  text-decoration: none; font-family: var(--st-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
}
.st-vpanel.cream .visit { background: var(--st-ink); color: var(--st-bg); }
.st-vpanel.dark .visit { background: var(--st-accent); color: var(--st-on-accent); }
.st-vpanel.yellow .visit { background: var(--st-ink); color: var(--st-on-dark); }
.st-vpanel .detail {
  padding: 28px;
  background: var(--st-card);
  border: 1px solid var(--st-rule);
}
.st-vpanel.dark .detail { background: rgba(241,231,207,0.07); border: 1px solid var(--st-on-yellow-rule); }
.st-vpanel.yellow .detail { background: rgba(13,27,61,0.08); border: 1px solid rgba(13,27,61,0.18); }
.st-vpanel .detail .tag { margin-top: 10px; font-size: 15px; line-height: 1.6; }

/* ── About: hero + facts + name story ───────── */
.st-about-hero {
  padding: 72px var(--st-pad) 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
.st-about-portrait {
  transform: rotate(-1.5deg);
  transform-origin: top right;
  background: var(--st-dark);
  padding: 10px;
  box-shadow: 0 24px 60px -20px rgba(5,10,30,0.4), 0 6px 18px -6px rgba(5,10,30,0.2);
}
.st-about-portrait img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; background: var(--st-bg); }
.st-about-portrait .cap { padding: 12px 6px 4px; display: flex; justify-content: space-between; align-items: baseline; color: var(--st-on-dark); }
.st-about-portrait .cap .name { font-family: var(--st-display); font-style: italic; font-size: 18px; }
.st-about-note { margin-top: 16px; font-size: 13px; font-family: var(--st-display); font-style: italic; color: var(--st-ink2); line-height: 1.5; }
.st-facts {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--st-rule);
  border-bottom: 1px solid var(--st-rule);
}
.st-facts .f { padding: 22px; border-right: 1px solid var(--st-rule); }
.st-facts .f:last-child { border-right: none; }
.st-facts .f .big {
  font-family: var(--st-display); font-style: italic;
  font-size: clamp(24px, 2.8vw, 34px); letter-spacing: -0.02em; line-height: 1; color: var(--st-ink);
}
.st-facts .f .small { margin-top: 12px; display: block; }
.st-namestory {
  margin: 56px var(--st-pad) 64px;
  background: var(--st-accent);
  color: var(--st-on-accent);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}
.st-namestory .st-mono { color: var(--st-on-accent); }
.st-namestory h2 {
  margin: 10px 0 0;
  font-family: var(--st-display); font-style: italic; font-weight: 400;
  font-size: clamp(36px, 5vw, 64px); letter-spacing: -0.03em; line-height: 0.95; color: var(--st-on-accent);
}
.st-namestory p { margin: 0; font-size: 18px; line-height: 1.65; color: var(--st-on-accent); text-wrap: pretty; }

/* "Where you'll find me" trio */
.st-where { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.st-where .c {
  padding: 26px; background: var(--st-card); border: 1px solid var(--st-rule);
  min-height: 200px; display: flex; flex-direction: column; gap: 14px;
}
.st-where .c.dark { background: var(--st-dark); color: var(--st-on-dark); border: none; }
.st-where .c h3 {
  margin: 0; font-family: var(--st-display); font-style: italic; font-weight: 400;
  font-size: clamp(22px, 2.8vw, 30px); letter-spacing: -0.02em; line-height: 1.05; color: var(--st-ink);
}
.st-where .c.dark h3 { color: var(--st-on-dark); }
.st-where .c p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--st-ink2); text-wrap: pretty; }
.st-where .c.dark p { color: rgba(241,231,207,0.85); }
.st-where .c .st-mono { color: var(--st-accent-text); }
.st-where .c.dark .st-mono { color: var(--st-accent); }

/* ── Article detail extras ──────────────────── */
.st-article-hero { margin: 0 var(--st-pad) 0; }
.st-article-hero img { width: 100%; max-height: 460px; object-fit: cover; display: block; border: 1px solid var(--st-rule); }
.st-article-body { padding: 48px var(--st-pad) 24px; }
.st-block {
  margin: 24px var(--st-pad) 0;
  padding: 32px;
  border: 1px solid var(--st-rule);
  background: var(--st-card);
}
.st-block.dark { background: var(--st-dark); color: var(--st-on-dark); border: none; }
.st-block .st-read-btn { cursor: pointer; border: none; }
.st-thumbs { margin: 24px var(--st-pad) 0; display: flex; align-items: center; gap: 14px; }
.st-thumbs-btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px;
  background: transparent; border: 1px solid var(--st-rule); color: var(--st-ink);
  font-family: var(--st-mono); font-size: 12px; cursor: pointer;
}
.st-cta-inline {
  margin: 48px var(--st-pad) 0;
  padding: 32px;
  background: var(--st-dark);
  color: var(--st-on-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.st-cta-inline a {
  padding: 10px 18px; background: var(--st-accent); color: var(--st-on-accent);
  text-decoration: none; font-family: var(--st-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
}

/* ── 404 ────────────────────────────────────── */
.st-404 { padding: 96px var(--st-pad); text-align: center; }
.st-404 h1 {
  font-family: var(--st-display); font-style: italic; font-weight: 400;
  font-size: clamp(72px, 14vw, 180px); letter-spacing: -0.03em; line-height: 0.9; color: var(--st-ink); margin: 14px 0 0;
}
.st-404 p { margin: 24px auto 28px; max-width: 480px; font-size: 18px; line-height: 1.55; color: var(--st-ink2); }
.st-btn-dark {
  display: inline-flex; padding: 12px 22px; background: var(--st-ink); color: var(--st-bg);
  text-decoration: none; font-family: var(--st-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
}

/* center helper */
.st-center { text-align: center; }
.st-center .st-section-blurb,
.st-center h2 { margin-left: auto; margin-right: auto; }

/* ── Inner-page responsive ──────────────────── */
@media (max-width: 1024px) {
  .st-feat-wide { grid-template-columns: 1fr; }
  .st-feat-wide .aside { border-left: none; border-top: 1px solid var(--st-on-yellow-rule); }
  .st-feat-wide h2 { padding-top: 40px; }
  .st-cta, .st-subscribe { grid-template-columns: 1fr; gap: 32px; }
  .st-about-hero { grid-template-columns: 1fr; gap: 40px; }
  .st-about-portrait { max-width: 360px; }
  .st-vpanel-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .st-cards-2 { grid-template-columns: 1fr; }
  .st-quotes { grid-template-columns: 1fr; }
  .st-where { grid-template-columns: 1fr; }
  .st-namestory { grid-template-columns: 1fr; gap: 24px; }
  .st-facts { grid-template-columns: 1fr; }
  .st-facts .f { border-right: none; border-bottom: 1px solid var(--st-rule); }
  .st-facts .f:last-child { border-bottom: none; }
}
@media (max-width: 760px) {
  .st-archive-row { grid-template-columns: 1fr; gap: 8px; }
  .st-archive-row .right { text-align: left; }
}
