:root {
  --ink: #17231f;
  --green: #0b3028;
  --green-soft: #18463b;
  --cream: #f3eddf;
  --cream-deep: #e6dcc9;
  --wine: #7b3037;
  --gold: #c0a264;
  --white: #fffdf7;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a { color: inherit; }

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  color: var(--white);
  background: rgba(11, 48, 40, .97);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
}

nav.shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  color: var(--white);
  font: 700 24px/1 var(--serif);
  letter-spacing: .18em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 21px;
  font-size: 13px;
}

.nav-links a {
  color: rgba(255, 253, 247, .78);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a.active { color: var(--white); }

.breadcrumbs {
  padding: 17px 0;
  color: rgba(255, 253, 247, .7);
  background: #071f1a;
  font-size: 13px;
}

.breadcrumbs ol {
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.breadcrumbs li + li::before { content: "›"; margin-right: 8px; color: var(--gold); }
.breadcrumbs a { color: var(--white); text-underline-offset: 4px; }

.mobile-menu { display: none; position: relative; }

.mobile-menu summary {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
}

.mobile-links {
  position: absolute;
  right: 0;
  top: 50px;
  width: 230px;
  padding: 14px;
  background: var(--green);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
}

.mobile-links a {
  display: block;
  padding: 12px 8px;
  color: var(--white);
  text-decoration: none;
}

.article-hero {
  color: var(--white);
  background: var(--green);
  overflow: hidden;
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  min-height: 680px;
}

.article-hero-copy {
  padding: clamp(70px, 9vw, 128px) clamp(34px, 6vw, 78px) clamp(70px, 9vw, 118px) 0;
  align-self: center;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold);
  font: 700 12px/1.35 var(--sans);
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin-top: 0;
  font-family: var(--serif);
  font-weight: 400;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(48px, 5.6vw, 79px);
  line-height: .99;
  letter-spacing: -.035em;
}

.title-tail {
  display: block;
  margin-top: 18px;
  color: var(--gold);
  font-size: .43em;
  line-height: 1.15;
  letter-spacing: -.012em;
}

.standfirst {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 253, 247, .82);
  font: 19px/1.65 var(--serif);
}

.article-hero-media {
  position: relative;
  min-height: 560px;
  margin: 0;
}

.article-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.history-article-hero-media {
  min-height: 0;
  align-self: center;
  background: var(--green-soft);
}

.history-article-hero-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.article-hero-media figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  padding: 9px 12px;
  color: rgba(255, 253, 247, .86);
  background: rgba(11, 48, 40, .7);
  font-size: 12px;
}

.article-wrap {
  padding: clamp(74px, 9vw, 122px) 0 100px;
}

.article-body {
  width: min(780px, 100%);
  margin: 0 auto;
}

.article-body > p,
.article-body section > p,
.article-body li {
  font: 18px/1.78 var(--serif);
}

.article-body .opening {
  margin-top: 0;
  font-size: 23px;
  line-height: 1.65;
}

.article-body section { margin-top: 76px; }

.article-body h2 {
  margin-bottom: 23px;
  color: var(--green);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.025em;
}

.article-body h3 {
  margin: 34px 0 13px;
  color: var(--wine);
  font-size: 27px;
}

.fact-band {
  width: min(980px, calc(100vw - 48px));
  margin: 66px 50% 0;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--white);
  background: var(--green);
}

.fact-band div { padding: 30px; border-right: 1px solid rgba(255,255,255,.14); }
.fact-band div:last-child { border-right: 0; }
.fact-band strong { display: block; margin-bottom: 7px; color: var(--gold); font: 400 30px/1 var(--serif); }
.fact-band span { color: rgba(255,253,247,.72); font-size: 13px; line-height: 1.45; }
.fact-link { display: block; color: inherit; text-decoration: none; }
.fact-link span::after { content: "  →"; color: var(--gold); }
.fact-link:hover strong, .fact-link:focus-visible strong { color: var(--white); }
.fact-link:hover span, .fact-link:focus-visible span { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.fact-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 6px; }

.story-photo {
  width: min(980px, calc(100vw - 48px));
  margin: 64px 50% 0;
  transform: translateX(-50%);
}

.story-photo img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  background: var(--cream-deep);
}

.story-photo.contain img { width: 100%; height: auto; max-height: none; object-fit: contain; }

figcaption {
  padding-top: 12px;
  color: rgba(23, 35, 31, .68);
  font-size: 13px;
  line-height: 1.5;
}

.pullquote {
  margin: 60px 0;
  padding: 8px 0 8px 28px;
  color: var(--wine);
  border-left: 4px solid var(--gold);
  font: 34px/1.25 var(--serif);
}

.practical-list {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.practical-list li {
  padding: 17px 19px 17px 48px;
  position: relative;
  background: var(--cream-deep);
}

.practical-list li::before {
  content: "✓";
  position: absolute;
  top: 17px;
  left: 19px;
  color: var(--wine);
  font: 700 17px/1.5 var(--sans);
}

.inline-link {
  color: var(--wine);
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.research-notes {
  margin-top: 78px;
  padding: 34px;
  background: var(--cream-deep);
}

.research-notes h2 {
  margin-bottom: 15px;
  font-size: 28px;
}

.research-notes p,
.research-notes li {
  font: 14px/1.65 var(--sans) !important;
}

.research-notes ul { margin: 14px 0 0; padding-left: 20px; }
.research-notes li + li { margin-top: 9px; }

.related {
  padding: 80px 0;
  color: var(--white);
  background: var(--wine);
}

.related-card {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 60px;
  align-items: center;
}

.related h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 4.5vw, 58px);
}

.related p { color: rgba(255,253,247,.78); line-height: 1.7; }

.button {
  min-height: 48px;
  margin-top: 12px;
  padding: 14px 20px;
  display: inline-flex;
  align-items: center;
  color: var(--green);
  background: var(--gold);
  font-weight: 700;
  text-decoration: none;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255,253,247,.66);
  background: #071f1a;
  font-size: 12px;
}

.site-footer .shell {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.site-footer a { color: var(--white); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .mobile-menu { display: block; }
  .article-hero-grid, .related-card { grid-template-columns: 1fr; }
  .article-hero-grid { min-height: 0; }
  .article-hero-copy { padding-right: 0; }
  .article-hero-media { min-height: 480px; }
  .history-article-hero-media { min-height: 0; }
  .fact-band { grid-template-columns: 1fr; }
  .fact-band div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .fact-band div:last-child { border-bottom: 0; }
}

@media (max-width: 650px) {
  .shell { width: min(100% - 30px, 1180px); }
  nav.shell { min-height: 68px; }
  h1 { font-size: clamp(43px, 13vw, 62px); }
  .article-hero-copy { padding: 64px 0 55px; }
  .article-hero-media { min-height: 390px; }
  .history-article-hero-media { min-height: 0; }
  .history-article-hero-media figcaption { position: static; padding: 10px 12px 12px; background: #071f1a; line-height: 1.45; }
  .article-body > p, .article-body section > p, .article-body li { font-size: 17px; line-height: 1.72; }
  .article-body .opening { font-size: 21px; }
  .article-body section { margin-top: 58px; }
  .story-photo, .fact-band { width: calc(100vw - 30px); }
  .pullquote { font-size: 29px; }
  .research-notes { margin-right: -5px; margin-left: -5px; padding: 25px; }
  .site-footer .shell { display: grid; gap: 6px; }
}
