/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --bg: #0a0a0a;
  --bg-2: #131313;
  --bg-3: #1a1a1a;
  --ink: #ffffff;
  --ink-dim: #a8a8a8;
  --ink-low: #7d7d7d;
  --orange: #ff6b1a;
  --orange-bright: #ff8a3d;
  --orange-glow: rgba(255, 107, 26, 0.4);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.15);
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  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='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--orange); color: #000; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== TYPOGRAPHY ===== */
.display {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.02em;
  line-height: 0.9;
  font-weight: 400;
}
.mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ===== LAYOUT HELPERS ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  position: relative;
  z-index: 2;
  padding: 7rem 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--orange);
  margin-bottom: 1.5rem;
}
.section-tag::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--orange);
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 1rem;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 2rem;
  backdrop-filter: blur(12px);
  background: rgba(10, 10, 10, 0.7);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(10, 10, 10, 0.92);
}

/* WordPress admin bar — schuif de fixed nav naar beneden zodat hij niet
   onder de admin bar verdwijnt voor ingelogde users. We targeten op
   #wpadminbar aanwezigheid via :has() (robuuster dan body.admin-bar
   class die niet altijd gezet wordt) plus de class als fallback voor
   oudere browsers.
   - >782px: admin bar is 32px hoog (fixed)
   - 601-782px: admin bar is 46px hoog (fixed)
   - <=600px: admin bar wordt position:absolute door WP zelf (scrollt mee),
     dus geen shift nodig. */
body.admin-bar nav#nav,
body:has(#wpadminbar) nav#nav {
  top: 32px !important;
}
@media screen and (max-width: 782px) {
  body.admin-bar nav#nav,
  body:has(#wpadminbar) nav#nav {
    top: 46px !important;
  }
}
@media screen and (max-width: 600px) {
  body.admin-bar nav#nav,
  body:has(#wpadminbar) nav#nav {
    top: 0 !important;
  }
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  height: 48px;
  width: auto;
  border-radius: 4px;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-dim);
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--orange);
  color: #000 !important;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--orange-glow);
}
.nav-cta::after { display: none; }

.nav-links a.is-active {
  color: var(--ink);
}
.nav-links a.is-active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--ink);
  cursor: pointer;
  padding: 0.75rem;
  min-width: 44px;
  min-height: 44px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: 0.3s;
}

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

.eq-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 5%;
  opacity: 0.08;
  z-index: 1;
  pointer-events: none;
}
.eq-bg .bar {
  width: 2.5%;
  background: linear-gradient(to top, var(--orange), transparent);
  animation: eq 1.6s ease-in-out infinite;
  border-radius: 4px 4px 0 0;
}
@keyframes eq {
  0%, 100% { height: 12%; }
  50% { height: 80%; }
}

.hero::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 60%);
  filter: blur(80px);
  opacity: 0.5;
  z-index: 1;
  animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.15); }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 1100px;
}

.hero-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  color: var(--ink-low);
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.hero-meta span { display: flex; align-items: center; gap: 0.5rem; }
.hero-meta .dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-size: clamp(3.5rem, 11vw, 9rem);
  margin-bottom: 1.5rem;
}
.hero-title .accent {
  color: var(--orange);
  font-style: italic;
  display: inline-block;
  transform: skew(-8deg);
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .line span {
  display: inline-block;
  animation: rise 1s cubic-bezier(0.5, 0, 0.1, 1) backwards;
}
.hero-title .line:nth-child(1) span { animation-delay: 0.1s; }
.hero-title .line:nth-child(2) span { animation-delay: 0.25s; }
.hero-title .line:nth-child(3) span { animation-delay: 0.4s; }

.hero-title .line-logo {
  margin-top: 0.5rem;
}
.hero-title .hero-logo {
  display: block;
  height: clamp(4rem, 12vw, 10rem);
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}

@keyframes rise {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--ink-dim);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  animation: fadeUp 1s 0.7s backwards;
}
@keyframes fadeUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.9s backwards;
}

.btn {
  padding: 1.1rem 2.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.2s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--orange);
  color: #000;
}
.btn-primary:hover {
  background: var(--orange-bright);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px var(--orange-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-3px);
}
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--ink-low);
  z-index: 3;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== STATS BAR ===== */
.stats {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 3rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  color: var(--ink-dim);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 0.5rem;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,107,26,0.25), transparent 50%),
    linear-gradient(135deg, var(--bg-3), var(--bg-2));
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.about-visual::before {
  content: "RICO H";
  position: absolute;
  bottom: -10px;
  left: -10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(8rem, 20vw, 16rem);
  color: rgba(255, 107, 26, 0.15);
  line-height: 0.85;
  pointer-events: none;
}
.about-visual::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  aspect-ratio: 1;
  border: 2px solid var(--orange);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
  opacity: 0.4;
}
.about-visual .vinyl-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.about-visual .vinyl-text svg {
  width: 70%;
  height: 70%;
  animation: rotate 30s linear infinite;
}
@keyframes rotate {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}
.about-visual .vinyl-text { animation: none; transform: none; }
.about-visual .vinyl-text svg { transform-origin: center; }

.about-visual.has-photo {
  background: var(--bg-3);
}
.about-visual.has-photo::before,
.about-visual.has-photo::after { display: none; }
.about-visual.has-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.about-text h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 600;
}
.about-text p {
  color: var(--ink-dim);
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}
.about-quote {
  margin-top: 2rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--orange);
  font-style: italic;
  color: var(--ink);
  font-size: 1.1rem;
}

/* ===== SERVICES ===== */
.services {
  background: var(--bg-2);
}
.services-header {
  text-align: center;
  margin-bottom: 5rem;
}
.services-header .section-tag { justify-content: center; }
.services-header .section-tag::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--orange);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 2.5rem;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-num {
  font-family: 'JetBrains Mono', monospace;
  color: var(--orange);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}
.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.service-card p {
  color: var(--ink-dim);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.service-features {
  list-style: none;
}
.service-features li {
  color: var(--ink-dim);
  font-size: 0.9rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.service-features li::before {
  content: "▸";
  color: var(--orange);
  font-size: 0.7rem;
}
.service-features li:last-child { border-bottom: none; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
  margin-top: 4rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform 0.4s ease;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--x, 50%) var(--y, 50%), var(--orange-glow), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}
.gallery-item:hover::before { opacity: 1; }
.gallery-item:hover { transform: scale(1.02); }

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.gallery-item .placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-low);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 0.05em;
}
.gallery-item .label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 3;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9rem;
  transform: translateY(10px);
  opacity: 0;
  transition: 0.3s ease;
}
.gallery-item:hover .label {
  transform: translateY(0);
  opacity: 1;
}

/* ===== REELS (vertical 9:16 video strip) ===== */
.reels-track {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
  padding: 0.5rem 0 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 2rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) transparent;
}
.reels-track::-webkit-scrollbar {
  height: 6px;
}
.reels-track::-webkit-scrollbar-track {
  background: var(--line);
  border-radius: 3px;
}
.reels-track::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 3px;
}

.reel-item {
  flex: 0 0 240px;
  aspect-ratio: 9 / 16;
  position: relative;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-2);
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: inherit;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.reel-item:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
}
.reel-item:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}
.reel-item video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.reel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.65) 100%);
  pointer-events: none;
  z-index: 1;
}
.reel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 26, 0.85);
  color: #000;
  border-radius: 999px;
  font-size: 1.1rem;
  padding-left: 3px;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.reel-item:hover .reel-play,
.reel-item:focus-visible .reel-play {
  opacity: 1;
}
.reel-label {
  position: absolute;
  bottom: 0.75rem;
  left: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  text-align: left;
}

/* Lightbox */
.reel-lightbox {
  border: none;
  background: transparent;
  padding: 0;
  margin: auto;
  max-width: min(90vw, 480px);
  width: 100%;
  color: var(--ink);
}
.reel-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
}
.reel-lightbox-video {
  width: 100%;
  height: auto;
  max-height: 85vh;
  aspect-ratio: 9 / 16;
  background: #000;
  border-radius: 12px;
}
.reel-lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.reel-lightbox-close:hover,
.reel-lightbox-close:focus-visible {
  background: var(--orange);
  color: #000;
  border-color: var(--orange);
}
.reel-lightbox-label {
  margin-top: 1rem;
  color: var(--ink-dim);
  font-size: 0.8rem;
  text-align: center;
}

@media (max-width: 640px) {
  .reel-item { flex-basis: 65vw; }
}

@media (prefers-reduced-motion: reduce) {
  .reel-item video { display: none; }
  .reel-item { background-image: var(--poster-bg); background-size: cover; background-position: center; }
  .reel-play { opacity: 1; }
}

/* ===== REVIEWS ===== */
.reviews {
  background: var(--bg-2);
  overflow: hidden;
}
.review-track {
  display: flex;
  gap: 1.5rem;
  margin-top: 4rem;
  animation: scroll-reviews 40s linear infinite;
  width: max-content;
}
.reviews:hover .review-track { animation-play-state: paused; }
@keyframes scroll-reviews {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.review-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2rem;
  width: 380px;
  flex-shrink: 0;
}
.review-stars {
  color: var(--orange);
  margin-bottom: 1rem;
  letter-spacing: 0.2em;
}
.review-text {
  color: var(--ink-dim);
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.6;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 700;
  font-size: 1rem;
}
.review-name {
  font-weight: 600;
  font-size: 0.95rem;
}
.review-event {
  font-size: 0.8rem;
  color: var(--ink-low);
}

/* ===== SETS / MIXES ===== */
.mixes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.mix-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2rem;
  transition: 0.3s ease;
  cursor: pointer;
  position: relative;
}
.mix-card:hover {
  border-color: var(--orange);
  background: var(--bg-3);
}
.mix-cover {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--bg-3), #000);
  border-radius: 6px;
  margin-bottom: 1.2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mix-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mix-cover::before {
  content: "";
  position: absolute;
  inset: 20%;
  border: 2px solid var(--orange);
  border-radius: 50%;
  opacity: 0.3;
}
.mix-cover::after {
  content: "";
  position: absolute;
  width: 30%;
  aspect-ratio: 1;
  background: var(--bg);
  border-radius: 50%;
  border: 6px solid var(--orange);
}
.mix-card:has(.mix-cover img) .mix-cover::before,
.mix-card:has(.mix-cover img) .mix-cover::after { display: none; }
.mix-play {
  position: absolute;
  z-index: 2;
  width: 56px;
  height: 56px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  box-shadow: 0 8px 24px var(--orange-glow);
}
.mix-card:hover .mix-play {
  transform: scale(1.15);
}
.mix-play::after {
  content: "";
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #000;
  margin-left: 4px;
}
.mix-genre {
  font-family: 'JetBrains Mono', monospace;
  color: var(--orange);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  margin-bottom: 0.4rem;
}
.mix-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.mix-meta {
  color: var(--ink-low);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== EVENTS ===== */
.events {
  background: var(--bg-2);
}
.event-list {
  margin-top: 4rem;
  border-top: 1px solid var(--line);
}
.event-row {
  display: grid;
  grid-template-columns: 100px 2fr 1.5fr 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--line);
  transition: 0.3s ease;
  position: relative;
}
.event-row:hover {
  padding-left: 1rem;
}
.event-row::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 50%;
  width: 0;
  height: 30px;
  background: var(--orange);
  transform: translateY(-50%);
  transition: width 0.3s ease;
}
.event-row:hover::before { width: 4px; }

.event-date {
  text-align: center;
}
.event-day {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  line-height: 0.9;
  color: var(--orange);
}
.event-month {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--ink-dim);
  margin-top: 0.25rem;
}
.event-name {
  font-size: 1.1rem;
  font-weight: 600;
}
.event-venue {
  color: var(--ink-dim);
  font-size: 0.9rem;
}
.event-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  text-align: center;
}
.status-open {
  background: rgba(255, 107, 26, 0.15);
  color: var(--orange);
  border: 1px solid var(--orange);
}
.status-soldout {
  background: rgba(255,255,255,0.05);
  color: var(--ink-low);
  border: 1px solid var(--line);
}
.event-link {
  color: var(--ink-dim);
  transition: 0.2s ease;
}
.event-row:hover .event-link { color: var(--orange); transform: translateX(4px); }

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 4rem auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--ink);
  text-align: left;
  padding: 1.8rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: inherit;
  transition: color 0.2s ease;
}
.faq-question:hover { color: var(--orange); }
.faq-icon {
  color: var(--orange);
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--ink-dim);
}
.faq-item.open .faq-answer {
  max-height: 400px;
}
.faq-answer-inner {
  padding: 0 0 1.8rem;
  line-height: 1.7;
}

/* ===== BOOKING ===== */
.booking {
  position: relative;
  overflow: hidden;
}
.booking::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--orange-glow), transparent 60%);
  filter: blur(80px);
  opacity: 0.6;
  pointer-events: none;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  position: relative;
  z-index: 2;
}

.booking-info h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}
.booking-info p {
  color: var(--ink-dim);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.booking-perks {
  list-style: none;
  margin-top: 2rem;
}
.booking-perks li {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--ink-dim);
}
.booking-perks li:last-child { border-bottom: 1px solid var(--line); }
.perk-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 107, 26, 0.1);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.booking-cta-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}
.booking-cta-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--orange-glow), transparent 60%);
  filter: blur(60px);
  opacity: 0.6;
}
.booking-cta-card > * { position: relative; z-index: 2; }
.booking-cta-card .display {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
}
.booking-cta-card p {
  color: var(--ink-dim);
  max-width: 360px;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--bg-2);
  text-align: center;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.contact-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  transition: 0.3s ease;
  text-align: center;
  /* hele kaart is een <a> — link semantiek */
  display: block;
  text-decoration: none;
  color: inherit;
}
.contact-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: rgba(255, 107, 26, 0.10);
  color: var(--orange);
  border: 1px solid rgba(255, 107, 26, 0.25);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.contact-icon svg {
  width: 26px;
  height: 26px;
}
.contact-card:hover .contact-icon {
  background: rgba(255, 107, 26, 0.18);
  border-color: var(--orange);
}
.contact-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem 0;
}
.contact-card-text {
  color: var(--ink-dim);
  transition: color 0.2s ease;
  display: block;
  word-break: break-word;
}
.contact-card:hover .contact-card-text { color: var(--orange); }

/* ===== FOOTER ===== */
footer {
  background: #050505;
  padding: 4rem 2rem 2rem;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img {
  height: 72px;
  width: auto;
  margin-bottom: 1rem;
  border-radius: 4px;
}
.footer-brand p {
  color: var(--ink-dim);
  font-size: 0.9rem;
  max-width: 300px;
}
.footer-col-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--orange);
  text-transform: uppercase;
  margin: 0 0 1.2rem 0;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 0.6rem;
}
.footer-col a {
  color: var(--ink-dim);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink-low);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.socials {
  display: flex;
  gap: 0.8rem;
}
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-dim);
  transition: 0.3s ease;
}
.socials a svg {
  width: 18px;
  height: 18px;
}
.socials a:hover {
  background: var(--orange);
  color: #000;
  border-color: var(--orange);
  transform: translateY(-3px);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Empty states for dynamic sections */
.empty-state {
  text-align: center;
  color: var(--ink-low);
  padding: 3rem 1rem;
  border: 1px dashed var(--line);
  border-radius: 8px;
  margin-top: 2rem;
}

/* Forms — gebruikt door /contact/ en evt. andere form-pagina's */
.booking-form {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0.9rem 1rem;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--bg-3);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
  font-family: inherit;
  line-height: 1.5;
}

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
  justify-content: center;
}

.form-note {
  font-size: 0.8rem;
  color: var(--ink-low);
  text-align: center;
  margin-top: 1rem;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .booking-form {
    padding: 1.5rem;
  }
}

/* /boeken page */
.booking-page {
  padding: 9rem 0 6rem;
  position: relative;
}

/* /contact page */
.contact-page {
  padding: 9rem 0 6rem;
  position: relative;
}
.contact-page .container {
  max-width: 880px;
}
.contact-page-header {
  text-align: center;
  margin-bottom: 3rem;
}
.contact-page-header h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 1rem;
}
.contact-page-header p,
.contact-page-intro {
  color: var(--ink-dim);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}
.contact-form {
  margin-bottom: 4rem;
}
.contact-message {
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.contact-message--success {
  background: rgba(82, 245, 122, 0.10);
  border: 1px solid rgba(82, 245, 122, 0.45);
  color: #d9ffe6;
}
.contact-message--error {
  background: rgba(255, 88, 88, 0.10);
  border: 1px solid rgba(255, 88, 88, 0.45);
  color: #ffd1d1;
}
.contact-page-fallback {
  text-align: center;
  margin-top: 3rem;
}
.contact-page-fallback p {
  color: var(--ink-dim);
  margin-bottom: 1.5rem;
}
.booking-page-header {
  text-align: center;
  margin-bottom: 4rem;
}
.booking-page-header h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 1rem;
}
.booking-page-header p {
  color: var(--ink-dim);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.booking-page-wizard {
  position: relative;
  z-index: 2;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-mobile-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 2rem;
    border-top: 1px solid var(--line);
  }

  section { padding: 5rem 0; }
  .container { padding: 0 1.25rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { aspect-ratio: 1; max-width: 400px; margin: 0 auto; }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(4) { grid-row: span 1; }
  .gallery-item:nth-child(5) { grid-column: span 2; }

  .review-card { width: 300px; }

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

  .event-row {
    grid-template-columns: 70px 1fr auto;
    gap: 1rem;
  }
  .event-venue, .event-status { display: none; }

  .booking-grid { grid-template-columns: 1fr; gap: 3rem; }

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

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

  .hero-meta { gap: 1rem; font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* === Track record (homepage section + /gespeeld-op/ page) === */

.track-record {
  padding: 6rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.track-record-intro {
  color: var(--ink-dim);
  max-width: 640px;
  margin: 1.5rem 0 0;
  font-size: 1.05rem;
  line-height: 1.6;
}

.track-record-stats,
.gespeeld-op-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
  padding: 2rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
}

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

.tr-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--orange);
  line-height: 1;
  letter-spacing: 0.02em;
}

.tr-stat-label {
  color: var(--ink-dim);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 0.5rem;
}

.track-record-venues {
  margin-top: 3rem;
}

.tr-venues-label {
  color: var(--ink-low);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.tr-venues-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
}

.tr-venues-list li {
  border-left: 2px solid var(--orange);
  padding-left: 1rem;
  line-height: 1.3;
}

.tr-venue-name {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.tr-venue-city {
  display: block;
  color: var(--ink-dim);
  font-size: 0.8rem;
  font-family: 'JetBrains Mono', monospace;
  margin-top: 0.15rem;
}

.track-record-cta {
  margin-top: 3rem;
  text-align: center;
}

/* /gespeeld-op/ page */

.gespeeld-op-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.gespeeld-op-header .section-tag {
  justify-content: center;
}

.gespeeld-op-header .lead {
  color: var(--ink-dim);
  font-size: 1.1rem;
  line-height: 1.65;
  margin-top: 1.5rem;
}

.gespeeld-op-regions {
  display: grid;
  gap: 4rem;
  margin-top: 4rem;
}

.region-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--orange);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.region-locations {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem 2rem;
}

.location {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.location-city {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.location-events {
  display: block;
  color: var(--ink-dim);
  font-size: 0.9rem;
  margin-top: 0.25rem;
  line-height: 1.4;
}

.gespeeld-op-footer {
  text-align: center;
  margin-top: 6rem;
  padding-top: 4rem;
  border-top: 1px solid var(--line);
}

.gespeeld-op-footer .lead {
  color: var(--ink-dim);
  margin: 1rem auto 2rem;
  max-width: 560px;
}

.gespeeld-op-footer .hero-cta {
  justify-content: center;
}

@media (max-width: 640px) {
  .track-record-stats,
  .gespeeld-op-stats { grid-template-columns: repeat(2, 1fr); }
  .tr-venues-list { grid-template-columns: repeat(2, 1fr); }
  .region-locations { grid-template-columns: 1fr; }
}

/* === Contact perks strip (trust differentiators voor contact-sectie) === */
.contact-perks {
  list-style: none;
  padding: 1.25rem 1.5rem;
  margin: 2.5rem auto 3rem;
  max-width: 880px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.contact-perks li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink-dim);
  font-size: 0.9rem;
  font-weight: 500;
}
.perk-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: var(--orange);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* === Pull-quote op landing pages === */
.landing-quote {
  position: relative;
  margin: 5rem auto;
  padding: 3rem 2.5rem 2.5rem;
  max-width: 760px;
  background: linear-gradient(135deg, rgba(255, 107, 26, 0.07) 0%, rgba(255, 107, 26, 0) 60%);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 14px;
}
.landing-quote::before {
  content: "\201C";
  position: absolute;
  top: -1.75rem;
  left: 1.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 8rem;
  line-height: 1;
  color: var(--orange);
  opacity: 0.55;
  pointer-events: none;
}
.landing-quote-stars {
  color: var(--orange);
  font-size: 1rem;
  letter-spacing: 0.25em;
  margin-bottom: 1.25rem;
}
.landing-quote-text {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 1.5rem;
  quotes: none;
}
.landing-quote-text::before,
.landing-quote-text::after {
  content: none;
}
.landing-quote-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
}
.landing-quote-author {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--ink);
  font-style: normal;
}
.landing-quote-event {
  color: var(--ink-dim);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .landing-quote {
    padding: 2.5rem 1.5rem 2rem;
    margin: 3rem auto;
  }
  .landing-quote::before {
    font-size: 6rem;
    top: -1.25rem;
    left: 1rem;
  }
}

/* === Skip-link voor keyboard users (WCAG 2.4.1) === */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 10000;
  background: var(--orange);
  color: #000;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus,
.skip-link:focus-visible {
  top: 1rem;
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

/* === Accessibility: respect 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;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .eq-bg,
  .scroll-indicator {
    display: none !important;
  }
  .btn:hover,
  .nav-cta:hover {
    transform: none !important;
  }
}

/* === Repertoire / Allround USP (homepage) === */

.repertoire {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.repertoire-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}
.repertoire-header .section-tag {
  justify-content: center;
}
.repertoire-lead {
  color: var(--ink-dim);
  font-size: 1.1rem;
  line-height: 1.65;
  margin-top: 1.25rem;
}

/* === Bento grid (repertoire section) === */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.bento-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.bento-card:hover {
  border-color: var(--line-strong);
}
.bento-tag {
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.bento-note {
  color: var(--ink-dim);
  font-size: 0.9rem;
  margin: 0;
}
.bento-pills {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-content: flex-start;
}
.bento-pills li {
  padding: 0.5rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.bento-pills li:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255, 107, 26, 0.08);
}

/* Card sizing */
.bento-age      { grid-column: span 7; }
.bento-quote-card { grid-column: span 5; justify-content: space-between; }
.bento-eras     { grid-column: span 12; }
.bento-genres   { grid-column: span 4; }
.bento-hits     { grid-column: span 4; }
.bento-specials { grid-column: span 4; }

/* Age hero card */
.bento-age .age-range-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.bento-age .age-mark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  color: var(--ink);
}
.bento-age .age-mark small {
  color: var(--orange);
  font-size: 0.5em;
}
.bento-age .age-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-bright) 100%);
  box-shadow: 0 0 12px var(--orange-glow);
}

/* Quote card */
.bento-quote-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--orange);
  margin: 0;
  padding-left: 1.25rem;
  border-left: 3px solid var(--orange);
}

/* Eras strip: wider gap for readability */
.bento-eras .bento-pills {
  justify-content: center;
  gap: 0.75rem;
}
.bento-eras .bento-pills li {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.95rem;
  padding: 0.6rem 1.25rem;
}

/* Responsive collapse */
@media (max-width: 900px) {
  .bento-age,
  .bento-quote-card,
  .bento-eras,
  .bento-genres,
  .bento-hits,
  .bento-specials {
    grid-column: span 12;
  }
  .bento-age .age-mark { font-size: 3rem; }
}
@media (min-width: 640px) and (max-width: 900px) {
  /* tablet: 2x2 voor de drie kleine onderaan */
  .bento-genres,
  .bento-hits,
  .bento-specials {
    grid-column: span 6;
  }
}

/* === Landing pages (dj-bruiloft, dj-bedrijfsfeest, dj-friesland, dj-apres-ski) === */

.landing {
  padding: 8rem 0 5rem;
}
.landing-header {
  max-width: 760px;
  margin: 0 auto 4rem;
  text-align: center;
}
.landing-header .section-tag {
  justify-content: center;
}
.landing-header .lead {
  font-size: 1.15rem;
  color: var(--ink-dim);
  line-height: 1.7;
  margin-top: 1.5rem;
}
.landing-section {
  max-width: 880px;
  margin: 0 auto 5rem;
}

/* === Pull-quote op landing pages (review uit rh_review CPT) === */
.landing-quote {
  max-width: 720px;
  margin: 5rem auto;
  padding: 2.5rem 2.5rem 2rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 12px;
  position: relative;
}
.landing-quote::before {
  content: "“";
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--orange);
  opacity: 0.5;
  pointer-events: none;
}
.landing-quote-stars {
  color: var(--orange);
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  margin-bottom: 1.25rem;
}
.landing-quote-text {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 1.5rem;
  padding: 0;
  quotes: none;
}
.landing-quote-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
  font-size: 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.landing-quote-author {
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
}
.landing-quote-event {
  color: var(--ink-dim);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}

@media (max-width: 640px) {
  .landing-quote {
    margin: 3.5rem auto;
    padding: 2rem 1.5rem 1.5rem;
  }
  .landing-quote::before {
    font-size: 3.5rem;
    left: 1rem;
  }
}
.landing-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  color: var(--ink);
}
.landing-section h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--orange);
  margin: 2rem 0 0.75rem;
}
.landing-section p,
.landing-section li {
  color: var(--ink-dim);
  font-size: 1.05rem;
  line-height: 1.75;
}
.landing-section ul {
  padding-left: 1.25rem;
  margin: 0.5rem 0 1.5rem;
}
.landing-section ul li {
  margin-bottom: 0.5rem;
}
.landing-section strong { color: var(--ink); }
.landing-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.landing-step {
  background: var(--bg-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1.5rem;
}
.landing-step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--orange);
  line-height: 1;
}
.landing-step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0.5rem 0;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.landing-step p { font-size: 0.95rem; }
.landing-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 2rem;
}
.landing-cities li {
  padding: 0.4rem 0.9rem;
  background: var(--bg-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--ink);
}
.landing-faq {
  max-width: 760px;
  margin: 0 auto 5rem;
}
.landing-faq details {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
}
.landing-faq details:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.landing-faq summary {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.landing-faq summary::-webkit-details-marker { display: none; }
.landing-faq summary::after {
  content: '+';
  color: var(--orange);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.2s;
}
.landing-faq details[open] summary::after { transform: rotate(45deg); }
.landing-faq details p {
  color: var(--ink-dim);
  margin: 1rem 0 0;
  line-height: 1.7;
}
.landing-cta {
  text-align: center;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.landing-cta h2 { margin-bottom: 1rem; }
.landing-cta .lead {
  color: var(--ink-dim);
  margin-bottom: 2rem;
}
.landing-cta .hero-cta {
  justify-content: center;
}

/* === Service cards: linked variant === */

a.service-card,
a.service-card:hover {
  text-decoration: none;
  color: inherit;
}
.service-card.is-linked {
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.service-card.is-linked:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.service-card-link {
  display: inline-block;
  margin-top: 1.25rem;
  color: var(--orange);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.service-card.is-linked:hover .service-card-link .arrow {
  transform: translateX(4px);
}
.service-card-link .arrow { transition: transform 0.2s; display: inline-block; }

/* === Specialties grid (homepage track-record + /gespeeld-op/) === */

.specialties {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.specialties-label {
  color: var(--ink-low);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.5rem;
}
.specialties-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.specialties-grid a {
  display: block;
  padding: 1.25rem;
  background: var(--bg-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.2s, transform 0.2s;
}
.specialties-grid a:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}
.specialties-grid a span {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.specialties-grid a small {
  display: block;
  color: var(--ink-dim);
  font-size: 0.85rem;
  margin-top: 0.25rem;
  line-height: 1.4;
}
@media (max-width: 900px) {
  .specialties-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .specialties-grid { grid-template-columns: 1fr; }
}

/* === Landing pages: hero CTA + trust strip + FAQ header (UX-skill quickset) === */

.landing-header-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.landing-trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0.75rem 1rem;
  max-width: 760px;
  margin: 0 auto 4rem;
  padding: 1rem 1.5rem;
  background: var(--bg-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}
.trust-item {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
}
.trust-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--orange);
  line-height: 1;
}
.trust-label {
  color: var(--ink-dim);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}
.trust-sep {
  color: var(--ink-low);
  font-size: 1rem;
  line-height: 1;
}
@media (max-width: 600px) {
  .landing-trust-strip {
    border-radius: 16px;
    padding: 1.25rem;
    gap: 0.5rem 0.75rem;
  }
  .trust-num { font-size: 1.25rem; }
  .trust-label { font-size: 0.75rem; }
}

.landing-faq-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.landing-faq-header .section-tag {
  justify-content: center;
  margin-bottom: 1rem;
}
.landing-faq-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

/* === Global a11y: visible focus ring on all interactive elements === */

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 2px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}
/* Form fields al een eigen focus-state — laat die staan via specificity. */
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  outline: none;
}
