:root {
  --ink: #071522;
  --ink-soft: #0d2234;
  --paper: #f4f1e9;
  --white: #fffdf8;
  --gold: #d9ad55;
  --gold-pale: #eedaa9;
  --sky: #91a9b8;
  --line-dark: rgba(255, 255, 255, 0.15);
  --line-light: rgba(7, 21, 34, 0.18);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; padding: .75rem 1rem; background: var(--gold); color: var(--ink); font-weight: 800; }
.skip-link:focus { top: 1rem; }
.wrap { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.site-header { position: absolute; inset: 0 0 auto; z-index: 10; color: var(--white); }
.nav { height: 92px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line-dark); }
.brand { text-decoration: none; font-size: .95rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.25rem); }
.nav-links a { text-decoration: none; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.nav-links a:hover { color: var(--gold-pale); }
.nav-cta { border: 1px solid var(--gold); padding: .68rem 1rem; }
.menu-toggle { display: none; border: 1px solid var(--line-dark); background: transparent; color: white; padding: .55rem .7rem; font: inherit; }

.hero, .page-hero { position: relative; overflow: hidden; color: var(--white); background: var(--ink); }
.hero::before, .page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 83% 18%, rgba(217,173,85,.18), transparent 28%), linear-gradient(120deg, transparent 54%, rgba(255,255,255,.035) 54% 55%, transparent 55%); }
.hero::after { content: ""; position: absolute; width: min(42vw, 620px); aspect-ratio: 1; right: -12vw; bottom: -22vw; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; box-shadow: 0 0 0 8vw rgba(255,255,255,.018), 0 0 0 16vw rgba(255,255,255,.012); pointer-events: none; }
.hero-inner { position: relative; min-height: 820px; padding: 210px 0 100px; display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(250px, .6fr); gap: 8vw; align-items: end; }
.eyebrow { display: flex; align-items: center; gap: .8rem; margin: 0 0 1.2rem; color: var(--gold-pale); font-size: .72rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 38px; height: 1px; background: var(--gold); }
h1, h2, h3 { margin-top: 0; }
h1 { max-width: 890px; margin-bottom: 1.7rem; font: 400 clamp(3.7rem, 8.5vw, 8.6rem)/.91 Georgia, "Times New Roman", serif; letter-spacing: -.055em; }
.hero h1 em { color: var(--gold-pale); font-style: italic; font-weight: 400; }
.hero-deck { max-width: 660px; margin: 0 0 2.2rem; color: #dce3e7; font-size: clamp(1.05rem, 1.6vw, 1.35rem); }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.button { display: inline-flex; align-items: center; gap: .85rem; padding: .9rem 1.15rem; border: 1px solid var(--gold); background: var(--gold); color: var(--ink); text-decoration: none; font-size: .76rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.button::after { content: "→"; font-size: 1rem; transition: transform .2s ease; }
.button:hover::after { transform: translateX(4px); }
.button.secondary { background: transparent; color: var(--white); border-color: var(--line-dark); }
.hero-proof { align-self: end; padding: 1.5rem 0 0 1.5rem; border-left: 1px solid var(--gold); }
.hero-proof strong { display: block; margin-bottom: .2rem; color: var(--gold-pale); font: 400 2.8rem/1 Georgia, serif; }
.hero-proof span { display: block; color: #b8c4cb; font-size: .76rem; letter-spacing: .09em; text-transform: uppercase; }

.section { padding: clamp(78px, 10vw, 140px) 0; }
.section.white { background: var(--white); }
.section.dark { color: var(--white); background: var(--ink); }
.section-kicker { margin: 0 0 1.2rem; color: #8b6b2c; font-size: .71rem; font-weight: 850; letter-spacing: .2em; text-transform: uppercase; }
.dark .section-kicker { color: var(--gold-pale); }
.section-title { max-width: 830px; margin-bottom: 2rem; font: 400 clamp(2.7rem, 5.2vw, 5.4rem)/.98 Georgia, serif; letter-spacing: -.04em; }
.lede { max-width: 760px; margin: 0; font-size: clamp(1.15rem, 1.8vw, 1.45rem); line-height: 1.55; color: #394a56; }
.dark .lede { color: #c6d0d5; }
.split { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(3rem, 9vw, 9rem); align-items: start; }
.split-label { position: sticky; top: 2rem; }
.split-label .big-index { display: block; color: var(--gold); font: 400 clamp(4rem, 7vw, 7rem)/1 Georgia, serif; }
.split-label p { max-width: 250px; color: #60717c; }
.statement { margin: 0; font: 400 clamp(2rem, 4vw, 4.2rem)/1.12 Georgia, serif; letter-spacing: -.035em; }
.statement em { color: #8b6b2c; font-style: italic; }
.body-copy { max-width: 720px; }
.body-copy p { margin: 0 0 1.35rem; }

.principles { margin-top: 4rem; border-top: 1px solid var(--line-light); }
.principle { display: grid; grid-template-columns: 90px 1fr 1.4fr; gap: 2rem; padding: 2rem 0; border-bottom: 1px solid var(--line-light); align-items: baseline; }
.principle-index { color: #8b6b2c; font: 400 1.3rem Georgia, serif; }
.principle h3 { margin: 0; font: 400 1.7rem Georgia, serif; }
.principle p { margin: 0; color: #51636e; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 4rem; background: var(--line-dark); border: 1px solid var(--line-dark); }
.feature-card { min-height: 330px; padding: 2rem; background: var(--ink-soft); display: flex; flex-direction: column; }
.feature-card .label { color: var(--gold-pale); font-size: .7rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.feature-card h3 { margin: auto 0 1rem; font: 400 2rem/1.1 Georgia, serif; }
.feature-card p { margin: 0 0 1.5rem; color: #b8c4cb; }
.text-link { width: fit-content; color: var(--gold-pale); text-decoration: none; font-size: .74rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.text-link:hover { text-decoration: underline; text-underline-offset: 5px; }

.record-band { background: var(--gold); }
.record-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.record-item { min-height: 210px; padding: 2rem; border-left: 1px solid rgba(7,21,34,.2); display: flex; flex-direction: column; justify-content: space-between; }
.record-item:first-child { border-left: 0; }
.record-item strong { font: 400 clamp(2.15rem, 3.4vw, 3.9rem)/1 Georgia, serif; letter-spacing: -.035em; }
.record-item span { max-width: 180px; font-size: .72rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }

.quote { max-width: 950px; margin: 0; font: 400 clamp(2.5rem, 5vw, 5.2rem)/1.06 Georgia, serif; letter-spacing: -.04em; }
.quote cite { display: block; margin-top: 2rem; color: var(--gold-pale); font: 800 .72rem/1.4 "Helvetica Neue", sans-serif; letter-spacing: .14em; text-transform: uppercase; }

.page-hero-inner { position: relative; padding: 205px 0 105px; }
.page-hero h1 { max-width: 1000px; font-size: clamp(3.6rem, 7.8vw, 7.8rem); }
.page-hero .lede { color: #c6d0d5; }
.breadcrumbs { margin: 0 0 2rem; color: #9eb0bb; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.breadcrumbs a { color: var(--gold-pale); text-decoration: none; }

.article-layout { display: grid; grid-template-columns: 250px minmax(0, 760px); gap: clamp(3rem, 8vw, 8rem); }
.article-aside { color: #60717c; font-size: .82rem; }
.article-aside strong { display: block; margin-bottom: .8rem; color: var(--ink); text-transform: uppercase; letter-spacing: .1em; font-size: .7rem; }
.article { font-family: Georgia, "Times New Roman", serif; font-size: 1.16rem; line-height: 1.78; }
.article p:first-child::first-letter { float: left; padding: .08em .12em 0 0; color: #8b6b2c; font-size: 4.6em; line-height: .76; }
.article h2 { margin: 2.5rem 0 1rem; font-size: 2rem; line-height: 1.2; }
.article blockquote { margin: 2.5rem 0; padding: 1rem 0 1rem 2rem; border-left: 3px solid var(--gold); font-size: 1.55rem; line-height: 1.45; }

.timeline { margin-top: 3rem; }
.timeline-item { display: grid; grid-template-columns: 150px 1fr; gap: 2rem; padding: 2rem 0; border-top: 1px solid var(--line-light); }
.timeline-item .year { color: #8b6b2c; font: 400 1.5rem Georgia, serif; }
.timeline-item h3 { margin-bottom: .4rem; font: 400 1.7rem Georgia, serif; }
.timeline-item p { margin: 0; color: #51636e; }

.source-list { padding: 0; list-style: none; border-top: 1px solid var(--line-light); }
.source-list li { display: grid; grid-template-columns: 1fr auto; gap: 2rem; padding: 1.25rem 0; border-bottom: 1px solid var(--line-light); }
.source-list a { color: #6f541d; font-weight: 750; text-decoration: none; }

.site-footer { color: #bdc8cf; background: #04101a; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 3rem; padding: 70px 0; }
.footer-mark { color: white; font: 400 2.4rem Georgia, serif; }
.footer-copy { max-width: 440px; }
.footer-heading { margin-bottom: 1rem; color: var(--gold-pale); font-size: .69rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.footer-links { display: grid; gap: .65rem; }
.footer-links a { width: fit-content; text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-bottom { padding: 1.4rem 0; border-top: 1px solid var(--line-dark); font-size: .72rem; color: #81929d; }

@media (max-width: 850px) {
  .nav { height: 76px; }
  .menu-toggle { display: block; }
  .nav-links { display: none; position: absolute; left: 20px; right: 20px; top: 76px; padding: 1.2rem; flex-direction: column; align-items: flex-start; background: var(--ink-soft); border: 1px solid var(--line-dark); }
  .nav-links.open { display: flex; }
  .hero-inner { min-height: auto; padding: 180px 0 80px; grid-template-columns: 1fr; }
  .hero-proof { max-width: 300px; }
  .split, .article-layout { grid-template-columns: 1fr; }
  .split-label { position: static; }
  .principle { grid-template-columns: 50px 1fr; }
  .principle p { grid-column: 2; }
  .feature-grid { grid-template-columns: 1fr; }
  .record-grid { grid-template-columns: 1fr 1fr; }
  .record-item:first-child { border-left: 1px solid rgba(7,21,34,.2); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .wrap { width: min(calc(100% - 28px), var(--max)); }
  h1 { font-size: 3.25rem; }
  .button { width: 100%; justify-content: space-between; }
  .record-grid { grid-template-columns: 1fr; }
  .record-item { min-height: 155px; border-top: 1px solid rgba(7,21,34,.2); }
  .timeline-item { grid-template-columns: 1fr; gap: .4rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
  .source-list li { grid-template-columns: 1fr; gap: .3rem; }
}

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