:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-soft: #f7fbff;
  --bg-blue: #eaf5ff;
  --ink: #071b32;
  --muted: #53677d;
  --line: #cfdce8;
  --blue: #1b78b8;
  --blue-deep: #084a7e;
  --magenta: #d30b67;
  --gold: #c28a24;
  --shadow: 0 18px 44px rgba(8, 33, 58, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 30;
  transform: translateY(-140%);
  background: var(--ink);
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 4px;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px 40px;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(194, 138, 36, 0.45);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    linear-gradient(180deg, #ffffff 0 48%, #7cc9ee 49% 100%);
  box-shadow: 0 7px 20px rgba(8, 33, 58, 0.12);
  flex: 0 0 auto;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  background: #ffffff;
  padding: 2px;
}

.brand-mark span {
  display: none;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 16px;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  position: relative;
  color: var(--ink);
  font-size: 15px;
  text-decoration: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(500px, 1.02fr);
  gap: 44px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  min-height: calc(100svh - 140px);
  padding: 48px 40px 0;
}

.hero-copy {
  align-self: end;
  padding-bottom: 42px;
}

.hero h1,
.section-heading h2,
.moment-copy h2,
.race-copy h2,
.legacy-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 680px;
  font-size: 64px;
}

.hero h1::after,
.section-heading h2::after,
.moment-copy h2::after,
.race-copy h2::after,
.legacy-copy h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 18px;
  background: var(--gold);
}

.hero-subtitle {
  max-width: 600px;
  margin: 24px 0 0;
  color: var(--blue-deep);
  font-size: 20px;
  line-height: 1.45;
}

.hero-quote {
  margin: 32px 0 0;
  color: var(--ink);
}

.hero-quote blockquote {
  position: relative;
  margin: 0;
  max-width: 530px;
  padding-left: 28px;
  font-family: var(--serif);
  font-size: 31px;
  font-style: italic;
  line-height: 1.25;
}

.hero-quote blockquote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border-left: 3px solid var(--gold);
  border-top: 3px solid var(--gold);
}

.hero-quote figcaption {
  margin-top: 10px;
  padding-left: 28px;
  color: var(--muted);
  font-size: 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(8, 33, 58, 0.14);
}

.button.primary {
  background: var(--ink);
  border-color: var(--ink);
  color: #ffffff;
}

.button.secondary {
  background: #ffffff;
  color: var(--ink);
}

.hero-media {
  align-self: stretch;
  display: flex;
  align-items: center;
}

.photo-frame {
  margin: 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-frame figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.hero-photo {
  width: 100%;
  aspect-ratio: 1.5 / 1;
}

.hero-bridge {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: calc(100% + 80px);
  margin-left: -40px;
  padding: 22px 40px;
  background: linear-gradient(90deg, #f3f9ff, #ffffff);
  border-top: 1px solid var(--line);
}

.hero-bridge article {
  padding: 0 28px;
  border-left: 1px solid rgba(27, 120, 184, 0.18);
}

.hero-bridge article:first-child {
  border-left: 0;
  padding-left: 0;
}

.hero-bridge strong,
.hero-bridge span {
  display: block;
}

.hero-bridge strong {
  color: var(--blue-deep);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.1;
}

.hero-bridge span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.story-band,
.purpose-section,
.timeline-section,
.press-section,
.documents-section,
.video-section,
.archive-section,
.legacy-section {
  padding: 86px 40px;
}

.story-band {
  background: var(--bg-blue);
}

.purpose-section {
  background: #ffffff;
  border-top: 1px solid rgba(8, 74, 126, 0.12);
  border-bottom: 1px solid rgba(8, 74, 126, 0.12);
}

.purpose-inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.46fr) minmax(0, 1fr);
  gap: 58px;
  align-items: start;
}

.purpose-kicker {
  margin: 0 0 14px;
  color: var(--magenta);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.purpose-title h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

.purpose-title h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 18px;
  background: var(--gold);
}

.purpose-copy {
  color: #18304a;
  font-size: 20px;
  line-height: 1.68;
}

.purpose-copy p {
  margin: 0;
}

.purpose-copy p + p {
  margin-top: 18px;
}

.purpose-copy p:last-child {
  padding-left: 20px;
  border-left: 3px solid var(--gold);
  color: var(--blue-deep);
  font-weight: 700;
}

.origin-proof {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: 22px;
  margin-top: 36px;
}

.origin-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(8, 33, 58, 0.1);
}

.origin-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.origin-photo figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.origin-documents {
  display: grid;
  gap: 14px;
}

.origin-document {
  display: grid;
  gap: 7px;
  align-content: center;
  min-height: 132px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #f7fbff, #ffffff);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(8, 33, 58, 0.08);
}

.origin-document:hover,
.origin-document:focus-visible {
  border-color: var(--blue);
  background: linear-gradient(180deg, #eef8ff, #ffffff);
}

.origin-document:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.origin-document span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.origin-document strong {
  color: var(--blue-deep);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.12;
}

.origin-document small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.section-heading,
.purpose-inner,
.story-grid,
.timeline,
.archive-section .gallery,
.press-grid,
.documents-grid,
.video-grid,
.complete-archive,
.legacy-section,
.moment-section,
.race-section {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
  gap: 52px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading.compact {
  align-items: start;
}

.section-heading.single {
  display: block;
  margin-bottom: 32px;
}

.section-heading h2,
.moment-copy h2,
.race-copy h2,
.legacy-copy h2 {
  font-size: 46px;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 58px;
  align-items: start;
}

.story-copy {
  color: #1a3148;
  font-size: 20px;
}

.story-copy p {
  margin: 0;
}

.story-copy p + p {
  margin-top: 22px;
}

.meaning-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(8, 33, 58, 0.16);
}

.meaning-list li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(8, 33, 58, 0.16);
}

.meaning-list span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1;
}

.meaning-list strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.timeline-section {
  background: #ffffff;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
  padding: 42px 0 0;
  list-style: none;
  border-top: 1px solid rgba(194, 138, 36, 0.5);
}

.timeline li {
  min-width: 0;
}

.timeline-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: var(--blue-deep);
  background: #ffffff;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.timeline-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.timeline strong,
.timeline span:not(.timeline-icon) {
  display: block;
}

.timeline strong {
  color: var(--blue-deep);
  font-size: 15px;
  line-height: 1.25;
}

.timeline span:not(.timeline-icon) {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.moment-section,
.race-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 64px;
  align-items: center;
  padding: 92px 40px;
}

.moment-media .photo-frame {
  aspect-ratio: 1.5 / 1;
}

.moment-copy p,
.race-copy p,
.legacy-copy p,
.legacy-panel p {
  margin: 24px 0 0;
  color: #21384f;
  font-size: 19px;
  line-height: 1.7;
}

.race-section {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.race-photo {
  aspect-ratio: 1.5 / 1;
}

.archive-section {
  background: #ffffff;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.gallery-item {
  position: relative;
  display: block;
  height: 220px;
  padding: 0;
  overflow: hidden;
  color: #ffffff;
  background: #0b2138;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
  transform: scale(1.01);
  transition: transform 220ms ease, filter 220ms ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 27, 50, 0) 45%, rgba(7, 27, 50, 0.82) 100%);
}

.gallery-item span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: saturate(1.08);
  transform: scale(1.06);
}

.gallery-item:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.legacy-section {
  display: grid;
  grid-template-columns: minmax(270px, 0.62fr) minmax(0, 1fr);
  gap: 68px;
  align-items: start;
  background:
    linear-gradient(90deg, rgba(27, 120, 184, 0.09), rgba(255, 255, 255, 0) 55%),
    #f7fbff;
}

.legacy-panel {
  border-left: 3px solid var(--gold);
  padding-left: 32px;
}

.legacy-panel p {
  margin-top: 0;
  font-family: var(--serif);
  color: var(--blue-deep);
  font-size: 28px;
  font-style: italic;
  line-height: 1.45;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 32px;
}

.logo-row img {
  width: auto;
  max-width: 210px;
  height: 82px;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 10px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 40px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  font-size: 14px;
}

.site-footer a {
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(7, 27, 50, 0.82);
}

.lightbox.is-open {
  display: flex;
}

.lightbox figure {
  width: min(1040px, 94vw);
  max-height: 88vh;
  margin: 0;
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

.lightbox img {
  width: 100%;
  max-height: 74vh;
  object-fit: contain;
  background: #071b32;
}

.lightbox figcaption {
  padding: 14px 18px;
  color: var(--ink);
  font-size: 15px;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  cursor: pointer;
}

.lightbox-close svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.press-section {
  background: #ffffff;
}

.press-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 18px;
}

.press-card,
.press-note {
  background: linear-gradient(180deg, #f7fbff, #ffffff);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 26px;
  box-shadow: 0 14px 30px rgba(8, 33, 58, 0.08);
}

.press-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.press-card blockquote {
  margin: 12px 0 18px;
  color: var(--blue-deep);
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  line-height: 1.25;
}

.press-card p,
.press-note p {
  color: #21384f;
  font-size: 17px;
  line-height: 1.65;
}

.press-note h3 {
  margin: 0;
  color: var(--blue-deep);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
}

.press-note a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue-deep);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
}

.documents-section {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.documents-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.documents-context,
.documents-list {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 14px 30px rgba(8, 33, 58, 0.08);
}

.documents-context {
  padding: 30px;
}

.documents-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.documents-context p {
  margin: 0;
  color: #21384f;
  font-size: 18px;
  line-height: 1.65;
}

.documents-context p + p {
  margin-top: 20px;
}

.documents-context blockquote {
  margin: 22px 0;
  padding-left: 20px;
  color: var(--blue-deep);
  border-left: 3px solid var(--gold);
  font-family: var(--serif);
  font-size: 27px;
  font-style: italic;
  line-height: 1.36;
}

.documents-list {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.document-link {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 18px;
  padding: 18px 20px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.document-link:last-child {
  border-bottom: 0;
}

.document-link.is-live {
  background: linear-gradient(90deg, rgba(27, 120, 184, 0.11), rgba(255, 255, 255, 0));
}

.document-link.is-live:hover,
.document-link.is-live:focus-visible {
  background: linear-gradient(90deg, rgba(27, 120, 184, 0.18), rgba(255, 255, 255, 0.35));
}

.document-link.is-live:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -3px;
}

.document-type,
.document-file,
.document-state {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.document-type {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

.document-link strong {
  grid-column: 1 / 2;
  color: var(--blue-deep);
  font-size: 17px;
  line-height: 1.34;
}

.document-state {
  grid-column: 2 / 3;
  grid-row: 1 / span 3;
  align-self: center;
  padding: 7px 10px;
  color: #ffffff;
  background: var(--ink);
  border-radius: 4px;
  font-weight: 800;
  white-space: nowrap;
}

.document-link.is-pending .document-state {
  color: var(--blue-deep);
  background: #eef4fa;
}
.video-section {
  background: linear-gradient(180deg, #f7fbff, #ffffff);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.video-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 16px 34px rgba(8, 33, 58, 0.1);
}

.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #071b32;
}

.video-card h3 {
  margin: 0;
  padding: 14px 16px 16px;
  color: var(--blue-deep);
  font-size: 16px;
  line-height: 1.3;
}

.complete-archive {
  margin-top: 56px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.complete-archive-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.complete-archive-head.simple {
  justify-content: flex-end;
}

.complete-archive h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.08;
}

.complete-archive p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.archive-count {
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}

.archive-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
}

.archive-filter {
  min-height: 38px;
  padding: 8px 12px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.archive-filter[aria-pressed="true"] {
  color: #ffffff;
  background: var(--ink);
  border-color: var(--ink);
}

.complete-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 9px;
}

.complete-archive-item {
  position: relative;
  display: block;
  height: 118px;
  padding: 0;
  overflow: hidden;
  color: #ffffff;
  background: #071b32;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
}

.complete-archive-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease, filter 180ms ease;
}

.complete-archive-item:hover img,
.complete-archive-item:focus-visible img {
  filter: saturate(1.08);
  transform: scale(1.07);
}

.complete-archive-item:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.archive-more {
  margin: 24px auto 0;
}

.archive-more[hidden] {
  display: none;
}
@media (max-width: 1120px) {
  .press-grid,
  .documents-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    align-self: auto;
    padding-bottom: 0;
  }

  .hero h1 {
    font-size: 60px;
  }

  .timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery,
  .video-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .complete-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  body {
    font-size: 16px;
  }

  .site-header {
    position: static;
    align-items: flex-start;
    padding: 16px 22px;
  }

  .site-nav {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .hero,
  .purpose-section,
  .story-band,
  .timeline-section,
  .press-section,
  .documents-section,
  .video-section,
  .archive-section,
  .moment-section,
  .race-section,
  .legacy-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero {
    gap: 28px;
    padding-top: 34px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 19px;
  }

  .hero-quote blockquote {
    font-size: 26px;
  }

  .hero-bridge {
    grid-template-columns: 1fr;
    width: calc(100% + 44px);
    margin-left: -22px;
    padding: 16px 22px;
  }

  .hero-bridge article {
    padding: 14px 0;
    border-left: 0;
    border-top: 1px solid rgba(27, 120, 184, 0.18);
  }

  .hero-bridge article:first-child {
    border-top: 0;
  }

  .section-heading,
  .purpose-inner,
  .origin-proof,
  .story-grid,
  .press-grid,
  .documents-grid,
  .moment-section,
  .race-section,
  .legacy-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-heading h2,
  .purpose-title h2,
  .moment-copy h2,
  .race-copy h2,
  .legacy-copy h2 {
    font-size: 40px;
  }

  .story-copy,
  .purpose-copy,
  .section-heading p {
    font-size: 18px;
  }

  .race-section .race-copy {
    order: 2;
  }

  .race-section .race-photo {
    order: 1;
  }
}

@media (max-width: 620px) {
  .documents-context {
    padding: 22px;
  }

  .documents-context blockquote {
    font-size: 23px;
  }

  .document-link {
    grid-template-columns: 1fr;
  }

  .document-state {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .press-card,
  .press-note {
    padding: 20px;
  }

  .press-card blockquote {
    font-size: 24px;
  }

  .site-header {
    display: block;
  }

  .site-nav {
    justify-content: flex-start;
    margin-top: 14px;
  }

  .hero h1 {
    font-size: 37px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .section-heading h2,
  .purpose-title h2,
  .moment-copy h2,
  .race-copy h2,
  .legacy-copy h2 {
    font-size: 34px;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 30px;
  }

  .timeline li {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    column-gap: 14px;
  }

  .timeline-icon {
    grid-row: span 2;
    margin-bottom: 0;
  }

  .timeline span:not(.timeline-icon) {
    margin-top: 4px;
  }

  .gallery,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .complete-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .complete-archive-head {
    display: block;
  }

  .archive-count {
    margin-top: 10px;
    text-align: left;
  }

  .gallery-item {
    height: 260px;
  }

  .legacy-panel {
    padding-left: 18px;
  }

  .legacy-panel p {
    font-size: 23px;
  }

  .logo-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .logo-row img {
    width: 100%;
    height: 88px;
  }

  .site-footer {
    display: block;
    padding: 22px;
  }

  .site-footer a {
    display: inline-block;
    margin-top: 12px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .has-js .reveal {
    opacity: 1;
    transform: none;
  }
}









.document-page-body {
  min-height: 100vh;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 34%, #eef7ff 100%);
}

.document-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 14px 40px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(194, 138, 36, 0.45);
  backdrop-filter: blur(16px);
}

.document-brand {
  min-width: 0;
}

.document-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--blue-deep);
  font-weight: 800;
  text-decoration: none;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(8, 33, 58, 0.08);
}

.document-back:hover,
.document-back:focus-visible {
  border-color: var(--blue);
  color: #ffffff;
  background: var(--blue-deep);
}

.document-main {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: 74px 28px 96px;
}

.document-hero {
  padding: 0 0 30px;
  border-bottom: 1px solid rgba(8, 74, 126, 0.18);
}

.document-hero .eyebrow {
  margin: 0 0 16px;
  color: var(--magenta);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.document-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: 50px;
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink);
}

.document-source {
  max-width: 740px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.document-article,
.document-media,
.document-related {
  margin-top: 34px;
  padding: 34px;
  border: 1px solid rgba(8, 74, 126, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(8, 33, 58, 0.08);
}

.document-article p {
  margin: 0 0 21px;
  color: #18304a;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.72;
}

.document-article p:last-child {
  margin-bottom: 0;
}

.document-article p:first-child {
  color: var(--blue-deep);
  font-size: 24px;
  line-height: 1.45;
}

.document-media h2,
.document-related h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0;
}

.document-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.document-media figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.document-media img {
  width: 100%;
  min-height: 190px;
  max-height: 360px;
  object-fit: contain;
  background: #f6f8fa;
}

.document-media figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.document-related ul {
  margin: 0;
  padding-left: 20px;
}

.document-related li {
  margin: 8px 0;
}

.document-related a {
  color: var(--blue-deep);
  font-weight: 800;
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .document-topbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 20px;
  }

  .document-back {
    width: 100%;
  }

  .document-main {
    padding: 46px 18px 72px;
  }

  .document-hero h1 {
    font-size: 36px;
  }

  .document-article,
  .document-media,
  .document-related {
    padding: 22px;
  }

  .document-article p {
    font-size: 18px;
  }

  .document-article p:first-child {
    font-size: 21px;
  }

  .document-media-grid {
    grid-template-columns: 1fr;
  }
}