:root {
  --navy: #0b1220;
  --ink: #171b2d;
  --muted: #5c6575;
  --green: #16a34a;
  --green-dark: #0f7f39;
  --red: #df0640;
  --white: #ffffff;
  --soft: #f5f7fa;
  --line: #dfe5ef;
  --shadow: 0 24px 60px rgba(11, 18, 32, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 229, 239, 0.8);
  backdrop-filter: blur(14px);
}

.brand img,
.footer-brand img {
  width: 152px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--navy);
  background: var(--soft);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  padding: 80px clamp(20px, 5vw, 72px);
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 18, 32, 0.95) 0%, rgba(11, 18, 32, 0.78) 42%, rgba(11, 18, 32, 0.22) 100%);
  pointer-events: none;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.25rem;
}

.hero p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--green);
}

.button.primary:hover {
  background: var(--green-dark);
}

.section {
  padding: 86px clamp(20px, 5vw, 72px);
}

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

.feature-band {
  background: var(--soft);
}

.feature-grid,
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-card,
.mission-grid article,
.contact-info,
.contact-form,
.policy-content article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 28px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.split-section p,
.text-section p,
.mission-grid p,
.policy-content p,
.contact-info dd {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-list div {
  position: relative;
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 14px 18px 14px 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
}

.check-list div::before {
  content: "";
  position: absolute;
  left: 18px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 4px var(--white), 0 0 0 2px var(--green);
}

.page-hero {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(11, 18, 32, 0.96), rgba(11, 18, 32, 0.82)),
    url("../images/football-hero.png") center / cover;
}

.page-hero.compact {
  min-height: 320px;
  display: flex;
  align-items: center;
  padding: 70px clamp(20px, 5vw, 72px);
}

.page-hero h1 {
  max-width: 920px;
  margin-bottom: 0;
}

.text-section {
  max-width: 980px;
}

.text-section p {
  font-size: 1.05rem;
}

.mission-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--soft);
}

.mission-grid article {
  padding: 32px;
}

.policy-content {
  display: grid;
  gap: 18px;
  max-width: 980px;
}

.policy-content article {
  padding: 28px;
}

.policy-content h2 {
  font-size: 1.35rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
  background: var(--soft);
}

.contact-form,
.contact-info {
  padding: 28px;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  color: var(--navy);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(22, 163, 74, 0.14);
}

.contact-info dl {
  margin: 24px 0 0;
}

.contact-info dt {
  color: var(--navy);
  font-weight: 800;
}

.contact-info dd {
  margin: 4px 0 20px;
}

.contact-info a {
  color: var(--green-dark);
  font-weight: 800;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px clamp(20px, 5vw, 72px);
}

.footer-brand {
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--white);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-inner p {
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 860px) {
  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: none;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.open {
    display: flex;
  }

  .hero {
    min-height: 620px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(11, 18, 32, 0.96), rgba(11, 18, 32, 0.76));
  }

  .feature-grid,
  .mission-grid,
  .split-section,
  .contact-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    text-align: center;
  }

  .footer-brand {
    justify-self: center;
  }

  .footer-inner p {
    white-space: normal;
  }
}

@media (max-width: 520px) {
  .site-header {
    min-height: 70px;
    padding-inline: 16px;
  }

  .brand img,
  .footer-brand img {
    width: 126px;
  }

  .section {
    padding: 64px 16px;
  }

  .hero {
    min-height: 640px;
    padding: 64px 16px;
  }

  .button {
    width: 100%;
  }

  .page-hero.compact {
    padding: 58px 16px;
  }
}
