/* ============================================
   SSV Bad Laasphe — Editorial sports-news style
   ============================================ */

:root {
  --ssv-blue: #004696;
  --ssv-blue-dark: #003571;
  --ssv-green: #5AD25A;
  --ssv-green-dark: #3FB83F;
  --ssv-black: #111111;
  --ssv-ink: #1A1A1A;
  --ssv-ink-muted: #6B6B6B;
  --ssv-border: #E8EDF2;
  --ssv-surface: #F4F7FB;
  --ssv-surface-2: #ECF1F7;
  --ssv-white: #ffffff;

  --radius-btn: 999px;
  --radius-card: 18px;
  --radius-panel: 22px;

  --shadow-sm: 0 1px 2px rgba(17, 17, 17, 0.04);
  --shadow-md: 0 6px 18px rgba(17, 17, 17, 0.08);
  --shadow-lg: 0 16px 40px rgba(17, 17, 17, 0.12);

  --container: 1240px;
  --transition: 220ms cubic-bezier(0.2, 0.7, 0.3, 1);

  --font-display: 'Anton', 'Inter', sans-serif;
  --font-script: 'Caveat', 'Inter', cursive;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ssv-ink);
  background: var(--ssv-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--ssv-blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--ssv-blue-dark); }

h1, h2, h3, h4 { margin: 0 0 0.5em; line-height: 1.05; color: var(--ssv-black); }
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.005em;
}
p { margin: 0 0 1em; color: var(--ssv-ink-muted); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.88rem;
  font-family: inherit;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  text-align: center;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.btn-primary { background: var(--ssv-blue); color: #fff; border-color: var(--ssv-blue); }
.btn-primary:hover { background: var(--ssv-blue-dark); border-color: var(--ssv-blue-dark); color: #fff; transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--ssv-blue); border-color: var(--ssv-blue); }
.btn-secondary:hover { background: var(--ssv-blue); color: #fff; }
.btn-accent { background: var(--ssv-green); color: var(--ssv-black); border-color: var(--ssv-green); }
.btn-accent:hover { background: var(--ssv-green-dark); border-color: var(--ssv-green-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-arrow {
  width: 48px; height: 48px; padding: 0;
  border-radius: 50%;
  background: var(--ssv-blue);
  color: #fff;
  border: 0;
  cursor: pointer;
  transition: background var(--transition);
}
.btn-arrow:hover { background: var(--ssv-blue-dark); }

/* ---------- Section heading helper ---------- */
.section { padding: 100px 0; }
.section-surface { background: var(--ssv-surface); }
.section-head { margin-bottom: 48px; display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.section-head .head-text { max-width: 720px; }
.section-head h2 { margin-bottom: 8px; }
.section-head p { font-size: 1rem; margin: 0; }
.eyebrow {
  font-family: var(--font-script);
  font-size: 2rem;
  font-weight: 600;
  color: var(--ssv-blue);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--ssv-border);
}

/* ---------- Brand strip (tri-color bars) ---------- */
.brand-strip {
  height: 8px;
  display: flex;
  width: 100%;
}
.brand-strip-bar {
  flex: 1;
  height: 100%;
}
.brand-strip-bar.bar-blue { background: var(--ssv-blue); }
.brand-strip-bar.bar-green { background: var(--ssv-green); }
.brand-strip-bar.bar-dark { background: var(--ssv-black); }

/* Decorative inline brand chevron used as section divider */
.brand-chevron {
  display: inline-flex;
  height: 6px;
  width: 110px;
  margin: 0 0 16px;
}
.brand-chevron span {
  flex: 1;
  height: 100%;
  display: block;
}
.brand-chevron span.c-blue { background: var(--ssv-blue); }
.brand-chevron span.c-green { background: var(--ssv-green); }
.brand-chevron span.c-dark { background: var(--ssv-black); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding: 8px 16px;
}

.brand img { height: 52px; width: auto; position: relative; z-index: 1; }
.nav { display: flex; align-items: center; gap: 36px; }
.nav a {
  color: var(--ssv-ink);
  font-weight: 500;
  font-size: 0.88rem;
  position: relative;
  letter-spacing: 0.01em;
}
.nav a.active { color: var(--ssv-blue); font-weight: 600; }
.nav a:hover { color: var(--ssv-blue); }
.nav a.active::after,
.nav a:hover::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -8px;
  width: 6px; height: 6px;
  background: var(--ssv-blue);
  border-radius: 50%;
  transform: translateX(-50%);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ssv-ink);
  margin: 5px 0;
  transition: all var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  background: var(--ssv-white);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  min-height: 560px;
}

/* big circle behind athlete */
.hero-circle {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: var(--ssv-surface);
  z-index: 0;
}

.hero-text {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  margin-bottom: 0;
}
.hero h1 .outline {
  -webkit-text-stroke: 2px var(--ssv-black);
  color: transparent;
}
.hero-meta {
  margin-top: 32px;
  max-width: 440px;
}
.hero-meta p {
  color: var(--ssv-ink-muted);
  font-size: 0.98rem;
  margin-bottom: 24px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-athlete {
  position: relative;
  width: 100%;
  height: 540px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-athlete img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 24px 40px rgba(0,70,150,0.22));
}

.hero-stats {
  margin-top: 60px;
  z-index: 3;
}
.stats-strip {
  background: #fff;
  color: var(--ssv-ink);
  border: 1px solid var(--ssv-border);
  border-radius: var(--radius-panel);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.stats-strip .stat {
  padding: 32px 36px;
  border-right: 1px solid var(--ssv-border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: left;
}
.stats-strip .stat:last-child { border-right: 0; }
.stat-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--ssv-blue);
  line-height: 1;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--ssv-ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  line-height: 1.3;
}

/* ---------- About / Categories ---------- */
#about { padding-top: 160px; }

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about-tile {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--ssv-surface);
  cursor: pointer;
  transition: transform var(--transition);
}
.about-tile:hover { transform: translateY(-4px); }
.about-tile:hover .tile-img img { transform: scale(1.06); }
.about-tile .tile-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.about-tile .tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.3, 1);
}
.about-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 45%, transparent 60%);
  z-index: 1;
}
.about-tile .tile-label {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(6px);
  padding: 8px 16px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ssv-black);
  z-index: 2;
}
.about-tile .tile-body {
  position: absolute;
  right: 20px;
  top: 20px;
  max-width: 60%;
  text-align: right;
  color: #fff;
  font-size: 0.85rem;
  line-height: 1.45;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  z-index: 2;
}

/* ---------- News ---------- */
.news-feature-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.news-feature {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #1A1A1A;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  color: #fff;
  transition: transform var(--transition);
  min-height: 560px;
  height: 100%;
}
.news-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}
.news-feature .feature-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.3, 1);
}
.news-feature:hover .feature-img { transform: scale(1.04); }
.news-feature > *:not(.feature-img) { position: relative; z-index: 2; }
.news-feature:hover { transform: translateY(-4px); }
.news-feature .badge { background: var(--ssv-green); color: var(--ssv-black); align-self: flex-start; margin-bottom: 16px; }
.news-feature h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.05;
  margin-bottom: 12px;
  max-width: 600px;
}
.news-feature .news-date { color: rgba(255,255,255,0.85); font-size: 0.85rem; }

.news-side { display: flex; flex-direction: column; gap: 20px; justify-content: space-between; }
.news-side-card {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--ssv-border);
  border-radius: var(--radius-card);
  background: #fff;
  transition: all var(--transition);
  cursor: pointer;
  flex: 1;
}
.news-side-card:hover { border-color: var(--ssv-blue); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.news-side-card .thumb {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background: var(--ssv-surface);
  position: relative;
  overflow: hidden;
}
.news-side-card .thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.news-side-card:hover .thumb img { transform: scale(1.08); }
.news-side-card .news-meta { display: flex; gap: 10px; margin-bottom: 6px; font-size: 0.75rem; }
.news-side-card h4 {
  font-size: 0.98rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  color: var(--ssv-black);
}

.badge {
  display: inline-block;
  background: var(--ssv-blue);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.badge-green { background: var(--ssv-green); color: var(--ssv-black); }
.badge-blue { background: var(--ssv-blue); color: #fff; }
.badge-outline { background: transparent; color: var(--ssv-ink); border: 1px solid var(--ssv-border); }

.news-date { color: var(--ssv-ink-muted); font-size: 0.82rem; }

.news-pagination {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.page-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--ssv-border);
  background: #fff;
  font-family: inherit;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
}
.page-dot:hover { border-color: var(--ssv-blue); color: var(--ssv-blue); }
.page-dot.active { background: var(--ssv-blue); color: #fff; border-color: var(--ssv-blue); }

/* ---------- Clubs ---------- */
.filter-bar {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  align-items: center;
  background: #fff;
  border: 1px solid var(--ssv-border);
  border-radius: var(--radius-card);
  padding: 14px 16px;
}
.search-input, .filter-select {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 10px 14px;
  border: 1px solid var(--ssv-border);
  border-radius: var(--radius-btn);
  background: #fff;
  color: var(--ssv-ink);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.search-input:focus, .filter-select:focus {
  outline: none;
  border-color: var(--ssv-blue);
  box-shadow: 0 0 0 3px rgba(0,70,150,0.12);
}
.search-input { flex: 1; min-width: 240px; }
.filter-select { min-width: 200px; cursor: pointer; }

/* Clubs ranking-style table */
.clubs-table-wrap {
  background: #fff;
  border: 1px solid var(--ssv-border);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.clubs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.clubs-table thead {
  background: var(--ssv-surface);
}
.clubs-table th {
  text-align: left;
  padding: 16px 20px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ssv-ink-muted);
  font-weight: 600;
  border-bottom: 1px solid var(--ssv-border);
}
.clubs-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--ssv-border);
  vertical-align: middle;
}
.clubs-table tr:last-child td { border-bottom: 0; }
.clubs-table tr { transition: background var(--transition); }
.clubs-table tbody tr:hover { background: var(--ssv-surface); }
.club-row-name { display: flex; align-items: center; gap: 14px; }
.club-row-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(0, 70, 150, 0.08);
  color: var(--ssv-blue);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-transform: uppercase;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(0,70,150,0.15);
}
.club-row-name strong { display: block; font-weight: 700; color: var(--ssv-black); font-size: 0.95rem; }
.club-row-name span { display: block; font-size: 0.78rem; color: var(--ssv-ink-muted); }
.district-pill {
  display: inline-block;
  background: var(--ssv-surface);
  color: var(--ssv-ink);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
}
.club-row-links { display: flex; gap: 6px; }
.club-row-links a {
  width: 32px; height: 32px;
  border-radius: 6px;
  background: var(--ssv-surface);
  display: flex; align-items: center; justify-content: center;
  color: var(--ssv-ink-muted);
  transition: all var(--transition);
}
.club-row-links a:hover { background: var(--ssv-blue); color: #fff; }
.no-results {
  padding: 48px 24px;
  text-align: center;
  color: var(--ssv-ink-muted);
}

/* ---------- Facilities ---------- */
.facilities-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: start;
}
.facility-list {
  background: #fff;
  border: 1px solid var(--ssv-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  list-style: none;
  padding: 0;
  margin: 0;
}
.facility-item {
  padding: 20px 24px;
  border-bottom: 1px solid var(--ssv-border);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.facility-item:last-child { border-bottom: 0; }
.facility-item:hover { background: var(--ssv-surface); }
.facility-item.active {
  background: rgba(0, 70, 150, 0.06);
  border-left: 4px solid var(--ssv-blue);
  padding-left: 20px;
}
.facility-item.active .facility-name { color: var(--ssv-blue); }
.facility-item.active .arrow { color: var(--ssv-blue); opacity: 1; }
.facility-item .facility-name { font-weight: 700; color: var(--ssv-ink); font-size: 0.98rem; }
.facility-item .facility-loc { font-size: 0.8rem; color: var(--ssv-ink-muted); display: block; margin-top: 2px; }
.facility-item .arrow { color: var(--ssv-ink-muted); opacity: 0.3; transition: all var(--transition); }

.facility-panel {
  position: sticky;
  top: 110px;
  background: #fff;
  border: 1px solid var(--ssv-border);
  border-radius: var(--radius-panel);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.facility-panel h3 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 8px;
}
.facility-address { font-size: 0.92rem; color: var(--ssv-blue); font-weight: 500; margin-bottom: 20px; }
.facility-clubs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.facility-clubs .pill {
  background: var(--ssv-surface);
  border: 1px solid var(--ssv-border);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--ssv-ink);
  font-weight: 500;
}
.facility-meta {
  border-top: 1px solid var(--ssv-border);
  padding-top: 20px;
  display: grid;
  gap: 12px;
  font-size: 0.92rem;
}
.facility-meta div strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ssv-ink-muted);
  font-weight: 600;
  margin-bottom: 2px;
}

/* ---------- Association ---------- */
.assoc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.assoc-card {
  background: #fff;
  border: 1px solid var(--ssv-border);
  border-radius: var(--radius-card);
  padding: 32px;
  transition: all var(--transition);
}
.assoc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--ssv-blue); }
.assoc-card .feature-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--ssv-surface);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--ssv-black);
}
.assoc-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 12px;
}
.assoc-card .read-more {
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--ssv-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: gap var(--transition);
}
.assoc-card .read-more:hover { gap: 12px; color: var(--ssv-blue-dark); }

/* ---------- Newsletter / Contact CTA ---------- */
.contact-cta {
  background: var(--ssv-surface);
  padding: 100px 0;
}
.cta-inner {
  background: var(--ssv-blue);
  border-radius: var(--radius-panel);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 340px;
  overflow: hidden;
}
.cta-text {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-text h2 {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.cta-text .eyebrow { color: var(--ssv-green); }
.cta-text p { color: rgba(255,255,255,0.78); font-size: 1.02rem; margin-bottom: 28px; max-width: 440px; }
.cta-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 6px;
  align-items: center;
}
.cta-form input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 12px 20px;
  color: #fff;
  font-family: inherit;
  font-size: 0.92rem;
}
.cta-form input::placeholder { color: rgba(255,255,255,0.5); }
.cta-form input:focus { outline: none; }
.cta-form button {
  background: var(--ssv-green);
  color: var(--ssv-black);
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  flex-shrink: 0;
}
.cta-form button:hover { background: var(--ssv-green-dark); }

.cta-visual {
  position: relative;
  overflow: hidden;
}
.cta-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.cta-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--ssv-blue) 0%, transparent 40%);
  z-index: 1;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0E0E10;
  color: #d4d4d4;
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand img { height: 60px; margin-bottom: 16px; border-radius: 10px; }
.footer-brand p { color: #9a9a9a; max-width: 360px; font-size: 0.92rem; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: #d4d4d4;
  transition: all var(--transition);
}
.footer-socials a:hover { background: var(--ssv-green); color: var(--ssv-black); }
.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  margin-bottom: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-col a { color: #b8b8b8; font-size: 0.92rem; }
.footer-col a:hover { color: var(--ssv-green); }
.footer-col li { color: #b8b8b8; font-size: 0.92rem; }
.footer-bottom {
  border-top: 1px solid #222;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: #777;
}
.footer-bottom a { color: #b8b8b8; }
.footer-bottom a:hover { color: var(--ssv-green); }
.footer-legal { display: flex; gap: 18px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .news-feature-layout { grid-template-columns: 1fr; }
  .news-side { flex-direction: row; flex-wrap: wrap; }
  .news-side-card { flex: 1 1 calc(50% - 10px); min-width: 280px; }
  .hero-circle { width: 360px; height: 360px; right: 4%; }
}

@media (max-width: 960px) {
  .section { padding: 72px 0; }
  #about { padding-top: 120px; }
  .hero { padding: 56px 0 100px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; min-height: auto; }
  .hero-circle { display: none; }
  .hero-visual { min-height: 420px; }
  .hero-athlete-placeholder { height: 420px; }
  .stats-strip { grid-template-columns: 1fr; }
  .stats-strip .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 20px 24px; }
  .stats-strip .stat:last-child { border-bottom: 0; }
  .about-grid, .assoc-grid { grid-template-columns: 1fr 1fr; }
  .facilities-layout { grid-template-columns: 1fr; }
  .facility-panel { position: static; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-text { padding: 56px 32px; }
  .cta-visual { min-height: 240px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

  .nav { display: none; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 84px;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 12px 28px 20px;
    border-bottom: 1px solid var(--ssv-border);
    box-shadow: var(--shadow-md);
  }
  .nav.open a { padding: 14px 0; border-bottom: 1px solid var(--ssv-border); }
  .nav.open a:last-child { border-bottom: 0; }
  .nav-toggle { display: block; }

  /* Stack clubs table into cards */
  .clubs-table thead { display: none; }
  .clubs-table, .clubs-table tbody, .clubs-table tr, .clubs-table td { display: block; width: 100%; }
  .clubs-table tr { padding: 16px; border-bottom: 1px solid var(--ssv-border); }
  .clubs-table td { padding: 6px 0; border: 0; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  #about { padding-top: 100px; }
  .container { padding: 0 20px; }
  .about-grid, .assoc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .header-inner { height: 68px; }
  .brand img { height: 40px; }
  .filter-bar { flex-direction: column; align-items: stretch; }
  .filter-select, .search-input { width: 100%; }
  .news-side-card { grid-template-columns: 90px 1fr; }
}
