/* === Comedy Adventure — Gen Z Design System === */
:root {
  --orange: #FF5500;
  --orange-dark: #E04A00;
  --orange-soft: #FFF0E6;
  --orange-2: #FF8C3D;
  --black: #0A0A0A;
  --ink: #0A0A0A;
  --grey-900: #2A2A2A;
  --grey-500: #666666;
  --grey-300: #E0E0E0;
  --grey-100: #F5F5F5;
  --white: #FFFFFF;
  --shadow: 5px 5px 0 #0A0A0A;
  --shadow-lg: 7px 7px 0 #0A0A0A;
  --shadow-sm: 3px 3px 0 #0A0A0A;
  --radius: 12px;
  --radius-lg: 20px;
  --container: 1200px;
  --header-h: 72px;
  --transition: 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  --border: 2.5px solid #0A0A0A;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--orange);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--orange-dark);
}

h1, h2, h3, h4 {
  font-family: 'Anton', 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--black);
}

h1 { font-size: clamp(2.5rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }

ul { list-style: none; }

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

.section {
  padding: clamp(60px, 10vw, 120px) 0;
}

.section--dark {
  background: var(--black);
  color: var(--white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section--grey {
  background: var(--black);
  border-top: var(--border);
  border-bottom: var(--border);
}
.section--grey .section-head__eyebrow { color: var(--orange); }
.section--grey .section-head h2,
.section--grey .section-head__lead { color: var(--white); }
.section--grey .section-head h2 { color: var(--white); }

.section-head {
  margin-bottom: 60px;
  max-width: 720px;
}

.section-head__eyebrow {
  display: inline-block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-head__title {
  margin-bottom: 16px;
}

.section-head__lead {
  font-size: 1.15rem;
  color: var(--grey-500);
}

.section--dark .section-head__lead {
  color: var(--grey-300);
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-lg);
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: var(--shadow-sm);
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
}

.btn--primary:hover { color: var(--white); }

.btn--ghost {
  background: transparent;
  color: var(--black);
  border: var(--border);
}

.btn--ghost:hover { color: var(--black); background: var(--grey-100); }

.btn--dark {
  background: var(--black);
  color: var(--white);
}

.btn--dark:hover { color: var(--white); }

.btn__arrow { transition: transform var(--transition); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* === Header / Nav === */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #0B0F19;
  border-bottom: 2.5px solid rgba(255,255,255,0.08);
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition);
}

.header.is-scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  font-family: 'Anton', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--white);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.logo:hover { color: var(--white); }

.logo__dot {
  width: 12px;
  height: 12px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-block;
}

.nav__list {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav__link {
  color: rgba(255,255,255,0.8);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: all var(--transition);
  letter-spacing: 0.01em;
}

.nav__link:hover,
.nav__link.is-active,
.nav__link.current_page_item,
.nav__list .current-menu-item > .nav__link {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.nav__cta {
  background: var(--orange);
  color: var(--white) !important;
  margin-left: 12px;
  border: var(--border);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
}

.nav__cta:hover {
  background: var(--orange-dark) !important;
  color: var(--white) !important;
  transform: translate(-1px, -1px);
  box-shadow: var(--shadow) !important;
}

/* Mobile burger */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  z-index: 110;
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  position: relative;
  transition: all var(--transition);
}

.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: '';
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

.nav-toggle__bar::before { top: -7px; }
.nav-toggle__bar::after { top: 7px; }

.nav-toggle.is-open .nav-toggle__bar { background: transparent; }
.nav-toggle.is-open .nav-toggle__bar::before { top: 0; transform: rotate(45deg); }
.nav-toggle.is-open .nav-toggle__bar::after { top: 0; transform: rotate(-45deg); }

/* === Hero === */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding: 80px 0;
  border-bottom: var(--border);
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,85,0,0.35) 0%, transparent 65%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-5%, 3%) scale(1.15); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero__eyebrow {
  display: inline-block;
  padding: 6px 16px;
  background: var(--orange);
  border: var(--border);
  border-radius: 100px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 28px;
}

.hero__eyebrow::before {
  content: '●';
  color: var(--orange);
  margin-right: 8px;
  animation: pulse 1.6s ease-in-out infinite;
}

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

.hero__title {
  color: var(--white);
  margin-bottom: 32px;
  font-size: clamp(3rem, 9vw, 7rem);
}

.hero__title span {
  color: var(--orange);
}

.hero__lead {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* === Marquee === */
.marquee {
  background: var(--orange);
  overflow: hidden;
  padding: 24px 0;
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}

.marquee__track {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee__item {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0 32px;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 32px;
}

.marquee__item::after {
  content: '★';
  color: var(--white);
}

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

/* === Cards === */
.card-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Modifier: strikt 4 cards in 1 rij, valt netjes terug op tablet/mobiel. */
.card-grid--4col {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 960px) {
  .card-grid--4col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .card-grid--4col { grid-template-columns: 1fr; }
}

/* === Card carousel === */
.card-carousel {
  position: relative;
}

.card-carousel__viewport {
  overflow: hidden;
}

.card-carousel__track {
  --visible: 3;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--visible) - 1) * 24px) / var(--visible));
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 0 12px; /* room for hover-lift shadow */
}

.card-carousel__track::-webkit-scrollbar {
  display: none;
}

.card-carousel__track > * {
  scroll-snap-align: start;
}

.card-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--black);
  cursor: pointer;
  transition: all var(--transition);
}

.card-carousel__btn:hover {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.card-carousel__btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

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

@media (max-width: 960px) {
  .card-carousel__track { --visible: 2; }
  .card-carousel__btn--prev { left: 0; }
  .card-carousel__btn--next { right: 0; }
}

@media (max-width: 560px) {
  .card-carousel__track { --visible: 1; }
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

a.card:hover { color: inherit; }
a.card:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--grey-100);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card:hover .card__media img {
  transform: scale(1.05);
}

.card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.card__title {
  margin-bottom: 12px;
}

.card__text {
  color: var(--grey-500);
  font-size: 0.95rem;
  margin-bottom: 16px;
  flex: 1;
}

.card__link {
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card__link::after {
  content: ' →';
  transition: transform var(--transition);
  display: inline-block;
}

.card:hover .card__link::after {
  transform: translateX(4px);
}

/* === Stats === */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.stat {
  border-left: 3px solid var(--orange);
  padding-left: 20px;
}

.stat__num {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--orange);
  line-height: 1;
}

.stat__label {
  font-size: 0.95rem;
  color: var(--grey-500);
  margin-top: 8px;
}

.section--dark .stat__label { color: var(--grey-300); }

/* === Featured strip === */
.feature-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.feature-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-split--reverse .feature-split__media {
  order: 2;
}

/* Modifier: laat de afbeelding zijn natuurlijke aspect-ratio behouden
   (geen crop). Gebruikt voor brede banners zoals op de homepage. */
.feature-split__media--natural {
  aspect-ratio: auto;
}

.feature-split__media--natural img {
  width: 100%;
  height: auto;
  max-height: 640px;
  object-fit: contain;
}

/* Modifier: lijn de top van de afbeelding uit met de h2-titel ernaast,
   in plaats van vertical-center. De margin-top compenseert de hoogte
   van de eyebrow + bottom-margin. */
@media (min-width: 961px) {
  .feature-split--align-title {
    align-items: start;
  }
  .feature-split--align-title .feature-split__media {
    margin-top: calc(0.85rem * 1.6 + 16px);
  }
}

/* === Agenda list === */
.agenda-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.agenda-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 28px 32px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--grey-300);
  transition: all var(--transition);
}

.agenda-item:hover {
  border-color: var(--orange);
  transform: translateX(6px);
}

.agenda-item__date {
  text-align: center;
  border-right: 1px solid var(--grey-300);
  padding-right: 24px;
}

.agenda-item__day {
  font-family: 'Anton', sans-serif;
  font-size: 2.4rem;
  color: var(--orange);
  line-height: 1;
}

.agenda-item__month {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-500);
}

.agenda-item__info h4 {
  font-family: 'Inter', sans-serif;
  text-transform: none;
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 4px;
  color: var(--black);
}

.agenda-item__meta {
  font-size: 0.9rem;
  color: var(--grey-500);
}

/* === City grid === */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.city-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--grey-900));
  transition: transform var(--transition);
}

.city-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}

.city-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  transition: all var(--transition);
}

.city-card:hover {
  transform: translateY(-6px);
}

.city-card:hover .city-card__bg {
  opacity: 0.85;
  transform: scale(1.05);
}

.city-card__inner {
  position: relative;
  z-index: 2;
}

.city-card__name {
  font-family: 'Anton', sans-serif;
  font-size: 2.2rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.city-card__sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 500;
}

.city-card__cta {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
}

.city-card__cta::after {
  content: ' →';
  display: inline-block;
  transition: transform var(--transition);
}

.city-card:hover .city-card__cta::after {
  transform: translateX(4px);
}

/* === Page hero (sub-pages) === */
.page-hero {
  padding: clamp(60px, 10vw, 100px) 0 clamp(40px, 6vw, 60px);
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 107, 26, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-hero__breadcrumbs {
  font-size: 0.85rem;
  color: var(--grey-300);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.page-hero__breadcrumbs a {
  color: var(--grey-300);
}

.page-hero__breadcrumbs a:hover { color: var(--orange); }

.page-hero__title {
  color: var(--white);
  margin-bottom: 20px;
}

.page-hero__title span { color: var(--orange); }

.page-hero__lead {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
}

/* === Forms === */
.form {
  display: grid;
  gap: 20px;
  max-width: 640px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--grey-300);
  border-radius: var(--radius);
  background: var(--white);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color var(--transition);
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 26, 0.15);
}

.form__textarea { min-height: 140px; resize: vertical; }

/* === Steps === */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step;
}

.step {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: var(--border);
  box-shadow: var(--shadow);
  position: relative;
  counter-increment: step;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  color: var(--orange);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}

.step h4 {
  font-family: 'Inter', sans-serif;
  text-transform: none;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--black);
}

.step p {
  color: var(--grey-500);
  font-size: 0.95rem;
  margin: 0 0 auto;
}

/* Show-kaartjes in "Meer shows" sectie */
.show-card {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background-color: var(--black);
  background-size: cover;
  background-position: center;
  min-height: 280px;
}
.show-card::before { display: none; }
.show-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.82) 100%);
  pointer-events: none;
}
.show-card > * {
  position: relative;
  z-index: 1;
}
.step.show-card .show-card__city {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.step.show-card h4 {
  color: var(--white);
}
.step.show-card p {
  color: rgba(255,255,255,0.8);
}
.show-card__link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
}
.show-card__link:hover { color: var(--orange); }

/* === Deel-knop === */
.btn-share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 12px;
  padding: 12px 20px;
  background: transparent;
  border: 1.5px solid var(--grey-300);
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-share:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* === Locatie / Maps widget === */
.location-widget__venue {
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 2px;
}
.location-widget__addr {
  color: var(--grey-500);
  font-size: 0.95rem;
  margin: 0;
}
.location-widget__label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey-500);
  margin: 20px 0 10px;
}
.location-widget__modes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 16px;
}
.travel-mode {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px 4px;
  background: var(--grey-100);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.travel-mode svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.travel-mode:hover {
  background: var(--orange);
  color: var(--white);
}
.location-widget__map {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.location-widget__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* === Menu-kaart === */
.menu-card {
  background: #FDF6EC;
  border: 1px solid #E8D9BF;
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  position: relative;
}
.menu-card::before {
  content: '🍽';
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.6rem;
  background: #FDF6EC;
  padding: 0 10px;
  line-height: 1;
}
.menu-card__inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.menu-course {
  padding: 18px 0;
}
.menu-course__name {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.menu-course__items {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.menu-course__items li {
  font-size: 1.05rem;
  color: #3D2B1A;
  line-height: 1.55;
  padding-left: 16px;
  position: relative;
}
.menu-course__items li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: #C8A97A;
}
.menu-card__divider {
  display: flex;
  align-items: center;
  gap: 12px;
}
.menu-card__divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #D4B896, transparent);
}
.menu-card__divider::before,
.menu-card__divider::after {
  content: '✦';
  font-size: 0.55rem;
  color: #C8A97A;
}

/* === Featured show on city page === */
.show-feature {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}

.show-feature__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}

.show-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.show-feature__media:hover img {
  transform: scale(1.04);
}

.show-feature__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}

.show-feature__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  background: var(--orange);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.show-feature__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}

.show-feature__date-stamp {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  background: var(--white);
  color: var(--black);
  padding: 12px 18px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
  box-shadow: var(--shadow);
}

.show-feature__date-day {
  font-family: 'Anton', sans-serif;
  font-size: 2rem;
  color: var(--orange);
  line-height: 1;
}

.show-feature__date-month {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-top: 2px;
}

.show-feature__eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 12px;
}

.show-feature__title {
  margin-bottom: 20px;
}

.show-feature__lead {
  color: var(--grey-500);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.section--dark .show-feature__lead { color: var(--grey-300); }

.show-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.show-info__item {
  padding: 20px 24px;
  border-right: 1px solid var(--grey-300);
  border-bottom: 1px solid var(--grey-300);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.show-info__item:nth-child(2n) { border-right: none; }
.show-info__item:nth-last-child(-n+2) { border-bottom: none; }

.show-info__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--grey-500);
  display: flex;
  align-items: center;
  gap: 6px;
}

.show-info__icon {
  width: 14px;
  height: 14px;
  fill: var(--orange);
  flex-shrink: 0;
}

.show-info__value {
  font-weight: 700;
  color: var(--black);
  font-size: 1.05rem;
}

@media (max-width: 960px) {
  .show-feature {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .show-feature__media {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 480px) {
  .show-info { grid-template-columns: 1fr; }
  .show-info__item { border-right: none; }
  .show-info__item:not(:last-child) { border-bottom: 1px solid var(--grey-300); }
}

/* === Workshop specs panel === */
.specs {
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

.specs__price {
  border-bottom: 1px solid var(--grey-300);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.specs__price-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-500);
  margin-bottom: 4px;
}

.specs__price-amount {
  font-family: 'Anton', sans-serif;
  font-size: 2.6rem;
  color: var(--orange);
  line-height: 1;
}

.specs__price-suffix {
  font-size: 0.9rem;
  color: var(--grey-500);
  margin-top: 6px;
}

.specs__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.specs__item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.95rem;
  padding: 4px 0;
  border-bottom: 1px dashed var(--grey-300);
}

.specs__item:last-of-type { border-bottom: none; }

.specs__item-label {
  color: var(--grey-500);
}

.specs__item-value {
  color: var(--black);
  font-weight: 600;
  text-align: right;
}

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

/* === Pill list === */
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 32px;
}

.pill {
  padding: 10px 20px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* === CTA banner === */
.cta-banner {
  background: var(--orange-2);
  border-radius: var(--radius-lg);
  border: var(--border);
  box-shadow: var(--shadow-lg);
  padding: clamp(40px, 6vw, 70px);
  text-align: center;
  color: var(--black);
}

.cta-banner h2 {
  color: var(--black);
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.1rem;
  color: var(--black);
  opacity: 0.75;
  margin-bottom: 32px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn--dark {
  background: var(--black);
  color: var(--orange-2);
  animation: wiggle 2.5s ease-in-out infinite;
}
.cta-banner .btn--dark:hover {
  animation: none;
}

/* === Footer === */
.footer {
  background: var(--black);
  color: var(--grey-300);
  padding: 80px 0 32px;
}

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

.footer__brand .logo {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.footer__tag {
  color: var(--grey-300);
  max-width: 280px;
  font-size: 0.95rem;
}

.footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
}

.footer__list li { margin-bottom: 10px; }

.footer__list a {
  color: var(--grey-300);
  font-size: 0.95rem;
}

.footer__list a:hover { color: var(--orange); }

.footer__contact p {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.footer__bottom {
  border-top: 1px solid var(--grey-900);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--grey-500);
}

/* === Reveal animation === */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.2,0.8,0.2,1), transform 0.6s cubic-bezier(0.2,0.8,0.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Step hover — global */
.step:hover:not(.show-card) {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-lg);
}

/* === Responsive === */
@media (max-width: 960px) {
  .feature-split,
  .feature-split--reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .feature-split--reverse .feature-split__media { order: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .agenda-item {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
    gap: 16px 20px;
    padding: 20px;
  }
  .agenda-item .btn { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 100%);
    height: 100vh;
    background: var(--white);
    padding: 100px 32px 32px;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: var(--shadow-lg);
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .nav__link {
    padding: 14px 18px;
    font-size: 1.1rem;
    border-radius: var(--radius);
  }
  .nav__cta { margin-left: 0; margin-top: 12px; text-align: center; }
  body.nav-open { overflow: hidden; }
  body.nav-open::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 90;
  }

  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .agenda-item__date {
    border-right: none;
    border-bottom: 1px solid var(--grey-300);
    padding-right: 0;
    padding-bottom: 12px;
    text-align: left;
    display: flex;
    align-items: baseline;
    gap: 12px;
    grid-column: 1 / -1;
  }
  .agenda-item__day { font-size: 1.8rem; }
}

/* === Intro content block (homepage feature-split tekst-kolom) === */
.intro-block h2:first-child {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 28px;
  color: var(--black);
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.intro-block h2 {
  font-size: 0.82rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--orange);
  text-transform: uppercase;
  line-height: 1.4;
  margin-top: 36px;
  margin-bottom: 14px;
}

.intro-block h2:first-child + h2 {
  margin-top: 0;
}

.intro-block h3 {
  font-size: 1.05rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.4;
  color: var(--black);
  margin-top: 20px;
  margin-bottom: 6px;
}

.intro-block .btn {
  margin-top: 8px;
}

/* === Eventbrite-style locatie page === */
.event-breadcrumbs {
  padding: 16px 0;
  font-size: 0.88rem;
  color: var(--grey-500);
  border-bottom: 1px solid var(--grey-300);
}

/* Title layer */
.event-title-section {
  padding: 40px 0 24px;
  border-bottom: 1px solid var(--grey-300);
}

/* Content layer: foto links + info rechts */
.event-content-section {
  padding: 36px 0 48px;
}
.event-content-inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

/* Foto blok: neemt de resterende ruimte */
.event-photo-block {
  flex: 1;
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
}
.event-photo-grid {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  height: 100%;
}
.event-photo-grid--has-gallery {
  grid-template-columns: 3fr 2fr;
  gap: 4px;
}
.event-photo-grid__main {
  overflow: hidden;
  min-height: 0;
}
.event-photo-grid__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.event-photo-grid__main img:hover { transform: scale(1.03); }
.event-photo-grid__thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
}
.event-photo-grid__thumb {
  overflow: hidden;
}
.event-photo-grid__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.event-photo-grid__thumb img:hover { transform: scale(1.03); }

/* Info blok rechts: vaste breedte 296.4px */
.event-info-block {
  flex-shrink: 0;
  width: 296.4px;
}
.event-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--grey-300);
  border-radius: var(--radius);
  overflow: hidden;
}
.event-info-list__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--grey-300);
}
.event-info-list__item:last-child { border-bottom: none; }
.event-info-list__icon {
  width: 22px;
  height: 22px;
  fill: var(--orange);
  flex-shrink: 0;
}
.event-info-list__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey-500);
  margin-bottom: 2px;
}
.event-info-list__value {
  display: block;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--ink);
}

.event-body {
  padding: 0 0 64px;
}
.event-body__inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.event-body__main {
  flex: 1;
  min-width: 0;
}
.event-body__sidebar {
  flex-shrink: 0;
  width: 296.4px;
}

.event-body__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 8px;
}
.event-body__title span { color: var(--orange); }

.event-body__eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.event-meta {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0 32px;
  padding: 24px;
  background: var(--grey-100);
  border-radius: var(--radius);
}
.event-meta__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.event-meta__icon {
  width: 22px;
  height: 22px;
  fill: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}
.event-meta__item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.event-meta__item strong { font-weight: 600; color: var(--ink); }
.event-meta__item span  { font-size: 0.9rem; color: var(--grey-500); }

.event-section {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--grey-300);
}
.event-section__title {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 16px;
  color: var(--ink);
}
.event-content p { margin-bottom: 14px; }
.event-content p:last-child { margin-bottom: 0; }

.event-comedians {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.event-comedian {
  display: flex;
  align-items: center;
  gap: 14px;
}
.event-comedian__img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.event-comedian__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.event-comedian__info strong { font-weight: 600; }
.event-comedian__info span  { font-size: 0.88rem; color: var(--grey-500); }

.event-practical {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.event-practical li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}
.event-practical svg {
  width: 20px;
  height: 20px;
  fill: var(--orange);
  flex-shrink: 0;
}
.event-practical strong {
  font-weight: 600;
  margin-right: 6px;
}

/* Sticky sidebar */
.event-body__sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.event-sidebar-card {
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.event-sidebar-card__price {
  font-family: 'Anton', sans-serif;
  font-size: 2rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.event-sidebar-card__price span {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--grey-500);
}
.event-sidebar-card__meta {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: var(--grey-100);
  border-radius: var(--radius);
}
.event-sidebar-card__meta li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink);
}
.event-sidebar-card__meta svg {
  width: 18px;
  height: 18px;
  fill: var(--orange);
  flex-shrink: 0;
}
.event-sidebar-card__link {
  text-align: center;
  font-size: 0.9rem;
  color: var(--grey-500);
  text-decoration: underline;
}
.event-sidebar-card__link:hover { color: var(--orange); }
.event-sidebar-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin: 0 0 12px;
  line-height: 1.2;
}
.event-info-list__link {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.event-info-list__link:hover { color: var(--orange); }

@media (max-width: 900px) {
  .event-body__inner {
    flex-direction: column;
  }
  .event-body__sidebar {
    width: 100%;
    order: -1;
  }
  .event-content-inner { flex-direction: column; }
  .event-photo-block { width: 100%; height: 260px; }
  .event-photo-grid--has-gallery { grid-template-rows: 1fr; grid-template-columns: 1fr; }
  .event-photo-grid__thumbs { display: none; }
}

/* ============================================================
   HOMEPAGE — Gen Z Festival Poster
   ============================================================ */

/* ── Hero ── */
.hp-hero {
  background: #0B0F19;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: none;
}

/* Orbs */
.hp-hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}
.hp-hero__orb--1 {
  width: 620px; height: 620px;
  background: oklch(65% 0.22 35 / 0.28);
  filter: blur(130px);
  top: -180px; right: -80px;
  animation: orbDrift 14s ease-in-out infinite alternate;
}
.hp-hero__orb--2 {
  width: 420px; height: 420px;
  background: oklch(58% 0.17 278 / 0.16);
  filter: blur(110px);
  bottom: -140px; left: -60px;
  animation: orbDrift 10s ease-in-out infinite alternate-reverse;
}
@keyframes orbDrift {
  from { transform: translate(0, 0)   scale(1); }
  to   { transform: translate(28px, 18px) scale(1.07); }
}

/* Noise grain */
.hp-hero__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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: 256px;
}

/* Layout */
.hp-hero__inner {
  display: flex;
  align-items: center;
  padding: 72px 0 80px;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Body */
.hp-hero__body {
  max-width: 660px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Live badge */
.hp-hero__live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FF5500;
  color: #fff;
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  width: fit-content;
  transform: rotate(-1.5deg);
  box-shadow: 3px 3px 0 rgba(0,0,0,0.35);
  animation: fadeUp 0.5s ease both;
}
.hp-hero__live-dot {
  width: 7px; height: 7px;
  background: oklch(65% 0.22 35);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 oklch(65% 0.22 35 / 0.5);
  animation: livePulse 2.2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0   oklch(65% 0.22 35 / 0.5); }
  60%       { box-shadow: 0 0 0 7px oklch(65% 0.22 35 / 0); }
}

/* Title */
.hp-hero__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.95);
  text-transform: uppercase;
  margin: 0;
  animation: fadeUp 0.6s 0.12s ease both;
}
.hp-hero__title-grad {
  font-style: normal;
  color: #FF5500;
  position: relative;
}
.hp-hero__title-grad::after {
  content: '✦';
  position: absolute;
  top: -0.1em;
  right: -0.6em;
  font-size: 0.35em;
  color: #FF5500;
  opacity: 0.7;
  animation: starSpin 8s linear infinite;
}
@keyframes starSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Sub-copy */
.hp-hero__lead {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.7;
  max-width: 460px;
  margin: 0;
  animation: fadeUp 0.6s 0.22s ease both;
}

/* Actions */
.hp-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.32s ease both;
}

/* Shared button base */
.hp-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  padding: 14px 28px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 0.25s ease, color 0.2s, background 0.2s;
  will-change: transform;
  position: relative;
  border: none;
}

/* Primary — solid fill + glow */
.hp-hero__btn--primary {
  background: oklch(65% 0.22 35);
  color: #fff;
}
.hp-hero__btn--primary:hover {
  color: #fff;
  box-shadow:
    0 0 0 1px oklch(65% 0.22 35),
    0 0 40px 6px oklch(65% 0.22 35 / 0.4),
    0 4px 20px oklch(65% 0.22 35 / 0.25);
}

/* Ghost — neobrutalist outline */
.hp-hero__btn--ghost {
  background: transparent;
  color: #fff;
  border: 2.5px solid rgba(255,255,255,0.55);
  box-shadow: 4px 4px 0 rgba(255,255,255,0.15);
}
.hp-hero__btn--ghost:hover {
  color: #fff;
  border-color: #fff;
  box-shadow: 4px 4px 0 rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.05);
}


/* ── Marquee ── */
.hp-marquee {
  background: #0A0A0A;
  border-top: 2.5px solid #0A0A0A;
  border-bottom: 2.5px solid #0A0A0A;
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}
.hp-marquee .marquee__track {
  display: inline-flex;
  animation: marqueeTick 24s linear infinite;
  will-change: transform;
}
.hp-marquee__item {
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: #fff;
  text-transform: uppercase;
  padding: 0 24px;
}
.hp-marquee__dot {
  color: #FF5500;
  font-size: 0.65rem;
  padding: 0 4px;
}

/* ── Intro split ── */
.hp-intro {
  background: #fff;
  padding: clamp(60px, 8vw, 100px) 0;
  border-bottom: 2.5px solid #0A0A0A;
}
.hp-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hp-intro__image-wrap {
  border-radius: 20px;
  border: 2.5px solid #0A0A0A;
  box-shadow: 8px 8px 0 #0A0A0A;
  overflow: hidden;
  position: relative;
}
.hp-intro__image-wrap::before {
  content: '';
  position: absolute;
  inset: 12px -12px -12px 12px;
  background: #FF8C3D;
  border-radius: 20px;
  border: 2.5px solid #0A0A0A;
  z-index: -1;
}
.hp-intro__image-wrap img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.hp-intro__image-wrap:hover img { transform: scale(1.03); }
.hp-intro__text h2.hp-intro__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: -0.02em;
  color: #0A0A0A;
  line-height: 1.05;
  margin: 10px 0 18px;
}
.hp-intro__text p {
  font-family: 'Bricolage Grotesque', sans-serif;
  color: #555;
  line-height: 1.75;
  margin-bottom: 14px;
}
.hp-intro__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}
.hp-intro__pills .workshop-pill {
  border-color: rgba(0,0,0,0.2);
  color: #0A0A0A;
  font-size: 0.82rem;
  text-decoration: none;
  cursor: pointer;
}
.hp-intro__pills .workshop-pill:hover {
  background: #FF5500;
  border-color: #FF5500;
  color: #fff;
}

/* ── Section head (homepage reusable) ── */
.hp-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.hp-section-head__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
  line-height: 1;
  color: #0A0A0A;
  margin: 8px 0 0;
  text-transform: uppercase;
}

/* ── Aanbod sectie ── */
.hp-aanbod {
  background: #fff;
  padding: clamp(60px, 8vw, 100px) 0;
  border-bottom: 2.5px solid #0A0A0A;
}

/* ── Shows sectie ── */
.hp-shows {
  background: #0A0A0A;
  border-top: 2.5px solid #0A0A0A;
  padding: clamp(60px, 8vw, 100px) 0;
  border-bottom: 2.5px solid #0A0A0A;
}
.hp-shows .lineup-card {
  background: #1A1A1A;
  border-color: rgba(255,255,255,0.12);
  box-shadow: none;
}
.hp-shows .lineup-card:hover {
  border-color: rgba(255,85,0,0.35);
  box-shadow: 4px 4px 0 rgba(255,85,0,0.25);
}
.hp-shows .lineup-card__title { color: #fff; }
.hp-shows .lineup-card__title a { color: #fff; }
.hp-shows .lineup-card__title a:hover { color: #FF5500; }
.hp-shows .lineup-card__meta { color: rgba(255,255,255,0.45); }

/* ── Locaties sectie ── */
.hp-locaties {
  background: #0A0A0A;
  padding: clamp(60px, 8vw, 100px) 0;
  border-bottom: 2.5px solid #0A0A0A;
}
.hp-locaties .hp-section-head__title { color: #fff; }
.hp-locaties .city-card {
  border: 2.5px solid rgba(255,255,255,0.15);
  box-shadow: none;
  transition: transform 0.15s ease, border-color 0.2s;
}
.hp-locaties .city-card:hover {
  transform: translateY(-6px);
  border-color: #FF5500;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hp-hero { min-height: auto; }
  .hp-hero__inner { padding: 80px 0 60px; }
  .hp-hero__body  { max-width: 100%; }
  .hp-intro__inner { grid-template-columns: 1fr; }
  .hp-section-head { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   PAGE CONTACT — Gen Z Booking Form
   ============================================================ */

.contact-hero {
  background: #0B0F19;
  padding: 56px 0 64px;
  overflow: hidden;
  position: relative;
  border-bottom: none;
}
.contact-hero::before {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 480px; height: 480px;
  background: oklch(65% 0.22 35 / 0.12);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.contact-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.contact-hero__body { display: flex; flex-direction: column; gap: 20px; }
.contact-hero__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  animation: fadeUp 0.6s 0.1s ease both;
}
.contact-hero__title span { color: #FF5500; }
.contact-hero__lead {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 480px;
  margin: 0;
}

/* ── Main layout ── */
/* ── Trust strip ── */
.contact-trust {
  background: #0B0F19;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 32px 0;
}
.contact-trust__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.contact-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 48px;
  text-align: center;
}
.contact-trust__stat {
  font-family: 'Anton', sans-serif;
  font-size: 2.2rem;
  line-height: 1;
  color: #FF5500;
  letter-spacing: 0.02em;
}
.contact-trust__stat sup {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  vertical-align: super;
  color: #FF5500;
}
.contact-trust__label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.contact-trust__divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .contact-trust__inner { flex-wrap: wrap; gap: 24px; }
  .contact-trust__divider { display: none; }
  .contact-trust__item { padding: 0 20px; }
}

/* ── Form disclaimer ── */
.contact-form__disclaimer {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.78rem;
  color: #999;
  text-align: center;
  margin: 8px 0 0;
}

/* ── Reviews ── */
.contact-reviews {
  background: #0B0F19;
  padding: 64px 0 72px;
}
.contact-reviews__head {
  text-align: center;
  margin-bottom: 40px;
}
.contact-reviews__head h2 {
  color: #fff;
  margin-top: 8px;
}
.contact-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-review-card__stars {
  color: #FF8C3D;
  font-size: 1rem;
  letter-spacing: 2px;
}
.contact-review-card p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.contact-review-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.contact-review-card__author strong {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.88rem;
  color: #fff;
}
.contact-review-card__author span {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
@media (max-width: 860px) {
  .contact-reviews__grid { grid-template-columns: 1fr; }
  .contact-trust__inner { gap: 20px; justify-content: flex-start; }
}

.contact-main {
  background: #f7f6f4;
  padding: 72px 0 88px;
}
.contact-main__inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
}

/* ── Form ── */
.contact-form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 48px 48px 40px;
  box-shadow: 0 2px 40px rgba(0,0,0,0.07);
}
.contact-form-head { margin-bottom: 36px; }
.contact-form-head__eyebrow {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FF5500;
  margin-bottom: 10px;
}
.contact-form-head h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.02em;
  color: #0A0A0A;
  line-height: 1.05;
  margin-bottom: 10px;
}
.contact-form-head p {
  font-family: 'Bricolage Grotesque', sans-serif;
  color: #888;
  font-size: 0.92rem;
  margin: 0;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.contact-form__label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #555;
}
.contact-form__label span {
  font-weight: 400;
  color: #bbb;
  text-transform: none;
  letter-spacing: 0;
}
.contact-form__input {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #0A0A0A;
  background: #fafafa;
  border: 1.5px solid #e8e8e8;
  border-radius: 12px;
  padding: 13px 16px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.contact-form__input::placeholder { color: #bbb; }
.contact-form__input:focus {
  border-color: #FF5500;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255,85,0,0.1);
}
.contact-form__textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form__select { cursor: pointer; }
.contact-form__submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 16px 24px;
  margin-top: 4px;
  border-radius: 14px;
  letter-spacing: 0.02em;
}
.contact-form__status {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #FF5500;
  text-align: center;
  margin: 0;
  min-height: 24px;
}

/* ── Contact info sidebar ── */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: sticky;
  top: calc(var(--header-h) + 24px);
  background: #0B0F19;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 40px rgba(0,0,0,0.18);
}
.contact-info__card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 28px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  border-radius: 0;
  box-shadow: none;
  transition: background 0.15s;
}
.contact-info__card:hover { background: rgba(255,255,255,0.04); transform: none; box-shadow: none; }
.contact-info__icon { font-size: 1.2rem; flex-shrink: 0; line-height: 1.4; opacity: 0.7; }
.contact-info__label {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 3px;
}
.contact-info__value {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  display: block;
  line-height: 1.45;
}
a.contact-info__value:hover { color: #FF5500; }

.contact-info__hours {
  padding: 24px 28px;
  background: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.contact-info__hours h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}
.contact-info__hour-row {
  display: flex;
  justify-content: space-between;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.contact-info__hour-row:last-child { border-bottom: none; }
.contact-info__hour-row--closed { color: rgba(255,255,255,0.25); }
.contact-info__hour-row--closed span:last-child { font-style: italic; }

.contact-info__promise {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 28px;
  background: rgba(255,85,0,0.12);
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.contact-info__promise-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-info__promise strong {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.contact-info__promise p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 860px) {
  .contact-hero__inner { flex-direction: column; align-items: flex-start; }
  .contact-hero__inner .comedians-hero__deco { display: none; }
  .contact-main__inner { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .contact-form__row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
}

/* ============================================================
   ARCHIVE AANBOD — Gen Z Services Board
   ============================================================ */

.aanbod-hero {
  background: #fff;
  padding: 20px 0 24px;
  border-bottom: 2.5px solid #0A0A0A;
  overflow: hidden;
  position: relative;
}
.aanbod-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 360px; height: 360px;
  background: #FF8C3D;
  border-radius: 50%;
  opacity: 0.28;
  pointer-events: none;
}
.aanbod-hero__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.aanbod-hero__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.aanbod-hero__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: #0A0A0A;
  text-transform: uppercase;
  margin: 0;
  animation: fadeUp 0.6s 0.1s ease both;
}
.aanbod-hero__title span { color: #FF5500; }
.aanbod-hero__lead {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  color: #555;
  line-height: 1.65;
  max-width: 500px;
  margin: 0;
}

/* ── Cards grid ── */
.aanbod-grid-section {
  background: #fff;
  padding: 56px 0 72px;
}
.aanbod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.aanbod-card {
  display: flex;
  flex-direction: column;
  border: 2.5px solid #0A0A0A;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 5px 5px 0 #0A0A0A;
  text-decoration: none;
  color: #0A0A0A;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.aanbod-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 #0A0A0A;
}
.aanbod-card__image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 2.5px solid #0A0A0A;
}
.aanbod-card__image img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.aanbod-card:hover .aanbod-card__image img { transform: scale(1.05); }
.aanbod-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
}
.aanbod-card__image-inner {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 22px;
  z-index: 1;
}
.aanbod-card__tag {
  display: inline-block;
  background: #FF5500;
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.3);
  margin-bottom: 6px;
  display: block;
  width: fit-content;
}
.aanbod-card__title {
  font-family: 'Anton', sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
}
.aanbod-card__body {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.aanbod-card__lead {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.aanbod-card__cta {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #FF5500;
  transition: letter-spacing 0.2s ease;
}
.aanbod-card:hover .aanbod-card__cta { letter-spacing: 0.05em; }

@media (max-width: 860px) {
  .aanbod-hero__inner { flex-direction: column; align-items: flex-start; }
  .aanbod-hero__inner .comedians-hero__deco { display: none; }
}

/* ============================================================
   ARCHIVE COMEDIAN — Gen Z Comedy Roster
   ============================================================ */

/* ── Hero ── */
.comedians-hero {
  background: #fff;
  padding: 20px 0 24px;
  border-bottom: 2.5px solid #0A0A0A;
  overflow: hidden;
  position: relative;
}
.comedians-hero::before {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 380px; height: 380px;
  background: #FF8C3D;
  border-radius: 50%;
  opacity: 0.3;
  pointer-events: none;
}
.comedians-hero__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.comedians-hero__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.comedians-hero__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: #0A0A0A;
  text-transform: uppercase;
  margin: 0;
  animation: fadeUp 0.6s 0.1s ease both;
}
.comedians-hero__title span { color: #FF5500; }
.comedians-hero__lead {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  color: #555;
  line-height: 1.65;
  max-width: 480px;
  margin: 0;
}

/* HA HA HA decoratief blok */
.comedians-hero__deco {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  flex-shrink: 0;
}
.comedians-hero__deco span {
  font-family: 'Anton', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 2.5px #0A0A0A;
  opacity: 0.12;
  display: block;
}
.comedians-hero__deco span:nth-child(2) { opacity: 0.08; }
.comedians-hero__deco span:nth-child(3) { opacity: 0.04; }

/* ── Comedian cards grid ── */
.comedians-grid-section {
  background: #fff;
  padding: 56px 0 72px;
}
.comedians-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.comedian-card {
  display: flex;
  flex-direction: column;
  border: 2.5px solid #0A0A0A;
  border-radius: 20px;
  overflow: hidden;
  background: #0A0A0A;
  box-shadow: 5px 5px 0 #0A0A0A;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.comedian-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 #0A0A0A;
}
.comedian-card__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.comedian-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s ease;
}
.comedian-card:hover .comedian-card__photo img { transform: scale(1.05); }
.comedian-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
}
.comedian-card__body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 2.5px solid rgba(255,255,255,0.1);
  background: #111;
}
.comedian-card__tag {
  display: inline-block;
  background: #FF5500;
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.2);
  align-self: flex-start;
}
.comedian-card__name {
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
}
.comedian-card__cta {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #FF5500;
  letter-spacing: 0.02em;
  margin-top: 4px;
  transition: letter-spacing 0.2s ease;
}
.comedian-card:hover .comedian-card__cta { letter-spacing: 0.06em; }

/* ── CTA sectie ── */
.comedians-cta {
  background: #0A0A0A;
  border-top: 2.5px solid #0A0A0A;
  padding: clamp(60px, 8vw, 100px) 0;
}
.comedians-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.comedians-cta__inner h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 10px 0 14px;
}
.comedians-cta__inner h2 span { color: #FF5500; }
.comedians-cta__inner p {
  font-family: 'Bricolage Grotesque', sans-serif;
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  max-width: 440px;
}
.comedians-cta__btn {
  font-size: 1rem;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .comedians-hero__inner { flex-direction: column; align-items: flex-start; }
  .comedians-hero__deco { display: none; }
  .comedians-cta__inner { flex-direction: column; }
}

/* ============================================================
   PAGE AGENDA — Gen Z Festival Lineup
   ============================================================ */

/* ── Hero ── */
.agenda-hero {
  background: #fff;
  padding: 20px 0 24px;
  border-bottom: 2.5px solid #0A0A0A;
  overflow: hidden;
  position: relative;
}
.agenda-hero::before {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 360px; height: 360px;
  background: #FF8C3D;
  border-radius: 50%;
  opacity: 0.28;
  pointer-events: none;
}
.agenda-hero__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.agenda-hero__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: #0A0A0A;
  text-transform: uppercase;
  margin: 12px 0 0;
  animation: fadeUp 0.6s 0.1s ease both;
}
.agenda-hero__title span { color: #FF5500; }
.agenda-hero__lead {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  color: #555;
  line-height: 1.65;
  max-width: 480px;
  margin: 12px 0 0;
}
.agenda-hero__arrow {
  font-family: 'Anton', sans-serif;
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 1;
  color: #FF5500;
  border: 2.5px solid #0A0A0A;
  border-radius: 50%;
  width: clamp(90px, 14vw, 140px);
  height: clamp(90px, 14vw, 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 5px 5px 0 #0A0A0A;
  animation: bounceDown 1.8s ease-in-out infinite;
}

/* Live dot */
.agenda-hero__live {
  display: inline-block;
  width: 8px; height: 8px;
  background: #FF5500;
  border-radius: 50%;
  margin-right: 4px;
  animation: pulse 1.4s ease-in-out infinite;
}

/* ── Upcoming shows ── */
.agenda-section {
  background: #fff;
  padding: 56px 0 72px;
}
.agenda-lineup {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Lineup card — concert ticket stijl */
.lineup-card {
  display: flex;
  align-items: center;
  gap: 0;
  border: 2.5px solid #0A0A0A;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 5px 5px 0 #0A0A0A;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.lineup-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 #0A0A0A;
}
.lineup-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  padding: 20px 16px;
  background: #FF5500;
  border-right: 2.5px solid #0A0A0A;
  align-self: stretch;
}
.lineup-card__day {
  font-family: 'Anton', sans-serif;
  font-size: 2.2rem;
  color: #fff;
  line-height: 1;
}
.lineup-card__month {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-top: 2px;
}
.lineup-card__info {
  flex: 1;
  padding: 20px 28px;
}
.lineup-card__title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #0A0A0A;
  text-transform: none;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
  line-height: 1.2;
}
.lineup-card__title a {
  color: inherit;
  text-decoration: none;
}
.lineup-card__title a:hover { color: #FF5500; }
.lineup-card__meta {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.88rem;
  color: #666;
  margin: 0;
}
.lineup-card__btn { margin: 0 24px; flex-shrink: 0; }

/* Past shows */
.agenda-past {
  background: #0A0A0A;
  border-top: 2.5px solid #0A0A0A;
  padding: 60px 0 72px;
}
.agenda-past__head {
  margin-bottom: 36px;
}
.agenda-past__head h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
  margin-top: 8px;
}
.lineup-card--past {
  background: #1A1A1A;
  border-color: rgba(255,255,255,0.1);
  box-shadow: none;
  opacity: 0.8;
}
.lineup-card--past:hover {
  border-color: rgba(255,85,0,0.3);
  opacity: 1;
  box-shadow: 4px 4px 0 rgba(255,85,0,0.2);
}
.lineup-card--past .lineup-card__date {
  background: #333;
  border-right-color: rgba(255,255,255,0.1);
}
.lineup-card--past .lineup-card__title { color: #fff; }
.lineup-card--past .lineup-card__meta { color: rgba(255,255,255,0.4); }

/* Empty state */
.agenda-empty {
  text-align: center;
  padding: 60px 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  color: #888;
}
.agenda-empty span { font-size: 3rem; display: block; margin-bottom: 12px; }
.agenda-empty a { color: #FF5500; font-weight: 700; }

/* ── Responsive ── */
@media (max-width: 700px) {
  .agenda-hero__inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .agenda-hero__arrow { display: none; }
  .lineup-card { flex-wrap: wrap; }
  .lineup-card__btn { margin: 0 16px 16px; }
}

/* ============================================================
   ARCHIVE LOCATIE — Gen Z Tour Poster
   ============================================================ */

/* ── Hero ── */
.locaties-hero {
  background: #fff;
  padding: 20px 0 24px;
  border-bottom: 2.5px solid #0A0A0A;
  position: relative;
  overflow: hidden;
}
.locaties-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 360px; height: 360px;
  background: #FF8C3D;
  border-radius: 50%;
  opacity: 0.25;
  pointer-events: none;
}
.locaties-hero__inner {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.locaties-hero__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.locaties-hero__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: #0A0A0A;
  text-transform: uppercase;
  margin: 0;
  animation: fadeUp 0.6s 0.1s ease both;
}
.locaties-hero__title span { color: #FF5500; }
.locaties-hero__lead {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  color: #555;
  line-height: 1.65;
  max-width: 480px;
  margin: 0;
}

/* Pijl naar beneden */
.locaties-hero__arrow {
  font-family: 'Anton', sans-serif;
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 1;
  color: #FF5500;
  border: 2.5px solid #0A0A0A;
  border-radius: 50%;
  width: clamp(100px, 16vw, 160px);
  height: clamp(100px, 16vw, 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 5px 5px 0 #0A0A0A;
  animation: bounceDown 1.8s ease-in-out infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(10px); }
}

/* ── City name ticker ── */
.locaties-ticker {
  background: #FF5500;
  border-top: 2.5px solid #0A0A0A;
  border-bottom: 2.5px solid #0A0A0A;
  overflow: hidden;
  padding: 12px 0;
  white-space: nowrap;
}
.locaties-ticker__track {
  display: inline-flex;
  animation: marqueeTick 22s linear infinite;
  will-change: transform;
}
.locaties-ticker__track span {
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: #fff;
  padding: 0 20px;
}
.locaties-ticker__dot {
  color: rgba(255,255,255,0.5) !important;
  padding: 0 4px !important;
  font-size: 0.6rem !important;
}

/* ── City grid ── */
.locaties-grid-section {
  background: #fff;
  padding: 56px 0 72px;
}
.locaties-city-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.locaties-city-grid .city-card {
  border: 2.5px solid #0A0A0A;
  box-shadow: 5px 5px 0 #0A0A0A;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.locaties-city-grid .city-card:hover {
  transform: translate(-2px, -2px) translateY(-4px);
  box-shadow: 7px 7px 0 #0A0A0A;
}

/* ── "Niet jouw stad" CTA ── */
.locaties-cta {
  background: #0A0A0A;
  border-top: 2.5px solid #0A0A0A;
  padding: clamp(60px, 8vw, 100px) 0;
}
.locaties-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.locaties-cta__text {
  max-width: 520px;
}
.locaties-cta__text h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 12px 0 16px;
}
.locaties-cta__text h2 span { color: #FF5500; }
.locaties-cta__text p {
  color: rgba(255,255,255,0.55);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}
.locaties-cta__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.locaties-cta__btn {
  font-size: 1.05rem;
  padding: 18px 36px;
  white-space: nowrap;
}
.locaties-cta__sub {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .locaties-hero__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .locaties-hero__arrow { align-self: auto; }
  .locaties-cta__inner { flex-direction: column; text-align: center; }
  .locaties-cta__text { max-width: 100%; }
}

/* ============================================================
   ARCHIVE WORKSHOP — Gen Z Bold Design
   Scoped to .post-type-archive-workshop body class
   ============================================================ */

/* ── Hero ── */
.workshops-archive-hero {
  background: #fff;
  padding: 20px 0 24px;
  position: relative;
  overflow: hidden;
  border-bottom: 2.5px solid #0A0A0A;
}
.workshops-archive-hero::before {
  content: '';
  position: absolute;
  bottom: -100px; left: -80px;
  width: 380px; height: 380px;
  background: #FF8C3D;
  border-radius: 50%;
  opacity: 0.3;
  pointer-events: none;
}
.workshops-archive-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.workshops-archive-hero__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 600px;
}
.workshops-archive-hero__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #0A0A0A;
  text-transform: uppercase;
  margin: 0;
  animation: fadeUp 0.6s 0.1s ease both;
}
.workshops-archive-hero__title span { color: #FF5500; }
.workshops-archive-hero__lead {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* Decoratief HA HA HA blok */
.workshops-archive-hero__deco {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex-shrink: 0;
  animation: fadeIn 0.8s 0.3s ease both;
}
.workshops-archive-hero__deco span {
  font-family: 'Anton', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 2.5px #0A0A0A;
  display: block;
  opacity: 0.12;
}
.workshops-archive-hero__deco span:nth-child(2) { opacity: 0.08; }
.workshops-archive-hero__deco span:nth-child(3) { opacity: 0.04; }

/* ── Cards grid ── */
.workshops-archive-grid {
  background: #fff;
  padding: 64px 0 80px;
}
.workshops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.workshop-card {
  display: flex;
  flex-direction: column;
  border: 2.5px solid #0A0A0A;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 5px 5px 0 #0A0A0A;
  text-decoration: none;
  color: #0A0A0A;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.workshop-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 #0A0A0A;
  color: #0A0A0A;
}
.workshop-card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 2.5px solid #0A0A0A;
}
.workshop-card__image img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.workshop-card:hover .workshop-card__image img { transform: scale(1.05); }
.workshop-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.workshop-card__tag {
  display: inline-block;
  background: #FF5500;
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  border: 2px solid #0A0A0A;
}
.workshop-card__title {
  font-family: 'Anton', sans-serif;
  font-size: 1.7rem;
  text-transform: uppercase;
  color: #0A0A0A;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
}
.workshop-card__lead {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.workshop-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1.5px solid #EBEBEB;
}
.workshop-card__price {
  font-family: 'Anton', sans-serif;
  font-size: 1.6rem;
  color: #FF5500;
  letter-spacing: -0.02em;
  line-height: 1;
}
.workshop-card__price small {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #888;
  margin-left: 3px;
}
.workshop-card__cta {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #FF5500;
  letter-spacing: 0.02em;
}

/* ── Stappen sectie ── */
.workshops-steps {
  background: #0A0A0A;
  border-top: 2.5px solid #0A0A0A;
  padding: clamp(60px, 8vw, 100px) 0;
}
.workshops-steps__head {
  margin-bottom: 48px;
  max-width: 640px;
}
.workshops-steps__head h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
}
.workshops-steps__head p {
  color: rgba(255,255,255,0.55);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
}
.workshops-steps .step {
  background: #1A1A1A;
  border-color: rgba(255,255,255,0.1);
  box-shadow: none;
}
.workshops-steps .step::before { color: #FF5500; }
.workshops-steps .step h4 { color: #fff; }
.workshops-steps .step p { color: rgba(255,255,255,0.55); }
.workshops-steps .step:hover {
  border-color: rgba(255,85,0,0.4);
  background: #222;
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 rgba(255,85,0,0.3);
}

/* ── Responsive ── */
@media (max-width: 800px) {
  .workshops-archive-hero__inner { flex-direction: column; }
  .workshops-archive-hero__deco { display: none; }
}

/* ============================================================
   SINGLE WORKSHOP — Gen Z Bold Design
   Scoped to .single-workshop body class
   ============================================================ */

.single-workshop,
.single-aanbod {
  --gz-orange: #FF5500;
  --gz-yellow: #FF8C3D;
  --gz-black:  #0A0A0A;
  --gz-border: 2.5px solid #0A0A0A;
  --gz-shadow: 5px 5px 0 #0A0A0A;
  background: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
}

/* ── Breadcrumbs ── */
.workshop-breadcrumbs {
  background: #0B0F19;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 10px 0;
  color: #fff;
}
.workshop-breadcrumbs a,
.workshop-breadcrumbs span {
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
}
.single-aanbod .workshop-breadcrumbs,
.single-workshop .workshop-breadcrumbs {
  background: var(--gz-orange);
  border-bottom: var(--gz-border);
}

/* ── Hero ── */
.workshop-hero {
  background: #fff;
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}
.workshop-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  background: var(--gz-yellow);
  border-radius: 50%;
  opacity: 0.3;
  pointer-events: none;
}
.workshop-hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.workshop-hero__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.workshop-hero__tag {
  display: inline-block;
  background: var(--gz-orange);
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  border: var(--gz-border);
  animation: popIn 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}
.workshop-hero__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--gz-black);
  text-transform: uppercase;
  margin: 0;
  animation: fadeUp 0.6s 0.1s ease both;
}
.workshop-hero__title span { color: var(--gz-orange); }
.workshop-hero__lead {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  max-width: 540px;
  margin: 0;
}
.workshop-hero__label {
  display: inline-block;
  background: var(--gz-yellow);
  color: var(--gz-black);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px 2px;
  border-radius: 6px;
  transform: rotate(-0.6deg);
}
.workshop-hero__content { color: #444; line-height: 1.75; }
.workshop-hero__content p { margin-bottom: 12px; }
.workshop-hero__content p:last-child { margin-bottom: 0; }
.workshop-hero__cta { margin-top: 8px; }

/* Photo */
.workshop-hero__photo { position: relative; }
.workshop-hero__photo::before {
  content: '';
  position: absolute;
  inset: 12px -12px -12px 12px;
  background: var(--gz-yellow);
  border-radius: 18px;
  border: var(--gz-border);
  z-index: 0;
}
.workshop-hero__photo-wrap {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  border: var(--gz-border);
  box-shadow: var(--gz-shadow);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.workshop-hero__photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.workshop-hero__photo-wrap:hover img { transform: scale(1.04); }

/* ── Specs + Learn sectie ── */
.workshop-specs {
  background: var(--gz-black);
  border-top: var(--gz-border);
  padding: clamp(60px, 8vw, 100px) 0;
}
.workshop-specs__inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: start;
}

/* Specs kaart */
.workshop-specs__card {
  background: #fff;
  border: var(--gz-border);
  border-radius: 20px;
  box-shadow: var(--gz-shadow);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.workshop-price { border-bottom: 1.5px solid #EBEBEB; padding-bottom: 20px; }
.workshop-price__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 6px;
}
.workshop-price__amount {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  color: var(--gz-orange);
  line-height: 1;
  letter-spacing: -0.02em;
}
.workshop-price__sub {
  display: block;
  font-size: 0.82rem;
  color: #888;
  margin-top: 4px;
}
.workshop-specs__list { display: flex; flex-direction: column; gap: 10px; }
.workshop-specs__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #F0F0F0;
  gap: 12px;
}
.workshop-specs__item:last-child { border-bottom: none; }
.workshop-specs__item-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #666;
}
.workshop-specs__item-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gz-black);
  text-align: right;
}

/* Wat leer je */
.workshop-learn { color: #fff; }
.workshop-learn__eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gz-orange);
  margin-bottom: 10px;
}
.workshop-learn__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 28px;
  line-height: 1;
}
.workshop-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.workshop-pill {
  display: inline-block;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  padding: 8px 20px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  transition: background 0.2s, border-color 0.2s;
}
.workshop-pill:hover {
  background: var(--gz-orange);
  border-color: var(--gz-orange);
}
.workshop-learn__closing {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 480px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .workshop-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .workshop-hero__photo {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }
  .workshop-hero__photo::before {
    inset: 8px -8px -8px 8px;
  }
  .workshop-specs__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================================
   SINGLE COMEDIAN — Gen Z Concert Poster
   Scoped to .single-comedian body class
   ============================================================ */

.single-comedian {
  --gz-orange: #FF5500;
  --gz-yellow: #FF8C3D;
  --gz-black:  #0A0A0A;
  --gz-border: 2.5px solid #0A0A0A;
  --gz-shadow: 5px 5px 0 #0A0A0A;
  background: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
}

/* ── Breadcrumbs ── */
.comedian-breadcrumbs {
  background: var(--gz-orange);
  border-bottom: var(--gz-border);
  padding: 10px 0;
}
.comedian-breadcrumbs a,
.comedian-breadcrumbs span {
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
}

/* ── Hero ── */
.comedian-hero {
  background: #fff;
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}
.comedian-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: var(--gz-yellow);
  border-radius: 50%;
  opacity: 0.35;
  pointer-events: none;
}
.comedian-hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.comedian-hero__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.comedian-hero__tag {
  display: inline-block;
  background: var(--gz-orange);
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  border: var(--gz-border);
  animation: popIn 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}
.comedian-hero__name {
  font-family: 'Anton', sans-serif;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--gz-black);
  text-transform: uppercase;
  margin: 0;
  animation: fadeUp 0.6s 0.1s ease both;
}
.comedian-hero__label {
  display: inline-block;
  background: var(--gz-yellow);
  color: var(--gz-black);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 14px 2px;
  border-radius: 6px;
  transform: rotate(-0.8deg);
}
.comedian-hero__bio {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #444;
  max-width: 560px;
}
.comedian-hero__bio p { margin-bottom: 12px; }
.comedian-hero__bio p:last-child { margin-bottom: 0; }
.comedian-hero__cta {
  margin-top: 8px;
  font-size: 1rem;
}

/* ── Photo ── */
.comedian-hero__photo {
  position: relative;
}
.comedian-hero__photo::before {
  content: '';
  position: absolute;
  inset: 12px -12px -12px 12px;
  background: var(--gz-yellow);
  border-radius: 18px;
  border: var(--gz-border);
  z-index: 0;
}
.comedian-hero__photo-wrap {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  border: var(--gz-border);
  box-shadow: var(--gz-shadow);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.comedian-hero__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s ease;
}
.comedian-hero__photo-wrap:hover img {
  transform: scale(1.04);
}

/* ── Upcoming shows ── */
.comedian-shows {
  background: var(--gz-black);
  border-top: var(--gz-border);
  padding: clamp(60px, 8vw, 100px) 0;
}
.comedian-shows__head {
  margin-bottom: 40px;
}
.comedian-shows__head h2 {
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
}
.comedian-shows__grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Show cards: bold ticket stijl */
.comedian-show-card {
  position: relative;
  border-radius: 16px;
  border: var(--gz-border);
  overflow: hidden;
  background: #1A1A1A;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.comedian-show-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--gz-shadow);
}
.comedian-show-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  transition: opacity 0.3s ease;
}
.comedian-show-card:hover .comedian-show-card__bg {
  opacity: 0.35;
}
.comedian-show-card__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
}
.comedian-show-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
  background: var(--gz-orange);
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.2);
  padding: 10px 14px;
}
.comedian-show-card__day {
  font-family: 'Anton', sans-serif;
  font-size: 2rem;
  color: #fff;
  line-height: 1;
}
.comedian-show-card__month {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-top: 2px;
}
.comedian-show-card__info {
  flex: 1;
}
.comedian-show-card__info h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 4px;
}
.comedian-show-card__info p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .comedian-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .comedian-hero__photo {
    order: -1;
    max-width: 320px;
    margin: 0 auto;
  }
  .comedian-hero__photo::before {
    inset: 8px -8px -8px 8px;
  }
  .comedian-show-card__inner {
    flex-wrap: wrap;
  }
}

/* ============================================================
   SINGLE LOCATIE — GEN Z COMEDY POSTER
   Bold · White · Chaotic · Alive
   ============================================================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes marqueeTick {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes wiggle {
  0%,100% { transform: rotate(-1.5deg) scale(1.01); }
  50%      { transform: rotate(1.5deg) scale(1.01); }
}
@keyframes popIn {
  0%   { transform: scale(0.7) rotate(-6deg); opacity: 0; }
  70%  { transform: scale(1.08) rotate(2deg); }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.single-locatie {
  --gz-white:  #FFFFFF;
  --gz-black:  #0A0A0A;
  --gz-orange: #FF5500;
  --gz-yellow: #FF8C3D;
  --gz-coral:  #FF2D55;
  --gz-muted:  #888888;
  --gz-border: 1px solid #ebebeb;
  --gz-radius: 16px;
  --gz-shadow: 0 4px 24px rgba(0,0,0,0.07);
  background: #f7f6f4;
  color: var(--gz-black);
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
}

/* ── Base ── */
.single-locatie body { background: #fff; }

/* ── Breadcrumbs ── */
.single-locatie .event-breadcrumbs {
  background: var(--gz-yellow);
  border-bottom: var(--gz-border);
}
.single-locatie .event-breadcrumbs a,
.single-locatie .event-breadcrumbs span {
  color: var(--gz-black);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
}

/* ── Hero image: full-width bovenaan ── */
.single-locatie .event-hero {
  max-width: var(--container);
  margin: 24px auto 0;
  padding: 0 24px 20px;
  border-bottom: none;
  position: relative;
}
.single-locatie .event-hero::after {
  content: '';
  position: absolute;
  inset: 10px -10px -10px 34px;
  background: var(--gz-yellow);
  border-radius: 20px;
  border: var(--gz-border);
  z-index: 0;
}
.single-locatie .event-hero img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 20px;
  border: var(--gz-border);
  box-shadow: var(--gz-shadow);
  transition: transform 0.4s ease;
}
.single-locatie .event-hero img:hover {
  transform: translate(-2px, -2px);
}

/* ── Event-main: de Eventbrite-stijl flow ── */
.single-locatie .event-main {
  background: #f7f6f4;
  padding: 48px 0 72px;
}
.single-locatie .event-main__body > .event-main__section {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  margin-bottom: 20px;
}
.single-locatie .event-ticket-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
  border: var(--gz-border);
}
.single-locatie .event-main__inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.single-locatie .event-main__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.single-locatie .event-main__section {
  border-top: 1.5px solid #EBEBEB;
  padding-top: 36px;
}
.single-locatie .event-main__section:first-of-type {
  border-top: none;
  padding-top: 0;
}
.single-locatie .event-main__sidebar {
  width: 340px;
  flex-shrink: 0;
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Ticket kaart (rechter kolom) ── */
.single-locatie .event-ticket-card {
  background: #fff;
  border: var(--gz-border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--gz-shadow);
}
.single-locatie .event-ticket-card__price {
  font-family: 'Anton', sans-serif;
  font-size: 2.2rem;
  color: var(--gz-orange);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1;
}

/* ── Hero title ── */
.single-locatie .event-title-section {
  background: #fff;
  padding: 64px 0 48px;
  position: relative;
  overflow: hidden;
}
.single-locatie .event-title-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 420px; height: 420px;
  background: var(--gz-yellow);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.55;
}
.single-locatie .event-title-section .container { position: relative; z-index: 1; }

.single-locatie .event-body__eyebrow {
  display: inline-block;
  background: var(--gz-orange);
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  animation: popIn 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}
.single-locatie .event-body__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--gz-black);
  animation: fadeUp 0.6s 0.1s ease both;
}
.single-locatie .event-body__title span {
  color: var(--gz-orange);
  display: inline-block;
  position: relative;
}
.single-locatie .event-body__title span::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 6px;
  background: var(--gz-orange);
  z-index: -1;
  transform: skewX(-3deg);
}

/* ── Marquee strip ── */
.locatie-marquee {
  background: var(--gz-black);
  color: var(--gz-yellow);
  overflow: hidden;
  border-top: var(--gz-border);
  border-bottom: var(--gz-border);
  padding: 14px 0;
  white-space: nowrap;
}
.locatie-marquee__track {
  display: inline-flex;
  gap: 0;
  animation: marqueeTick 18s linear infinite;
  will-change: transform;
}
.locatie-marquee__track span {
  font-family: 'Anton', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  padding: 0 28px;
  text-transform: uppercase;
}
.locatie-marquee__track span.dot {
  color: var(--gz-orange);
  padding: 0 4px;
}

/* ── Locatie foto slider ── */
.locatie-slider {
  position: relative;
  border-radius: 18px;
  border: 2.5px solid #0A0A0A;
  box-shadow: 5px 5px 0 #0A0A0A;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #111;
}
.locatie-slider__track {
  display: flex;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}
.locatie-slider__slide {
  flex: 0 0 100%;
  height: 100%;
}
.locatie-slider__slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.locatie-slider__btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 44px; height: 44px;
  background: #fff;
  border: 2.5px solid #0A0A0A;
  border-radius: 50%;
  box-shadow: 3px 3px 0 #0A0A0A;
  font-family: 'Anton', sans-serif;
  font-size: 1.1rem;
  color: #0A0A0A;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s;
}
.locatie-slider__btn:hover {
  background: #FF5500;
  color: #fff;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 4px 4px 0 #0A0A0A;
}
.locatie-slider__btn--prev { left: 12px; }
.locatie-slider__btn--next { right: 12px; }
.locatie-slider__dots {
  position: absolute;
  bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 10;
}
.locatie-slider__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: 1.5px solid rgba(0,0,0,0.3);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.locatie-slider__dot.is-active {
  background: #FF5500;
  border-color: #FF5500;
  transform: scale(1.3);
}

/* Offset blok achter de slider */
.single-locatie .workshop-hero__photo::before {
  content: '';
  position: absolute;
  inset: 12px -12px -12px 12px;
  background: #FF8C3D;
  border-radius: 18px;
  border: 2.5px solid #0A0A0A;
  z-index: 0;
}
.single-locatie .workshop-hero__photo {
  position: relative;
}
.single-locatie .locatie-slider {
  position: relative;
  z-index: 1;
}

/* ── Locatie hero overrides ── */
.single-locatie .workshop-hero {
  padding: 48px 0 56px;
}
/* Verberg de oude event-hero (nu vervangen door workshop-hero split) */
.single-locatie .event-hero { display: none; }
.single-locatie .workshop-hero__photo-wrap {
  aspect-ratio: 4 / 3;
}
.locatie-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 0;
}
.locatie-hero__meta-item {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #444;
}
.single-locatie .btn-share {
  border: 1.5px dashed #ccc;
  color: #888;
  background: transparent;
  border-radius: 12px;
  font-family: 'Bricolage Grotesque', sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  padding: 12px 20px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: border-color 0.2s, color 0.2s;
}
.single-locatie .btn-share:hover { border-color: #FF5500; color: #FF5500; }

/* ── Content section ── */
.single-locatie .event-content-section {
  background: #fff;
  padding: 48px 0 64px;
}
.single-locatie .event-content-inner {
  gap: 36px;
  align-items: flex-start;
}
.single-locatie .event-description {
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1.5px solid #EBEBEB;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.single-locatie .event-description p,
.single-locatie .event-description .event-content p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.1rem;
  line-height: 1.78;
  color: #444;
  margin-bottom: 16px;
}
.single-locatie .event-description p:last-child,
.single-locatie .event-description .event-content p:last-child {
  margin-bottom: 0;
}
.single-locatie .event-photo-block {
  border-radius: 18px;
  border: var(--gz-border);
  box-shadow: var(--gz-shadow);
  overflow: hidden;
}

/* ── Photo grid ── */
.single-locatie .event-photo-grid__main img {
  border-radius: 0;
  border: none;
  transform: none;
  transition: transform 0.35s ease;
}
.single-locatie .event-photo-grid__main img:hover { transform: scale(1.04); }
.single-locatie .event-photo-grid__thumb img {
  border-radius: 0;
  border: none;
}

/* ── Info block ── */
.single-locatie .event-info-block {
  background: #fff;
  border: var(--gz-border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--gz-shadow);
  animation: fadeUp 0.7s 0.2s ease both;
}
.single-locatie .event-info-list__item {
  border-bottom: 1.5px solid #EBEBEB;
  padding-bottom: 14px;
  margin-bottom: 14px;
}
.single-locatie .event-info-list__item:last-child {
  border-bottom: none; padding-bottom: 0; margin-bottom: 0;
}
.single-locatie .event-info-list__icon { fill: var(--gz-orange); }
.single-locatie .event-info-list__label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gz-muted);
}
.single-locatie .event-info-list__value {
  color: var(--gz-black);
  font-weight: 600;
  font-size: 1.05rem;
}

/* ── Reserveer knop ── */
.single-locatie .btn--primary {
  background: var(--gz-orange);
  border: none;
  box-shadow: 0 4px 16px rgba(255,85,0,0.25);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 12px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.single-locatie .btn--primary:hover {
  background: #e04800;
  box-shadow: 0 8px 28px rgba(255,85,0,0.3);
  transform: translateY(-2px);
}
.single-locatie .btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(255,85,0,0.2);
}

/* Deel-knop ── */
.locatie-hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.locatie-hero__actions .workshop-hero__cta {
  margin: 0;
}
.single-locatie .btn-share {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  padding: 14px 24px;
  border: 1.5px dashed #ccc;
  color: var(--gz-muted);
  background: transparent;
  border-radius: 12px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.single-locatie .btn-share:hover {
  border-color: var(--gz-orange);
  color: var(--gz-orange);
  background: transparent;
}

/* ── Event body (niet meer gebruikt, veiligheidsnet) ── */
.single-locatie .event-body { background: #fff; padding-top: 0; }
.single-locatie .event-section { border-top: 1.5px solid #EBEBEB; }
.single-locatie .event-section__title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--gz-black);
  letter-spacing: -0.02em;
  text-transform: none;
  margin-bottom: 20px;
  display: block;
  background: none;
  padding: 0 0 12px;
  border-radius: 0;
  transform: none;
  border-bottom: 2px solid #FF5500;
  width: fit-content;
}
.single-locatie .event-content p,
.single-locatie .event-section p {
  color: #444;
  line-height: 1.75;
  font-family: 'Bricolage Grotesque', sans-serif;
}

/* ── Agenda items ── */
.single-locatie .agenda-list { gap: 10px; }
.single-locatie .agenda-item {
  border: var(--gz-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--gz-shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.single-locatie .agenda-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.single-locatie .agenda-item__day {
  font-family: 'Anton', sans-serif;
  font-size: 1.8rem;
  color: var(--gz-orange);
  line-height: 1;
}
.single-locatie .agenda-item__month {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gz-muted);
}
.single-locatie .agenda-item__info h4 { color: var(--gz-black); }
.single-locatie .agenda-item__meta { color: var(--gz-muted); }
.single-locatie .agenda-item .btn--primary { font-size: 0.85rem; padding: 10px 18px; }

/* ── Sidebar cards ── */
.single-locatie .event-sidebar-card {
  background: #fff;
  border: var(--gz-border);
  border-radius: 20px;
  box-shadow: var(--gz-shadow);
  overflow: hidden;
}
.single-locatie .event-sidebar-card__title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gz-muted);
  margin-bottom: 16px;
}
.single-locatie .event-comedian__info strong { color: var(--gz-black); }
.single-locatie .event-comedian__info span { color: var(--gz-muted); }
.single-locatie .event-comedian__img {
  border: var(--gz-border);
  box-shadow: 2px 2px 0 var(--gz-black);
}

/* ── Locatie widget ── */
.single-locatie .location-widget__venue {
  color: var(--gz-black);
  font-weight: 700;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.single-locatie .location-widget__addr { color: var(--gz-muted); }
.single-locatie .location-widget__label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--gz-muted);
}
.single-locatie .travel-mode {
  background: #fff;
  color: #444;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  box-shadow: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.single-locatie .travel-mode:hover {
  background: #fff5f0;
  color: var(--gz-orange);
  border-color: var(--gz-orange);
  transform: none;
  box-shadow: none;
}

/* ── Menu card ── */
.single-locatie .menu-card {
  background: #fff;
  border: var(--gz-border);
  box-shadow: var(--gz-shadow);
  border-radius: 20px;
}
.single-locatie .menu-card::before { background: #fff; }
.single-locatie .menu-course__name {
  color: var(--gz-orange);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
}
.single-locatie .menu-course__items li { color: #333; }
.single-locatie .menu-card__divider::before,
.single-locatie .menu-card__divider::after { color: var(--gz-orange); }

/* ── "Meer shows" sectie: city-card stijl ── */
.single-locatie .section--grey {
  background: var(--gz-black);
}
.single-locatie .section--grey .section-head__eyebrow {
  color: var(--gz-orange);
}
.single-locatie .section--grey .section-head h2 {
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
}

/* Show-cards opmaken als city-cards */
.single-locatie .step.show-card {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background-color: var(--gz-black);
  background-size: cover;
  background-position: center;
  min-height: unset;
  border: none;
  box-shadow: none;
  position: relative;
  transition: transform 0.3s ease;
}
.single-locatie .step.show-card::before { display: none; }
.single-locatie .step.show-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.88) 100%);
  pointer-events: none;
  z-index: 0;
}
.single-locatie .step.show-card > * {
  position: relative;
  z-index: 1;
}
.single-locatie .step.show-card:hover {
  transform: translateY(-6px);
}
.single-locatie .step.show-card .show-card__city {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gz-orange);
  margin-bottom: 4px;
}
.single-locatie .step.show-card h4 {
  font-family: 'Anton', sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 6px;
}
.single-locatie .step.show-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin: 0 0 12px;
}
.single-locatie .step.show-card .show-card__link {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gz-orange);
  text-decoration: none;
  margin-top: 0;
}
.single-locatie .step.show-card .show-card__link::after {
  content: ' →';
  display: inline-block;
  transition: transform 0.25s ease;
}
.single-locatie .step.show-card:hover .show-card__link::after {
  transform: translateX(4px);
}

/* ── CTA banner ── */
.single-locatie .section:last-of-type {
  background: var(--gz-yellow);
  border-top: var(--gz-border);
}
.single-locatie .cta-banner {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
  padding: 0;
}
.single-locatie .cta-banner::before,
.single-locatie .cta-banner::after { display: none; }
.single-locatie .cta-banner h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--gz-black);
  letter-spacing: -0.02em;
}
.single-locatie .cta-banner p {
  color: var(--gz-black);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.1rem;
  opacity: 0.75;
}
.single-locatie .cta-banner .btn--dark {
  background: var(--gz-black);
  color: var(--gz-yellow);
  border: var(--gz-border);
  box-shadow: var(--gz-shadow);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 12px;
  animation: wiggle 2.5s ease-in-out infinite;
}
.single-locatie .cta-banner .btn--dark:hover {
  animation: none;
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 rgba(0,0,0,0.4);
}

/* ── Reveal animaties ── */
.single-locatie .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.single-locatie .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.single-locatie .reveal:nth-child(2) { transition-delay: 0.08s; }
.single-locatie .reveal:nth-child(3) { transition-delay: 0.16s; }
.single-locatie .reveal:nth-child(4) { transition-delay: 0.24s; }

/* ── Info list link ── */
.single-locatie .event-info-list__link { color: var(--gz-orange); }

/* ============================================================
   GLOBAL DARK HERO THEME — alle hero's + donkere secties
   ============================================================ */

/* ── Hero achtergronden → #0B0F19 ── */
.contact-hero,
.aanbod-hero,
.comedians-hero,
.agenda-hero,
.locaties-hero,
.workshops-archive-hero,
.workshop-hero,
.comedian-hero {
  background: #0B0F19;
  border-bottom: none;
}

/* Hero ::before orbs → donkere stijl (zelfde als hp-hero) */
.contact-hero::before,
.aanbod-hero::before,
.comedians-hero::before,
.agenda-hero::before,
.locaties-hero::before,
.workshops-archive-hero::before,
.workshop-hero::before,
.comedian-hero::before {
  background: oklch(65% 0.22 35 / 0.18);
  filter: blur(120px);
  opacity: 1;
  animation: orbDrift 14s ease-in-out infinite alternate;
}

/* Hero titels → wit */
.contact-hero__title,
.aanbod-hero__title,
.comedians-hero__title,
.agenda-hero__title,
.locaties-hero__title,
.workshops-archive-hero__title,
.workshop-hero__title,
.comedian-hero__name {
  color: #fff;
}

/* Hero lead-tekst → gemuteerd wit */
.contact-hero__lead,
.aanbod-hero__lead,
.comedians-hero__lead,
.agenda-hero__lead,
.locaties-hero__lead,
.workshops-archive-hero__lead,
.workshop-hero__lead,
.comedian-hero__bio {
  color: rgba(255,255,255,0.55);
}

/* HA HA HA deco-stroken → licht */
.comedians-hero__deco span,
.workshops-archive-hero__deco span {
  -webkit-text-stroke-color: rgba(255,255,255,0.55);
  color: transparent;
  opacity: 0.55;
}
.comedians-hero__deco span:nth-child(2),
.workshops-archive-hero__deco span:nth-child(2) { opacity: 0.35; }
.comedians-hero__deco span:nth-child(3),
.workshops-archive-hero__deco span:nth-child(3) { opacity: 0.18; }

/* Foto-offset blok achter workshop/comedian foto → subtiel licht */
.workshop-hero__photo::before,
.comedian-hero__photo::before {
  background: rgba(255,255,255,0.07);
}

/* Single aanbod/workshop/locatie hero → wit houden */
.single-aanbod .workshop-hero,
.single-workshop .workshop-hero,
.single-locatie .workshop-hero {
  background: #f7f6f4;
}
.single-aanbod .workshop-hero__title,
.single-workshop .workshop-hero__title {
  color: var(--gz-black);
}
.single-aanbod .workshop-hero__lead,
.single-workshop .workshop-hero__lead {
  color: #555;
}
.single-locatie .workshop-hero__title {
  color: var(--gz-black);
}
.single-locatie .workshop-hero__lead {
  color: #555;
}
.single-locatie .locatie-hero__meta-item {
  color: #555;
}

/* Single comedian hero → wit houden */
.single-comedian .comedian-hero {
  background: #fff;
}
.single-comedian .comedian-hero__name {
  color: var(--gz-black);
}
.single-comedian .comedian-hero__bio {
  color: #555;
}

/* Locatie-hero meta */
.locatie-hero__meta-item { color: rgba(255,255,255,0.55); }

/* ── Donkere secties → #0B0F19 ── */
.hp-shows,
.hp-locaties,
.comedians-cta,
.locaties-cta,
.workshops-steps,
.section--dark,
.footer,
.agenda-past {
  background: #0B0F19;
}

/* Randkleuren aanpassen */
.hp-shows       { border-top-color: rgba(255,255,255,0.06); border-bottom-color: rgba(255,255,255,0.06); }
.hp-locaties    { border-top-color: rgba(255,255,255,0.06); }
.section--dark  { border-top-color: rgba(255,255,255,0.06); border-bottom-color: rgba(255,255,255,0.06); }

/* Kaarten binnen donkere secties */
.hp-shows .lineup-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.workshops-steps .step {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
}
/* ── Hero next-show badge ── */
.hp-hero__next-show {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  max-width: 100%;
  flex-wrap: wrap;
}
.hp-hero__next-show:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,85,0,0.5);
}
.hp-hero__next-show__label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FF5500;
  flex-shrink: 0;
}
.hp-hero__next-show__title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
}
.hp-hero__next-show__meta {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.hp-hero__next-show svg { color: rgba(255,255,255,0.35); flex-shrink: 0; }

/* ── Hoe werkt het ── */
.hp-how {
  background: #f7f6f4;
  padding: 72px 0 80px;
}
.hp-how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
  background: #e8e6e2;
  border-radius: 20px;
  overflow: hidden;
}
.hp-how__step {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 36px;
  background: #fff;
  position: relative;
}
.hp-how__step-num {
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  color: #FF5500;
  line-height: 1;
  opacity: 0.9;
}
.hp-how__step-body h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0A0A0A;
  margin: 0 0 10px;
  line-height: 1.3;
}
.hp-how__step-body p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.88rem;
  color: #777;
  line-height: 1.65;
  margin: 0;
}

/* ── Comedians hp ── */
.hp-comedians {
  background: #0B0F19;
  padding: 72px 0 80px;
}
.hp-comedians .hp-section-head__title { color: #fff; }
.hp-comedians .comedians-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

/* ── Reviews ── */
.hp-reviews {
  background: #0B0F19;
  padding: 72px 0 80px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hp-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hp-review {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s;
}
.hp-review:hover { border-color: rgba(255,85,0,0.35); }
.hp-review__stars {
  color: #FF8C3D;
  font-size: 0.95rem;
  letter-spacing: 3px;
}
.hp-review p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin: 0;
  flex: 1;
  font-style: italic;
}
.hp-review__author {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

@media (max-width: 960px) {
  .hp-how__steps { grid-template-columns: 1fr; }
  .hp-comedians .comedians-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-reviews__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BOEKINGSPAGINA
   ============================================================ */

.boeken-hero {
  background: #0B0F19;
  padding: 56px 0 72px;
  overflow: hidden;
  position: relative;
}
.boeken-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: oklch(65% 0.22 35 / 0.1);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.boeken-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.boeken-hero__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 600px;
}
.boeken-hero__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.93;
  letter-spacing: -0.02em;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  animation: fadeUp 0.5s ease both;
}
.boeken-hero__title span { color: #FF5500; }
.boeken-hero__lead {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 460px;
  margin: 0;
}
.boeken-hero__deco {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}
.boeken-hero__deco span {
  font-family: 'Anton', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.12);
  display: block;
}

/* Steps */
.boeken-hero__steps {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.boeken-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.boeken-step__num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #FF5500;
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.boeken-step__arrow {
  color: rgba(255,255,255,0.2);
  font-size: 1.1rem;
}

/* Main */
.boeken-main {
  background: #f7f6f4;
  padding: 56px 0 80px;
}

/* Filters */
.boeken-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.boeken-filter {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid #ddd;
  background: #fff;
  color: #666;
  cursor: pointer;
  transition: all 0.15s;
}
.boeken-filter:hover { border-color: #FF5500; color: #FF5500; }
.boeken-filter.is-active {
  background: #FF5500;
  border-color: #FF5500;
  color: #fff;
}

/* Grid */
.boeken-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.boeken-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.boeken-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.boeken-card__media {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #0B0F19;
}
.boeken-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.boeken-card:hover .boeken-card__media img { transform: scale(1.04); }
.boeken-card__media-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0d1220 0%, #1a2035 100%);
}
.boeken-card__date-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: #fff;
  border-radius: 12px;
  padding: 8px 12px;
  text-align: center;
  min-width: 52px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.boeken-card__day {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  color: #FF5500;
}
.boeken-card__month {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  margin-top: 1px;
}
.boeken-card__type-tag {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(11,15,25,0.75);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
}
.boeken-card__body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.boeken-card__title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #0A0A0A;
  margin: 0;
  line-height: 1.25;
}
.boeken-card__meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.boeken-card__meta span {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.82rem;
  color: #888;
}
.boeken-card__inclusive {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.boeken-card__inclusive li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.78rem;
  color: #555;
}
.boeken-card__inclusive svg { color: #FF5500; flex-shrink: 0; }
.boeken-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
}
.boeken-card__price {
  font-family: 'Anton', sans-serif;
  font-size: 1.2rem;
  color: #0A0A0A;
  letter-spacing: 0.01em;
}
.boeken-card__cta {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #FF5500;
  transition: gap 0.15s;
}
.boeken-card:hover .boeken-card__cta { gap: 8px; }

/* Empty state */
.boeken-empty {
  text-align: center;
  padding: 64px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.boeken-empty p {
  font-family: 'Bricolage Grotesque', sans-serif;
  color: #888;
  font-size: 1rem;
}

/* CTA onderaan */
.boeken-cta {
  background: #0B0F19;
  padding: 56px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.boeken-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.boeken-cta__inner h2 { color: #fff; margin: 8px 0; }
.boeken-cta__inner p {
  font-family: 'Bricolage Grotesque', sans-serif;
  color: rgba(255,255,255,0.5);
  font-size: 0.92rem;
  margin: 0;
}

@media (max-width: 960px) {
  .boeken-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .boeken-hero__inner { flex-direction: column; }
  .boeken-hero__deco { display: none; }
  .boeken-grid { grid-template-columns: 1fr; }
  .boeken-cta__inner { flex-direction: column; text-align: center; }
}

.comedian-card__body  { background: #0d1220; }
.comedian-show-card   { background: rgba(255,255,255,0.04); }
.locatie-slider       { background: #0d1220; }
.lineup-card--past    { background: rgba(255,255,255,0.02); }

/* ── Ticket status badge ── */
.ticket-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
  width: fit-content;
}
.ticket-status--available {
  background: #e8f9ee;
  color: #1a7a3c;
}
.ticket-status--available span { color: #22c55e; font-size: 0.6rem; }
.ticket-status--past {
  background: #f3f3f3;
  color: #888;
}

/* ── Geen verplichtingen tekst ── */
.ticket-no-obligation {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.78rem;
  color: #888;
  text-align: center;
  margin: 8px 0 0;
}

/* ── FAQ accordion ── */
.show-faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  border: 2px solid #0A0A0A;
  border-radius: 12px;
  overflow: hidden;
}
.faq-item[open] {
  box-shadow: 3px 3px 0 #0A0A0A;
}
.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0A0A0A;
  cursor: pointer;
  list-style: none;
  gap: 12px;
}
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item__question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  flex-shrink: 0;
  color: #FF5500;
  transition: transform 0.2s;
}
.faq-item[open] .faq-item__question::after {
  transform: rotate(45deg);
}
.faq-item[open] .faq-item__question {
  border-bottom: 2px solid #0A0A0A;
  background: var(--gz-yellow, #FF8C3D);
}
.faq-item__answer {
  padding: 14px 18px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}
.faq-item__answer p { margin: 0 0 8px; }
.faq-item__answer p:last-child { margin: 0; }

/* ── Klikbare comedian kaarten ── */
a.event-comedian {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 10px;
  transition: background 0.15s;
}
a.event-comedian:hover { background: #f5f5f5; }
a.event-comedian strong { color: #0A0A0A; }
a.event-comedian span { color: #888; }
.event-comedian__arrow {
  margin-left: auto;
  flex-shrink: 0;
  color: #ccc;
  width: 16px; height: 16px;
  transition: color 0.15s, transform 0.15s;
}
a.event-comedian:hover .event-comedian__arrow {
  color: #FF5500;
  transform: translateX(3px);
}

.hp-shows .btn--ghost:hover {
  background: #FF5500;
  border-color: #FF5500;
  color: #fff;
}

/* ── Locatie trust strip ── */
.locatie-trust {
  background: #0B0F19;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 14px 0;
}
.locatie-trust__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.locatie-trust__item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  padding: 6px 28px;
}
.locatie-trust__item span { font-size: 0.95rem; }
.locatie-trust__divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ── WhatsApp knop ── */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 14px 20px;
  background: #25D366;
  border-radius: 12px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
  border: none;
}
.btn-whatsapp:hover {
  background: #1ebe5c;
  transform: translateY(-1px);
}

/* ── Locatie reviews ── */
.locatie-reviews {
  background: #0B0F19;
  padding: 64px 0 72px;
}
.locatie-reviews__head {
  margin-bottom: 36px;
}
.locatie-reviews__head h2 { color: #fff; margin-top: 8px; }
.locatie-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.locatie-review {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s;
}
.locatie-review:hover { border-color: rgba(255,85,0,0.3); }
.locatie-review__stars {
  color: #FF8C3D;
  font-size: 0.9rem;
  letter-spacing: 2px;
}
.locatie-review p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  font-style: italic;
  margin: 0;
  flex: 1;
}
.locatie-review__author {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
}
@media (max-width: 768px) {
  .locatie-reviews__grid { grid-template-columns: 1fr; }
  .locatie-trust__divider { display: none; }
  .locatie-trust__item { padding: 4px 16px; }
}

/* ── Timeline notice ── */
.timeline-notice {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 28px;
  padding: 22px 24px;
  background: #fff;
  border: 2.5px solid #0A0A0A;
  border-radius: 16px;
  box-shadow: 5px 5px 0 #0A0A0A;
}
.timeline-notice__icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 4px;
}
.timeline-notice__heading {
  display: inline-block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gz-black, #0A0A0A);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  background: var(--gz-yellow, #FF8C3D);
  padding: 3px 12px 2px;
  border-radius: 6px;
  transform: rotate(-0.5deg);
}
.timeline-notice p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.9rem;
  color: #555;
  margin: 0 0 5px;
  line-height: 1.55;
}
.timeline-notice p:last-child { margin-bottom: 0; }

/* ── Show timeline ── */
.show-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.show-timeline__item {
  display: grid;
  grid-template-columns: 56px 28px 1fr;
  gap: 0 12px;
  align-items: flex-start;
}
.show-timeline__time {
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: #FF5500;
  padding-top: 2px;
  text-align: right;
  white-space: nowrap;
}
.show-timeline__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.show-timeline__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #FF5500;
  border: 2.5px solid #0A0A0A;
  flex-shrink: 0;
  margin-top: 4px;
}
.show-timeline__line {
  width: 2.5px;
  flex: 1;
  min-height: 28px;
  background: #0A0A0A;
  margin: 2px 0;
}
.show-timeline__body {
  padding-bottom: 20px;
}
.show-timeline__title {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0A0A0A;
  line-height: 1.3;
}
.show-timeline__desc {
  margin: 3px 0 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.88rem;
  color: #666;
  line-height: 1.4;
}

.event-inclusive-list {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.event-inclusive-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gz-black, #0A0A0A);
}
.event-inclusive-list svg {
  flex-shrink: 0;
  color: #FF5500;
}
@media (max-width: 860px) {
  .event-main__inner {
    flex-direction: column !important;
  }
  .event-main__sidebar {
    width: 100% !important;
    position: static !important;
  }
}
