/* =========================================================
   Dancehall Brunch — Brand-aligned design
   Jamaican rood/geel/groen op een warme donkere basis,
   bold chunky display typografie, sticker/patch vibe.
   ========================================================= */

:root {
  --bg: #0a0907;               /* deep black */
  --bg-elev: #161310;
  --surface: #1f1a14;
  --border: #2e2820;
  --text: #f8f1de;             /* cream */
  --text-muted: #a89976;
  /* HARD Jamaican palette — geen pastel meer */
  --yellow: #fcd116;           /* Jamaican flag yellow */
  --green:  #009b3a;           /* Jamaican flag green */
  --red:    #ed1c24;           /* Jamaican flag red */
  /* Aliassen voor backwards compat, allemaal mapped op flag-kleuren */
  --sunset: var(--red);
  --coral:  var(--red);
  --teal:   var(--green);
  --sky:    var(--green);
  --cream:  #f8f1de;
  --radius: 16px;
  --radius-sm: 8px;
  --max-w: 1280px;
  --shadow: 0 14px 50px rgba(0,0,0,.5);
  --font-display: 'Anton', 'Archivo Black', 'Impact', sans-serif;
  --font-sub: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}
h1 { font-size: clamp(3rem, 9vw, 7.5rem); }
h2 { font-size: clamp(2rem, 5vw, 4rem); margin-bottom: 1rem; }
h3 { font-size: 1.4rem; margin-bottom: .5rem; font-family: var(--font-sub); font-weight: 700; text-transform: none; letter-spacing: -0.01em; line-height: 1.2; }
h4 { font-family: var(--font-sub); }

p { color: var(--text); }
.muted { color: var(--text-muted); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Layout */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(60px, 9vw, 110px) 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: .82rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Jamaican stripe utility */
.stripes {
  display: inline-flex;
  height: 6px;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1.4rem;
}
.stripes span { width: 28px; height: 100%; }
.stripes .y { background: var(--yellow); }
.stripes .g { background: var(--green); }
.stripes .r { background: var(--red); }

/* ===================== NAV ===================== */
/* Sticky header wrapper — nav + ticket bar scroll together */
.site-header {
  position: sticky; top: 0; z-index: 100;
}
.nav {
  background: rgba(10,9,7,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav::after {
  /* Jamaican flag stripe permanent zichtbaar onder de nav */
  content: '';
  display: block;
  height: 6px;
  background: linear-gradient(to right,
    var(--green) 0 33.33%,
    var(--yellow) 33.33% 66.66%,
    var(--red) 66.66% 100%);
}

/* Ticket announcement bar — prominent CTA right under the nav */
.ticket-bar {
  background: var(--yellow);
  color: #1a1000;
  padding: 0;
  border-bottom: 4px solid var(--red);
}
.ticket-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  flex-wrap: wrap;
}
.ticket-bar-info {
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: .95rem;
  line-height: 1.3;
}
.ticket-bar-info strong {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 1.05rem;
  display: inline-block;
  margin-right: 8px;
}
.ticket-bar-btn {
  background: #1a1000 !important;
  color: var(--yellow) !important;
  padding: 10px 22px !important;
  font-size: .85rem !important;
  white-space: nowrap;
  transition: background .2s ease;
}
.ticket-bar-btn:hover { background: #2a1f00 !important; }
@media (max-width: 640px) {
  .ticket-bar-inner { flex-direction: column; gap: 10px; padding: 12px 18px; text-align: center; align-items: center; }
  .ticket-bar-btn { width: 100%; justify-content: center; }
}
.nav-inner {
  display: flex; align-items: center;
  padding: 14px 24px;
  max-width: var(--max-w); margin: 0 auto;
  gap: 14px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.logo img { height: 44px; width: auto; }
.logo-text { line-height: 1; }

.nav-links {
  display: flex; gap: 32px; list-style: none; align-items: center;
}
.nav-links a {
  font-size: .9rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: .02em;
  transition: color .2s ease;
  position: relative;
  padding: 8px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}
.nav-cta {
  background: var(--yellow);
  color: #1a1000 !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: transform .15s ease, background .2s ease;
}
.nav-cta:hover { background: #fff05a; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* Nav socials — small cluster in the nav, always visible.
   Desktop: right after the logo (left side).
   Mobile: pushed to the right next to the hamburger. */
.nav-socials {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-left: 8px;       /* small gap from logo */
  margin-right: auto;     /* push nav-links / hamburger to the right */
}
.nav-links {
  margin-left: auto;       /* fallback to push to right */
}
.nav-socials a {
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color .2s ease, background .2s ease, transform .15s ease;
  color: var(--text-muted);
}
.nav-socials a:hover { transform: translateY(-1px); }
.nav-socials a svg { width: 14px; height: 14px; fill: currentColor; }
.nav-socials a[aria-label="Instagram"] { color: #E4405F; border-color: rgba(228,64,95,.4); }
.nav-socials a[aria-label="Facebook"]  { color: #1877F2; border-color: rgba(24,119,242,.4); }
.nav-socials a[aria-label="TikTok"]    { color: #FE2C55; border-color: rgba(254,44,85,.4); }
.nav-socials a[aria-label="Email"]     { color: var(--yellow); border-color: rgba(252,209,22,.4); }
@media (max-width: 860px) {
  /* On mobile push the socials back to the right (next to hamburger) */
  .nav-socials { margin-left: auto; margin-right: 8px; }
}
@media (max-width: 520px) {
  .nav-socials { gap: 4px; }
  .nav-socials a { width: 28px; height: 28px; }
  .nav-socials a svg { width: 12px; height: 12px; }
}
@media (max-width: 380px) {
  /* On very small screens hide the Email icon to keep room for hamburger */
  .nav-socials a[aria-label="Email"] { display: none; }
}

.hamburger {
  display: none; background: none; border: none;
  color: var(--text); cursor: pointer; padding: 8px;
}
.hamburger span {
  display: block; width: 26px; height: 2.5px;
  background: var(--text); margin: 5px 0;
  transition: .3s; border-radius: 2px;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  padding: clamp(70px, 9vw, 130px) 0 clamp(40px, 6vw, 80px);
  overflow: hidden;
  background: var(--bg);
}
.hero::before { content: none; }
.hero::after {
  /* Big yellow radiant glow behind */
  content: '';
  position: absolute;
  bottom: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(252,209,22,.18) 0%, rgba(0,155,58,.06) 35%, transparent 65%);
  z-index: 0;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 3; }

/* Palms verborgen op verzoek (markup blijft staan) */
.palm-svg { display: none; }

/* Sun decoration als spinning element rechtsboven */
.sun-svg {
  position: absolute;
  width: 220px; height: 220px;
  top: 8%; right: 6%;
  z-index: 2;
  animation: spin 80s linear infinite;
  pointer-events: none;
}
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.sun-svg path  { fill: var(--yellow); opacity: .85; }
.sun-svg circle{ fill: var(--yellow); }

/* Hibiscus flower decoration */
.hibiscus-svg {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

@media (max-width: 960px) {
  /* Sun verbergen op tablet/mobiel zodat hij de foto's niet kruist */
  .sun-svg { display: none; }
}
.hero::before {
  content: '';
  position: absolute;
  top: -15%; right: -20%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(255,140,66,.22) 0%, rgba(252,216,56,.10) 40%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -20%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(46,196,182,.16) 0%, rgba(255,94,142,.10) 40%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  margin-bottom: 1.4rem;
}
.hero h1 .accent-y { color: var(--yellow); }
.hero h1 .accent-g { color: var(--green); }
.hero h1 .accent-r { color: var(--red); }
.hero h1 em { font-style: italic; color: var(--yellow); }
.hero h1 { color: var(--cream); }

.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2rem;
}
.hero-meta {
  padding: 24px 0 0;
  margin-top: 3rem;
  border-top: 1px solid var(--border);
}

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--font-sub);
}
.btn-primary { background: var(--yellow); color: #1a1000; }
.btn-primary:hover { background: #fff05a; transform: translateY(-2px); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: #ff4855; transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--yellow); color: var(--yellow); }

/* Hero photo collage */
.hero-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  aspect-ratio: 1/1;
  transform: rotate(-2deg);
}
.hero-collage div {
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 4px solid var(--cream);
  box-shadow: 0 14px 50px rgba(0,0,0,.55);
}
.hero-collage div:nth-child(1) { transform: rotate(-3deg) translateY(-4px); }
.hero-collage div:nth-child(2) { transform: rotate(2deg); margin-top: 24px; }
.hero-collage div:nth-child(3) { transform: rotate(3deg); margin-top: -8px; }
.hero-collage div:nth-child(4) { transform: rotate(-2deg) translateY(8px); }

/* Hero meta */
.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.hero-meta div h4 {
  font-family: var(--font-sub);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.hero-meta div p {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
  text-transform: uppercase;
  line-height: 1;
}
.hero-meta .y p { color: var(--yellow); }
.hero-meta .g p { color: var(--green); }
.hero-meta .r p { color: var(--red); }

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

.card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color .2s ease, transform .2s ease;
}
.card:hover { border-color: var(--yellow); transform: translateY(-4px); }
.card p { color: var(--text-muted); }
.card .icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.3rem;
  font-size: 1.8rem;
  font-weight: 800;
}
.card.y .icon { background: rgba(252,209,22,.18); color: var(--yellow); }
.card.g .icon, .card.t .icon { background: rgba(0,155,58,.20); color: var(--green); }
.card.r .icon, .card.c .icon, .card.o .icon { background: rgba(237,28,36,.20); color: var(--red); }

/* Section header */
.section-head { max-width: 760px; margin-bottom: 3rem; }
.section-head p { color: var(--text-muted); margin-top: .8rem; font-size: 1.05rem; }

/* Event list */
.event-list { display: flex; flex-direction: column; gap: 18px; }
.event-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 26px 30px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s ease, transform .2s ease;
}
.event-row:hover { border-color: var(--yellow); transform: translateY(-2px); }
.event-date { font-family: var(--font-display); }
.event-date .day {
  display: block;
  font-size: 3rem;
  line-height: 1;
  color: var(--yellow);
}
.event-date .month {
  display: block;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .25em;
  color: var(--text-muted);
  margin-top: 8px;
  font-family: var(--font-sub);
  font-weight: 600;
}
.event-info h3 { font-size: 1.4rem; margin-bottom: 6px; }
.event-info p { color: var(--text-muted); font-size: .95rem; }
.event-status {
  font-family: var(--font-sub);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}
.status-sale { background: var(--green); color: #fff; }
.status-sold { background: var(--red); color: #fff; }
.status-soon { background: var(--yellow); color: #1a1000; }

/* Timeline */
.timeline { position: relative; padding-left: 36px; margin-top: 2rem; }
.timeline::before {
  content: ''; position: absolute;
  left: 10px; top: 8px; bottom: 8px;
  width: 3px;
  background: linear-gradient(to bottom, var(--yellow), var(--green), var(--red));
  border-radius: 2px;
}
.tl-item { position: relative; padding-bottom: 32px; }
.tl-item::before {
  content: ''; position: absolute;
  left: -32px; top: 4px;
  width: 14px; height: 14px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(252,216,56,.18);
}
.tl-time {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--yellow);
  margin-bottom: 4px;
  line-height: 1;
}
.tl-item h4 {
  font-family: var(--font-sub); font-weight: 700;
  font-size: 1.1rem;
  text-transform: none; letter-spacing: 0;
  margin-bottom: 4px;
}
.tl-item p { color: var(--text-muted); font-size: .95rem; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elev);
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item:hover { border-color: var(--yellow); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--yellow);
  font-size: 1.7rem;
  transition: transform .3s ease;
  font-family: var(--font-display);
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body {
  padding: 0 28px 24px;
  color: var(--text-muted);
}

/* Map / location */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
  background: var(--bg-elev);
}
.map-wrap iframe {
  width: 100%; height: 100%; border: 0;
  filter: invert(.92) hue-rotate(180deg) grayscale(.2);
}

/* Info tiles */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 2rem;
}
.info-tile {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.info-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--yellow);
}
.info-tile:nth-child(3n+1)::before { background: var(--green); }
.info-tile:nth-child(3n+2)::before { background: var(--yellow); }
.info-tile:nth-child(3n+3)::before { background: var(--red); }
.info-tile h4 {
  font-family: var(--font-sub);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.info-tile p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-transform: uppercase;
  line-height: 1.1;
}

/* Aftermovie video embed */
.aftermovie {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 3rem;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  box-shadow: 0 14px 50px rgba(0,0,0,.4);
}
.aftermovie iframe,
.aftermovie video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  display: block;
}

/* Hero aftermovie — vertical 9:16 format (Instagram/TikTok) */
.hero-video {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--cream);
  box-shadow: 0 14px 50px rgba(0,0,0,.55);
  background: var(--bg-elev);
  margin: 0 auto;
}
.hero-video video,
.hero-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}
.hero-video .label-tag {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  background: var(--yellow);
  color: #1a1000;
  font-family: var(--font-display);
  font-size: .8rem;
  padding: 6px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .12em;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
  pointer-events: none;
}
@media (max-width: 520px) {
  .hero-video { max-width: 280px; }
}

/* Editie FOLDERS picker — 3 cards in a row */
.editie-folders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.editie-folder {
  position: relative;
  display: block;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, border-color .2s ease, box-shadow .25s ease;
  text-decoration: none;
  color: inherit;
}
.editie-folder:hover {
  transform: translateY(-6px);
  border-color: var(--yellow);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.editie-folder .folder-thumb {
  position: relative;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.editie-folder .folder-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.55) 100%);
}
.editie-folder .folder-num {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  background: var(--yellow);
  color: #1a1000;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .08em;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(0,0,0,.3);
}
.editie-folder.g .folder-num { background: var(--green); color: #fff; }
.editie-folder.r .folder-num { background: var(--red); color: #fff; }
.editie-folder .folder-info {
  padding: 22px 24px 24px;
}
.editie-folder .folder-info h3 {
  font-family: var(--font-sub);
  font-weight: 700;
  text-transform: none;
  letter-spacing: -.01em;
  font-size: 1.4rem;
  line-height: 1.15;
  margin-bottom: 6px;
  color: var(--cream);
}
.editie-folder .folder-info p {
  color: var(--text-muted);
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}
.editie-folder .arrow {
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.2rem;
  transition: transform .2s ease;
}
.editie-folder:hover .arrow { transform: translateX(4px); }

@media (max-width: 860px) {
  .editie-folders { grid-template-columns: 1fr; gap: 18px; }
}

/* Event location picker (locatie.html) — expandable details */
.event-locations { display: flex; flex-direction: column; gap: 14px; }
.event-location {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s ease;
}
.event-location[open] { border-color: var(--yellow); }
.event-location summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 22px;
  align-items: center;
}
.event-location summary::-webkit-details-marker { display: none; }
.event-location summary .chev {
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.4rem;
  transition: transform .25s ease;
}
.event-location[open] summary .chev { transform: rotate(180deg); }
.event-location summary:hover { background: rgba(252,209,22,.04); }
.event-location .summary-date {
  font-family: var(--font-display);
  text-align: left;
}
.event-location .summary-date .d {
  display: block;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--yellow);
}
.event-location .summary-date .m {
  display: block;
  font-size: .8rem;
  letter-spacing: .25em;
  color: var(--text-muted);
  margin-top: 6px;
  font-family: var(--font-sub);
  font-weight: 600;
  text-transform: uppercase;
}
.event-location summary h3 {
  font-size: 1.2rem;
  margin: 0;
}
.event-location summary p {
  color: var(--text-muted);
  margin: 6px 0 0;
  font-size: .92rem;
}
.event-location-body {
  padding: 0 26px 26px;
  border-top: 1px solid var(--border);
  margin-top: 0;
}
.event-location-body .body-inner { padding-top: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.event-location-body .map-wrap { aspect-ratio: 4/3; }
.event-location-body .loc-info h4 {
  font-family: var(--font-sub);
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
  margin-top: 16px;
}
.event-location-body .loc-info h4:first-child { margin-top: 0; }
.event-location-body .loc-info p { color: var(--text); font-size: 1rem; }
.event-location-body .btn { margin-top: 18px; }

@media (max-width: 760px) {
  .event-location summary { grid-template-columns: 70px 1fr auto; gap: 16px; padding: 18px 20px; }
  .event-location .summary-date .d { font-size: 2rem; }
  .event-location-body { padding: 0 20px 22px; }
  .event-location-body .body-inner { grid-template-columns: 1fr; gap: 20px; }
}

/* Editie section header */
.editie-head {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.editie-tag {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 999px;
  color: #1a1000;
  transform: rotate(-2deg);
  box-shadow: 0 6px 20px rgba(0,0,0,.3);
  border: 3px solid var(--bg);
}
.editie-tag.y { background: var(--yellow); }
.editie-tag.g { background: var(--green); color: #fff; }
.editie-tag.r, .editie-tag.c, .editie-tag.o { background: var(--red); color: #fff; }
.editie-tag.t { background: var(--green); color: #fff; }
.editie-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}

/* Section: editie band with tropical bg variation */
.editie-section { padding-bottom: clamp(60px, 8vw, 100px); position: relative; }
.editie-section + .editie-section { padding-top: clamp(40px, 6vw, 80px); border-top: 1px solid var(--border); }

/* Gallery — masonry-ish */
.gallery-grid {
  columns: 3;
  column-gap: 14px;
}
.gallery-grid .gallery-item {
  break-inside: avoid;
  margin-bottom: 14px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  background: var(--bg-elev);
  cursor: zoom-in;
}
.gallery-grid .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s ease;
}
.gallery-grid .gallery-item:hover img { transform: scale(1.04); }

@media (max-width: 900px) { .gallery-grid { columns: 2; } }
@media (max-width: 540px) { .gallery-grid { columns: 1; } }

/* Photo strip (home page) */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 3rem;
}
.photo-strip a {
  display: block;
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elev);
  transition: transform .25s ease;
}
.photo-strip a img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-strip a:hover { transform: translateY(-4px); }
@media (max-width: 700px) { .photo-strip { grid-template-columns: repeat(2, 1fr); } }

/* Form */
.form-wrap {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-row.full { grid-template-columns: 1fr; }
.field label {
  display: block;
  font-family: var(--font-sub);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--yellow);
}
.field textarea { resize: vertical; min-height: 140px; }

/* CTA banner */
.cta-banner {
  background:
    radial-gradient(ellipse 50% 80% at 0% 100%, rgba(46,196,182,.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 100% 0%, rgba(255,140,66,.20) 0%, transparent 60%),
    var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(36px, 6vw, 70px);
  text-align: center;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background: linear-gradient(to right,
    var(--green) 0 33.33%,
    var(--yellow) 33.33% 66.66%,
    var(--red) 66.66% 100%);
}
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p { color: var(--text-muted); max-width: 580px; margin: 0 auto 2rem; }

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer h4 {
  font-family: var(--font-sub);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: var(--text-muted); font-size: .95rem; transition: color .2s ease; }
.footer ul a:hover { color: var(--yellow); }
.footer-tagline { color: var(--text-muted); max-width: 360px; margin-top: 14px; }
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-muted);
  font-size: .85rem;
}
.socials { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color .2s ease, color .2s ease, background .2s ease, transform .15s ease;
  color: var(--text-muted);
}
.socials a:hover { transform: translateY(-2px); }
.socials a svg {
  width: 18px; height: 18px;
  fill: currentColor;
}
/* Branded platform colors */
.socials a[aria-label="Instagram"] { color: #E4405F; border-color: rgba(228,64,95,.4); }
.socials a[aria-label="Instagram"]:hover { background: rgba(228,64,95,.14); border-color: #E4405F; }
.socials a[aria-label="Facebook"]  { color: #1877F2; border-color: rgba(24,119,242,.4); }
.socials a[aria-label="Facebook"]:hover { background: rgba(24,119,242,.14); border-color: #1877F2; }
.socials a[aria-label="TikTok"]    { color: #FE2C55; border-color: rgba(254,44,85,.4); }
.socials a[aria-label="TikTok"]:hover { background: rgba(254,44,85,.14); border-color: #FE2C55; }
.socials a[aria-label="Email"]     { color: var(--yellow); border-color: rgba(252,209,22,.4); }
.socials a[aria-label="Email"]:hover { background: rgba(252,209,22,.14); border-color: var(--yellow); }

/* Newsletter signup section */
.newsletter {
  background: var(--bg-elev);
  padding: clamp(50px, 7vw, 80px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.newsletter::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--green) 0 33.33%, var(--yellow) 33.33% 66.66%, var(--red) 66.66% 100%);
}
.newsletter-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 0 16px;
}
.newsletter h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: .8rem;
  text-transform: uppercase;
  line-height: 1.05;
}
.newsletter p { color: var(--text-muted); margin-bottom: 1.8rem; }
.newsletter form {
  display: flex;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.newsletter input[type=email] {
  flex: 1 1 240px;
  padding: 14px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
}
.newsletter input[type=email]:focus { outline: none; border-color: var(--yellow); }
.newsletter button { white-space: nowrap; }
.newsletter-msg {
  margin-top: 1rem;
  font-size: .9rem;
  min-height: 1.4em;
}
@media (max-width: 520px) {
  .newsletter form { flex-direction: column; }
  .newsletter button { width: 100%; }
}

/* CTA banner tweaks for Caribbean feel */
.cta-banner.tropical {
  background: linear-gradient(135deg, rgba(255,140,66,.18), rgba(230,57,70,.12), rgba(26,143,63,.10));
}

/* Marquee */
.ticker {
  background: var(--yellow);
  color: #1a1000;
  padding: 14px 0;
  overflow: hidden;
  font-family: var(--font-display);
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: 1rem;
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--green);
}
.ticker-track {
  display: flex; gap: 60px;
  animation: tick 32s linear infinite;
  white-space: nowrap; width: max-content;
}
.ticker-track span::before {
  content: '◆'; margin-right: 60px;
  color: rgba(26,16,0,.4);
}
@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============== CARIBBEAN ACCENTS ============== */

/* Wave SVG divider — plak boven of onder secties */
.wave-divider {
  display: block;
  width: 100%;
  height: 80px;
  margin: 0;
}
.wave-divider.flip { transform: scaleY(-1); }
.wave-divider path.w-fill { fill: var(--bg-elev); }
.wave-divider path.w-yellow { fill: var(--yellow); }
.wave-divider path.w-green { fill: var(--green); }
.wave-divider path.w-coral { fill: var(--coral); }
.wave-divider path.w-teal { fill: var(--teal); }

/* Section met dark elevated bg */
.band-tropical {
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* COLLAGE BAND — full-width sticker-style banner met je officiële collage
   Volledige afbeelding, ware verhouding, geen bijsnijding */
.collage-band {
  position: relative;
  width: 100%;
  padding: 0;
  background: var(--yellow);
  overflow: hidden;
  border-bottom: 6px solid var(--red);
}
.collage-band .collage-inner {
  display: block;
  width: 100%;
  line-height: 0;
}
.collage-band .collage-inner img {
  display: block;
  width: 100%;
  height: auto;
}

/* Een tweede variant: collage als kleine "sticker tile" inline ergens */
.collage-tile {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid var(--yellow);
  box-shadow: 0 14px 50px rgba(0,0,0,.5);
  transform: rotate(-1.5deg);
}
.collage-tile img { width: 100%; height: auto; display: block; }

/* Palm silhouet decoratie (positioneren met inline style) */
.palm-deco {
  position: absolute;
  pointer-events: none;
  opacity: .08;
  z-index: 0;
}
.palm-deco svg { width: 100%; height: 100%; }

/* Sun-burst decoratie */
.sun-deco {
  position: absolute;
  pointer-events: none;
  width: 280px; height: 280px;
  opacity: .12;
  z-index: 0;
}
.sun-deco svg { width: 100%; height: 100%; }

/* Scalloped patch — echo van het logo */
.patch {
  display: inline-block;
  padding: 18px 28px;
  background: var(--yellow);
  color: #1a1000;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 1rem;
  border: 4px solid var(--green);
  border-radius: 999px;
  position: relative;
  transform: rotate(-2deg);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.patch::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 3px dashed var(--red);
  border-radius: 999px;
  opacity: .5;
}

/* Tropische gradient (sunset over ocean voor accent vlakken) */
.tropical-bg {
  background: linear-gradient(135deg, #ff8c42 0%, #e63946 40%, #1a8f3f 100%);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.92);
  display: none;
  align-items: center; justify-content: center;
  z-index: 200;
  padding: 30px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 100%; border-radius: 8px; }
.lightbox .close {
  position: absolute; top: 20px; right: 24px;
  font-size: 2rem; color: #fff; cursor: pointer;
  font-family: var(--font-display);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 960px) {
  .hero-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
  }
  .hero-collage { max-width: 520px; margin: 0 auto; aspect-ratio: 5/4; }
  .hero-video { max-width: 640px; margin: 0 auto; }
  .hero { padding: 50px 0 60px; }
  .hero-meta { margin-top: 2rem; }
}
@media (max-width: 860px) {
  .nav-inner { padding: 12px 18px; }
  .logo img { height: 38px; }
  .nav-links {
    position: fixed;
    top: 62px; left: 0; right: 0;
    background: var(--bg-elev);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-150%);
    transition: transform .3s ease;
    max-height: calc(100vh - 62px);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 1.05rem; padding: 6px 0; }
  .nav-links .nav-cta { display: inline-block; width: fit-content; margin-top: 6px; padding: 12px 24px; font-size: .9rem; }
  .hamburger { display: block; }

  .container { padding: 0 18px; }
  .hero { padding-top: clamp(50px, 14vw, 90px); }
  .hero-meta { padding: 18px; }
  .hero-meta { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero-meta div p { font-size: 1.1rem; }

  .event-row { grid-template-columns: 80px 1fr; gap: 16px; }
  .event-row .event-status { grid-column: 1 / -1; justify-self: start; margin-top: 4px; }
  .event-date .day { font-size: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; gap: 14px; }
  .section { padding: clamp(50px, 11vw, 90px) 0; }
  .editie-head { gap: 14px; }
  .editie-title { font-size: 1.6rem; }
}
@media (max-width: 520px) {
  :root { --radius: 12px; }
  .container { padding: 0 16px; }
  .hero { padding-top: 36px; padding-bottom: 50px; }
  .hero-collage { transform: none; max-width: 100%; aspect-ratio: 1/1; }
  .hero-collage div:nth-child(1) { transform: rotate(-2deg); }
  .hero-collage div:nth-child(2) { transform: rotate(1deg); margin-top: 12px; }
  .hero-collage div:nth-child(3) { transform: rotate(2deg); margin-top: -4px; }
  .hero-collage div:nth-child(4) { transform: rotate(-1deg) translateY(4px); }
  .hero-collage div { border-width: 3px; }

  h1 { font-size: clamp(2.2rem, 11vw, 3.2rem); }
  h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .hero-sub { font-size: 1rem; }
  .eyebrow { font-size: .72rem; letter-spacing: .25em; }

  .cta-row { width: 100%; }
  .btn { padding: 13px 22px; font-size: .85rem; width: 100%; justify-content: center; }
  .cta-row .btn { flex: 1 1 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  .card { padding: 24px; }
  .info-tile { padding: 20px; }
  .info-tile p { font-size: 1.1rem; }

  .event-row { padding: 20px; grid-template-columns: 70px 1fr; gap: 14px; }
  .event-date .day { font-size: 2rem; }
  .event-info h3 { font-size: 1.1rem; }

  .ticker { font-size: .8rem; padding: 10px 0; }
  .ticker-track { gap: 40px; }
  .ticker-track span::before { margin-right: 40px; }

  .gallery-grid { column-gap: 10px; }
  .gallery-grid .gallery-item { margin-bottom: 10px; }
  .editie-tag { font-size: .9rem; padding: 8px 16px; }
  .editie-title { font-size: 1.4rem; }
  .editie-head { gap: 12px; }

  .cta-banner { padding: 32px 22px; margin-top: 2.5rem; }
  .form-wrap { padding: 24px; }

  .map-wrap { aspect-ratio: 4/3; }

  .faq-item summary { padding: 18px 22px; font-size: 1rem; }
  .faq-item .faq-body { padding: 0 22px 20px; font-size: .95rem; }

  .tl-time { font-size: 1.1rem; }
  .timeline { padding-left: 28px; }
  .tl-item::before { left: -24px; width: 12px; height: 12px; }
}
@media (max-width: 380px) {
  h1 { font-size: 2rem; line-height: 1; }
  .hero-meta { grid-template-columns: 1fr; gap: 14px; padding: 16px; }
  .hero-meta div p { font-size: 1rem; }
}

/* Prevent horizontal scroll on touch — use clip instead of hidden
   so position: sticky still works on .site-header */
html, body { overflow-x: clip; max-width: 100vw; }
@supports not (overflow: clip) {
  /* Fallback for older browsers — sticky still works because parent uses normal flow */
  body { overflow-x: hidden; }
}
img, svg, iframe { max-width: 100%; }
