/* ============================================================
   VARIABLES & RESET
   ============================================================ */
:root {
  --ink:    #1A1C1B;
  --dark:   #3D3F3E;
  --green:  #67996C;
  --green2: #527E5A;
  --sage:   #A7C4B9;
  --mint:   #EBF0EE;
  --sand:   #DCE5E0;
  --white:  #FFFFFF;
  --text:   #3D3F3E;
  --muted:  #676866;
  --max:    1200px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: color .2s; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 48px; } }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(26, 28, 27, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(103, 153, 108, 0.2);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: var(--max); margin: 0 auto;
}
@media (min-width: 768px) { .nav-inner { padding: 14px 48px; } }
.logo { display: flex; align-items: center; }
.logo img { width: 44px; height: 44px; transform-origin: center; }
.nav-links { display: none; gap: 0; align-items: center; }
@media (min-width: 900px) { .nav-links { display: flex; } }
.nav-links a {
  color: rgba(235, 240, 238, 0.75);
  font-weight: 600; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 8px 16px;
  transition: color .2s;
}
.nav-links a:hover { color: var(--green); }

/* Hamburger-Button */
.hamburger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; margin: -8px;
}
@media (min-width: 900px) { .hamburger { display: none; } }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: rgba(235, 240, 238, 0.85); border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile-Menü */
.mobile-menu {
  position: fixed; top: 72px; left: 0; right: 0; z-index: 98;
  background: rgba(26, 28, 27, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(103, 153, 108, 0.2);
  padding: 8px 0 20px;
  transform: translateY(-8px); opacity: 0; visibility: hidden;
  transition: transform .28s ease, opacity .28s ease, visibility 0s .28s;
}
@media (min-width: 900px) { .mobile-menu { display: none !important; } }
.mobile-menu.open {
  transform: translateY(0); opacity: 1; visibility: visible;
  transition: transform .28s ease, opacity .28s ease;
}
.mobile-menu a {
  display: block; color: rgba(235, 240, 238, 0.8);
  font-weight: 600; font-size: 1rem;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 15px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color .2s, padding-left .2s;
}
.mobile-menu a:hover { color: var(--green); padding-left: 30px; }
.mobile-menu .mobile-contact {
  padding: 20px 24px 0;
  display: flex; flex-direction: column; gap: 6px;
}
.mobile-menu .mobile-contact a {
  color: rgba(235,240,238,0.5); font-size: 0.88rem;
  text-transform: none; letter-spacing: 0; font-weight: 500;
  padding: 4px 0; border: none;
}
.mobile-menu .mobile-contact a:hover { color: var(--green); padding-left: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--ink);
  color: var(--mint);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .hero { padding: 96px 0 80px; } }

.hero .container { position: relative; z-index: 2; }

.hero-left { padding-bottom: 32px; }
@media (min-width: 768px) { .hero-left { padding-bottom: 48px; } }
@media (min-width: 900px) { .hero-left { max-width: 54%; padding-bottom: 0; } }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: white;
  padding: 6px 14px; border-radius: 4px;
  font-weight: 700; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.0; color: white; font-weight: 900;
  margin-bottom: 24px; letter-spacing: -0.04em;
  text-transform: uppercase;
}
.hero h1 em { font-style: normal; color: var(--green); }
.hero p.lead {
  font-size: 1.1rem; color: rgba(235, 240, 238, 0.7);
  max-width: 520px; margin-bottom: 36px; line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: white;
  padding: 16px 28px; border-radius: 6px;
  font-weight: 700; font-size: 0.95rem;
  text-transform: uppercase; letter-spacing: 0.5px;
  transition: transform .15s, background .2s;
}
.btn-primary:hover { background: var(--green2); color: white; transform: translateY(-2px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(235, 240, 238, 0.85);
  padding: 16px 28px; border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.2);
  font-weight: 700; font-size: 0.95rem;
  text-transform: uppercase; letter-spacing: 0.5px;
  transition: border-color .2s, color .2s;
}
.btn-secondary:hover { border-color: var(--green); color: var(--green); }

/* Stats strip */
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat .num {
  font-size: 2.2rem; font-weight: 900; color: var(--green);
  letter-spacing: -0.04em; line-height: 1;
}
.hero-stat .label {
  font-size: 0.8rem; color: rgba(235,240,238,0.55);
  text-transform: uppercase; letter-spacing: 1px; margin-top: 3px;
}

/* Hero visual */
/* Mobile: im Flow nach dem Text, Portrait-Verhältnis passend zum Bild */
.hero-visual-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  z-index: 1;
  overflow: hidden;
}
/* Tablet+: absolut hinter/neben dem Text */
@media (min-width: 768px) {
  .hero-visual-wrap {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 100%;
    aspect-ratio: auto;
  }
}
/* Desktop: rechte Spalte, vertikal zentriert */
@media (min-width: 900px) {
  .hero-visual-wrap {
    width: 42%;
  }
}

.hero-visual-wrap picture { display: block; line-height: 0; }
.hero-img {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
  animation: none;
}

/* Spielkarten-Stapel */
.hero-cards {
  position: relative;
  width: 100%;
  aspect-ratio: 3/5;
}
.hero-card {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center 10%;
}
.hero-card-pink {
  transform-origin: center bottom;
  transform: rotate(-12deg) translateX(-38px);
  z-index: 1;
  filter: drop-shadow(0 8px 28px rgba(0,0,0,0.3));
  animation: cardSwap2 8s step-end infinite;
}
.hero-card-bleu {
  transform-origin: center bottom;
  transform: rotate(11deg) translateX(38px);
  z-index: 2;
  filter: drop-shadow(0 16px 48px rgba(0,0,0,0.55));
  animation: cardSwap1 8s step-end infinite;
}
@keyframes cardSwap1 {
  0%, 100% { z-index: 2; }
  50%       { z-index: 1; }
}
@keyframes cardSwap2 {
  0%, 100% { z-index: 1; }
  50%       { z-index: 2; }
}
.hero-badge {
  position: absolute; z-index: 10; pointer-events: none;
}
.hero-badge-1 {
  width: 100px; height: 100px;
  top: 20px; right: 20px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
}
.hero-badge-2 {
  width: 100px;
  bottom: 110px; left: 20px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
}
@media (min-width: 900px) {
  .hero-badge-1 { width: 120px; height: 120px; top: 28px; right: 25%; }
  .hero-badge-2 { width: 120px; bottom: 120px; left: 25%; }
}

/* Diagonal divider after hero */
.hero-divider {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 5;
  line-height: 0;
  background: transparent;
}
.hero-divider svg { display: block; width: 100%; }

/* ============================================================
   SECTION COMMON
   ============================================================ */
section { padding: 96px 0; }
.section-label {
  display: inline-block;
  background: var(--green); color: white;
  padding: 4px 14px; border-radius: 4px;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  color: var(--ink); font-weight: 900;
  margin-bottom: 16px; letter-spacing: -0.04em;
  text-transform: uppercase; line-height: 1.05;
}
.section-title em { font-style: normal; color: var(--green); }
.section-intro {
  color: var(--muted); font-size: 1.05rem;
  max-width: 640px; margin-bottom: 52px; line-height: 1.75;
}

/* ============================================================
   PAGE HEADER (Sub-Pages)
   ============================================================ */
.page-header {
  background: var(--ink);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0; height: 80px;
  background: white;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.page-header .section-label { margin-bottom: 16px; }
.page-header h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900; color: white; text-transform: uppercase;
  letter-spacing: -0.04em; line-height: 1.0; margin-bottom: 16px;
}
.page-header h1 em { font-style: normal; color: var(--green); }
.page-header p {
  color: rgba(235,240,238,0.7); font-size: 1.1rem; max-width: 560px; line-height: 1.75;
}

/* ============================================================
   ANGEBOTE
   ============================================================ */
.angebote { background: var(--white); }
.angebote-grid {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .angebote-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .angebote-grid { grid-template-columns: repeat(3, 1fr); } }

.angebot-card {
  background: var(--mint);
  border-radius: 12px; padding: 28px;
  border: 1px solid rgba(61,63,62,0.08);
  position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.angebot-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--green);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.angebot-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(61,63,62,0.1); }
.angebot-card:hover::before { transform: scaleX(1); }
.angebot-icon {
  width: 50px; height: 50px; border-radius: 10px;
  background: var(--ink); color: var(--mint);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.angebot-icon svg { width: 24px; height: 24px; }
.angebot-card h3 {
  color: var(--ink); font-size: 1.05rem; margin-bottom: 8px;
  font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em;
}
.angebot-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.65; flex: 1; }
.angebot-price {
  margin-top: 18px; padding-top: 14px;
  border-top: 1px solid rgba(61,63,62,0.08);
  font-weight: 800; font-size: 0.88rem; color: var(--green);
  text-transform: uppercase; letter-spacing: 0.5px;
}

/* ============================================================
   SVG DIAGONAL DIVIDER (dark → white, white → dark)
   ============================================================ */
.divider-to-dark { line-height: 0; background: var(--white); }
.divider-to-dark svg { display: block; width: 100%; }
.divider-to-white { line-height: 0; background: var(--ink); }
.divider-to-white svg { display: block; width: 100%; }
.divider-to-mint { line-height: 0; background: var(--ink); }
.divider-to-mint svg { display: block; width: 100%; }
.divider-mint-to-white { line-height: 0; background: var(--mint); }
.divider-mint-to-white svg { display: block; width: 100%; }
.divider-white-to-mint { line-height: 0; background: var(--white); }
.divider-white-to-mint svg { display: block; width: 100%; }
.divider-mint-to-dark { line-height: 0; background: var(--mint); }
.divider-mint-to-dark svg { display: block; width: 100%; }

/* ============================================================
   TRAININGSZEITEN / WOCHENPROGRAMM
   ============================================================ */
.trainingszeiten { background: var(--ink); padding: 80px 0; }
.trainingszeiten .section-label { background: var(--sage); color: var(--ink); }
.trainingszeiten .section-title { color: white; }
.trainingszeiten .section-intro { color: rgba(235,240,238,0.65); }

/* Wochenprogramm heller Hintergrund (Startseite) */
.wochenprogramm-hell { background: var(--white); padding: 80px 0; }
.wochenprogramm-hell .section-label { background: var(--green); color: white; }
.wochenprogramm-hell .section-title { color: var(--ink); }
.wochenprogramm-hell .section-intro { color: var(--muted); }
.schedule-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--sand);
  display: flex; align-items: center; justify-content: center;
}
.schedule-card-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.schedule-card-image-placeholder {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
}
.schedule-card-image-placeholder svg {
  width: 40px; height: 40px;
  color: var(--sage);
}

.wochenprogramm-hell .schedule-card {
  background: var(--mint);
  border: 1px solid rgba(61,63,62,0.1);
  border-radius: 12px; padding: 28px;
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.wochenprogramm-hell .schedule-card:hover {
  border-color: var(--green);
  background: white;
  box-shadow: 0 12px 32px rgba(61,63,62,0.08);
}
.wochenprogramm-hell .schedule-day { color: var(--green); }
.wochenprogramm-hell .schedule-time { color: var(--ink); }
.wochenprogramm-hell .schedule-name { color: var(--ink); }
.wochenprogramm-hell .schedule-location { color: var(--muted); }
.wochenprogramm-hell .schedule-location svg { color: var(--green); }
.wochenprogramm-hell .schedule-price {
  border-top-color: rgba(61,63,62,0.1);
  color: var(--green);
}
.wochenprogramm-hell .schedule-details {
  border-top-color: rgba(61,63,62,0.1);
}
.wochenprogramm-hell .schedule-details summary { color: var(--green); }
.wochenprogramm-hell .schedule-details-body { color: var(--muted); }

.schedule-grid { display: grid; gap: 18px; }
@media (min-width: 700px) { .schedule-grid { grid-template-columns: repeat(3, 1fr); } }
.schedule-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(103, 153, 108, 0.2);
  border-radius: 12px; padding: 28px;
  transition: border-color .25s, background .25s;
}
.schedule-card:hover {
  border-color: var(--green);
  background: rgba(103, 153, 108, 0.08);
}
.schedule-day {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--green); margin-bottom: 6px;
}
.schedule-time {
  font-size: 2rem; font-weight: 900; color: white;
  letter-spacing: -0.04em; line-height: 1; margin-bottom: 10px;
}
.schedule-name {
  font-size: 0.95rem; font-weight: 800; color: white; margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: -0.01em;
}
.schedule-location {
  font-size: 0.83rem; color: rgba(235,240,238,0.55);
  display: flex; gap: 6px; align-items: flex-start; line-height: 1.45;
}
.schedule-location svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; color: var(--sage); }
.schedule-price {
  margin-top: 16px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-weight: 800; color: var(--green); font-size: 0.88rem;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.schedule-details {
  margin-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 10px;
}
.schedule-details summary {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--sage);
  cursor: pointer; list-style: none;
  display: flex; align-items: center; gap: 6px;
  user-select: none;
}
.schedule-details summary::-webkit-details-marker { display: none; }
.schedule-details summary::after {
  content: '+';
  font-size: 1rem; line-height: 1; margin-left: auto; color: var(--green);
}
.schedule-details[open] summary::after { content: '–'; }
.schedule-details-body {
  font-size: 0.82rem; color: rgba(235,240,238,0.6);
  line-height: 1.65; margin-top: 10px;
}

/* ============================================================
   ÜBER BOUGÉ
   ============================================================ */
.ueber { background: var(--mint); padding: 96px 0; }
.ueber-grid {
  display: grid; gap: 56px; align-items: center;
}
@media (min-width: 900px) { .ueber-grid { grid-template-columns: 1fr 1.15fr; gap: 80px; } }
.ueber-portrait {
  aspect-ratio: 3/4; border-radius: 12px;
  overflow: hidden; position: relative;
  background: white;
}
.ueber-portrait img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.ueber-portrait-badge {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: var(--green); color: white;
  padding: 12px 16px; border-radius: 8px;
  font-weight: 800; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.ueber-text p { margin-bottom: 16px; color: var(--text); font-size: 1rem; line-height: 1.8; }
.ueber-text p.lead-text { font-size: 1.1rem; color: var(--dark); font-weight: 500; }
.credentials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.badge {
  background: white; padding: 8px 16px;
  border-radius: 6px; font-size: 0.82rem;
  color: var(--dark); font-weight: 700;
  border: 1px solid rgba(61, 63, 62, 0.12);
  text-transform: uppercase; letter-spacing: 0.5px;
}

/* ============================================================
   WAS IST... (Erklärer)
   ============================================================ */
.erklaerung { background: var(--white); padding: 96px 0; }
.erklaerung-grid { display: grid; gap: 40px; }
@media (min-width: 800px) { .erklaerung-grid { grid-template-columns: 1fr 1fr; gap: 56px; } }
.erklaerung-block {
  background: var(--mint);
  border-radius: 12px; padding: 40px;
  border-left: 4px solid var(--green);
}
.erklaerung-block h3 {
  font-size: 1.5rem; font-weight: 900; color: var(--ink);
  text-transform: uppercase; letter-spacing: -0.03em;
  margin-bottom: 16px; line-height: 1.1;
}
.erklaerung-block h3 em { font-style: normal; color: var(--green); }
.erklaerung-block p { color: var(--muted); font-size: 0.97rem; line-height: 1.8; margin-bottom: 12px; }
.erklaerung-block p:last-child { margin-bottom: 0; }
.erklaerung-block blockquote {
  margin-top: 20px;
  color: var(--green); font-weight: 800; font-size: 1rem;
  font-style: italic; line-height: 1.4;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--ink); padding: 80px 0; }
.testimonials .section-title { color: white; }
.testimonials-grid { display: grid; gap: 20px; }
@media (min-width: 700px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px; padding: 28px;
  transition: border-color .25s, transform .25s;
  display: flex; flex-direction: column;
}
.testimonial-card:hover { border-color: rgba(103, 153, 108, 0.45); transform: translateY(-3px); }
.testimonial-quote-mark {
  font-size: 3rem; line-height: 1; color: var(--green);
  font-family: Georgia, serif; margin-bottom: 12px;
  opacity: 0.9;
}
.testimonial-card p {
  color: rgba(235,240,238,0.8); font-size: 0.95rem;
  line-height: 1.75; margin-bottom: 24px; flex: 1;
  font-style: italic;
}
.testimonial-footer {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
}
.testimonial-avatar {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(103, 153, 108, 0.4);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.testimonial-avatar img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.testimonial-avatar-placeholder {
  color: var(--sage); font-weight: 800; font-size: 1rem;
  letter-spacing: -0.02em;
}
.testimonial-author {
  font-weight: 800; color: white; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 1px;
}

/* ============================================================
   PREISE
   ============================================================ */
.preise { background: var(--white); padding: 96px 0; }
.preise-grid { display: grid; gap: 20px; }
@media (min-width: 600px) { .preise-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .preise-grid { grid-template-columns: repeat(4, 1fr); } }

.preis-card {
  border-radius: 12px; padding: 32px;
  border: 2px solid rgba(61,63,62,0.1);
  background: var(--mint);
  transition: transform .25s, border-color .25s;
}
.preis-card:hover { transform: translateY(-4px); border-color: var(--sage); }
.preis-card.featured {
  background: var(--ink); border-color: var(--green);
}
.preis-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--green); margin-bottom: 12px;
}
.preis-amount {
  font-size: 2.8rem; font-weight: 900; color: var(--ink);
  letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px;
}
.preis-unit { font-size: 0.88rem; color: var(--muted); margin-bottom: 16px; }
.preis-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }
.preis-card.featured .preis-amount { color: white; }
.preis-card.featured .preis-unit,
.preis-card.featured .preis-desc { color: rgba(235,240,238,0.65); }
.preis-card.featured .preis-label { color: var(--sage); }

/* ============================================================
   EVENTS SEKTION
   ============================================================ */
.events { background: var(--mint); padding: 96px 0; }
.events-grid { display: grid; gap: 20px; }
.event-card {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
  background: white; border-radius: 12px; padding: 28px;
  border: 1px solid rgba(61, 63, 62, 0.08);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
@media (min-width: 700px) {
  .event-card { grid-template-columns: 130px 1fr auto; align-items: center; padding: 32px; }
}
.event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(61,63,62,0.08);
  border-color: var(--sage);
}
.event-date {
  background: linear-gradient(135deg, var(--green), var(--green2));
  color: white; border-radius: 10px;
  padding: 18px 14px; text-align: center;
  display: flex; flex-direction: column; gap: 2px;
}
@media (max-width: 699px) {
  .event-date { flex-direction: row; justify-content: center; align-items: baseline; gap: 10px; padding: 14px 18px; }
}
.event-date .day-label { font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.8; font-weight: 700; }
.event-date .day-num { font-size: 2rem; font-weight: 900; line-height: 1; letter-spacing: -0.04em; }
.event-date .day-month { font-size: 0.82rem; font-weight: 700; opacity: 0.9; }
.event-content { min-width: 0; }
.event-tag {
  display: inline-block; background: var(--sage); color: var(--dark);
  padding: 3px 12px; border-radius: 4px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 10px;
}
.event-content h3 { color: var(--ink); font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; line-height: 1.25; text-transform: uppercase; letter-spacing: -0.02em; }
.event-content p { color: var(--muted); margin-bottom: 12px; font-size: 0.93rem; line-height: 1.65; }
.event-meta { display: flex; flex-wrap: wrap; gap: 14px; color: var(--muted); font-size: 0.87rem; }
.event-meta span { display: inline-flex; align-items: center; gap: 5px; }
.event-meta svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--green); }
.btn-event {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--ink); color: var(--mint);
  padding: 12px 20px; border-radius: 6px;
  font-weight: 700; font-size: 0.85rem; white-space: nowrap;
  text-transform: uppercase; letter-spacing: 0.5px;
  align-self: center;
  transition: background .2s, transform .15s;
}
.btn-event:hover { background: var(--green); color: white; transform: translateY(-1px); }

/* ============================================================
   MERCH TEASER
   ============================================================ */
.merch-teaser {
  background: var(--ink);
  padding: 40px 0;
  overflow: visible;
}
.merch-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 768px) {
  .merch-inner { grid-template-columns: 360px 1fr; gap: 96px; }
}
.merch-visual {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  aspect-ratio: 3/5;
}
@media (min-width: 768px) {
  .merch-visual { margin-top: -100px; margin-bottom: -100px; }
}
.merch-content {
  display: flex; flex-direction: column; gap: 28px;
  align-items: flex-start;
  padding-top: 16px;
}
.merch-text h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 900;
  color: white; text-transform: uppercase; letter-spacing: -0.04em;
  margin-bottom: 10px;
}
.merch-text h2 em { font-style: normal; color: var(--green); }
.merch-text p { color: rgba(235,240,238,0.65); font-size: 1rem; max-width: 480px; line-height: 1.7; }
.btn-merch {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: white;
  padding: 16px 28px; border-radius: 6px;
  font-weight: 700; font-size: 0.95rem;
  text-transform: uppercase; letter-spacing: 0.5px;
  white-space: nowrap;
  transition: background .2s, transform .15s;
}
.btn-merch:hover { background: var(--green2); color: white; transform: translateY(-1px); }

/* ============================================================
   KONTAKT
   ============================================================ */
.kontakt { background: var(--ink); padding: 96px 0; }
.kontakt .section-label { background: var(--sage); color: var(--ink); }
.kontakt .section-title { color: white; }
.kontakt .section-intro { color: rgba(235,240,238,0.65); }
.kontakt-grid { display: grid; gap: 20px; }
@media (min-width: 768px) { .kontakt-grid { grid-template-columns: 1fr 1fr; } }
.kontakt-block {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 32px;
  transition: border-color .25s;
}
.kontakt-block:hover { border-color: rgba(103, 153, 108, 0.5); }
.kontakt-block h3 {
  color: rgba(235,240,238,0.6); font-size: 0.72rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 14px;
}
.kontakt-block .big {
  font-size: 1.35rem; font-weight: 800; color: white;
  margin-bottom: 6px; display: block; line-height: 1.3;
  transition: color .2s;
}
.kontakt-block .big:hover { color: var(--green); }
.kontakt-block small { color: rgba(235,240,238,0.5); font-size: 0.85rem; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #111312; color: rgba(235, 240, 238, 0.55);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid; gap: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding-bottom: 36px; margin-bottom: 28px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-top: 4px; }
.footer-grid h4 {
  color: rgba(235,240,238,0.85); font-size: 0.72rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.footer-grid a {
  color: rgba(235, 240, 238, 0.55); display: block;
  padding: 5px 0; font-size: 0.9rem; transition: color .2s;
}
.footer-grid a:hover { color: var(--green); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: space-between; align-items: center;
  font-size: 0.8rem;
}
.footer-tagline { color: var(--green); font-weight: 700; font-style: italic; }
.footer-credit { color: rgba(235,240,238,0.55); font-size: 0.9rem; }
.footer-credit a { color: rgba(235,240,238,0.55); text-decoration: none; transition: color .2s; white-space: nowrap; }
.footer-credit a:hover { color: var(--green); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-brand .footer-social a {
  display: inline-flex !important; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 9px; flex-shrink: 0;
  background: rgba(255,255,255,0.07); color: rgba(235,240,238,0.55);
  transition: background .2s, color .2s; padding: 0 !important;
  text-decoration: none;
}
.footer-brand .footer-social a:hover { background: var(--green); color: white; }
.footer-brand .footer-social svg { width: 18px; height: 18px; display: block; flex-shrink: 0; }

/* Instagram CTA in Kontakt-Sektionen */
.instagram-cta {
  display: flex; align-items: center; gap: 16px;
  background: rgba(103,153,108,0.08);
  border: 1px solid rgba(103,153,108,0.22);
  border-radius: 12px; padding: 20px 24px; margin-top: 20px;
  text-decoration: none; transition: border-color .25s, background .25s;
  color: inherit;
}
.instagram-cta:hover { border-color: var(--green); background: rgba(103,153,108,0.14); }
.instagram-cta-icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 10px;
  background: var(--green); display: flex; align-items: center;
  justify-content: center; color: white;
}
.instagram-cta-icon svg { width: 22px; height: 22px; }
.instagram-cta-body { flex: 1; }
.instagram-cta-body strong {
  display: block; font-size: 0.95rem; font-weight: 700;
  color: var(--ink); margin-bottom: 2px;
}
.instagram-cta-body span { font-size: 0.83rem; color: var(--muted); }
.instagram-cta-arrow { color: var(--green); flex-shrink: 0; }
/* dark background variant */
.instagram-cta--dark { background: rgba(103,153,108,0.1); border-color: rgba(103,153,108,0.25); }
.instagram-cta--dark .instagram-cta-body strong { color: rgba(235,240,238,0.9); }
.instagram-cta--dark .instagram-cta-body span { color: rgba(235,240,238,0.5); }
.instagram-cta--dark .instagram-cta-arrow { color: var(--sage); }

.facebook-cta {
  display: flex; align-items: center; gap: 16px;
  background: rgba(103,153,108,0.08);
  border: 1px solid rgba(103,153,108,0.22);
  border-radius: 12px; padding: 20px 24px; margin-top: 12px;
  text-decoration: none; transition: border-color .25s, background .25s;
  color: inherit;
}
.facebook-cta:hover { border-color: var(--green); background: rgba(103,153,108,0.14); }
.facebook-cta-icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 10px;
  background: var(--green); display: flex; align-items: center;
  justify-content: center; color: white;
}
.facebook-cta-icon svg { width: 22px; height: 22px; }
.facebook-cta-body { flex: 1; }
.facebook-cta-body strong {
  display: block; font-size: 0.95rem; font-weight: 700;
  color: var(--ink); margin-bottom: 2px;
}
.facebook-cta-body span { font-size: 0.83rem; color: var(--muted); }
.facebook-cta-arrow { color: var(--green); flex-shrink: 0; }
.facebook-cta--dark { background: rgba(103,153,108,0.1); border-color: rgba(103,153,108,0.25); }
.facebook-cta--dark .facebook-cta-body strong { color: rgba(235,240,238,0.9); }
.facebook-cta--dark .facebook-cta-body span { color: rgba(235,240,238,0.5); }
.facebook-cta--dark .facebook-cta-arrow { color: var(--sage); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {

  /* Logo: entrance + wobble */
  @keyframes logoEnter {
    0%   { transform: scale(0.6) rotate(-14deg); opacity: 0; }
    55%  { transform: scale(1.10) rotate(8deg);  opacity: 1; }
    80%  { transform: scale(0.96) rotate(-4deg); }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
  }
  @keyframes logoWobble {
    0%, 82%, 100% { transform: rotate(0deg); }
    85% { transform: rotate(-5deg); }
    88% { transform: rotate(4deg); }
    91% { transform: rotate(-2deg); }
    94% { transform: rotate(1deg); }
    97% { transform: rotate(0deg); }
  }
  .logo img {
    animation:
      logoEnter 0.95s cubic-bezier(.34,1.56,.64,1) both,
      logoWobble 5s ease-in-out 1.4s infinite;
  }

  /* Hero: Eingangsanimation Kartenstapel */
  @keyframes heroEnter {
    0%   { transform: translateY(40px) scale(0.88) rotate(-3deg); opacity: 0; }
    55%  { transform: translateY(-10px) scale(1.04) rotate(1.5deg); opacity: 1; }
    78%  { transform: translateY(4px) scale(0.98) rotate(-0.5deg); }
    100% { transform: translateY(0) scale(1) rotate(0deg); opacity: 1; }
  }
  .hero-cards {
    animation: heroEnter 1.1s cubic-bezier(.34,1.56,.64,1) both;
    transform-origin: bottom center;
  }

  /* Kontinuierliche Float-Animationen pro Karte */
  @keyframes floatPink {
    0%   { transform: rotate(-12deg) translateX(-38px) translateY(0px); }
    20%  { transform: rotate(-10deg) translateX(-32px) translateY(-20px); }
    45%  { transform: rotate(-14deg) translateX(-42px) translateY(-8px); }
    70%  { transform: rotate(-11deg) translateX(-35px) translateY(-26px); }
    100% { transform: rotate(-12deg) translateX(-38px) translateY(0px); }
  }
  @keyframes floatBleu {
    0%   { transform: rotate(11deg) translateX(38px) translateY(-10px); }
    30%  { transform: rotate(13deg) translateX(32px) translateY(-30px); }
    55%  { transform: rotate(9deg) translateX(42px) translateY(-4px); }
    80%  { transform: rotate(12deg) translateX(35px) translateY(-22px); }
    100% { transform: rotate(11deg) translateX(38px) translateY(-10px); }
  }
  .hero-card-pink {
    animation:
      cardSwap2 8s step-end infinite,
      floatPink 5s ease-in-out infinite;
  }
  .hero-card-bleu {
    animation:
      cardSwap1 8s step-end infinite,
      floatBleu 6.5s ease-in-out 1.8s infinite backwards;
  }

  /* Badge 1 */
  @keyframes badge1Enter {
    0%   { transform: scale(0) rotate(-180deg); opacity: 0; }
    65%  { transform: scale(1.20) rotate(15deg); opacity: 1; }
    82%  { transform: scale(0.92) rotate(-6deg); }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
  }
  @keyframes badgeSpin {
    0%, 76%, 100% { transform: rotate(0deg) scale(1); }
    81% { transform: rotate(-22deg) scale(1.18); }
    88% { transform: rotate(14deg) scale(0.92); }
    94% { transform: rotate(-5deg) scale(1.04); }
  }
  .hero-badge-1 {
    animation:
      badge1Enter 0.9s cubic-bezier(.34,1.56,.64,1) 0.3s both,
      badgeSpin 5.5s ease-in-out 2.0s infinite;
    transform-origin: center;
  }

  /* Badge 2 */
  @keyframes badge2Enter {
    0%   { transform: translateX(-30px) translateY(20px) rotate(-8deg); opacity: 0; }
    60%  { transform: translateX(6px) translateY(-6px) rotate(4deg); opacity: 1; }
    80%  { transform: translateX(-3px) translateY(2px) rotate(-1deg); }
    100% { transform: translateX(0) translateY(0) rotate(0deg); opacity: 1; }
  }
  @keyframes badgeDrift {
    0%, 74%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
    80% { transform: translateY(-14px) translateX(8px) rotate(6deg); }
    88% { transform: translateY(-5px) translateX(-4px) rotate(-3deg); }
    95% { transform: translateY(-9px) translateX(3px) rotate(1.5deg); }
  }
  .hero-badge-2 {
    animation:
      badge2Enter 1.0s cubic-bezier(.34,1.56,.64,1) 0.6s both,
      badgeDrift 5.2s ease-in-out 2.4s infinite;
    transform-origin: center;
  }

  /* CTA hop */
  @keyframes hop {
    0%, 84%, 100% { transform: translateY(0); }
    88% { transform: translateY(-4px); }
    92% { transform: translateY(-1px); }
    96% { transform: translateY(-2px); }
  }
  .btn-primary { animation: hop 5s ease-in-out 1.8s infinite; }

  /* Card icons wiggle */
  @keyframes wiggle {
    0%, 85%, 100% { transform: rotate(0deg); }
    88% { transform: rotate(-7deg); }
    91% { transform: rotate(6deg); }
    94% { transform: rotate(-3deg); }
    97% { transform: rotate(0deg); }
  }
  .angebote-grid > .angebot-card:nth-of-type(1) .angebot-icon { animation: wiggle 5.4s ease-in-out 2.4s infinite; }
  .angebote-grid > .angebot-card:nth-of-type(2) .angebot-icon { animation: wiggle 5.4s ease-in-out 4.0s infinite; }
  .angebote-grid > .angebot-card:nth-of-type(3) .angebot-icon { animation: wiggle 5.4s ease-in-out 5.6s infinite; }
  .angebote-grid > .angebot-card:nth-of-type(4) .angebot-icon { animation: wiggle 5.4s ease-in-out 3.2s infinite; }
  .angebote-grid > .angebot-card:nth-of-type(5) .angebot-icon { animation: wiggle 5.4s ease-in-out 4.8s infinite; }
  .angebote-grid > .angebot-card:nth-of-type(6) .angebot-icon { animation: wiggle 5.4s ease-in-out 6.4s infinite; }

  /* Credentials pop */
  @keyframes pop {
    0%, 90%, 100% { transform: scale(1); }
    94% { transform: scale(1.06); }
  }
  .credentials .badge:nth-of-type(1) { animation: pop 4.8s ease-in-out 3.2s infinite; }
  .credentials .badge:nth-of-type(2) { animation: pop 4.8s ease-in-out 4.6s infinite; }
  .credentials .badge:nth-of-type(3) { animation: pop 4.8s ease-in-out 6.0s infinite; }
  .credentials .badge:nth-of-type(4) { animation: pop 4.8s ease-in-out 7.4s infinite; }

  /* Schedule cards tilt */
  @keyframes tilt {
    0%, 85%, 100% { transform: rotate(0deg) translateY(0); }
    88% { transform: rotate(-1.5deg) translateY(-2px); }
    92% { transform: rotate(1deg) translateY(0); }
    96% { transform: rotate(-0.3deg) translateY(0); }
  }
  .schedule-grid > .schedule-card:nth-of-type(1) { animation: tilt 5s ease-in-out 3.0s infinite; }
  .schedule-grid > .schedule-card:nth-of-type(2) { animation: tilt 5s ease-in-out 4.7s infinite; }
  .schedule-grid > .schedule-card:nth-of-type(3) { animation: tilt 5s ease-in-out 6.4s infinite; }
}
