/* ============================================================
   SYNERGY FLOW FESTIVAL 2026 — Design System
   Dark & Mystisch | fire orange · deep purple · gold
   ============================================================ */

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

/* ── Custom Properties ─────────────────────────────────── */
:root {
  --bg:        #020F08;
  --bg-2:      #041508;
  --bg-card:   #06190B;
  --bg-card2:  #092112;
  --fire:      #FF6B2B;
  --fire-dim:  #C84B2F;
  --gold:      #F5C842;
  --gold-dim:  #B89A20;
  --ember:     #FF3D00;
  --text:      #F0EAD6;
  --muted:     #9A8B7C;
  --border:    rgba(245, 200, 66, 0.18);
  --glass:     rgba(245, 200, 66, 0.06);
  --glass-2:   rgba(255, 107, 43, 0.06);
  --shadow:    0 8px 32px rgba(0, 0, 0, 0.6);
  --radius:    12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: '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);
  line-height: 1.7;
  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(5rem, 10vw, 8rem) 0; }
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.section-title span { color: var(--gold); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.8;
}
.gold { color: var(--gold); }
.fire { color: var(--fire); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s 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.85rem 2rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--fire), var(--fire-dim));
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 107, 43, 0.4);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #ff8a55, var(--fire));
  box-shadow: 0 6px 28px rgba(255, 107, 43, 0.6);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(240, 234, 214, 0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--bg);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(245, 200, 66, 0.3);
}
.btn-gold:hover {
  box-shadow: 0 6px 28px rgba(245, 200, 66, 0.5);
  transform: translateY(-2px);
}

/* ── 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(13, 8, 24, 0.92);
  backdrop-filter: blur(16px);
  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-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  letter-spacing: 0.08em;
}
.nav-logo svg { width: 28px; height: 28px; flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-cta { margin-left: 1rem; }
.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.35rem 0;
  border-top: 1px solid rgba(245, 200, 66, 0.15);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
  opacity: 0.85;
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(13, 8, 24, 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: 1.2rem; 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.55) saturate(1.1);
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 55% at 50% 52%,
      rgba(245, 200, 66, 0.08) 0%,
      rgba(2, 50, 20, 0.1) 40%,
      transparent 70%),
    linear-gradient(to top,
      rgba(2, 15, 8, 0.97) 0%,
      rgba(2, 15, 8, 0.45) 35%,
      rgba(2, 15, 8, 0.55) 70%,
      rgba(2, 15, 8, 0.8) 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: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--fire);
  opacity: 0;
  animation: rise linear infinite;
}
@keyframes rise {
  0%   { opacity: 0; transform: translateY(0) scale(1); }
  15%  { opacity: 0.8; }
  80%  { opacity: 0.3; }
  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-display);
  font-size: clamp(1.6rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.3rem;
  text-shadow: 0 4px 40px rgba(255, 107, 43, 0.2);
}
/* legacy, keep for legal pages */
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  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(1.3rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 20px rgba(255, 107, 43, 0.25);
}
.hero-title .fire-word {
  background: linear-gradient(135deg, var(--fire) 0%, var(--gold) 60%, var(--fire) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shine 4s linear infinite;
}
@keyframes shine {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2.5rem;
}
.hero-slogan {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2vw, 1.4rem);
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 2.5rem;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 20px rgba(245, 200, 66, 0.4);
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.hero-tag {
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 200, 66, 0.25);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
  background: rgba(245, 200, 66, 0.06);
  transition: var(--transition);
}
.hero-tag:hover { border-color: var(--gold); color: var(--gold); background: rgba(245,200,66,0.12); }
.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-size: 0.7rem;
  letter-spacing: 0.15em;
  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: 4rem;
  align-items: start;
}
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.about-text p {
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.85;
  font-size: 1.05rem;
}
.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.25rem 1rem;
  transition: var(--transition);
}
.theme-card:hover {
  background: rgba(255,107,43,0.12);
  border-color: rgba(255,107,43,0.3);
  transform: translateY(-2px);
}
.theme-card .icon {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}
.theme-card h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.theme-card p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── 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: 2rem 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.stage-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fire), var(--gold));
  opacity: 0;
  transition: var(--transition);
}
.stage-card:hover {
  background: rgba(255,107,43,0.1);
  border-color: rgba(255,107,43,0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.stage-card:hover::before { opacity: 1; }
.stage-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}
.stage-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.stage-tagline {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fire);
  margin-bottom: 0.75rem;
}
.stage-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── 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(255,107,43,0.3);
  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(255,107,43,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.fire-banner-icon { font-size: 3.5rem; margin-bottom: 1rem; animation: flicker 1.5s ease-in-out infinite alternate; }
@keyframes flicker {
  0%   { filter: brightness(1); transform: scale(1); }
  100% { filter: brightness(1.3); transform: scale(1.05); }
}
.fire-banner h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.fire-banner p { color: var(--muted); margin-bottom: 1.5rem; font-size: 0.95rem; }
.days-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
@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.5rem 1rem;
  text-align: center;
  transition: var(--transition);
}
.day-tile:hover { border-color: rgba(255,107,43,0.3); transform: translateY(-3px); }
.day-tile .day-name {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.day-tile .day-date {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.15rem;
  line-height: 1;
}
.day-tile .day-month { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }

/* ── Tickets ────────────────────────────────────────────── */
#tickets { background: var(--bg); }
.tickets-grid {
  display: grid;
  grid-template-columns: repeat(4, 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: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.ticket-card.featured {
  border-color: rgba(245, 200, 66, 0.4);
  background: linear-gradient(160deg, var(--bg-card2), var(--bg-card));
}
.ticket-card.featured::before {
  content: 'BELIEBT';
  position: absolute;
  top: 1rem; right: -2rem;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.65rem;
  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);
  border-color: rgba(255,107,43,0.3);
}
.ticket-icon { font-size: 2rem; margin-bottom: 1rem; }
.ticket-type {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.ticket-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.ticket-price sup { font-size: 1rem; vertical-align: top; margin-top: 0.5rem; }
.ticket-price-note { font-size: 0.75rem; color: var(--muted); margin-bottom: 1.5rem; }
.ticket-features {
  flex: 1;
  margin-bottom: 1.5rem;
}
.ticket-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
  line-height: 1.5;
}
.ticket-features li::before {
  content: '✦';
  color: var(--fire);
  font-size: 0.6rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

/* ── Ort ────────────────────────────────────────────────── */
#ort { background: var(--bg-2); }
.ort-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}
@media (max-width: 768px) { .ort-grid { grid-template-columns: 1fr; } }
.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.82rem;
  font-weight: 500;
  color: var(--text);
}
.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: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.anreise-card:hover { transform: translateY(-4px); border-color: rgba(255,107,43,0.3); }
.anreise-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.anreise-card h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.anreise-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.75; margin-bottom: 0.4rem; }
.anreise-card a { color: var(--fire); font-size: 0.82rem; font-weight: 500; }
.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-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  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.7rem;
  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(245,200,66,0.12); border-color: rgba(245,200,66,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(255,107,43,0.12);
  border: 1px solid rgba(255,107,43,0.3);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--fire);
  letter-spacing: 0.06em;
}
.archive-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  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-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: var(--transition);
}
.sub-tab:hover { color: var(--text); }
.sub-tab.active {
  background: rgba(255,107,43,0.15);
  border-color: rgba(255,107,43,0.4);
  color: var(--fire);
}

.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-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,107,43,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(255,107,43,0.25); transform: translateY(-2px); }
.wl-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  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-size: 0.65rem;
  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(245,200,66,0.3); background: rgba(245,200,66,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(255,107,43,0.3); background: rgba(255,107,43,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-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: var(--transition);
  white-space: nowrap;
}
.schedule-day-btn:hover { color: var(--text); }
.schedule-day-btn.active { background: rgba(245,200,66,0.12); border-color: rgba(245,200,66,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-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  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.05);
  line-height: 1.5;
}
.schedule-table td:first-child {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}
.schedule-table tr:hover td { background: rgba(255,255,255,0.02); }
.sched-item {
  background: rgba(255,255,255,0.04);
  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: 600; margin-bottom: 0.1rem; }
.sched-item .sched-workshop { color: var(--muted); font-size: 0.68rem; }
.sched-music {
  background: rgba(245,200,66,0.08);
  border: 1px solid rgba(245,200,66,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.1); font-size: 0.7rem; }

/* ── Team ───────────────────────────────────────────────── */
#team { background: var(--bg); }
.team-intro {
  max-width: 640px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 3rem;
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@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(245,200,66,0.25); }
.team-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fire), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 1.25rem;
}
.team-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.team-role {
  font-size: 0.78rem;
  color: var(--fire);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.team-quote {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.8;
  font-style: italic;
}
.team-quote::before { content: '„'; color: var(--gold); }
.team-quote::after  { content: '"'; color: var(--gold); }
.team-contact {
  margin-top: 3rem;
  text-align: center;
}
.team-contact p { color: var(--muted); margin-bottom: 1.25rem; }

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.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-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}
.footer-logo svg { width: 26px; height: 26px; }
.footer-slogan {
  font-size: 0.9rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 1rem;
}
.footer-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.8; max-width: 280px; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.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(255,107,43,0.15); border-color: rgba(255,107,43,0.3); }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.85rem; color: var(--muted); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: gap;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.78rem; color: var(--muted); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.78rem; color: var(--muted); transition: color var(--transition); }
.footer-legal a:hover { color: var(--text); }

/* ── Divider ornament ───────────────────────────────────── */
.section-divider {
  text-align: center;
  margin: 0 auto 2rem;
  color: var(--gold-dim);
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  opacity: 0.5;
}

/* ── Legal page ─────────────────────────────────────────── */
.legal-page { padding: 8rem 0 5rem; }
.legal-page h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--text);
  margin-bottom: 2rem;
}
.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  margin: 2rem 0 0.75rem;
}
.legal-page p, .legal-page li {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 0.75rem;
}
.legal-page a { color: var(--fire); }

/* ── Scrollbar ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,107,43,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,107,43,0.5); }

/* ── Selection ──────────────────────────────────────────── */
::selection { background: rgba(255,107,43,0.3); color: var(--text); }
