:root {
  --paper: #f4efe6;
  --paper-warm: #ebe3d5;
  --paper-deep: #e0d6c2;
  --ink: #1a1714;
  --ink-soft: #2e2825;
  --muted: #6b5f4f;
  --rule: #c9bda6;
  --accent: #8b3a1f;
  --accent-deep: #6e2c14;
  --gold: #a88a3e;
  --max: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: var(--ink); color: var(--paper); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* shared image treatment */
.photo {
  position: relative;
  overflow: hidden;
  background: var(--paper-deep);
}
.photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1200ms cubic-bezier(.16,1,.3,1);
  filter: saturate(0.85) contrast(1.02);
}
.photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(139,58,31,0.10), rgba(20,23,20,0.18));
  mix-blend-mode: multiply;
  pointer-events: none;
}
.photo:hover img { transform: scale(1.04); }
.photo .cap {
  position: absolute;
  left: 14px; bottom: 14px;
  z-index: 2;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.92);
  background: rgba(20,23,20,0.55);
  padding: 6px 10px;
  backdrop-filter: blur(4px);
}

/* progress */
.progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; background: transparent; z-index: 200;
}
.progress > span {
  display: block; height: 100%; width: 0;
  background: var(--accent); transition: width 80ms linear;
}

/* masthead */
header.masthead {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(244,239,230,0.96), rgba(244,239,230,0.7) 70%, rgba(244,239,230,0));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: padding 280ms ease, background 280ms ease;
}
header.masthead.over-dark {
  background: linear-gradient(to bottom, rgba(20,23,20,0.55), rgba(20,23,20,0.2) 70%, rgba(20,23,20,0));
}
header.masthead.over-dark .mark,
header.masthead.over-dark nav.primary a { color: var(--paper); }
header.masthead.over-dark .mark .glyph { background: var(--paper); color: var(--ink); border-color: var(--paper); }
header.masthead.over-dark .mark .sep,
header.masthead.over-dark .mark .place { color: rgba(244,239,230,0.7); }
header.masthead.condensed { padding-top: 12px; padding-bottom: 12px; }

.mark {
  display: flex; align-items: center; gap: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  font-family: "Inter", sans-serif;
  font-size: 11px; color: var(--ink);
  transition: color 280ms ease;
}
.mark .glyph {
  width: 30px; height: 30px;
  border: 1px solid var(--ink);
  display: grid; place-items: center;
  font-family: "Fraunces", serif;
  font-style: italic; font-size: 18px;
  background: var(--ink); color: var(--paper);
  transition: background 280ms ease, color 280ms ease, border-color 280ms ease;
}
.mark .name { font-weight: 600; }
.mark .sep, .mark .place { color: var(--muted); transition: color 280ms ease; }

nav.primary {
  display: flex; gap: 28px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
nav.primary a {
  position: relative; padding: 4px 0;
  color: var(--ink); opacity: 0.7;
  transition: opacity 200ms ease, color 280ms ease;
}
nav.primary a:hover, nav.primary a.active { opacity: 1; }
nav.primary a.active::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--accent);
}
.nav-toggle { display: none; }

@media (max-width: 860px) {
  nav.primary { display: none; }
  nav.primary.open {
    display: flex;
    position: fixed;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    padding: 24px var(--gutter);
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    gap: 18px;
  }
  .nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 36px; height: 36px;
    border: 1px solid currentColor;
    background: transparent;
    cursor: pointer;
    color: var(--ink);
  }
  header.masthead.over-dark .nav-toggle { color: var(--paper); }
  .nav-toggle span {
    display: block; width: 16px; height: 1px;
    background: currentColor; position: relative;
  }
  .nav-toggle span::before, .nav-toggle span::after {
    content: ""; position: absolute; left: 0; width: 16px; height: 1px; background: currentColor;
  }
  .nav-toggle span::before { top: -5px; }
  .nav-toggle span::after { top: 5px; }
}

/* dot nav (per-page in-section) */
.dotnav {
  position: fixed;
  right: 28px; top: 50%;
  transform: translateY(-50%);
  z-index: 80;
  display: flex; flex-direction: column;
  gap: 14px;
}
.dotnav a {
  display: flex; align-items: center; gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.dotnav a .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rule);
  transition: all 220ms ease;
}
.dotnav a .label {
  opacity: 0;
  transform: translateX(-6px);
  transition: all 220ms ease;
}
.dotnav a:hover .label, .dotnav a.active .label { opacity: 1; transform: translateX(0); }
.dotnav a.active .dot { background: var(--accent); transform: scale(1.4); }
@media (max-width: 1100px) { .dotnav { display: none; } }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}
section { position: relative; }

/* ============ HERO (home) ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-content: end;
  padding-top: 140px;
  padding-bottom: 80px;
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background: var(--ink);
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.05) brightness(0.75);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(139,58,31,0.22), transparent 55%),
    linear-gradient(to bottom, rgba(20,23,20,0.55) 0%, rgba(20,23,20,0.35) 40%, rgba(20,23,20,0.85) 100%);
}
.hero-bg::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent, var(--paper));
  z-index: 1;
}

.hero-rule {
  position: absolute;
  top: 110px;
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  justify-content: space-between;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.7);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(244,239,230,0.25);
}
.hero-rule b { color: var(--paper); font-weight: 600; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: end;
  position: relative;
  z-index: 2;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.4fr 1fr; gap: 64px; }
}

h1.cover {
  font-family: "Fraunces", serif;
  font-weight: 350;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
  font-size: clamp(60px, 11vw, 168px);
  line-height: 0.86;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--paper);
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
h1.cover .first { display: block; }
h1.cover .last  { display: block; font-style: italic; font-weight: 300; color: #e8b07a; }

.hero-sub {
  font-family: "Source Serif 4", serif;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.5;
  color: rgba(244,239,230,0.92);
  max-width: 38ch;
  margin-top: 28px;
}
.hero-sub em { color: #e8b07a; font-style: italic; }

.hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 36px;
  border-top: 1px solid rgba(244,239,230,0.25);
  padding-top: 24px;
}
.hero-meta dt {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.6);
  margin-bottom: 6px;
}
.hero-meta dd {
  margin: 0;
  font-family: "Source Serif 4", serif;
  font-size: 16px;
  line-height: 1.45;
  color: var(--paper);
}
.hero-meta dd a { border-bottom: 1px solid rgba(244,239,230,0.4); }
.hero-meta dd a:hover { border-color: #e8b07a; color: #e8b07a; }

.scroll-cue {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.8);
  z-index: 3;
}
.scroll-cue::before {
  content: "";
  width: 36px; height: 1px;
  background: var(--paper);
  animation: cue 2.2s ease-in-out infinite;
}
@keyframes cue {
  0%,100% { transform: scaleX(0.4); transform-origin: left; }
  50% { transform: scaleX(1); transform-origin: left; }
}

/* ============ PAGE HERO (interior pages) ============ */
.pagehero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-content: end;
  padding-top: 160px;
  padding-bottom: 70px;
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.pagehero .hero-bg { position: absolute; inset: 0; z-index: -2; background: var(--ink); }
.pagehero .hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.05) brightness(0.7);
}
.pagehero .hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(139,58,31,0.25), transparent 55%),
    linear-gradient(to bottom, rgba(20,23,20,0.45) 0%, rgba(20,23,20,0.6) 60%, rgba(20,23,20,0.92) 100%);
}
.pagehero .hero-bg::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--paper));
  z-index: 1;
}
.pagehero .hero-rule { top: 120px; }

.pagehero h1 {
  font-family: "Fraunces", serif;
  font-weight: 350;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(56px, 10vw, 142px);
  line-height: 0.9;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--paper);
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
  position: relative;
  z-index: 2;
}
.pagehero h1 em { font-style: italic; font-weight: 300; color: #e8b07a; }
.pagehero .kicker {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #e8b07a;
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
  position: relative; z-index: 2;
}
.pagehero .kicker::before {
  content: ""; width: 30px; height: 1px; background: #e8b07a;
}
.pagehero .standfirst {
  font-family: "Source Serif 4", serif;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.4;
  color: rgba(244,239,230,0.88);
  max-width: 52ch;
  margin: 30px 0 0;
  position: relative; z-index: 2;
}
.pagehero .standfirst em { color: #e8b07a; font-style: italic; }

/* ============ LEDE / ARTICLE ============ */
.lede {
  padding: 110px 0 100px;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.lede-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1000px) {
  .lede-inner { grid-template-columns: 240px 1fr 320px; gap: 64px; align-items: start; }
}
.lede-inner.no-photo {
  grid-template-columns: 1fr;
}
@media (min-width: 1000px) {
  .lede-inner.no-photo { grid-template-columns: 240px 1fr; gap: 80px; }
}

.section-tag {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.section-tag::before {
  content: ""; width: 26px; height: 1px;
  background: var(--accent);
}

.lede-side .roman {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 96px;
  line-height: 1;
  color: var(--accent);
  margin-top: 18px;
}
.lede-side .chapter {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
}

.lede-body {
  font-family: "Source Serif 4", serif;
  font-size: clamp(21px, 1.9vw, 26px);
  line-height: 1.45;
  color: var(--ink);
  max-width: 38ch;
}
.lede-body .dropcap {
  float: left;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 110px;
  line-height: 0.84;
  color: var(--accent);
  margin: 6px 12px -6px 0;
}
.lede-body p + p { margin-top: 1.1em; }

.lede-photo {
  aspect-ratio: 3/4;
  align-self: start;
}
.lede-photo + figcaption {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.6;
}

/* ============ STORY ============ */
.story {
  padding: 120px 0 100px;
  border-bottom: 1px solid var(--rule);
}
.story-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 80px;
}
@media (min-width: 900px) {
  .story-head { grid-template-columns: 280px 1fr; gap: 80px; align-items: end; }
}
.story-head h2 {
  font-family: "Fraunces", serif;
  font-weight: 350;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 0;
}
.story-head h2 em { font-style: italic; color: var(--accent); font-weight: 300; }

.chapter-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 56px 0;
  border-top: 1px solid var(--rule);
  position: relative;
}
@media (min-width: 900px) {
  .chapter-row { grid-template-columns: 280px 1fr 1.05fr; gap: 56px; align-items: start; }
  .chapter-row.flip { grid-template-columns: 1.05fr 1fr 280px; }
  .chapter-row.flip .chapter-photo { order: 1; }
  .chapter-row.flip .chapter-body  { order: 2; }
  .chapter-row.flip .year-block    { order: 3; text-align: right; }
  .chapter-row.flip .year-block .place { justify-content: flex-end; }
}
.chapter-row:last-child { border-bottom: 1px solid var(--rule); }

.year-block { position: relative; }
.year-block .year {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "WONK" 1;
  font-size: clamp(56px, 6vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.year-block .place {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.year-block .place::before {
  content: ""; width: 18px; height: 1px; background: var(--accent);
}
.year-block .place span { color: var(--accent); }

.chapter-body h3 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.2;
  margin: 0 0 18px;
  max-width: 26ch;
  color: var(--ink);
}
.chapter-body p {
  margin: 0 0 14px;
  color: var(--ink-soft);
  max-width: 60ch;
}
.chapter-body .pull {
  display: block;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.35;
  color: var(--accent);
  padding-left: 18px;
  border-left: 2px solid var(--accent);
  margin: 22px 0;
  max-width: 34ch;
}
.chapter-body .footnote {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 22px;
}

.chapter-photo { aspect-ratio: 4/5; }
.chapter-photo.wide { aspect-ratio: 4/3; }

/* ============ NUMBERS ============ */
.numbers {
  background: var(--ink);
  color: var(--paper);
  padding: 110px 0 100px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.numbers-bg {
  position: absolute; inset: 0; z-index: -1;
  opacity: 0.16;
}
.numbers-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.2);
}
.numbers-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,23,20,0.5), rgba(20,23,20,0.85));
}
.numbers::before {
  content: "MiNC · PRS INVEST · GRIDIZEN · THE ETHICAL CROWD · MiNC · PRS INVEST · GRIDIZEN · THE ETHICAL CROWD · ";
  position: absolute;
  top: 24px;
  left: 0; right: 0;
  white-space: nowrap;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: rgba(244,239,230,0.2);
  animation: marquee 60s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 24px;
  margin-top: 40px;
}
@media (min-width: 720px) {
  .numbers-grid { grid-template-columns: repeat(4, 1fr); }
}
.numbers .section-tag { color: var(--gold); }
.numbers .section-tag::before { background: var(--gold); }
.numbers h2 {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  margin: 18px 0 0;
  max-width: 16ch;
  color: var(--paper);
}
.numbers h2 em { color: var(--gold); font-style: italic; }
.stat .figure {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--paper);
}
.stat .figure span { color: var(--gold); }
.stat .label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.6);
  margin-top: 16px;
  border-top: 1px solid rgba(244,239,230,0.2);
  padding-top: 14px;
}

/* ============ VENTURES ============ */
.ventures {
  padding: 120px 0 80px;
  border-bottom: 1px solid var(--rule);
}
.ventures-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 60px;
}
@media (min-width: 900px) {
  .ventures-head { grid-template-columns: 280px 1fr; gap: 80px; align-items: end; }
}
.ventures-head h2 {
  font-family: "Fraunces", serif;
  font-weight: 350;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 0;
}
.ventures-head h2 em { font-style: italic; color: var(--accent); font-weight: 300; }
.ventures-head .intro {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 50ch;
  margin-top: 14px;
}

.venture {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 56px 0;
  border-top: 1px solid var(--rule);
  position: relative;
}
@media (min-width: 900px) {
  .venture { grid-template-columns: 1.1fr 1fr 1fr; gap: 56px; align-items: start; }
}
.venture:last-child { border-bottom: 1px solid var(--rule); }
.venture-photo { aspect-ratio: 5/4; }
.venture-num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 72px;
  line-height: 0.9;
  color: var(--accent);
}
.venture .meta {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 14px;
  display: flex; align-items: center; gap: 8px;
}
.venture .meta::before {
  content: ""; width: 18px; height: 1px; background: var(--accent);
}
.venture h3 {
  font-family: "Fraunces", serif;
  font-weight: 350;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  margin: 20px 0 12px;
  letter-spacing: -0.01em;
}
.venture .tagline {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  color: var(--accent);
  margin: 0 0 22px;
}
.venture p { margin: 0 0 14px; color: var(--ink-soft); max-width: 50ch; }
.venture .features {
  list-style: none; padding: 0; margin: 18px 0 0;
  border-top: 1px dashed var(--rule);
}
.venture .features li {
  display: flex; gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--rule);
  font-size: 15px; color: var(--ink-soft);
}
.venture .features li::before {
  content: counter(item, decimal-leading-zero);
  counter-increment: item;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--accent);
  flex-shrink: 0; padding-top: 3px;
}
.venture .features { counter-reset: item; }
.venture .link {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 22px;
  font-family: "Inter", sans-serif;
  font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: color 200ms ease, border-color 200ms ease;
}
.venture .link:hover { color: var(--accent); border-color: var(--accent); }
.venture .link::after { content: "→"; transition: transform 200ms ease; }
.venture .link:hover::after { transform: translateX(4px); }

/* ============ FIELD ============ */
.field {
  padding: 120px 0 100px;
  border-bottom: 1px solid var(--rule);
  background:
    radial-gradient(circle at 10% 0%, var(--paper-warm) 0%, transparent 40%),
    radial-gradient(circle at 90% 100%, var(--paper-deep) 0%, transparent 50%);
}
.field-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 64px;
}
@media (min-width: 900px) {
  .field-head { grid-template-columns: 280px 1fr; gap: 80px; align-items: end; }
}
.field-head h2 {
  font-family: "Fraunces", serif;
  font-weight: 350;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 0;
}
.field-head h2 em { font-style: italic; color: var(--accent); }
.field-quote {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.3;
  color: var(--ink-soft);
  max-width: 30ch;
  margin: 14px 0 0;
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 720px) {
  .field-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}
.pursuit {
  background: var(--paper);
  border: 1px solid var(--rule);
  position: relative;
  transition: transform 320ms cubic-bezier(.16,1,.3,1), border-color 280ms ease, box-shadow 280ms ease;
  overflow: hidden;
}
.pursuit:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px -20px rgba(20,23,20,0.25);
}
.pursuit-photo { aspect-ratio: 4/3; }
.pursuit-body { padding: 26px 28px 30px; }
.pursuit h3 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 26px;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.pursuit .meta {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.pursuit .meta::before {
  content: ""; width: 16px; height: 1px; background: var(--accent);
}
.pursuit p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
}

/* ============ PHILOSOPHY ============ */
.philosophy {
  padding: 140px 0;
  border-bottom: 1px solid var(--rule);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.philosophy-bg {
  position: absolute; inset: 0; z-index: -1;
  opacity: 0.18;
}
.philosophy-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(0.4) saturate(0.7);
}
.philosophy-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--paper) 0%, rgba(244,239,230,0.4) 50%, var(--paper) 100%);
}
.philosophy blockquote {
  margin: 0 auto;
  max-width: 24ch;
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  position: relative;
}
.philosophy blockquote::before {
  content: "\201C";
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  font-family: "Fraunces", serif;
  font-size: 140px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.35;
}
.philosophy blockquote em { font-style: italic; color: var(--accent); }
.philosophy cite {
  display: block;
  margin-top: 30px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}

/* ============ HOME THREADS CARDS ============ */
.threads {
  padding: 120px 0 80px;
  border-bottom: 1px solid var(--rule);
}
.threads-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 60px;
}
@media (min-width: 900px) {
  .threads-head { grid-template-columns: 280px 1fr; gap: 80px; align-items: end; }
}
.threads-head h2 {
  font-family: "Fraunces", serif;
  font-weight: 350;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 18ch;
}
.threads-head h2 em { font-style: italic; color: var(--accent); }

.threads-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .threads-grid { grid-template-columns: repeat(3, 1fr); }
}

.thread {
  display: block;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--paper);
  transition: transform 320ms cubic-bezier(.16,1,.3,1), border-color 280ms ease, box-shadow 320ms ease;
}
.thread:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 24px 50px -24px rgba(20,23,20,0.28);
}
.thread .photo { aspect-ratio: 5/4; }
.thread-body { padding: 28px 28px 36px; }
.thread .num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--accent);
}
.thread .meta {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.thread h3 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(28px, 2.5vw, 36px);
  line-height: 1.05;
  margin: 14px 0 10px;
  letter-spacing: -0.01em;
}
.thread p {
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
}
.thread .link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}
.thread .link::after { content: "→"; transition: transform 200ms ease; }
.thread:hover .link { color: var(--accent); border-color: var(--accent); }
.thread:hover .link::after { transform: translateX(4px); }

/* ============ NEXT CHAPTER (footer bridge) ============ */
.next {
  padding: 90px 0 110px;
  border-bottom: 1px solid var(--rule);
}
.next-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: end;
}
@media (min-width: 900px) {
  .next-inner { grid-template-columns: 1fr auto; gap: 60px; }
}
.next .kicker {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 12px;
}
.next .kicker::before {
  content: ""; width: 26px; height: 1px; background: var(--accent);
}
.next a.title {
  font-family: "Fraunces", serif;
  font-weight: 350;
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, color 200ms ease;
}
.next a.title em { font-style: italic; color: var(--accent); }
.next a.title:hover { color: var(--accent); }
.next .arrow {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 40px;
  color: var(--accent);
}

/* ============ CONTACT ============ */
.contact {
  padding: 120px 0 80px;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.contact-bg {
  position: absolute; inset: 0; z-index: -1;
  opacity: 0.22;
}
.contact-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.4) contrast(1.1);
}
.contact-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, var(--ink) 30%, rgba(20,23,20,0.4) 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1.1fr 1fr; gap: 100px; }
}
.contact h2 {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  font-size: clamp(48px, 7vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 18px 0 30px;
  color: var(--paper);
}
.contact h2 em { font-style: italic; color: var(--gold); }
.contact .lead {
  font-size: 18px;
  line-height: 1.5;
  max-width: 42ch;
  color: rgba(244,239,230,0.8);
  margin: 0 0 32px;
}
.contact .email {
  display: inline-block;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 6px;
  transition: opacity 200ms ease;
}
.contact .email:hover { opacity: 0.7; }
.contact .section-tag { color: var(--gold); }
.contact .section-tag::before { background: var(--gold); }

.contact-card {
  border: 1px solid rgba(244,239,230,0.16);
  padding: 36px 32px;
  background: rgba(20,23,20,0.55);
  backdrop-filter: blur(8px);
}
.contact-card dl {
  margin: 0;
  display: grid;
  gap: 26px;
}
.contact-card dt {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.contact-card dd {
  margin: 0;
  font-family: "Source Serif 4", serif;
  font-size: 17px;
  line-height: 1.4;
  color: var(--paper);
}
.contact-card dd a {
  border-bottom: 1px solid rgba(244,239,230,0.3);
  transition: border-color 200ms ease;
}
.contact-card dd a:hover { border-color: var(--gold); }

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}
.socials a {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper);
  padding: 10px 16px;
  border: 1px solid rgba(244,239,230,0.24);
  transition: all 200ms ease;
}
.socials a:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

/* contact form */
.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}
.contact-form label {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.7);
  display: block;
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(244,239,230,0.3);
  padding: 8px 0 12px;
  font-family: "Source Serif 4", serif;
  font-size: 17px;
  color: var(--paper);
  outline: none;
  transition: border-color 200ms ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}
.contact-form textarea { resize: vertical; min-height: 100px; font-family: "Source Serif 4", serif; }
.contact-form button {
  margin-top: 18px;
  align-self: start;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
  padding: 14px 28px;
  cursor: pointer;
  transition: all 200ms ease;
}
.contact-form button:hover {
  background: transparent;
  color: var(--gold);
}

footer.site-foot {
  background: var(--ink);
  color: rgba(244,239,230,0.5);
  padding: 36px var(--gutter);
  border-top: 1px solid rgba(244,239,230,0.12);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
}
footer.site-foot .colophon { font-style: italic; text-transform: none; letter-spacing: 0; font-family: "Fraunces", serif; font-size: 13px; }
footer.site-foot a { color: rgba(244,239,230,0.7); border-bottom: 1px solid rgba(244,239,230,0.2); }
footer.site-foot a:hover { color: var(--gold); border-color: var(--gold); }

/* reveal animations */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 900ms cubic-bezier(.16,1,.3,1), transform 900ms cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-photo { clip-path: inset(0 100% 0 0); transition: clip-path 1100ms cubic-bezier(.7,.0,.2,1); }
.reveal-photo.in { clip-path: inset(0 0 0 0); }

@media (max-width: 600px) {
  .hero-rule { gap: 8px; flex-wrap: wrap; font-size: 9px; }
  .hero { padding-top: 120px; padding-bottom: 60px; }
  .pagehero { padding-top: 140px; padding-bottom: 60px; }
}
