/* ============================================
   BEENTELS KABAAL – Fanfare Landingspagina
   Kleurenpalet: Zwart · Goud · Bordeaux
   ============================================ */

:root {
  --black:      #0a0a0a;
  --black-soft: #111111;
  --black-mid:  #1a1a1a;
  --black-card: #1e1e1e;
  --gold:       #c9a84c;
  --gold-light: #e8c96a;
  --gold-dark:  #9a7a2e;
  --bordeaux:   #8b1a2f;
  --bordeaux-light: #b02540;
  --cream:      #f5f0e8;
  --cream-mid:  #ede6d8;
  --white:      #ffffff;
  --text-light: rgba(255,255,255,0.72);
  --text-muted: rgba(255,255,255,0.44);

  --radius:     12px;
  --radius-lg:  20px;
  --transition: 0.3s ease;
  --max-width:  1140px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

em { font-style: italic; color: var(--gold); }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

/* CONTAINER */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAVIGATIE
   ============================================ */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.6);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 1.6rem;
  color: var(--gold);
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition);
}

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

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600 !important;
}

.nav-cta:hover { background: var(--gold-light) !important; }

.hamburger {
  display: none;
  background: none;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 6px;
  padding: 8px 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  background: rgba(10,10,10,0.98);
  border-top: 1px solid rgba(201,168,76,0.2);
}

.nav-mobile a {
  padding: 16px 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}

.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile.open { display: flex; }

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(139,26,47,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(201,168,76,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(201,168,76,0.08) 0%, transparent 60%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,0.012) 2px,
    rgba(255,255,255,0.012) 4px
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: 0 24px;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.hero-title {
  font-size: clamp(3.2rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero-title span { display: block; }

.hero-title .gold-glow {
  color: var(--white);
  text-shadow:
    0 0 80px rgba(201,168,76,0.80),
    0 0 240px rgba(201,168,76,0.65),
    0 0 480px rgba(201,168,76,0.50),
    0 0 800px rgba(201,168,76,0.35),
    0 0 1200px rgba(201,168,76,0.20);
}

.hero-title .gold {
  color: var(--gold);
  text-shadow:
    0 0 80px rgba(201,168,76,0.70),
    0 0 160px rgba(201,168,76,0.45),
    0 0 280px rgba(201,168,76,0.25),
    0 0 480px rgba(201,168,76,0.12);
}

.hero-desc {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
}

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

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

.hero-notes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-notes span {
  position: absolute;
  font-size: clamp(2rem, 5vw, 4rem);
  color: rgba(201,168,76,1);
  opacity: 0.4;
  text-shadow: 0 0 20px rgba(201,168,76,0.3);
}

.hero-notes span:nth-child(1) { top: 20%; left: 8%; animation-delay: 0s; }
.hero-notes span:nth-child(2) { top: 35%; right: 10%; animation-delay: 0.8s; }
.hero-notes span:nth-child(3) { top: 65%; left: 15%; animation-delay: 1.6s; }
.hero-notes span:nth-child(4) { top: 55%; right: 18%; animation-delay: 2.4s; }
.hero-notes span:nth-child(5) { top: 80%; left: 40%; animation-delay: 3.2s; }

@keyframes fadeNote {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.35; }
}


/* ============================================
   BANNER TICKER
   ============================================ */

.banner {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.banner-track {
  display: inline-flex;
  animation: ticker 22s linear infinite;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--black);
  text-transform: uppercase;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}


.btn-small {
  padding: 9px 20px;
  min-height: 44px;
  font-size: 0.78rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.full-width { width: 100%; justify-content: center; }

/* ============================================
   SECTIONS
   ============================================ */

.section {
  padding: 96px 0;
  background: var(--black);
}

.section-alt {
  background: var(--cream);
  color: var(--black);
}

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

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.eyebrow-dark { color: var(--bordeaux); }

.text-block h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  line-height: 1.15;
}

.text-block p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

h2.dark { color: var(--black); }
.dark-text { color: rgba(0,0,0,0.68) !important; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.gold-text { color: var(--gold-dark); }

.section-sub {
  font-size: 1.08rem;
  color: var(--text-light);
  font-weight: 300;
}

/* ============================================
   STATISTIEKEN
   ============================================ */

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(201,168,76,0.2);
}

.stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}

.stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
  display: block;
}

/* ============================================
   IMAGE PLACEHOLDERS
   ============================================ */

.image-block {
  position: relative;
}

.img-placeholder {
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.88rem;
  text-align: center;
}

.img-placeholder.large { height: 380px; }

.img-icon { font-size: 3rem; }

/* ============================================
   OVER ONS SLIDESHOW
   ============================================ */

.over-ons-slideshow {
  position: relative;
  height: 380px;
  border-radius: var(--radius-lg);
  border: 3px solid var(--gold);
  overflow: hidden;
  background: var(--black-card);
  box-shadow: 0 0 32px rgba(201,168,76,0.18);
}

.over-ons-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  opacity: 0;
  transition: opacity 1s ease;
}

.over-ons-slideshow img.active {
  opacity: 1;
}

.over-ons-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.oos-prev,
.oos-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background var(--transition);
  line-height: 1;
}

.oos-prev { left: 12px; }
.oos-next { right: 12px; }
.oos-prev:hover,
.oos-next:hover { background: rgba(0,0,0,0.8); }

.oos-prev.hidden,
.oos-next.hidden { display: none; }

.oos-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

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

.oos-dot.active {
  background: var(--gold);
}

/* ============================================
   AGENDA
   ============================================ */

.agenda-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.agenda-item {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition: all var(--transition);
}

.agenda-item:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.agenda-item.highlight {
  border-left: 4px solid var(--bordeaux);
  background: linear-gradient(to right, rgba(139,26,47,0.04), var(--white));
}

.agenda-date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
  background: var(--black);
  border-radius: 10px;
  padding: 10px 14px;
}

.a-day {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.a-month {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-top: 2px;
}

.agenda-body { flex: 1; }

.agenda-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 6px;
}

.agenda-body h3 {
  font-size: 1.15rem;
  color: var(--black);
  margin-bottom: 6px;
}

.agenda-body p {
  font-size: 0.9rem;
  color: rgba(0,0,0,0.58);
  margin-bottom: 8px;
}

.agenda-location {
  font-size: 0.78rem;
  color: rgba(0,0,0,0.48);
}

.agenda-time {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(0,0,0,0.55);
}

.tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
}

.tag-red {
  background: rgba(139,26,47,0.12);
  color: var(--bordeaux);
}


/* ============================================
   OPTREDENS FOTOGRID
   ============================================ */

.optredens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.optreden-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.optreden-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  border-color: rgba(201,168,76,0.4);
}

.optreden-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.optreden-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.optreden-card:hover .optreden-img-wrap img {
  transform: scale(1.04);
}

.optreden-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background var(--transition);
}

.optreden-card:hover .optreden-overlay {
  background: rgba(0,0,0,0.45);
}

.overlay-icon {
  font-size: 2rem;
  opacity: 0;
  transform: scale(0.7);
  transition: all var(--transition);
}

.overlay-text {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}

.optreden-card:hover .overlay-icon,
.optreden-card:hover .overlay-text {
  opacity: 1;
  transform: none;
}

.optreden-info {
  padding: 20px 22px 22px;
}

.optreden-date {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.optreden-info h3 {
  font-size: 1.08rem;
  margin-bottom: 6px;
  color: var(--white);
}

.optreden-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}

.optreden-count {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bordeaux-light);
  letter-spacing: 0.04em;
}
.optreden-count.muted {
  color: var(--text-muted);
  font-weight: 400;
}

/* ============================================
   QUOTE SLIDESHOW
   ============================================ */

.quote-section {
  background: var(--bordeaux);
  padding: 72px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-slider {
  position: relative;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.quote-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.quote-slide blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.8vw, 1.85rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  max-width: 760px;
  margin: 0 auto 16px;
  line-height: 1.55;
}

.quote-slide blockquote em {
  color: var(--gold-light);
  font-style: normal;
}

.quote-slide cite {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
}

.quote-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  padding: 10px;
  box-sizing: content-box;
  transition: background var(--transition), transform var(--transition);
}

.dot.active {
  background: var(--gold-light);
  transform: scale(1.25);
}

/* ============================================
   CONTACT
   ============================================ */

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
  margin-bottom: 32px;
}

.contact-details li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: rgba(0,0,0,0.68);
}

.contact-icon {
  font-size: 1.2rem;
  min-width: 24px;
  margin-top: 2px;
}

.contact-details strong {
  display: block;
  color: var(--black);
  margin-bottom: 2px;
}

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

.social-link {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(0,0,0,0.2);
  color: var(--black);
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}

/* FORM */
.form-block {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(0,0,0,0.55);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--black);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

.form-group textarea { resize: vertical; }

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(0,0,0,0.38);
  margin-top: -8px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--black-soft);
  border-top: 1px solid rgba(201,168,76,0.15);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding: 64px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-brand .logo-text {
  font-size: 1.3rem;
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 24px;
  text-align: center;
}

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

/* ============================================
   REPERTOIRE
   ============================================ */

.repertoire-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 56px;
  align-items: start;
}

.repertoire-block h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.repertoire-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: repertoire;
}

.repertoire-list li {
  counter-increment: repertoire;
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  font-size: 0.95rem;
  color: var(--text-light);
}

.repertoire-list li::before {
  content: counter(repertoire, decimal-leading-zero);
  font-family: 'Playfair Display', serif;
  font-size: 0.78rem;
  color: var(--gold);
  min-width: 24px;
  opacity: 0.7;
}

.repertoire-los {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.repertoire-los li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  font-size: 0.92rem;
  color: var(--text-light);
}

.repertoire-los li::before {
  content: '·';
  color: var(--gold);
  margin-right: 10px;
}

@media (max-width: 640px) {
  .repertoire-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================
   FADE-IN ANIMATIE
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; gap: 48px; }
  .optredens-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-title { font-size: 2.6rem; }
  .section { padding: 56px 0; }

  .stats { grid-template-columns: repeat(2, 1fr); }
  .optredens-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Agenda: kolom-layout, volledige breedte knop */
  .agenda-item { flex-direction: column; align-items: stretch; gap: 16px; padding: 20px; }
  .agenda-item .btn-small { align-self: stretch; text-align: center; justify-content: center; width: 100%; min-height: 48px; }
  .agenda-date-block { width: auto; align-self: flex-start; }

  /* Quote slideshow */
  .quote-slider { min-height: 240px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding: 48px 24px; }
  .form-block { padding: 28px 20px; }
  .form-group textarea { resize: none; }
}

@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .hero-title { font-size: 2.2rem; }
  .stats { gap: 16px; }
  .stats strong { font-size: 2rem; }
  .quote-slider { min-height: 260px; }
}

/* Landscape op mobiel */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: 100svh; }
  .hero-title { font-size: 2rem; }
  .hero-desc { display: none; }
  .hero-scroll { bottom: 12px; }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
