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

:root {
  --bg: #080808;
  --bg-surface: #111111;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222222;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --accent-light: #fde68a;
  --green: #4ade80;
  --green-dark: #16a34a;
  --text: #f5f5f5;
  --text-muted: #9ca3af;
  --text-faint: #4b5563;
  --border: #222222;
  --border-accent: #f59e0b40;
  --radius: 12px;
  --radius-lg: 20px;
  --nav-h: 72px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  letter-spacing: 0.02em;
  line-height: 1;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 24px;
  color: var(--text);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo .logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-cta {
  background: var(--accent);
  color: #000 !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 700 !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
  background: var(--accent-light) !important;
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

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

.nav-mobile {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 28px 24px calc(28px + env(safe-area-inset-bottom));

  /* Liquid glass — translucent so the page stays visible behind it */
  background:
    radial-gradient(130% 80% at 100% 0%, rgba(245, 158, 11, 0.12), transparent 55%),
    radial-gradient(110% 70% at 0% 100%, rgba(74, 222, 128, 0.07), transparent 55%),
    linear-gradient(180deg, rgba(16, 16, 18, 0.55), rgba(8, 8, 8, 0.68));
  backdrop-filter: blur(22px) saturate(165%);
  -webkit-backdrop-filter: blur(22px) saturate(165%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 24px 60px rgba(0, 0, 0, 0.45);

  /* Hidden state — animatable (no display toggle) */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-14px);
  pointer-events: none;
  transition:
    opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.5s;
}

.nav-mobile.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition:
    opacity 0.35s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s;
}

.nav-mobile a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 16px 14px;
  border-radius: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);

  /* Per-link entrance — staggered below */
  opacity: 0;
  transform: translateY(16px);
  transition:
    color 0.25s ease,
    background 0.25s ease,
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-mobile.open a {
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile.open a:nth-child(1) { transition-delay: 0.07s; }
.nav-mobile.open a:nth-child(2) { transition-delay: 0.12s; }
.nav-mobile.open a:nth-child(3) { transition-delay: 0.17s; }
.nav-mobile.open a:nth-child(4) { transition-delay: 0.22s; }
.nav-mobile.open a:nth-child(5) { transition-delay: 0.27s; }
.nav-mobile.open a:nth-child(6) { transition-delay: 0.32s; }
.nav-mobile.open a:nth-child(7) { transition-delay: 0.37s; }

.nav-mobile a:hover,
.nav-mobile a:active {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
}

.nav-mobile a:last-child {
  color: var(--accent);
  border-bottom-color: transparent;
}

/* Blend the top bar into the glass while the menu is open */
body.nav-open .nav {
  background: rgba(8, 8, 8, 0.55);
  backdrop-filter: blur(22px) saturate(165%);
  -webkit-backdrop-filter: blur(22px) saturate(165%);
  border-bottom-color: transparent;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, #f59e0b18 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, #4ade8010 0%, transparent 50%),
    radial-gradient(ellipse 40% 60% at 10% 90%, #f59e0b08 0%, transparent 50%),
    linear-gradient(180deg, #0a0a0a 0%, #080808 100%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 100%);
  opacity: 0.4;
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(5rem, 15vw, 12rem);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.02em;
  line-height: 0.9;
  margin-bottom: 0.72em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-title .hero-word {
  background: linear-gradient(135deg, #ffffff 0%, #f59e0b 50%, #ffffff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.hero-tagline .separator {
  color: var(--accent);
  font-size: 1.4em;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: #000;
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent)40;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--bg-card);
  border-color: var(--text-faint);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-faint);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  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; }

/* ===== WAT SECTION ===== */
.section-wat {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.wat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.wat-visual {
  position: relative;
}

.wat-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.wat-icon-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}

.wat-icon-card:hover {
  border-color: var(--accent);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.wat-icon-card .icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}

.wat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
  animation: headBobSoft 3.6s ease-in-out infinite;
}

.wat-icon svg {
  width: 42px;
  height: 42px;
  display: block;
}

/* Staggered float so the four icons don't move in lockstep */
.wat-icon-card:nth-child(1) .wat-icon { animation-delay: 0s; }
.wat-icon-card:nth-child(2) .wat-icon { animation-delay: 0.5s; }
.wat-icon-card:nth-child(3) .wat-icon { animation-delay: 1s; }
.wat-icon-card:nth-child(4) .wat-icon { animation-delay: 1.5s; }

.wat-icon-card:hover .wat-icon {
  animation: wiggle 0.6s ease;
  color: var(--accent-light);
}

.wat-icon-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 8px;
}

.wat-icon-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.wat-icon-card.accent {
  border-color: var(--border-accent);
  background: linear-gradient(135deg, #1a1500 0%, var(--bg-card) 100%);
}

.wat-text .section-subtitle {
  margin-bottom: 32px;
}

.year-since {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 24px;
}

.year-since strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
}

.year-since span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== HOE SECTION ===== */
.hoe-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.step-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.step-card:hover::before {
  opacity: 1;
}

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: var(--text-faint);
  line-height: 1;
  margin-bottom: 24px;
  transition: color var(--transition);
}

.step-card:hover .step-num {
  color: var(--accent)30;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  color: var(--text);
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== VOOR WIE SECTION ===== */
.section-voorwie {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.voorwie-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.voorwie-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  color: var(--text);
}

.voorwie-quote em {
  font-style: normal;
  color: var(--accent);
}

.voorwie-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.detail-item:hover {
  border-color: var(--border-accent);
  transform: translateX(4px);
}

.detail-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.detail-item h4 {
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0;
  margin-bottom: 4px;
}

.detail-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== SCHEDULE SECTION ===== */
.schedule-year {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.stage-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stage-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.stage-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.stage-icon.amber { background: #f59e0b20; }
.stage-icon.green { background: #4ade8020; }
.stage-icon.red { background: #ef444420; }

.stage-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}

.stage-slot-list {
  padding: 12px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stage-slot {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 12px;
  border-radius: 8px;
  transition: background var(--transition);
}

.stage-slot:hover {
  background: var(--bg-card-hover);
}

.slot-time {
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
  min-width: 52px;
}

.slot-act {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.4;
}

.slot-act small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.slot-act .tag {
  display: inline-block;
  background: var(--accent)20;
  color: var(--accent);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ===== HISTORY SECTION ===== */
.section-history {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.history-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 32px;
  flex-wrap: wrap;
}

.timeline {
  position: relative;
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent), var(--green), var(--accent));
}

.timeline-item {
  display: flex;
  gap: 24px;
  padding: 0 0 40px 0;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -28px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border);
  flex-shrink: 0;
  transition: all var(--transition);
}

.timeline-item:hover .timeline-dot {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent)60;
}

.timeline-item.cancelled .timeline-dot {
  border-color: var(--text-faint);
}

.timeline-item.special .timeline-dot {
  border-color: var(--accent);
}

.timeline-content {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: all var(--transition);
}

.timeline-item:hover .timeline-content {
  border-color: var(--border-accent);
}

.timeline-item.cancelled .timeline-content {
  opacity: 0.6;
}

.timeline-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 6px;
}

.timeline-item.cancelled .timeline-year {
  color: var(--text-faint);
}

.timeline-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 6px;
}

.timeline-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.badge-cancelled {
  background: #ef444420;
  color: #ef4444;
}

.badge-special {
  background: var(--accent)20;
  color: var(--accent);
}

.badge-new {
  background: #4ade8020;
  color: #4ade80;
}

/* ===== CINEMATIC VIDEO BAND ===== */
.video-band {
  position: relative;
  padding: 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #000;
}

.video-band-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.video-band-media.playing {
  opacity: 1;
}

.video-band-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, transparent 0%, rgba(8,8,8,0.55) 100%),
    linear-gradient(180deg, rgba(8,8,8,0.85) 0%, rgba(8,8,8,0.35) 40%, rgba(8,8,8,0.85) 100%);
}

.video-band-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 24px;
}

.video-band-content .section-label {
  color: var(--accent);
}

.video-band-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.video-band-sub {
  margin-top: 16px;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== SFEER / GALLERY SECTION ===== */
.sfeer-intro {
  max-width: 640px;
  margin-bottom: 56px;
}

.sfeer-intro .section-subtitle {
  margin-top: 8px;
}

.gallery {
  column-count: 3;
  column-gap: 16px;
}

.gallery-item {
  position: relative;
  break-inside: avoid;
  margin: 0 0 16px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  outline: none;
  transition: border-color var(--transition), transform var(--transition);
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 16px 14px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}

.gallery-item::after {
  content: '⤢';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.7);
  color: var(--accent);
  font-size: 0.95rem;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--transition), transform var(--transition);
}

.gallery-item:hover,
.gallery-item:focus-visible {
  border-color: var(--border-accent);
  transform: translateY(-3px);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.05);
}

.gallery-item:hover figcaption,
.gallery-item:focus-visible figcaption,
.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-figure {
  max-width: 90vw;
  max-height: 86vh;
  margin: 0;
  text-align: center;
  transform: scale(0.96);
  transition: transform 0.3s ease;
}

.lightbox.open .lightbox-figure {
  transform: scale(1);
}

.lightbox-img {
  max-width: 90vw;
  max-height: 78vh;
  width: auto;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.lightbox-caption {
  margin-top: 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--text);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  line-height: 1;
}

.lightbox-close {
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 2rem;
  padding-bottom: 4px;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}

/* ===== TIMELINE PHOTO ===== */
.timeline-photo {
  margin: 14px 0 2px;
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.timeline-photo img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Featured timeline photo — high-res shot, mag groter uitpoppen */
.timeline-photo-featured {
  max-width: 100%;
  border-color: var(--border-accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.timeline-photo-featured img {
  height: 260px;
}

.timeline-item:hover .timeline-photo img {
  transform: scale(1.04);
}

/* ===== TIMELINE HIGHLIGHT GLOW ===== */
@property --glow-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* 2026 — gloeiende lijn die rond de kaart draait + zachte halo */
.timeline-glow .timeline-content {
  position: relative;
  isolation: isolate;
  border-color: var(--border-accent);
  animation: glowHalo 4.5s ease-in-out infinite;
}

.timeline-glow .timeline-content::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: calc(var(--radius) + 2px);
  padding: 1.5px;
  background: conic-gradient(from var(--glow-angle),
    transparent 0deg,
    transparent 70deg,
    var(--accent) 110deg,
    var(--accent-light) 132deg,
    var(--accent) 154deg,
    transparent 200deg,
    transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: glowSpin 4.5s linear infinite;
  pointer-events: none;
}

@keyframes glowSpin {
  to { --glow-angle: 360deg; }
}

@keyframes glowHalo {
  0%, 100% { box-shadow: 0 0 20px -8px rgba(245, 158, 11, 0.35); }
  50%      { box-shadow: 0 0 30px -4px rgba(245, 158, 11, 0.6); }
}

/* 2025 — veel subtielere ademende gloed rond de 'Comeback'-badge */
.badge-glow {
  text-shadow: 0 0 8px rgba(245, 158, 11, 0.35);
  animation: badgeGlow 3.6s ease-in-out infinite;
}

@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
  50%      { box-shadow: 0 0 11px -1px rgba(245, 158, 11, 0.5); }
}

/* ===== FAQ LINK SECTION ===== */
.section-faq-cta {
  text-align: center;
  padding: 80px 0;
}

.faq-cta-box {
  display: inline-block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px 80px;
  max-width: 600px;
  width: 100%;
}

.faq-cta-box .section-title {
  margin-bottom: 16px;
}

.faq-cta-box .section-subtitle {
  max-width: 400px;
  margin: 0 auto 32px;
  text-align: center;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .nav-logo {
  font-size: 2rem;
  margin-bottom: 16px;
  display: inline-flex;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: inherit;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col ul a:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all var(--transition);
}

.social-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-faint);
}

.footer-bottom a {
  color: var(--text-faint);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* ===== FAQ PAGE ===== */
.faq-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  text-align: center;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 100px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: var(--border-accent);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  user-select: none;
  gap: 16px;
}

.faq-question .chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--transition), color var(--transition);
}

.faq-item.open .faq-question .chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 24px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .wat-grid,
  .voorwie-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hoe-steps {
    grid-template-columns: 1fr;
  }

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

  .gallery {
    column-count: 2;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-stats {
    gap: 32px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-cta-box {
    padding: 40px 24px;
  }

  .wat-icons {
    grid-template-columns: 1fr 1fr;
  }

  .history-intro {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-tagline {
    flex-direction: column;
    gap: 4px;
  }

  .hero-tagline .separator {
    display: none;
  }

  .wat-icons {
    grid-template-columns: 1fr;
  }

  .gallery {
    column-count: 1;
  }

  .lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 1.6rem;
  }

  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
}

/* ===== LOGO HEAD & ANIMATIONS ===== */

/* Page loader */
.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-head {
  width: 86px;
  height: auto;
  filter: invert(1) drop-shadow(0 8px 24px rgba(245, 158, 11, 0.35));
  animation: headBob 1.2s ease-in-out infinite;
  transform-origin: 50% 30%;
}

.loader-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-indent: 0.35em;
  animation: loaderPulse 1.2s ease-in-out infinite;
}

.loader-bar {
  width: 120px;
  height: 3px;
  border-radius: 3px;
  background: var(--border);
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
  animation: loaderSlide 1.1s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@keyframes loaderSlide {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

/* Head bob (used by loader + nav + hero O wrapper) */
@keyframes headBob {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-8px) rotate(3deg); }
}

@keyframes headBobSoft {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-3px) rotate(2deg); }
}

/* "Blink"/nod squash for the hero O head */
@keyframes headBlink {
  0%, 90%, 100% { transform: scaleY(1); }
  95% { transform: scaleY(0.82); }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0); }
  20% { transform: rotate(-12deg); }
  40% { transform: rotate(10deg); }
  60% { transform: rotate(-6deg); }
  80% { transform: rotate(4deg); }
}

/* Nav logo — full mark incl. tie */
.nav-logo {
  cursor: pointer;
}

.nav-head {
  height: 46px;
  width: auto;
  filter: invert(1);
  transition: transform var(--transition);
  animation: headBobSoft 3.5s ease-in-out infinite;
  transform-origin: 50% 18%;
}

.nav-logo:hover .nav-head {
  animation: wiggle 0.6s ease;
}

/* Hero title — head as the "O", full mark incl. dangling tie */
.hero-o {
  display: inline-block;
  position: relative;
  width: 0.74em;
  height: 0.72em;
  margin: 0 0.02em;
  vertical-align: baseline;
  animation: heroOFloat 3s ease-in-out infinite;
  transform-origin: 50% 22%;
}

.hero-o-img {
  position: absolute;
  left: 50%;
  top: -0.05em;
  margin-left: -0.41em;
  width: 0.82em;
  height: auto;
  filter: invert(1) drop-shadow(0 8px 18px rgba(245, 158, 11, 0.4));
  animation: headBlink 4.5s ease-in-out infinite;
  transform-origin: 50% 40%;
  cursor: pointer;
}

@keyframes heroOFloat {
  0%, 100% { transform: translateY(0) rotate(-2.5deg); }
  50% { transform: translateY(-6px) rotate(2.5deg); }
}

.hero-o.wiggling {
  animation: wiggle 0.7s ease;
}

/* Marquee strip */
.marquee {
  overflow: hidden;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: relative;
}

.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-surface), transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-surface), transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  white-space: nowrap;
}

.marquee-item .dot {
  color: var(--accent);
  font-size: 1.1rem;
}

.marquee-head {
  height: 32px;
  width: auto;
  filter: invert(1);
  opacity: 0.55;
}

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

/* Footer logo — full mark incl. tie */
.footer-head {
  height: 58px;
  width: auto;
  filter: invert(1);
  transition: transform var(--transition);
  animation: headBobSoft 3.5s ease-in-out infinite;
  transform-origin: 50% 18%;
}

.footer-brand .nav-logo:hover .footer-head {
  animation: wiggle 0.6s ease;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .loader-head,
  .nav-head,
  .hero-o,
  .hero-o-img,
  .footer-head,
  .marquee-track,
  .wat-icon,
  .timeline-glow .timeline-content,
  .timeline-glow .timeline-content::before,
  .badge-glow {
    animation: none !important;
  }

  .nav-mobile,
  .nav-mobile a {
    transform: none !important;
    transition: opacity 0.25s ease, visibility 0s !important;
  }
  .nav-mobile.open a { transition-delay: 0s !important; }
}
