/* ============================================================
   SpVgg Groß-Umstadt – Modernes Design
   ============================================================ */

:root {
  --navy: #0d1b3e;
  --blue: #1e3a8a;
  --blue-light: #2d5fc4;
  --gold: #FA8072;
  --gold-dark: #C25252;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-500: #6c757d;
  --gray-700: #495057;
  --gray-900: #212529;
  --text: #1a1a2e;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow: 0 4px 6px rgba(0,0,0,.1), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,.1), 0 4px 6px rgba(0,0,0,.05);
  --shadow-xl: 0 20px 25px rgba(0,0,0,.15), 0 10px 10px rgba(0,0,0,.04);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--gray-50);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4rem 0; }
.section-sm { padding: 2rem 0; }
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.section-subtitle {
  color: var(--gray-500);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}
.divider {
  width: 60px;
  height: 4px;
  background: var(--gold);
  margin: 0.75rem 0 1.5rem;
  border-radius: 2px;
}
.text-center { text-align: center; }
.text-center .divider { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* ── HEADER / NAV ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 68px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.2;
  text-decoration: none;
}
.logo:hover { color: var(--gold); }
.logo img { width: 48px; height: 48px; object-fit: contain; }
.logo-text span { display: block; font-size: 0.7rem; font-weight: 400; opacity: 0.75; }

/* Desktop Nav */
.nav-main {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
}
.nav-main > li { position: relative; }
.nav-main > li > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.75rem;
  color: rgba(255,255,255,.85);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-main > li > a:hover,
.nav-main > li > a.active {
  color: var(--gold);
  background: rgba(255,255,255,.08);
}
.nav-main > li > a svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 4px 0 0.4rem;
  border: 1px solid var(--gray-200);
  z-index: 100;
  list-style: none;
}
.dropdown-menu a {
  display: block;
  padding: 0.55rem 1rem;
  color: var(--gray-700);
  font-size: 0.875rem;
  transition: all var(--transition);
}
.dropdown-menu a:hover {
  background: var(--gray-50);
  color: var(--blue);
  padding-left: 1.3rem;
}
.nav-main > li:hover .dropdown-menu { display: block; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 0.5rem; }

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1rem;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  max-height: calc(100vh - 68px);
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav ul li a {
  display: block;
  padding: 0.65rem 0.75rem;
  color: rgba(255,255,255,.85);
  font-size: 0.9rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.mobile-nav ul li a:hover { color: var(--gold); background: rgba(255,255,255,.07); }
.mobile-nav ul li ul {
  padding-left: 1rem;
  border-left: 2px solid rgba(255,255,255,.1);
  margin: 0.25rem 0 0.25rem 0.75rem;
}
.mobile-nav ul li ul a { font-size: 0.85rem; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('13-vereinswappen/platz.jpg') center/cover no-repeat;
  opacity: 0.12;
}
.hero-content {
  position: relative;
  max-width: 700px;
}
.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 2rem;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero-logo {
  position: absolute;
  right: 2rem;
  bottom: -20px;
  width: clamp(120px, 15vw, 200px);
  opacity: 0.15;
}

/* Stats bar */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.25rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  text-align: center;
}
.stat-item .stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: 0.2rem;
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.card-img { aspect-ratio: 16/9; overflow: hidden; flex-shrink: 0; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 1.25rem; flex: 1; }
.card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 0.15rem 0.6rem;
  border-radius: 4px;
  background: var(--gold);
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.card-tag.gold { background: var(--gold); color: var(--navy); }
.card-tag.blue { background: var(--blue); color: var(--white); }
.card-tag.blue-light { background: var(--blue-light); color: var(--white); }
.card-tag.navy { background: var(--navy); color: var(--white); }
.card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.card-date {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}
.card-text { font-size: 0.9rem; color: var(--gray-700); white-space: pre-line; }
.card-has-image .card-text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* News grid */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }

/* Featured news */
.news-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.news-featured .card-main { grid-column: 1 / 2; }
.news-featured .card-side { grid-column: 2 / 3; }
@media (max-width: 768px) {
  .news-featured { grid-template-columns: 1fr; }
  .news-featured .card-main,
  .news-featured .card-side { grid-column: auto; }
}

/* ── SPORTS SECTIONS ── */
.sport-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--white);
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: transform var(--transition);
}
.sport-card:hover { transform: translateY(-4px); }
.sport-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,62,.9) 40%, transparent 100%);
  z-index: 0;
}
.sport-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.sport-card-content { position: relative; z-index: 1; }
.sport-card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  display: block;
}
.sport-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.3rem; }
.sport-card p { font-size: 0.85rem; opacity: 0.8; margin-bottom: 1rem; }
.sports-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }

/* ── TEAM GRID ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
.team-member {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem 0.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.team-member:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.team-member img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 0.75rem;
  border: 3px solid var(--gray-200);
}
.team-member .member-name { font-size: 0.875rem; font-weight: 600; color: var(--navy); }
.team-member .member-role { font-size: 0.75rem; color: var(--gray-500); margin-top: 0.2rem; }

/* ── TABLE ── */
.modern-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.modern-table th {
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.modern-table td { padding: 0.7rem 1rem; font-size: 0.9rem; border-bottom: 1px solid var(--gray-100); color: var(--gray-700); }
.modern-table tr:last-child td { border-bottom: none; }
.modern-table tr:hover td { background: var(--gray-50); }
.modern-table td a { color: var(--blue); font-weight: 500; }
.modern-table td a:hover { color: var(--gold-dark); }

/* ── SPONSOR GRID ── */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.sponsor-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.sponsor-item:hover { box-shadow: var(--shadow); border-color: var(--gold); }
.sponsor-item .sponsor-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); margin-bottom: 0.25rem; }
.sponsor-item .sponsor-addr { font-size: 0.78rem; color: var(--gray-500); margin-bottom: 0.5rem; flex: 1; }
.sponsor-item .sponsor-link { font-size: 0.8rem; color: var(--blue); font-weight: 500; }
.sponsor-item .sponsor-link:hover { color: var(--gold-dark); }

/* ── INFO BOX ── */
.info-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}
.info-box h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.info-box p { font-size: 0.9rem; color: var(--gray-700); }
.info-box.blue { border-left-color: var(--blue); }

/* ── MEMBERSHIP PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--gray-200);
  transition: all var(--transition);
}
.pricing-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow); }
.pricing-card.featured { border-color: var(--gold); background: linear-gradient(135deg, var(--navy), var(--blue)); color: var(--white); }
.pricing-card .price { font-size: 2rem; font-weight: 800; color: var(--gold); }
.pricing-card.featured .price { color: var(--gold); }
.pricing-card .price-unit { font-size: 0.8rem; color: var(--gray-500); }
.pricing-card.featured .price-unit { color: rgba(255,255,255,.7); }
.pricing-card .price-label { font-size: 0.85rem; font-weight: 600; margin-top: 0.75rem; color: var(--navy); }
.pricing-card.featured .price-label { color: var(--white); }

/* ── HERO-PAGE ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('13-vereinswappen/platz.jpg') center/cover no-repeat;
  opacity: 0.08;
}
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; }
.page-hero p { opacity: 0.8; margin-top: 0.5rem; font-size: 1rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  opacity: 0.7;
  margin-bottom: 0.75rem;
  list-style: none;
}
.breadcrumb li:not(:last-child)::after { content: '›'; margin-left: 0.4rem; }
.breadcrumb a { color: var(--white); }

/* ── TABS ── */
.tab-nav { display: flex; gap: 0; border-bottom: 2px solid var(--gray-200); margin-bottom: 2rem; flex-wrap: wrap; }
.tab-btn {
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-500);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
}
.tab-btn:hover { color: var(--navy); }
.tab-btn.active { color: var(--navy); border-bottom-color: var(--gold); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── PHOTO GALLERY ── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.photo-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-200);
}
.photo-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.photo-item:hover img { transform: scale(1.06); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.contact-info { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); }
.contact-info h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.contact-row { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.9rem; color: var(--gray-700); }
.contact-row svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--gold); margin-top: 2px; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 3.5rem 0 1.5rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; }
.footer-badges { display: flex; gap: 1rem; align-items: center; margin-top: 1.25rem; }
.footer-badges img { height: 56px; width: auto; opacity: 0.9; transition: opacity var(--transition); }
.footer-badges a:hover img { opacity: 1; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 0.75rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
}
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--gold); }

/* ── ACCORDION ── */
.accordion { display: flex; flex-direction: column; gap: 0.5rem; }
.accordion-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}
.accordion-header:hover { background: var(--gray-50); }
.accordion-header svg { flex-shrink: 0; transition: transform var(--transition); }
.accordion-item.open .accordion-header svg { transform: rotate(180deg); }
.accordion-body {
  display: none;
  padding: 0 1.25rem 1rem;
  font-size: 0.9rem;
  color: var(--gray-700);
}
.accordion-item.open .accordion-body { display: block; }

/* ── SECTION BACKGROUNDS ── */
.bg-white { background: var(--white); }
.bg-light { background: var(--gray-50); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-gradient { background: linear-gradient(135deg, var(--navy), var(--blue)); color: var(--white); }

/* ── TWO-COLUMN RESPONSIVE GRID ── */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.two-col-grid > * { min-width: 0; }

/* ── MEMBERSHIP LAYOUT ── */
.membership-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.membership-benefits { min-width: 0; }
.membership-pricing { min-width: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-main, .header-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 2.5rem 0; }
  .section-title { font-size: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { padding: 3rem 0 2.5rem; }
  .news-grid { grid-template-columns: 1fr; }
  .sports-grid { grid-template-columns: 1fr 1fr; }
  .two-col-grid { grid-template-columns: 1fr; }
  .membership-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .membership-pricing .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .sports-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .membership-pricing .pricing-grid { grid-template-columns: 1fr; }
}

/* ── LINK LIST ── */
.link-list { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.link-list li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--gray-700);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.link-list li a:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.link-list li a svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── CHIP / BADGE ── */
.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.badge-gold { background: var(--gold); color: var(--navy); }
.badge-navy { background: var(--navy); color: var(--white); }
.badge-blue { background: var(--blue); color: var(--white); }
.badge-success { background: #16a34a; color: var(--white); }

/* ── ANNOUNCEMENT BANNER ── */
.announcement {
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.announcement a { color: var(--navy); text-decoration: underline; }

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 500;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
