:root {
  --ink: #17271e;
  --ink-soft: #3f5045;
  --forest: #173d2c;
  --forest-deep: #0d2b1e;
  --cream: #f4f0e5;
  --paper: #fbf9f2;
  --line: #d7d1c2;
  --honey: #d99a2b;
  --honey-light: #f1c76d;
  --ochre-text: #765000;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 108px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:focus-visible {
  border-radius: 3px;
  outline: 3px solid var(--honey);
  outline-offset: 4px;
}
section[id] { scroll-margin-top: 108px; }
::selection { background: var(--honey-light); color: var(--forest-deep); }

.skip-link {
  background: white;
  border: 2px solid var(--forest);
  color: var(--forest-deep);
  font-size: 16px;
  font-weight: 800;
  left: 20px;
  padding: 12px 18px;
  position: fixed;
  top: 12px;
  transform: translateY(-180%);
  transition: transform .15s ease;
  z-index: 100;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  align-items: center;
  background: rgba(251, 249, 242, .94);
  border-bottom: 1px solid rgba(23, 39, 30, .12);
  display: flex;
  height: 86px;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 76px);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
}
.brand { align-items: center; display: flex; gap: 13px; }
.brand-mark {
  align-items: center;
  background: var(--forest);
  border-radius: 50%;
  color: var(--honey-light);
  display: flex;
  font-family: Georgia, serif;
  font-size: 15px;
  height: 44px;
  justify-content: center;
  letter-spacing: -.04em;
  width: 44px;
}
.brand strong { display: block; font-family: Georgia, serif; font-size: 19px; font-weight: 600; }
.brand small { color: var(--ink-soft); display: block; font-size: 13px; letter-spacing: .06em; line-height: 1.35; margin-top: 2px; text-transform: uppercase; }
nav { align-items: center; display: flex; gap: clamp(18px, 2.5vw, 38px); }
nav a { font-size: 15px; font-weight: 700; }
nav a:hover { color: var(--ochre-text); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }
.nav-cta { border: 1px solid var(--forest); border-radius: 999px; padding: 12px 19px; }
.nav-cta > span:last-child { display: none; }
.nav-cta:hover { background: var(--forest); color: white; }

.hero {
  background: var(--forest-deep);
  color: white;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr);
  min-height: 710px;
  overflow: hidden;
  padding: clamp(82px, 10vw, 142px) clamp(24px, 7vw, 108px) clamp(76px, 9vw, 120px);
  position: relative;
}
.hero::before {
  background: radial-gradient(circle, rgba(241,199,109,.15) 0 1.5px, transparent 1.7px);
  background-size: 32px 32px;
  content: "";
  height: 420px;
  opacity: .55;
  position: absolute;
  right: -80px;
  top: -60px;
  transform: rotate(12deg);
  width: 620px;
}
.hero-copy { max-width: 830px; position: relative; z-index: 2; }
.eyebrow, .section-kicker, .entry-type, .note-label {
  color: var(--honey-light);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.45;
  margin: 0 0 22px;
  text-transform: uppercase;
}
.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 7.2vw, 106px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .94;
  margin: 0;
  max-width: 860px;
}
.hero h1 em { color: var(--honey-light); font-weight: 400; }
.hero-lead { color: #e3ebe6; font-size: clamp(19px, 1.45vw, 23px); line-height: 1.68; margin: 34px 0 0; max-width: 720px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 42px; }
.button { align-items: center; border-radius: 999px; display: inline-flex; font-size: 16px; font-weight: 800; gap: 28px; justify-content: center; min-height: 52px; padding: 15px 23px; transition: .2s ease; }
.button-primary { background: var(--honey); color: #172015; }
.button-primary:hover { background: var(--honey-light); transform: translateY(-2px); }
.button-quiet { border: 1px solid rgba(255,255,255,.34); color: white; }
.button-quiet:hover { border-color: white; background: rgba(255,255,255,.08); }
.hero-note {
  align-self: end;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 2px;
  margin-left: clamp(0px, 4vw, 65px);
  padding: clamp(26px, 3vw, 42px);
  position: relative;
  z-index: 2;
}
.hero-note > p:not(.note-label) { color: #edf2ef; font-family: Georgia, serif; font-size: 20px; line-height: 1.6; margin: 0; }
.note-rule { background: rgba(255,255,255,.18); height: 1px; margin: 28px 0; }
.hero-note dl { display: grid; gap: 18px; margin: 0; }
.hero-note dl div { align-items: baseline; display: grid; gap: 14px; grid-template-columns: 68px 1fr; }
.hero-note dt { color: var(--honey-light); font-family: Georgia, serif; font-size: 31px; }
.hero-note dd { color: #dae4dd; font-size: 15px; line-height: 1.45; margin: 0; }

.facts-strip {
  align-items: stretch;
  background: var(--honey);
  display: grid;
  grid-template-columns: repeat(3, 1fr) minmax(180px, .65fr);
  padding: 0 clamp(24px, 7vw, 108px);
}
.facts-strip > div { align-items: center; border-right: 1px solid rgba(23,39,30,.25); display: grid; gap: 12px; grid-template-columns: auto auto 1fr; padding: 28px clamp(18px, 2.3vw, 38px) 28px 0; }
.facts-strip > div + div { padding-left: clamp(18px, 2.3vw, 38px); }
.facts-strip span { font-size: 14px; font-weight: 800; letter-spacing: .08em; transform: rotate(-90deg); }
.facts-strip strong { font-family: Georgia, serif; font-size: 39px; font-weight: 500; }
.facts-strip p { font-size: 14px; font-weight: 700; line-height: 1.45; margin: 0; }
.facts-strip .facts-note { align-self: center; color: #344a3c; font-size: 14px; font-weight: 700; letter-spacing: .04em; line-height: 1.45; padding-left: 28px; text-transform: uppercase; }

.principles, .chronicle, .people, .sources, .contribute, footer { padding-left: clamp(24px, 7vw, 108px); padding-right: clamp(24px, 7vw, 108px); }
.principles { padding-bottom: clamp(78px, 10vw, 130px); padding-top: clamp(78px, 10vw, 130px); }
.section-kicker { color: var(--ochre-text); }
.principles-grid { display: grid; gap: clamp(46px, 8vw, 128px); grid-template-columns: minmax(0,.85fr) minmax(400px,1.15fr); }
.principles h2, .section-heading h2, .contribute h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.5vw, 68px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.05;
  margin: 0;
}
.principle-list { border-top: 1px solid var(--line); }
.principle-list p { align-items: start; border-bottom: 1px solid var(--line); display: grid; font-size: 18px; gap: 20px; grid-template-columns: 40px 1fr; line-height: 1.65; margin: 0; padding: 23px 0; }
.principle-list span { color: var(--ochre-text); font-size: 14px; font-weight: 800; padding-top: 4px; }

.chronicle { background: var(--cream); padding-bottom: clamp(84px, 10vw, 140px); padding-top: clamp(80px, 9vw, 125px); }
.section-heading { align-items: end; display: grid; gap: 40px; grid-template-columns: 1fr minmax(280px, 450px); margin-bottom: 70px; }
.section-heading > p { color: var(--ink-soft); font-size: 18px; line-height: 1.65; margin: 0; }
.timeline { border-top: 1px solid #beb7a8; }
.timeline-entry { border-bottom: 1px solid #c9c2b3; display: grid; grid-template-columns: minmax(190px,.42fr) minmax(0,1.58fr); padding: 37px 0 40px; }
.timeline-date { display: flex; flex-direction: column; gap: 12px; }
.timeline-date span { color: var(--ochre-text); font-size: 14px; font-weight: 800; letter-spacing: .08em; }
.timeline-date time { font-family: Georgia, serif; font-size: 21px; }
.timeline-body { max-width: 880px; }
.entry-type { color: var(--ochre-text); margin-bottom: 12px; }
.timeline-body h3 { font-family: Georgia, serif; font-size: clamp(25px, 2.5vw, 38px); font-weight: 500; letter-spacing: -.025em; line-height: 1.15; margin: 0 0 15px; }
.timeline-body > p:not(.entry-type) { color: var(--ink-soft); font-size: 17px; line-height: 1.75; margin: 0 0 20px; max-width: 780px; }
.entry-sources { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.entry-sources a { border-bottom: 2px solid #b6842d; color: #684500; display: inline-block; font-size: 15px; font-weight: 800; padding: 3px 0 4px; }
.entry-sources a:hover { color: var(--forest); border-color: var(--forest); }

.people { padding-bottom: clamp(86px, 11vw, 150px); padding-top: clamp(82px, 10vw, 138px); }
.people-heading { align-items: start; }
.people-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.person-card { border-left: 1px solid var(--line); border-top: 1px solid var(--line); min-height: 300px; padding: 28px clamp(22px, 2.5vw, 38px) 35px; }
.person-card:nth-child(3n) { border-right: 1px solid var(--line); }
.person-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
.person-number { color: var(--ochre-text); font-size: 14px; font-weight: 800; letter-spacing: .08em; margin: 0 0 30px; }
.person-card h3 { font-family: Georgia, serif; font-size: 28px; font-weight: 500; letter-spacing: -.025em; margin: 0 0 25px; }
.person-card ul { list-style: none; margin: 0; padding: 0; }
.person-card li { border-top: 1px solid #e4dfd4; color: var(--ink-soft); line-height: 1.5; padding: 12px 0; }
.person-card li span { display: block; font-size: 16px; }
.person-card li small { color: var(--ochre-text); display: block; font-size: 14px; font-weight: 800; letter-spacing: .02em; margin-top: 5px; text-transform: none; }
.other-people { background: var(--cream); display: grid; gap: 24px; grid-template-columns: 180px minmax(0,1.5fr) minmax(260px,.7fr); margin-top: 46px; padding: 30px 34px; }
.other-people .section-kicker { margin: 5px 0 0; }
.other-people > div { display: flex; flex-wrap: wrap; gap: 9px; }
.other-people > div span { background: white; border: 1px solid #c9c1b1; border-radius: 999px; font-size: 15px; font-weight: 700; padding: 9px 13px; }
.other-people > p:last-child { color: var(--ink-soft); font-size: 15px; line-height: 1.65; margin: 2px 0 0; }

.sources { background: #e6dfcf; padding-bottom: clamp(82px, 10vw, 140px); padding-top: clamp(80px, 9vw, 125px); }
.sources-heading { align-items: start; }
.source-list { border-top: 1px solid #afa694; }
.source-row { align-items: center; border-bottom: 1px solid #bdb5a4; display: grid; gap: 20px; grid-template-columns: 38px 1fr 30px; padding: 17px 4px; transition: background .15s ease, padding .15s ease; }
.source-row:hover { background: rgba(255,255,255,.42); padding-left: 12px; padding-right: 12px; }
.source-row > span { color: var(--ochre-text); font-size: 14px; font-weight: 800; letter-spacing: .05em; }
.source-row div { display: grid; gap: 4px; }
.source-row strong { font-family: Georgia, serif; font-size: 18px; font-weight: 600; line-height: 1.4; }
.source-row small { color: var(--ink-soft); font-size: 14px; line-height: 1.45; }
.source-row b { color: var(--ochre-text); font-size: 18px; text-align: right; }
.source-note { color: var(--ink-soft); font-size: 15px; line-height: 1.65; margin: 28px 0 0; max-width: 760px; }

.contribute { background: var(--forest); color: white; padding-bottom: clamp(78px, 9vw, 120px); padding-top: clamp(82px, 10vw, 138px); }
.contribute .section-kicker { color: var(--honey-light); }
.contribute-grid { display: grid; gap: clamp(50px, 9vw, 150px); grid-template-columns: minmax(0,1fr) minmax(350px,.9fr); }
.contribute h2 { max-width: 650px; }
.contribute h2 + p { color: #ced9d2; font-size: 17px; line-height: 1.7; margin: 28px 0 0; max-width: 650px; }
.contact-button { margin-top: 34px; }
.temporary-contact { color: #d1dcd5; font-size: 14px; line-height: 1.5; margin: 14px 0 0; }
.wanted-list { border-top: 1px solid rgba(255,255,255,.22); }
.wanted-list p { border-bottom: 1px solid rgba(255,255,255,.22); color: #edf2ef; font-size: 17px; line-height: 1.6; margin: 0; padding: 20px 0; }
.wanted-list span { color: var(--honey-light); display: block; font-size: 14px; font-weight: 800; letter-spacing: .08em; margin-bottom: 7px; text-transform: uppercase; }
.contact-note { border: 1px solid rgba(255,255,255,.28); color: #d0dbd4; font-size: 15px; line-height: 1.6; margin: 54px 0 0; padding: 17px 19px; }
footer { align-items: end; background: #091f16; color: #d0dbd4; display: flex; font-size: 14px; justify-content: space-between; line-height: 1.7; padding-bottom: 35px; padding-top: 35px; }
footer p { margin: 0; }
footer strong { color: white; font-family: Georgia, serif; font-size: 16px; font-weight: 500; }

@media (max-width: 900px) {
  nav a:not(.nav-cta) { display: none; }
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-note { margin: 70px 0 0; max-width: 520px; }
  .principles-grid, .section-heading, .contribute-grid { grid-template-columns: 1fr; }
  .section-heading { align-items: start; }
  .facts-strip { grid-template-columns: repeat(3, 1fr); }
  .facts-strip .facts-note { display: none; }
  .people-grid { grid-template-columns: repeat(2, 1fr); }
  .person-card:nth-child(3n) { border-right: 0; }
  .person-card:nth-child(2n) { border-right: 1px solid var(--line); }
  .person-card:nth-last-child(-n+3) { border-bottom: 0; }
  .person-card:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .other-people { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .site-header { height: 72px; }
  .brand-mark { height: 38px; width: 38px; }
  .brand strong { font-size: 16px; }
  .brand small { font-size: 12px; letter-spacing: .04em; }
  .nav-cta { font-size: 14px; padding: 10px 13px; }
  .nav-cta > span:first-child { display: none; }
  .nav-cta > span:last-child { display: inline; }
  .hero { padding-top: 76px; }
  .hero h1 { font-size: clamp(48px, 15vw, 70px); }
  .hero-lead { font-size: 18px; }
  .button { width: 100%; }
  .facts-strip { grid-template-columns: 1fr; padding: 0 24px; }
  .facts-strip > div, .facts-strip > div + div { border-bottom: 1px solid rgba(23,39,30,.25); border-right: 0; padding: 19px 0; }
  .facts-strip span { transform: none; }
  .principles-grid { gap: 38px; }
  .timeline-entry { gap: 16px; grid-template-columns: 1fr; padding: 30px 0 34px; }
  .timeline-date { align-items: baseline; flex-direction: row; }
  .section-heading { margin-bottom: 48px; }
  .people-grid { grid-template-columns: 1fr; }
  .person-card, .person-card:nth-child(2n), .person-card:nth-child(3n) { border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
  .person-card:nth-last-child(-n+2) { border-bottom: 0; }
  .person-card:last-child { border-bottom: 1px solid var(--line); }
  .source-row { grid-template-columns: 28px 1fr 18px; }
  .source-row strong { font-size: 16px; }
  .contribute-grid { gap: 42px; }
  footer { align-items: start; flex-direction: column; gap: 20px; }
}

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

@media (prefers-contrast: more) {
  :root { --ink-soft: #26372d; --line: #938b7b; --ochre-text: #563900; }
  .hero-note, .contact-note { border-width: 2px; }
  .entry-sources a { border-bottom-color: currentColor; }
}

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


.error-page {
  align-items: center;
  background: var(--forest-deep);
  color: white;
  display: flex;
  min-height: calc(100vh - 86px);
  padding: clamp(70px, 10vw, 140px) clamp(24px, 7vw, 108px);
}
.error-page > div { max-width: 760px; }
.error-page h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 9vw, 110px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .95;
  margin: 0 0 28px;
}
.error-page p { color: #e3ebe6; font-size: 19px; margin: 0 0 34px; }
