/* ============================================================
   FONTS — Asterix (Headlines) + Montserrat (Body), original aus dinotastic.de
   ============================================================ */
@font-face {
  font-display: swap;
  font-family: Asterix;
  font-style: normal;
  font-weight: 400;
  src: url('../assets/fonts/Asterix.woff2') format('woff2'),
       url('../assets/fonts/Asterix.woff') format('woff'),
       url('../assets/fonts/Asterix.ttf') format('truetype');
}
@font-face {
  font-display: swap;
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  src: url('../assets/fonts/Montserrat-Regular.woff2') format('woff2'),
       url('../assets/fonts/Montserrat-Regular.ttf') format('truetype');
}
@font-face {
  font-display: swap;
  font-family: Montserrat;
  font-style: normal;
  font-weight: 600;
  src: url('../assets/fonts/Montserrat-SemiBold.woff2') format('woff2'),
       url('../assets/fonts/Montserrat-SemiBold.ttf') format('truetype');
}
@font-face {
  font-display: swap;
  font-family: Montserrat;
  font-style: normal;
  font-weight: 700;
  src: url('../assets/fonts/Montserrat-Bold.woff2') format('woff2'),
       url('../assets/fonts/Montserrat-Bold.ttf') format('truetype');
}
@font-face {
  font-display: swap;
  font-family: Montserrat;
  font-style: normal;
  font-weight: 800;
  src: url('../assets/fonts/Montserrat-ExtraBold.woff2') format('woff2'),
       url('../assets/fonts/Montserrat-ExtraBold.ttf') format('truetype');
}

/* ============================================================
   DINOTASTIC RELAUNCH — Stylesheet
   Theatrical, kinetic, bold. Echo of the show's stage lighting.
   ============================================================ */

:root {
  /* Brand — extrahiert aus Logo & Bühnenfotos */
  --c-leo:        #1FA8B8;  /* T-Rex Leo türkis */
  --c-olivia:     #7B3DA6;  /* Olivia Langhals — lila/purple, mit Brille */
  --c-tony:       #C9B14A;  /* Tony olive/gelb */
  --c-libell:     #E6478C;  /* Libell Langhorn — pink Triceratops */
  --c-blubber:    #2E50AA;  /* Blubber blau */

  --c-vulkan:     #FF6B1A;  /* Logo orange — primary CTA */
  --c-vulkan-dk:  #D9501C;  /* Hover */
  --c-lava:       #D7263D;  /* Akzent / urgent */
  --c-gold:       #F5B500;  /* Logo gelb */
  --c-jungle:     #1F5F2E;
  --c-jungle-dk:  #0d1f1a;  /* Background */

  --c-stone:      #A89685;  /* Logo stein */
  --c-sky:        #6FC8E0;  /* Akzent — Himmel-blau, freundlich */
  --c-mint:       #A8E6CF;  /* Akzent — Mint */
  --c-peach:      #FFD8A8;  /* Akzent — Peach */
  --c-coral:      #FF8B6B;  /* Akzent — Coral (heller als Vulkan) */
  --c-cream:      #FFE9C2;  /* Soft bg, saturierter */
  --c-paper:      #FFF7E8;  /* Light bg, wärmer */
  --c-ink:        #14110D;  /* Body text on light */
  --c-ink-soft:   #4A453D;  /* Secondary */

  /* Typography */
  --f-display: 'Asterix', 'Bagel Fat One', system-ui, sans-serif;
  --f-body: 'Montserrat', system-ui, sans-serif;
  --f-hand: 'Caveat', cursive;

  /* Layout */
  --max-w: 1240px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --r: 18px;     /* radius */
  --r-lg: 28px;
  --r-pill: 999px;

  /* Shadows */
  --sh-1: 0 4px 14px rgba(0,0,0,.08);
  --sh-2: 0 10px 40px rgba(0,0,0,.12);
  --sh-glow: 0 0 30px rgba(255, 107, 26, .35);
}

/* ============================================================
   RESET & BASE
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--c-ink);
  background: var(--c-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration-color: rgba(255, 107, 26, .5);
  text-underline-offset: 3px;
  transition: color .2s;
}
a:hover { color: var(--c-vulkan); }

button { font: inherit; cursor: pointer; border: 0; background: none; }
input, select { font: inherit; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--c-vulkan); color: white;
  padding: .75rem 1rem; border-radius: var(--r);
  z-index: 9999;
}
.skip-link:focus { top: 1rem; }

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 3px;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.8rem, 6.5vw, 5rem); line-height: 1; }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); line-height: 1.05; color: var(--c-vulkan); }
h3 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); line-height: 1.1; color: var(--c-jungle); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); line-height: 1.15; letter-spacing: 2px; }

.eyebrow {
  font-family: var(--f-hand);
  font-size: 1.4rem;
  color: var(--c-vulkan);
  font-weight: 700;
  margin-bottom: .5rem;
  display: inline-block;
  transform: rotate(-1deg);
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--c-ink-soft);
  line-height: 1.55;
  max-width: 58ch;
}

.section-head { margin-bottom: 3rem; }
.section-head--center { text-align: center; }
.section-head--center .lead { margin-left: auto; margin-right: auto; }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: 1rem 1.8rem;
  border-radius: var(--r-pill);
  font-family: var(--f-body);
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
  letter-spacing: .01em;
}

.btn--primary {
  background: var(--c-vulkan);
  color: white;
  box-shadow: var(--sh-glow);
}
.btn--primary:hover {
  background: var(--c-vulkan-dk);
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(255, 107, 26, .5);
  color: white;
}

.btn--ghost {
  background: rgba(255,255,255,.1);
  color: white;
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.2);
  color: white;
}

.btn--inline { margin-top: 1.5rem; }

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(13, 31, 26, .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: padding .2s;
}
.nav.is-scrolled { padding: .65rem 0; }

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo img { height: 32px; width: auto; }

.nav__menu ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  align-items: center;
}

.nav__menu a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: color .2s;
}
.nav__menu a:hover { color: var(--c-gold); }

.nav__cta {
  background: var(--c-vulkan);
  color: white !important;
  padding: .65rem 1.4rem;
  border-radius: var(--r-pill);
  box-shadow: 0 0 20px rgba(255, 107, 26, .4);
}
.nav__cta:hover {
  background: var(--c-vulkan-dk);
  color: white !important;
}

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
}
.nav__toggle span {
  display: block;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

@media (max-width: 900px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--c-jungle-dk);
    padding: 1.5rem var(--pad);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s, opacity .3s;
  }
  .nav__menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__menu ul {
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
  }
  .nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  color: white;
  overflow: hidden;
  background: var(--c-jungle-dk);
}

/* === Mobile: dediziertes Header-Bild oben === */
.hero__mobile-image {
  display: none;            /* nur auf mobile sichtbar */
  width: 100%;
  aspect-ratio: 1080 / 1920;
  position: relative;
  background-size: cover;
  background-position: center top;
}
/* Sanfter Gradient-Übergang nach unten ins Content-Dunkelgrün */
.hero__mobile-image::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 90px;
  background: linear-gradient(180deg, transparent 0%, var(--c-jungle-dk) 100%);
  pointer-events: none;
}

/* === Desktop: full-bleed Hintergrundbild === */
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: 70% 30%;
}
@media (min-width: 768px) {
  .hero__bg {
    background-image: url('../assets/hero/header-desktop.webp');
  }
}

.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(31, 168, 184, .15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(255, 107, 26, .18) 0%, transparent 55%),
    linear-gradient(95deg,
      rgba(13, 31, 26, .85) 0%,
      rgba(13, 31, 26, .55) 35%,
      rgba(13, 31, 26, .15) 60%,
      rgba(13, 31, 26, .05) 100%),
    linear-gradient(180deg,
      transparent 0%,
      transparent 60%,
      rgba(13, 31, 26, .85) 100%);
}

.hero__lights { position: absolute; inset: 0; pointer-events: none; mix-blend-mode: screen; }
.light {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
  animation: pulse 5s ease-in-out infinite;
}
.light--green {
  width: 400px; height: 400px;
  background: #4DE08E;
  top: 10%; left: -5%;
  animation-delay: 0s;
}
.light--pink {
  width: 350px; height: 350px;
  background: #FF4D9D;
  top: 30%; right: -5%;
  animation-delay: 1.5s;
}
.light--orange {
  width: 300px; height: 300px;
  background: var(--c-vulkan);
  bottom: 10%; left: 30%;
  animation-delay: 3s;
}
@keyframes pulse {
  0%, 100% { opacity: .35; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.1); }
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 7rem var(--pad) 4rem;  /* default desktop padding */
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__content > * { max-width: 620px; }

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .5rem 1rem;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,.15);
  width: fit-content;
}
.hero__kicker .dot {
  width: 10px; height: 10px;
  background: #4DE08E;
  border-radius: 50%;
  box-shadow: 0 0 12px #4DE08E;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 50% { opacity: .4; } }

.hero__logo {
  display: block;
  max-width: min(560px, 80vw);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,.5));
  animation: drop-in .8s cubic-bezier(.34, 1.56, .64, 1);
}
@keyframes drop-in {
  from { transform: translateY(-30px) scale(.92); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

.hero__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.05;
  margin-bottom: 1rem;
  color: var(--c-gold);
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

.hero__sub {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  margin-bottom: 2rem;
  max-width: 38ch;
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.hero__sub strong { color: var(--c-gold); }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero__meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero__meta div {
  display: flex;
  flex-direction: column;
}
.hero__meta strong {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--c-gold);
}
.hero__meta span {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .75;
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero__scroll span {
  display: block;
  width: 3px; height: 8px;
  background: white;
  border-radius: 2px;
  animation: scroll-down 1.8s ease-in-out infinite;
}
@keyframes scroll-down {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(18px); opacity: 0; }
}

/* === Mobile-Anpassungen === */
@media (max-width: 767px) {
  .hero__mobile-image {
    display: block;
    background-image: url('../assets/hero/header-mobile.webp');
  }
  .hero__bg,
  .hero__overlay,
  .hero__lights { display: none; }      /* Desktop-Hintergrund auf Mobil weg */
  .hero__logo { display: none; }         /* Logo ist im Header-Bild enthalten */
  .hero__scroll { display: none; }

  .hero__content {
    min-height: 0;
    padding: 2rem var(--pad) 3.5rem;
    background: var(--c-jungle-dk);
    text-align: left;
  }
  .hero__title {
    color: var(--c-gold);
    font-size: 2rem;
    margin-top: .25rem;
  }
  .hero__sub br { display: none; }       /* natürlicher Umbruch auf Mobil */
  .hero__cta { gap: .75rem; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .hero__meta {
    gap: 1.25rem 1.75rem;
  }
}

/* ============================================================
   TOUR
   ============================================================ */

.tour {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background:
    /* Farbenfroher Sonnenuntergang-Mix mit Akzent-Blobs */
    radial-gradient(ellipse 50% 45% at 15% 0%, rgba(255, 107, 26, .35) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 90% 100%, rgba(111, 200, 224, .28) 0%, transparent 55%),
    radial-gradient(ellipse 35% 40% at 80% 20%, rgba(245, 181, 0, .25) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 20% 90%, rgba(230, 71, 140, .15) 0%, transparent 60%),
    linear-gradient(180deg, #FFF1D6 0%, #FFE5C0 50%, #FFEFD8 100%);
}

/* Map-Grid Hintergrund — Karten-Anmutung */
.tour::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 95, 46, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 95, 46, .08) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.tour::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--c-paper);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: 1;
}

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

.tour__controls {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.75rem;
  background: white;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-2);
  border: 1px solid rgba(0,0,0,.05);
}

@media (max-width: 800px) {
  .tour__controls {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }
}

.tour__search label,
.tour__filters label {
  display: block;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  margin-bottom: .4rem;
}

.tour__search input,
.tour__filters select {
  width: 100%;
  padding: .85rem 1rem;
  border: 2px solid rgba(0,0,0,.08);
  border-radius: var(--r);
  background: var(--c-paper);
  font-weight: 600;
  font-size: 1rem;
  transition: border-color .2s, box-shadow .2s;
}
.tour__search input:focus,
.tour__filters select:focus {
  outline: 0;
  border-color: var(--c-vulkan);
  box-shadow: 0 0 0 4px rgba(255, 107, 26, .15);
}

.tour__filters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.tour__count {
  align-self: end;
  font-family: var(--f-display);
  font-size: 1.4rem;
  color: var(--c-vulkan);
  padding-bottom: .25rem;
}
@media (max-width: 800px) {
  .tour__count { align-self: start; }
}

.tour__list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: .75rem;
}

.tour__date {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: white;
  border-radius: var(--r);
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  text-decoration: none;
  color: inherit;
}
.tour__date:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-2);
  border-color: var(--c-vulkan);
}

.tour__date-block {
  text-align: center;
  background: var(--c-jungle-dk);
  color: white;
  padding: .75rem 1rem;
  border-radius: var(--r);
  min-width: 80px;
}
.tour__date-block .day {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: 1px;
  color: var(--c-gold);
  display: block;
}
.tour__date-block .month {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  margin-top: .15rem;
  display: block;
}
.tour__date-block .weekday {
  font-size: .7rem;
  opacity: .7;
  text-transform: uppercase;
  letter-spacing: .12em;
  display: block;
}

.tour__city {
  display: flex;
  flex-direction: column;
}
.tour__city .city-name {
  font-family: var(--f-display);
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: .3rem;
}
.tour__city .venue {
  font-size: .9rem;
  color: var(--c-ink-soft);
  font-weight: 600;
}

.tour__time {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--c-ink-soft);
}

.tour__buy {
  background: var(--c-vulkan);
  color: white;
  padding: .65rem 1.4rem;
  border-radius: var(--r-pill);
  font-weight: 800;
  text-decoration: none;
  font-size: .95rem;
  transition: background .2s, transform .2s;
}
.tour__buy:hover {
  background: var(--c-vulkan-dk);
  color: white;
  transform: scale(1.03);
}

@media (max-width: 700px) {
  .tour__date {
    grid-template-columns: auto 1fr;
    gap: 1rem;
  }
  .tour__time, .tour__buy {
    grid-column: span 2;
  }
  .tour__buy { text-align: center; }
}

.tour__cta {
  margin-top: 2rem;
  text-align: center;
  font-size: 1rem;
  color: var(--c-ink-soft);
}
.tour__cta a {
  color: var(--c-vulkan);
  font-weight: 700;
  text-decoration: underline;
}

/* ============================================================
   SHOW — Story
   ============================================================ */

.show {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
  background:
    /* Bühnen-Spotlights — stärker, wie auf der Bühne */
    radial-gradient(ellipse 60% 80% at 85% 15%, rgba(255, 181, 0, .22) 0%, transparent 55%),
    radial-gradient(ellipse 55% 70% at 15% 85%, rgba(31, 168, 184, .18) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 50% 50%, rgba(31, 95, 46, .08) 0%, transparent 60%),
    linear-gradient(180deg, var(--c-cream) 0%, #FFF8E8 50%, var(--c-cream) 100%);
}
/* Jungle-Blätter Pattern */
.show::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'><g fill='%231F5F2E' fill-opacity='0.07'><path d='M40 30c-2 8-2 15 2 22 4 6 10 9 17 9-2-8-7-14-13-19-2-2-4-6-6-12zm160 50c-8 3-14 9-17 17-2 8 0 16 6 23 8-4 13-12 14-21 1-7-1-13-3-19zm-50 80c-5 6-7 13-5 21 2 7 7 13 14 16 4-9 4-19 0-27-2-5-5-8-9-10zM70 170c8 2 16 0 22-6 6-5 9-12 8-20-9 1-17 5-22 12-3 4-5 9-8 14z'/></g></svg>");
  background-size: 320px;
  pointer-events: none;
  opacity: 1;
}
/* Bühnen-Lichtstrahl */
.show::after {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 600px; height: 800px;
  background: linear-gradient(150deg, transparent 0%, rgba(255, 181, 0, .12) 50%, transparent 100%);
  transform: rotate(-15deg);
  pointer-events: none;
}
.show > .container { position: relative; z-index: 1; }

.show__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) {
  .show__grid { grid-template-columns: 1fr; gap: 3rem; }
}

.show__copy h2 em {
  font-style: normal;
  color: var(--c-vulkan);
}

.show__features {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
}

.feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.25rem;
  background: white;
  border-radius: var(--r);
  border-left: 4px solid var(--c-vulkan);
  box-shadow: var(--sh-1);
}
.feature:nth-child(2) { border-left-color: var(--c-leo); }
.feature:nth-child(3) { border-left-color: var(--c-olivia); }

.feature__icon {
  font-size: 2rem;
  line-height: 1;
}

.feature h3 {
  font-family: var(--f-display);
  margin-bottom: .25rem;
  font-size: 1.3rem;
}
.feature p {
  font-size: .98rem;
  color: var(--c-ink-soft);
  line-height: 1.5;
}

.show__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-2);
  transform: rotate(-1deg);
}
.show__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.show__sticker {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--c-vulkan);
  color: white;
  font-family: var(--f-hand);
  font-size: 1.2rem;
  padding: .6rem 1.1rem;
  border-radius: var(--r-pill);
  transform: rotate(3deg);
  box-shadow: var(--sh-1);
  font-weight: 700;
}

/* ============================================================
   HELDEN — Cards mit echten Charakter-Fotos
   ============================================================ */

.helden {
  padding: 7rem 0 8rem;
  position: relative;
  background:
    /* Mesh-Gradient: alle 5 Charakter-Farben als sichtbare Glows — Regenbogen-Effekt */
    radial-gradient(circle at 10% 20%, rgba(31, 168, 184, .28) 0%, transparent 40%),   /* Leo türkis */
    radial-gradient(circle at 30% 80%, rgba(123, 61, 166, .22) 0%, transparent 40%),   /* Libell lila */
    radial-gradient(circle at 50% 30%, rgba(201, 177, 74, .18) 0%, transparent 35%),   /* Tony olive */
    radial-gradient(circle at 75% 75%, rgba(230, 71, 140, .25) 0%, transparent 40%),   /* Olivia pink */
    radial-gradient(circle at 92% 25%, rgba(46, 80, 170, .22) 0%, transparent 40%),    /* Blubber blau */
    linear-gradient(180deg, var(--c-paper) 0%, var(--c-cream) 60%, var(--c-paper) 100%);
}

/* Subtile Dinosaurier-Fußspuren als Hintergrund-Pattern */
.helden::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'><g fill='%231F5F2E' fill-opacity='0.04'><path d='M30 15c-3 0-5 2-5 5 0 2 1 4 3 5l-1 8 6 2 1-9c2-1 3-3 3-6 0-3-3-5-7-5zm-7 13c-1 1-2 3-2 5l-1 4c0 1 1 2 2 2s2-1 2-2l-1-9zm14 0l-1 9c0 1 1 2 2 2s2-1 2-2l-1-4c0-2-1-4-2-5zm-8 14c-1 0-2 1-2 2l-1 4c0 1 1 2 2 2s2-1 2-2l-1-6zm6 0l-1 6c0 1 1 2 2 2s2-1 2-2l-1-4c0-1-1-2-2-2z'/><path d='M90 75c-3 0-5 2-5 5 0 2 1 4 3 5l-1 8 6 2 1-9c2-1 3-3 3-6 0-3-3-5-7-5z'/></g></svg>");
  background-size: 280px;
  opacity: .7;
  pointer-events: none;
}
.helden > .container { position: relative; z-index: 1; }

.helden__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;

  margin-top: 4rem;}
@media (max-width: 1100px) {
  .helden__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .helden__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}
@media (max-width: 480px) {
  .helden__grid { grid-template-columns: 1fr; }
}

.held {
  position: relative;
  background: white;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
  text-align: center;
  transition: transform .3s, box-shadow .3s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.held:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}

/* Foto-Bereich oben mit charaktertypischem Farbverlauf */
.held__photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.held__photo picture {
  display: block;
  width: 100%;
  height: 100%;
}
.held__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .3s ease;
  display: block;
  /* Leicht aufhellen — die Original-Bilder sind teils dunkel/düster */
  filter: brightness(1.08) contrast(1.04) saturate(1.05);
}
.held:hover .held__photo img {
  transform: scale(1.05);
  filter: brightness(1.12) contrast(1.06) saturate(1.1);
}
/* Farb-Wash oben über dem Foto */
.held__photo::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 30%;
  z-index: 1;
  pointer-events: none;
}
/* Bottom-Fade ins weiße Body */
.held__photo::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 40px;
  background: linear-gradient(180deg, transparent, white);
  z-index: 1;
  pointer-events: none;
}

.held--leo .held__photo::before     { background: linear-gradient(180deg, var(--c-leo) 0%, transparent 100%); opacity: .35; }
.held--olivia .held__photo::before  { background: linear-gradient(180deg, var(--c-olivia) 0%, transparent 100%); opacity: .35; }
.held--tony .held__photo::before    { background: linear-gradient(180deg, var(--c-tony) 0%, transparent 100%); opacity: .4; }
.held--libell .held__photo::before  { background: linear-gradient(180deg, var(--c-libell) 0%, transparent 100%); opacity: .35; }
.held--blubber .held__photo::before { background: linear-gradient(180deg, var(--c-blubber) 0%, transparent 100%); opacity: .35; }

.held__body {
  padding: .25rem 1.25rem 1.75rem;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.held__body p { flex: 1; }
.held__body p.held__role { flex: 0 0 auto; }  /* Rolle nicht strecken */
.held__tag { margin-top: auto; }

/* Farb-Akzent-Linie zwischen Foto und Body */
.held__body::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 4px;
  border-radius: 2px;
}
.held--leo .held__body::before     { background: var(--c-leo); }
.held--olivia .held__body::before  { background: var(--c-olivia); }
.held--tony .held__body::before    { background: var(--c-tony); }
.held--libell .held__body::before  { background: var(--c-libell); }
.held--blubber .held__body::before { background: var(--c-blubber); }

.held h3 {
  margin-top: 1.75rem;
  margin-bottom: .4rem;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 2.4vw, 2.4rem);
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-ink);
  /* Feste Höhe für genau 2 Zeilen — kurze Namen wie "Tony" werden vertikal zentriert,
     2-Zeiler wie "Olivia Langhals" passen ohne weitere Verschiebung */
  min-height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.held__role {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  line-height: 1.15;
  color: var(--c-vulkan);
  margin-bottom: 1.25rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  /* Feste Höhe für bis zu 2 Zeilen Rolle */
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Charakter-spezifische Farbe für die Rolle */
.held--leo     .held__role { color: var(--c-leo); }
.held--olivia  .held__role { color: var(--c-olivia); }
.held--tony    .held__role { color: #9A8523; }  /* Tonys Olive abgedunkelt für Kontrast */
.held--libell  .held__role { color: var(--c-libell); }
.held--blubber .held__role { color: var(--c-blubber); }

.held p {
  font-size: .9rem;
  color: var(--c-ink-soft);
  line-height: 1.55;
  margin-bottom: 1rem;
  text-align: center;
}

.held__tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--c-ink);
  background: var(--c-cream);
  padding: .4rem .8rem;
  border-radius: var(--r-pill);
}

.helden__cta {
  text-align: center;
  margin-top: 3.5rem;
  position: relative;
  z-index: 2;
}

/* ============================================================
   GALLERY
   ============================================================ */

.gallery {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
  color: white;
  background:
    /* Spotlight von oben — wie auf der Bühne */
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255, 181, 0, .12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 110%, rgba(31, 168, 184, .15) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 110%, rgba(230, 71, 140, .12) 0%, transparent 55%),
    var(--c-jungle-dk);
}
/* Subtile Truss-/Stage-Streifen */
.gallery::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 181, 0, .3) 20%,
    rgba(255, 181, 0, .6) 50%,
    rgba(255, 181, 0, .3) 80%,
    transparent 100%);
}
.gallery > .container { position: relative; z-index: 1; }
.gallery .eyebrow { color: var(--c-gold); }
.gallery .lead { color: rgba(255,255,255,.7); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  grid-auto-rows: 240px;
}
@media (max-width: 900px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
}
@media (max-width: 500px) {
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  display: block;
  background: rgba(255,255,255,.05);
  cursor: zoom-in;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item--wide { grid-column: span 2; grid-row: span 2; }
@media (max-width: 500px) {
  .gallery__item--wide { grid-column: span 1; grid-row: span 1; }
}

/* ============================================================
   ELTERN
   ============================================================ */

.eltern {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
  background:
    /* Eltern: warm, freundlich, mehr Coral- & Pfirsich-Akzente */
    radial-gradient(ellipse 50% 60% at 0% 30%, rgba(255, 139, 107, .30) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 100% 70%, rgba(245, 181, 0, .32) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 50% 100%, rgba(230, 71, 140, .14) 0%, transparent 60%),
    linear-gradient(180deg, #FFE9D0 0%, #FFE0C2 50%, #FFE9D0 100%);
}
/* Subtile Papier-Textur */
.eltern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><filter id='n'><feTurbulence baseFrequency='0.7' numOctaves='2'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.4'/></svg>");
  opacity: .15;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.eltern > .container { position: relative; z-index: 1; }

.eltern__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 900px) {
  .eltern__grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.eltern__check {
  margin-top: 2rem;
  padding: 1.75rem;
  background: var(--c-cream);
  border-radius: var(--r-lg);
  border: 2px dashed rgba(255, 107, 26, .3);
}
.eltern__check h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--c-vulkan);
}
.eltern__check ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: .65rem;
  font-size: 1rem;
  color: var(--c-ink-soft);
}
.eltern__check strong { color: var(--c-ink); }

/* Foto-Shooting Highlight nach der Show — Heller Akzent in Vulkan-Orange */
.eltern__highlight {
  margin-top: 1.5rem;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(135deg, var(--c-vulkan) 0%, #FF9A4D 100%);
  color: white;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  box-shadow: 0 8px 30px rgba(255, 107, 26, .25);
}
.eltern__highlight-icon {
  font-size: 2.4rem;
  line-height: 1;
  flex-shrink: 0;
}
.eltern__highlight h3 {
  font-size: 1.3rem;
  margin: 0 0 .35rem 0;
  color: white;
  letter-spacing: 2px;
}
.eltern__highlight p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, .92);
}
.eltern__highlight strong { color: white; }

.eltern__faq {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

details {
  background: white;
  border-radius: var(--r);
  box-shadow: var(--sh-1);
  overflow: hidden;
  transition: box-shadow .2s;
}
details[open] { box-shadow: var(--sh-2); }

summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: relative;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--c-vulkan);
  transition: transform .2s;
  flex-shrink: 0;
}
details[open] summary::after { transform: rotate(45deg); }

details p {
  padding: 0 1.5rem 1.25rem;
  color: var(--c-ink-soft);
  line-height: 1.6;
}
details p a { color: var(--c-vulkan); font-weight: 700; }

/* ============================================================
   GEBURTSTAG
   ============================================================ */

.geburtstag {
  padding: 4rem 0 7rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(255, 107, 26, .18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 20% 20%, rgba(230, 71, 140, .12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 80% 30%, rgba(245, 181, 0, .14) 0%, transparent 55%),
    linear-gradient(180deg, var(--c-paper) 0%, #FFEFE0 100%);
}
/* Konfetti-Pattern */
.geburtstag::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><g fill-opacity='0.06'><circle cx='20' cy='30' r='3' fill='%23FF6B1A'/><rect x='60' y='15' width='4' height='10' fill='%23E6478C' transform='rotate(35 62 20)'/><circle cx='130' cy='40' r='2.5' fill='%231FA8B8'/><rect x='170' y='25' width='5' height='5' fill='%23F5B500' transform='rotate(20 172 27)'/><circle cx='40' cy='100' r='2.5' fill='%237B3DA6'/><rect x='110' y='110' width='4' height='8' fill='%23FF6B1A' transform='rotate(60 112 114)'/><circle cx='170' cy='130' r='3' fill='%23E6478C'/><rect x='25' y='160' width='5' height='5' fill='%231FA8B8' transform='rotate(45 27 162)'/><circle cx='90' cy='170' r='2.5' fill='%23F5B500'/><rect x='150' y='175' width='4' height='8' fill='%237B3DA6' transform='rotate(15 152 179)'/></g></svg>");
  background-size: 200px;
  pointer-events: none;
  opacity: .8;
}
.geburtstag > .container { position: relative; z-index: 1; }

.geburtstag__card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: linear-gradient(135deg, var(--c-vulkan) 0%, #FF8B3F 100%);
  border-radius: var(--r-lg);
  overflow: hidden;
  color: white;
  box-shadow: var(--sh-2);
}
@media (max-width: 900px) {
  .geburtstag__card { grid-template-columns: 1fr; }
}

.geburtstag__copy { padding: 3rem; }
@media (max-width: 600px) { .geburtstag__copy { padding: 2rem; } }

.geburtstag__copy .eyebrow {
  color: white;
  background: rgba(255,255,255,.2);
  padding: .25rem .75rem;
  border-radius: var(--r-pill);
  transform: none;
  font-size: .85rem;
  font-family: var(--f-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.geburtstag__copy h2 { color: white; margin-top: .75rem; margin-bottom: 1rem; }
.geburtstag__copy p { font-size: 1.05rem; opacity: .95; }
.geburtstag__copy .btn { background: white; color: var(--c-vulkan); box-shadow: none; }
.geburtstag__copy .btn:hover { background: var(--c-cream); color: var(--c-vulkan-dk); }

.geburtstag__list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: .5rem;
  margin-top: 1.5rem;
  font-weight: 600;
}

.geburtstag__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
}
@media (max-width: 900px) {
  .geburtstag__media img { aspect-ratio: 16/9; }
}

/* ============================================================
   NEWSLETTER
   ============================================================ */

.newsletter {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(31, 168, 184, .12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(255, 181, 0, .1) 0%, transparent 60%),
    var(--c-cream);
}

.newsletter__card {
  background: var(--c-jungle-dk);
  color: white;
  border-radius: var(--r-lg);
  padding: 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-2);
}
@media (max-width: 600px) { .newsletter__card { padding: 2.25rem; } }

.newsletter__card::before,
.newsletter__card::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.newsletter__card::before {
  width: 250px; height: 250px;
  background: var(--c-vulkan);
  top: -100px; left: -80px;
  opacity: .5;
}
.newsletter__card::after {
  width: 250px; height: 250px;
  background: var(--c-leo);
  bottom: -100px; right: -80px;
  opacity: .35;
}

.newsletter__copy {
  position: relative;
  z-index: 2;
}
.newsletter__copy .eyebrow { color: var(--c-gold); }
.newsletter__copy h2 { color: white; margin-bottom: .75rem; }
.newsletter__copy p { color: rgba(255,255,255,.8); max-width: 50ch; margin: 0 auto; }

.newsletter__form {
  position: relative;
  z-index: 2;
  display: flex;
  gap: .75rem;
  max-width: 540px;
  margin: 2rem auto 0;
  flex-wrap: wrap;
}
.newsletter__form[hidden] { display: none; }
.newsletter__success[hidden], .newsletter__error[hidden] { display: none; }
.newsletter__form input {
  flex: 1 1 180px;
  padding: 1rem 1.25rem;
  border: 0;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 1rem;
}
.newsletter__form input:focus {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(255, 107, 26, .3);
}

.newsletter__legal {
  position: relative; z-index: 2;
  margin-top: 1rem;
  font-size: .8rem;
  color: rgba(255,255,255,.6);
}
.newsletter__legal a { color: var(--c-gold); }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: #0a1813;
  color: rgba(255,255,255,.75);
  padding: 4rem 0 0;
  font-size: .95rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 500px) {
  .footer__grid { grid-template-columns: 1fr; }
}

.footer__brand img { height: 36px; width: auto; margin-bottom: 1rem; }
.footer__brand p { line-height: 1.6; }

.footer__col h4 {
  font-family: var(--f-body);
  font-weight: 800;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 1rem;
  color: var(--c-gold);
}
.footer__col p { line-height: 1.7; margin-bottom: .5rem; }
.footer__col ul { list-style: none; padding: 0; display: grid; gap: .5rem; }
.footer__col a { color: rgba(255,255,255,.75); text-decoration: none; transition: color .2s; }
.footer__col a:hover { color: var(--c-vulkan); }

.footer__bar { padding: 1.25rem 0; }
.footer__bar .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.footer__bar ul {
  display: flex; gap: 1.5rem; list-style: none; padding: 0;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */

.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000;
  padding: 2rem;
  cursor: zoom-out;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: 100%; max-height: 100%;
  border-radius: var(--r);
  box-shadow: 0 20px 80px rgba(0,0,0,.5);
}
.lightbox__close {
  position: absolute; top: 1rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1);
  color: white;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */

.cookie-banner {
  position: fixed;
  bottom: 1rem; left: 1rem; right: 1rem;
  z-index: 9999;
  max-width: 760px;
  margin: 0 auto;
  background: var(--c-jungle-dk);
  color: white;
  border-radius: var(--r-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.08);
  padding: 1.25rem 1.5rem;
  animation: cookie-slide-up .45s cubic-bezier(.34, 1.56, .64, 1);
}
.cookie-banner[hidden] { display: none; }

@keyframes cookie-slide-up {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.cookie-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem 1.75rem;
  align-items: center;
}
@media (max-width: 700px) {
  .cookie-banner__inner { grid-template-columns: 1fr; }
}

.cookie-banner__copy h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: .35rem;
  line-height: 1;
}
.cookie-banner__copy p {
  font-size: .9rem;
  line-height: 1.5;
  color: rgba(255,255,255,.85);
  margin: 0;
}
.cookie-banner__copy a {
  color: var(--c-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}

.cookie-banner__actions {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
}
@media (max-width: 700px) {
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; min-width: 0; }
}

.btn--sm {
  padding: .65rem 1.1rem;
  font-size: .95rem;
}

/* ============================================================
   TOUR — Stadt-Filter Badge (aus URL #stadt-xxx oder ?stadt=xxx)
   ============================================================ */

.tour__city-badge {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin: 1.25rem 0 1.75rem;
  padding: .5rem .65rem .5rem 1.1rem;
  background: var(--c-vulkan);
  color: white;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(255, 107, 26, .25);
  animation: badge-pop .35s cubic-bezier(.34, 1.56, .64, 1);
}
@keyframes badge-pop {
  from { transform: scale(.85); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.tour__city-badge-label {
  opacity: .9;
  font-weight: 600;
  letter-spacing: .02em;
}

.tour__city-badge strong {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
}

.tour__city-badge-clear {
  border: 0;
  background: rgba(255, 255, 255, .2);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: background .15s ease;
  padding: 0;
}
.tour__city-badge-clear:hover {
  background: rgba(255, 255, 255, .35);
}

/* ============================================================
   STIMMEN / BEWERTUNGEN — Links zu echten Plattformen
   ============================================================ */

.reviews {
  padding: 5rem 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 0%, rgba(245, 181, 0, .35) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 100%, rgba(168, 230, 207, .25) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 90% 100%, rgba(255, 216, 168, .35) 0%, transparent 55%),
    linear-gradient(180deg, #FFF2D4 0%, #FFEAB8 100%);
  position: relative;
  overflow: hidden;
}

.reviews__head {
  text-align: center;
  margin-bottom: 3rem;
}

.reviews__head h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin-top: .5rem;
}

.reviews__lead {
  max-width: 620px;
  margin: 1rem auto 0;
  color: var(--c-ink-soft);
  font-size: 1.05rem;
  line-height: 1.55;
}

.reviews__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.reviews__links--prominent {
  gap: 1.5rem;
}

.reviews__link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 2rem 1.75rem;
  background: white;
  border-radius: var(--r-lg);
  text-decoration: none;
  box-shadow: var(--sh-1);
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease;
  color: var(--c-ink);
  min-width: 220px;
  flex: 0 1 240px;
  gap: .65rem;
}
.reviews__link:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-2);
  color: var(--c-vulkan);
}

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

.reviews__link strong {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
}
.reviews__link span {
  font-size: .9rem;
  color: var(--c-ink-soft);
  text-transform: none;
  text-align: center;
  line-height: 1.4;
}

/* Cross-link von der Homepage-Tour zu den SEO-Stadt-Pages */
.tour__city-page {
  display: inline-block;
  font-size: .85rem;
  color: var(--c-vulkan);
  font-weight: 700;
  margin: .4rem 0 0 1.25rem;
  text-decoration: none;
  border-bottom: 1px dotted rgba(255, 107, 26, .35);
  padding-bottom: 1px;
  transition: color .15s ease, border-color .15s ease;
}
.tour__city-page:hover {
  color: var(--c-vulkan-dk);
  border-bottom-color: var(--c-vulkan-dk);
}

.tour__list li {
  display: flex;
  flex-direction: column;
}

/* ============================================================
   NEWSLETTER — Success & Error States
   ============================================================ */

.newsletter__success {
  background: linear-gradient(135deg, #1F8E3D 0%, #2EB350 100%);
  color: white;
  padding: 2rem 1.75rem;
  border-radius: var(--r-lg);
  text-align: center;
  margin-top: 1rem;
  box-shadow: 0 10px 30px rgba(31, 142, 61, .25);
  animation: nl-success-pop .4s cubic-bezier(.34, 1.56, .64, 1);
}
@keyframes nl-success-pop {
  from { transform: scale(.9); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.newsletter__success-icon {
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 3rem;
  line-height: 1;
  margin: 0 0 .5rem;
}

.newsletter__success h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  margin: 0 0 .5rem;
}

.newsletter__success p {
  font-size: 1rem;
  color: rgba(255, 255, 255, .94);
  margin: 0;
  line-height: 1.55;
}

.newsletter__error {
  background: rgba(215, 38, 61, .12);
  border: 2px solid var(--c-lava, #D7263D);
  color: var(--c-ink);
  padding: 1.25rem 1.5rem;
  border-radius: var(--r);
  margin-top: 1rem;
  font-size: .95rem;
  line-height: 1.5;
}
.newsletter__error p { margin: 0; }
.newsletter__error a { color: var(--c-lava, #D7263D); font-weight: 700; }

#newsletter-submit:disabled {
  opacity: .7;
  cursor: wait;
}

.newsletter__btn-loading::before {
  content: '⏳ ';
}

/* ============================================================
   NEWSLETTER — Klaviyo Embed Container
   Klaviyo bringt eigene Form-Styles mit; hier nur Zentrierung
   ============================================================ */
.newsletter__klaviyo {
  max-width: 540px;
  margin: 2rem auto 0;
  position: relative;
  z-index: 2;
}
/* Falls Klaviyo-Form noch lädt: kein Layout-Sprung */
.newsletter__klaviyo:empty::before,
.newsletter__klaviyo .klaviyo-form:empty {
  display: block;
  min-height: 60px;
}

/* Newsletter — Consent-Hinweis (wenn Marketing-Cookies noch nicht akzeptiert) */
.newsletter__consent {
  max-width: 540px;
  margin: 2rem auto 0;
  text-align: center;
  position: relative;
  z-index: 2;
}
.newsletter__consent p {
  color: rgba(255, 255, 255, .9);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 0 1.25rem;
}
.newsletter__klaviyo[hidden],
.newsletter__consent[hidden] { display: none; }

/* ============================================================
   KLAVIYO FORM — Leerflächen reduzieren
   Klaviyo rendert mit großzügigem internem Padding. Wir straffen
   den umgebenden Container; das interne Padding am besten im
   Klaviyo-Editor reduzieren (Form-Block → Styles → Padding).
   ============================================================ */
.newsletter__klaviyo {
  margin-top: 1rem;   /* war 2rem */
}
/* Versuch, das Klaviyo-Wrapper-Padding zu kappen (greift je nach Klaviyo-Markup) */
.newsletter__klaviyo .klaviyo-form {
  margin: 0 !important;
}
