/* =====================================================
   MILWAUKEE BIG RED TOUR 2026 – MEMMINGEN
   Main Stylesheet
   ===================================================== */

/* 0. CUSTOM PROPERTIES
   ===================================================== */
:root {
  /* Colors */
  --red:        #C8102E;
  --red-light:  #E8182F;
  --red-dark:   #9B0C22;
  --red-glow:   rgba(200, 16, 46, 0.35);
  --black:      #080808;
  --bg:         #0D0D0D;
  --bg-alt:     #111111;
  --card:       #161616;
  --card-hover: #1C1C1C;
  --border:     #252525;
  --border-red: rgba(200, 16, 46, 0.3);
  --white:      #F5F5F5;
  --muted:      #888888;
  --muted-light:#AAAAAA;
  --green:      #22C55E;

  /* Typography */
  --font-head:  'Bebas Neue', 'Barlow Condensed', Impact, sans-serif;
  --font-sub:   'Barlow Condensed', sans-serif;
  --font-body:  'Inter', -apple-system, sans-serif;

  /* Spacing */
  --gap:        clamp(3rem, 8vw, 7rem);
  --container:  1280px;

  /* Easing */
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  background: var(--black);
  overflow-x: hidden;
  cursor: none;
}

@media (max-width: 768px) { body { cursor: auto; } }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }
@media (max-width: 768px) { button { cursor: pointer; } }
ul { list-style: none; }

/* 2. UTILITIES
   ===================================================== */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.red { color: var(--red); font-style: normal; }
.link { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }

.section {
  padding-block: var(--gap);
}

.section__head {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.section__h2 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: 0.01em;
  margin-block: 0.4rem 1rem;
}

.section__lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--muted-light);
  max-width: 600px;
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.eyebrow--light { color: rgba(255,255,255,0.5); }

/* Tags / Pills */
.tag {
  display: inline-block;
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: rgba(255,255,255,0.04);
  color: var(--muted-light);
  transition: border-color 0.2s;
}

.tag--red {
  border-color: var(--border-red);
  color: var(--red);
  background: rgba(200,16,46,0.08);
}

/* Badge */
.badge {
  display: inline-block;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  background: var(--red);
  color: white;
  border-radius: 2px;
}

.badge--pulse {
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,16,46,0.5); }
  50%       { box-shadow: 0 0 0 8px rgba(200,16,46,0); }
}

/* 3. SCROLL PROGRESS BAR
   ===================================================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* 4. CUSTOM CURSOR
   ===================================================== */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.2s;
}

.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(200,16,46,0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease), width 0.2s var(--ease),
              height 0.2s var(--ease), border-color 0.2s;
}

.cursor.is-hovered { transform: translate(-50%,-50%) scale(2.5); background: var(--red-light); }
.cursor-ring.is-hovered { width: 54px; height: 54px; border-color: var(--red); }
.cursor.is-clicking { transform: translate(-50%,-50%) scale(0.6); }

@media (max-width: 768px) { .cursor, .cursor-ring { display: none; } }

/* 5. HEADER
   ===================================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 1rem 0;
  transition: background 0.4s var(--ease), padding 0.3s, box-shadow 0.4s;
}

.header.is-scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.65rem 0;
  box-shadow: 0 1px 0 var(--border);
}

.header__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header__logos {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header__logo--mke {
  height: 26px;
  width: auto;
  object-fit: contain;
  /* JPG hat weißen Hintergrund → als zertifiziertes Partner-Badge darstellen */
  background: white;
  padding: 3px 8px;
  border-radius: 3px;
}

.header__divider {
  width: 1px;
  height: 28px;
  background: var(--border);
}

.header__logo--poe {
  height: 26px;
  width: auto;
  object-fit: contain;
  /* Pöppel-Logo in Milwaukee-Rot #C8102E */
  filter: brightness(0) saturate(100%) invert(15%) sepia(100%) saturate(4500%) hue-rotate(338deg) brightness(88%) contrast(100%);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header__link {
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-light);
  transition: color 0.2s;
}

.header__link:hover { color: var(--white); }

@media (max-width: 900px) { .header__nav { display: none; } }

/* Header right-side actions cluster */
.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Header Mute Button */
.header__mute-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  cursor: pointer;
  flex-shrink: 0;
}

.header__mute-btn:hover {
  border-color: var(--red);
  color: var(--white);
}

.header__mute-btn.is-playing {
  border-color: var(--red);
  color: var(--red);
  background: rgba(200, 16, 46, 0.1);
}

.header__mute-btn .mute-icon--off { display: none; }
.header__mute-btn.is-muted .mute-icon--on  { display: none; }
.header__mute-btn.is-muted .mute-icon--off { display: block; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) { .burger { display: flex; } }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 85vw);
  background: var(--bg-alt);
  border-left: 1px solid var(--border);
  z-index: 950;
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}

.mobile-nav.is-open { transform: translateX(0); }

.mobile-nav__close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-size: 1.25rem;
  color: var(--muted);
  transition: color 0.2s;
}

.mobile-nav__close:hover { color: var(--white); }

.mobile-nav__link {
  display: block;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-nav__link:hover { color: var(--red); }

.mobile-nav__link--cta {
  margin-top: 1rem;
  color: var(--red);
  border-bottom: none;
  font-size: 1.1rem;
  border: 1px solid var(--red);
  padding: 0.75rem 1.25rem;
  border-radius: 3px;
  text-align: center;
}

.mobile-nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 940;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.mobile-nav__overlay.is-open { opacity: 1; pointer-events: all; }

/* 6. BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.8rem 1.6rem;
  border-radius: 3px;
  border: 1.5px solid transparent;
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn--primary {
  background: var(--red);
  color: white;
  border-color: var(--red);
}

.btn--primary:hover {
  background: var(--red-light);
  border-color: var(--red-light);
  box-shadow: 0 0 30px var(--red-glow);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}

.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--border);
}

.btn--outline:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn--nav {
  background: var(--red);
  color: white;
  border-color: var(--red);
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem;
}

.btn--nav:hover {
  background: var(--red-light);
  box-shadow: 0 0 20px var(--red-glow);
}

.btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.8rem; }
.btn--full { width: 100%; white-space: normal; text-align: center; }

/* Magnetic button — JS handles the transform */
.mag-btn { transition: transform 0.4s var(--ease), background 0.25s, box-shadow 0.25s, border-color 0.25s; }

/* 7. HERO
   ===================================================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
}

.hero__parallax {
  position: absolute;
  inset: -10%;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 35%;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,8,0.85) 40%, rgba(8,8,8,0.2) 100%),
    linear-gradient(0deg, rgba(8,8,8,0.7) 0%, transparent 60%);
}

/* Film grain / noise overlay */
.hero__noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
  animation: noise-anim 0.5s steps(1) infinite;
}

@keyframes noise-anim {
  0%   { background-position: 0 0; }
  20%  { background-position: -50px -30px; }
  40%  { background-position: 30px 50px; }
  60%  { background-position: -80px 20px; }
  80%  { background-position: 60px -40px; }
  100% { background-position: 0 0; }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  max-width: var(--container);
  width: 100%;
  margin-inline: auto;
  padding-top: 6rem;
  padding-bottom: clamp(5rem, 10vw, 8rem);
}

.hero__eyebrow { margin-bottom: 1.25rem; }

/* Headline */
.hero__h1 {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.hero__line {
  font-family: var(--font-head);
  font-size: clamp(5rem, 15vw, 14rem);
  line-height: 0.88;
  letter-spacing: -0.01em;
  color: var(--white);
  display: block;
}

.hero__line--accent { color: var(--red); }

.hero__line--sub {
  font-family: var(--font-sub);
  font-weight: 400;
  font-size: clamp(1.25rem, 3vw, 2rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  flex-wrap: nowrap;
}

/* Pöppel-Logo inline im Hero */
.hero__inline-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  overflow: visible;
}

.hero__inline-logo img {
  height: clamp(4.5rem, 11vw, 9rem);
  width: auto;
  display: block;
  /* Pöppel-Logo in Rot, passend zu Milwaukee */
  filter: brightness(0) saturate(100%) invert(15%) sepia(100%) saturate(4500%) hue-rotate(338deg) brightness(88%) contrast(100%);
}

/* Pöppel-Logo rechts – auf der Höhe von BIG RED */
/* Fallback: JS (alignLogoToH1) überschreibt top nach dem Paint präzise */
.hero__logo-right {
  position: absolute;
  right: clamp(2rem, 5vw, 6rem);
  z-index: 3;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: auto;
  /* top + height werden per JS gesetzt */
}

.hero__logo-wrap {
  position: relative;
}

.hero__logo-img {
  width: auto;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: right center;
}

/* Pöppel: rot */
.hero__logo-wrap--poeppel .hero__logo-img {
  filter: brightness(0) saturate(100%) invert(15%) sepia(100%) saturate(4500%) hue-rotate(338deg) brightness(88%) contrast(100%);
}

/* Milwaukee: weiß */
.hero__logo-wrap--milwaukee .hero__logo-img {
  filter: brightness(0) invert(1);
}

/* "Allgäu" Schreibschrift nach TOUR */
.hero__allgaeu {
  font-family: 'Dancing Script', cursive;
  font-size: 0.37em;
  font-style: normal;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  display: inline-block;
  transform: rotate(-8deg) translateY(-0.1em);
  transform-origin: left bottom;
  margin-left: 0.18em;
  vertical-align: middle;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 24px rgba(200,16,46,0.45), 0 0 8px rgba(200,16,46,0.2);
}

@media (max-width: 768px) {
  .hero__logo-right { display: none; }
  .hero__allgaeu { font-size: 0.32em; }
}

/* Glitch-Duplikate */
.hero__logo-glitch {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}

.hero__logo-glitch--a {
  filter: brightness(0) saturate(100%) invert(15%) sepia(100%) saturate(4500%) hue-rotate(338deg) brightness(88%) contrast(100%);
  animation: logo-glitch-a 4s ease-in-out infinite;
}

.hero__logo-glitch--b {
  filter: brightness(0) saturate(100%) invert(35%) sepia(100%) saturate(6000%) hue-rotate(310deg) brightness(120%) contrast(120%);
  animation: logo-glitch-b 4s ease-in-out infinite;
}

@keyframes logo-glitch-a {
  0%, 84%, 100% { opacity: 0; transform: translateX(0); clip-path: inset(50% 0 50% 0); }
  85%           { opacity: 0.9; transform: translateX(-5px); clip-path: inset(8% 0 58% 0); }
  87%           { opacity: 0.9; transform: translateX(5px);  clip-path: inset(62% 0 8% 0); }
  89%           { opacity: 0.9; transform: translateX(-3px); clip-path: inset(28% 0 38% 0); }
  91%           { opacity: 0; }
}

@keyframes logo-glitch-b {
  0%, 86%, 100% { opacity: 0; transform: translateX(0); clip-path: inset(50% 0 50% 0); }
  87%           { opacity: 0.7; transform: translateX(6px);  clip-path: inset(42% 0 18% 0); }
  89%           { opacity: 0.7; transform: translateX(-3px); clip-path: inset(5% 0 72% 0); }
  92%           { opacity: 0; }
}

/* Glitch effect */
.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  opacity: 0;
}

.glitch::before {
  color: var(--red);
  animation: glitch-before 3.5s ease-in-out infinite;
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%);
}

.glitch::after {
  color: #ff6060;
  animation: glitch-after 3.5s ease-in-out infinite;
  clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
}

/* Glitch feuert 3× pro Zyklus für höhere Frequenz */
@keyframes glitch-before {
  0%, 20%, 21%, 50%, 51%, 84%, 100% { opacity: 0; transform: none; }
  20.5% { opacity: 0.9; transform: translateX(-5px) skewX(-2deg); }
  51%   { opacity: 0.6; transform: translateX(3px); }
  85%   { opacity: 0.9; transform: translateX(-4px); }
  87%   { opacity: 0.5; transform: translateX(2px); }
  89%   { opacity: 0; }
}

@keyframes glitch-after {
  0%, 22%, 23%, 52%, 53%, 86%, 100% { opacity: 0; transform: none; }
  22.5% { opacity: 0.85; transform: translateX(6px) skewX(3deg); }
  52.5% { opacity: 0.5; transform: translateX(-4px); }
  87%   { opacity: 0.85; transform: translateX(5px); }
  89%   { opacity: 0.3; transform: translateX(-2px); }
  91%   { opacity: 0; }
}

.hero__desc {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Countdown */
.hero__countdown {
  position: absolute;
  bottom: clamp(3rem, 6vw, 5rem);
  right: clamp(1.25rem, 5vw, 3rem);
  z-index: 2;
  text-align: right;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.countdown__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown__num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
  color: var(--white);
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  min-width: 2.5ch;
  text-align: center;
  transition: border-color 0.3s;
}

.countdown__num.tick {
  border-color: var(--red);
  color: var(--red);
}

.countdown__label {
  font-family: var(--font-sub);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
}

.countdown__sep {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--red);
  line-height: 1;
  padding-bottom: 1.2rem;
}

.countdown__label-main {
  font-family: var(--font-sub);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.5rem;
  text-align: center;
}

/* Scroll hint */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: clamp(1.25rem, 5vw, 3rem);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero__scroll span {
  font-family: var(--font-sub);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}

/* 8. TICKER
   ===================================================== */
.ticker {
  background: var(--red);
  overflow: hidden;
  padding-block: 0.75rem;
  border-top: 1px solid var(--red-dark);
  border-bottom: 1px solid var(--red-dark);
}

.ticker__track {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}

.ticker__track:hover { animation-play-state: paused; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  white-space: nowrap;
}

.ticker__icon {
  width: 14px; height: 14px;
  flex-shrink: 0;
}

/* 9. EVENT STRIP
   ===================================================== */
.event-strip {
  padding-block: clamp(2rem, 5vw, 3.5rem);
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.event-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 1.5rem 3rem;
  justify-content: center;
}

@media (max-width: 860px) {
  .event-strip__grid {
    grid-template-columns: repeat(2, auto);
  }
}

@media (max-width: 480px) {
  .event-strip__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1.5rem;
  }
}

.event-strip__divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

@media (max-width: 600px) { .event-strip__divider { display: none; } }

.event-strip__item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.event-strip__icon {
  width: 40px; height: 40px;
  background: rgba(200,16,46,0.12);
  border: 1px solid var(--border-red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.event-strip__icon svg {
  width: 18px; height: 18px;
  color: var(--red);
}

.event-strip__label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--font-sub);
  font-weight: 600;
}

.event-strip__val {
  display: block;
  font-family: var(--font-sub);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.event-strip__val--green { color: var(--green); }

.event-strip__sub {
  display: block;
  font-family: var(--font-sub);
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 0.15rem;
}

/* 10. ERLEBNIS
   ===================================================== */
.erlebnis { background: var(--bg); }

/* Horizontal scroll track (replaces erlebnis__grid) */
.erlebnis.section { padding-bottom: 0; }

.erlebnis__track {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  padding-left: max(1.5rem, calc((100vw - 1380px) / 2 + 1.5rem));
  padding-right: 2rem;
  padding-bottom: var(--section-pad);
  will-change: transform;
}

@media (max-width: 768px) {
  .erlebnis__track {
    flex-direction: column;
    will-change: auto;
  }
}

.erlebnis__card {
  position: relative;
  background: var(--card);
  padding: clamp(2rem, 4vw, 3rem);
  overflow: hidden;
  transition: background 0.3s;
  flex: 0 0 clamp(260px, 26vw, 320px);
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .erlebnis__card { flex: 0 0 auto; }
  /* CTA-Karte: im Column-Mode wird flex-basis zur Höhe → auto setzen */
  .erlebnis__card--cta { flex: 0 0 auto; min-height: 260px; }
}

.erlebnis__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--border);
  transition: background 0.3s;
}

.erlebnis__card:hover::before { background: var(--red); }
.erlebnis__card:hover { background: var(--card-hover); }

.erlebnis__card--hero::before { background: var(--red); }
.erlebnis__card--hero { background: #1a0409; }

.erlebnis__num {
  font-family: var(--font-head);
  font-size: 6rem;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 1rem; right: 1.5rem;
  user-select: none;
  pointer-events: none;
}

.erlebnis__icon {
  width: 52px; height: 52px;
  border: 1px solid var(--border-red);
  background: rgba(200,16,46,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  transition: background 0.3s, border-color 0.3s;
}

.erlebnis__card:hover .erlebnis__icon {
  background: rgba(200,16,46,0.2);
  border-color: var(--red);
}

.erlebnis__icon svg { width: 26px; height: 26px; color: var(--red); }

.erlebnis__card h3 {
  font-family: var(--font-sub);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  position: relative;
}

.erlebnis__card p {
  color: var(--muted-light);
  font-size: 0.95rem;
  line-height: 1.7;
  position: relative;
}

.erlebnis__card .badge {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
}

.erlebnis__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
  padding-top: 1.25rem;
  font-size: 0.8rem;
  font-family: var(--font-sub);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  transition: color 0.2s;
}
.erlebnis__cta:hover { color: var(--white); }

.erlebnis__card--neu {
  background: linear-gradient(155deg, #1c0007 0%, #230009 60%, #1c0007 100%);
  border-top: 1.5px solid rgba(200,16,46,0.4);
}
.erlebnis__card--neu::before { background: var(--red) !important; }
.erlebnis__card--neu .erlebnis__num { color: rgba(200,16,46,0.08); }

.erlebnis__card--cta {
  background: var(--red);
  flex: 0 0 clamp(220px, 20vw, 260px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.erlebnis__card--cta::before { display: none; }
.erlebnis__card--cta:hover { background: #a80e26; }

.erlebnis__cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}
.erlebnis__card--cta h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin: 0;
}
.erlebnis__card--cta p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  line-height: 1.5;
}
.btn--ghost-white {
  border: 1.5px solid rgba(255,255,255,0.7);
  color: var(--white);
  background: transparent;
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  display: inline-block;
  margin-top: 0.5rem;
}
.btn--ghost-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.erlebnis__card--cta .erlebnis__icon {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
}
.erlebnis__card--cta .erlebnis__icon svg { color: var(--white); }

/* 3D Card hover */
.card-3d {
  transform-style: preserve-3d;
  transform: perspective(800px) rotateX(0) rotateY(0);
  transition: transform 0.4s var(--ease);
}

/* 11. ZIELGRUPPEN / TABS
   ===================================================== */
.zielgruppen { background: var(--black); }

.tabs { position: relative; }

.tabs__nav {
  display: flex;
  gap: 3px;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 2px solid var(--red);
  margin-bottom: 0;
  padding: 0 0 0 0;
  align-items: flex-end;
}

.tabs__nav::-webkit-scrollbar { display: none; }

.tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.9rem 1rem;
  color: var(--muted);
  white-space: nowrap;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  clip-path: polygon(10px 0%, calc(100% - 10px) 0%, 100% 12px, 100% 100%, 0% 100%, 0% 12px);
  position: relative;
  cursor: pointer;
}

.tab-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.tab-btn:hover { color: var(--white); background: rgba(200,16,46,0.12); border-color: rgba(200,16,46,0.3); }

.tab-btn.active {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
  border-bottom-color: var(--red);
}

.tabs__content {
  border: 1px solid var(--border);
  border-top: none;
}

.tab-panel {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
}

.tab-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.tab-panel__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

@media (max-width: 700px) { .tab-panel__inner { grid-template-columns: 1fr; } }

.tab-panel__text {
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-right: 1px solid var(--border);
}

@media (max-width: 700px) { .tab-panel__text { border-right: none; border-bottom: 1px solid var(--border); } }

/* Scroll-Hinweis unter Zielgruppen-Überschrift */
.tabs__hint {
  display: none;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  margin: 0.5rem 0 0 0;
  gap: 0.4rem;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sub);
  letter-spacing: 0.04em;
}
.tabs__hint svg { color: var(--red); flex-shrink: 0; }
@media (max-width: 700px) { .tabs__hint { display: flex; } }

/* Fade-Indikator rechts an der Tab-Leiste */
@media (max-width: 700px) {
  .tabs::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 56px;
    height: 50px;
    background: linear-gradient(to right, transparent, var(--black) 85%);
    pointer-events: none;
    z-index: 2;
  }
}

/* Tab-Buttons auf kleinen Screens: kein flex-stretch, damit Scroll greift */
@media (max-width: 480px) {
  .tab-btn {
    flex: 0 0 auto;
    min-width: 76px;
    font-size: 0.78rem;
    padding: 0.8rem 0.75rem;
  }
  .tab-btn svg { display: none; }
}

.tab-panel__text h3 {
  font-family: var(--font-sub);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.tab-panel__hook {
  font-style: italic;
  color: var(--red);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.check-list { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }

.check-list li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--muted-light);
  line-height: 1.5;
}

.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23C8102E' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  margin-top: 1px;
}

.tab-panel__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.tab-panel__visual {
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background: linear-gradient(145deg, rgba(200,16,46,0.22) 0%, rgba(150,8,25,0.18) 100%);
  border-left: 2px solid rgba(200,16,46,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-panel__spec-card {
  width: 100%;
  max-width: 360px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.spec-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}

.spec-line:last-child { border-bottom: none; }

.spec-line span {
  font-size: 0.75rem;
  font-family: var(--font-sub);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.spec-line strong {
  font-size: 0.85rem;
  color: var(--white);
  text-align: right;
}

/* 12. HIGHLIGHT (Feuerwehr)
   ===================================================== */
.highlight {
  position: relative;
  padding-block: var(--gap);
  overflow: hidden;
  background: #0a0002;
  border-top: 1px solid rgba(200,16,46,0.2);
  border-bottom: 1px solid rgba(200,16,46,0.2);
}

.highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(200,16,46,0.18) 0%, transparent 65%);
  pointer-events: none;
}

/* Grid lines decoration */
.highlight::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,16,46,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,16,46,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  pointer-events: none;
}

.highlight__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.highlight__h2 {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.9;
  margin-block: 1rem 1.5rem;
}

.highlight__desc {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.highlight__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(200,16,46,0.25);
  border-radius: 4px;
}

.highlight__spec { display: flex; flex-direction: column; gap: 0.25rem; }

.highlight__spec-val {
  font-family: var(--font-head);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--red);
}

/* Feuerwehrmann-Bild – rechts, flush mit Section-Unterkante */
.highlight__firefighter {
  position: absolute;
  right: clamp(0px, 3vw, 60px);
  bottom: 0;
  height: 100%;
  width: auto;
  max-width: 42%;
  object-fit: contain;
  object-position: bottom center;
  pointer-events: none;
  z-index: 2;
  /* Rotes Leuchten hinter der Figur */
  filter:
    drop-shadow(-20px 0 50px rgba(200, 16, 46, 0.8))
    drop-shadow(-40px 0 100px rgba(200, 16, 46, 0.4))
    drop-shadow(0 -10px 30px rgba(200, 16, 46, 0.3));
}

@media (max-width: 900px) {
  .highlight__firefighter {
    max-width: 38%;
    opacity: 0.6;
  }
}

@media (max-width: 600px) {
  .highlight__firefighter {
    max-width: 52%;
    opacity: 0.45;
    right: 0;
  }
}

.highlight__spec-key {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* 13. DEALS
   ===================================================== */
.deals { background: var(--bg-alt); }

.deals__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
  margin-bottom: 2rem;
}

@media (max-width: 800px) { .deals__grid { grid-template-columns: 1fr; } }

.deals__card {
  position: relative;
  background: var(--card);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.3s;
}

.deals__card:hover { background: var(--card-hover); }

.deals__card--featured {
  background: #150004;
  border-top: 3px solid var(--red);
}

.deals__card--featured:hover { background: #1c0005; }

.badge--top {
  position: absolute;
  top: -1px; right: 1.5rem;
  border-radius: 0 0 4px 4px;
}

.deals__tier-label {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.deals__amount {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.9;
  color: var(--white);
}

.deals__card--featured .deals__amount { color: var(--red); }

.deals__icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.deals__icon svg { width: 22px; height: 22px; color: var(--red); }

.deals__name {
  font-family: var(--font-sub);
  font-size: 1.2rem;
  font-weight: 700;
}

.deals__desc {
  color: var(--muted-light);
  font-size: 0.9rem;
  line-height: 1.6;
  flex-grow: 1;
}

.deals__cta { margin-top: 0.5rem; }

/* ── Deal-Produkt-Bilder ─────────────────────────────── */
.deals__img-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  min-height: 220px;
}

.deals__img {
  height: clamp(200px, 24vw, 260px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  animation: deal-float 3.8s ease-in-out infinite;
  transition: transform 0.4s var(--ease), filter 0.3s;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.6));
  will-change: transform;
}

.deals__card--featured .deals__img {
  filter: drop-shadow(0 10px 28px rgba(200,16,46,0.4));
  animation-duration: 3s;
}

.deals__card:hover .deals__img {
  transform: scale(1.1) rotate(-3deg);
  filter: drop-shadow(0 16px 36px rgba(200,16,46,0.55));
}

@keyframes deal-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

/* Stagger: kein synchrones Floating */
.deals__card:nth-child(1) .deals__img { animation-delay: 0s; }
.deals__card:nth-child(2) .deals__img { animation-delay: -1.3s; }
.deals__card:nth-child(3) .deals__img { animation-delay: -2.6s; }

.deals__disclaimer {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
}

/* ── DEALS DIVIDER (Mobile only) ────────────────────────────────────────────── */
.deals-divider {
  display: none; /* Desktop: versteckt */
}
@media (max-width: 768px) {
  .deals-divider {
    display: block;
    background: var(--red);
    position: relative;
    overflow: hidden;
    padding: 2.25rem 1.5rem;
    clip-path: polygon(0 12%, 100% 0%, 100% 88%, 0% 100%);
    margin: -1rem 0;
    z-index: 2;
  }
  .deals-divider__inner {
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .deals-divider__label {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 7vw, 2.8rem);
    line-height: 1;
    color: var(--white);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin: 0;
  }
}

/* 14. VIDEO
   ===================================================== */
.video-sec { background: var(--black); }

.video-sec__wrap {
  max-width: 900px;
  margin-inline: auto;
}

.video-sec__frame {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--card);
  border: 1px solid rgba(200,16,46,0.3);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.65),
    0 0 60px rgba(200,16,46,0.2),
    0 0 120px rgba(200,16,46,0.1);
}

.video-sec__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Thumbnail-Fallback (kein Embed) */
.video-thumb {
  display: block;
  position: absolute;
  inset: 0;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}

.video-thumb__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease);
}

.video-thumb:hover .video-thumb__img,
.video-thumb:focus .video-thumb__img {
  transform: scale(1.04);
}

.video-thumb__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.38);
  transition: background 0.3s ease;
}

.video-thumb:hover .video-thumb__overlay,
.video-thumb:focus .video-thumb__overlay {
  background: rgba(0, 0, 0, 0.55);
}

.video-thumb__play {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease), background 0.3s ease;
  box-shadow: 0 4px 24px rgba(200, 16, 46, 0.55);
}

.video-thumb:hover .video-thumb__play,
.video-thumb:focus .video-thumb__play {
  transform: scale(1.12);
  background: var(--red-light);
}

.video-thumb__play svg {
  width: 36px;
  height: 36px;
  fill: var(--white);
  margin-left: 4px; /* play-icon optisch zentrieren */
}

.video-thumb__label {
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.9);
}

/* 15. WETTERFEST
   ===================================================== */
.wetterfest { background: var(--bg-alt); }

.wetterfest__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

@media (max-width: 800px) { .wetterfest__inner { grid-template-columns: 1fr; } }

.wetterfest__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.wetterfest__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--muted-light);
}

.wetterfest__list li svg {
  width: 16px; height: 16px;
  color: var(--red);
  flex-shrink: 0;
}

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

.wetterfest__card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 4px;
  text-align: center;
  transition: border-color 0.3s;
}

.wetterfest__card:hover { border-color: var(--border-red); }
.wetterfest__card:first-child { grid-column: span 2; }

.wetterfest__icon {
  width: 52px; height: 52px;
  background: rgba(200, 16, 46, 0.1);
  border: 1px solid var(--border-red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: background 0.3s, border-color 0.3s;
}

.wetterfest__card:hover .wetterfest__icon {
  background: rgba(200, 16, 46, 0.2);
  border-color: var(--red);
}

.wetterfest__icon svg {
  width: 26px; height: 26px;
  color: var(--red);
}

.wetterfest__card p { font-size: 0.9rem; color: var(--muted-light); line-height: 1.5; }
.wetterfest__card strong { color: var(--white); }

/* 16. ANMELDUNG / FORM
   ===================================================== */
.anmeldung { background: var(--black); }

.anmeldung__wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  position: relative;
}

@media (max-width: 900px) { .anmeldung__wrap { grid-template-columns: 1fr; } }

/* Sidebar */
.anmeldung__sidebar { position: sticky; top: 100px; }

.cap-box {
  background: var(--card);
  border: 1px solid var(--border-red);
  padding: 2rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  text-align: center;
}

.cap-box__badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--red);
  justify-content: center;
  margin: 0 auto 1.25rem;
  animation: pulse-badge 2.5s ease-in-out infinite;
}

.cap-box__num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  line-height: 1;
  color: white;
}

.cap-box__text {
  font-family: var(--font-sub);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-align: center;
}

.cap-box p { font-size: 0.9rem; color: var(--muted-light); line-height: 1.6; }

.anmeldung__benefits {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted-light);
}

.benefit svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }

/* Form */
.anmeldung__form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: clamp(1.25rem, 4vw, 2.75rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
@media (max-width: 600px) {
  .form-group input,
  .form-group select { min-height: 44px; padding: 0.85rem 1rem; font-size: 1rem; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border-radius: 3px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}

.form-group select option { background: #1a1a1a; color: var(--white); }

.form-group input:focus,
.form-group select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.15);
}

.form-group input::placeholder { color: var(--muted); }

.form-group--check { flex-direction: row; }

.check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--muted-light);
  line-height: 1.5;
}

.check-label input[type="checkbox"] { display: none; }

.check-box {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  transition: border-color 0.2s, background 0.2s;
}

.check-label input:checked ~ .check-box {
  background: var(--red);
  border-color: var(--red);
}

.check-label input:checked ~ .check-box::after {
  content: '';
  width: 10px; height: 6px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg) translateY(-1px);
}

.form-note {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
}

/* Form Success */
.form-success {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.form-success.is-visible { display: flex; flex-direction: column; align-items: center; gap: 1rem; }

.form-success__icon {
  width: 64px; height: 64px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: white;
  font-weight: bold;
}

.form-success h3 {
  font-family: var(--font-sub);
  font-size: 1.75rem;
  font-weight: 700;
}

.form-success p { color: var(--muted-light); max-width: 420px; }

/* 17. FAQ
   ===================================================== */
.faq { background: var(--bg-alt); }

.faq__list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:last-child { border-bottom: none; }

.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--white);
  background: var(--card);
  transition: background 0.2s, color 0.2s;
}

.faq__q:hover { background: var(--card-hover); color: var(--red); }
.faq__q[aria-expanded="true"] { color: var(--red); background: rgba(200,16,46,0.08); }

.faq__chevron {
  width: 18px; height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.faq__q[aria-expanded="true"] .faq__chevron { transform: rotate(180deg); }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq__a p {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted-light);
  font-size: 0.95rem;
  line-height: 1.7;
  background: var(--card);
}

/* 18. FOOTER
   ===================================================== */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding-top: clamp(3rem, 6vw, 5rem);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: 3rem;
}

@media (max-width: 700px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__logo {
  display: block;
  height: 32px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  margin-bottom: 0.75rem;
}
.footer__haendler-logo {
  display: block;
  height: auto;
  max-width: 160px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer__h4 {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.footer__col p { font-size: 0.9rem; color: var(--muted-light); line-height: 1.8; }

.footer__col { display: flex; flex-direction: column; }

.footer__link {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}

.footer__link:hover { color: var(--red); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-block: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer__bottom strong { color: var(--muted-light); }

/* 19. SCROLL REVEAL ANIMATIONS
   ===================================================== */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--delay, 0s);
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 20. KEYFRAMES (misc)
   ===================================================== */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* 21. RESPONSIVE TWEAKS
   ===================================================== */
@media (max-width: 600px) {
  /* Hero darf wachsen – verhindert Countdown-Overlap mit Ticker */
  .hero {
    height: auto;
    min-height: 100svh;
  }

  /* Hochformat-Bild füllt den Hero vollflächig aus */
  .hero__img {
    object-fit: cover;
    object-position: center center;
  }

  .hero__countdown {
    position: static;
    margin-top: 3rem;
    margin-bottom: 2.5rem;
    text-align: center;
    align-self: center;
  }

  /* BIG RED / TOUR – ca. 2/3 Bildschirmbreite */
  .hero__h1 .hero__line:not(.hero__line--sub) {
    font-size: clamp(4.5rem, 21vw, 7rem);
    line-height: 0.92;
  }
  /* "kommt nach Memmingen" – etwas größer als zuvor */
  .hero__line--sub {
    font-size: clamp(1rem, 4.5vw, 1.4rem) !important;
    margin-top: 0.6rem;
  }
  /* Zweiter Satz im Desc auf Mobile ausblenden */
  .hero__desc-detail,
  .hero__desc-br { display: none; }
  /* Gesamtinhalt weit genug unter dem Header */
  .hero__content { padding-top: 11rem; padding-bottom: 3rem; }

  .hero__scroll { display: none; }

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

  .highlight__specs { flex-direction: column; gap: 1rem; }
}

@media (max-width: 480px) {
  .hero__h1 .hero__line:not(.hero__line--sub) {
    font-size: clamp(4rem, 20vw, 6rem);
    line-height: 0.92;
  }
  .hero__line--sub {
    font-size: clamp(0.95rem, 4.2vw, 1.3rem) !important;
    margin-top: 0.5rem;
  }
  .hero__content { padding-top: 12rem; }
  .countdown__num { font-size: 1.75rem; }
  .countdown__sep { font-size: 1.5rem; }
}

/* =====================================================
   MUSIC BUTTON
   ===================================================== */
.music-btn {
  position: absolute;
  bottom: 2rem;
  right: clamp(1.25rem, 5vw, 3rem);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(200,16,46,0.4);
  border-radius: 100px;
  padding: 0.45rem 0.9rem 0.45rem 0.7rem;
  color: var(--white);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  cursor: pointer;
}

.music-btn:hover {
  background: rgba(200,16,46,0.25);
  border-color: var(--red);
  transform: scale(1.04);
}

.music-btn.is-playing { border-color: var(--red); background: rgba(200,16,46,0.2); }

/* Animated bar equalizer */
.music-btn__bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
}

.music-btn__bars span {
  display: block;
  width: 3px;
  background: var(--red);
  border-radius: 2px;
  animation: none;
  height: 4px;
  transition: height 0.2s;
}

.music-btn.is-playing .music-btn__bars span:nth-child(1) { animation: bar1 0.8s ease-in-out infinite; }
.music-btn.is-playing .music-btn__bars span:nth-child(2) { animation: bar2 0.6s ease-in-out infinite 0.1s; }
.music-btn.is-playing .music-btn__bars span:nth-child(3) { animation: bar3 1.0s ease-in-out infinite 0.05s; }
.music-btn.is-playing .music-btn__bars span:nth-child(4) { animation: bar4 0.7s ease-in-out infinite 0.2s; }
.music-btn.is-playing .music-btn__bars span:nth-child(5) { animation: bar5 0.9s ease-in-out infinite 0.15s; }

@keyframes bar1 { 0%,100% { height: 4px; } 50% { height: 12px; } }
@keyframes bar2 { 0%,100% { height: 8px; } 50% { height: 4px; }  }
@keyframes bar3 { 0%,100% { height: 6px; } 50% { height: 14px; } }
@keyframes bar4 { 0%,100% { height: 10px;} 50% { height: 5px; }  }
@keyframes bar5 { 0%,100% { height: 4px; } 50% { height: 9px; }  }

.music-btn__label {
  font-family: var(--font-sub);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-light);
  transition: color 0.2s;
}

.music-btn.is-playing .music-btn__label { color: var(--white); }

/* Countdown auf der rechten Seite bleibt oben, Music-Btn unten rechts */
.hero__countdown { bottom: 5rem; }

@media (max-width: 600px) {
  .music-btn { display: none; } /* auf Mobile verstecken */
  .hero__countdown { bottom: 3rem; }
}

/* =====================================================
   EVENT-STRIP – Mobile responsive
   ===================================================== */
@media (max-width: 500px) {
  .event-strip__grid {
    grid-template-columns: 1fr;
    gap: 1rem 0;
  }
}

/* =====================================================
   HIGHLIGHT – KFZ Pit-Stop & weitere Sektionen
   ===================================================== */
.highlight--kfz {
  background: #030508;
}
.highlight--kfz::before {
  background: radial-gradient(ellipse at 40% 50%, rgba(200,16,46,0.15) 0%, transparent 65%);
}

/* =====================================================
   HIGHLIGHT – Gregor Prinz (Split: Bild links, Text rechts)
   ===================================================== */
.highlight--gregor {
  background: #020a02;
}
.highlight--gregor::before {
  background: radial-gradient(ellipse at 30% 50%, rgba(34,120,46,0.15) 0%, transparent 65%);
}

.highlight__inner--split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 100%;
  position: relative;
  z-index: 1;
}

.highlight__figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  position: relative;
}

.highlight__person-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 340px;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(-15px 0 40px rgba(34,120,46,0.5))
    drop-shadow(0 10px 30px rgba(0,0,0,0.7));
}

.highlight__yt-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,0,0,0.08);
  border: 1px solid rgba(255,0,0,0.25);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: var(--white);
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  width: 100%;
  max-width: 300px;
}
.highlight__yt-link:hover {
  background: rgba(255,0,0,0.18);
  border-color: rgba(255,0,0,0.5);
  transform: translateY(-2px);
}
.highlight__yt-link svg { flex-shrink: 0; color: #FF0000; }
.highlight__yt-info { display: flex; flex-direction: column; line-height: 1.3; }
.highlight__yt-handle { font-weight: 600; font-size: 0.85rem; }
.highlight__yt-sub { font-size: 0.72rem; color: var(--muted); }

.highlight__yt-logo {
  position: absolute;
  top: 2%;
  left: 50%;
  transform: translateX(-110%);
  height: clamp(110px, 16vw, 160px);
  width: auto;
  z-index: 0;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.6));
  opacity: 0.75;
}

/* KFZ-Split: content left, photo right (reversed column order vs Georg) */
.highlight__inner--kfz {
  grid-template-columns: 1.2fr 1fr;
}

.highlight__kfz-figure {
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight__kfz-img {
  width: 100%;
  max-width: 460px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  filter:
    drop-shadow(0 8px 30px rgba(0,0,0,0.7))
    drop-shadow(-8px 0 40px rgba(200,16,46,0.25));
}

@media (max-width: 860px) {
  .highlight__inner--split {
    grid-template-columns: 1fr;
  }
  .highlight__inner--kfz {
    grid-template-columns: 1fr;
  }
  .highlight__kfz-figure { order: -1; }
  .highlight__figure {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .highlight__person-img { max-width: 220px; }
}

/* =====================================================
   SHK AKTIONEN SECTION
   ===================================================== */
.shk-section { background: var(--bg); }

.shk__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.shk__card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}
.shk__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,16,46,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.shk__card:hover {
  border-color: var(--border-red);
  transform: translateY(-4px);
  background: var(--card-hover);
}
.shk__card:hover::before { opacity: 1; }

.shk__icon {
  width: 52px; height: 52px;
  background: rgba(200,16,46,0.1);
  border: 1px solid var(--border-red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--red);
}
.shk__icon svg { width: 26px; height: 26px; }

.shk__card h3 {
  font-family: var(--font-sub);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 0.6rem;
  color: var(--white);
}

.shk__card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .shk__grid { grid-template-columns: 1fr; }
}

/* =====================================================
   GALERIE / BILDSHOW
   ===================================================== */
.gallery {
  background: var(--black);
  padding-top: var(--section-pad);
  padding-bottom: 0;
  overflow: hidden;
}

.gallery .section__head {
  padding-bottom: 2rem;
}

.gallery__viewport {
  position: relative;
  overflow: hidden;
}

.gallery__track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery__slide {
  flex: none;   /* flex-basis überschreibt style.width → daher none; JS setzt Breite */
  margin: 0;
  padding: 0;
}

.gallery__slide img {
  width: 100%;
  height: clamp(280px, 55vw, 620px);
  object-fit: cover;
  display: block;
}

.gallery__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(8,8,8,0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  z-index: 2;
}

.gallery__btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-50%) scale(1.08);
}

.gallery__btn--prev { left: 1.5rem; }
.gallery__btn--next { right: 1.5rem; }

.gallery__dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.gallery__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  border: none;
  transition: background 0.25s, width 0.25s, border-radius 0.25s;
  padding: 0;
}

.gallery__dot.active {
  background: var(--red);
  width: 28px;
  border-radius: 4px;
}

/* ── DEALS: 10% BONUS BADGE ──────────────────────────────────────────────── */
.deals__bonus {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(135deg, rgba(200,16,46,0.18), rgba(200,16,46,0.06));
  border: 1.5px solid rgba(200,16,46,0.5);
  border-radius: 10px;
  padding: 1.5rem 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 0 40px rgba(200,16,46,0.2), 0 0 80px rgba(200,16,46,0.1);
  position: relative;
  overflow: hidden;
}
.deals__bonus::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(200,16,46,0.12) 0%, transparent 70%);
}
.deals__bonus-pct {
  font-family: var(--font-head);
  font-size: clamp(5rem, 12vw, 8rem);
  line-height: 1;
  color: var(--red);
  text-shadow: 0 0 30px rgba(200,16,46,0.7), 0 0 60px rgba(200,16,46,0.4);
  animation: bonus-pulse 2.5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
.deals__bonus-sign {
  font-size: 0.55em;
  vertical-align: top;
  margin-top: 0.4em;
  display: inline-block;
}
.deals__bonus-info {
  position: relative;
  z-index: 1;
}
.deals__bonus-info strong {
  display: block;
  font-family: var(--font-sub);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.deals__bonus-info span {
  font-size: 0.9rem;
  color: var(--muted-light);
  line-height: 1.5;
}
@keyframes bonus-pulse {
  0%, 100% { text-shadow: 0 0 30px rgba(200,16,46,0.7), 0 0 60px rgba(200,16,46,0.4); }
  50%       { text-shadow: 0 0 50px rgba(200,16,46,0.9), 0 0 100px rgba(200,16,46,0.5), 0 0 140px rgba(200,16,46,0.2); }
}

/* ── DEALS: TOP SECRET STEMPEL ───────────────────────────────────────────── */
.deals__bonus {
  position: relative; /* sicherstellen */
}
.deals__stamp {
  position: absolute;
  right: clamp(1rem, 5%, 4rem);
  top: 50%;
  transform: translateY(-50%) rotate(-22deg) scale(0);
  transform-origin: center center;
  width: clamp(120px, 18vw, 180px);
  color: var(--red);
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 0 12px rgba(200,16,46,0.5));
  z-index: 2;
}
.deals__stamp svg { width: 100%; height: auto; display: block; }
.deals__stamp.is-stamped {
  animation: stamp-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes stamp-in {
  0%   { transform: translateY(-50%) rotate(-22deg) scale(2.4); opacity: 0; }
  60%  { transform: translateY(-50%) rotate(-22deg) scale(0.9); opacity: 0.9; }
  80%  { transform: translateY(-50%) rotate(-22deg) scale(1.05); opacity: 1; }
  100% { transform: translateY(-50%) rotate(-22deg) scale(1); opacity: 1; }
}

/* ── FOOD & DRINKS ───────────────────────────────────────────────────────── */
.food { background: var(--bg-alt); }
.food__content .eyebrow,
.food__content .section__h2 { text-align: center; }
.food__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 860px) {
  .food__inner { grid-template-columns: 1fr; }
  .food__figure { order: -1; }
}
.food__grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0 2.5rem;
}
.food__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.food__item-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,16,46,0.12);
  border: 1px solid rgba(200,16,46,0.25);
  border-radius: 10px;
  color: var(--red);
}
.food__item-icon svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.food__item strong {
  display: block;
  font-family: var(--font-sub);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.food__item p {
  font-size: 0.9rem;
  color: var(--muted-light);
  margin: 0;
}
.food__figure {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 400px;
  background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
  display: flex;
  align-items: center;
  justify-content: center;
}
.food__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
/* Der Schachen Logo im Figure-Bereich */
.food__figure--schachen {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 3.5rem);
}
.food__schachen-logo {
  width: 100%;
  max-width: 460px;
  height: auto;
  object-fit: contain;
  filter: invert(1);
  opacity: 0.9;
}
/* Trennlinie */
.food__group-label {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 0.5rem;
}
.food__grid { margin-bottom: 0.5rem; }

/* ── HEIGL SEKTION ───────────────────────────────────────────────────────── */
.heigl {
  background: #04060a;
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(5rem, 12vw, 9rem);
}
.heigl::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 15% 60%, rgba(200,16,46,0.12) 0%, transparent 50%);
  pointer-events: none;
}
/* Auto – absolut positioniert, fährt von links ins Bild */
.heigl__car-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: clamp(420px, 58vw, 820px);
  z-index: 1;
  pointer-events: none;
  transform: translateX(-105%);
  transition: transform 1.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.heigl__car-wrap.is-visible {
  transform: translateX(0);
}
.heigl__car {
  width: 100%;
  height: auto;
  display: block;
  filter:
    drop-shadow(0 0 6px rgba(200,16,46,0.65))
    drop-shadow(0 0 18px rgba(200,16,46,0.3))
    drop-shadow(0 6px 16px rgba(0,0,0,0.65));
}
/* Grid: Text | Stand (2 Spalten, Auto ist absolut) */
.heigl__inner {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  padding-left: clamp(240px, 36vw, 520px);
}
/* Text-Spalte */
.heigl__text {
  text-align: center;
  position: relative;
  z-index: 1;
}
.heigl__logo {
  height: clamp(4.5rem, 9vw, 7.5rem);
  width: auto;
  margin: 0 auto 1.25rem;
  display: block;
  filter: brightness(0) invert(1);
}
.heigl__h3 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1;
  color: var(--white);
  margin: 0.4rem 0 1rem;
}
.heigl__h3 em { font-style: normal; }
.heigl__desc {
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  color: var(--muted-light);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.heigl__badge {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
}
/* Stand-Spalte */
.heigl__stand {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.heigl__stand-img {
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  margin-top: 2rem;
  filter: drop-shadow(0 10px 40px rgba(0,0,0,0.8));
}
@media (max-width: 860px) {
  .heigl__inner {
    grid-template-columns: 1fr;
    padding-left: 0;
    text-align: center;
  }
  .heigl__car-wrap {
    position: static;
    transform: none;
    width: clamp(200px, 70vw, 340px);
    margin: 0 auto 1.5rem;
  }
  .heigl__stand { justify-content: center; }
}

/* ── GEWERK SEKTIONEN (KFZ, Bau, Holz, SHK) ─────────────────────────────── */
.gewerk {
  background: #030508;
  position: relative;
  overflow: hidden;
}
.gewerk::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 65% 50%, rgba(200,16,46,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.gewerk__wheel-bg {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(400px, 55vw, 700px);
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
.gewerk__wheel-bg svg { width: 100%; height: auto; }
.gewerk__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 860px) {
  .gewerk__inner { grid-template-columns: 1fr; }
  .gewerk__figure { order: -1; }
  .gewerk__wheel-bg { opacity: 0.2; width: 90vw; right: 0; }
}
.gewerk__lead {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--muted-light);
  line-height: 1.7;
  margin: 1.25rem 0 1.75rem;
}
.gewerk__lead strong { color: var(--white); }
.gewerk__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.gewerk__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--muted-light);
  line-height: 1.5;
}
.gewerk__list li strong { color: var(--white); }
.gewerk__check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--red);
  margin-top: 0.15rem;
}
.gewerk__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.gewerk__figure {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gewerk__img {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 40px rgba(0,0,0,0.8)) drop-shadow(-8px 0 40px rgba(200,16,46,0.2));
  border-radius: 8px;
}
/* KFZ: Mann ~20% kleiner als vorher (war 1.5, jetzt 1.2) */
.gewerk__img--kfz {
  max-width: 576px;
  transform: scale(1.2);
  transform-origin: center bottom;
}
@media (max-width: 860px) {
  .gewerk__img--kfz { transform: scale(1.08); }
}
/* Zimmermann/Holz: +15% */
.gewerk--zimmermann .gewerk__img {
  transform: scale(1.15);
  transform-origin: center bottom;
}

/* ── GEWERK REVERSED (Bild links, Text rechts) ──────────────────────────── */
.gewerk--reversed .gewerk__inner {
  grid-template-columns: 1fr 1.1fr;
}
.gewerk--reversed .gewerk__figure {
  order: -1;
}
@media (max-width: 860px) {
  .gewerk--reversed .gewerk__inner { grid-template-columns: 1fr; }
  .gewerk--reversed .gewerk__figure { order: -1; }
}

/* Gewerk Hintergrund-Deko (Winkelmaß für Zimmermann) */
.gewerk__bg-deco {
  position: absolute;
  left: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(350px, 50vw, 600px);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}
.gewerk__bg-deco svg { width: 100%; height: auto; }
@media (max-width: 860px) {
  .gewerk__bg-deco { opacity: 0.15; width: 90vw; left: 0; }
}
.gewerk__bg-deco--bau {
  left: auto;
  right: -5%;
}

/* ── GEWERK TOOL-CHIPS ───────────────────────────────────────────────────── */
.gewerk__figure { position: relative; }
.gewerk__tool-chips {
  position: absolute;
  top: clamp(2rem, 10%, 4rem);
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  z-index: 2;
}
.gewerk__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(8,8,8,0.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200,16,46,0.4);
  border-radius: 100px;
  padding: 0.4rem 0.85rem 0.4rem 0.65rem;
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(200,16,46,0.15);
}
.gewerk__chip svg { color: var(--red); flex-shrink: 0; }
@media (max-width: 860px) { .gewerk__tool-chips { display: none; } }

/* ── GEWERK BAU (großes Bild) ────────────────────────────────────────────── */
.gewerk__inner--bau {
  grid-template-columns: 1fr 1.35fr;
  align-items: stretch;
}
.gewerk__figure--bau {
  min-height: clamp(400px, 60vw, 680px);
  align-items: stretch;
}
.gewerk__img--bau {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  border-radius: 12px;
  filter: drop-shadow(0 12px 50px rgba(0,0,0,0.85)) drop-shadow(-10px 0 50px rgba(200,16,46,0.22));
}
/* Bau reversed: großes Bild bleibt links */
.gewerk--reversed .gewerk__inner--bau {
  grid-template-columns: 1.35fr 1fr;
}
@media (max-width: 860px) {
  .gewerk__inner--bau,
  .gewerk--reversed .gewerk__inner--bau { grid-template-columns: 1fr; }
  .gewerk__figure--bau { min-height: 280px; }
}

/* ── HIGHLIGHTS DIVIDER ─────────────────────────────────────────────────── */
.highlights-divider {
  background: var(--red);
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 8rem) 0;
  clip-path: polygon(0 8%, 100% 0%, 100% 92%, 0% 100%);
  margin: -3rem 0;
  z-index: 2;
}
.highlights-divider__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-head);
  font-size: clamp(12rem, 30vw, 22rem);
  line-height: 1;
  color: rgba(255,255,255,0.06);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.02em;
  user-select: none;
}
.highlights-divider__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.highlights-divider__h2 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1;
  color: var(--white);
  margin: 0.5rem 0 1.25rem;
}
.highlights-divider__h2 em {
  color: rgba(255,255,255,0.85);
  font-style: normal;
}
.highlights-divider__lead {
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  color: rgba(255,255,255,0.75);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.highlights-divider__icons {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  flex-wrap: wrap;
}
.highlights-divider__icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.highlights-divider__icon-item svg { color: var(--white); }
.highlights-divider .eyebrow--light { color: rgba(255,255,255,0.6); margin-bottom: 0.25rem; }

/* ─── CAP DISCLAIMER ───────────────────────────────────────────────────────── */
.cap-disclaimer {
  font-size: 0.78rem !important;
  color: var(--muted) !important;
  line-height: 1.5 !important;
  margin-top: 0.5rem !important;
  margin-bottom: 0 !important;
  font-style: italic;
}

/* ─── YOUTUBE CLICK-TO-LOAD PLACEHOLDER ───────────────────────────────────── */
.yt-placeholder {
  position: relative;
  width: 100%; aspect-ratio: 16/9;
  background: #0a0a0a;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  cursor: pointer; overflow: hidden;
  border-radius: 8px;
}
.yt-placeholder__btn {
  position: relative; z-index: 2;
  background: rgba(0,0,0,0.6);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: transform 0.2s, background 0.2s;
}
.yt-placeholder__btn:hover { background: var(--red); transform: scale(1.1); border-color: var(--red); }
.yt-placeholder__title {
  position: relative; z-index: 2;
  margin-bottom: 1rem; font-size: 0.9rem; font-weight: 600;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-sub); text-align: center; letter-spacing: 0.04em;
}
.yt-placeholder__note {
  position: relative; z-index: 2;
  margin-top: 1rem; font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-body); text-align: center; line-height: 1.5;
}
.yt-placeholder__note a { color: var(--red); text-decoration: none; }
.yt-placeholder__note a:hover { text-decoration: underline; }

/* ── DJ / MUSIK SEKTION ──────────────────────────────────────────────────── */
.dj-music {
  background: #08080f;
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.dj-music__bg-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(200,16,46,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.dj-music__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
/* Visual left */
.dj-music__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.dj-music__disc {
  position: relative;
  width: clamp(180px, 22vw, 280px);
  height: clamp(180px, 22vw, 280px);
  border-radius: 50%;
  background: conic-gradient(#1a1a1a 0deg, #2a0a10 90deg, #1a1a1a 180deg, #C8102E 270deg, #1a1a1a 360deg);
  animation: disc-spin 4s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(200,16,46,0.4), 0 0 80px rgba(200,16,46,0.15);
}
@keyframes disc-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.dj-music__disc-inner {
  width: 35%;
  height: 35%;
  border-radius: 50%;
  background: #0a0a0a;
  border: 3px solid #C8102E;
}
.dj-music__note {
  position: absolute;
  width: 28px;
  height: 28px;
  color: #C8102E;
  animation: note-float 3s ease-in-out infinite;
}
.dj-music__note--1 { top: -10px; right: 10px; animation-delay: 0s; }
.dj-music__note--2 { bottom: 0px; left: 0px; animation-delay: 1.5s; }
@keyframes note-float {
  0%, 100% { transform: translateY(0) rotate(-10deg); opacity: 0.7; }
  50%       { transform: translateY(-12px) rotate(10deg); opacity: 1; }
}
/* Equalizer bars */
.dj-music__bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 48px;
}
.dj-music__bars span {
  display: block;
  width: 10px;
  background: #C8102E;
  border-radius: 4px 4px 0 0;
  animation: bar-bounce 0.8s ease-in-out infinite alternate;
}
.dj-music__bars span:nth-child(1) { height: 30%; animation-delay: 0s; }
.dj-music__bars span:nth-child(2) { height: 70%; animation-delay: 0.15s; }
.dj-music__bars span:nth-child(3) { height: 100%; animation-delay: 0.05s; }
.dj-music__bars span:nth-child(4) { height: 55%; animation-delay: 0.25s; }
.dj-music__bars span:nth-child(5) { height: 40%; animation-delay: 0.1s; }
@keyframes bar-bounce {
  from { transform: scaleY(0.3); }
  to   { transform: scaleY(1); }
}
/* Text right */
.dj-music__desc {
  color: var(--muted-light);
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  line-height: 1.75;
  margin: 1rem 0 1.5rem;
}
.dj-music__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.dj-music__tag {
  display: inline-block;
  border: 1px solid rgba(200,16,46,0.5);
  color: #fff;
  font-family: var(--font-sub);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.9rem;
  border-radius: 4px;
  background: rgba(200,16,46,0.08);
}
@media (max-width: 860px) {
  .dj-music__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .dj-music__visual { margin-bottom: 1rem; }
  .dj-music__tags { justify-content: center; }
}
