/* ==========================================================================
   EHC Gelsenkirchen — Frontend Design System
   Palette: Weiß / Blau / Grau / Hellgrau
   ========================================================================== */

:root {
  --blue-900: #0a2647;
  --blue-800: #0f3460;
  --blue-700: #14497a;
  --blue-600: #1c63a8;
  --blue-500: #2277bb;
  --blue-400: #4a9bd6;
  --blue-100: #e6f0fa;

  --grey-900: #1c2126;
  --grey-700: #4a5259;
  --grey-500: #7a828a;
  --grey-300: #c7ccd1;
  --grey-200: #e2e5e8;
  --grey-100: #f0f2f4;
  --grey-50:  #f7f8f9;

  --white: #ffffff;

  --success: #1f8a4c;
  --danger: #c62828;
  --warn: #b8860b;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 3px rgba(10, 38, 71, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 38, 71, 0.10);
  --shadow-lg: 0 20px 48px rgba(10, 38, 71, 0.16);

  --container: 1240px;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", "Segoe UI", Roboto, sans-serif;

  --bg: var(--white);
  --surface: var(--grey-50);
  --surface-alt: var(--grey-100);
  --text: var(--grey-900);
  --text-muted: var(--grey-700);
  --border: var(--grey-200);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0d1117;
    --surface: #131a22;
    --surface-alt: #182029;
    --text: #eef1f4;
    --text-muted: #a7b0b9;
    --border: #232c36;
    --grey-100: #182029;
    --grey-200: #232c36;
    --blue-100: #12233a;
  }
}
:root[data-theme="dark"] {
  --bg: #0d1117;
  --surface: #131a22;
  --surface-alt: #182029;
  --text: #eef1f4;
  --text-muted: #a7b0b9;
  --border: #232c36;
  --grey-100: #182029;
  --grey-200: #232c36;
  --blue-100: #12233a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin: 0 0 0.5em;
  color: var(--text);
}
p { margin: 0 0 1em; color: var(--text-muted); }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  background: var(--blue-500);
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--blue-500); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--blue-600); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-ghost { background: var(--white); color: var(--blue-700); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--blue-500); color: var(--blue-600); }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
:root[data-theme="dark"] .site-header,
@media (prefers-color-scheme: dark) { .site-header { background: rgba(13,17,23,.9); } }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--blue-800);
}
.brand-badge {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--blue-600), var(--blue-900));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.brand small { display: block; font-size: 10px; font-weight: 600; color: var(--text-muted); letter-spacing: .16em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background .15s, color .15s;
}
.main-nav a:hover, .main-nav a.active { background: var(--blue-100); color: var(--blue-700); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.theme-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--text);
}
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  align-items: center; justify-content: center;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--text); position: relative; transition: .2s;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(120deg, var(--blue-900) 0%, var(--blue-800) 45%, var(--blue-700) 100%);
  color: var(--white);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(255,255,255,.10), transparent 45%),
    repeating-linear-gradient(-35deg, rgba(255,255,255,.035) 0 2px, transparent 2px 34px);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
  padding: 100px 24px 70px;
}
.hero-copy .eyebrow { color: var(--blue-400); }
.hero-copy .eyebrow::before { background: var(--blue-400); }
.hero h1 {
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
}
.hero h1 .accent { color: var(--blue-400); }
.hero-copy p.lead {
  font-size: 18px;
  color: rgba(255,255,255,.78);
  max-width: 480px;
  margin-bottom: 30px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.hero-stats { display: grid; grid-template-columns: repeat(4, auto); gap: 32px; }
.hero-stats .stat-num { font-family: var(--font-display); font-size: 34px; font-weight: 800; color: var(--white); }
.hero-stats .stat-label { font-size: 12.5px; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .06em; }

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg, var(--blue-600), var(--blue-900));
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .ribbon {
  position: absolute; top: 22px; right: -46px;
  background: var(--white); color: var(--blue-800);
  padding: 6px 60px; transform: rotate(38deg);
  font-family: var(--font-display); font-weight: 800; font-size: 13px; letter-spacing: .08em;
  box-shadow: var(--shadow-sm);
}

/* ---------- Sections ---------- */
section { padding: 88px 0; }
.section-alt { background: var(--surface); }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
  margin-bottom: 40px; flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(28px, 3.4vw, 42px); }
.section-link { font-weight: 700; color: var(--blue-600); display: inline-flex; align-items: center; gap: 6px; }
.section-link:hover { color: var(--blue-800); }

/* ---------- Teams ---------- */
.teams-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.team-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--grey-800, var(--blue-900));
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.team-card:hover img { transform: scale(1.06); }
.team-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,38,71,.92) 0%, rgba(10,38,71,.15) 55%, transparent 70%);
}
.team-card .tc-body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 16px;
  color: var(--white);
}
.team-card .tc-name { font-family: var(--font-display); font-weight: 800; font-size: 18px; text-transform: uppercase; }
.team-card .tc-meta { font-size: 12px; color: rgba(255,255,255,.75); }

/* ---------- People (Vorstand / Trainer — a bio card, not a sports-team crest) ---------- */
.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.person-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.person-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.person-photo {
  width: 176px; height: 176px; border-radius: 50%;
  overflow: hidden; margin: 0 auto 20px;
  border: 4px solid var(--blue-100); box-shadow: var(--shadow-md);
}
.person-photo img { width: 100%; height: 100%; object-fit: cover; }
.person-name { font-family: var(--font-display); font-weight: 800; font-size: 20px; text-transform: uppercase; letter-spacing: .01em; }
.person-role { font-size: 13.5px; color: var(--blue-600); font-weight: 700; margin: 4px 0 12px; }
.person-contact { font-size: 14px; }
.person-contact a { color: var(--blue-600); font-weight: 600; }
.person-contact a:hover { text-decoration: underline; }
@media (max-width: 1080px) { .people-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .people-grid { grid-template-columns: 1fr; }
  .person-photo { width: 140px; height: 140px; }
}

/* ---------- Cards (news, generic) ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-media { aspect-ratio: 16/10; overflow: hidden; background: var(--grey-200); display: flex; align-items: center; justify-content: center; }
.card-media img { width: 100%; height: 100%; object-fit: contain; transition: transform .4s ease; }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.tag {
  display: inline-block;
  background: var(--blue-100); color: var(--blue-700);
  font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  padding: 4px 10px; border-radius: 100px;
  margin-bottom: 12px; width: fit-content;
}
.card-body h3 { font-size: 20px; margin-bottom: 8px; }
.card-meta { font-size: 12.5px; color: var(--grey-500); margin-top: auto; padding-top: 14px; display: flex; gap: 14px; }

/* ---------- Matches / Fixtures ---------- */
.matches-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 28px; align-items: start; }
.panel {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.panel-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px; border-bottom: 1px solid var(--border);
}
.panel-head h3 { font-size: 15px; margin: 0; }

.next-match { padding: 26px 22px; }
.nm-date { font-size: 12.5px; color: var(--grey-500); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.nm-teams { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 14px; text-align: center; }
.nm-team { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.nm-crest {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--blue-100); color: var(--blue-700);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 20px;
}
.nm-team span { font-weight: 700; font-size: 14px; }
.nm-vs {
  font-family: var(--font-display); font-weight: 800; font-size: 15px;
  background: var(--blue-500); color: var(--white);
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.nm-loc { text-align: center; font-size: 13px; color: var(--grey-500); margin-top: 18px; }

.match-row {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 22px; border-bottom: 1px solid var(--border);
}
.match-row:last-child { border-bottom: none; }
.match-row .mini-crest {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--blue-100); color: var(--blue-700);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 12px;
  flex-shrink: 0;
}
.match-row .mr-teams { flex: 1; min-width: 0; }
.match-row .mr-teams b { font-size: 13.5px; display: block; }
.match-row .mr-teams small { color: var(--grey-500); font-size: 12px; }
.badge-win { background: #e5f6ec; color: var(--success); }
.badge-loss { background: #fbe9e9; color: var(--danger); }
.badge-draw { background: var(--grey-100); color: var(--grey-700); }
.badge {
  font-size: 11.5px; font-weight: 800; padding: 4px 10px; border-radius: 100px; text-transform: uppercase;
}
.score {
  font-family: var(--font-display); font-weight: 800; font-size: 17px; padding: 0 6px; min-width: 46px; text-align: center;
}

/* ---------- Stats strip ---------- */
.stats-strip {
  background: linear-gradient(120deg, var(--blue-800), var(--blue-900));
  color: var(--white);
}
.stats-strip .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stats-strip .stat-num { font-family: var(--font-display); font-weight: 800; font-size: 46px; color: var(--white); }
.stats-strip .stat-label { font-size: 13px; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .06em; }

/* ---------- Membership ---------- */
.membership {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.check-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-weight: 600; color: var(--text); }
.check-list li svg { flex-shrink: 0; color: var(--blue-500); margin-top: 2px; }
.membership-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}
.membership-visual img { width: 100%; height: 100%; object-fit: cover; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.price-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 30px 26px; box-shadow: var(--shadow-sm); position: relative;
}
.price-card.featured { border-color: var(--blue-500); box-shadow: var(--shadow-md); transform: translateY(-8px); }
.price-card .pc-badge {
  position: absolute; top: -12px; right: 24px; background: var(--blue-500); color: var(--white);
  font-size: 11px; font-weight: 800; text-transform: uppercase; padding: 5px 12px; border-radius: 100px;
}
.price-card h3 { font-size: 18px; }
.price-card .price { font-family: var(--font-display); font-size: 40px; font-weight: 800; color: var(--blue-700); margin: 6px 0 18px; }
.price-card .price span { font-size: 14px; color: var(--grey-500); font-family: var(--font-body); font-weight: 500; }
.price-card ul { margin: 20px 0 24px; }
.price-card ul li { padding: 8px 0; border-bottom: 1px dashed var(--border); font-size: 14px; color: var(--text-muted); display: flex; justify-content: space-between; }

/* ---------- Gallery ---------- */
.gallery-grid {
  columns: 4 220px; column-gap: 16px;
}
.gallery-grid figure {
  margin: 0 0 16px; break-inside: avoid;
  border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm);
  position: relative; cursor: zoom-in;
}
.gallery-grid img { width: 100%; display: block; transition: transform .35s ease; }
.gallery-grid figure:hover img { transform: scale(1.05); }

/* ---------- Sponsors ---------- */
.sponsors-strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 48px;
  padding: 36px 0;
}
.sponsors-strip .sponsor-slot {
  width: 140px; height: 60px; border-radius: var(--radius-sm);
  background: var(--surface-alt); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-500); font-weight: 700; font-size: 13px; letter-spacing: .04em;
  filter: grayscale(1); opacity: .75; transition: .2s;
}
.sponsors-strip .sponsor-slot:hover { filter: none; opacity: 1; }

/* ---------- Contact ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 26px; }
.contact-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 26px; box-shadow: var(--shadow-sm);
}
.contact-card h3 { font-size: 16px; margin-bottom: 14px; }
.contact-card p { margin: 0 0 6px; font-size: 14px; }
.map-embed { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 16/10; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

form.contact-form { display: grid; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
input, textarea, select {
  width: 100%; padding: 13px 16px; border-radius: 12px;
  border: 1.5px solid var(--border); background: var(--surface); color: var(--text);
  font-family: var(--font-body); font-size: 14.5px;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
  box-shadow: inset 0 1px 2px rgba(10,38,71,.04);
}
input:hover, textarea:hover, select:hover { border-color: var(--grey-300); }
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--blue-500); background: var(--bg);
  box-shadow: 0 0 0 3px var(--blue-100);
}
textarea { min-height: 120px; resize: vertical; }
select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%237a828a' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 18px;
  padding-right: 42px; cursor: pointer;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--blue-900); color: rgba(255,255,255,.75); padding: 64px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.site-footer h4 { color: var(--white); font-size: 14px; margin-bottom: 18px; }
.site-footer a { color: rgba(255,255,255,.7); font-size: 14px; display: block; padding: 5px 0; }
.site-footer a:hover { color: var(--white); }
.footer-brand p { color: rgba(255,255,255,.6); font-size: 14px; max-width: 320px; }
.social-row { display: flex; gap: 10px; margin-top: 16px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  padding: 0;
}
.social-row a:hover { background: var(--blue-500); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 12.5px; color: rgba(255,255,255,.5);
}
.footer-bottom a { display: inline; padding: 0; }

/* ---------- Skeleton loading ---------- */
.skeleton {
  background: linear-gradient(90deg, var(--grey-200) 25%, var(--grey-100) 37%, var(--grey-200) 63%);
  background-size: 400% 100%;
  animation: shimmer 1.4s ease infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer { 0% { background-position: 100% 50%; } 100% { background-position: 0 50%; } }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Page header (subpages) ---------- */
.page-hero {
  background: linear-gradient(120deg, var(--blue-900), var(--blue-700));
  color: var(--white);
  padding: 64px 0 48px;
}
.page-hero .eyebrow { color: var(--blue-400); }
.page-hero .eyebrow::before { background: var(--blue-400); }
.page-hero h1 { color: var(--white); font-size: clamp(32px, 5vw, 52px); }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: var(--white); }

.empty-state {
  text-align: center; padding: 60px 20px; color: var(--grey-500);
  border: 1px dashed var(--border); border-radius: var(--radius-md);
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; }
  .teams-grid { grid-template-columns: repeat(3, 1fr); }
  .matches-layout { grid-template-columns: 1fr; }
  .grid-3, .grid-2 { grid-template-columns: 1fr 1fr; }
  .membership { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}
@media (max-width: 760px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-inner { height: 68px; }
  .hero { min-height: unset; }
  .hero-inner { padding: 64px 20px 48px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .teams-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
  .stats-strip .grid-4 { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .gallery-grid { columns: 2 160px; }
}
@media (max-width: 420px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed; inset: 68px 0 0 0; z-index: 190;
  background: var(--bg);
  transform: translateX(100%);
  transition: transform .25s ease;
  overflow-y: auto;
  padding: 20px 24px 40px;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav a { display: block; padding: 14px 4px; font-size: 18px; font-weight: 700; border-bottom: 1px solid var(--border); }
