﻿:root {
  --bg: #030406;
  --bg-soft: #0d1015;
  --panel: #151922;
  --panel-strong: #1e242f;
  --text: #ffffff;
  --muted: #d4d9e2;
  --line: #3a414d;
  --red: #f01436;
  --red-dark: #97091d;
  --white: #ffffff;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
body.nav-open { overflow: hidden; }
a { color: inherit; }

.construction-banner {
  margin: 0;
  padding: 10px 16px;
  background: var(--red);
  color: var(--white);
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 44px);
  background: rgba(3, 4, 6, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 48px;
  height: 48px;
  border: 2px solid var(--red);
  border-radius: 50%;
  background: #050608;
  object-fit: cover;
}
.brand strong, .brand small { display: block; }
.brand strong { font-size: 1rem; line-height: 1.1; }
.brand small { color: var(--muted); font-size: 0.78rem; }

.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav a {
  padding: 10px 12px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}
.main-nav a:hover, .main-nav a:focus-visible {
  color: var(--white);
  background: var(--panel-strong);
  outline: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--white);
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}
.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;
}

.section-band, .content-section { padding: clamp(56px, 8vw, 96px) clamp(18px, 4vw, 44px); }

.hero {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.hero-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3840 / 3165;
  max-height: 100vh;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url("assets/team-hero.jpg");
  background-size: cover;
  background-position: center top;
}
.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 4, 6, 0.92) 0%, rgba(3, 4, 6, 0.55) 20%, rgba(3, 4, 6, 0) 42%);
  pointer-events: none;
}
.hero-logo {
  position: absolute;
  z-index: 1;
  left: 51%;
  top: 26%;
  width: 16%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.65);
}
.hero-name {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: none;
  margin: 0;
  padding: 0 20px 30px;
  color: var(--white);
  font-family: "Anton", "Arial Narrow", sans-serif;
  font-style: italic;
  font-size: clamp(2.3rem, 9vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  text-align: center;
  -webkit-text-stroke: 3.5px var(--red-dark);
  paint-order: stroke fill;
}
.hero-content {
  width: 100%;
  max-width: 640px;
  margin-inline: auto;
  padding: clamp(28px, 5vw, 56px) clamp(18px, 4vw, 44px);
  text-align: center;
}
.content-section > * { max-width: var(--max); margin-inline: auto; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.55);
}
h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0;
}
h3 { margin: 0 0 10px; font-size: 1.15rem; }
.lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--white);
  font-size: clamp(1.06rem, 2vw, 1.32rem);
  font-weight: 700;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.7);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 900;
}
.button.primary { background: var(--red); color: var(--white); }
.button.primary:hover, .button.primary:focus-visible { background: #ff2445; }
.button.secondary { border-color: var(--white); background: rgba(3, 4, 6, 0.72); color: var(--white); }
.button.secondary:hover, .button.secondary:focus-visible { border-color: var(--red); }

.photo-placeholder {
  display: grid;
  place-items: center;
  min-height: 220px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(240, 20, 54, 0.26), rgba(3, 4, 6, 0.46)),
    repeating-linear-gradient(45deg, #1a1f28 0 16px, #111620 16px 32px);
  color: var(--white);
  font-weight: 900;
  text-align: center;
}
.photo-placeholder span {
  padding: 10px 14px;
  background: rgba(3, 4, 6, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.photo-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 14px;
  margin-top: 32px;
}
.photo-strip .photo-placeholder { min-height: 260px; }
.gallery-heading {
  font-size: 1.75rem;
  margin-top: 32px;
  padding-bottom: 18px;
}
.photo-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.photo-grid img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.content-section { border-bottom: 1px solid var(--line); }
.content-section.muted { background: var(--bg-soft); }
.section-heading { margin-bottom: 28px; }
.split-layout, .league-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 28px;
}
.split-layout p, .contact-section p, .league-note p { color: var(--muted); }
.fact-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.fact-list li, .info-card, .league-note {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 18px;
}
.fact-list span, .fact-list strong { display: block; }
.fact-list span { color: var(--muted); font-size: 0.86rem; }
.fact-list strong { margin-top: 4px; font-size: 1.1rem; }
.info-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.people-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.position-group { margin-top: 32px; }
.position-group:first-of-type { margin-top: 24px; }
.position-group .photo-strip { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); margin-top: 12px; }
.training-groups { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.training-groups + .info-grid { margin-top: 16px; }
.info-card p { margin-bottom: 0; color: var(--muted); }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); background: var(--panel); }
table { width: 100%; min-width: 600px; border-collapse: collapse; }
th, td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; }
th { color: var(--muted); font-size: 0.8rem; text-transform: uppercase; }
tr.highlight td { background: rgba(240, 20, 54, 0.24); font-weight: 900; }
.text-link { font-weight: 900; text-decoration-color: var(--red); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.link-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; }
.contact-section { text-align: center; }
.contact-section .link-grid { max-width: 400px; margin-top: 20px; margin-inline: auto; }
.link-grid a {
  display: flex;
  align-items: center;
  min-height: 70px;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--panel);
  text-decoration: none;
  font-weight: 900;
}
.link-grid a:hover, .link-grid a:focus-visible { border-color: var(--red); background: #232a36; }
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 44px);
  color: var(--muted);
  background: #020304;
}
.site-footer p { margin: 0; }
.site-footer div { display: flex; flex-wrap: wrap; gap: 12px; }
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover, .site-footer a:focus-visible { color: var(--white); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
  }
  body.nav-open .main-nav { display: flex; }
  .main-nav a { padding: 14px; }
  .split-layout, .league-layout, .training-groups { grid-template-columns: 1fr; }
  .info-grid, .link-grid, .photo-strip { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; }
  .hero-logo { top: 14%; width: 18%; }
}



