:root {
  --navy-950: #07131e;
  --navy-900: #0b1b2a;
  --navy-800: #12283a;
  --paper: #fbfaf6;
  --ivory: #f4f0e7;
  --ink: #15202a;
  --slate: #5e6971;
  --brass: #a98752;
  --brass-light: #d4b77c;
  --line: #cfc3ad;
  --line-dark: rgba(255,255,255,.16);
  --white: #fff;
  --shell: min(100% - 64px, 1180px);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--navy-950);
  background: var(--white);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.shell { width: var(--shell); margin-inline: auto; }
.site-top {
  position: sticky;
  top: 0;
  z-index: 20;
  color: var(--white);
  background: rgba(7,19,30,.97);
  border-bottom: 1px solid var(--line-dark);
}
.top-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--white);
  text-decoration: none;
  flex: none;
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: var(--brass-light);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
}
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-size: .94rem; }
.brand-copy small {
  margin-top: 5px;
  color: rgba(255,255,255,.58);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.top-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
}
.top-nav a {
  color: rgba(255,255,255,.76);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.top-nav a:hover, .top-nav a[aria-current="page"] { color: var(--brass-light); }
.page-hero {
  color: var(--white);
  background: var(--navy-950);
}
.hero-grid {
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0,1.12fr) minmax(360px,.88fr);
}
.hero-copy {
  align-self: center;
  padding: 86px clamp(40px,7vw,108px) 96px max(0px,calc((100vw - 1180px)/2));
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.breadcrumb a { color: var(--brass-light); text-decoration: none; }
.eyebrow {
  margin: 44px 0 18px;
  color: var(--brass-light);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 400; text-wrap: balance; }
h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.2rem,6.5vw,6.2rem);
  letter-spacing: -.055em;
  line-height: .96;
}
.hero-copy > p:last-child {
  max-width: 690px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 1.05rem;
}
.hero-image { position: relative; min-height: 590px; overflow: hidden; }
.hero-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(7,19,30,.42),transparent 45%), linear-gradient(0deg,rgba(7,19,30,.58),transparent 52%);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 26%;
  filter: saturate(.7) contrast(1.06);
}
.page-main { padding: 90px 0 120px; }
.intro-grid {
  display: grid;
  grid-template-columns: minmax(220px,.58fr) minmax(0,1.42fr);
  gap: clamp(50px,9vw,130px);
  align-items: start;
}
.section-label {
  margin: 0;
  color: var(--brass);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.prose { max-width: 790px; }
.prose h2 {
  margin: 0 0 28px;
  font-size: clamp(2.5rem,4.5vw,4.4rem);
  letter-spacing: -.045em;
  line-height: 1.02;
}
.prose h3 {
  margin: 50px 0 16px;
  font-size: clamp(1.7rem,2.8vw,2.5rem);
  letter-spacing: -.025em;
  line-height: 1.12;
}
.prose p { color: var(--slate); margin: 0 0 22px; }
.prose strong { color: var(--ink); }
.fact-strip {
  margin: 86px 0;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3,1fr);
}
.fact {
  min-height: 180px;
  padding: 32px;
  border-right: 1px solid var(--line);
}
.fact:last-child { border-right: 0; }
.fact strong {
  display: block;
  color: var(--brass);
  font-family: var(--serif);
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 1;
}
.fact span { display: block; margin-top: 18px; color: var(--slate); font-size: .88rem; }
.record-list { margin: 72px 0 0; border-top: 1px solid var(--line); }
.record-item {
  display: grid;
  grid-template-columns: 130px minmax(200px,.65fr) minmax(0,1.35fr);
  gap: 30px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}
.record-item > span {
  color: var(--brass);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.record-item h2, .record-item h3 { margin: 0; font-size: 1.65rem; line-height: 1.18; }
.record-item p { margin: 0; color: var(--slate); font-size: .94rem; }
.feature-grid {
  margin-top: 74px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
}
.feature-card {
  min-height: 330px;
  padding: clamp(30px,4vw,52px);
  background: var(--ivory);
  display: flex;
  flex-direction: column;
}
.feature-card .kicker {
  color: var(--brass);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.feature-card h2, .feature-card h3 {
  margin: 54px 0 18px;
  font-size: clamp(1.9rem,3vw,2.8rem);
  line-height: 1.05;
}
.feature-card p { margin: 0 0 26px; color: var(--slate); }
.source-link {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
}
.source-link:hover { color: var(--brass); }
.source-note {
  margin-top: 56px;
  padding: 26px 30px;
  color: var(--slate);
  background: var(--ivory);
  border-left: 3px solid var(--brass);
  font-size: .88rem;
}
.media-list { margin-top: 70px; border-top: 1px solid var(--line); }
.media-item {
  display: grid;
  grid-template-columns: 74px 170px minmax(0,1fr) 26px;
  gap: 24px;
  align-items: center;
  min-height: 108px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.media-item:hover { background: var(--ivory); }
.media-year { color: var(--brass); font-size: .68rem; font-weight: 800; }
.media-outlet { color: var(--slate); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.media-title { font-family: var(--serif); font-size: 1.35rem; line-height: 1.25; }
.media-arrow { color: var(--brass); font-size: 1.25rem; }
.related {
  padding: 86px 0;
  color: var(--white);
  background: var(--navy-900);
}
.related h2 { margin: 0 0 36px; font-size: clamp(2.2rem,4vw,3.8rem); letter-spacing: -.04em; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.related a {
  min-height: 150px;
  padding: 26px;
  color: var(--white);
  background: var(--navy-800);
  border: 1px solid var(--line-dark);
  text-decoration: none;
}
.related a:hover { border-color: var(--brass-light); }
.related small { display: block; color: var(--brass-light); font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; }
.related strong { display: block; margin-top: 22px; font-family: var(--serif); font-size: 1.45rem; font-weight: 400; line-height: 1.2; }
.site-bottom { padding: 54px 0; color: var(--white); background: #050d14; border-top: 1px solid var(--line-dark); }
.bottom-grid { display: grid; grid-template-columns: .8fr 1.4fr .8fr; gap: 64px; align-items: start; }
.bottom-grid p { margin: 0; color: rgba(255,255,255,.52); font-size: .75rem; }
.footer-links { display: grid; justify-items: end; gap: 8px; }
.footer-links a, .footer-links span { color: rgba(255,255,255,.62); font-size: .65rem; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.seo-directory-home { padding: 94px 0; background: #f4f0e7; }
.seo-directory-home .seo-directory-inner { width: min(100% - 64px,1180px); margin-inline: auto; }
.seo-directory-home h2 { max-width: 780px; margin: 12px 0 42px; font: 400 clamp(2.8rem,5vw,5rem)/1 Georgia,"Times New Roman",serif; letter-spacing: -.045em; }
.seo-directory-home p { color: #a98752; font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.seo-directory-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.seo-directory-grid a { min-height: 132px; padding: 25px; color: #fff; background: #12283a; border: 1px solid rgba(255,255,255,.14); font: 400 1.35rem/1.2 Georgia,"Times New Roman",serif; text-decoration: none; }
.seo-directory-grid a:hover { border-color: #d4b77c; }
.not-found { min-height: 100vh; display: grid; place-items: center; padding: 40px; color: var(--white); background: var(--navy-950); text-align: center; }
.not-found h1 { font-size: clamp(4rem,14vw,9rem); }
.not-found p { color: rgba(255,255,255,.65); }
.not-found a { display: inline-block; margin-top: 24px; padding: 12px 18px; color: var(--navy-950); background: var(--brass-light); text-decoration: none; font-weight: 750; }

@media (max-width: 920px) {
  :root { --shell: min(100% - 42px,760px); }
  .top-inner { align-items: flex-start; flex-direction: column; padding: 18px 0 15px; gap: 14px; }
  .top-nav { width: 100%; overflow-x: auto; padding-bottom: 4px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 72px var(--shell-pad,21px) 78px; }
  .hero-image { min-height: 570px; }
  .intro-grid { grid-template-columns: 1fr; gap: 30px; }
  .bottom-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { justify-items: start; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 34px); }
  .top-nav { gap: 18px; }
  .page-main { padding: 72px 0 90px; }
  h1 { font-size: clamp(3rem,15vw,4.8rem); }
  .hero-image { min-height: 480px; }
  .fact-strip, .feature-grid, .related-grid, .seo-directory-grid { grid-template-columns: 1fr; }
  .fact { min-height: 140px; border-right: 0; border-bottom: 1px solid var(--line); }
  .fact:last-child { border-bottom: 0; }
  .record-item { grid-template-columns: 1fr; gap: 10px; }
  .media-item { grid-template-columns: 54px 1fr 20px; align-items: start; gap: 12px; padding: 22px 0; }
  .media-outlet { grid-area: 1/2; }
  .media-title { grid-area: 2/2; }
  .media-arrow { grid-area: 1/3/span 2; }
  .seo-directory-home .seo-directory-inner { width: calc(100% - 34px); }
}

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