/* ═══════════════════════════════════════════════════════════
   Ping Pong Club Hamburg – Stylesheet
   Farben & Layout 1:1 vom Original (pingpongclubhamburg.de)
   ═══════════════════════════════════════════════════════════ */

/* ── @font-face ──────────────────────────────────────────── */
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/xMQ9uFFYT72X5wkB_18qmnndmSdSnh2BAfO5mnuyOo1lfiQwV6-xo6eeIw.woff2') format('woff2');
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/xMQ9uFFYT72X5wkB_18qmnndmSdSnh2BAfO5mnuyOo1lfiQwWa-xo6eeI7fM.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/V8mDoQDjQSkFtoMM3T6r8E7mPbF4C_k3HqU.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/V8mDoQDjQSkFtoMM3T6r8E7mPb54C_k3HqUtEw.woff2') format('woff2');
}

/* ── Design-Token (exakt vom Original) ───────────────────── */
:root {
  /* Hintergründe */
  --bg:          #000000;
  --bg-alt:      #0a0a0a;
  --bg-card:     #111111;
  --bg-hover:    #1a1a1a;

  /* Text */
  --text:        #ffffff;
  --text-muted:  #888893;
  --text-on-light: #19181c;

  /* Rahmen */
  --border:      rgba(255,255,255,0.10);

  /* Markenfarben – exakt vom Original */
  --purple:      #ab96ff;   /* #color_17 / #color_48 – Hauptakzent, Buttons */
  --yellow:      #ffff00;   /* #color_43 */
  --green:       #407c51;   /* #color_33 */

  /* Typografie */
  --font-body:    'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Sora', 'Space Grotesk', 'Helvetica Neue', sans-serif;

  /* Layout */
  --radius:  8px;
  --shadow:  0 4px 24px rgba(0,0,0,0.6);
  --max-w:   1200px;
  --nav-h:   72px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1rem;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typografie ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.2rem; }
p  { max-width: 65ch; }

/* ── Layout ──────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.section        { padding-block: 5rem; background: var(--bg); position: relative; }
.section--alt   { background: var(--bg-alt); }

/* ── Fester Video-Hintergrund ────────────────────────────── */
/* Das Video bleibt stehen, Inhalte scrollen darüber – wie im Original */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.site-bg__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; inset-inline: 0;
  height: var(--nav-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  z-index: 200;
  display: flex;
  align-items: center;
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.nav.scrolled {
  background: rgba(0,0,0,0.76);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.nav__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav__logo {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
}
.nav__logo-gif {
  height: 42px;
  width: 42px;
  object-fit: contain;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  position: fixed;
  top: 0;
  right: 1.5rem;
  height: var(--nav-h);
  z-index: 201;
  list-style: none;
}
/* Nav-Links lila – exakt wie Original (#AB96FF) */
.nav__links a {
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav__links a:hover,
.nav__links a.active { color: var(--purple); }
/* CTA-Button lila/pill wie Original */
.nav__cta {
  background: var(--purple) !important;
  color: #000000 !important;
  padding: 0.5rem 1.4rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav__cta:hover {
  background: #000000 !important;
  color: var(--purple) !important;
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────────────── */
/* Transparent – das fixe Video scheint durch */
.hero {
  position: relative;
  z-index: 1;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: transparent;
}
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-inline: 1.5rem;
}
.hero__welcome {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.01em;
}
/* "just beat it" – 80px wie Original */
.hero__tag {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 80px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
}
.hero__cta {
  margin-top: 0.25rem;
}
/* "& play for free" – 32px wie Original */
.hero__sub {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 32px);
  font-weight: 400;
  line-height: 1.3;
  color: #fff;
  text-align: center;
}
/* Rotierendes Logo – 330px wie Original */
.hero__logo-img {
  width: 330px;
  height: 330px;
  object-fit: contain;
  margin-top: 1rem;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
  letter-spacing: 0.01em;
}
/* Lila Pill – Hauptbutton wie Original (#AB96FF, schwarzer Text, 100px radius) */
.btn--purple {
  background: var(--purple);
  color: #000000;
  border-radius: 100px;
  border: 1px solid var(--purple);
}
.btn--purple:hover {
  background: #000000;
  color: var(--purple);
  border-color: var(--purple);
}
/* Gelber Primär-Button */
.btn--primary       { background: var(--yellow); color: #000; }
.btn--primary:hover { background: #e6e600; }
/* Weißer Button */
.btn--white       { background: #fff; color: #000; }
.btn--white:hover { background: var(--purple); }
/* Outline weiß */
.btn--outline-white { border: 1px solid rgba(255,255,255,0.4); color: #fff; }
.btn--outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
/* Pill-Form Modifier */
.btn--pill { border-radius: 100px !important; }
.btn--full { width: 100%; }

/* ── Abschnitts-Titel ────────────────────────────────────── */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2  { margin-bottom: 0.75rem; max-width: 800px; margin-inline: auto; }
.section-title p   { color: var(--text-muted); margin-inline: auto; }

/* ── Transparente Sektion (festes Video scheint durch) ───── */
.section--transparent {
  background: transparent;
}

/* ── Spendenverträge Hintergrundbild ──────────────────────── */
.section--spenden-bg {
  background-image: url('../images/11062b_2954c002ac4a41dda0345faaaa57c185~mv2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.section--spenden-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
}
.section--spenden-bg .container {
  position: relative;
  z-index: 1;
}

/* ── Mission ─────────────────────────────────────────────── */
.mission-heading {
  font-size: clamp(3rem, 8vw, 68px);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.mission-subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.6);
  max-width: none;
}
.mission-body {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.mission-body p { color: var(--text); line-height: 1.8; max-width: 60ch; margin: 0; }
.mission-coop strong { color: #fff; }

/* ── Pillars: horizontale Zeilen wie Original ────────────── */
.pillars-section {
  padding-block: 2rem;
  background: rgba(0,0,0,0.55);
}

.pillar-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-block: 3rem;
  border-top: 1px solid var(--border);
}
.pillar-row:last-child { border-bottom: 1px solid var(--border); }

.pillar-row__left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.pillar-icon {
  width: 64px; height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}
.pillar-icon--invert { filter: brightness(0) invert(1); }

.pillar-row__name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 68px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.pillar-row__quote {
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  max-width: 45ch;
}
.pillar-row__desc {
  color: #ffffff;
  max-width: 48ch;
  line-height: 1.7;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .pillar-row { grid-template-columns: 1fr; gap: 1.5rem; padding-block: 2rem; }
  .pillar-row__name { font-size: clamp(2rem, 10vw, 3.5rem); }
}

/* ── Eigenständige Video-Sektion (kein Text, volle Breite) ── */
.video-standalone {
  position: relative;
  z-index: 1;
  background: #000;
  line-height: 0;
}
.video-standalone video {
  width: 100%;
  max-height: 80vh;
  object-fit: cover;
  display: block;
}

/* ── Sektion mit Video-Hintergrund ───────────────────────── */
.section--video-bg {
  position: relative;
  overflow: hidden;
  background: transparent;
}
.section-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.section--video-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}
.section-video__content {
  position: relative;
  z-index: 2;
}

/* ── Vereinsheim-Heading ─────────────────────────────────── */
#vereinsheim .section-title p { color: var(--text); }

.vereinsheim-heading {
  font-size: clamp(1.8rem, 4.5vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.vereinsheim-sub {
  color: var(--purple);
}

/* ── Schritte / Steps (Spendenverträge) ──────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.step {
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
}
.step__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 1rem;
}
.step__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.75rem;
}
.step__desc {
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 28ch;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
}

/* ── Tier-Sektion Hintergrund & Pfeile ───────────────────── */
.section--tier-bg {
  position: relative;
  background: url('../images/11062b_5a40558822e74bc5a07ac927d021f3b9~mv2_1280x900.jpeg') center/cover no-repeat;
  overflow: hidden;
}
.section--tier-bg .container {
  position: relative;
  z-index: 1;
}
.tier-arrow {
  position: absolute;
  width: 520px;
  height: auto;
  z-index: 2;
  pointer-events: none;
  top: 62%;
}
.tier-arrow--left {
  left: 0;
  transform: translateY(-50%) rotate(35deg);
}
.tier-arrow--right {
  right: 0;
  transform: translateY(-50%) scaleX(-1) rotate(35deg);
}
@media (max-width: 768px) {
  .tier-arrow { display: none; }
}

/* ── Spendenabo / Tiers ──────────────────────────────────── */
.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  align-items: start;
  padding-top: 180px;
}
.tier-wrap {
  display: contents; /* auf Desktop: Wrapper unsichtbar, .tier direkt im Grid */
}
.tier {
  position: relative;
  border-radius: var(--radius);
  padding: 150px 1.5rem 2rem;
  text-align: center;
  background: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.2s;
  overflow: visible;
}
.tier:hover { transform: translateY(-4px); }

/* Kreisförmiges Illustrations-Bild – schwebt über der Karte */
.tier__img-circle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px; height: 280px;
  border-radius: 50%;
  overflow: hidden;
  background: #ffffff;
  border: 3px solid #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tier__img-circle img {
  width: 100%; height: 100%;
  object-fit: contain;
}

.tier__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}
.tier__desc {
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.5;
  max-width: 22ch;
  margin: 0 auto;
}
.tier__price-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}
.tier .btn { margin-top: 0.5rem; width: 100%; }

/* ── Info-Cards (100% transparent) ──────────────────────── */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
}
.info-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.25rem;
  color: var(--yellow);
}
.info-card__icon svg {
  width: 100%;
  height: 100%;
}
.info-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.info-card__text {
  font-size: 0.88rem;
  color: #fff;
  line-height: 1.65;
}
/* ── Termine & Zeiten ────────────────────────────────────── */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.schedule-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.2s;
}
.schedule-card:hover { border-color: var(--purple); }
.schedule-card__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.schedule-card__value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
}
.schedule-card__sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}
.schedule-card__sub a { color: var(--text-muted); transition: color 0.2s; }
.schedule-card__sub a:hover { color: var(--purple); }
.schedule-card__value a { color: inherit; }
.schedule-card__value a:hover { color: var(--purple); }

/* ── Events ──────────────────────────────────────────────── */
.events-empty {
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-style: italic;
}

/* ── Event-Cards ─────────────────────────────────────────── */
.events-list { display: flex; flex-direction: column; gap: 1rem; }
.event-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  transition: border-color 0.2s;
}
.event-card:hover { border-color: var(--purple); }
.event-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
  background: rgba(171,150,255,0.1);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
}
.event-card__day   { font-size: 1.6rem; font-weight: 700; line-height: 1; color: var(--purple); }
.event-card__month { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }
.event-card__body  { flex: 1; }
.event-card__title { font-weight: 700; font-size: 1.05rem; margin-bottom: 0.3rem; }
.event-card__meta  { display: flex; gap: 1rem; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.4rem; }
.event-card__desc  { font-size: 0.88rem; color: var(--text-muted); max-width: 60ch; }

/* ── Team ────────────────────────────────────────────────── */
.team-intro {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
  color: var(--text-muted);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 2rem;
}
.team-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.25s;
}
.team-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
}
.team-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
}
.team-card__body { padding: 1.25rem; }
.team-card__role {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--purple);
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.team-card__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.team-card__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── About-Seite: Team-Karten offen auf Video-Hintergrund ── */
.page-about .section > .container {
  max-width: 100%;
  padding-inline: 3rem;
}
.page-about .team-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}
.page-about .page-hero {
  background: transparent;
  border-bottom-color: transparent;
}
.page-hero__banner {
  display: block;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 2.5rem;
  margin-bottom: 2rem;
  border-radius: 0;
}
.page-about .section {
  background: transparent;
}
.page-about .team-card {
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.page-about .team-card:hover {
  border-color: transparent;
  transform: translateY(-4px);
}
.page-about .team-card__img {
  width: 270px;
  height: 270px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  aspect-ratio: unset;
  border: 3px solid rgba(255,255,255,0.15);
  margin-bottom: 1rem;
}
.page-about .team-card__body {
  padding: 0 0.5rem 1rem;
}
.page-about .team-card__role {
  font-size: 0.82rem;
}
.page-about .team-card__name {
  font-size: 1.25rem;
}
.page-about .team-card__desc {
  font-size: 0.95rem;
  color: #ffffff;
}

/* ── Seiten-Header (Unterseiten) ─────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 4rem;
  text-align: center;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.page-hero p { color: #fff; margin-inline: auto; margin-top: 0.75rem; }

/* ── Impressum ───────────────────────────────────────────── */
.impressum-hero {
  padding-top: calc(var(--nav-h) + 4rem);
  text-align: center;
}

.impressum-heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.impressum-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-top: 0.75rem;
  margin-bottom: 3.5rem;
  max-width: none;
}

.impressum-vorstand {
  display: flex;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
}

.impressum-member {
  text-align: left;
}

.impressum-member__circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.impressum-member__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.impressum-member__titel {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.45;
  max-width: 26ch;
  margin-bottom: 0.3rem;
  text-align: left;
}
.impressum-member__name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  text-align: left;
}

.impressum-contact-wrap {
  max-width: 860px;
  margin-inline: auto;
}
.impressum-contact-heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  margin-bottom: 0.75rem;
}
.impressum-contact-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: none;
}

.impressum-card {
  background: rgba(6,6,16,0.82);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.25rem;
  padding: 2.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}
.impressum-card__label {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.impressum-card__text {
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  font-size: 0.95rem;
}
.impressum-card__text a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.impressum-card__text a:hover { color: var(--purple-light, #ab96ff); }
.impressum-card__btn { margin-top: 1.25rem; font-size: 0.9rem; }
.impressum-card__hours { border-collapse: collapse; width: 100%; }
.impressum-card__hours td {
  padding: 0.4rem 0;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.impressum-card__hours td:last-child {
  text-align: right;
  font-weight: 600;
  color: #fff;
}

.impressum-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.info-block h3 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.info-block p,
.info-block address {
  font-style: normal;
  line-height: 1.85;
  color: #fff;
}
.info-block strong { color: #fff; }

.legal-section {
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
  margin-top: 2.5rem;
}
.legal-section h2 { margin-bottom: 1rem; }
.legal-section p  { color: #fff; line-height: 1.8; max-width: 100%; margin-bottom: 1rem; }

/* ── Spenden-Platzhalter ─────────────────────────────────── */
.spenden-placeholder { max-width: 680px; margin-inline: auto; }
.spenden-notice {
  background: rgba(171,150,255,0.08);
  border: 1px solid rgba(171,150,255,0.3);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  color: rgba(171,150,255,0.9);
  margin-top: 2.5rem;
  line-height: 1.7;
}
.spenden-notice strong { display: block; margin-bottom: 0.4rem; color: var(--purple); font-size: 1rem; }
.spenden-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ── Spendenformular ─────────────────────────────────────── */
.spenden-form-wrap {
  max-width: 740px;
  margin-inline: auto;
}

.spenden-success {
  background: rgba(64, 124, 81, 0.15);
  border: 1px solid rgba(64, 124, 81, 0.45);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  color: #6fcf97;
  margin-bottom: 2rem;
  font-weight: 600;
  line-height: 1.6;
}

.sform-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sform-section__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
}

.sform-section__sub {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.sform-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.sform-label .req { color: var(--purple); }

.sform-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
}
.sform-input:focus      { border-color: var(--purple); }
.sform-input--err       { border-color: #ff6b6b !important; }

.sform-error {
  color: #ff6b6b;
  font-size: 0.82rem;
  margin-top: 0.2rem;
}

.sform-grid   { display: grid; gap: 1rem; }
.sform-grid--2 { grid-template-columns: 1fr 1fr; }
.sform-grid--3 { grid-template-columns: 1fr 2fr; }

.sform-field  { display: flex; flex-direction: column; }

.sform-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 100%;
}
.sform-text--note { font-size: 0.8rem; opacity: 0.75; }

.sform-static {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  line-height: 1.85;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.sform-static strong { color: var(--text); }
.sform-static code {
  background: rgba(171,150,255,0.12);
  color: var(--purple);
  padding: 0.1rem 0.45rem;
  border-radius: 4px;
  font-size: 0.85rem;
}

.sform-check {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.sform-check input[type="checkbox"] {
  margin-top: 0.25rem;
  flex-shrink: 0;
  accent-color: var(--purple);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.sform-submit {
  text-align: center;
  padding: 0.5rem 0 1rem;
}

/* Tier-Auswahlkarten */
.tier-select {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.tier-opt { display: block; }
.tier-opt input[type="radio"] { display: none; }

.tier-opt__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 0.75rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  text-align: center;
  position: relative;
  min-height: 100px;
}
.tier-opt__card:hover { border-color: rgba(255,255,255,0.3); }

.tier-opt input[type="radio"]:checked + .tier-opt__card {
  border-color: var(--purple);
  background: rgba(171,150,255,0.08);
  box-shadow: 0 0 0 1px var(--purple);
}

.tier-opt__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: #000;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.15rem 0.65rem;
  border-radius: 100px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tier-opt__name {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
}
.tier-opt__price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--purple);
  line-height: 1.1;
}
.tier-opt__price sub {
  font-size: 0.58rem;
  font-weight: 400;
  color: var(--text-muted);
  vertical-align: baseline;
}

.custom-amount-wrap {
  margin-top: 0.25rem;
  max-width: 240px;
}

/* AGB-Accordion */
.agb-details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.agb-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--purple);
  list-style: none;
  user-select: none;
  transition: background 0.2s;
}
.agb-summary::-webkit-details-marker { display: none; }
.agb-summary:hover { background: rgba(171,150,255,0.06); }

.agb-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.25s;
  color: var(--purple);
}
.agb-details[open] .agb-chevron { transform: rotate(180deg); }

.agb-body {
  border-top: 1px solid var(--border);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: 420px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.agb-intro {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  font-style: italic;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  max-width: 100%;
}

.agb-heading {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 0.5rem;
}

.agb-body p {
  color: var(--text-muted);
  font-size: 0.87rem;
  line-height: 1.7;
  max-width: 100%;
}
.agb-body p strong { color: var(--text); }

.agb-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.agb-list li {
  color: var(--text-muted);
  font-size: 0.87rem;
  padding-left: 1rem;
  position: relative;
}
.agb-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--purple);
}

/* Unterschrift-Canvas */
.sig-wrap {
  position: relative;
}
.sig-canvas {
  display: block;
  width: 100%;
  height: 160px;
  background: #fff;
  border-radius: var(--radius);
  cursor: crosshair;
  touch-action: none;
  border: 1px solid var(--border);
}
.sig-clear {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  background: rgba(0,0,0,0.55);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  padding: 0.25rem 0.8rem;
  font-size: 0.75rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.2s;
}
.sig-clear:hover { background: rgba(0,0,0,0.85); }

@media (max-width: 600px) {
  .tier-select  { grid-template-columns: repeat(2, 1fr); }
  .sform-grid--2 { grid-template-columns: 1fr; }
  .sform-grid--3 { grid-template-columns: 1fr; }
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  padding-block: 3.5rem;
  position: relative;
  z-index: 1;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.footer__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.footer__tagline { font-size: 0.875rem; }
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: 1rem;
}
.footer__col a,
.footer__col span {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--purple); }
.footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  text-align: center;
  color: rgba(255,255,255,0.25);
}
.footer__bottom a { color: inherit; transition: color 0.2s; }
.footer__bottom a:hover { color: var(--purple); }

/* ── Carousel ────────────────────────────────────────────── */
/* ── Bildergalerie (Vollbreite) ───────────────────────── */
.section-gallery {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.carousel__slide { flex: 0 0 100%; }

.slide__bg {
  width: 100%;
  height: 70vh;
  min-height: 340px;
  max-height: 680px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide__caption {
  text-align: center;
  padding: 1.5rem;
  line-height: 0.88;
}

.slide__line {
  display: block;
  font-weight: 700;
}
.slide__line--xl { font-size: clamp(2.8rem, 9vw, 7.5rem); }
.slide__line--lg { font-size: clamp(1.8rem, 5.5vw, 4.8rem); }

.slide__bg--light .slide__line { color: #000; }
.slide__bg--dark  .slide__line {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
}
.carousel__btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  border: none;
  border-radius: 50%;
  width: 48px; height: 48px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  z-index: 2;
  cursor: pointer;
  transition: background 0.2s;
}
.carousel__btn:hover  { background: rgba(0,0,0,0.8); }
.carousel__btn--prev  { left: 1.5rem; }
.carousel__btn--next  { right: 1.5rem; }

/* ── Donate Gauge (Halbkreis-Diagramm) ───────────────────── */
.donate-gauge {
  max-width: 660px;
  margin: 0 auto;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 2.5rem 2rem 2rem;
  text-align: center;
}
.donate-gauge__title {
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.4rem;
}
.donate-gauge__sub {
  color: #fff;
  font-size: 0.88rem;
  margin: 0 0 0.25rem;
}
.donate-gauge__svg-wrap {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.donate-gauge__svg {
  width: 100%;
  display: block;
}
.donate-gauge__arc {
  transition: stroke-dasharray 1.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.donate-gauge__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.donate-gauge__stat-val {
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.donate-gauge__stat--hl .donate-gauge__stat-val {
  color: var(--purple);
  font-size: 1.75rem;
}
.donate-gauge__stat-lbl {
  display: block;
  font-size: 0.72rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.donate-gauge__cta { margin-top: 1.75rem; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav__links {
    display: none;
    flex-direction: column;
    position: fixed;
    inset: var(--nav-h) 0 0;
    height: auto;
    right: 0;
    background: rgba(0,0,0,0.80);
    border-top: 1px solid var(--border);
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    overflow-y: auto;
    z-index: 190;
  }
  .nav__links.open { display: flex; }
  .nav__burger     { display: flex; }
  .nav__cta        { display: none; }

  /* Hero */
  .hero__logo-img { width: 200px; height: 200px; }
  .hero__tag      { font-size: clamp(2.5rem, 12vw, 4rem); }

  /* Sections */
  .section        { padding-block: 3rem; }

  /* Tier-Karten Startseite */
  .tiers {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
    gap: 1.5rem;
    padding-top: 0;
  }
  .tier-wrap {
    display: block;          /* Wrapper aktiv auf Mobile */
    padding-top: 150px;      /* unsichtbarer Puffer für den schwebenden Kreis */
  }

  /* Info-Cards */
  .info-cards { grid-template-columns: 1fr; }

  /* Impressum */
  .impressum-vorstand   { gap: 2.5rem; }
  .impressum-member__circle { width: 160px; height: 160px; }
  .impressum-card { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 1.5rem; }
  .impressum-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }

  /* Carousel Buttons – weiter innen auf Mobile */
  .carousel__btn        { width: 38px; height: 38px; font-size: 1rem; }
  .carousel__btn--prev  { left: 0.75rem; }
  .carousel__btn--next  { right: 0.75rem; }

  /* Team */
  .page-about .section > .container { padding-inline: 1.5rem; }
  .page-about .team-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }

  /* Pillar-Namen */
  .pillar-row__name { font-size: clamp(2rem, 8vw, 3rem); }

  /* Steps */
  .steps { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }

  /* Spendenformular */
  .sform-section   { padding: 1.25rem; }
  .agb-body        { max-height: 280px; }
  .sig-canvas      { height: 130px; }
}

@media (max-width: 600px) {
  /* Spenden Tier-Auswahl */
  .tier-select    { grid-template-columns: repeat(2, 1fr); }
  .sform-grid--2  { grid-template-columns: 1fr; }
  .sform-grid--3  { grid-template-columns: 1fr; }

  /* Donate Gauge */
  .donate-gauge { padding: 1.75rem 1rem 1.5rem; }
  .donate-gauge__stats { grid-template-columns: 1fr; gap: 1.25rem; }
  .donate-gauge__stat--hl .donate-gauge__stat-val { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  /* Team */
  .page-about .team-grid { grid-template-columns: 1fr; }

  /* Kontakt-Streifen stapeln */
  .contact-strip { flex-direction: column; gap: 1.25rem; }

  /* Spendenformular Tier-Badges kompakter */
  .tier-opt__card  { padding: 1rem 0.5rem; min-height: 88px; }
  .tier-opt__price { font-size: 1.1rem; }
  .tier-opt__name  { font-size: 0.82rem; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; }

  /* Seiten-Header Schrift */
  .page-hero { padding-top: calc(var(--nav-h) + 2.5rem); padding-bottom: 2.5rem; }
}

/* Vollbreite Team-Banner – kein horizontaler Scroll */
.page-hero { overflow-x: hidden; }

/* ── Join-the-Club Modal ──────────────────────────────── */
.join-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.55);
}
.join-modal-overlay.is-open {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
}
.join-modal {
  background: var(--yellow);
  width: min(430px, 100vw);
  padding: 3rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow-y: auto;
}
.join-modal__close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: #000;
  padding: 0.25rem 0.5rem;
}
.join-modal__close:hover { opacity: 0.6; }
.join-modal__icon {
  width: 130px;
  height: 130px;
  object-fit: contain;
  margin-bottom: 1.5rem;
}
.join-modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 4vw, 1.45rem);
  font-weight: 800;
  color: #000;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
.join-modal__qr {
  width: 185px;
  height: 185px;
  margin-bottom: 1.5rem;
  border: 4px solid #000;
}
.join-modal__desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #000;
  line-height: 1.55;
  margin-bottom: 1.75rem;
}
.join-modal__wa-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.85rem 2.75rem;
  border-radius: 100px;
  text-decoration: none;
  margin-bottom: 0.65rem;
  transition: background 0.18s;
}
.join-modal__wa-btn:hover { background: #222; color: #fff; }
.join-modal__fine {
  font-size: 0.8rem;
  color: #444;
}

@media (max-width: 480px) {
  .join-modal {
    width: 100vw;
    padding: 2.5rem 1.25rem 2rem;
  }
}
