:root {
  color-scheme: light;
  --warm-white: #fafaf8;
  --off-white: #f5f2ec;
  --paper: #fffdf8;
  --ink: #1a1916;
  --ink-soft: #4a4845;
  --ink-muted: #8a8780;
  --rule: #e2ded6;
  --accent: #ba7517;
  --accent-soft: #f7e8cf;
  --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:
    radial-gradient(circle at top left, rgba(226, 222, 214, 0.44), transparent 34rem),
    var(--warm-white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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;
}

.brand {
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
  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;
  transition: color 160ms ease, border-color 160ms ease;
}

.nav-cta:hover {
  color: var(--ink);
}

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

.hero {
  padding-top: 7rem;
}

.eyebrow {
  margin: 0 0 1.6rem;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 650;
  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.025em;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.65rem;
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  line-height: 0.98;
}

h2 {
  margin: 2.3rem 0 0.9rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
}

p {
  margin: 0 0 1.35rem;
  color: var(--ink-soft);
}

.hero-lede {
  max-width: 620px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.35;
}

.copy-flow p,
.story-card p {
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
}

.pull-line,
.felt-line {
  margin: 2rem 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.18;
}

.felt-line {
  padding-left: 1rem;
  border-left: 2px solid var(--ink);
}

.stacked-lines {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.3vw, 1.9rem);
  line-height: 1.3;
}

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

.sketch-frame {
  margin: 3rem 0;
  padding: clamp(0.7rem, 2vw, 1.2rem);
  background: var(--paper);
  border: 0.5px solid var(--rule);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(26, 25, 22, 0.06);
  overflow: hidden;
}

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

.proof-section {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.stat-card,
.story-card {
  background: var(--off-white);
  border-left: 2px solid var(--ink);
  border-radius: 3px;
  padding: clamp(1.6rem, 4vw, 2.8rem);
}

.stat-lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.18;
}

.stat-lines {
  display: grid;
  gap: 0.35rem;
  margin-top: 1.5rem;
  color: var(--ink-soft);
}

.stat-lines span,
.stat-lines strong {
  display: block;
}

.stat-lines strong {
  color: var(--ink);
  font-size: 1.1em;
}

.story-section > p:first-child {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
}

.story-location {
  color: var(--ink-muted);
  font-size: 0.78rem !important;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

.poem-section p {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 2.3rem);
  line-height: 1.35;
}

.poem-section h2 {
  max-width: 11ch;
  margin-left: auto;
  margin-right: auto;
}

.compound-section {
  background: linear-gradient(180deg, transparent, rgba(245, 242, 236, 0.72), transparent);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

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

.button-primary:hover {
  background: var(--ink-soft);
}

footer.section-shell {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

footer p {
  margin-bottom: 0.7rem;
  color: var(--ink-muted);
  font-size: 13px;
}

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

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

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

  .hero {
    padding-top: 4.6rem;
  }

  .sketch-frame {
    margin: 2.2rem 0;
    border-radius: 12px;
  }

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