@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300..700;1,9..40,300..700&family=Alfa+Slab+One&display=swap');

/* ════════════════════════════════════════════════════════════
   2. AYCAE Weihnachtsmarkt Wien 2026 – Design-System
   Farbwelt nach dem 2026er Key Visual (Poster):
   • Winternacht-Blau  #17304a / #1d3a5a  (Himmel & dunkle Flächen)
   • Banner-Creme      #f7e8b5            (helle Flächen, wie Poster-Banner)
   • Licht-Gelb        #f2d789            (Headlines, CTAs, Lichter)
   • Feuer-Orange      #e8873c            (Akzente, Feuertonnen)
   • Tannen-Grün       #3f7a5f            (Sekundärakzent)
   • Headlines & Buttons: "ITC Motter Corpus Condensed" (Lizenzfont)
   • Fließtext: "DM Sans"
   ════════════════════════════════════════════════════════════ */

/* ── Lizenzfont der Marke (aktiv) ─────────────────────────────
   "ITC Motter Corpus Condensed" – Original-Headline-Font der Marke.
   Dateien liegen in /public/fonts/. Der relative Pfad funktioniert
   sowohl im Next.js-Build als auch in der preview.html.
   Fallback bleibt "Alfa Slab One" (Google Fonts).             */
@font-face {
  font-family: 'ITC Motter Corpus Condensed';
  src: url('../fonts/itc-motter-corpus-condensed.woff') format('woff'),
       url('../fonts/itc-motter-corpus-condensed.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Basisfarben (Key Visual 2026) */
  --navy-darkest: #0e1f33;
  --navy-deep: #14283e;
  --navy: #1d3a5a;
  --navy-text: #1c3d5a;
  --gold: #f2d789;
  --gold-bright: #f8e5ab;
  --gold-deep: #d9b45e;
  --cream: #f7e8b5;
  --cream-bright: #fcf3d3;
  --ember: #e8873c;
  --pine: #3f7a5f;

  /* Dunkles Theme (Standard-Sections) */
  --bg-0: #17304a;
  --bg-1: var(--navy);
  --card: #22436a;
  --line: rgba(242, 215, 137, 0.28);
  --line-soft: rgba(242, 215, 137, 0.15);
  --text: #f3ecd6;
  --muted: #bcc8d9;

  --glow-gold: rgba(242, 215, 137, 0.4);
  --glow-warm: rgba(242, 215, 137, 0.18);

  /* Schatten-System (zweischichtig: Kontakt + Streuung) */
  --shadow-sm: 0 1px 2px rgba(6, 15, 28, 0.25), 0 10px 28px -14px rgba(6, 15, 28, 0.4);
  --shadow-md: 0 2px 4px rgba(6, 15, 28, 0.22), 0 20px 48px -20px rgba(6, 15, 28, 0.5);
  --shadow-lg: 0 4px 8px rgba(6, 15, 28, 0.2), 0 34px 76px -28px rgba(6, 15, 28, 0.6);
  --card-inset: inset 0 1px 0 rgba(255, 255, 255, 0.05);

  /* Typografie (Marken-CI) */
  --font-display: 'ITC Motter Corpus Condensed', 'Alfa Slab One', 'Georgia', serif;
  --font-body: 'DM Sans', -apple-system, 'Segoe UI', sans-serif;

  /* Bewegung */
  --ease: cubic-bezier(0.25, 0, 0.2, 1);
  --hover-lift: -4px;

  /* Layout */
  /* Container wächst auf Desktop mit (statt fix 1160px) und wird
     erst auf sehr breiten Screens bei 1440px begrenzt.            */
  --container: clamp(1160px, 92vw, 1440px);
  /* Breite für zentrierte Einzel-Panels (Teaser, Termine, FAQ …) */
  --container-narrow: 900px;
  --radius: 18px;
  --radius-lg: 26px;
  --section-pad: clamp(72px, 10vw, 128px);
  --header-h: 84px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-0);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--navy-text); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* Präzise Fokus-Zustände (Tastatur) */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}
.btn:focus-visible { outline-offset: 4px; border-radius: 999px; }

/* ── Typografie ─────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: 0.018em;
  text-wrap: balance;
}
p { text-wrap: pretty; }

.kicker {
  display: flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.center .kicker { margin-inline: auto; }
.kicker::before, .kicker::after {
  content: '';
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.kicker::after { background: linear-gradient(90deg, var(--gold), transparent); }

/* Banner-Headings wie am Poster: Text auf Creme-Block,
   box-decoration-break sorgt für saubere Blöcke pro Zeile */
.section-title {
  display: inline;
  font-size: clamp(1.7rem, 3.8vw, 2.7rem);
  line-height: 1.55;
  background: linear-gradient(135deg, var(--cream-bright), var(--cream));
  color: var(--navy-text);
  padding: 0.12em 0.5em 0.16em;
  border-radius: 3px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  box-shadow: 0 14px 36px -16px rgba(6, 15, 28, 0.55);
}
.section-title em { font-style: normal; color: var(--ember); }
.section-title + p { margin-top: 28px; }
.section-light .section-title {
  background: linear-gradient(135deg, #234a6d, var(--navy-text));
  color: var(--cream);
  box-shadow: 0 14px 36px -16px rgba(28, 61, 90, 0.45);
}
.section-light .section-title em { color: var(--gold); }
.section-lead {
  max-width: 64ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  line-height: 1.7;
}
.center { text-align: center; }
.center .section-lead { margin-inline: auto; }

/* ── Layout ─────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
section { position: relative; padding-block: var(--section-pad); }
section[id] { scroll-margin-top: var(--header-h); }

/* Grid-Kinder (Reveal-Wrapper) strecken → gleiche Kartenhöhen */
.concept-grid > .reveal,
.food-grid > .reveal,
.act-grid > .reveal,
.b2b-grid > .reveal,
.partner-grid > .reveal { height: 100%; }

/* ── Helles Theme (Creme-Sections, wie Poster-Banner) ───── */
.section-light {
  background:
    radial-gradient(1100px 460px at 85% -10%, rgba(232, 135, 60, 0.14), transparent 60%),
    var(--cream);
  --text: var(--navy-text);
  --muted: #56688a;
  --card: var(--cream-bright);
  --line: rgba(28, 61, 90, 0.24);
  --line-soft: rgba(28, 61, 90, 0.13);
  --glow-warm: rgba(232, 135, 60, 0.22);
  --shadow-sm: 0 1px 2px rgba(28, 61, 90, 0.12), 0 10px 28px -14px rgba(28, 61, 90, 0.22);
  --shadow-md: 0 2px 4px rgba(28, 61, 90, 0.1), 0 20px 48px -20px rgba(28, 61, 90, 0.3);
  --shadow-lg: 0 4px 8px rgba(28, 61, 90, 0.1), 0 34px 76px -28px rgba(28, 61, 90, 0.38);
  --card-inset: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  color: var(--text);
}
.section-light .kicker { color: var(--ember); }
.section-light .kicker::before { background: linear-gradient(90deg, transparent, var(--ember)); }
.section-light .kicker::after { background: linear-gradient(90deg, var(--ember), transparent); }
.section-light .badge { background: rgba(252, 243, 211, 0.85); color: var(--navy-text); }
.section-light .badge .dot { background: var(--ember); box-shadow: 0 0 8px rgba(232, 135, 60, 0.5); }

/* ── Buttons (Brand-Font, wie Poster) ───────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
  will-change: transform;
}
.btn svg { flex-shrink: 0; }
.btn-primary {
  background: linear-gradient(160deg, var(--gold-bright), var(--gold-deep));
  color: var(--navy-text);
  box-shadow: var(--shadow-sm), 0 8px 28px -8px var(--glow-gold), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), 0 14px 40px -6px var(--glow-gold), 0 0 0 5px rgba(242, 215, 137, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.btn-primary:active { transform: translateY(0); transition-duration: 0.1s; }
.btn-ghost {
  background: rgba(242, 215, 137, 0.08);
  color: var(--gold-bright);
  border-color: var(--line);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(242, 215, 137, 0.16);
  border-color: rgba(242, 215, 137, 0.5);
  transform: translateY(-2px);
}
.btn-ghost:active { transform: translateY(0); transition-duration: 0.1s; }
.section-light .btn-ghost { color: var(--navy-text); background: rgba(28, 61, 90, 0.05); }
.section-light .btn-ghost:hover { background: rgba(28, 61, 90, 0.1); border-color: rgba(28, 61, 90, 0.4); }
.btn-lg { padding: 18px 40px; font-size: 0.95rem; }
.btn-sm { padding: 11px 22px; font-size: 0.78rem; }

/* ── Badges ─────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(14, 31, 51, 0.65);
  backdrop-filter: blur(8px);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--cream);
  white-space: nowrap;
}
.badge svg { flex-shrink: 0; opacity: 0.85; }
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 8px var(--glow-gold); }
.badge-edition {
  background: linear-gradient(160deg, var(--gold-bright), var(--gold-deep));
  color: var(--navy-text);
  border-color: transparent;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
  box-shadow: 0 6px 20px -8px var(--glow-gold);
}

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(14, 31, 51, 0.88);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 14px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { height: 44px; width: auto; }
.brand .brand-text {
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: var(--cream);
  line-height: 1.25;
}
.brand .brand-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}
.nav-links { display: flex; gap: 26px; font-size: 0.9rem; font-weight: 500; letter-spacing: 0.02em; color: var(--cream); opacity: 0.92; }
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--gold-bright); }
.nav-links a[aria-current='page'] { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 1.5px; }
@media (max-width: 1080px) { .nav-links { display: none; } }
@media (max-width: 560px) { .brand .brand-text { display: none; } }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: 150px 120px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg .sky {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 480px at 50% 108%, rgba(232, 135, 60, 0.22), transparent 65%),
    radial-gradient(700px 400px at 18% 20%, rgba(242, 215, 137, 0.08), transparent 60%),
    radial-gradient(700px 400px at 85% 30%, rgba(63, 122, 95, 0.1), transparent 60%),
    linear-gradient(180deg, var(--navy-darkest) 0%, var(--navy-deep) 55%, #24466b 100%);
}
.hero-bg .silhouette {
  position: absolute; inset: auto 0 0 0;
  width: 100%; height: 34vh; min-height: 220px;
  opacity: 0.95;
}
/* Poster-Illustration (WebP, optimiert – Quelle: hero-illustration.png) */
.hero-bg .illustration {
  position: absolute; inset: 0;
  background-image: url('../images/hero-illustration.webp');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
/* Abdunkelung für Lesbarkeit + weicher Übergang zur nächsten Section */
.hero-bg .veil {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 31, 51, 0.45) 0%,
    rgba(14, 31, 51, 0.12) 32%,
    rgba(14, 31, 51, 0.18) 72%,
    rgba(23, 48, 74, 0.88) 100%
  );
}
.hero-inner { position: relative; z-index: 2; width: 100%; text-align: center; }
.hero-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 36px);
  margin-bottom: 22px;
}
.hero-logos img {
  height: clamp(46px, 6vw, 66px);
  width: auto;
  filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.45));
}
.hero-eyebrow {
  font-size: clamp(0.7rem, 1.3vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
/* Hero-Titel als Poster-Banner: zwei Creme-Blöcke mit ähnlicher
   Zeilenhöhe (wie am Plakat), Zeile 1 breiter & leicht gekippt */
.hero-title {
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  margin-bottom: 10px;
}
.hero-title .line1,
.hero-title .line2 {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
  background: linear-gradient(135deg, var(--cream-bright), var(--cream));
  color: var(--navy-text);
  padding: 0.14em 0.6em 0.18em;
  border-radius: 3px;
  box-shadow: 0 18px 44px -18px rgba(6, 15, 28, 0.6);
}
.hero-title .line1 {
  font-size: 0.72em;
  transform: rotate(-1.6deg);
  margin-bottom: 12px;
}
.hero-title .line2 {
  font-size: 0.8em;
  transform: none;
}
.hero-sub {
  max-width: 46ch;
  margin: 20px auto 26px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.8vw, 1.12rem);
  line-height: 1.55;
  text-wrap: balance;
}
.hero-badges { display: flex; flex-wrap: wrap; align-items: stretch; justify-content: center; gap: 10px; margin-bottom: 30px; }
.hero-badges .badge { padding-block: 9px; }
.hero-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.hero-note { margin-top: 22px; font-size: 0.86rem; color: var(--muted); display: inline-flex; align-items: center; gap: 8px; }
.hero-note svg { color: var(--gold); flex-shrink: 0; }

.scroll-hint {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 3; color: var(--gold); opacity: 0.75;
  animation: floaty 2.6s ease-in-out infinite;
}
@keyframes floaty { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ── Karten-Basis (einheitlich für alle Card-Typen) ─────── */
.concept-card, .act-card, .food-card, .b2b-card, .teaser-panel, .period-card, .faq-item, .partner-tile {
  box-shadow: var(--shadow-sm), var(--card-inset);
}

/* ── Konzept-Karten ─────────────────────────────────────── */
.concept-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .concept-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .concept-grid { grid-template-columns: 1fr; } }

.concept-card {
  position: relative;
  height: 100%;
  padding: 30px 26px;
  border-radius: var(--radius);
  background: linear-gradient(165deg, var(--card), var(--bg-1));
  border: 1px solid var(--line-soft);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  overflow: hidden;
}
.concept-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(320px 160px at 50% -20%, var(--glow-warm), transparent 70%);
  opacity: 0; transition: opacity 0.3s var(--ease);
  pointer-events: none;
}
.concept-card:hover {
  transform: translateY(var(--hover-lift));
  border-color: var(--line);
  box-shadow: var(--shadow-md), var(--card-inset);
}
.concept-card:hover::after { opacity: 1; }
.concept-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: grid; place-items: center;
  color: var(--gold-bright);
  background: rgba(242, 215, 137, 0.1);
  border: 1px solid var(--line-soft);
  margin-bottom: 18px;
}
.concept-card h3 { font-size: 1.1rem; color: var(--cream); margin-bottom: 8px; }
.concept-card p { font-size: 0.93rem; color: var(--muted); line-height: 1.6; }

/* ── Marquee (Creme-Band wie Poster-Banner) ─────────────── */
.marquee-wrap {
  padding-block: 22px;
  background: linear-gradient(135deg, var(--cream-bright), var(--cream));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), inset 0 -1px 0 rgba(28, 61, 90, 0.12);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 46s linear infinite;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding-inline: 22px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: var(--navy-text);
  white-space: nowrap;
}
.marquee-item .star { color: var(--ember); font-size: 0.8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Erlebnis-Section ───────────────────────────────────── */
.exp-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 900px) { .exp-grid { grid-template-columns: 1fr; } }
.exp-copy p { color: var(--muted); margin-bottom: 16px; max-width: 58ch; line-height: 1.7; }
.exp-copy p strong { color: var(--text); font-weight: 700; }
.exp-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.exp-badges .badge { font-size: 0.82rem; padding: 8px 15px; }

.exp-visual { position: relative; width: 100%; max-width: 560px; margin-inline: auto; }
.exp-panel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 4.6;
}
.exp-float {
  position: absolute;
  border-radius: 16px;
  background: rgba(252, 243, 211, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(28, 61, 90, 0.15);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-md);
  animation: floatcard 5.5s ease-in-out infinite;
}
.exp-float svg { color: var(--ember); flex-shrink: 0; }
.exp-float .t { font-size: 0.9rem; color: var(--navy-text); font-weight: 600; line-height: 1.3; }
.exp-float .t small { display: block; color: #56688a; font-size: 0.76rem; font-weight: 400; }
.exp-float.f1 { top: 8%; left: -7%; animation-delay: 0s; }
.exp-float.f2 { bottom: 14%; right: -6%; animation-delay: 1.8s; }
@media (max-width: 900px) {
  .exp-float.f1 { left: 4%; }
  .exp-float.f2 { right: 4%; }
}
@keyframes floatcard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ── Kulinarik ──────────────────────────────────────────── */
.food-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 760px) { .food-grid { grid-template-columns: 1fr; } }

.food-card {
  height: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background: var(--card);
  padding: 30px;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.food-card:hover {
  transform: translateY(var(--hover-lift));
  border-color: var(--line);
  box-shadow: var(--shadow-md), var(--card-inset);
}
.food-head { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.food-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 16px;
  display: grid; place-items: center;
  color: var(--ember);
  background: rgba(232, 135, 60, 0.14);
  border: 1px solid var(--line-soft);
}
.food-card h3 { font-size: 1.16rem; color: var(--text); }
.food-card > p { font-size: 0.94rem; color: var(--muted); line-height: 1.65; }
.chip-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 16px; }
.chip {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text);
  background: rgba(232, 135, 60, 0.1);
  border: 1px solid var(--line-soft);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.chip:hover { background: rgba(232, 135, 60, 0.2); border-color: rgba(28, 61, 90, 0.3); transform: translateY(-1px); }
.chip.vegan { background: rgba(63, 122, 95, 0.1); border-color: rgba(63, 122, 95, 0.28); color: var(--pine); }
.chip.vegan:hover { background: rgba(63, 122, 95, 0.18); }

/* ── Tickets (Preiskarten 2026) ─────────────────────────── */
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
  align-items: stretch;
}
@media (max-width: 1020px) { .ticket-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ticket-grid { grid-template-columns: 1fr; } }
.ticket-grid > .reveal { height: 100%; }

.ticket-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 30px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background: linear-gradient(170deg, var(--card), var(--bg-1));
  box-shadow: var(--shadow-sm), var(--card-inset);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.ticket-card:hover {
  transform: translateY(var(--hover-lift));
  border-color: var(--line);
  box-shadow: var(--shadow-md), var(--card-inset);
}
.ticket-card h3 { font-size: 1.08rem; color: var(--cream); margin-bottom: 2px; }
.ticket-sub {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.ticket-price {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--gold-bright);
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px dashed var(--line-soft);
}
.ticket-price .ab {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  margin-right: 4px;
  vertical-align: 3px;
}
.ticket-desc { font-size: 0.92rem; color: var(--muted); line-height: 1.6; flex-grow: 1; }
.ticket-card .btn { margin-top: 22px; width: 100%; }

.ticket-card.featured {
  border-color: rgba(28, 61, 90, 0.3);
  background: linear-gradient(160deg, var(--gold-bright), var(--gold-deep));
  box-shadow: var(--shadow-md), 0 0 44px -12px var(--glow-gold);
}
.ticket-card.featured h3 { color: var(--navy-text); }
.ticket-card.featured .ticket-sub { color: #7a5b23; }
.ticket-card.featured .ticket-price { color: var(--navy-text); border-bottom-color: rgba(28, 61, 90, 0.25); }
.ticket-card.featured .ticket-price .ab,
.ticket-card.featured .ticket-desc { color: #5d4a20; }
.ticket-card.featured .btn-primary {
  background: var(--navy-text);
  color: var(--gold-bright);
  box-shadow: 0 12px 32px -10px rgba(14, 31, 51, 0.55);
}
.ticket-card.featured .btn-primary:hover { box-shadow: 0 18px 44px -10px rgba(14, 31, 51, 0.65), 0 0 0 5px rgba(28, 61, 90, 0.15); }

.ticket-flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--navy-text);
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid rgba(242, 215, 137, 0.35);
  box-shadow: 0 6px 18px -6px rgba(6, 15, 28, 0.6);
}
.ticket-note {
  margin-top: 28px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.ticket-note svg { color: var(--gold); flex-shrink: 0; }

/* ── Teaser-Panels (Vorverkauf 2026) ────────────────────── */
.teaser-panel {
  max-width: var(--container-narrow);
  margin: 48px auto 0;
  padding: clamp(32px, 5vw, 52px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  text-align: center;
  background:
    radial-gradient(560px 260px at 50% -20%, var(--glow-warm), transparent 70%),
    var(--card);
}
.teaser-panel h3 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--text);
  margin-bottom: 14px;
}
.teaser-panel > p { color: var(--muted); max-width: 52ch; margin: 0 auto 24px; line-height: 1.7; }
.teaser-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-bottom: 28px; }
.teaser-note {
  margin-top: 22px;
  font-size: 0.85rem;
  color: var(--muted);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  text-align: left;
}
.teaser-note svg { color: var(--ember); flex-shrink: 0; }

.presale-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pine);
  background: rgba(63, 122, 95, 0.14);
  border: 1px solid rgba(63, 122, 95, 0.3);
  margin-bottom: 20px;
}
.section-light .presale-badge { color: #2e6a52; }
.presale-badge::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: currentColor;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ── CTA-Banner (Creme/Gold wie Poster) ─────────────────── */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: clamp(44px, 6vw, 72px) clamp(24px, 5vw, 64px);
  text-align: center;
  background:
    radial-gradient(700px 320px at 50% 130%, rgba(232, 135, 60, 0.3), transparent 65%),
    linear-gradient(135deg, var(--cream-bright), var(--cream));
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.cta-banner h2 { font-size: clamp(1.55rem, 3.2vw, 2.3rem); color: var(--navy-text); margin-bottom: 12px; }
.cta-banner p { color: #56688a; margin-bottom: 30px; font-weight: 500; }
.cta-banner .btn-primary {
  background: var(--navy-text);
  color: var(--gold-bright);
  box-shadow: 0 12px 32px -10px rgba(14, 31, 51, 0.55);
}
.cta-banner .btn-primary:hover { box-shadow: 0 18px 44px -10px rgba(14, 31, 51, 0.65), 0 0 0 5px rgba(28, 61, 90, 0.15); }

/* ── Aktivitäten ────────────────────────────────────────── */
.act-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 980px) { .act-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .act-grid { grid-template-columns: 1fr; } }

.act-card {
  position: relative;
  height: 100%;
  padding: 30px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: linear-gradient(170deg, var(--card), var(--bg-1));
  overflow: hidden;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.act-card::before {
  content: '';
  position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s var(--ease);
}
.act-card:hover {
  transform: translateY(var(--hover-lift));
  border-color: var(--line);
  box-shadow: var(--shadow-md), var(--card-inset);
}
.act-card:hover::before { opacity: 0.9; }
.act-card:hover .act-icon { transform: scale(1.06) rotate(-3deg); color: var(--gold-bright); }
.act-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: grid; place-items: center;
  color: var(--gold);
  background: rgba(242, 215, 137, 0.1);
  border: 1px solid var(--line-soft);
  margin-bottom: 20px;
  transition: transform 0.3s var(--ease), color 0.3s var(--ease);
}
.act-card h3 { font-size: 1.12rem; color: var(--cream); margin-bottom: 10px; }
.act-card p { font-size: 0.93rem; color: var(--muted); line-height: 1.6; }

/* ── Termine ────────────────────────────────────────────── */
.period-card {
  max-width: var(--container-narrow);
  margin: 48px auto 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  background: linear-gradient(170deg, var(--card), var(--bg-1));
}
.period-head {
  padding: clamp(30px, 4vw, 44px);
  text-align: center;
  background: radial-gradient(560px 240px at 50% -30%, var(--glow-warm), transparent 70%);
}
.period-head .period-dates {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  color: var(--gold-bright);
  margin-bottom: 8px;
}
.period-head .period-loc { color: var(--muted); font-size: 0.95rem; }
.period-body {
  border-top: 1px dashed var(--line-soft);
  padding: clamp(24px, 3.4vw, 34px) clamp(24px, 4vw, 44px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  list-style: none;
}
@media (max-width: 640px) { .period-body { grid-template-columns: 1fr; } }
.period-body li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.94rem;
  color: var(--text);
  line-height: 1.55;
}
.period-body li svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.period-cta { padding: 0 clamp(24px, 4vw, 44px) clamp(30px, 4vw, 40px); text-align: center; }

/* ── Standorte ──────────────────────────────────────────── */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}
@media (max-width: 1020px) { .loc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .loc-grid { grid-template-columns: 1fr; } }
.loc-grid > .reveal { height: 100%; }

.loc-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 26px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(170deg, var(--card), var(--bg-1));
  box-shadow: var(--shadow-sm), var(--card-inset);
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.loc-card:hover {
  transform: translateY(var(--hover-lift));
  border-color: var(--line);
  box-shadow: var(--shadow-md), var(--card-inset);
}
.loc-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 13px;
  background: rgba(242, 215, 137, 0.1);
  border: 1px solid var(--line-soft);
  color: var(--gold);
}
.loc-region {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.loc-card h3 { font-size: 1.15rem; color: var(--cream); margin-bottom: 8px; }
.loc-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.6; }
.loc-card .btn { margin-top: 22px; align-self: flex-start; }

/* Aktiver Standort */
.loc-card--live {
  border-color: var(--line);
  background: linear-gradient(170deg, #2a4f78, var(--card));
}
.loc-card--live .loc-icon { background: rgba(242, 215, 137, 0.16); border-color: var(--line); }

/* Coming Soon – Stadt bleibt lesbar, Badge sitzt in der Ecke */
.loc-card--soon { background: linear-gradient(170deg, var(--bg-1), var(--card)); }
.loc-card--soon:hover { transform: none; }
.loc-card--soon .loc-icon { opacity: 0.75; }
.loc-ribbon {
  position: absolute;
  top: 16px;
  right: -4px;
  padding: 6px 14px 6px 12px;
  border-radius: 999px 0 0 999px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  color: var(--navy-text);
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 20px -10px rgba(6, 15, 28, 0.8);
}
.loc-card .loc-note {
  margin-top: auto;
  padding-top: 16px;
  font-size: 0.78rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--gold);
}
.loc-hint {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.86rem;
  color: var(--muted);
}
.loc-hint svg { color: var(--gold); flex-shrink: 0; }

/* ── Events & Aussteller ────────────────────────────────── */
.b2b-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 48px;
}
@media (max-width: 880px) { .b2b-grid { grid-template-columns: 1fr; } }

.b2b-card {
  position: relative;
  height: 100%;
  padding: clamp(30px, 4vw, 46px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background:
    radial-gradient(460px 240px at 85% -15%, rgba(232, 135, 60, 0.14), transparent 65%),
    var(--card);
  overflow: hidden;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  display: flex;
  flex-direction: column;
}
.b2b-card:hover {
  border-color: var(--line);
  box-shadow: var(--shadow-md), var(--card-inset);
}
.b2b-tag {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  padding: 7px 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  margin-bottom: 22px;
}
.b2b-card h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); color: var(--text); margin-bottom: 14px; }
.b2b-card > p { color: var(--muted); margin-bottom: 22px; line-height: 1.7; }
.b2b-list { list-style: none; margin-bottom: 30px; flex-grow: 1; }
.b2b-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding-block: 9px;
  font-size: 0.94rem;
  color: var(--text);
  line-height: 1.55;
}
.b2b-list li svg { color: var(--pine); flex-shrink: 0; margin-top: 3px; }
.b2b-card .btn { align-self: flex-start; }

/* ── Partner ────────────────────────────────────────────── */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 44px;
}
@media (max-width: 840px) { .partner-grid { grid-template-columns: repeat(2, 1fr); } }
.partner-tile {
  display: grid; place-items: center;
  height: 100%;
  min-height: 108px;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: var(--card);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.partner-tile:hover { border-color: var(--line); box-shadow: var(--shadow-md), var(--card-inset); }
.partner-tile img { max-height: 40px; max-width: 82%; width: auto; object-fit: contain; opacity: 0.85; filter: grayscale(0.2); transition: opacity 0.25s, filter 0.25s; }
.partner-tile:hover img { opacity: 1; filter: none; }
.partner-wordmark {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  transition: color 0.25s var(--ease);
}
.partner-tile:hover .partner-wordmark { color: var(--text); }

/* Zwei-Partner-Layout: dunkle Logo-Plaketten, beide Logos gleichwertig */
.partner-grid--duo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: var(--container-narrow);
  margin-inline: auto;
}
@media (max-width: 560px) { .partner-grid--duo { grid-template-columns: 1fr; } }
.partner-tile--plaque {
  min-height: 140px;
  padding: 26px 24px;
  background: linear-gradient(170deg, var(--navy-deep), var(--navy-darkest));
  border-color: rgba(242, 215, 137, 0.18);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.partner-tile--plaque:hover {
  border-color: rgba(242, 215, 137, 0.38);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.partner-tile--plaque img {
  max-height: var(--logo-h, 44px);
  max-width: 88%;
  opacity: 0.94;
  filter: none;
}
.partner-tile--plaque:hover img { opacity: 1; }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-list { max-width: var(--container-narrow); margin: 48px auto 0; }
.faq-item {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(170deg, var(--card), var(--bg-1));
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.faq-item.open { border-color: var(--line); box-shadow: var(--shadow-md), var(--card-inset); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 21px 26px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--cream);
  transition: color 0.2s var(--ease);
}
.faq-q:hover { color: var(--gold-bright); }
.faq-chevron {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.35s var(--ease);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-a-inner {
  padding: 0 26px 24px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 70ch;
}

/* ── Rechtstexte (Impressum) ────────────────────────────── */
.legal-page { padding-block: calc(var(--header-h) + clamp(48px, 7vw, 84px)) var(--section-pad); }
.legal-wrap { max-width: var(--container-narrow); margin-inline: auto; }
.legal-card {
  margin-top: 44px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: linear-gradient(170deg, var(--card), var(--bg-1));
  box-shadow: var(--shadow-md), var(--card-inset);
}
.legal-dl {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 20px 30px;
}
@media (max-width: 680px) { .legal-dl { grid-template-columns: 1fr; gap: 6px; } }
.legal-dl dt {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 4px;
}
.legal-dl dd { font-size: 1rem; line-height: 1.7; color: var(--text); }
@media (max-width: 680px) { .legal-dl dd { margin-bottom: 18px; } }
.legal-dl dd strong { font-weight: 700; }
.legal-block { margin-top: clamp(34px, 5vw, 52px); }
.legal-block h2 { font-size: clamp(1.15rem, 2.2vw, 1.4rem); color: var(--cream); margin-bottom: 12px; }
.legal-block p { font-size: 0.95rem; line-height: 1.8; color: var(--muted); max-width: 74ch; }
.legal-block p + p { margin-top: 14px; }
.legal-block a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.legal-block a:hover { color: var(--gold-bright); }
.legal-list {
  margin-top: 14px;
  padding-left: 4px;
  list-style: none;
  max-width: 74ch;
}
.legal-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
}
.legal-list li + li { margin-top: 6px; }
.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.legal-list + p { margin-top: 18px; }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 40px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--cream);
  transition: color 0.2s var(--ease);
}
.legal-back:hover { color: var(--gold-bright); }
.legal-back svg { flex-shrink: 0; color: var(--gold); }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--line-soft);
  background: linear-gradient(180deg, var(--navy-deep), var(--navy-darkest));
  padding: 64px 0 110px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(5, minmax(0, 1fr));
  gap: 40px 26px;
}
@media (max-width: 1240px) {
  .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 38px 30px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 1040px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px 30px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand img { height: 52px; width: auto; margin-bottom: 16px; }
.footer-brand h3 { font-size: 1.1rem; color: var(--cream); margin-bottom: 10px; }
.footer-brand p { font-size: 0.9rem; color: var(--muted); max-width: 34ch; line-height: 1.65; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; font-size: 0.9rem; color: var(--muted); line-height: 1.55; }
.footer-col a { transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-social a { display: inline-flex; align-items: center; gap: 9px; }
.footer-social svg { flex-shrink: 0; }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 0.8rem; color: rgba(188, 200, 217, 0.6);
}

/* ── Sticky CTA (Mobile) ────────────────────────────────── */
.sticky-cta {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 70;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(14, 31, 51, 0), rgba(9, 20, 34, 0.94) 40%);
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
  display: none;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .btn { width: 100%; box-shadow: 0 -4px 30px -6px var(--glow-gold), 0 8px 28px -8px var(--glow-gold); }
@media (max-width: 760px) { .sticky-cta { display: block; } }

/* ── Scroll-Reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.in { opacity: 1; transform: none; }

/* ── Schnee-Canvas ──────────────────────────────────────── */
.snow-canvas {
  position: fixed;
  inset: 0;
  z-index: 5; /* über den Sections, unter Header & Sticky-CTA */
  pointer-events: none;
}

/* ── Reduced Motion ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.15s !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ════════════════════════════════════════════════════════════
   Unterseiten (Firmen · Gruppen · Standort · Ideen)
   Nutzen dieselben Tokens, Karten und Bewegungen wie die
   Startseite – nur mit einem ruhigeren Hero-Band statt Poster.
   ════════════════════════════════════════════════════════════ */

/* ── Mobile Navigation (Burger + Panel) ─────────────────── */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  background: rgba(242, 215, 137, 0.08);
  color: var(--gold-bright);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.nav-toggle:hover { background: rgba(242, 215, 137, 0.16); border-color: var(--line); }
.nav-toggle .bars { display: block; width: 18px; height: 12px; position: relative; }
.nav-toggle .bars::before,
.nav-toggle .bars::after,
.nav-toggle .bars span {
  content: ''; position: absolute; left: 0; right: 0; height: 1.6px; border-radius: 2px;
  background: currentColor; transition: transform 0.28s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle .bars::before { top: 0; }
.nav-toggle .bars span { top: 5.2px; }
.nav-toggle .bars::after { bottom: 0; }
.nav-toggle[aria-expanded='true'] .bars::before { transform: translateY(5.2px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] .bars span { opacity: 0; }
.nav-toggle[aria-expanded='true'] .bars::after { transform: translateY(-5.2px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 10px auto 10px;
  z-index: 55;
  display: none;
  padding: 18px 20px 22px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: rgba(14, 31, 51, 0.97);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-lg);
  max-height: calc(100vh - var(--header-h) - 24px);
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.mobile-nav.open { opacity: 1; transform: none; }
.mobile-nav ul { list-style: none; }
.mobile-nav li + li { border-top: 1px solid var(--line-soft); }
.mobile-nav a {
  display: block;
  padding: 13px 4px;
  font-size: 1rem;
  color: var(--cream);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold-bright); }
.mobile-nav .btn { width: 100%; margin-top: 18px; }
@media (max-width: 1080px) {
  .nav-toggle { display: inline-flex; }
  .mobile-nav { display: block; }
}

/* ── Hero-Band der Unterseiten ──────────────────────────── */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: calc(var(--header-h) + clamp(40px, 6vw, 72px)) clamp(48px, 7vw, 82px);
  background:
    radial-gradient(90% 120% at 50% -10%, rgba(242, 215, 137, 0.14), transparent 62%),
    linear-gradient(180deg, var(--navy-darkest), var(--bg-0));
  border-bottom: 1px solid var(--line-soft);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: auto 0 -1px 0;
  height: 120px;
  background: radial-gradient(60% 100% at 50% 100%, rgba(232, 135, 60, 0.16), transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 860px; }
.page-hero.center .page-hero-inner { margin-inline: auto; text-align: center; }
.page-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.05rem, 4.6vw, 3.25rem);
  line-height: 1.08;
  color: var(--cream-bright);
  margin: 14px 0 0;
  text-wrap: balance;
}
.page-claim {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: var(--gold);
  line-height: 1.3;
  margin-top: 20px;
  text-wrap: balance;
}
.page-hero-text {
  margin-top: 16px;
  max-width: 68ch;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.7vw, 1.08rem);
  line-height: 1.75;
}
.page-hero .hero-badges { margin-top: 28px; margin-bottom: 26px; justify-content: flex-start; }
.page-hero.center .hero-badges { justify-content: center; }
.page-hero .hero-ctas { justify-content: flex-start; }
.page-hero.center .hero-ctas { justify-content: center; }

/* ── Brotkrumen ─────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(188, 200, 217, 0.75);
}
.breadcrumb a { color: var(--gold); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-bright); }
.breadcrumb .sep { opacity: 0.5; }
.page-hero.center .breadcrumb { justify-content: center; }

/* ── Textblöcke ─────────────────────────────────────────── */
.copy-block { max-width: 76ch; }
.copy-block.center { margin-inline: auto; }
.copy-block p { color: var(--muted); line-height: 1.8; font-size: 1rem; }
.copy-block p + p { margin-top: 16px; }
.copy-block p strong { color: var(--text); font-weight: 700; }
.copy-block a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.copy-block a:hover { color: var(--gold-bright); }
.section-light .copy-block p { color: #46597b; }
.section-light .copy-block p strong { color: var(--navy-text); }
.section-light .copy-block a { color: #b06a1f; }
.section-title + .copy-block { margin-top: 26px; }

/* ── Check-Liste (dunkle Sections) ──────────────────────── */
.check-list { list-style: none; display: grid; gap: 15px; margin-top: 30px; }
.check-list li {
  display: flex;
  gap: 12px;
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--muted);
}
.check-list li svg { color: var(--gold); flex-shrink: 0; margin-top: 4px; }
.check-list li strong { color: var(--text); font-weight: 700; }
.check-list--cols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 34px; }
@media (max-width: 760px) { .check-list--cols { grid-template-columns: 1fr; } }

/* ── Hinweis-Zeile ──────────────────────────────────────── */
.note-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 26px;
  padding: 16px 20px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(242, 215, 137, 0.06);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
}
.note-line svg { color: var(--ember); flex-shrink: 0; margin-top: 3px; }
.note-line strong { color: var(--text); }
.section-light .note-line { background: rgba(28, 61, 90, 0.05); border-color: rgba(28, 61, 90, 0.16); color: #46597b; }
.section-light .note-line strong { color: var(--navy-text); }

/* ── Vergleichstabellen ─────────────────────────────────── */
.cmp-table-wrap {
  margin-top: 42px;
  overflow-x: auto;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(170deg, var(--card), var(--bg-1));
  box-shadow: var(--shadow-md), var(--card-inset);
  -webkit-overflow-scrolling: touch;
}
.cmp-table { width: 100%; border-collapse: collapse; min-width: 680px; }
.cmp-table caption {
  caption-side: top;
  text-align: left;
  padding: 18px 20px 0;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.cmp-table th,
.cmp-table td {
  text-align: left;
  vertical-align: top;
  padding: 16px 20px;
  font-size: 0.93rem;
  line-height: 1.65;
  border-bottom: 1px solid var(--line-soft);
}
.cmp-table thead th {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1rem;
  color: var(--cream);
  background: rgba(14, 31, 51, 0.5);
  border-bottom-color: var(--line);
}
.cmp-table tbody th {
  width: 22%;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
}
.cmp-table tbody td { color: var(--muted); }
.cmp-table tbody tr:last-child th,
.cmp-table tbody tr:last-child td { border-bottom: none; }
.cmp-table .col-own { background: rgba(242, 215, 137, 0.07); color: var(--text); }
.cmp-table thead .col-own { background: rgba(242, 215, 137, 0.14); color: var(--cream-bright); }
.cmp-scroll-hint {
  margin-top: 12px;
  font-size: 0.8rem;
  color: rgba(188, 200, 217, 0.7);
}
@media (min-width: 721px) { .cmp-scroll-hint { display: none; } }
@media (max-width: 720px) {
  .cmp-table-wrap { border: none; background: none; box-shadow: none; overflow: visible; }
  .cmp-table { min-width: 0; display: block; }
  .cmp-table caption { padding: 0 0 6px; }
  .cmp-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
  .cmp-table tbody, .cmp-table tr, .cmp-table tbody th, .cmp-table tbody td { display: block; width: auto; }
  .cmp-table tbody tr {
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: linear-gradient(170deg, var(--card), var(--bg-1));
    box-shadow: var(--shadow-sm), var(--card-inset);
    padding: 4px 4px 12px;
  }
  .cmp-table tbody tr + tr { margin-top: 16px; }
  .cmp-table tbody th {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--cream);
    border-bottom: 1px solid var(--line-soft);
    padding-bottom: 12px;
  }
  .cmp-table tbody td { border-bottom: none; padding: 14px 20px 0; }
  .cmp-table tbody td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .cmp-table .col-own { background: none; }
  .cmp-table tbody td.col-own::before { color: var(--ember); }
}

/* ── Schritte ───────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 44px;
}
@media (max-width: 880px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card {
  height: 100%;
  padding: 30px 28px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(170deg, var(--card), var(--bg-1));
  box-shadow: var(--shadow-sm), var(--card-inset);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.step-card:hover {
  transform: translateY(var(--hover-lift));
  border-color: var(--line);
  box-shadow: var(--shadow-md), var(--card-inset);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(242, 215, 137, 0.12);
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold-bright);
}
.step-card h3 { font-size: 1.12rem; color: var(--cream); margin-bottom: 10px; }
.step-card p { font-size: 0.94rem; color: var(--muted); line-height: 1.7; }

/* ── Interne Querverweise ───────────────────────────────── */
.xlinks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
  margin-top: 40px;
}
.xlink {
  display: block;
  padding: 24px 26px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(170deg, var(--card), var(--bg-1));
  box-shadow: var(--shadow-sm), var(--card-inset);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.xlink:hover {
  transform: translateY(var(--hover-lift));
  border-color: var(--line);
  box-shadow: var(--shadow-md), var(--card-inset);
}
.xlink strong {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.08rem;
  color: var(--gold-bright);
  margin-bottom: 8px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(242, 215, 137, 0.35);
}
.xlink span { display: block; font-size: 0.92rem; color: var(--muted); line-height: 1.65; }
.section-light .xlink { background: #fff; border-color: rgba(28, 61, 90, 0.14); }
.section-light .xlink strong { color: #a05f17; text-decoration-color: rgba(160, 95, 23, 0.35); }
.section-light .xlink span { color: #46597b; }

/* ── Frage-Karten (Startseite: Info-Block unter dem Hero) ─ */
.qa-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 44px;
}
@media (max-width: 880px) { .qa-grid { grid-template-columns: 1fr; } }
.qa-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px 28px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(170deg, var(--card), var(--bg-1));
  box-shadow: var(--shadow-sm), var(--card-inset);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.qa-card:hover {
  transform: translateY(var(--hover-lift));
  border-color: var(--line);
  box-shadow: var(--shadow-md), var(--card-inset);
}
.qa-card h3 { font-size: 1.1rem; color: var(--cream); margin-bottom: 10px; }
.qa-card p { font-size: 0.94rem; color: var(--muted); line-height: 1.7; }
.qa-card p + p { margin-top: 10px; }
.qa-card .qa-link {
  margin-top: auto;
  padding-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.qa-card .qa-link:hover { color: var(--gold-bright); }
.qa-card .qa-link svg { flex-shrink: 0; }

/* ── CTA-Abschluss der Unterseiten ──────────────────────── */
.page-cta {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: clamp(36px, 5vw, 56px) clamp(26px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(90% 130% at 50% 0%, rgba(242, 215, 137, 0.13), transparent 60%),
    linear-gradient(170deg, var(--card), var(--bg-1));
  box-shadow: var(--shadow-md), var(--card-inset);
  text-align: center;
}
.page-cta h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.45rem, 3vw, 2.1rem); color: var(--cream-bright); margin-bottom: 14px; }
.page-cta p { color: var(--muted); max-width: 58ch; margin: 0 auto 28px; line-height: 1.75; }
.page-cta .hero-ctas { justify-content: center; }
.page-cta .cta-sub { margin-top: 22px; margin-bottom: 0; font-size: 0.86rem; }
.page-cta a:not(.btn) { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; }
.page-cta a:not(.btn):hover { color: var(--cream-bright); }

/* ── FAQ ohne JavaScript-Abhängigkeit (Unterseiten) ─────── */
.faq-list--static { margin-top: 44px; }
.faq-static {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(170deg, var(--card), var(--bg-1));
  box-shadow: var(--shadow-sm), var(--card-inset);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.faq-static + .faq-static { margin-top: 14px; }
.faq-static[open] { border-color: var(--line); box-shadow: var(--shadow-md), var(--card-inset); }
.faq-static > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1rem, 1.9vw, 1.1rem);
  color: var(--cream);
  transition: color 0.2s;
}
.faq-static > summary::-webkit-details-marker { display: none; }
.faq-static > summary:hover { color: var(--gold-bright); }
.faq-static > summary::after {
  content: '';
  flex-shrink: 0;
  width: 11px;
  height: 11px;
  border-right: 1.8px solid var(--gold);
  border-bottom: 1.8px solid var(--gold);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.3s var(--ease);
}
.faq-static[open] > summary::after { transform: rotate(-135deg) translateY(-2px); }
.faq-static .faq-static-body { padding: 0 26px 24px; }
.faq-static .faq-static-body p { font-size: 0.95rem; line-height: 1.8; color: var(--muted); }
.faq-static .faq-static-body p + p { margin-top: 12px; }
.faq-static .faq-static-body a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
