/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── TOKENS ── */
:root {
  --blue: #0D47A1;
  --blue-light: #1565C0;
  --blue-bright: #1976D2;
  --blue-pale: #E3F2FD;
  --blue-wash: #F0F7FF;
  --navy: #0A1628;
  --navy2: #0F1D30;
  --white: #FFFFFF;
  --off-white: #FAFBFD;
  --gray-light: #F3F5F8;
  --gray: #E2E6EC;
  --text: #1A2332;
  --text-body: #3D4F63;
  --muted: #6B7C93;
  --font-head: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Helvetica Neue', 'Arial', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 3rem 0.5rem;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray);
  transition: background 0.3s, box-shadow 0.3s;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
}
#nav > nav {
  width: 100%;
  order: 3;
}
.nav-links {
  display: flex;
  justify-content: space-evenly;
  list-style: none;
  align-items: center;
  padding-top: 0.4rem;
}
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }

/* ── NAV DROPDOWN ── */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 0.3rem; }
.nav-dropdown > a::after {
  content: '';
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.3s;
}
.nav-dropdown:hover > a::after { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--gray);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  min-width: 200px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  list-style: none;
  border-radius: 4px;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; }
.dropdown-menu li a {
  display: block;
  padding: 0.6rem 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.dropdown-menu li a:hover {
  color: var(--blue);
  background: var(--blue-pale);
}

/* ── LANG SWITCH ── */
.lang-switch { display: flex; gap: 0.4rem; align-items: center; flex-shrink: 0; }
.lang-btn {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  cursor: pointer;
  padding: 0.25rem 0.4rem;
  transition: color 0.3s, opacity 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  opacity: 0.5;
  font-weight: 500;
}
.lang-btn.active { color: var(--blue); opacity: 1; }
.lang-btn .flag { font-size: 1.1rem; line-height: 1; }
.lang-divider { color: var(--gray); font-size: 0.65rem; }

/* ── HAMBURGER ── */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 1001; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; transition: transform 0.3s, opacity 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── NAV LOGO IMAGE ── */
.nav-logo-img { height: 115px; width: auto; display: block; }

/* ── HERO (landing page) ── */
#hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 3rem 5rem;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.45) saturate(1.2);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.35) 55%, rgba(10,22,40,0.15) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #7CB3F0;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--ease) 0.4s forwards;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 1.05;
  color: #FFFFFF;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s var(--ease) 0.6s forwards;
}
.hero-title em { font-style: italic; color: #7CB3F0; }
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--ease) 0.9s forwards;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #7CB3F0;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(124,179,240,0.4);
  padding-bottom: 0.3rem;
  transition: gap 0.3s, border-color 0.3s;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.2s forwards;
}
.hero-cta:hover { gap: 1.2rem; border-color: #7CB3F0; }
.hero-cta svg { width: 16px; height: 16px; }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ── PAGE HERO (subpages) ── */
.page-hero {
  margin-top: 170px;
  padding: 5rem 3rem;
  min-height: 45vh;
  background: var(--blue);
  position: relative;
  overflow: hidden;
}
.page-hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
  display: block;
}
.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.1;
  max-width: 700px;
}
.page-hero-title em { font-style: italic; color: #7CB3F0; }
.page-hero-sub {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
}

/* ── PAGE HERO WITH IMAGE ── */
.page-hero--img { position: relative; overflow: hidden; }
.page-hero--img .page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.4) saturate(1.3);
}
.page-hero--img .page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, rgba(13,71,161,0.3) 50%, rgba(13,71,161,0.15) 100%);
}
.page-hero--img .page-hero-eyebrow,
.page-hero--img .page-hero-title,
.page-hero--img .page-hero-sub {
  position: relative;
  z-index: 2;
}

/* ── SECTION BASE ── */
section { padding: 6rem 3rem; }
.wrap { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 1rem;
  display: block;
  font-weight: 600;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--blue); }
.section-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
  max-width: 680px;
}
.blue-rule { width: 3rem; height: 2px; background: var(--blue-bright); margin: 2rem 0; }

/* ── CARDS GRID ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--gray);
  padding: 2.5rem;
  border-radius: 6px;
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
}
.card:hover {
  border-color: var(--blue-bright);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(13,71,161,0.1);
}
.card-icon { font-size: 2rem; margin-bottom: 1.2rem; display: block; }
.card-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.card-text { font-size: 0.9rem; line-height: 1.7; color: var(--text-body); }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-bright);
  text-decoration: none;
  margin-top: 1.2rem;
  transition: gap 0.3s;
  font-weight: 600;
}
.card-link:hover { gap: 0.9rem; }
.card-link svg { width: 14px; height: 14px; }

/* ── NEWS LIST ── */
.news-list { margin-top: 3rem; }
.news-item {
  display: flex;
  gap: 2rem;
  align-items: baseline;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--gray);
  transition: padding-left 0.3s;
}
.news-item:hover { padding-left: 0.5rem; }
.news-date {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--blue-bright);
  white-space: nowrap;
  min-width: 100px;
  font-weight: 600;
}
.news-title { font-family: var(--font-head); font-size: 1.1rem; color: var(--text); }
.news-title a { color: var(--text); text-decoration: none; transition: color 0.3s; }
.news-title a:hover { color: var(--blue); }
.news-excerpt { font-size: 0.85rem; color: var(--text-body); margin-top: 0.4rem; line-height: 1.6; }

/* ── INFO BLOCKS ── */
.info-block { padding: 2.5rem 0; border-bottom: 1px solid var(--gray); }
.info-block:last-child { border-bottom: none; }
.info-block h3 { font-family: var(--font-head); font-size: 1.3rem; color: var(--text); margin-bottom: 1rem; }
.info-block p, .info-block li { font-size: 0.95rem; line-height: 1.75; color: var(--text-body); }
.info-block ul { list-style: none; padding: 0; }
.info-block ul li { padding: 0.3rem 0; padding-left: 1.2rem; position: relative; }
.info-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  background: var(--blue-bright);
  border-radius: 50%;
}

/* ── BOARD GRID ── */
.board-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; margin-top: 2rem; }
.board-member {
  background: var(--white);
  border: 1px solid var(--gray);
  padding: 1.5rem;
  border-radius: 4px;
}
.board-member .name { font-family: var(--font-head); font-size: 1rem; color: var(--text); }
.board-member .role { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-bright); margin-top: 0.3rem; font-weight: 600; }

/* ── STATS ── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; padding: 4rem 0; }
.stat-number { font-family: var(--font-head); font-size: clamp(2.5rem, 4vw, 4rem); font-weight: 400; color: var(--blue); line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 500; }

/* ── PARTNERS ── */
#partners { background: var(--gray-light); padding: 4rem 3rem; }
.partners-label { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); text-align: center; margin-bottom: 2rem; display: block; font-weight: 600; }

/* ── LOGOS GRID (partners) ── */
.logos-grid { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2.5rem 3rem; }
.logos-grid img { height: 42px; width: auto; max-width: 160px; object-fit: contain; filter: grayscale(0.5); transition: filter 0.3s; }
.logos-grid img:hover { filter: grayscale(0) brightness(1); }

/* ── FUNDED BY ── */
#funded { background: var(--off-white); padding: 4rem 3rem; border-top: 1px solid var(--gray); }
.funded-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 3rem; }
.funded-logos img { height: 90px; width: auto; max-width: 320px; object-fit: contain; }

/* ── CONTACT DETAILS ── */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; }
.contact-card { background: var(--white); border: 1px solid var(--gray); padding: 2.5rem; border-radius: 6px; }
.contact-card h3 { font-family: var(--font-head); font-size: 1.1rem; color: var(--text); margin-bottom: 1rem; }
.contact-card p { font-size: 0.9rem; line-height: 1.8; color: var(--text-body); }
.contact-card a { color: var(--blue-bright); text-decoration: none; transition: opacity 0.3s; }
.contact-card a:hover { opacity: 0.7; }

/* ── MEMBERSHIP TIERS ── */
.tier-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.tier-card {
  background: var(--white);
  border: 1px solid var(--gray);
  padding: 2.5rem;
  position: relative;
  border-radius: 6px;
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
}
.tier-card:hover { border-color: var(--blue-bright); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(13,71,161,0.1); }
.tier-card.featured { border-color: var(--blue); border-width: 2px; }
.tier-card.featured::before {
  content: attr(data-label);
  position: absolute;
  top: -0.6rem;
  left: 2rem;
  background: var(--blue);
  color: #fff;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.2rem 0.8rem;
  border-radius: 2px;
}
.tier-price { font-family: var(--font-head); font-size: 2.5rem; color: var(--blue); margin-bottom: 0.3rem; }
.tier-price span { font-size: 0.9rem; color: var(--muted); }
.tier-name { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.5rem; }
.tier-features { list-style: none; padding: 0; }
.tier-features li { font-size: 0.85rem; color: var(--text-body); padding: 0.4rem 0; padding-left: 1.2rem; position: relative; }
.tier-features li::before { content: '+'; position: absolute; left: 0; color: var(--blue-bright); font-weight: bold; }

/* ── ASSOCIATION LIST ── */
.assoc-list { list-style: none; margin-top: 2rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 0.75rem; }
.assoc-list li { font-size: 0.9rem; color: var(--text-body); padding: 1rem 1.5rem; background: var(--white); border: 1px solid var(--gray); border-radius: 4px; transition: border-color 0.3s; }
.assoc-list li:hover { border-color: var(--blue-bright); }

/* ── GROUP ITEM ── */
.group-item { padding: 2rem 0; border-bottom: 1px solid var(--gray); }
.group-item:last-child { border-bottom: none; }
.group-item h3 { font-family: var(--font-head); font-size: 1.2rem; color: var(--text); margin-bottom: 0.75rem; }
.group-item p { font-size: 0.9rem; line-height: 1.7; color: var(--text-body); }
.group-item .schedule { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue-bright); margin-top: 0.5rem; font-weight: 600; display: block; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--blue);
  padding: 5rem 3rem;
  text-align: center;
}
.cta-banner .section-label { color: rgba(255,255,255,0.6); }
.cta-banner .section-title { color: #fff; margin-bottom: 1rem; }
.cta-banner .section-title em { color: #7CB3F0; }
.cta-banner .section-body { margin: 0 auto 2rem; text-align: center; color: rgba(255,255,255,0.7); }
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  color: var(--blue);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s;
}
.cta-btn:hover { background: var(--blue-pale); transform: translateY(-2px); }

/* ── VEREIN CARD ── */
.verein-card {
  background: var(--white);
  border: 1px solid var(--gray);
  padding: 2rem;
  border-radius: 6px;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.verein-card:hover { border-color: var(--blue-bright); box-shadow: 0 6px 20px rgba(13,71,161,0.08); }
.verein-logo { width: 60px; height: 60px; object-fit: contain; flex-shrink: 0; border-radius: 4px; }
.verein-info { flex: 1; }
.verein-info h3 { font-family: var(--font-head); font-size: 1.1rem; color: var(--text); margin-bottom: 0.5rem; }
.verein-info p { font-size: 0.85rem; line-height: 1.65; color: var(--text-body); }
.verein-meta { font-size: 0.72rem; color: var(--muted); margin-top: 0.75rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.verein-meta a { color: var(--blue-bright); text-decoration: none; font-weight: 500; }
.verein-meta a:hover { text-decoration: underline; }

/* ── SECTION IMAGE BREAK ── */
.img-break {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(1.1);
}

/* ── ALT SECTION BACKGROUND ── */
.bg-light { background: var(--gray-light); }
.bg-blue-wash { background: var(--blue-wash); }
.bg-blue { background: var(--blue); color: #fff; }

/* ── FADE IN ── */
.fi { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.fi.visible { opacity: 1; transform: none; }
.fi-delay-1 { transition-delay: 0.1s; }
.fi-delay-2 { transition-delay: 0.2s; }
.fi-delay-3 { transition-delay: 0.3s; }
.fi-delay-4 { transition-delay: 0.4s; }
.fi-delay-5 { transition-delay: 0.5s; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 2.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-logo { font-family: var(--font-head); font-size: 0.8rem; letter-spacing: 0.1em; color: #7CB3F0; }
.footer-copy { font-size: 0.7rem; color: rgba(255,255,255,0.4); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.7rem; color: rgba(255,255,255,0.4); text-decoration: none; letter-spacing: 0.08em; transition: color 0.3s; }
.footer-links a:hover { color: #7CB3F0; }

/* ── MOBILE ── */
@media (max-width: 1100px) { .nav-links { gap: 1.5rem; } }
@media (max-width: 900px) {
  /* Nav bar */
  #nav { padding: 0.75rem 1.25rem; }
  .nav-logo-img { height: 56px; }
  .hamburger { display: block; padding: 0.75rem 0.6rem; }
  .hamburger.active span { background: var(--blue); }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); width: 26px; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); width: 26px; }

  /* Body scroll lock — position:fixed needed for iOS Safari */
  body.menu-open { overflow: hidden; position: fixed; width: 100%; }

  /* Overlay starts BELOW the nav bar so logo is always visible */
  .nav-links {
    display: none;
    position: fixed;
    top: 82px; left: 0; right: 0;
    height: calc(100dvh - 82px);
    background: var(--navy);
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    gap: 0;
    z-index: 999;
    overflow-y: auto;
    padding: 0;
  }
  .nav-links.open { display: flex; }

  /* Two-column grid for nav items */
  .nav-links > li {
    width: 50%;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .nav-links > li:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.07);
  }
  .nav-links > li > a {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255,255,255,0.92);
    padding: 1.6rem 1rem;
    display: block;
    text-align: center;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    transition: color 0.2s, background 0.2s;
  }
  .nav-links > li > a:active { color: #7CB3F0; background: rgba(255,255,255,0.05); }

  /* "Mehr" spans full width — acts as section divider */
  .nav-dropdown {
    width: 100%;
    border-right: none !important;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .nav-dropdown > a {
    font-family: var(--font-body) !important;
    font-size: 0.7rem !important;
    letter-spacing: 0.25em !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,0.4) !important;
    padding: 0.9rem 1rem !important;
  }
  .nav-dropdown > a::after { display: inline-block; margin-left: 0.5rem; transition: transform 0.3s; }
  .nav-dropdown.open > a::after { transform: rotate(180deg); }

  /* Sub-links — single column */
  .dropdown-menu {
    position: static; transform: none;
    background: rgba(255,255,255,0.04);
    border: none; box-shadow: none;
    opacity: 1; visibility: visible;
    display: none;
    flex-direction: column;
    padding: 0; min-width: 100%;
    border-top: 1px solid rgba(255,255,255,0.07);
  }
  .nav-dropdown.open > .dropdown-menu { display: flex; }
  .dropdown-menu li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .dropdown-menu li a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #7CB3F0;
    padding: 0.9rem 1rem;
    display: block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: background 0.2s;
  }
  .dropdown-menu li a:active { background: rgba(255,255,255,0.06); }

  /* Language switch */
  .lang-btn { min-height: 40px; padding: 0.35rem 0.5rem; font-size: 0.75rem; }
  .lang-btn .flag { font-size: 1rem; }

  /* Hero */
  #hero { padding: 0 1.5rem 4rem; }
  .hero-eyebrow { font-size: 0.72rem; }
  .hero-title { font-size: clamp(2.5rem, 8vw, 5rem); }

  /* Page hero — margin matches mobile nav height (~60px logo + 1.5rem padding) */
  .page-hero { margin-top: 96px; padding: 3.5rem 1.5rem; }
  .page-hero-eyebrow { font-size: 0.72rem; }

  /* Sections */
  section { padding: 4rem 1.5rem; }
  .section-label { font-size: 0.72rem; }
  .cta-banner { padding: 4rem 1.5rem; }

  /* News */
  .news-item { flex-direction: column; gap: 0.3rem; }
  .news-date { min-width: auto; font-size: 0.78rem; }
  .news-excerpt { font-size: 0.9rem; }

  /* Grids */
  .cards-grid { grid-template-columns: 1fr; }
  .tier-cards { grid-template-columns: 1fr; }
  .board-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .assoc-list { grid-template-columns: 1fr; }

  /* Images */
  .img-break { height: 220px; }
  .verein-card { flex-direction: column; }

  /* Partners & funding logos */
  #partners { padding: 3rem 1.5rem; }
  .logos-grid img { height: 32px; max-width: 120px; }
  #funded { padding: 3rem 1.5rem; }
  .funded-logos { gap: 2rem; }
  .funded-logos img { height: 60px; max-width: 200px; }

  /* Footer */
  footer { flex-direction: column; text-align: center; gap: 0.75rem; padding: 2rem 1.5rem; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
}

/* ── VERY SMALL SCREENS ── */
@media (max-width: 400px) {
  .lang-btn .flag { display: none; }
  .lang-btn { font-size: 0.8rem; }
  .page-hero-title { font-size: clamp(1.8rem, 9vw, 3rem); }
  .hero-title { font-size: clamp(2rem, 9vw, 4rem); }
  .card { padding: 1.75rem; }
  .tier-card { padding: 1.75rem; }
  .contact-card { padding: 1.75rem; }
}
