:root {
  --red: #c91422;
  --red-dark: #8f0f19;
  --navy: #082b66;
  --blue: #0e57bd;
  --cream: #fffaf0;
  --paper: #f7f1df;
  --ink: #111827;
  --teal: #007c75;
  --gold: #f4b63d;
  --shadow: 0 22px 60px rgba(8, 20, 45, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: white;
  background: rgba(6, 17, 41, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(14px);
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--navy);
  background: white;
  border: 4px solid var(--red);
  font-size: 15px;
  line-height: 1;
  box-shadow: 4px 4px 0 var(--gold);
}

.nav {
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav a:hover,
.nav a:focus-visible {
  background: var(--red);
  outline: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 130px clamp(18px, 6vw, 84px) 64px;
  color: white;
  isolation: isolate;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  z-index: -3;
}

.hero-scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 12, 30, 0.84) 0%, rgba(5, 18, 42, 0.58) 38%, rgba(5, 18, 42, 0.12) 72%),
    linear-gradient(0deg, rgba(3, 12, 30, 0.62) 0%, rgba(3, 12, 30, 0) 45%);
}

.hero-content {
  width: min(780px, 100%);
}

.kicker,
.section-label {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: clamp(13px, 1.6vw, 16px);
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 2px;
  font-size: clamp(58px, 11vw, 150px);
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 7px 7px 0 var(--red), 12px 12px 0 rgba(0, 0, 0, 0.34);
}

.hero-date {
  margin-bottom: 12px;
  color: white;
  font-size: clamp(25px, 4vw, 54px);
  font-weight: 900;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 650px;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
}

.hero-actions,
.route-card {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 3px solid currentColor;
  color: white;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.3);
}

.button.primary {
  background: var(--red);
}

.button.secondary {
  background: var(--navy);
}

.button:hover,
.button:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.35);
  outline: none;
}

.countdown {
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  bottom: 34px;
  width: min(210px, 42vw);
  padding: 16px;
  color: var(--navy);
  background: white;
  border: 6px solid var(--red);
  box-shadow: 9px 9px 0 var(--gold);
  text-align: center;
}

.countdown span {
  display: block;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.9;
  font-weight: 900;
}

.countdown small {
  display: block;
  margin-top: 6px;
  font-weight: 900;
  text-transform: uppercase;
}

.sign-strip {
  padding: 12px clamp(18px, 5vw, 64px);
  background: white;
  border-top: 10px solid var(--red);
  border-bottom: 10px solid var(--navy);
}

.sign-copy {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  text-align: center;
  color: var(--navy);
  font-weight: 900;
  text-transform: uppercase;
}

.sign-copy strong {
  color: var(--red);
  font-size: clamp(22px, 4vw, 46px);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 98px) clamp(18px, 4vw, 42px);
}

.intro-grid,
.route-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(280px, 1.06fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

h2 {
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.98;
  text-transform: uppercase;
}

.intro-copy {
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
}

.feature-band {
  max-width: none;
  background: var(--paper);
}

.feature-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  min-height: 285px;
  padding: 22px;
  color: white;
  border: 4px solid var(--ink);
  box-shadow: 7px 7px 0 rgba(17, 24, 39, 0.22);
}

.feature-card.red {
  background: var(--red);
}

.feature-card.navy {
  background: var(--navy);
}

.feature-card.gold {
  color: var(--ink);
  background: var(--gold);
}

.feature-card.teal {
  background: var(--teal);
}

.card-number {
  display: block;
  margin-bottom: 28px;
  font-size: 34px;
  font-weight: 900;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.award-panel {
  padding: clamp(24px, 4vw, 40px);
  color: white;
  background: var(--navy);
  border: 6px solid var(--red);
  box-shadow: var(--shadow);
}

.award-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.award-list li {
  padding: 13px 14px;
  color: var(--navy);
  background: white;
  border-left: 9px solid var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.sign-photo {
  margin: 0;
}

.sign-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 8px solid white;
  box-shadow: var(--shadow);
}

.sign-photo figcaption {
  margin-top: 12px;
  color: #495065;
  font-size: 14px;
  font-weight: 700;
}

.route-section {
  color: white;
  background: var(--red-dark);
}

.route-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 88px) clamp(18px, 4vw, 42px) clamp(26px, 4vw, 38px);
  align-items: center;
}

.route-inner p {
  max-width: 650px;
  font-size: 20px;
  font-weight: 700;
}

.route-card {
  justify-self: end;
  width: min(420px, 100%);
  padding: 28px;
  color: var(--navy);
  background: white;
  border: 7px solid var(--navy);
  box-shadow: 10px 10px 0 var(--gold);
  flex-direction: column;
  align-items: flex-start;
}

.route-badge {
  padding: 5px 10px;
  color: white;
  background: var(--red);
  font-weight: 900;
}

.route-card strong {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  text-transform: uppercase;
}

.route-card span {
  font-weight: 900;
  text-transform: uppercase;
}

.button.map {
  margin-top: 10px;
  color: white;
  background: var(--navy);
}

.neighborhood-map {
  width: min(1180px, calc(100% - clamp(36px, 8vw, 84px)));
  margin: 0 auto clamp(56px, 8vw, 90px);
  color: white;
}

.neighborhood-map img {
  width: 100%;
  border: 8px solid var(--gold);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.24);
}

.neighborhood-map figcaption {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 900;
  text-align: right;
  text-transform: uppercase;
}

.final-call {
  text-align: center;
}

.final-call h2 {
  color: var(--red);
}

.final-call p:last-child {
  max-width: 780px;
  margin: 0 auto;
  font-size: 20px;
  font-weight: 700;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: white;
  background: var(--ink);
  font-weight: 800;
}

.footer a {
  color: var(--gold);
  text-decoration: none;
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 860px;
    align-items: center;
    padding-top: 220px;
  }

  .countdown {
    right: auto;
    left: clamp(18px, 5vw, 70px);
  }

  .sign-copy,
  .intro-grid,
  .route-inner,
  .split {
    grid-template-columns: 1fr;
  }

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

  .route-card {
    justify-self: stretch;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 820px;
    padding-top: 235px;
    padding-bottom: 48px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .countdown {
    position: static;
    width: min(230px, 100%);
    margin-top: 16px;
  }

  .nav a {
    font-size: 12px;
  }

  .sign-copy,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 220px;
  }

  .footer {
    flex-direction: column;
  }
}
