:root {
  --navy: #102640;
  --navy-deep: #07192b;
  --ink: #0d0d0c;
  --ink-soft: #15130f;
  --ivory: #f3ede1;
  --ivory-muted: #c9c0b2;
  --gold: #d8ad56;
  --gold-soft: #9b7938;
  --rule: rgba(216, 173, 86, 0.5);
  --sans: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ivory);
  background: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 10;
  top: 1rem;
  left: 1rem;
  padding: 0.7rem 1rem;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  transform: translateY(-180%);
}

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

.site-header {
  position: absolute;
  z-index: 2;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 8vw), var(--content));
  min-height: 88px;
  margin-inline: auto;
  border-bottom: 1px solid var(--rule);
}

.wordmark {
  color: var(--gold);
  font-size: 1.25rem;
  letter-spacing: 0.07em;
  text-decoration: none;
}

.site-nav {
  display: flex;
  gap: clamp(1.1rem, 2.5vw, 2.8rem);
}

.site-nav a {
  color: var(--ivory-muted);
  font-family: var(--sans);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover {
  color: var(--gold);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  align-items: center;
  min-height: 780px;
  padding: 150px max(4vw, calc((100vw - var(--content)) / 2)) 85px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(16, 38, 64, 0.98) 0%, rgba(16, 38, 64, 0.93) 48%, rgba(7, 25, 43, 0.92) 100%);
  border-bottom: 1px solid var(--gold-soft);
}

.hero::after {
  position: absolute;
  right: -12vw;
  bottom: -340px;
  width: 850px;
  height: 520px;
  border: 1px solid rgba(216, 173, 86, 0.18);
  border-radius: 50%;
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 690px;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1.35rem;
  color: var(--gold);
  font-size: clamp(4.4rem, 7.2vw, 7.2rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

h1::after {
  display: block;
  width: 72px;
  height: 1px;
  margin-top: 1.55rem;
  background: var(--gold);
  content: "";
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 1.7rem;
  color: var(--ivory);
  font-size: clamp(1.23rem, 1.8vw, 1.58rem);
  line-height: 1.45;
}

.hero-status {
  max-width: 570px;
  margin-bottom: 2.4rem;
  padding-left: 1.25rem;
  color: var(--ivory-muted);
  border-left: 2px solid var(--gold);
  font-size: 1rem;
  font-style: italic;
}

.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.85rem 1.45rem;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, background-color 160ms ease;
}

.primary-cta:hover,
.secondary-cta:hover {
  color: var(--navy-deep);
  background: var(--gold);
}

.hero-emblem {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin: 0;
}

.hero-emblem img {
  width: min(100%, 500px);
  aspect-ratio: 1;
  height: auto;
  object-fit: fill;
  mix-blend-mode: screen;
}

.status-section,
.content-section,
.updates-section,
.site-footer {
  padding-inline: max(4vw, calc((100vw - var(--content)) / 2));
}

.status-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(3rem, 8vw, 8rem);
  padding-top: 80px;
  padding-bottom: 80px;
  background: var(--ink-soft);
  border-bottom: 1px solid var(--rule);
}

.section-number {
  margin-bottom: 1rem;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.25em;
}

h2 {
  margin-bottom: 0;
  color: var(--gold);
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.status-copy,
.section-copy {
  max-width: 670px;
  color: var(--ivory-muted);
}

.status-copy p:last-child,
.section-copy p:last-child {
  margin-bottom: 0;
}

.status-line,
.quiet-note {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.content-section {
  display: grid;
  grid-template-columns: minmax(270px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 9vw, 9rem);
  padding-top: 110px;
  padding-bottom: 110px;
  border-bottom: 1px solid var(--rule);
}

.navy-band {
  background: var(--navy-deep);
}

.ink-band {
  background: var(--ink);
}

.lead-copy {
  color: var(--ivory);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.45;
}

.section-copy {
  padding-left: clamp(1.6rem, 4vw, 4.5rem);
  border-left: 1px solid var(--rule);
}

.identity-line {
  margin-top: 2.25rem;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.73rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.identity-line span {
  padding-inline: 0.7rem;
}

.imprint-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 230px);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  max-width: 820px;
}

.imprint-emblem {
  margin: 0;
  text-align: center;
}

.imprint-emblem img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
}

.imprint-emblem figcaption {
  margin-top: 0.8rem;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.updates-section {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.8rem;
  align-items: center;
  padding-top: 65px;
  padding-bottom: 65px;
  background: var(--ink-soft);
  border-bottom: 1px solid var(--rule);
}

.updates-mark svg {
  width: 50px;
  height: 50px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
}

.updates-section h2 {
  margin-bottom: 0.4rem;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.updates-section p {
  margin-bottom: 0;
  color: var(--ivory-muted);
}

.secondary-cta {
  min-width: 265px;
}

.site-footer {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #9f978b;
  background: #080807;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.site-footer p {
  max-width: 900px;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .site-header {
    position: relative;
    width: 100%;
    min-height: auto;
    padding: 1.25rem 5vw;
    background: var(--navy);
  }

  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 85px 5vw 70px;
  }

  .hero-emblem {
    grid-row: 1;
    justify-content: flex-start;
    margin-bottom: 2rem;
  }

  .hero-emblem img {
    width: min(70vw, 360px);
  }

  h1 {
    font-size: clamp(3.8rem, 15vw, 6rem);
  }

  .status-section,
  .content-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 75px 5vw;
  }

  .section-copy {
    padding: 0;
    border: 0;
  }

  .imprint-copy {
    grid-template-columns: minmax(0, 1fr) minmax(150px, 210px);
  }

  .updates-section {
    grid-template-columns: auto 1fr;
    padding: 55px 5vw;
  }

  .secondary-cta {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .site-footer {
    padding-inline: 5vw;
  }
}

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

  .wordmark {
    font-size: 1.05rem;
  }

  .hero {
    padding-top: 55px;
  }

  .hero-lede br {
    display: none;
  }

  .primary-cta,
  .secondary-cta {
    width: 100%;
    min-width: 0;
  }

  .updates-section {
    grid-template-columns: 1fr;
  }

  .updates-mark {
    display: none;
  }

  .secondary-cta {
    grid-column: auto;
  }

  .identity-line span {
    padding-inline: 0.3rem;
  }

  .imprint-copy {
    grid-template-columns: 1fr;
  }

  .imprint-emblem {
    width: min(70vw, 230px);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
