/* ==========================================================================
   Köpenicker FC e.V. — style.css
   Farben: Rot #E30613 · Schwarz · Weiß (Vereinsfarben)
   Fonts:  Outfit (Display) · Inter (Text) — lokal gehostet, kein Google-CDN
   ========================================================================== */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/inter-var-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 500 900;
  font-display: swap;
  src: url('../fonts/outfit-var-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/anton-latin.woff2') format('woff2');
}

:root {
  --red: #E30613;
  --red-dark: #B00510;
  --red-deep: #8A040D;
  --ink: #101014;
  --ink-soft: #1B1B21;
  --gray-700: #494952;
  --gray-500: #6E6E78;
  --gray-300: #C9C9D1;
  --gray-150: #E7E7EC;
  --gray-100: #F0F0F3;
  --gray-50: #F7F7F9;
  --white: #FFFFFF;
  --font-display: 'Outfit', 'Avenir Next', 'Helvetica Neue', sans-serif;
  --font-headline: 'Anton', 'Arial Narrow', 'Helvetica Neue', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --texture: url('../img/texture-strokes.svg');
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(16, 16, 20, .05), 0 4px 14px rgba(16, 16, 20, .05);
  --shadow-md: 0 2px 6px rgba(16, 16, 20, .06), 0 14px 34px rgba(16, 16, 20, .10);
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; }

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

::selection { background: var(--red); color: var(--white); }

/* --------------------------------------------------------------------------
   Typografie-Bausteine
   -------------------------------------------------------------------------- */

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
}
.kicker::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--red);
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.08; }

.section-title {
  font-family: var(--font-headline);
  font-size: clamp(32px, 4.6vw, 50px);
  font-weight: 400;
  letter-spacing: .015em;
  text-transform: uppercase;
  line-height: 1.02;
  margin: 14px 0 12px;
  text-wrap: balance;
}
.section-lead {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 640px;
}

.section { padding: 96px 0; }
.section-tight { padding: 72px 0; }
.section-gray { background: var(--gray-50); }
.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; }
.section-head.center .section-lead { margin: 0 auto; }
.section-head.center .kicker::before { display: none; }
.section-head.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .02em;
  padding: 14px 26px;
  border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn svg { flex: 0 0 auto; }

.btn-red { background: var(--red); color: var(--white); box-shadow: 0 6px 18px rgba(227, 6, 19, .28); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); }

.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #000; transform: translateY(-2px); }

.btn-ghost { border: 1.5px solid var(--gray-300); color: var(--ink); background: var(--white); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

.btn-white { background: var(--white); color: var(--red); }
.btn-white:hover { background: rgba(255, 255, 255, .92); transform: translateY(-2px); }

.btn-outline-white { border: 1.5px solid rgba(255, 255, 255, .45); color: var(--white); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255, 255, 255, .1); transform: translateY(-2px); }

.btn-sm { padding: 10px 18px; font-size: 14px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--red);
}
.link-arrow svg { transition: transform .18s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */

.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.navbar.scrolled { border-bottom-color: var(--gray-150); box-shadow: 0 4px 24px rgba(16, 16, 20, .06); }

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { width: 46px; height: auto; }
.nav-brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -.01em;
  line-height: 1.1;
  white-space: nowrap;
}
.nav-brand-sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: .06em;
  color: var(--gray-500);
}

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > li:not(.nav-cta) > a {
  display: block;
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--gray-700);
  transition: color .15s ease, background .15s ease;
}
.nav-menu > li:not(.nav-cta) > a:hover { color: var(--ink); background: var(--gray-100); }
.nav-menu > li:not(.nav-cta) > a.active { color: var(--red); }
.nav-cta { margin-left: 10px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Hero (Startseite)
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  overflow: hidden;
  background: var(--red-deep);
  color: var(--white);
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    var(--texture),
    linear-gradient(100deg, rgba(16, 3, 5, .92) 0%, rgba(138, 4, 13, .78) 48%, rgba(227, 6, 19, .42) 100%);
  background-size: 1600px 900px, cover;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(0, 0, 0, .35);
  border: 1px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 8px 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(227, 6, 19, .35);
}

.hero-title {
  font-family: var(--font-headline);
  font-size: clamp(58px, 10vw, 128px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: .96;
  margin: 26px 0 24px;
}
.hero-title .outline {
  color: transparent;
  -webkit-text-stroke: 2.5px var(--white);
  text-stroke: 2.5px var(--white);
}
@supports not (-webkit-text-stroke: 2px white) {
  .hero-title .outline { color: var(--white); }
}

.hero-lead {
  font-size: 18px;
  color: rgba(255, 255, 255, .88);
  max-width: 540px;
  margin-bottom: 34px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .28);
  padding-top: 26px;
  max-width: 560px;
}
.hero-stat { flex: 1; }
.hero-stat + .hero-stat { border-left: 1px solid rgba(255, 255, 255, .28); padding-left: 26px; }
.hero-stat b {
  display: block;
  font-family: var(--font-headline);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1.1;
}
.hero-stat span { font-size: 13.5px; color: rgba(255, 255, 255, .72); }

/* --------------------------------------------------------------------------
   Karten & Grids
   -------------------------------------------------------------------------- */

.card {
  background: var(--white);
  border: 1px solid var(--gray-150);
  border-radius: var(--radius);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gray-300); }

/* Kategorie-Kacheln (Startseite) */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cat-card {
  position: relative;
  padding: 34px 30px 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 230px;
}
.cat-card .cat-count {
  font-family: var(--font-headline);
  font-size: 56px;
  font-weight: 400;
  color: var(--red);
  line-height: 1;
}
.cat-card h3 { font-size: 22px; font-weight: 800; margin-top: 8px; }
.cat-card p { font-size: 14.5px; color: var(--gray-500); flex: 1; }
.cat-card .link-arrow { margin-top: 16px; }

/* News */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.news-card { overflow: hidden; display: flex; flex-direction: column; }
.news-card .news-img {
  aspect-ratio: 16 / 10;
  background: var(--gray-100);
  overflow: hidden;
  position: relative;
}
.news-card .news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.news-card:hover .news-img img { transform: scale(1.045); }
.news-body { padding: 24px 26px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.news-meta { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--gray-500); }
.news-chip {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(227, 6, 19, .08);
  padding: 4px 11px;
  border-radius: 999px;
}
.news-body h3 { font-size: 20px; font-weight: 800; line-height: 1.25; }
.news-body p { font-size: 14.5px; color: var(--gray-500); flex: 1; }

.news-empty {
  text-align: center;
  color: var(--gray-500);
  padding: 60px 0;
}

/* News-Artikel (Detail) */
.article { max-width: 760px; margin: 0 auto; }
.article-hero-img { border-radius: var(--radius); overflow: hidden; margin: 30px 0; box-shadow: var(--shadow-md); }
.article-title { font-size: clamp(30px, 4.6vw, 44px); font-weight: 800; letter-spacing: -.01em; margin: 14px 0 6px; }
.article-body { font-size: 17px; color: var(--ink-soft); }
.article-body p { margin-bottom: 18px; }
.article-body a { color: var(--red); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--gray-500);
  margin-bottom: 8px;
  transition: color .15s ease;
}
.back-link:hover { color: var(--red); }

/* Sponsoren */
.sponsor-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.sponsor-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px 28px;
  min-height: 150px;
}
.sponsor-card img {
  max-height: 74px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .72;
  transition: filter .25s ease, opacity .25s ease;
}
.sponsor-card:hover img { filter: none; opacity: 1; }
.sponsor-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  text-align: center;
  color: var(--gray-700);
  line-height: 1.25;
  transition: color .25s ease;
}
.sponsor-text small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 12.5px; color: var(--gray-500); margin-top: 4px; }
.sponsor-card:hover .sponsor-text { color: var(--red); }

/* --------------------------------------------------------------------------
   Mannschaften
   -------------------------------------------------------------------------- */

.team-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}
.filter-chip {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--gray-150);
  background: var(--white);
  color: var(--gray-700);
  transition: all .18s ease;
}
.filter-chip:hover { border-color: var(--ink); color: var(--ink); }
.filter-chip.active { background: var(--ink); border-color: var(--ink); color: var(--white); }

.team-group { margin-bottom: 56px; }
.team-group-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 22px;
}
.team-group-head h2 { font-size: 26px; font-weight: 800; }
.team-group-head span { font-size: 14px; color: var(--gray-500); font-weight: 500; }

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

.team-card { padding: 24px 24px 22px; display: flex; flex-direction: column; gap: 12px; }
.team-card-wide { grid-column: 1 / -1; }
.team-card-wide .team-photo { aspect-ratio: 21 / 9; }
.team-card-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.team-card h3 { font-size: 19px; font-weight: 800; }
.team-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--gray-100);
  color: var(--gray-700);
  white-space: nowrap;
}
.team-tag.liga { background: rgba(227, 6, 19, .09); color: var(--red); }

.team-facts { display: flex; flex-direction: column; gap: 7px; font-size: 14px; color: var(--gray-700); }
.team-facts li { display: flex; gap: 9px; align-items: baseline; }
.team-facts b { font-weight: 600; color: var(--gray-500); min-width: 88px; font-size: 13px; }

.team-photo { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 16/9; background: var(--gray-100); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }

.team-links { display: flex; gap: 14px; margin-top: auto; padding-top: 4px; }

/* --------------------------------------------------------------------------
   Verein / Vorstand / Kontakt
   -------------------------------------------------------------------------- */

.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.prose p { margin-bottom: 16px; color: var(--ink-soft); }
.prose p strong { font-weight: 700; }

.value-list { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.value-item { display: flex; gap: 16px; align-items: flex-start; }
.value-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(227, 6, 19, .08);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-item h4 { font-size: 16.5px; font-weight: 700; margin-bottom: 2px; }
.value-item p { font-size: 14.5px; color: var(--gray-500); }

.people-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.person-card { padding: 30px 28px; text-align: center; }
.person-avatar {
  width: 74px;
  height: 74px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--red), var(--red-deep));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.person-card h3 { font-size: 18px; font-weight: 800; }
.person-card p { font-size: 14px; color: var(--gray-500); margin-top: 3px; }

.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.contact-card { padding: 28px 26px; }
.contact-card .value-icon { margin-bottom: 16px; }
.contact-card h3 { font-size: 16.5px; font-weight: 800; margin-bottom: 6px; }
.contact-card p, .contact-card a { font-size: 14.5px; color: var(--gray-700); line-height: 1.6; }
.contact-card a:hover { color: var(--red); }

.social-row { display: flex; gap: 10px; margin-top: 4px; }
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--gray-150);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
  transition: all .18s ease;
}
.social-btn:hover { background: var(--red); border-color: var(--red); color: var(--white); transform: translateY(-2px); }

/* Anliegen-Karten (Kontakt) */
.topic-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.topic-card { padding: 26px 26px 24px; display: flex; flex-direction: column; gap: 8px; }
.topic-card h3 { font-size: 18px; font-weight: 800; }
.topic-card p { font-size: 14.5px; color: var(--gray-500); flex: 1; }
.topic-card .link-arrow { margin-top: 12px; }

/* --------------------------------------------------------------------------
   Spielstätten
   -------------------------------------------------------------------------- */

.venue-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.venue-card { overflow: hidden; }
.venue-body { padding: 28px 28px 26px; }
.venue-body h3 { font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.venue-body .venue-addr { color: var(--gray-500); font-size: 14.5px; margin-bottom: 12px; }
.venue-body p { font-size: 15px; color: var(--ink-soft); margin-bottom: 14px; }
.venue-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }

.map-consent {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(400px 200px at 70% 20%, rgba(227, 6, 19, .06), transparent),
    var(--gray-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 24px;
}
.map-consent p { font-size: 13.5px; color: var(--gray-500); max-width: 380px; }
.map-frame { aspect-ratio: 16 / 9; }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* --------------------------------------------------------------------------
   CTA-Band
   -------------------------------------------------------------------------- */

.cta-band {
  background:
    var(--texture),
    linear-gradient(135deg, var(--red) 0%, var(--red-dark) 55%, var(--red-deep) 100%);
  background-size: 1600px 900px, cover;
  border-radius: 28px;
  padding: 72px 60px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 130%, transparent 40%, rgba(255, 255, 255, .1) 40.5%, rgba(255, 255, 255, .1) 41.5%, transparent 42%);
}
.cta-band h2 {
  font-family: var(--font-headline);
  font-size: clamp(30px, 4.4vw, 48px);
  font-weight: 400;
  letter-spacing: .015em;
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
}
.cta-band p { font-size: 17px; opacity: .92; max-width: 560px; margin: 0 auto 32px; position: relative; }
.cta-band .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* --------------------------------------------------------------------------
   Page-Header (Unterseiten)
   -------------------------------------------------------------------------- */

.page-head {
  padding: 156px 0 70px;
  position: relative;
  background:
    var(--texture),
    linear-gradient(115deg, #14060810 0%, transparent 40%),
    linear-gradient(105deg, var(--red-deep) 0%, var(--red-dark) 55%, var(--red) 100%);
  background-size: 1600px 900px, cover, cover;
  color: var(--white);
}
.page-head .kicker { color: var(--white); }
.page-head .kicker::before { background: var(--white); }
.page-title {
  font-family: var(--font-headline);
  font-size: clamp(44px, 7vw, 84px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .015em;
  line-height: .98;
  margin: 14px 0 12px;
}
.page-lead { font-size: 17px; color: rgba(255, 255, 255, .88); max-width: 620px; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .72);
  padding: 72px 0 0;
  margin-top: 40px;
}
.footer a { transition: color .15s ease; }
.footer a:hover { color: var(--white); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 52px;
}
.footer-brand { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; }
.footer-brand img { width: 52px; }
.footer-brand-name { font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--white); line-height: 1.15; }
.footer-brand-name small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 12px; color: rgba(255, 255, 255, .5); }
.footer-about { font-size: 14.5px; max-width: 300px; }

.footer h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col { display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13.5px;
}
.footer-bottom .red-heart { color: var(--red); }

/* --------------------------------------------------------------------------
   Scroll-Reveal
   -------------------------------------------------------------------------- */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1020px) {
  .cat-grid, .news-grid, .people-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .sponsor-grid, .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split-2 { grid-template-columns: 1fr; gap: 48px; }
  .venue-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1080px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-150);
    box-shadow: 0 20px 40px rgba(16, 16, 20, .1);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 16px 20px 22px;
    display: none;
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li:not(.nav-cta) > a { padding: 13px 14px; font-size: 16px; border-radius: 12px; }
  .nav-cta { margin: 10px 0 0; }
  .nav-cta .btn { width: 100%; }
}

@media (max-width: 720px) {
  .section { padding: 68px 0; }
  .hero { padding: 130px 0 72px; min-height: 0; }
  .hero-stats { flex-direction: row; }
  .hero-stat b { font-size: 26px; }
  .page-head { padding: 130px 0 54px; }
  .cat-grid, .news-grid, .people-grid, .team-grid, .topic-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 56px 28px; }
}

@media (max-width: 480px) {
  .sponsor-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 18px; }
  .hero-stat + .hero-stat { border-left: 0; padding-left: 0; }
  .hero-stat { flex: 1 1 40%; }
}
