:root {
  --void: #0a0d12;
  --surface: #10151d;
  --surface-2: #161c26;
  --lapis: #1e4d8c;
  --lapis-bright: #4f8fe8;
  --gold: #c8952e;
  --gold-bright: #e8b854;
  --ivory: #ede7da;
  --muted: #8791a3;
  --line: rgba(237, 231, 218, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  background: var(--void);
  color: var(--ivory);
  font-family: 'Manrope', sans-serif;
  overflow-x: hidden;
  max-width: 100vw;
  overscroll-behavior-x: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== Background star-tile texture ===== */
.tile-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23c8952e' stroke-width='1'%3E%3Cpath d='M60 5 L75 30 L105 30 L88 52 L100 80 L60 65 L20 80 L32 52 L15 30 L45 30 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 220px 220px;
}

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

button {
  cursor: pointer;
}

/* ===== Nav ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, rgba(10, 13, 18, 0.85), transparent);
}

.brand {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand span {
  color: var(--gold-bright);
}

.nav-links {
  display: flex;
  gap: 34px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links a {
  cursor: pointer;
}

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

.nav-links {
  display: none;
}

/* ---- Burger Button Styling ---- */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 60;
  padding: 5px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ivory);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Standaard verborgen op mobiel, behalve als de class .is-open erop staat */
@media(max-width: 759px) {
  .burger {
    display: flex;
    /* Toon de burger op gsm */
  }

  .nav-links {
    position: absolute;
    top: 100%;
    /* Begint net onder de navigatiebalk */
    left: 0;
    width: 100%;
    background: rgba(10, 13, 18, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    padding: 30px 0 40px 0;
    gap: 28px;
    border-bottom: 1px solid var(--line);

    /* Animatie opbouw: verborgen */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(.16, 1, .3, 1);
    display: flex;
  }

  /* Wanneer het menu open is */
  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Verander het hamburger icoon in een 'X' als hij actief is */
  .burger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .burger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* Zorg dat het menu op laptops gewoon naast elkaar staat zoals altijd */
@media(min-width: 760px) {
  .nav-links {
    display: flex;
  }

  .burger {
    display: none;
  }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 6vw 90px;
  z-index: 1;
}

.hero-eq {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(4px, 1vw, 10px);
  opacity: 0.55;
  -webkit-mask-image: linear-gradient(to top, black, transparent 78%);
  mask-image: linear-gradient(to top, black, transparent 78%);
}

.hero-eq i {
  display: block;
  width: clamp(6px, 1vw, 14px);
  border-radius: 2px 2px 0 0;
  background: linear-gradient(to top, var(--lapis) 0%, var(--lapis-bright) 55%, var(--gold-bright) 100%);
  animation: eq 2.4s ease-in-out infinite;
  transform-origin: bottom;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  /* Hieronder is het pad aangepast naar de 'photo' map */
  background-image: url('photos/instrument.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  filter: grayscale(100%);
  mix-blend-mode: lighten;
}

@keyframes eq {

  0%,
  100% {
    transform: scaleY(var(--h1, 0.3));
  }

  50% {
    transform: scaleY(var(--h2, 0.85));
  }
}

.eyebrow {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--gold-bright);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

h1.title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 8vw, 118px);
  /* De minimum grootte is verlaagd van 44px naar 28px */
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  word-break: break-word;
  /* Voorkomt dat extreem lange woorden ooit nog buiten het scherm vallen */
}

h1.title em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold-bright);
}

.hero-sub {
  margin-top: 26px;
  max-width: 520px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

/* ===== Feature strip ===== */
.feature-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

@media(min-width:860px) {
  .feature-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-item {
  background: var(--void);
  padding: 28px 30px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-item .ic {
  font-size: 20px;
  color: var(--gold-bright);
}

.feature-item b {
  display: block;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.feature-item span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.hero-cta {
  margin-top: 38px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .25s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold-bright);
  color: var(--void);
}

.btn-primary:hover {
  background: var(--ivory);
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ivory);
}

.btn-ghost:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

/* ===== Section shell ===== */
section {
  position: relative;
  z-index: 1;
  padding: 120px 6vw;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 700;
}

h2 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 4.5vw, 52px);
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.lede {
  max-width: 340px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  text-align: right;
}

@media(max-width:700px) {
  .lede {
    text-align: left;
  }
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

@media(min-width:860px) {
  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }
}

.about-portrait {
  aspect-ratio: 4/5;
  border-radius: 2px;
  background:
    linear-gradient(160deg, var(--surface-2), var(--surface) 60%),
    repeating-linear-gradient(45deg, rgba(200, 149, 46, 0.05) 0 2px, transparent 2px 18px);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

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

.about-portrait .ph-label {
  position: relative;
  z-index: 2;
}

.about-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(79, 143, 232, 0.18), transparent 60%);
}

.about-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 18px;
  max-width: 52ch;
}

.stat-row {
  display: flex;
  gap: 44px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.stat b {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-size: 28px;
  color: var(--gold-bright);
}

.stat span {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  width: 100%;
}

@media(min-width:640px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.g-item {
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, var(--surface-2), var(--surface));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
  padding: 14px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-width: 0;
  min-height: 0;
}

.g-item img,
.g-item video {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01) translateZ(0);
  backface-visibility: hidden;
  transition: transform .6s cubic-bezier(.16, 1, .3, 1);
}

.g-item:hover img,
.g-item:hover video {
  transform: scale(1.08) translateZ(0);
}

.g-item .ph-label {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.g-item:nth-child(3n+1) {
  background: linear-gradient(150deg, rgba(30, 77, 140, 0.25), var(--surface));
}

/* ===== Pakketten ===== */
.pkg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

@media(min-width:760px) {
  .pkg-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pkg-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
}

.pkg-card.is-ultra {
  border-color: rgba(200, 149, 46, 0.45);
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
}

.pkg-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold-bright);
  color: var(--void);
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 700;
}

.pkg-icon {
  font-size: 26px;
  margin-bottom: 18px;
}

.pkg-name {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.pkg-desc {
  color: var(--muted);
  font-size: 14px;
  margin-top: 8px;
  margin-bottom: 22px;
  line-height: 1.6;
}

.pkg-list {
  list-style: none;
  margin-bottom: 30px;
  flex: 1;
}

.pkg-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--ivory);
  padding: 7px 0;
  border-top: 1px solid var(--line);
}

.pkg-list li:first-child {
  border-top: none;
}

.pkg-list li::before {
  content: "✦";
  color: var(--gold-bright);
  font-size: 11px;
  margin-top: 3px;
}

.pkg-price {
  font-family: 'Unbounded', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--ivory);
  margin-bottom: 18px;
}

.pkg-price span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
  font-family: 'Manrope', sans-serif;
}

/* ===== Reviews ===== */
.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media(min-width:760px) {
  .review-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 32px;
}

.review-stars {
  color: var(--gold-bright);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-quote {
  color: var(--ivory);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.review-name {
  font-weight: 700;
  font-size: 14px;
}

.review-loc {
  color: var(--muted);
  font-size: 12px;
}

/* ===== Booking ===== */
.shows-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 70px;
}

@media(min-width:900px) {
  .shows-wrap {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.occasion-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.occasion-item {
  background: var(--surface);
  padding: 24px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.occasion-item .ic {
  font-size: 22px;
  color: var(--gold-bright);
}

.occasion-item b {
  display: block;
  font-size: 15px;
  margin-bottom: 3px;
}

.occasion-item span {
  color: var(--muted);
  font-size: 13px;
}

.booking-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 40px;
}

.booking-card h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.booking-card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 26px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  background: var(--void);
  border: 1px solid var(--line);
  color: var(--ivory);
  padding: 13px 14px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  border-radius: 2px;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--gold-bright);
  outline-offset: 1px;
  border-color: var(--gold-bright);
}

.field textarea {
  resize: vertical;
  min-height: 90px;
}

/* ===== Footer ===== */
footer {
  padding: 60px 6vw 40px;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}

.foot-brand {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
}

.foot-socials {
  display: flex;
  gap: 22px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.foot-socials a:hover {
  color: var(--gold-bright);
}

.foot-note {
  margin-top: 26px;
  color: var(--muted);
  font-size: 12px;
}

/* ============================================================
   ANIMATIONS & MICRO-INTERACTIONS
   ============================================================ */

/* ---- Page load ---- */
body {
  animation: page-in .6s ease both;
}

@keyframes page-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ---- CSS-only entrance for above-the-fold content (no JS required) ---- */
.hero-anim {
  opacity: 0;
  transform: translateY(18px);
  animation: hero-in .7s cubic-bezier(.16, 1, .3, 1) forwards;
}

@keyframes hero-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- Scroll-reveal system (below-the-fold, JS-driven) ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
  will-change: opacity, transform;
  /* Safety net: if JS fails to load, content still appears after a short delay
     instead of staying invisible forever. */
  animation: reveal-fallback .01s linear 2.5s forwards;
}

@keyframes reveal-fallback {
  to {
    opacity: 1;
    transform: none;
  }
}

.reveal.reveal-left {
  transform: translateX(-36px);
}

.reveal.reveal-right {
  transform: translateX(36px);
}

.reveal.reveal-scale {
  transform: scale(.92);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  animation: none;
}

/* ---- Nav: condenses + gains solid backdrop on scroll ---- */
nav {
  transition: padding .35s ease, background .35s ease, box-shadow .35s ease;
}

nav.is-scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(10, 13, 18, 0.82);
  box-shadow: 0 1px 0 var(--line);
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;
  transition: color .2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--gold-bright);
  transition: width .3s cubic-bezier(.16, 1, .3, 1);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 8px 18px !important;
  color: var(--gold-bright) !important;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--gold-bright);
  color: var(--void) !important;
  border-color: var(--gold-bright);
}

/* ---- Cursor glow (desktop only) ---- */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 520px;
  height: 520px;
  z-index: 2;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(232, 184, 84, 0.08) 0%, rgba(79, 143, 232, 0.05) 45%, transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
}

.cursor-glow.is-active {
  opacity: 1;
}

@media(max-width:900px), (hover:none) {
  .cursor-glow {
    display: none;
  }
}

/* ---- Shimmer text (hero emphasis word) ---- */
.shimmer {
  background: linear-gradient(100deg, var(--gold-bright) 30%, var(--ivory) 45%, var(--gold-bright) 60%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.5px transparent;
  animation: shimmer 5s ease-in-out infinite;
}

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

  100% {
    background-position: -100% 0;
  }
}

/* ---- Scroll cue in hero ---- */
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 6vw;
  width: 24px;
  height: 38px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
}

.scroll-cue span {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--gold-bright);
  animation: scroll-cue 1.8s ease-in-out infinite;
}

@keyframes scroll-cue {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  70% {
    transform: translateY(12px);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@media(max-width:760px) {
  .scroll-cue {
    display: none;
  }
}

/* ---- Magnetic buttons ---- */
.magnetic {
  position: relative;
  overflow: hidden;
  transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), background .25s ease, color .25s ease, border-color .25s ease;
}

.magnetic::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.22), transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

.magnetic:hover::before {
  opacity: 1;
}

/* ---- Tilt cards (packages) ---- */
.tilt {
  transition: transform .35s cubic-bezier(.16, 1, .3, 1), box-shadow .35s ease, border-color .35s ease;
  transform-style: preserve-3d;
}

.tilt:hover {
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.55);
}

.pkg-card.is-ultra.tilt:hover {
  border-color: var(--gold-bright);
}

/* ---- Feature strip icon float ---- */
.feature-item .ic {
  display: inline-block;
  animation: float 4s ease-in-out infinite;
}

.feature-item:nth-child(2) .ic {
  animation-delay: .3s;
}

.feature-item:nth-child(3) .ic {
  animation-delay: .6s;
}

.feature-item:nth-child(4) .ic {
  animation-delay: .9s;
}


/* ==========================================
   INTERACTIEVE STERREN BEOORDELING (FIX)
   ========================================== */
.star-rating {
  display: flex !important;
  flex-direction: row-reverse !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 10px !important;
  margin-top: 10px !important;
}

/* Verberg de standaard bolletjes definitief */
.star-rating input[type="radio"] {
  display: none !important;
}

/* Maak de sterren mooi groot en zet ze op één rij */
.star-rating label {
  display: inline-block !important;
  font-size: 40px !important;
  line-height: 1 !important;
  color: var(--surface-2, #333) !important;
  cursor: pointer !important;
  transition: color 0.2s ease-in-out !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Vul de sterren in met de gouden kleur bij hover en klikken */
.star-rating label:hover,
.star-rating label:hover~label,
.star-rating input[type="radio"]:checked~label {
  color: var(--gold-bright, #e8b854) !important;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

/* ---- Gallery hover zoom ---- */
.g-item img {
  transition: transform .6s cubic-bezier(.16, 1, .3, 1), filter .4s ease;
}

.g-item:hover img {
  transform: scale(1.08);
}

.g-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity .4s ease;
  background: linear-gradient(to top, rgba(10, 13, 18, 0.55), transparent 55%);
}

.g-item:hover::after {
  opacity: 1;
}

/* ---- Package badge pulse ---- */
.pkg-badge {
  animation: badge-pulse 2.4s ease-in-out infinite;
}

@keyframes badge-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(232, 184, 84, 0.5);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(232, 184, 84, 0);
  }
}

/* ---- Review card hover lift ---- */
.review-card {
  transition: transform .3s cubic-bezier(.16, 1, .3, 1), border-color .3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 149, 46, 0.4);
}

/* ---- Occasion item hover slide ---- */
.occasion-item {
  transition: background .25s ease, padding-left .25s ease;
}

.occasion-item:hover {
  background: var(--surface-2);
  padding-left: 34px;
}

/* ---- Field focus micro-motion ---- */
.field input,
.field textarea {
  transition: border-color .2s ease, transform .2s ease;
}

.field input:focus,
.field textarea:focus {
  transform: translateY(-1px);
}

/* ---- Respect reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero-anim {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .shimmer {
    animation: none;
    -webkit-text-fill-color: var(--gold-bright);
    background: none;
  }

  .scroll-cue span,
  .feature-item .ic,
  .pkg-badge {
    animation: none;
  }
}

/* ==========================================================
   REVIEWS — dynamisch geladen uit de database
   ========================================================== */

/* Gemiddelde score rechts in de sectiekop */
.review-samenvatting {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.samenvatting-cijfer {
  font-family: 'Unbounded', sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: var(--ivory);
}

.samenvatting-sterren {
  color: var(--gold-bright);
  letter-spacing: 2px;
  font-size: 14px;
}

/* Kaarten netjes uitlijnen, ongeacht de lengte van de tekst */
.review-card {
  display: flex;
  flex-direction: column;
}

.review-quote {
  flex: 1;
  font-style: italic;
  overflow-wrap: anywhere;
}

.review-quote::before {
  content: '\201C';
}

.review-quote::after {
  content: '\201D';
}

.review-stars .ster-vol {
  color: var(--gold-bright);
}

.review-stars .ster-leeg {
  color: var(--surface-2);
}

/* Nieuw ingeladen kaarten faden in */
.review-card.is-nieuw {
  opacity: 0;
  animation: reviewIn .5s cubic-bezier(.16, 1, .3, 1) forwards;
}

@keyframes reviewIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .review-card.is-nieuw {
    opacity: 1;
    animation: none;
  }
}

/* "Toon meer"-knop */
.reviews-more {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.reviews-more .btn[hidden] {
  display: none;
}

/* Lege staat */
.reviews-leeg {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  padding: 40px 20px;
  border: 1px dashed var(--line);
}

/* Reviewformulier gecentreerd onder de kaarten */
.review-form-card {
  margin: 60px auto 0;
  max-width: 600px;
}

/* ==========================================================
   FORMULIER-STATUSMELDINGEN
   ========================================================== */
.form-status {
  margin-top: 16px;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.6;
  border: 1px solid var(--line);
  border-radius: 2px;
}

.form-status[hidden] {
  display: none;
}

.form-status.is-ok {
  color: var(--gold-bright);
  border-color: rgba(232, 184, 84, 0.45);
  background: rgba(232, 184, 84, 0.07);
}

.form-status.is-fout {
  color: #f0a3a3;
  border-color: rgba(240, 163, 163, 0.4);
  background: rgba(240, 163, 163, 0.07);
}

/* ==========================================================
   TOEGANKELIJKHEID
   ========================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

/* Ontbrekende foto's/video's laten geen lege gaten achter */
.media-missing {
  background: var(--surface-2);
  min-height: 220px;
}

/* Prijs op aanvraag in plaats van een bedrag */
.pkg-price.is-tekst {
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.pkg-price.is-tekst span {
  display: block;
  margin-top: 8px;
  line-height: 1.6;
}

.pkg-note {
  margin-top: 12px;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .03em;
}