:root {
  --ivory: #f6f4ef;
  --ivory-deep: #efece4;
  --ink: #1b1a17;
  --ink-soft: #3a3833;
  --stone: #8a8478;
  --line: #ddd8cc;
  --bronze: #9a8a6c;
  --bronze-deep: #7c6a4b;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--bronze); color: white; }
a { color: inherit; }
img { display: block; max-width: 100%; }
.wrap { width: min(1120px, 88vw); margin: 0 auto; }
.reading { width: min(720px, 88vw); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 85%, transparent);
  background: color-mix(in srgb, var(--ivory) 92%, transparent);
  backdrop-filter: blur(14px);
}
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; font-family: var(--serif); font-size: 18px; letter-spacing: .13em; text-transform: uppercase; }
.mark { width: 31px; height: 31px; display: grid; place-items: center; background: var(--ink); color: var(--ivory); font-size: 14px; letter-spacing: 0; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { text-decoration: none; font-size: 10px; font-weight: 400; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft); }
.nav-links a[aria-current="page"], .nav-links a:hover { color: var(--bronze-deep); }

.eyebrow { display: flex; align-items: center; gap: 16px; color: var(--stone); font-size: 10px; font-weight: 400; letter-spacing: .3em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 38px; height: 1px; background: var(--bronze); }
.hero { padding: 118px 0 96px; border-bottom: 1px solid var(--line); }
.hero h1 { max-width: 930px; margin: 24px 0 25px; font-family: var(--serif); font-size: clamp(48px, 7vw, 86px); font-weight: 400; letter-spacing: .005em; line-height: 1.02; }
.hero-copy { max-width: 690px; margin: 0; color: var(--ink-soft); font-family: var(--serif); font-size: clamp(21px, 2.4vw, 28px); line-height: 1.48; }

.section { padding: 100px 0; }
.section.alt { background: var(--ivory-deep); border-block: 1px solid var(--line); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 48px; }
.section h2 { margin: 14px 0 0; font-family: var(--serif); font-size: clamp(34px, 4vw, 50px); font-weight: 400; line-height: 1.12; }
.featured { display: grid; grid-template-columns: .88fr 1.12fr; min-height: 470px; border: 1px solid var(--line); background: #f9f7f2; }
.featured-media { min-height: 360px; background: var(--ink); overflow: hidden; }
.featured-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.03); }
.featured-body { display: flex; flex-direction: column; justify-content: center; padding: clamp(38px, 6vw, 74px); }
.meta { color: var(--stone); font-size: 10px; font-weight: 400; letter-spacing: .21em; text-transform: uppercase; }
.featured h3 { margin: 22px 0; font-family: var(--serif); font-size: clamp(31px, 4vw, 48px); font-weight: 400; line-height: 1.1; }
.featured p { margin: 0 0 30px; color: var(--ink-soft); }
.text-link { width: fit-content; padding-bottom: 4px; border-bottom: 1px solid var(--bronze); color: var(--bronze-deep); font-size: 11px; font-weight: 500; letter-spacing: .2em; text-decoration: none; text-transform: uppercase; }

.roadmap { border-top: 1px solid var(--line); }
.roadmap-item { display: grid; grid-template-columns: 70px 1fr auto; gap: 24px; align-items: baseline; padding: 28px 0; border-bottom: 1px solid var(--line); }
.roadmap-item .number { color: var(--bronze); font-family: var(--serif); font-style: italic; }
.roadmap-item h3 { margin: 0; font-family: var(--serif); font-size: clamp(22px, 2.6vw, 29px); font-weight: 400; line-height: 1.25; }
.roadmap-item .topic { color: var(--stone); font-size: 10px; font-weight: 400; letter-spacing: .2em; text-transform: uppercase; }
.roadmap-link { text-decoration: none; transition: color .2s ease; }
.roadmap-link:hover { color: var(--bronze-deep); }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.principle { padding: 40px; background: var(--ivory); }
.principle h3 { margin: 0 0 14px; font-family: var(--serif); font-size: 26px; font-weight: 400; }
.principle p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.cta { padding: 86px 0; background: var(--ink); color: var(--ivory); text-align: center; }
.cta h2 { max-width: 780px; margin: 0 auto 28px; font-family: var(--serif); font-size: clamp(34px, 5vw, 54px); font-weight: 400; line-height: 1.15; }
.cta p { max-width: 620px; margin: 0 auto 34px; color: #c9c4b8; }
.button { display: inline-block; padding: 16px 35px; border: 1px solid var(--bronze); color: white; font-size: 10px; font-weight: 500; letter-spacing: .24em; text-decoration: none; text-transform: uppercase; }
.button:hover { background: var(--bronze-deep); }

.article-hero { padding: 105px 0 82px; border-bottom: 1px solid var(--line); }
.breadcrumbs { margin-bottom: 36px; color: var(--stone); font-size: 10px; font-weight: 400; letter-spacing: .18em; text-transform: uppercase; }
.breadcrumbs a { text-decoration: none; }
.article-hero h1 { max-width: 980px; margin: 22px 0 30px; font-family: var(--serif); font-size: clamp(45px, 6.7vw, 78px); font-weight: 400; line-height: 1.03; }
.dek { max-width: 760px; margin: 0 0 34px; color: var(--ink-soft); font-family: var(--serif); font-size: clamp(21px, 2.5vw, 28px); line-height: 1.45; }
.byline { display: flex; flex-wrap: wrap; gap: 12px 26px; color: var(--stone); font-size: 10px; font-weight: 400; letter-spacing: .17em; text-transform: uppercase; }
.article-image { width: min(1120px, 88vw); margin: 0 auto; padding-top: 68px; }
.article-image img { width: 100%; max-height: 680px; object-fit: cover; object-position: center 35%; }
.article-image figcaption { margin-top: 12px; color: var(--stone); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.article { padding: 78px 0 110px; }
.article p { margin: 0 0 26px; color: #302e2a; font-size: 17px; line-height: 1.9; }
.article .lead { color: var(--ink); font-family: var(--serif); font-size: 26px; line-height: 1.55; }
.article h2 { margin: 64px 0 24px; font-family: var(--serif); font-size: clamp(31px, 4vw, 43px); font-weight: 400; line-height: 1.15; }
.article h3 { margin: 36px 0 12px; font-family: var(--serif); font-size: 25px; font-weight: 500; }
.article blockquote { margin: 54px -70px; padding: 34px 50px; border-left: 1px solid var(--bronze); background: var(--ivory-deep); font-family: var(--serif); font-size: clamp(25px, 3vw, 34px); font-style: italic; line-height: 1.4; }
.article ul { margin: 0 0 32px; padding-left: 24px; }
.article li { margin-bottom: 15px; padding-left: 8px; color: #302e2a; }
.article a { color: var(--bronze-deep); text-decoration-color: var(--bronze); text-underline-offset: 3px; }
.source-note { margin-top: 68px; padding-top: 32px; border-top: 1px solid var(--line); }
.source-note h2 { margin-top: 0; font-size: 28px; }
.source-note ol { padding-left: 20px; }
.source-note li { margin-bottom: 12px; color: var(--ink-soft); font-size: 13px; }
.disclaimer { margin-top: 40px; color: var(--stone) !important; font-size: 12px !important; }

.site-footer { padding: 38px 0; border-top: 1px solid var(--line); }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; color: var(--stone); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.footer-inner a { text-decoration: none; }

@media (max-width: 820px) {
  .nav-links a:not([aria-current="page"]) { display: none; }
  .hero { padding: 86px 0 72px; }
  .featured { grid-template-columns: 1fr; }
  .principles { grid-template-columns: 1fr; }
  .roadmap-item { grid-template-columns: 52px 1fr; }
  .roadmap-item .topic { grid-column: 2; }
  .article blockquote { margin-inline: 0; padding: 28px 30px; }
}

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