:root {
  --navy: #0b203d;
  --navy-soft: #173657;
  --gold: #d0a857;
  --gold-soft: #ead8ae;
  --paper: #f7f3ea;
  --paper-deep: #efe8da;
  --ink-muted: #536173;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--navy);
  font-family: Arial, Helvetica, sans-serif;
}

body::selection {
  background: var(--gold-soft);
  color: var(--navy);
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.ambient {
  border: 1px solid rgba(11, 32, 61, 0.09);
  border-radius: 999px;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.ambient-one {
  height: 670px;
  right: -240px;
  top: -270px;
  width: 670px;
}

.ambient-two {
  bottom: -330px;
  height: 620px;
  left: -300px;
  width: 620px;
}

.site-header,
.hero,
footer {
  margin-inline: auto;
  max-width: 1280px;
  width: calc(100% - 96px);
}

.site-header {
  align-items: center;
  border-bottom: 1px solid rgba(11, 32, 61, 0.12);
  display: flex;
  justify-content: space-between;
  min-height: 124px;
}

.brand img {
  display: block;
  height: auto;
  width: 216px;
}

.status-pill {
  align-items: center;
  border: 1px solid rgba(11, 32, 61, 0.15);
  border-radius: 999px;
  color: var(--ink-muted);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 700;
  gap: 9px;
  letter-spacing: 0.08em;
  padding: 12px 16px;
  text-transform: uppercase;
}

.status-pill span {
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(208, 168, 87, 0.16);
  height: 7px;
  width: 7px;
}

.hero {
  align-items: center;
  display: grid;
  gap: 72px;
  grid-template-columns: minmax(0, 1.17fr) minmax(350px, 0.83fr);
  min-height: calc(100svh - 207px);
  padding-block: 64px 54px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  align-items: center;
  color: #8c6d2e;
  display: flex;
  font-size: 0.78rem;
  font-weight: 800;
  gap: 13px;
  letter-spacing: 0.18em;
  margin: 0 0 25px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: var(--gold);
  content: "";
  height: 1px;
  width: 42px;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 6vw, 6.6rem);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 0.93;
  margin: 0;
  text-wrap: balance;
}

h1 em {
  color: #a57b2b;
  font-weight: 500;
}

.lead {
  color: var(--ink-muted);
  font-size: 1.1rem;
  line-height: 1.75;
  margin: 32px 0 0;
  max-width: 630px;
}

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

.button {
  align-items: center;
  border-radius: 4px;
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 800;
  gap: 18px;
  justify-content: center;
  min-height: 53px;
  padding: 0 24px;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible {
  outline: 3px solid rgba(208, 168, 87, 0.48);
  outline-offset: 3px;
}

.button-primary {
  background: var(--navy);
  color: var(--white);
}

.button-primary:hover {
  background: var(--navy-soft);
}

.button-secondary {
  border: 1px solid rgba(11, 32, 61, 0.22);
}

.button-secondary:hover {
  border-color: var(--navy);
}

.programs {
  border-top: 1px solid rgba(11, 32, 61, 0.13);
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 46px;
  padding-top: 27px;
}

.programs article {
  display: grid;
  gap: 14px;
  grid-template-columns: auto 1fr;
}

.program-number {
  color: #a57b2b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
  margin-top: 3px;
}

.programs h2 {
  font-size: 0.94rem;
  margin: 0;
}

.programs p {
  color: var(--ink-muted);
  font-size: 0.78rem;
  line-height: 1.55;
  margin: 6px 0 0;
}

.hero-mark {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 510px;
  position: relative;
}

.mark-disc {
  align-items: center;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(208, 168, 87, 0.37);
  border-radius: 50%;
  box-shadow: 0 30px 80px rgba(11, 32, 61, 0.09);
  display: flex;
  height: 390px;
  justify-content: center;
  width: 390px;
}

.mark-disc img {
  display: block;
  height: 285px;
  width: 285px;
}

.orbit {
  border: 1px solid rgba(11, 32, 61, 0.11);
  border-radius: 50%;
  position: absolute;
}

.orbit-one {
  height: 480px;
  width: 480px;
}

.orbit-two {
  border-color: rgba(208, 168, 87, 0.35);
  height: 445px;
  width: 445px;
}

.hero-mark > p {
  bottom: 8px;
  color: #6d7784;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin: 0;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
}

footer {
  align-items: center;
  border-top: 1px solid rgba(11, 32, 61, 0.12);
  color: #6d7784;
  display: grid;
  font-size: 0.72rem;
  grid-template-columns: 1fr auto 1fr;
  letter-spacing: 0.06em;
  min-height: 83px;
  text-transform: uppercase;
}

footer p {
  margin: 0;
}

footer a {
  text-transform: lowercase;
}

footer a:hover {
  color: var(--navy);
}

footer span {
  justify-self: end;
}

@media (max-width: 980px) {
  .site-header,
  .hero,
  footer {
    width: calc(100% - 48px);
  }

  .hero {
    gap: 38px;
    grid-template-columns: 1fr;
    padding-top: 52px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-mark {
    min-height: 460px;
  }

  footer {
    margin-top: 28px;
  }
}

@media (max-width: 620px) {
  .site-header,
  .hero,
  footer {
    width: calc(100% - 34px);
  }

  .site-header {
    min-height: 98px;
  }

  .brand img {
    width: 165px;
  }

  .status-pill {
    font-size: 0;
    gap: 0;
    padding: 12px;
  }

  h1 {
    font-size: clamp(3.15rem, 16vw, 4.7rem);
  }

  .lead {
    font-size: 1rem;
  }

  .actions,
  .button {
    width: 100%;
  }

  .programs {
    grid-template-columns: 1fr;
  }

  .hero-mark {
    min-height: 360px;
  }

  .mark-disc {
    height: 270px;
    width: 270px;
  }

  .mark-disc img {
    height: 205px;
    width: 205px;
  }

  .orbit-one {
    height: 330px;
    width: 330px;
  }

  .orbit-two {
    height: 302px;
    width: 302px;
  }

  .hero-mark > p {
    max-width: 270px;
  }

  footer {
    gap: 11px;
    grid-template-columns: 1fr;
    padding-block: 22px;
    text-align: center;
  }

  footer span {
    justify-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
