:root {
  --navy: #08131f;
  --off-white: #f2f0ea;
  --orange: #f05a24;
  --header-h: 72px;
}

* { box-sizing: border-box; }

html {
  background: var(--navy);
  color: var(--off-white);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--navy);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--off-white);
  color: var(--navy);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 72px);
  background: linear-gradient(to bottom, rgba(8,19,31,.88), transparent);
  pointer-events: none;
}

.site-header a {
  pointer-events: auto;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
}

.site-header nav { display: flex; gap: 22px; }
.site-header nav a { opacity: .82; }
.site-header nav a:hover, .site-header nav a:focus-visible { opacity: 1; color: var(--orange); }

.art-panel {
  position: relative;
  width: 100%;
  background: var(--navy);
  line-height: 0;
  overflow: hidden;
}

.art-panel picture, .art-panel img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-cta {
  position: absolute;
  right: clamp(16px, 4vw, 72px);
  bottom: clamp(16px, 3.4vw, 58px);
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 20px;
  border: 1px solid rgba(242,240,234,.55);
  background: rgba(8,19,31,.76);
  color: var(--off-white);
  font-size: clamp(11px, .9vw, 14px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .08em;
  text-decoration: none;
  backdrop-filter: blur(6px);
}

.hero-cta:hover, .hero-cta:focus-visible {
  border-color: var(--orange);
  background: var(--orange);
  outline: none;
}

.closing {
  min-height: min(780px, 100svh);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 24px;
  padding: clamp(90px, 12vw, 180px) 6vw 36px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 105%, rgba(240,90,36,.12), transparent 40%),
    var(--navy);
}

.closing .eyebrow {
  margin: 0;
  color: var(--orange);
  font-size: clamp(11px, .9vw, 14px);
  letter-spacing: .38em;
}

.closing h2 {
  margin: 0;
  font-size: clamp(44px, 8vw, 132px);
  line-height: .88;
  letter-spacing: -.045em;
}

.closing h2 span { color: var(--orange); }

.closing > p:not(.eyebrow) {
  margin: 4px 0 12px;
  color: rgba(242,240,234,.72);
  font-size: clamp(16px, 1.5vw, 22px);
  letter-spacing: .08em;
}

.closing-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.closing-links a {
  min-width: 180px;
  padding: 15px 20px;
  border: 1px solid rgba(242,240,234,.32);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
}
.closing-links a:hover, .closing-links a:focus-visible { border-color: var(--orange); color: var(--orange); }

.closing footer {
  align-self: end;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: clamp(60px, 10vw, 130px);
  color: rgba(242,240,234,.48);
  font-size: 11px;
  letter-spacing: .1em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 767px) {
  :root { --header-h: 60px; }
  .site-header { padding-inline: 16px; }
  .site-header nav { gap: 16px; }
  .art-panel { border-bottom: 1px solid rgba(242,240,234,.08); }
  .hero { padding-top: var(--header-h); }
  .hero-cta {
    right: 10px;
    bottom: 10px;
    min-height: 34px;
    padding: 0 11px;
    font-size: 9px;
    letter-spacing: .05em;
  }
  .closing { min-height: 720px; padding-inline: 20px; }
  .closing-links { width: 100%; }
  .closing-links a { flex: 1 1 100%; }
}

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