:root {
  color-scheme: light;
  --warm-white: #fafaf8;
  --off-white: #f5f2ec;
  --paper: #fffdf8;
  --ink: #1a1916;
  --ink-soft: #4a4845;
  --ink-muted: #8a8780;
  --rule: #e2ded6;
  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm-white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.45rem 2rem;
  background: rgba(250, 250, 248, 0.92);
  border-bottom: 0.5px solid var(--rule);
  backdrop-filter: blur(14px);
}

.brand,
.nav-cta {
  text-decoration: none;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.brand {
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-cta {
  color: var(--ink-muted);
  border-bottom: 0.5px solid currentColor;
  padding-bottom: 1px;
  font-size: 13px;
  letter-spacing: 0.03em;
}

.section-shell {
  width: min(680px, calc(100% - 4rem));
  margin: 0 auto;
  padding: 4.4rem 0;
  border-bottom: 0.5px solid var(--rule);
}

.hero {
  padding-top: 5rem;
}

.eyebrow,
.story-location {
  margin: 0 0 1.6rem;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.35;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.65rem;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 1.05;
}

h2 {
  margin-bottom: 1.45rem;
  font-size: clamp(2rem, 4.8vw, 3.35rem);
  line-height: 1.18;
}

.hero-lede {
  max-width: 580px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.72;
}

.copy-flow p,
.story-card p,
.diagnostic-section p {
  margin: 0 0 1.35rem;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
}

.copy-flow p:last-child,
.story-card p:last-child,
.diagnostic-section p:last-child {
  margin-bottom: 0;
}

.pull-line,
.felt-line,
.strong-lines {
  color: var(--ink) !important;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3vw, 2rem) !important;
  font-style: italic;
  line-height: 1.48 !important;
}

.pull-line {
  margin: 2.25rem 0 !important;
  padding-left: 1.4rem;
  border-left: 2px solid var(--ink);
}

.stacked-lines {
  line-height: 1.95 !important;
}

.sketch-frame {
  width: 100%;
  margin: 2.35rem 0;
  overflow: hidden;
  border-radius: 2px;
}

.sketch-frame svg {
  display: block;
  width: 100%;
  height: auto;
}

.hero-sketch {
  margin-bottom: 0;
}

.gap-sketch,
.proof-sketch,
.translator-sketch {
  padding-top: 0.4rem;
}

.stat-card {
  padding: 2rem 2.4rem;
  background: var(--off-white);
  border-left: 2px solid var(--ink);
  border-radius: 2px;
}

.stat-lead {
  margin: 0 0 1.8rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.12;
}

.stat-lines {
  display: grid;
  gap: 0.75rem;
}

.stat-lines span,
.stat-lines strong {
  padding-bottom: 0.75rem;
  border-bottom: 0.5px solid var(--rule);
  color: var(--ink-soft);
  font-size: 15px;
}

.stat-lines strong {
  color: var(--ink);
  font-weight: 600;
}

.story-section > p {
  margin: 0 0 2rem;
  color: var(--ink-soft);
}

.story-card {
  padding: 2.5rem;
  background: var(--off-white);
  border-radius: 2px;
}

.story-location {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.story-location::before {
  content: "";
  width: 22px;
  height: 0.5px;
  background: var(--ink-muted);
}

.story-card .sketch-frame {
  border: 0.5px solid var(--rule);
  background: var(--paper);
}

.felt-line {
  margin: 2rem 0 !important;
  padding-top: 1.4rem;
  border-top: 0.5px solid var(--rule);
}

.compound-section p:first-child {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4vw, 2.65rem);
  line-height: 1.25;
}

.poem-section {
  text-align: center;
}

.poem-section p {
  margin: 0 0 1.25rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  line-height: 1.95;
}

.poem-section h2 {
  max-width: 13ch;
  margin: 0 auto 1.35rem;
}

.diagnostic-section {
  border-bottom: 0;
  text-align: center;
}

.diagnostic-section h2 {
  max-width: 560px;
  margin: 0 auto 1.5rem;
  font-size: clamp(1.85rem, 4.4vw, 2.9rem);
  line-height: 1.3;
}

.cta-sketch {
  max-width: 320px;
  margin-right: auto;
  margin-left: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border: 1px solid var(--ink);
  border-radius: 2px;
  padding: 0.85rem 1.6rem;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.button-primary {
  background: var(--ink);
  color: var(--warm-white);
}

.page-title {
  max-width: 12ch;
}

.page-lede {
  max-width: 590px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.72;
}

.thinking-list {
  display: grid;
  gap: 1.25rem;
}

.thinking-card {
  display: block;
  padding: 1.5rem 0;
  border-top: 0.5px solid var(--rule);
  color: inherit;
  text-decoration: none;
}

.thinking-card:last-child {
  border-bottom: 0.5px solid var(--rule);
}

.thinking-card h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.5rem, 3.5vw, 2.15rem);
  line-height: 1.22;
}

.thinking-card p {
  max-width: 620px;
  margin: 0 0 0.85rem;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.article-meta {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  color: var(--ink-muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.article-link {
  margin-top: 1rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
}

.back-link {
  display: inline-block;
  margin-bottom: 2rem;
}

.article-header h1 {
  max-width: 780px;
}

.article-body p,
.article-body li {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.82;
}

.article-body p {
  margin: 0 0 1.35rem;
}

.article-sketch {
  margin-top: 2.6rem;
  margin-bottom: 3rem;
  border: 0.5px solid var(--rule);
  background: var(--paper);
}

.article-cta {
  text-align: left;
}

.article-cta p {
  max-width: 560px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.4;
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

  .site-header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
    padding: 1.25rem;
  }

  .main-nav {
    justify-content: flex-start;
    gap: 0.85rem;
  }

  .section-shell {
    width: min(100% - 2rem, 680px);
    padding: 3.5rem 0;
  }

  .hero {
    padding-top: 4rem;
  }

  .story-card,
  .stat-card {
    padding: 1.45rem;
  }

  .button {
    width: 100%;
  }

  .article-body p,
  .article-body li {
    font-size: 16px;
  }
}
