:root {
  --blue-950: #06142f;
  --blue-850: #08245c;
  --blue-700: #0038a8;
  --blue-500: #1f63d8;
  --red-700: #ce1126;
  --red-600: #e02b3e;
  --paper: #f7f4ee;
  --white: #ffffff;
  --ink: #101525;
  --muted: #667085;
  --line: rgba(16, 21, 37, 0.14);
  --gold: #f4b63d;
  --green: #2d8f6f;
  --shadow: 0 24px 70px rgba(6, 20, 47, 0.18);
  --radius: 8px;
  --shell: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  margin-inline: 0;
  padding: 12px clamp(18px, 4vw, 48px);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  color: var(--white);
  background: rgba(6, 20, 47, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.18);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 86svh;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-950);
}

.hero-media,
.hero-video,
.hero-image {
  position: absolute;
  inset: 0;
}

.hero-media {
  overflow: hidden;
}

.hero-video,
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.03);
}

.hero-video {
  opacity: 1;
  transition: opacity 1400ms ease;
}

.hero-image {
  opacity: 0;
  transform: scale(1.015);
  transition:
    opacity 1500ms ease,
    transform 6200ms ease;
}

.hero.is-carousel .hero-video {
  opacity: 0;
}

.hero.is-carousel .hero-image.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero.is-carousel .hero-image:not(.is-active) {
  opacity: 0;
  transform: scale(1.025);
}

.hero-tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 20, 47, 0.92) 0%, rgba(6, 20, 47, 0.66) 42%, rgba(6, 20, 47, 0.08) 100%),
    linear-gradient(0deg, rgba(6, 20, 47, 0.48), rgba(6, 20, 47, 0.06));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  width: var(--shell);
  min-height: 78svh;
  margin-inline: auto;
  padding-block: 174px 110px;
}

.eyebrow,
.section-kicker,
.panel-kicker {
  margin: 0 0 14px;
  color: var(--red-600);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd6dc;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 7.8rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  line-height: 1.12;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

.hero-actions,
.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
}

.button-red {
  color: var(--white);
  background: var(--red-700);
}

.button-blue {
  color: var(--white);
  background: var(--blue-700);
}

.button-light {
  color: var(--blue-950);
  background: var(--white);
}

.button-line {
  color: var(--blue-950);
  border-color: var(--line);
  background: transparent;
}

.hero .button-line,
.hero .button-light {
  border-color: rgba(255, 255, 255, 0.36);
}

.hero-rail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: var(--shell);
  margin: -84px auto 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-rail div {
  padding: 18px;
}

.hero-rail div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-rail span,
.hero-rail strong {
  display: block;
}

.hero-rail span {
  color: var(--gold);
  font-size: 1.7rem;
  font-weight: 950;
  line-height: 1;
}

.hero-rail strong {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  text-transform: uppercase;
}

.signal-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: var(--white);
}

.signal-bar a {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 18px 24px;
  border-right: 1px solid var(--line);
  color: var(--blue-850);
  font-weight: 900;
  text-transform: uppercase;
}

.signal-bar a:hover,
.signal-bar a:focus-visible {
  color: var(--red-700);
}

.section {
  padding-block: clamp(70px, 9vw, 120px);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.two-up,
.news-layout,
.donate-layout,
.involved-grid,
.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
}

.intro-copy {
  color: #384157;
  font-size: 1.06rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:not(.section-kicker),
.news-layout p,
.donate-layout p,
.media-copy p {
  color: #4d586f;
  font-size: 1.05rem;
}

.play-section {
  background: var(--white);
}

.play-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.75fr);
  gap: 22px;
  align-items: stretch;
}

.map-tool,
.association-panel,
.donation-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcff;
  box-shadow: var(--shadow);
}

.map-tool {
  min-height: 600px;
  padding: 18px;
}

.map-toolbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(190px, 0.4fr);
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.search-label {
  color: var(--blue-850);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-toolbar input,
.map-toolbar select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--white);
}

.province-map {
  width: 100%;
  min-height: 470px;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(31, 99, 216, 0.08), rgba(45, 143, 111, 0.08)),
    #eef5ff;
}

.province-map path {
  stroke: rgba(255, 255, 255, 0.95);
  stroke-width: 1.2;
  cursor: pointer;
  transition: fill 160ms ease, transform 160ms ease, stroke 160ms ease;
  transform-box: fill-box;
  transform-origin: center;
}

.province-map path:hover,
.province-map path:focus-visible {
  stroke: var(--ink);
  stroke-width: 2;
  transform: translateY(-1px);
  outline: 0;
}

.province-map path.is-active {
  fill: var(--red-700);
  stroke: var(--blue-950);
  stroke-width: 2.4;
}

.province-label {
  pointer-events: none;
  fill: rgba(6, 20, 47, 0.72);
  font-size: 9px;
  font-weight: 900;
  text-anchor: middle;
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
  color: #4d586f;
  font-size: 0.86rem;
  font-weight: 700;
}

.map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.map-legend i {
  width: 12px;
  height: 12px;
  border-radius: 999px;
}

.legend-selected {
  background: var(--red-700);
}

.legend-cibao {
  background: var(--blue-700);
}

.legend-east {
  background: var(--green);
}

.legend-south {
  background: var(--gold);
}

.association-panel {
  padding: 26px;
}

.association-panel h3 {
  color: var(--blue-950);
  font-size: clamp(2rem, 3vw, 3.1rem);
  text-transform: uppercase;
}

.association-list {
  display: grid;
  gap: 16px;
  margin: 26px 0;
}

.association-list div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.association-list dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.association-list dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-weight: 760;
}

.panel-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.media-band {
  color: var(--white);
  background: var(--blue-950);
}

.feature-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.feature-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.feature-photo figcaption {
  position: absolute;
  inset: auto 16px 16px;
  padding: 12px;
  border-radius: 6px;
  color: var(--white);
  background: rgba(6, 20, 47, 0.68);
  backdrop-filter: blur(10px);
  font-size: 0.94rem;
  font-weight: 750;
}

.media-copy .section-kicker {
  color: #ffd6dc;
}

.media-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.teams-section {
  background: linear-gradient(180deg, var(--paper), #fff);
}

.team-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.team-tabs button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--blue-850);
  background: var(--white);
  font-weight: 850;
  cursor: pointer;
}

.team-tabs button[aria-selected="true"] {
  color: var(--white);
  border-color: var(--blue-700);
  background: var(--blue-700);
}

.team-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.team-feature img {
  width: 100%;
  min-height: 350px;
  border-radius: 6px;
  object-fit: cover;
}

.team-feature h3 {
  font-size: clamp(2rem, 3vw, 3.4rem);
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--red-700);
  font-weight: 900;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.resource-card,
.event-stack article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.resource-card {
  min-height: 250px;
  padding: 22px;
}

.resource-card span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--red-700);
  font-size: 0.9rem;
  font-weight: 950;
}

.resource-card p,
.event-stack p {
  color: #4d586f;
}

.news-section {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 20, 47, 0.94), rgba(6, 20, 47, 0.76)),
    url("assets/photos/field-play.jpg") center / cover;
}

.news-layout p,
.news-layout .section-kicker {
  color: rgba(255, 255, 255, 0.78);
}

.news-layout h2 {
  color: var(--white);
}

.news-layout .button-line {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
}

.event-stack {
  display: grid;
  gap: 12px;
}

.event-stack article {
  padding: 20px;
  color: var(--ink);
}

.event-stack time {
  color: var(--red-700);
  font-weight: 950;
}

.store-section {
  color: var(--white);
  background: var(--blue-950);
}

.store-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.store-head h2 {
  max-width: 780px;
}

.store-head p:not(.section-kicker) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

.cart-summary {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.cart-summary span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-summary strong {
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.product-card {
  display: grid;
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.product-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 250px;
  overflow: hidden;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)),
    #f8fafc;
}

.product-art::before,
.product-art::after {
  content: "";
  position: absolute;
  background: var(--red-700);
}

.product-art img {
  position: relative;
  z-index: 2;
  width: 74px;
  filter: drop-shadow(0 12px 20px rgba(6, 20, 47, 0.22));
}

.product-art-tee::before {
  width: 138px;
  height: 160px;
  border-radius: 36px 36px 16px 16px;
  background: var(--white);
  box-shadow:
    -66px 8px 0 -34px var(--white),
    66px 8px 0 -34px var(--white),
    inset 0 18px 0 var(--blue-700);
}

.product-art-hoodie::before {
  width: 150px;
  height: 170px;
  border-radius: 42px 42px 18px 18px;
  background: var(--blue-850);
  box-shadow:
    -70px 16px 0 -36px var(--blue-850),
    70px 16px 0 -36px var(--blue-850),
    inset 0 28px 0 rgba(255, 255, 255, 0.1);
}

.product-art-hoodie::after {
  top: 42px;
  width: 62px;
  height: 42px;
  border-radius: 50% 50% 18px 18px;
  background: #dce6f7;
}

.product-art-hat::before {
  width: 146px;
  height: 74px;
  border-radius: 80px 80px 20px 20px;
  background: var(--blue-850);
  box-shadow: 44px 54px 0 -28px var(--red-700);
}

.product-art-bundle::before {
  width: 142px;
  height: 154px;
  border-radius: 28px 28px 14px 14px;
  background: var(--red-700);
  box-shadow:
    -42px 30px 0 -16px var(--blue-700),
    42px -16px 0 -20px var(--white);
}

.product-art-bundle img {
  width: 68px;
}

.product-info {
  min-height: 104px;
}

.product-info p {
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-info h3 {
  color: var(--white);
}

.product-info span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.product-card button {
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: var(--red-700);
  font-weight: 900;
  cursor: pointer;
}

.product-card button.is-added {
  background: var(--green);
}

.support-section {
  background: var(--paper);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.support-card {
  display: grid;
  align-content: end;
  min-height: 330px;
  padding: clamp(22px, 4vw, 38px);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 20, 47, 0.94), rgba(0, 56, 168, 0.82)),
    url("assets/photos/red-pinnies.jpg") center / cover;
  box-shadow: var(--shadow);
}

.support-card + .support-card {
  background:
    linear-gradient(135deg, rgba(6, 20, 47, 0.94), rgba(206, 17, 38, 0.76)),
    url("assets/photos/hallway-coaching.jpg") center / cover;
}

.support-card span {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.support-card h2 {
  max-width: 520px;
}

.support-card p {
  max-width: 480px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.page-main {
  background: var(--paper);
}

.page-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-950);
}

.page-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 20, 47, 0.94), rgba(6, 20, 47, 0.56), rgba(6, 20, 47, 0.18)),
    linear-gradient(0deg, rgba(6, 20, 47, 0.52), rgba(6, 20, 47, 0.08));
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  width: var(--shell);
  min-height: 620px;
  margin-inline: auto;
  padding-block: 160px 70px;
}

.page-crest {
  width: 128px;
  margin-bottom: 24px;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.28));
}

.page-hero h1 {
  max-width: 940px;
  font-size: clamp(3rem, 7vw, 6.8rem);
}

.page-hero-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
}

.store-page .store-section,
.donate-page .donate-section {
  background: var(--paper);
  color: var(--ink);
}

.store-page .store-head {
  color: var(--ink);
}

.store-page .store-head p:not(.section-kicker) {
  color: #4d586f;
}

.store-page .cart-summary {
  color: var(--white);
  background: var(--blue-950);
  box-shadow: var(--shadow);
}

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

.store-page .product-card {
  display: grid;
  grid-template-columns: minmax(210px, 0.78fr) minmax(0, 1fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(6, 20, 47, 0.08);
}

.product-media {
  position: relative;
  min-height: 310px;
  background: var(--blue-950);
}

.product-media img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
}

.product-logo-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(6, 20, 47, 0.76);
  backdrop-filter: blur(10px);
}

.product-logo-badge img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 9px;
  border-radius: 999px;
  color: var(--blue-950);
  background: var(--white);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-page .product-info {
  display: grid;
  align-content: start;
  min-height: 0;
  padding: 22px;
}

.store-page .product-info p {
  color: var(--red-700);
}

.store-page .product-info h3 {
  color: var(--blue-950);
  font-size: 1.55rem;
}

.store-page .product-info .product-description {
  margin-bottom: 18px;
  color: #4d586f;
  font-size: 0.98rem;
  font-weight: 520;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.product-meta span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-950);
  font-size: 0.82rem;
  font-weight: 900;
}

.swatches {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.swatches i {
  width: 20px;
  height: 20px;
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
}

.swatch-blue {
  background: var(--blue-700);
}

.swatch-red {
  background: var(--red-700);
}

.swatch-white {
  background: var(--white);
}

.swatch-navy {
  background: var(--blue-950);
}

.store-page .product-card button {
  align-self: end;
}

.store-note,
.donate-note {
  margin-top: 22px;
  color: #667085;
  font-size: 0.95rem;
}

.donate-page .donate-layout {
  align-items: start;
}

.donate-page .donation-box {
  background: var(--white);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.impact-card {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.impact-card span {
  color: var(--red-700);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.impact-card h3 {
  margin-top: 18px;
  color: var(--blue-950);
}

.impact-card p {
  color: #4d586f;
}

.donate-section {
  background: var(--white);
}

.donation-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 18px;
}

.donation-box button {
  min-height: 72px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--blue-950);
  background: var(--paper);
  font-size: 1.25rem;
  font-weight: 950;
  cursor: pointer;
}

.donation-box button.is-selected {
  color: var(--white);
  background: var(--blue-700);
}

.donation-box .button {
  grid-column: 1 / -1;
}

.involved-section {
  background: var(--paper);
}

.involved-grid figure {
  margin: 0;
}

.involved-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.action-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.action-list a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  color: var(--blue-950);
  font-size: 1.12rem;
  font-weight: 900;
}

.action-list a::after {
  content: "+";
  color: var(--red-700);
}

.social-section {
  background: var(--white);
}

.social-grid {
  display: grid;
  grid-template-columns: 0.9fr 0.9fr 1fr 1fr;
  gap: 14px;
}

.social-grid video,
.social-grid img {
  width: 100%;
  height: 360px;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--blue-950);
}

.social-grid figure {
  margin: 0;
}

.site-footer {
  padding-block: 54px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--blue-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 28px;
}

.footer-logo {
  width: 96px;
  margin-bottom: 14px;
}

.site-footer nav,
.site-footer div:last-child {
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-footer a {
  color: var(--white);
  font-weight: 760;
}

.footer-label {
  margin-bottom: 4px;
  color: var(--gold);
  font-weight: 950;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .site-header {
    inset: 0 0 auto;
    width: 100%;
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    position: absolute;
    inset: calc(100% + 8px) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border-radius: var(--radius);
    background: rgba(6, 20, 47, 0.96);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
  }

  .hero-rail,
  .signal-bar,
  .two-up,
  .play-grid,
  .media-grid,
  .support-grid,
  .store-head,
  .team-feature,
  .news-layout,
  .donate-layout,
  .involved-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-rail {
    margin-top: -50px;
  }

  .hero-rail div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .signal-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .resource-grid,
  .product-grid,
  .store-page .product-grid,
  .impact-grid,
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .store-page .product-card {
    grid-template-columns: 1fr;
  }

  .map-toolbar {
    grid-template-columns: 1fr;
  }

  .team-feature img {
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(100vw - 24px, 1180px);
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 64px;
    height: 64px;
  }

  .hero-inner {
    min-height: 74svh;
    padding-block: 128px 90px;
  }

  h1 {
    font-size: clamp(2.35rem, 12.6vw, 3.45rem);
    line-height: 0.92;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3.5rem);
  }

  .hero-copy {
    max-width: 310px;
    font-size: 1rem;
  }

  .hero .eyebrow {
    max-width: 320px;
    font-size: 0.68rem;
    line-height: 1.35;
    letter-spacing: 0.08em;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 310px);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-rail,
  .signal-bar,
  .resource-grid,
  .product-grid,
  .store-page .product-grid,
  .impact-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .signal-bar a {
    min-height: 58px;
  }

  .section {
    padding-block: 64px;
  }

  .map-tool {
    padding: 12px;
    min-height: auto;
  }

  .province-map {
    min-height: 360px;
  }

  .donation-box {
    grid-template-columns: 1fr;
  }

  .social-grid video,
  .social-grid img {
    height: 300px;
  }

  .product-art {
    min-height: 230px;
  }

  .page-hero,
  .page-hero-inner {
    min-height: 560px;
  }

  .page-hero-inner {
    padding-block: 132px 56px;
  }

  .page-crest {
    width: 104px;
  }

  .page-hero h1 {
    font-size: clamp(2.5rem, 13vw, 3.6rem);
  }

  .product-media {
    min-height: 260px;
  }
}
