:root {
  color-scheme: dark;
  --ink: #f5f3ed;
  --muted: #c8ced6;
  --navy: #071426;
  --navy-soft: #0d2037;
  --line: rgba(255, 255, 255, 0.2);
  --focus: #f0b36a;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--navy);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--navy);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.shell {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 10;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--navy);
  font-weight: 700;
  transform: translateY(-160%);
}

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

.site-header {
  position: absolute;
  z-index: 2;
  inset: 0 0 auto;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.company-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
}

.header-link,
.site-footer a {
  color: var(--muted);
  text-underline-offset: 4px;
}

.header-link:hover,
.site-footer a:hover {
  color: var(--ink);
}

.hero {
  min-height: 760px;
  display: grid;
  align-items: center;
  background-color: var(--navy);
  background-image: url("/assets/new-river-gorge-hero-v1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-inner {
  padding-block: 150px 96px;
}

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

.eyebrow {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
}

.intro {
  max-width: 590px;
  margin: 30px 0 34px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.primary-link {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.primary-link:hover {
  background: transparent;
  color: var(--ink);
}

a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--navy);
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-inner {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner nav {
  display: flex;
  gap: 20px;
}

.legal-page {
  min-height: calc(100svh - 94px);
  padding: 132px 0 72px;
  background: var(--navy);
}

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

.legal-copy h1 {
  max-width: none;
  margin-bottom: 28px;
  font-size: clamp(2.5rem, 7vw, 4.4rem);
}

.legal-copy h2 {
  margin: 32px 0 8px;
  font-size: 1.1rem;
}

.legal-copy p {
  color: var(--muted);
}

@media (max-width: 700px) {
  .shell {
    width: min(100% - 32px, 1120px);
  }

  .header-inner {
    min-height: 68px;
  }

  .hero {
    min-height: 700px;
    background-position: 58% center;
  }

  .hero-inner {
    padding-block: 128px 72px;
  }

  .hero-copy {
    padding: 28px 24px;
    background: rgba(7, 20, 38, 0.86);
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
  }

  .footer-inner {
    padding-block: 24px;
    align-items: flex-start;
    flex-direction: column;
  }
}

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