/* ============================================
   CLUB SUIZO COSTA BLANCA – V3 Stylesheet
   Modern, Clean Design – V3 Theme
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --rot:      #C0000B;
  --rotdunkel:#8B0000;
  --gelb:     #F5C800;
  --dunkel:   #2c2c2c;
  --grau1:    #f8f8f8;
  --grau2:    #e8e8e8;
  --grau3:    #999;
  --text:     #2c2c2c;
  --weiss:    #ffffff;
  /* Für Rückwärtskompatibilität mit alten Klassen: */
  --schwarz:  #2c2c2c;
  --grau:     #f8f8f8;
  --rand:     #e8e8e8;
  --hellrot:  #fff2f2;
  --hellgelb: #fffbe6;
}

html {
  font-size: 17px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ── FLAGGEN-AKZENTSTREIFEN ── */
.flag-stripe {
  height: 8px;
  background: linear-gradient(to right,
    var(--rot) 0%, var(--rot) 33%,
    var(--gelb) 33%, var(--gelb) 67%,
    var(--rot) 67%, var(--rot) 100%
  );
}

/* ── HEADER ── */
.header {
  background: #fff;
  border-bottom: 1px solid var(--grau2);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.header-inner {
  max-width: 1140px; margin: 0 auto;
  padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  height: 62px;
}
.logo-wrap { display: flex; align-items: center; gap: 10px; }
.logo-emblem {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--rot);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-emblem span { font-size: 1.3rem; line-height: 1; }
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-name {
  font-size: 0.8rem; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase; color: var(--rot);
  line-height: 1.2;
}
.logo-sub { font-size: 0.65rem; color: var(--grau3); letter-spacing: 0.3px; }

/* Desktop Nav */
.header-nav {
  display: flex; align-items: center; gap: 24px;
}
.header-nav a {
  font-size: 0.82rem; font-weight: 500; color: var(--text);
  opacity: 0.7; transition: opacity 0.15s; white-space: nowrap;
}
.header-nav a:hover { opacity: 1; }
.btn-nav {
  background: var(--rot) !important; color: #fff !important;
  padding: 9px 18px; border-radius: 6px;
  font-size: 0.8rem !important; font-weight: 700 !important;
  opacity: 1 !important; transition: background 0.15s !important;
}
.btn-nav:hover { background: var(--rotdunkel) !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border: none; background: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--dunkel); border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* Mobile Nav Overlay */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(255,255,255,0.98);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  width: 100%; text-align: center; padding: 14px;
  font-size: 1.1rem; font-weight: 600; color: var(--text);
  border-radius: 10px; border: 1px solid var(--grau2);
  transition: background 0.15s;
}
.mobile-nav a:hover { background: var(--grau1); }
.mobile-nav .btn-nav-m {
  background: var(--rot); color: #fff; border-color: var(--rot);
  font-weight: 700;
}
.mobile-nav-close {
  position: absolute; top: 18px; right: 20px;
  font-size: 1.6rem; cursor: pointer; color: var(--grau3);
  background: none; border: none; padding: 8px;
}

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  padding: 72px 20px 64px;
  background: linear-gradient(135deg, #c0392b 0%, #922b21 50%, #6e1a14 100%);
  text-align: center;
}
/* Schweizer Kreuz Wasserzeichen */
.hero::before {
  content: '✚';
  position: absolute; right: -40px; top: -60px;
  font-size: 320px; color: rgba(255,255,255,0.06);
  line-height: 1; pointer-events: none; user-select: none;
}
/* Spanische Flaggen-Andeutung unten */
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(to right, var(--rot) 33%, var(--gelb) 33%, var(--gelb) 67%, var(--rot) 67%);
}
.hero-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.hero-eyebrow {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  margin-bottom: 18px; display: block;
}
.hero-title {
  font-size: clamp(1.9rem, 5vw, 3rem); font-weight: 800;
  color: #fff; line-height: 1.15; letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.hero-title em { color: var(--gelb); font-style: normal; }
.hero-sub {
  font-size: 0.95rem; color: rgba(255,255,255,0.6);
  margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto;
}
.hero-cta {
  display: inline-block;
  background: #fff; color: var(--rot);
  padding: 13px 30px; border-radius: 8px;
  font-weight: 800; font-size: 0.9rem;
  letter-spacing: 0.2px;
  transition: background 0.15s, transform 0.1s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.hero-cta:hover { background: #f5e6e6; transform: translateY(-1px); }
.hero-langs {
  margin-top: 24px; font-size: 0.72rem;
  color: rgba(255,255,255,0.3); letter-spacing: 1.5px;
}

/* ── WRAPPER ── */
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* ── SECTION ── */
.section { padding: 56px 0; }
.section-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--rot); margin-bottom: 6px;
}
.section-title {
  font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 800;
  color: var(--dunkel); letter-spacing: -0.3px; margin-bottom: 32px;
  line-height: 1.2;
}

/* ── NAV KACHELN ── */
.nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 860px) { .nav-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .nav-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; } }

.nav-card {
  background: var(--grau1); border-radius: 12px;
  padding: 20px 16px; border: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  display: block;
}
.nav-card:hover { background: #fff; border-color: var(--grau3); transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,0.08); }
.nav-card-icon { font-size: 1.4rem; margin-bottom: 8px; line-height: 1; }
.nav-card-title { font-size: 0.88rem; font-weight: 700; color: var(--dunkel); margin-bottom: 2px; }
.nav-card-sub { font-size: 0.72rem; color: var(--grau3); line-height: 1.3; }

/* ── ÜBER UNS ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center;
  background: var(--grau1); border-radius: 18px; padding: 44px 40px;
}
@media (max-width: 640px) { .about-grid { grid-template-columns: 1fr; gap: 28px; padding: 28px 24px; } }

.about-text p { color: #555; font-size: 0.9rem; margin-top: 10px; line-height: 1.75; }
.about-link {
  display: inline-block; margin-top: 18px;
  font-size: 0.85rem; font-weight: 700; color: var(--rot);
  border-bottom: 1.5px solid var(--rot); padding-bottom: 1px;
}
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat {
  background: #fff; border-radius: 10px; padding: 18px 14px;
  text-align: center; border: 1px solid var(--grau2);
}
.stat-num { font-size: 1.9rem; font-weight: 800; color: var(--rot); line-height: 1; }
.stat-label { font-size: 0.72rem; color: var(--grau3); margin-top: 3px; }

/* ── HIGHLIGHTS ── */
.hl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 640px) { .hl-grid { grid-template-columns: 1fr; } }
.hl-card {
  border: 1px solid var(--grau2); border-radius: 12px;
  padding: 24px 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.hl-card:hover { border-color: var(--grau3); box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.hl-icon { font-size: 1.4rem; margin-bottom: 12px; }
.hl-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; color: var(--dunkel); }
.hl-text { font-size: 0.84rem; color: #666; line-height: 1.65; }

/* ── NEWSLETTER ── */
.nl-strip {
  background: linear-gradient(135deg, var(--rot) 0%, var(--rotdunkel) 100%);
  border-radius: 16px; padding: 40px 36px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
/* Schweizer Kreuz dezent */
.nl-strip::after {
  content: '✚';
  position: absolute; right: -20px; bottom: -40px;
  font-size: 180px; color: rgba(255,255,255,0.05);
  pointer-events: none;
}
.nl-text h3 { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.nl-text p { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.nl-btn {
  background: #fff; color: var(--rot);
  padding: 12px 26px; border-radius: 8px;
  font-weight: 700; font-size: 0.88rem; white-space: nowrap;
  flex-shrink: 0; transition: background 0.15s;
}
.nl-btn:hover { background: #fdf0f0; }

/* ── FOOTER ── */
.footer {
  background: #3a1a1a;
  margin-top: 0;
}
/* Flaggen-Streifen oben am Footer */
.footer-stripe {
  height: 8px;
  background: linear-gradient(to right,
    var(--rot) 0%, var(--rot) 33%,
    var(--gelb) 33%, var(--gelb) 67%,
    var(--rot) 67%, var(--rot) 100%
  );
}
.footer-body { padding: 48px 20px 32px; }
.footer-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px;
}
@media (max-width: 640px) { .footer-inner { grid-template-columns: 1fr; gap: 28px; } }

.footer-brand .logo-name { color: var(--gelb); }
.footer-brand p {
  font-size: 0.82rem; color: rgba(255,255,255,0.82);
  margin-top: 12px; line-height: 1.75;
}
.footer-brand a { color: rgba(255,255,255,0.82); transition: color 0.15s; }
.footer-brand a:hover { color: #fff; }
.footer-col h4 {
  font-size: 0.65rem; letter-spacing: 1.8px; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 14px;
}
.footer-col a {
  display: block; font-size: 0.82rem;
  color: rgba(255,255,255,0.82); margin-bottom: 8px;
  transition: color 0.15s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 1140px; margin: 28px auto 0; padding: 20px 20px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: 0.73rem; color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.5); margin-left: 16px; transition: color 0.15s; }
.footer-bottom a:hover { color: #fff; }

/* ── PAGE HEADER (für Unterseiten) ── */
.page-header {
  background: linear-gradient(135deg, #c0392b 0%, #922b21 50%, #6e1a14 100%);
  color: #fff;
  padding: 36px 20px 32px;
}
.page-header.gelb {
  background: var(--gelb);
  color: var(--dunkel);
}
.page-header-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.page-header h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}
.page-header p {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* ── CONTENT WRAPPER ── */
.content {
  max-width: 1140px;
  margin: 0 auto;
  padding: 28px 20px;
}

/* ── BUTTONS ── */
.btn-cta {
  display: inline-block;
  background: var(--rot);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.1s;
}

.btn-cta:hover {
  background: var(--rotdunkel);
  transform: translateY(-1px);
}

.btn-dark {
  display: inline-block;
  background: var(--dunkel);
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: background 0.15s;
}

.btn-dark:hover {
  background: #2a2a2c;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--grau1);
  border: 1px solid var(--grau2);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: border-color 0.15s;
}

.back-btn:hover {
  border-color: var(--rot);
}

/* ── KARTE KOMPONENTEN ── */
.info-card {
  background: var(--grau1);
  border-radius: 12px;
  padding: 18px 16px;
  margin-bottom: 14px;
  border-left: 4px solid var(--rot);
}

.info-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dunkel);
}

.info-card p {
  font-size: 0.95rem;
  color: #444;
  margin: 0;
}

.kontakt-card {
  background: var(--grau1);
  border-radius: 12px;
  padding: 20px 16px;
  margin-bottom: 16px;
  border: 1px solid var(--grau2);
}

.kontakt-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--rot);
}

.kontakt-zeile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--grau2);
  font-size: 1rem;
  text-decoration: none;
  color: var(--text);
  transition: color 0.15s;
}

.kontakt-zeile:last-child {
  border-bottom: none;
}

.kontakt-zeile:hover {
  color: var(--rot);
}

.kontakt-zeile .kz-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.kontakt-zeile .kz-text strong {
  display: block;
  font-size: 0.85rem;
  color: #888;
  font-weight: 600;
}

/* ── CTA WRAP ── */
.cta-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 24px 20px 0;
}

/* ── TILES SECTION ── */
.tiles-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 8px 20px 32px;
}

/* ── TILE GRID ── */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}

.tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1.5px solid var(--grau2);
  border-radius: 14px;
  padding: 24px 12px 20px;
  text-decoration: none;
  color: var(--text);
  min-height: 120px;
  text-align: center;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: border-color 0.2s, background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.tile:hover {
  border-color: var(--rot);
  background: var(--hellrot);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(192,0,11,0.12);
}

/* Farbvarianten */
.tile.t-rot {
  background: var(--rot);
  border-color: var(--rot);
  color: #fff;
}
.tile.t-rot .t-label { color: #fff; }
.tile.t-rot:hover { background: var(--rotdunkel); border-color: var(--rotdunkel); }

.tile.t-gelb {
  background: var(--gelb);
  border-color: #d4a800;
  color: var(--dunkel);
}
.tile.t-gelb:hover { background: #e6bb00; border-color: #c9a000; transform: translateY(-3px); }

.tile .t-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.tile .t-label {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
}

.tile .t-sub {
  font-size: 0.75rem;
  color: var(--grau3);
}

/* ── VORSTAND GRID ── */
.vs-card {
  border: 1px solid var(--grau2);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.2s, transform 0.15s;
}

.vs-card:hover {
  border-color: var(--rot);
  transform: translateY(-2px);
}

.vs-foto {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.vs-info {
  padding: 18px 16px;
}

.vs-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dunkel);
  margin-bottom: 4px;
}

.vs-rolle {
  font-size: 0.85rem;
  color: var(--rot);
  font-weight: 600;
  margin-bottom: 8px;
}

.vs-bio {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.5;
}

.vorstand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

/* ── KALENDER ── */
.kalender-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: var(--rot);
  color: white;
}

.kalender-header h2 {
  font-size: 1.2rem;
  font-weight: 900;
}

.kalender-nav-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: background 0.15s;
}

.kalender-nav-btn:hover {
  background: rgba(255, 255, 255, 0.35);
}

.wochentage {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: var(--dunkel);
  color: white;
}

.wochentag {
  padding: 10px 4px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.kalender-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-left: 1px solid var(--grau2);
  border-top: 1px solid var(--grau2);
}

.kal-tag {
  border-right: 1px solid var(--grau2);
  border-bottom: 1px solid var(--grau2);
  padding: 6px 4px;
  min-height: 52px;
  font-size: 0.9rem;
  cursor: pointer;
  position: relative;
  transition: background 0.15s;
}

.kal-tag:hover {
  background: var(--hellrot);
}

.kal-tag.leer {
  background: #fafafa;
  color: #bbb;
}

.kal-tag.heute {
  background: var(--grau1);
  font-weight: 900;
}

.kal-tag.hat-events {
  background: var(--hellrot);
}

.kal-tag .tag-nr {
  font-weight: 700;
}

.event-dot {
  display: block;
  width: 6px;
  height: 6px;
  background: var(--rot);
  border-radius: 50%;
  margin: 3px auto 0;
}

.event-liste {
  padding: 16px;
}

.event-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--grau2);
}

.event-item:last-child {
  border-bottom: none;
}

.event-datum {
  flex-shrink: 0;
  background: var(--rot);
  color: white;
  border-radius: 10px;
  padding: 8px 10px;
  text-align: center;
  min-width: 54px;
}

.event-datum .e-tag {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}

.event-datum .e-monat {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-info {
  flex: 1;
}

.event-info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--dunkel);
}

.event-info p {
  font-size: 0.88rem;
  color: #555;
  margin: 0;
}

.event-badge {
  display: inline-block;
  background: var(--hellgelb);
  border: 1px solid var(--gelb);
  color: #7a6000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-top: 4px;
}

/* ── FORMULAR STYLES ── */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dunkel);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--grau2);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.15s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--rot);
  box-shadow: 0 0 0 3px rgba(192, 0, 11, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ── RESPONSIVE HEADER ── */
@media (max-width: 780px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .logo-sub { display: none; }
}

/* ── RESPONSIVE GENERAL ── */
@media (max-width: 768px) {
  .section {
    padding: 48px 20px;
  }

  .section-title {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
  }

  .about-grid {
    padding: 32px 24px;
    gap: 32px;
  }

  .nl-strip {
    padding: 32px 24px;
    gap: 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 640px) {
  html {
    font-size: 16px;
  }

  .logo-name {
    font-size: 0.75rem;
    letter-spacing: 1px;
  }

  .logo-sub {
    font-size: 0.65rem;
  }

  .hero {
    padding: 48px 20px 40px;
  }

  .hero-title {
    font-size: clamp(1.3rem, 3vw, 2rem);
  }

  .hero-eyebrow {
    font-size: 0.65rem;
  }

  .hero-sub {
    font-size: 0.9rem;
  }

  .section {
    padding: 40px 20px;
  }

  .section-label {
    font-size: 0.65rem;
  }

  .section-title {
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    margin-bottom: 28px;
  }

  .page-header {
    padding: 32px 20px 24px;
  }

  .page-header h1 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
  }

  .nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tile-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vorstand-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    padding: 24px 16px;
    gap: 20px;
  }

  .hl-grid {
    grid-template-columns: 1fr;
  }

  .nl-strip {
    padding: 24px 16px;
    flex-direction: column;
    text-align: center;
  }

  .nl-btn {
    width: 100%;
  }

  .footer-body {
    padding: 32px 20px 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
