:root {
  --ink: #161513;
  --muted: #716d66;
  --paper: #f3f0e9;
  --paper-deep: #e9e4da;
  --line: rgba(22, 21, 19, 0.16);
  --green: #557548;
  --green-light: #dce6d5;
  --white: #fffdf8;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

[hidden] { display: none !important; }

a { color: inherit; }

.journal-nav {
  position: relative;
  z-index: 10;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.journal-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  font-weight: 660;
  letter-spacing: -0.03em;
}

.journal-brand span { color: var(--muted); font-weight: 450; }

.journal-tools { display: flex; align-items: center; gap: 20px; }

.journal-back {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.journal-back:hover { color: var(--ink); }

.language-switcher {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
}

.language-switcher button {
  border: 0;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--muted);
  background: transparent;
  font: 600 11px/1 var(--sans);
  letter-spacing: .06em;
  cursor: pointer;
}

.language-switcher button.is-active {
  color: var(--white);
  background: var(--ink);
}

.journal-index {
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 89px);
  margin: 0 auto;
  padding: clamp(72px, 11vw, 150px) 0 88px;
}

.index-eyebrow,
.article-kicker,
.section-label {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.index-title {
  max-width: 850px;
  margin: 0;
  font: 400 clamp(54px, 9vw, 124px)/.9 var(--serif);
  letter-spacing: -.06em;
}

.index-intro {
  max-width: 620px;
  margin: 32px 0 80px;
  color: var(--muted);
  font: 400 18px/1.65 var(--sans);
}

.story-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.story-number {
  color: var(--green);
  font: 400 40px/1 var(--serif);
}

.story-card h2 {
  margin: 0 0 10px;
  font: 400 clamp(26px, 4vw, 44px)/1.1 var(--serif);
  letter-spacing: -.035em;
}

.story-card p { margin: 0; color: var(--muted); line-height: 1.5; }
.story-arrow { font-size: 28px; transition: transform .2s ease; }
.story-card:hover .story-arrow { transform: translateX(6px); }
.story-card + .story-card { border-top: 0; }
.story-card h2 small { color: var(--muted); font: 500 12px/1 var(--sans); letter-spacing: .06em; }

.article-main { overflow: hidden; }

.article-header {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(64px, 10vw, 136px) 0 52px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 13px;
}

.article-title {
  max-width: 900px;
  margin: 0;
  font: 400 clamp(48px, 8vw, 96px)/.96 var(--serif);
  letter-spacing: -.055em;
}

.article-deck {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font: 400 clamp(18px, 2.5vw, 24px)/1.55 var(--sans);
}

.hero-figure {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto clamp(72px, 10vw, 128px);
}

.hero-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 4px;
  background: #191816;
}

.hero-figure figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
}

.article-body {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding-bottom: 100px;
}

.article-body > p,
.article-body li {
  font-size: 17px;
  line-height: 1.78;
}

.article-body > p { margin: 0 0 24px; }
.article-body > p.lede { font: 400 clamp(24px, 3.5vw, 34px)/1.5 var(--serif); letter-spacing: -.02em; }

.article-body h2 {
  margin: 86px 0 24px;
  font: 400 clamp(34px, 5vw, 54px)/1.05 var(--serif);
  letter-spacing: -.04em;
}

.article-body h3 {
  margin: 42px 0 14px;
  font: 650 19px/1.35 var(--sans);
  letter-spacing: -.02em;
}

.article-body ul,
.article-body ol { margin: 0 0 28px; padding-left: 1.35em; }
.article-body li + li { margin-top: 8px; }
.article-body strong { font-weight: 700; }

.decision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0;
}

.decision-card {
  position: relative;
  min-height: 270px;
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .34);
}

.decision-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 45px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font: 400 24px/1 var(--serif);
}

.decision-card h3 { margin: 0 0 10px; }
.decision-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.key-callout {
  margin: 46px 0;
  padding: 28px;
  border-left: 3px solid var(--green);
  background: var(--green-light);
}

.key-callout p { margin: 0; font-size: 16px; line-height: 1.65; }
.key-callout p + p { margin-top: 12px; }

.checklist {
  display: grid;
  gap: 1px;
  margin: 34px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.check-row {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 18px 20px;
  background: var(--white);
}

.check-mark {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-size: 12px;
}

.check-row p { margin: 0; font-size: 15px; line-height: 1.6; }

.steps {
  margin: 36px 0;
  counter-reset: enrollment;
}

.step {
  position: relative;
  padding: 0 0 42px 76px;
  counter-increment: enrollment;
}

.step::before {
  content: counter(enrollment, decimal-leading-zero);
  position: absolute;
  top: -2px;
  left: 0;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green);
  background: var(--paper);
  font: 600 12px/1 var(--sans);
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 46px;
  bottom: 0;
  left: 22px;
  width: 1px;
  background: var(--line);
}

.step h3 { margin: 0 0 8px; }
.step p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }

.fee-visual {
  margin: 48px 0;
  padding: 32px;
  color: var(--white);
  background: var(--ink);
}

.fee-top { display: flex; justify-content: space-between; gap: 22px; align-items: start; }
.fee-amount { font: 400 clamp(42px, 8vw, 72px)/1 var(--serif); letter-spacing: -.04em; }
.fee-label { color: rgba(255, 255, 255, .58); font-size: 13px; line-height: 1.5; text-align: right; }
.fee-note { margin: 30px 0 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.6; }

.source-list { list-style: none; padding: 0 !important; }
.source-list li { border-top: 1px solid var(--line); margin: 0; }
.source-list li:last-child { border-bottom: 1px solid var(--line); }
.source-list a { display: flex; justify-content: space-between; gap: 20px; padding: 16px 0; text-decoration: none; }
.source-list a:hover { color: var(--green); }

.article-footer {
  margin-top: 88px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .journal-nav { width: min(100% - 28px, 1180px); padding: 18px 0; }
  .journal-back { display: none; }
  .journal-index,
  .article-header,
  .hero-figure,
  .article-body { width: calc(100% - 28px); }
  .journal-index { padding-top: 72px; }
  .index-title { font-size: clamp(54px, 20vw, 88px); }
  .story-card { grid-template-columns: 46px 1fr; gap: 16px; }
  .story-arrow { display: none; }
  .decision-grid { grid-template-columns: 1fr; }
  .decision-card { min-height: 220px; }
  .decision-icon { margin-bottom: 30px; }
  .step { padding-left: 62px; }
  .fee-top { display: block; }
  .fee-label { margin-top: 10px; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
