:root {
  --blue: #002e8a;
  --navy: #001b55;
  --red: #c60c30;
  --ink: #0d1220;
  --copy: #444c5c;
  font-family: Barlow, Arial, sans-serif;
  color: var(--ink);
  background: var(--blue);
}

* { box-sizing: border-box; }

body { margin: 0; }

a { color: inherit; }

.hero {
  position: relative;
  display: grid;
  min-height: 70svh;
  overflow: hidden;
  background: var(--blue);
  place-items: center;
  text-align: center;
}

.hero__texture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  padding: clamp(4rem, 9vw, 7rem) 1.5rem;
  color: white;
}

.eyebrow {
  margin: 0 0 .875rem;
  font-size: clamp(.813rem, 1.6vw, 1.063rem);
  font-weight: 700;
  letter-spacing: .34em;
  text-shadow: 0 2px 12px rgb(0 12 40 / 95%);
  text-transform: uppercase;
}

h1, h2 { font-family: 'Big Shoulders Display', Impact, sans-serif; }

h1 {
  margin: 0;
  color: white;
  font-size: clamp(3.5rem, 12vw, 10rem);
  font-weight: 900;
  letter-spacing: -.01em;
  line-height: .95;
  text-shadow: 5px 5px 0 var(--red), -3px -3px 0 var(--red), 3px -3px 0 var(--red), -3px 3px 0 var(--red), 0 6px 22px rgb(0 12 40 / 55%);
  text-transform: uppercase;
}

.hero__intro {
  max-width: 620px;
  margin: 1.625rem auto 0;
  font-size: clamp(1.063rem, 2.1vw, 1.375rem);
  font-weight: 500;
  line-height: 1.5;
  text-shadow: 0 2px 14px rgb(0 12 40 / 95%);
}

.actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .875rem; margin-top: 1.875rem; }

.button {
  display: inline-flex;
  align-items: center;
  min-height: 3.25rem;
  padding: .875rem 1.75rem;
  border: 2px solid transparent;
  border-radius: 3px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease;
}

.button:focus-visible { outline: 3px solid white; outline-offset: 4px; }
.button--red { background: var(--red); color: white; }
.button--red:hover { background: #e11239; }
.button--outline { border-color: white; background: rgb(0 18 64 / 45%); color: white; }
.button--outline:hover { background: white; color: var(--blue); }

.details { padding: clamp(3.5rem, 8vw, 6.5rem) 1.5rem; background: white; }

.details__grid {
  display: grid;
  max-width: 1040px;
  margin: 0 auto;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

h2 { margin: 0 0 1.25rem; color: var(--blue); font-size: clamp(2rem, 4.4vw, 2.875rem); font-weight: 800; line-height: .95; text-transform: uppercase; }
.details p:not(.details__lead):not(.details__copy) { margin: 0; color: var(--copy); font-size: 1.125rem; line-height: 1.6; }
.details__photo { display: block; width: 100%; margin: 1.625rem 0 1.75rem; border-radius: 12px; aspect-ratio: 16 / 9; object-fit: cover; }
.details__lead { margin: 0 0 .5rem; color: var(--ink); font-size: 1.25rem; font-weight: 700; line-height: 1.3; }
.details__copy { margin: 1.125rem 0 0; color: var(--copy); font-size: 1.063rem; line-height: 1.65; }

.schedule { margin-top: 1.25rem; border-bottom: 1px solid #dfe4ee; }
.schedule__game { display: grid; grid-template-columns: 4.625rem minmax(0, 1fr) auto; align-items: baseline; gap: .375rem .875rem; padding: .75rem 0; border-top: 1px solid #dfe4ee; }
.schedule__game strong { color: var(--ink); font-size: 1.125rem; }
.schedule__game time, .schedule__game > span:last-child { color: var(--copy); font-size: 1rem; font-weight: 600; white-space: nowrap; }
.schedule__week { color: var(--red); font-size: .813rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.community { padding: clamp(2.75rem, 6vw, 4.5rem) 1.5rem; background: var(--red); color: white; text-align: center; }
.community h2 { max-width: 640px; margin: 0 auto 1.25rem; color: white; font-size: clamp(1.625rem, 3.6vw, 2.5rem); }
.community p { max-width: 540px; margin: 0 auto; font-size: 1.125rem; line-height: 1.6; }
.button--white { background: white; color: var(--red); }
.button--white:hover { background: var(--blue); color: white; }
.button--light-outline { border-color: white; color: white; }
.button--light-outline:hover { background: white; color: var(--red); }

footer { padding: 2.125rem 1.5rem; background: var(--blue); color: rgb(255 255 255 / 85%); font-size: .875rem; letter-spacing: .14em; text-align: center; text-transform: uppercase; }

@media (max-width: 420px) {
  .eyebrow { letter-spacing: .2em; }
  .actions { flex-direction: column; align-items: stretch; }
  .button { justify-content: center; }
  .schedule__game { grid-template-columns: 3.75rem minmax(0, 1fr); }
  .schedule__game time, .schedule__game > span:last-child { grid-column: 2; }
}

@media (prefers-reduced-motion: reduce) { .button { transition: none; } }
