:root {
  --ink: #151515;
  --muted: #5d6572;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --line: #e4e0d8;
  --red: #b5121b;
  --red-dark: #7d0c12;
  --green: #0f766e;
  --gold: #d7a937;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 70px);
  color: #ffffff;
  background: rgba(15, 15, 15, 0.76);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: auto;
  height: 52px;
  border-radius: 0;
  object-fit: contain;
  background: #ffffff;
  border: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand small {
  color: rgba(255, 255, 255, 0.74);
}

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

.main-nav a {
  padding: 8px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  padding: 128px clamp(20px, 7vw, 96px) 70px;
}

.subpage-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #ffffff;
  padding: 128px clamp(20px, 7vw, 96px) 70px;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.9), rgba(8, 8, 8, 0.6) 42%, rgba(8, 8, 8, 0.18)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent 36%);
}

.hero-content {
  position: relative;
  max-width: 700px;
}

.kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 740px;
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 8vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-content p:not(.kicker) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

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

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--red-dark);
}

.button.secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 7vw, 96px);
}

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

.section-heading p:not(.kicker) {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading.compact {
  margin-bottom: 22px;
}

.training-section {
  background: var(--surface);
}

.training-grid,
.updates-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.info-card,
.update-item {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.info-card.highlight {
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), #1c1c1c);
  border-color: transparent;
}

.info-card.kids {
  color: #ffffff;
  background: linear-gradient(135deg, var(--green), #12201e);
  border-color: transparent;
}

.info-card.location {
  border-top: 4px solid var(--green);
}

.icon {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  min-height: 34px;
  margin-bottom: 28px;
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.17);
}

.location .icon {
  color: #ffffff;
  background: var(--green);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
  background: #f0eee8;
}

.copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.stats-band div {
  padding: clamp(28px, 5vw, 46px) clamp(20px, 5vw, 48px);
  background: #151515;
  color: #ffffff;
}

.stats-band strong,
.stats-band span {
  display: block;
}

.stats-band strong {
  margin-bottom: 4px;
  color: var(--gold);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.stats-band span {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.gallery-section {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 7vw, 96px);
  background: var(--surface);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.photo-grid figure {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #101010;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.13);
}

.photo-grid img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.photo-grid figure:hover img {
  transform: scale(1.035);
}

.photo-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  color: #ffffff;
  font-weight: 800;
  line-height: 1.35;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0));
}

.photo-feature {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-feature,
.photo-feature img {
  min-height: 578px;
}

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

.update-item {
  min-height: 160px;
  box-shadow: none;
}

.update-item h3 {
  color: var(--red);
}

.values-section {
  background: var(--surface);
}

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

.values-grid article {
  padding: 0 0 0 20px;
  border-left: 4px solid var(--red);
}

.values-grid p {
  color: var(--muted);
}

.sponsor-section {
  background: #f0eee8;
}

.operation-intro {
  background: var(--surface);
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.quick-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 12px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--red);
  font-weight: 800;
  text-decoration: none;
}

.quick-links a:hover,
.quick-links a:focus-visible {
  background: var(--red-dark);
}

.league-link {
  color: var(--red);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.league-link:hover,
.league-link:focus-visible {
  color: var(--red-dark);
}

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

.teams-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.09);
}

.teams-table {
  width: 100%;
  min-width: 940px;
  border-collapse: collapse;
}

.teams-table th,
.teams-table td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.teams-table th {
  color: #ffffff;
  background: #151515;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.teams-table tr:last-child td {
  border-bottom: 0;
}

.teams-table td:nth-child(3) {
  color: var(--muted);
}

.legal-hero {
  padding: 148px clamp(20px, 7vw, 96px) 70px;
  color: #ffffff;
  background: #151515;
}

.legal-section {
  background: var(--surface);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1100px;
}

.legal-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.legal-grid h2 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

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

.club-section {
  padding: clamp(48px, 7vw, 82px) clamp(20px, 7vw, 96px);
  background: var(--surface);
}

.club-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 34px);
  align-items: center;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.club-card img {
  width: 96px;
  height: auto;
  border-radius: 0;
  object-fit: contain;
  border: 0;
}

.club-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.club-card p:not(.kicker) {
  max-width: 760px;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
  padding: clamp(42px, 6vw, 70px) clamp(20px, 7vw, 96px);
  color: #ffffff;
  background: #151515;
}

.contact-section p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.75);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 10px 12px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.25);
  font: inherit;
}

.contact-form select option {
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(215, 169, 55, 0.34);
  border-color: var(--gold);
}

.contact-form .button {
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: -4px 0 0;
  font-size: 0.9rem;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(20px, 7vw, 96px);
  color: #ffffff;
  background: #0d0d0d;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border-radius: 8px;
    background: rgba(15, 15, 15, 0.94);
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    padding: 12px;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 8, 8, 0.92), rgba(8, 8, 8, 0.6)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent 42%);
  }

  .training-grid,
  .updates-grid,
  .values-grid,
  .photo-grid,
  .legal-grid,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .photo-feature {
    grid-column: auto;
    grid-row: auto;
  }

  .photo-feature,
  .photo-feature img {
    min-height: 320px;
  }

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

  .club-card {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .club-card img {
    width: 72px;
    height: 72px;
  }

  .club-card .button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .brand small {
    display: none;
  }

  .hero {
    min-height: 760px;
    padding-top: 118px;
  }

  .hero-actions,
  .contact-section,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-row,
  .club-card {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    overflow-wrap: anywhere;
    text-align: center;
  }

  .info-card,
  .update-item,
  .photo-grid figure,
  .photo-grid img {
    min-height: 0;
  }

  .photo-grid figure,
  .photo-grid img,
  .photo-feature,
  .photo-feature img {
    min-height: 260px;
  }

  .stats-band {
    grid-template-columns: 1fr;
  }
}
