:root {
  --ink: #17211f;
  --muted: #5f6d68;
  --paper: #f5f3ed;
  --panel: #ebe8df;
  --line: #d5d1c7;
  --accent: #d35f3f;
  --pine: #1d4f48;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); line-height: 1.65; }
a { color: inherit; }
.site-header, main, footer { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.site-header { height: 84px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 750; letter-spacing: -.02em; text-decoration: none; }
.brand img { display: block; }
nav { display: flex; gap: 28px; }
nav a { color: var(--muted); font-size: .94rem; font-weight: 650; text-decoration: none; }
nav a:hover, nav a[aria-current="page"] { color: var(--ink); }
.hero { min-height: 610px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; padding: 72px 0; }
.hero h1, .prose h1 { margin: .12em 0 .3em; max-width: 800px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.1rem, 7.5vw, 6.6rem); font-weight: 500; letter-spacing: -.055em; line-height: .94; }
.hero-art { width: 100%; height: auto; }
.eyebrow { margin: 0; color: var(--accent); font-size: .76rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.lede { max-width: 670px; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.28rem); line-height: 1.65; }
.button { display: inline-block; margin-top: 18px; padding: 12px 18px; border-radius: 999px; background: var(--pine); color: white; font-size: .92rem; font-weight: 750; text-decoration: none; }
.button:hover { background: #153e38; }
.section { padding: 82px 0; border-top: 1px solid var(--line); }
.section-heading { margin-bottom: 28px; display: flex; align-items: end; justify-content: space-between; }
.section h2, .quiet-panel h2, .prose h2 { margin: .15em 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; letter-spacing: -.035em; line-height: 1.08; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { min-height: 250px; padding: 26px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.25); }
.card h3 { margin: 34px 0 12px; font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; font-weight: 500; line-height: 1.16; }
.card h3 a { text-decoration-thickness: 1px; text-underline-offset: 4px; }
.card p { color: var(--muted); }
.meta { font-size: .78rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.quiet-panel { margin: 28px 0 90px; padding: 50px; display: grid; grid-template-columns: 110px 1fr; gap: 28px; align-items: center; border-radius: 24px; background: var(--panel); }
.quiet-panel p:last-child { max-width: 720px; color: var(--muted); }
.article-shell { min-height: calc(100vh - 180px); padding: 90px 0; }
.prose { max-width: 790px; margin-inline: auto; }
.prose h1 { font-size: clamp(3rem, 7vw, 5.5rem); }
.prose h2 { margin-top: 1.55em; font-size: 2rem; }
.prose p, .prose li { font-size: 1.08rem; }
.prose blockquote { margin: 2.2em 0; padding: 8px 0 8px 24px; border-left: 4px solid var(--accent); color: var(--pine); font-family: Georgia, serif; font-size: 1.5rem; }
.text-link { color: var(--pine); font-weight: 750; text-underline-offset: 4px; }
.note-list { margin-top: 50px; border-top: 1px solid var(--line); }
.note-list a { padding: 24px 4px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); text-decoration: none; }
.note-list strong, .note-list small { display: block; }
.note-list strong { font-family: Georgia, serif; font-size: 1.4rem; font-weight: 500; }
.note-list small { margin-top: 4px; color: var(--muted); }
footer { min-height: 96px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); color: var(--muted); font-size: .88rem; }
footer a { text-underline-offset: 3px; }

@media (max-width: 780px) {
  .site-header, main, footer { width: min(100% - 28px, 1160px); }
  .site-header { height: 72px; }
  .brand span { display: none; }
  nav { gap: 20px; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding: 54px 0; }
  .hero-art { max-width: 540px; margin-inline: auto; }
  .card-grid { grid-template-columns: 1fr; }
  .card { min-height: 210px; }
  .quiet-panel { grid-template-columns: 1fr; padding: 30px; }
  .article-shell { padding: 58px 0; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

