/* ============================================================
   SYNERGY FLOW FESTIVAL 2026 — Design System v2
   Premium Mystical | antique gold · cosmic navy · warm ivory
   CI v2 — Mai 2026 (Basis: Flyer v2)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=Cinzel:wght@400;600;700;900&family=Inter:wght@300;400;500;600&display=swap');

/* ── Custom Properties ─────────────────────────────────── */
:root {
  /* Hintergründe */
  --bg:          #04071A;
  --bg-deep:     #020412;
  --bg-nebula:   #0B1F6E;
  --bg-2:        #090D2E;
  --bg-card:     #0D1438;
  --bg-card2:    #111B4A;

  /* Gold (antik — kein Neon-Gelb) */
  --gold:        #C8921A;
  --gold-bright: #D4A828;
  --gold-dim:    #8B6410;
  --gold-sparkle:#FFE566;

  /* Feuer (sekundärer Akzent) */
  --fire:        #E05A1A;
  --fire-dim:    #A83E10;
  --ember:       #6B1800;

  /* Text */
  --text:        #EEE4C4;
  --text-dim:    #D4C8A0;
  --muted:       #8A7B6C;

  /* Borders / Glass */
  --border:      rgba(200, 146, 26, 0.2);
  --glass:       rgba(200, 146, 26, 0.06);
  --glass-2:     rgba(200, 146, 26, 0.04);
  --ornament:    rgba(200, 146, 26, 0.4);

  /* Schatten */
  --shadow:      0 8px 40px rgba(0, 0, 0, 0.75);
  --glow-gold:   0 0 24px rgba(200, 146, 26, 0.18);

  /* Radien / Timing */
  --radius:    12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Fonts */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-label:   'Cinzel', serif;
  --font-body:    'Inter', sans-serif;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utilities ──────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}
.section { padding: clamp(5.5rem, 11vw, 9rem) 0; }
.section-label {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.section-title span { color: var(--gold); }
.section-subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.9;
  font-weight: 300;
}
.gold { color: var(--gold); }
.fire { color: var(--fire); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.25rem;
  border-radius: 999px;
  font-family: var(--font-label);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
  color: #111;
  box-shadow: 0 4px 20px rgba(200, 146, 26, 0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  box-shadow: 0 6px 32px rgba(200, 146, 26, 0.5);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text-dim);
  border: 1.5px solid rgba(200, 146, 26, 0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200, 146, 26, 0.06);
  transform: translateY(-2px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 60%, var(--gold-dim) 100%);
  color: #111;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(200, 146, 26, 0.35);
}
.btn-gold:hover {
  box-shadow: 0 6px 32px rgba(200, 146, 26, 0.55);
  transform: translateY(-2px);
  filter: brightness(1.08);
}

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}
.nav.scrolled {
  background: rgba(4, 7, 26, 0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-label);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  letter-spacing: 0.12em;
}
.nav-logo svg { width: 28px; height: 28px; flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-cta { margin-left: 1rem; }
.nav-cta .btn-primary { color: #111 !important; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav.open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-hamburger span:nth-child(2) { opacity: 0; }
.nav.open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-date-bar {
  text-align: center;
  padding: 0.45rem 0;
  border-top: 1px solid rgba(200, 146, 26, 0.15);
  font-family: var(--font-label);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--gold);
  opacity: 0.9;
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(4, 7, 26, 0.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
    z-index: -1;
  }
  .nav.open .nav-links {
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a { font-size: 1rem; color: var(--text); }
  .nav-cta { margin-left: 0; }
}

/* ── Hero ───────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/images/hero.jpg') center 40% / cover no-repeat;
  filter: brightness(0.45) saturate(0.9);
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 45% 65% at 12% 50%, rgba(11, 31, 110, 0.5) 0%, transparent 60%),
    radial-gradient(ellipse 45% 65% at 88% 50%, rgba(11, 31, 110, 0.45) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 50% 38%, rgba(200, 146, 26, 0.07) 0%, transparent 65%),
    linear-gradient(to top,
      rgba(4, 7, 26, 0.98) 0%,
      rgba(4, 7, 26, 0.55) 30%,
      rgba(4, 7, 26, 0.35) 60%,
      rgba(4, 7, 26, 0.82) 100%);
  z-index: 1;
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.hero-particles .particle {
  position: absolute;
  bottom: -10px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-sparkle);
  opacity: 0;
  animation: rise linear infinite;
}
@keyframes rise {
  0%   { opacity: 0; transform: translateY(0) scale(1); }
  15%  { opacity: 0.6; }
  80%  { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-80vh) scale(0.2); }
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 1.5rem;
}
.hero-festival-name {
  font-family: var(--font-label);
  font-size: clamp(0.65rem, 2.2vw, 2rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--text-dim);
  margin-bottom: 1.2rem;
}
/* legacy, keep for legal pages */
.hero-eyebrow {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 4.8rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 2rem;
}
.hero-title .fire-word {
  background: linear-gradient(135deg,
    var(--gold-dim)    0%,
    var(--gold)        30%,
    var(--gold-sparkle) 60%,
    var(--gold)        80%,
    var(--gold-dim)    100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shine 5s linear infinite;
}
@keyframes shine {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.hero-subtitle {
  font-family: var(--font-label);
  font-size: clamp(0.85rem, 1.8vw, 1.1rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2.5rem;
}
.hero-slogan {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 24px rgba(200, 146, 26, 0.35);
}
.hero-date {
  font-family: var(--font-label);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
  opacity: 0.9;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.hero-tag {
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(200, 146, 26, 0.22);
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: rgba(200, 146, 26, 0.05);
  transition: var(--transition);
}
.hero-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200, 146, 26, 0.1);
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── About ──────────────────────────────────────────────── */
#about { background: var(--bg-2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 3rem; } }
.about-text p {
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.95;
  font-size: 1rem;
  font-weight: 300;
}
.about-text p:last-child { margin-bottom: 0; }
.about-themes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.theme-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.1rem;
  transition: var(--transition);
}
.theme-card:hover {
  background: rgba(200, 146, 26, 0.08);
  border-color: rgba(200, 146, 26, 0.3);
  transform: translateY(-2px);
}
.theme-card .icon {
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
}
.theme-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  font-style: italic;
  color: var(--text);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.theme-card p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Stages ─────────────────────────────────────────────── */
#stages { background: var(--bg); }
.stages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 960px) { .stages-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .stages-grid { grid-template-columns: 1fr; } }
.stage-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.stage-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), var(--gold), var(--gold-dim), transparent);
  opacity: 0;
  transition: var(--transition);
}
.stage-card:hover {
  background: rgba(200, 146, 26, 0.07);
  border-color: rgba(200, 146, 26, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--glow-gold);
}
.stage-card:hover::before { opacity: 1; }
.stage-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.stage-name {
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.stage-tagline {
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-dim);
  margin-bottom: 0.85rem;
  font-family: var(--font-label);
  font-size: 0.65rem;
}
.stage-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
}

/* ── Programm ───────────────────────────────────────────── */
#programm { background: var(--bg-2); }
.programm-coming-soon {
  text-align: center;
  padding: 4rem 0;
}
.fire-banner {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card2));
  border: 1px solid rgba(200, 146, 26, 0.25);
  border-radius: var(--radius-lg);
  padding: 3rem 4rem;
  max-width: 600px;
  width: 100%;
  overflow: hidden;
}
.fire-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(200, 146, 26, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.fire-banner-icon { font-size: 3rem; margin-bottom: 1rem; animation: flicker 2s ease-in-out infinite alternate; }
@keyframes flicker {
  0%   { filter: brightness(1); transform: scale(1); }
  100% { filter: brightness(1.2); transform: scale(1.04); }
}
.fire-banner h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.fire-banner p { color: var(--muted); margin-bottom: 1.5rem; font-size: 0.95rem; font-weight: 300; }
.days-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.plan-2025-archive {
  margin-top: 3.5rem;
  padding: 2rem 2rem 2.5rem;
  border: 1px solid rgba(200, 146, 26, 0.15);
  border-radius: 8px;
  background: rgba(9, 13, 46, 0.6);
}
.plan-2025-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(200, 146, 26, 0.18);
  padding: 0.35rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.plan-2025-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  font-weight: 500;
  color: var(--text-dim);
  margin-bottom: 0.4rem;
}
.plan-2025-sub {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 2rem;
  font-weight: 300;
}
.programm-tab-wrapper { margin-top: 2rem; }
.programm-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}
.programm-tab-btn {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.85rem 1.8rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: -1px;
}
.programm-tab-btn:hover { color: var(--text); }
.programm-tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.programm-tab-content { display: none; }
.programm-tab-content.active { display: block; }
@media (max-width: 600px) { .days-preview { grid-template-columns: repeat(2, 1fr); } }
.day-tile {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1rem;
  text-align: center;
  transition: var(--transition);
}
.day-tile:hover {
  border-color: rgba(200, 146, 26, 0.3);
  background: rgba(200, 146, 26, 0.06);
  transform: translateY(-3px);
}
.day-tile .day-name {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.day-tile .day-date {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.2rem;
  line-height: 1;
}
.day-tile .day-month {
  font-family: var(--font-label);
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ── Tickets ────────────────────────────────────────────── */
#tickets { background: var(--bg); }
.tickets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 960px) { .tickets-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tickets-grid { grid-template-columns: 1fr; } }
.ticket-card {
  background: linear-gradient(160deg, var(--bg-card), rgba(13, 20, 56, 0.5));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.ticket-card.featured {
  border-color: rgba(200, 146, 26, 0.4);
  background: linear-gradient(160deg, var(--bg-card2), var(--bg-card));
  box-shadow: 0 0 0 1px rgba(200, 146, 26, 0.1), var(--glow-gold);
}
.ticket-card.featured::before {
  content: 'BELIEBT';
  position: absolute;
  top: 1rem; right: -2.2rem;
  background: var(--gold);
  color: var(--bg-deep);
  font-family: var(--font-label);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.25rem 3rem;
  transform: rotate(45deg);
  transform-origin: center;
}
.ticket-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow), var(--glow-gold);
  border-color: rgba(200, 146, 26, 0.35);
}
.ticket-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.ticket-type {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.ticket-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.ticket-price sup { font-size: 1rem; vertical-align: top; margin-top: 0.6rem; font-family: var(--font-label); }
.ticket-price-note { font-size: 0.72rem; color: var(--muted); margin-bottom: 1.75rem; letter-spacing: 0.02em; }
.ticket-features {
  flex: 1;
  margin-bottom: 1.75rem;
}
.ticket-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.65rem;
  line-height: 1.55;
  font-weight: 300;
}
.ticket-features li::before {
  content: '✦';
  color: var(--gold-dim);
  font-size: 0.55rem;
  flex-shrink: 0;
  margin-top: 0.3rem;
}

/* ── Ort ────────────────────────────────────────────────── */
#ort { background: var(--bg-2); }
.ort-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
  margin-top: 3rem;
}
@media (max-width: 768px) { .ort-grid { grid-template-columns: 1fr; } }
.ort-capacity {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200, 146, 26, 0.08);
  border: 1px solid rgba(200, 146, 26, 0.25);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.ort-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.75rem 0;
}
.ort-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-dim);
  transition: var(--transition);
}
.ort-feature:hover {
  border-color: rgba(200, 146, 26, 0.3);
  color: var(--gold);
}
.ort-feature span:first-child { font-size: 1rem; }
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
}
.map-container iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── Anreise ────────────────────────────────────────────── */
#anreise { background: var(--bg); }
.anreise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 700px) { .anreise-grid { grid-template-columns: 1fr; } }
.anreise-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  text-align: center;
  transition: var(--transition);
}
.anreise-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 146, 26, 0.3);
  background: rgba(200, 146, 26, 0.06);
}
.anreise-icon { font-size: 2.25rem; margin-bottom: 1.1rem; }
.anreise-card h3 {
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.anreise-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.8; margin-bottom: 0.4rem; font-weight: 300; }
.anreise-card a { color: var(--gold-dim); font-size: 0.82rem; font-weight: 500; transition: color var(--transition); }
.anreise-card a:hover { color: var(--gold); }

/* ── Vergangene Festivals ───────────────────────────────── */
#vergangene-festivals { background: var(--bg-2); }

.year-tabs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 2.5rem 0 0;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}
.year-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  cursor: pointer;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted);
  transition: var(--transition);
}
.year-tab:hover { color: var(--text); }
.year-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.year-tab-badge {
  font-size: 0.65rem;
  background: var(--glass);
  border: 1px solid var(--border);
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  color: var(--muted);
}
.year-tab.active .year-tab-badge {
  background: rgba(200, 146, 26, 0.1);
  border-color: rgba(200, 146, 26, 0.3);
  color: var(--gold);
}

.year-content { display: none; padding: 2.5rem 0 0; }
.year-content.active { display: block; }

.archive-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.archive-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(200, 146, 26, 0.1);
  border: 1px solid rgba(200, 146, 26, 0.3);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.archive-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  font-style: italic;
  color: var(--text);
}
.archive-motto { color: var(--gold); font-size: 0.9rem; margin-left: auto; font-style: italic; }

/* Sub-tabs */
.sub-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.sub-tab {
  padding: 0.6rem 1.5rem;
  cursor: pointer;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
  transition: var(--transition);
}
.sub-tab:hover { color: var(--text); }
.sub-tab.active {
  background: rgba(200, 146, 26, 0.1);
  border-color: rgba(200, 146, 26, 0.35);
  color: var(--gold);
}

.sub-content { display: none; }
.sub-content.active { display: block; }

/* Workshop Leaders Grid */
.wl-category {
  margin-bottom: 2.5rem;
}
.wl-category-title {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(200, 146, 26, 0.2);
}
.wl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) { .wl-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .wl-grid { grid-template-columns: 1fr; } }
.wl-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: var(--transition);
}
.wl-card:hover { border-color: rgba(200, 146, 26, 0.25); transform: translateY(-2px); }
.wl-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  font-style: italic;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.wl-workshop {
  font-size: 0.78rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 0.4rem;
  line-height: 1.5;
}
.wl-stage {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  border: 1px solid;
}
.wl-stage.evolution  { color: #7B9CFF; border-color: rgba(123,156,255,0.3); background: rgba(123,156,255,0.08); }
.wl-stage.gaia       { color: #5FBF76; border-color: rgba(95,191,118,0.3); background: rgba(95,191,118,0.08); }
.wl-stage.embodiment { color: #FF8C6B; border-color: rgba(255,140,107,0.3); background: rgba(255,140,107,0.08); }
.wl-stage.ecstatic   { color: #E066FF; border-color: rgba(224,102,255,0.3); background: rgba(224,102,255,0.08); }
.wl-stage.love       { color: #FF6B9D; border-color: rgba(255,107,157,0.3); background: rgba(255,107,157,0.08); }
.wl-stage.sourcecode { color: #66D4FF; border-color: rgba(102,212,255,0.3); background: rgba(102,212,255,0.08); }
.wl-stage.music      { color: var(--gold); border-color: rgba(200,146,26,0.3); background: rgba(200,146,26,0.08); }
.wl-stage.therapy    { color: #B8FF85; border-color: rgba(184,255,133,0.3); background: rgba(184,255,133,0.08); }
.wl-stage.fire       { color: var(--fire); border-color: rgba(224,90,26,0.3); background: rgba(224,90,26,0.08); }

/* Schedule Table */
.schedule-wrapper { overflow-x: auto; }
.schedule-days { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.schedule-day-btn {
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition: var(--transition);
  white-space: nowrap;
}
.schedule-day-btn:hover { color: var(--text); }
.schedule-day-btn.active {
  background: rgba(200, 146, 26, 0.1);
  border-color: rgba(200, 146, 26, 0.3);
  color: var(--gold);
}

.schedule-table-wrap { display: none; overflow-x: auto; }
.schedule-table-wrap.active { display: block; }
.schedule-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.8rem;
}
.schedule-table th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.schedule-table th:first-child { color: var(--muted); min-width: 90px; }
.schedule-table th.evo  { color: #7B9CFF; }
.schedule-table th.gaia { color: #5FBF76; }
.schedule-table th.emb  { color: #FF8C6B; }
.schedule-table th.ecs  { color: #E066FF; }
.schedule-table th.love { color: #FF6B9D; }
.schedule-table th.src  { color: #66D4FF; }
.schedule-table td {
  padding: 0.85rem 1rem;
  vertical-align: top;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  line-height: 1.5;
}
.schedule-table td:first-child {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
  white-space: nowrap;
}
.schedule-table tr:hover td { background: rgba(200, 146, 26, 0.02); }
.sched-item {
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
  padding: 0.4rem 0.6rem;
  margin-bottom: 0.35rem;
  font-size: 0.75rem;
  color: var(--text);
}
.sched-item .sched-name { font-weight: 500; margin-bottom: 0.1rem; }
.sched-item .sched-workshop { color: var(--muted); font-size: 0.68rem; }
.sched-music {
  background: rgba(200, 146, 26, 0.08);
  border: 1px solid rgba(200, 146, 26, 0.2);
  border-radius: 6px;
  padding: 0.4rem 0.6rem;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 500;
}
.sched-empty { color: rgba(255,255,255,0.08); font-size: 0.7rem; }

/* ── Team ───────────────────────────────────────────────── */
#team { background: var(--bg); }
.team-intro {
  max-width: 640px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.95;
  margin-bottom: 3.5rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
}
.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 146, 26, 0.3);
  box-shadow: var(--glow-gold);
}
.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--bg-deep);
  margin-bottom: 1.5rem;
}
.team-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  font-style: italic;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.team-role {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--gold-dim);
  font-weight: 400;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.team-quote {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.85;
  font-style: italic;
  font-weight: 300;
}
.team-quote::before { content: '„'; color: var(--gold-dim); }
.team-quote::after  { content: '"'; color: var(--gold-dim); }
.team-contact {
  margin-top: 3.5rem;
  text-align: center;
}
.team-contact p { color: var(--muted); margin-bottom: 1.25rem; font-weight: 300; }

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.footer-brand {}
.footer-logo {
  font-family: var(--font-label);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}
.footer-logo svg { width: 26px; height: 26px; }
.footer-slogan {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.85; max-width: 280px; font-weight: 300; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: rgba(200, 146, 26, 0.12);
  border-color: rgba(200, 146, 26, 0.4);
}
.footer-col h4 {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul a { font-size: 0.82rem; color: var(--muted); transition: color var(--transition); font-weight: 300; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.75rem; color: var(--muted); font-weight: 300; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.75rem; color: var(--muted); transition: color var(--transition); }
.footer-legal a:hover { color: var(--gold); }

/* ── Ornamentale Section-Trennlinie ─────────────────────── */
.section-ornament {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0;
  color: var(--gold-dim);
  font-size: 0.5rem;
  letter-spacing: 0.7em;
  opacity: 0.5;
  pointer-events: none;
}
.section-ornament::before,
.section-ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ornament), transparent);
}

/* ── Vision Section ─────────────────────────────────────── */
#vision { background: var(--bg); }
.vision-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.vision-content p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 2.1;
  margin-bottom: 1.75rem;
  font-weight: 300;
}
.vision-quote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  margin-top: 3rem;
  letter-spacing: 0.02em;
  opacity: 0.9;
  line-height: 1.6;
}

/* ── Theme card question ────────────────────────────────── */
.theme-question {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1.55;
  margin-top: 0.6rem;
  opacity: 0.8;
}

/* ── Downloads Section ──────────────────────────────────── */
#downloads { background: var(--bg-2); }
.downloads-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 600px) { .downloads-grid { grid-template-columns: 1fr; } }
.download-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  cursor: pointer;
}
.download-card:hover {
  border-color: rgba(200, 146, 26, 0.4);
  background: rgba(200, 146, 26, 0.07);
  transform: translateY(-3px);
  box-shadow: var(--shadow), var(--glow-gold);
}
.download-card-icon { font-size: 2.25rem; flex-shrink: 0; }
.download-card h3 {
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.download-card p { font-size: 0.8rem; color: var(--muted); line-height: 1.65; font-weight: 300; }

/* ── Team photo ─────────────────────────────────────────── */
.team-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(200, 146, 26, 0.5);
  margin-bottom: 1.5rem;
  display: block;
}

/* ── Legal page ─────────────────────────────────────────── */
.legal-page { padding: 8rem 0 5rem; }
.legal-page h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-style: italic;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2rem;
}
.legal-page h2 {
  font-family: var(--font-label);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 2rem 0 0.75rem;
}
.legal-page p, .legal-page li {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 0.75rem;
  font-weight: 300;
}
.legal-page a { color: var(--gold-dim); }
.legal-page a:hover { color: var(--gold); }

/* ── Scrollbar ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: rgba(200, 146, 26, 0.25); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(200, 146, 26, 0.45); }

/* ── Selection ──────────────────────────────────────────── */
::selection { background: rgba(200, 146, 26, 0.25); color: var(--text); }
