/* ============================================
   BOOTH KINGS — MAIN STYLESHEET
   Design: Dark, magical, energetic, professional
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ---- Screen-reader only utility (WCAG) ---- */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---- Skip-to-content link (WCAG 2.4.1) ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 99999;
  padding: 12px 20px;
  background: var(--brand, #ffba00);
  color: #0a0a14;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 0 0 10px 10px;
  text-decoration: none;
  transition: top 0.15s ease;
  white-space: nowrap;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid #0a0a14;
  outline-offset: 2px;
}

/* ---- CSS Variables ---- */
:root {
  --bg-dark:        #08080f;
  --bg-card:        rgba(255,255,255,0.04);
  --bg-card-hover:  rgba(255,255,255,0.08);
  --border:         rgba(255,255,255,0.08);
  --border-glow:    rgba(255,186,0,0.4);

  /* Brand color: #ffba00 golden yellow */
  --brand:          #ffba00;
  --brand-dark:     #cc9500;
  --brand-light:    #ffd040;
  --brand-xlight:   #ffe899;

  /* Aliases kept for compatibility */
  --purple:         #ffba00;
  --purple-dark:    #cc9500;
  --purple-light:   #ffd040;
  --pink:           #ff9800;
  --gold:           #ffba00;
  --gold-light:     #ffd040;
  --white:          #ffffff;
  --text:           #e2e8f0;
  --text-muted:     #94a3b8;
  --text-faint:     #475569;

  --grad-main:      linear-gradient(135deg, #cc7a00 0%, #ffba00 55%, #ffd040 100%);
  --grad-gold:      linear-gradient(135deg, #ffba00 0%, #ffd040 100%);
  --grad-subtle:    linear-gradient(135deg, rgba(255,186,0,0.12) 0%, rgba(255,152,0,0.06) 100%);

  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-xl:      32px;
  --radius-full:    9999px;

  --shadow-sm:      0 2px 8px rgba(0,0,0,0.4);
  --shadow-md:      0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg:      0 24px 64px rgba(0,0,0,0.6);
  --shadow-glow:    0 0 40px rgba(255,186,0,0.3);
  --shadow-gold:    0 0 30px rgba(255,186,0,0.25);

  --nav-height:     72px;
  --transition:     0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.6s cubic-bezier(0.4,0,0.2,1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 20px);
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  overflow-wrap: anywhere;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ---- Mobile overflow safeguards ----
   Voorkomt dat smalle viewports (iPhone SE, kleine Androids) horizontaal overflowen.
   Reden: CSS Grid items rekken hun track standaard op tot de min-content van hun
   inhoud (bv. een 304px-brede reCAPTCHA, een nowrap-button met lange tekst, een
   <input> met intrinsieke voorkeursbreedte). Bij overflow-x: hidden op de body
   wordt dat visueel verborgen maar de pagina-layout zit dan vast op een te brede
   waarde, waardoor 5vw-units en fixed-position elementen verkeerd schalen. */
.offerte-layout > *,
.grid-2 > *,
.footer__grid > *,
.photobooth-layout > *,
.scrolly__inner > * { min-width: 0; }

/* Google reCAPTCHA iframe is een vaste 304px breed. Op smalle schermen schalen we
   die zodat het formulier niet uitdijt en de captcha leesbaar blijft. */
.g-recaptcha {
  max-width: 100%;
  overflow: hidden;
}
@media (max-width: 380px) {
  .g-recaptcha > div {
    transform: scale(0.85);
    transform-origin: 0 0;
    height: 67px;
  }
}

/* .btn heeft white-space: nowrap voor strakke layout op desktop. Op smalle
   schermen mag de tekst wrappen in plaats van de pagina te verbreden. */
.btn {
  max-width: 100%;
}
@media (max-width: 480px) {
  .btn { white-space: normal; text-align: center; }
}

/* ---- Utility ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--wide { max-width: 1400px; }
.container--narrow { max-width: 800px; }

.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--lg { padding: 128px 0; }

.text-gradient {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge--purple {
  background: rgba(255,186,0,0.12);
  border: 1px solid rgba(255,186,0,0.28);
  color: var(--brand-light);
}

.badge--gold {
  background: rgba(255,186,0,0.12);
  border: 1px solid rgba(255,186,0,0.28);
  color: var(--gold-light);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: var(--transition);
}

.btn:hover::before { background: rgba(255,255,255,0.08); }

.btn--primary {
  background: var(--grad-main);
  color: #0a0a14;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(255,186,0,0.35);
}

.btn--primary:hover {
  box-shadow: 0 8px 32px rgba(255,186,0,0.55);
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--grad-gold);
  color: #0a0a14;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(255,186,0,0.3);
}

.btn--gold:hover {
  box-shadow: 0 8px 32px rgba(255,186,0,0.5);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--border-glow);
  color: var(--brand-light);
}

.btn--outline:hover {
  background: rgba(255,186,0,0.1);
  border-color: var(--brand);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}

.btn--ghost:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255,255,255,0.15);
}

.btn--lg { padding: 18px 36px; font-size: 1.1rem; }
.btn--sm { padding: 10px 20px; font-size: 0.875rem; }

/* ---- Cards ---- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255,186,0,0.22);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.card--glow {
  box-shadow: var(--shadow-glow);
}

/* ---- Section Headers ---- */
.section-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 12px;
}

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

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

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

/* ============================================
   NAVIGATION — refined, premium
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

/* Subtle gradient line that appears at top of nav (decorative accent) */
.nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,186,0,0.55), transparent);
  transition: width 0.6s cubic-bezier(0.4,0.2,0.2,1), opacity 0.4s ease;
  opacity: 0;
}

.nav--scrolled {
  background: rgba(8,8,15,0.78);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    0 8px 36px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.02);
}

.nav--scrolled::after {
  width: 80%;
  opacity: 1;
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 1;
}

/* Geef de nav iets meer ademruimte dan de standaard 1200px container,
   zodat het menu en de actie-knoppen comfortabel naast elkaar passen. */
.nav .container {
  max-width: 1440px;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
}

/* Soft glow halo behind the logo */
.nav__logo::before {
  content: '';
  position: absolute;
  inset: -12px;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255,186,0,0.18), transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
  z-index: -1;
}

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

.nav__logo-img {
  height: 38px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 8px rgba(255,186,0,0.35));
  transition: filter var(--transition), transform var(--transition);
}

.nav__logo:hover .nav__logo-img {
  filter: drop-shadow(0 0 18px rgba(255,186,0,0.7));
  transform: scale(1.04);
}

/* Footer variant */
.footer__logo-img {
  height: 34px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 6px rgba(255,186,0,0.25));
  margin-bottom: 14px;
}

.nav__logo-mark {
  width: 38px;
  height: 38px;
  background: var(--grad-main);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: #0a0a14;
  box-shadow: 0 0 20px rgba(255,186,0,0.38);
}

.nav__logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav__logo-text span {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
  position: relative;
  padding: 4px 8px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  min-width: 0;
}

/* Sliding indicator: a soft golden pill that follows hover/active */
.nav__indicator {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 0;
  background: linear-gradient(135deg, rgba(255,186,0,0.18), rgba(255,140,0,0.10));
  border: 1px solid rgba(255,186,0,0.28);
  border-radius: var(--radius-full);
  box-shadow:
    0 0 18px rgba(255,186,0,0.22),
    inset 0 0 14px rgba(255,186,0,0.08);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transform: translateX(0);
  transition:
    transform 0.45s cubic-bezier(0.4,0.2,0.2,1),
    width 0.45s cubic-bezier(0.4,0.2,0.2,1),
    opacity 0.3s ease;
}

.nav__menu.nav__menu--ready .nav__indicator { opacity: 1; }

.nav__item {
  position: relative;
  z-index: 1;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 13px;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--text-muted);
  transition: color 0.3s ease;
  white-space: nowrap;
  background: transparent;
  border: 0;
  cursor: pointer;
  position: relative;
}

/* Remove old hover background; the indicator handles it */
.nav__link:hover { color: var(--white); background: transparent; }

/* Active state when no indicator yet (FOUC-safe) */
.nav__link--active { color: var(--white); }

/* Chevron caret next to "Photobooths" — rotate only the <i> wrapper */
.nav__link .icon[data-icon="chevron-down"] {
  width: 13px;
  height: 13px;
  opacity: 0.7;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__item:hover .nav__link .icon[data-icon="chevron-down"] {
  transform: rotate(180deg);
  opacity: 1;
}

/* ============================================
   Mega-menu dropdown (Photobooths)
   ============================================ */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px) scale(0.97);
  transform-origin: top center;
  width: 380px;
  background: linear-gradient(180deg, rgba(18,18,28,0.96), rgba(8,8,15,0.97));
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    transform 0.32s cubic-bezier(0.34,1.4,0.4,1);
  box-shadow:
    0 32px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.02),
    0 0 60px rgba(255,186,0,0.12);
  overflow: hidden;
}

/* Decorative gradient glow inside dropdown */
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  right: -10%;
  height: 200%;
  background: radial-gradient(ellipse 50% 30% at 50% 0%, rgba(255,186,0,0.18), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Bridging hover area so cursor can move from button to dropdown without losing hover */
.nav__item::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 16px;
}

.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0) scale(1);
}

.nav__dropdown-link {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: background 0.25s ease, transform 0.25s ease;
  border: 1px solid transparent;
}

.nav__dropdown-link:hover {
  color: var(--white);
  background: rgba(255,186,0,0.06);
  border-color: rgba(255,186,0,0.18);
  transform: translateX(2px);
}

.nav__dropdown-link--active {
  color: var(--white) !important;
  background: rgba(255, 186, 0, 0.1) !important;
  border-color: rgba(255, 186, 0, 0.28) !important;
}

.nav__dropdown-link--active::after {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: var(--gold);
  border-radius: 0 2px 2px 0;
}

.nav__dropdown-link + .nav__dropdown-link { margin-top: 2px; }

.nav__dropdown-thumb {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
  position: relative;
}

.nav__dropdown-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.nav__dropdown-link:hover .nav__dropdown-thumb img { transform: scale(1.12); }

.nav__dropdown-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(255,186,0,0.18));
  opacity: 0;
  transition: opacity var(--transition);
}

.nav__dropdown-link:hover .nav__dropdown-thumb::after { opacity: 1; }

.nav__dropdown-text { min-width: 0; }

.nav__dropdown-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: -0.005em;
}

.nav__dropdown-name .icon { color: var(--brand-light); width: 0.95em; height: 0.95em; }

.nav__dropdown-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
  line-height: 1.35;
}

.nav__dropdown-price {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--brand-light);
  white-space: nowrap;
  padding: 4px 10px;
  background: rgba(255,186,0,0.10);
  border: 1px solid rgba(255,186,0,0.22);
  border-radius: var(--radius-full);
}

/* Plain text fallback for the original "v.a. €299" span */
.nav__dropdown-link .price {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--brand-light);
  font-weight: 600;
}

/* CTA card at the bottom of the dropdown */
.nav__dropdown-cta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  margin-top: 8px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,186,0,0.10), rgba(255,140,0,0.04));
  border: 1px solid rgba(255,186,0,0.22);
  color: var(--text);
  transition: var(--transition);
  text-decoration: none;
}

.nav__dropdown-cta:hover {
  background: linear-gradient(135deg, rgba(255,186,0,0.18), rgba(255,140,0,0.08));
  transform: translateY(-1px);
}

.nav__dropdown-cta-icon {
  width: 38px;
  height: 38px;
  background: var(--grad-main);
  color: #0a0a14;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(255,186,0,0.35);
}

.nav__dropdown-cta-icon .icon { color: #0a0a14; width: 18px; height: 18px; }

.nav__dropdown-cta-text { flex: 1; min-width: 0; }

.nav__dropdown-cta-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  letter-spacing: -0.005em;
}

.nav__dropdown-cta-desc {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 1px;
}

.nav__dropdown-cta-arrow {
  color: var(--brand-light);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.nav__dropdown-cta:hover .nav__dropdown-cta-arrow { transform: translateX(3px); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Refined ghost (phone) button in nav */
.nav__actions .btn--ghost {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  font-variant-numeric: tabular-nums;
}

.nav__actions .btn--ghost:hover {
  border-color: rgba(255,186,0,0.32);
  background: rgba(255,186,0,0.06);
  color: var(--brand-light);
}

/* Shimmer effect on the primary CTA */
.nav__actions .btn--primary {
  position: relative;
  overflow: hidden;
}

.nav__actions .btn--primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
}

.nav__actions .btn--primary:hover::after {
  animation: nav-shimmer 0.9s ease;
}

@keyframes nav-shimmer {
  to { left: 120%; }
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav__toggle:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}

.nav__toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

.nav__toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.open span:nth-child(2) { opacity: 0; }

.nav__toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav — compact dropdown-paneel rechts onder de hamburger.
   Klapt niet meer uit over de volledige breedte. */
.nav__mobile {
  position: fixed;
  top: calc(var(--nav-height) + 8px);
  right: 24px;
  left: auto;
  bottom: auto;
  width: 320px;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - var(--nav-height) - 24px);
  background: linear-gradient(180deg, rgba(20,20,30,0.96), rgba(10,10,18,0.97));
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 12px;
  overflow-y: auto;
  transform: translateY(-8px) scale(0.97);
  transform-origin: top right;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.28s cubic-bezier(0.34,1.4,0.4,1);
  z-index: 999;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}

.nav__mobile.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}

@media (max-width: 480px) {
  .nav__mobile { right: 16px; }
}

.nav__mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav__mobile-link,
.nav__mobile-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  border: 1px solid transparent;
  background: transparent;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.nav__mobile-link:hover,
.nav__mobile-section-title:hover {
  background: rgba(255,186,0,0.06);
  border-color: rgba(255,186,0,0.18);
  color: var(--white);
}

.nav__mobile-section-title {
  font-weight: 600;
  color: var(--white);
}

.nav__mobile-section-title svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.nav__mobile-section-title.open svg { transform: rotate(180deg); }

.nav__mobile-submenu {
  display: none;
  padding-left: 12px;
  margin-top: 2px;
  gap: 2px;
}

.nav__mobile-submenu.open { display: flex; flex-direction: column; }

.nav__mobile-submenu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav__mobile-submenu a:hover {
  color: var(--white);
  background: rgba(255,186,0,0.1);
}

.nav__mobile-submenu a[aria-current="page"] {
  color: var(--gold-light);
  font-weight: 600;
}

.nav__mobile-submenu a .price {
  font-size: 0.8rem;
  color: var(--brand-light);
}

.nav__mobile-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 8px 0;
}

.nav__mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  padding-top: 4px;
}

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

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(255,186,0,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 60%, rgba(255,140,0,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 60% 20%, rgba(255,186,0,0.06) 0%, transparent 50%),
    var(--bg-dark);
}

.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--brand-light);
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}

@keyframes float-particle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-20vh) scale(1); opacity: 0; }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__content { max-width: 600px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: rgba(255,186,0,0.1);
  border: 1px solid rgba(255,186,0,0.22);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 24px;
}

.hero__eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--brand-light);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  gap: 32px;
}

.hero__stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero__visual {
  position: relative;
}

.hero__visual-inner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-glow), var(--shadow-lg);
}

.hero__visual-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- Hero slideshow ---- */
.hero-slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  touch-action: pan-y; /* allow vertical scroll, horizontal swipe is captured */
  user-select: none;
  -webkit-user-drag: none;
}

.hero-slideshow__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 700ms ease;
  pointer-events: none;
  -webkit-user-drag: none;
}

.hero-slideshow__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slideshow__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}

.hero-slideshow__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.5);
  box-shadow: 0 1px 4px rgba(0,0,0,0.4);
  cursor: pointer;
  transition: width 250ms ease, background-color 250ms ease;
}

.hero-slideshow__dot:hover { background: rgba(255,255,255,0.85); }

.hero-slideshow__dot.is-active {
  width: 22px;
  background: var(--brand-light);
}

.hero-slideshow__arrow {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transition: opacity 200ms ease, background-color 200ms ease, scale 150ms ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero-slideshow__arrow svg {
  width: 20px;
  height: 20px;
  display: block;
}

.hero-slideshow__arrow--prev { left: 12px; }
.hero-slideshow__arrow--next { right: 12px; }

.hero-slideshow:hover .hero-slideshow__arrow,
.hero-slideshow:focus-within .hero-slideshow__arrow {
  opacity: 1;
}

.hero-slideshow__arrow:hover {
  background: rgba(0,0,0,0.7);
  scale: 1.1;
}

.hero-slideshow__arrow:focus-visible {
  opacity: 1;
  outline: 2px solid var(--brand-light);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slideshow__slide { transition: none; }
}

@media (max-width: 480px) {
  .hero-slideshow__arrow { width: 34px; height: 34px; }
  .hero-slideshow__arrow svg { width: 17px; height: 17px; }
}

.hero__visual-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse, rgba(255,186,0,0.28), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero__badge-floating {
  position: absolute;
  background: rgba(8,8,15,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
}

.hero__badge-floating--tl {
  top: -16px;
  left: -16px;
}

.hero__badge-floating--br {
  bottom: -16px;
  right: -16px;
}

.hero__badge-floating .icon {
  width: 36px;
  height: 36px;
  background: var(--grad-main);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.hero__badge-floating .text { font-size: 0.8rem; }
.hero__badge-floating .text strong {
  display: block;
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
}

/* ---- Features Strip ---- */
.features-strip {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  display: flex;
}

.features-strip__track {
  display: flex;
  flex-shrink: 0;
  gap: 48px;
  padding-right: 48px;
  animation: scroll-track 30s linear infinite;
}

@keyframes scroll-track {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

@media (prefers-reduced-motion: reduce) {
  .features-strip__track {
    animation: none;
  }
}

.features-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.features-strip__item svg {
  color: var(--brand-light);
  flex-shrink: 0;
}

/* ============================================
   SCROLLYTELLING — Apple-style pinned section
   ============================================ */
.scrolly {
  position: relative;
  /* Total scroll length — controls how long the section "holds" while pinned.
     Each "stage" gets ~100vh of scroll progression. */
  height: 460vh;
  background: var(--bg-dark);
}

.scrolly__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background canvas (moving graphics) */
.scrolly__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.scrolly__bg::before,
.scrolly__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.scrolly__bg::before {
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255,186,0,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(255,140,0,0.06) 0%, transparent 70%);
}

/* Subtle grid pattern that drifts */
.scrolly__bg::after {
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 75%);
  transform: translate3d(var(--grid-x, 0px), var(--grid-y, 0px), 0);
  transition: transform 0.1s linear;
}

/* Floating orbs */
.scrolly__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  will-change: transform, opacity;
  transition: transform 0.1s linear, opacity 0.3s ease;
}

.scrolly__orb--1 {
  width: 520px; height: 520px;
  top: -120px; left: -160px;
  background: radial-gradient(circle, rgba(255,186,0,0.55), transparent 70%);
}

.scrolly__orb--2 {
  width: 460px; height: 460px;
  bottom: -140px; right: -120px;
  background: radial-gradient(circle, rgba(255,120,0,0.45), transparent 70%);
}

.scrolly__orb--3 {
  width: 360px; height: 360px;
  top: 30%; right: 18%;
  background: radial-gradient(circle, rgba(255,210,80,0.35), transparent 70%);
}

/* Big rotating LED-ring (echo of the Light Ring booth) */
.scrolly__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(120vh, 1100px);
  height: min(120vh, 1100px);
  margin-top: calc(min(120vh, 1100px) / -2);
  margin-left: calc(min(120vh, 1100px) / -2);
  border-radius: 50%;
  border: 1.5px dashed rgba(255,186,0,0.28);
  box-shadow:
    inset 0 0 80px rgba(255,186,0,0.10),
    0 0 80px rgba(255,186,0,0.10);
  transform: rotate(var(--ring-rot, 0deg)) scale(var(--ring-scale, 1));
  transition: transform 0.1s linear;
  pointer-events: none;
}

.scrolly__ring::before,
.scrolly__ring::after {
  content: '';
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px solid rgba(255,186,0,0.18);
}

.scrolly__ring::after {
  inset: 18%;
  border-color: rgba(255,186,0,0.10);
}

/* Confetti sparks */
.scrolly__spark {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-light);
  box-shadow: 0 0 12px rgba(255,210,80,0.8);
  opacity: 0;
  will-change: transform, opacity;
}

/* Stage container */
.scrolly__stages {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 920px;
  padding: 0 24px;
  text-align: center;
}

.scrolly__progress {
  position: absolute;
  top: calc(var(--nav-height) + 24px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.scrolly__progress-dot {
  width: 28px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,0.12);
  transition: background 0.4s ease, width 0.4s ease;
}

.scrolly__progress-dot.active {
  background: var(--grad-main);
}

.scrolly__progress-dot.current {
  width: 44px;
  box-shadow: 0 0 16px rgba(255,186,0,0.5);
}

.scrolly__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: rgba(255,186,0,0.10);
  border: 1px solid rgba(255,186,0,0.28);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 24px;
  max-width: 100%;
  white-space: normal;
}

.scrolly__eyebrow .icon { color: var(--brand-light); }

.scrolly__stage {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-inline: clamp(16px, 4vw, 32px);
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}

.scrolly__stage.active {
  pointer-events: auto;
}

.scrolly__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 20px;
  max-width: min(18ch, 100%);
}

.scrolly__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: min(56ch, 100%);
  margin: 0 auto 28px;
  line-height: 1.7;
}

/* Stage visuals (small media that morphs through stages) */
.scrolly__visual {
  position: relative;
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.scrolly__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
}

.scrolly__chip .icon { color: var(--brand-light); }

.scrolly__big-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(255,186,0,0.4));
}

.scrolly__big-number-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .scrolly { height: 520vh; }
  .scrolly__stages { padding: 0 16px; }
  .scrolly__title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .scrolly__subtitle { font-size: 0.95rem; }
  .scrolly__big-number { font-size: 4.5rem; }
  .scrolly__visual { gap: 10px; }
  .scrolly__chip { padding: 8px 14px; font-size: 0.85rem; }
  .scrolly__orb--1 { width: 320px; height: 320px; }
  .scrolly__orb--2 { width: 280px; height: 280px; }
  .scrolly__orb--3 { display: none; }
  .scrolly__ring { width: 90vh; height: 90vh; margin-top: -45vh; margin-left: -45vh; }
}

@media (max-width: 480px) {
  .scrolly__stages { padding: 0 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .scrolly { height: auto; }
  .scrolly__sticky { position: static; height: auto; padding: 64px 0; }
  .scrolly__stages { position: relative; }
  .scrolly__stage {
    position: relative;
    inset: auto;
    opacity: 1;
    transform: none;
    margin-bottom: 64px;
  }
  .scrolly__ring, .scrolly__orb, .scrolly__spark { display: none; }
}

/* ---- Photobooths Grid ---- */
.booth-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.booth-card:hover {
  border-color: rgba(255,186,0,0.28);
  box-shadow: var(--shadow-glow);
  transform: translateY(-6px);
}

.booth-card__image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.booth-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.booth-card:hover .booth-card__image img {
  transform: scale(1.05);
}

.booth-card__price-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 14px;
  background: rgba(8,8,15,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,186,0,0.28);
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold-light);
}

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

.booth-card__title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.booth-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.booth-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.booth-card__feature {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: rgba(255,186,0,0.08);
  border: 1px solid rgba(255,186,0,0.12);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--brand-light);
}

.booth-card__actions {
  display: flex;
  gap: 8px;
}

.booth-card__actions .btn {
  flex: 1;
  font-size: 0.875rem;
  padding: 11px 16px;
}

/* Hele kaart klikbaar via JS data-href */
.booth-card[data-href] {
  cursor: pointer;
}

/* ---- Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,15,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-item__overlay { opacity: 1; }

.gallery-item__overlay svg {
  width: 40px;
  height: 40px;
  color: white;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox__image {
  max-width: 100%;
  max-height: calc(100vh - 120px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lightbox__close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox__close:hover { background: rgba(255,255,255,0.2); }

.lightbox__prev,
.lightbox__next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(255,255,255,0.15); }

.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }

.lightbox__counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

/* ---- Feature list ---- */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.feature-item:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255,186,0,0.18);
}

.feature-item__icon {
  width: 36px;
  height: 36px;
  background: rgba(255,186,0,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-light);
  flex-shrink: 0;
}

.feature-item__icon .icon { width: 18px; height: 18px; }

.feature-item__text { font-size: 0.9rem; color: var(--text); }
.feature-item__text strong { color: var(--white); display: block; margin-bottom: 2px; }

/* ---- Specs accordion ---- */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.accordion__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.accordion__item.open {
  border-color: rgba(255,186,0,0.22);
}

.accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: var(--transition);
}

.accordion__header:hover { color: var(--brand-light); }

.accordion__icon {
  width: 20px;
  height: 20px;
  color: var(--brand-light);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.accordion__item.open .accordion__icon { transform: rotate(45deg); }

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion__body-inner {
  padding: 0 20px 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.accordion__body-inner ul {
  list-style: disc;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ---- Why Us / USP grid ---- */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.usp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}

.usp-card:hover {
  border-color: rgba(255,186,0,0.22);
  background: var(--bg-card-hover);
  box-shadow: 0 0 20px rgba(255,186,0,0.1);
}

.usp-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(255,186,0,0.10);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--brand-light);
}

.usp-card__icon .icon { width: 24px; height: 24px; }

.usp-card__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 6px;
}

.usp-card__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(255,186,0,0.18);
  background: var(--bg-card-hover);
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.testimonial-card__author {
  font-weight: 600;
  color: var(--white);
  font-size: 0.875rem;
}

.testimonial-card__event {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ---- Occasions ---- */
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.occasion-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
}

.occasion-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.occasion-card:hover img { transform: scale(1.06); }

.occasion-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.occasion-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
}

/* ---- CTA Banner ---- */
.cta-banner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 64px 48px;
  background: var(--grad-subtle);
  border: 1px solid rgba(255,186,0,0.18);
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(255,186,0,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 100% 50%, rgba(255,140,0,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  max-width: 500px;
}

.cta-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---- Contact Form ---- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group--full { grid-column: 1 / -1; }

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}

.form-label span { color: var(--pink); margin-left: 2px; }

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-faint); }

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--purple);
  background: rgba(255,186,0,0.05);
  box-shadow: 0 0 0 3px rgba(255,186,0,0.12);
}

.form-textarea { resize: vertical; min-height: 120px; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.form-error {
  color: #f87171;
  font-size: 0.8rem;
  margin-top: 5px;
  display: none;
  gap: 4px;
  line-height: 1.4;
}

.form-input.is-invalid,
.form-textarea.is-invalid,
.form-select.is-invalid {
  border-color: rgba(248, 113, 113, 0.65) !important;
  background: rgba(239, 68, 68, 0.04) !important;
}

/* ---- Offerte Form ---- */
.offerte-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.offerte-step {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
  transition: var(--transition);
}

.offerte-step.active {
  border-color: rgba(255,186,0,0.28);
  box-shadow: 0 0 0 1px rgba(255,186,0,0.12);
}

.offerte-step__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
}

.offerte-step__number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,186,0,0.12);
  border: 1.5px solid rgba(255,186,0,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--brand-light);
  flex-shrink: 0;
}

.offerte-step.completed .offerte-step__number {
  background: var(--grad-main);
  border-color: transparent;
  color: white;
}

.offerte-step__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  flex: 1;
}

.offerte-step__summary {
  font-size: 0.8rem;
  color: var(--brand-light);
  font-weight: 500;
}

.offerte-step__body {
  padding: 0 24px 24px;
}

/* Booth radio cards */
.booth-radio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.booth-radio {
  position: relative;
}

.booth-radio input { display: none; }

.booth-radio__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 12px;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  height: 100%;
}

.booth-radio__label:hover {
  border-color: rgba(255,186,0,0.28);
  background: var(--bg-card-hover);
}

.booth-radio input:checked + .booth-radio__label {
  border-color: var(--purple);
  background: rgba(255,186,0,0.08);
  box-shadow: 0 0 0 1px rgba(255,186,0,0.28);
}

.booth-radio__img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  margin-bottom: 10px;
}

.booth-radio__name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  margin-bottom: 4px;
}

.booth-radio__price {
  font-size: 0.78rem;
  color: var(--brand-light);
  font-weight: 600;
}

/* Extras checkboxes */
.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}

.extra-checkbox {
  position: relative;
  display: flex;
}

.extra-checkbox input { display: none; }

.extra-checkbox__label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.extra-checkbox__label:hover {
  border-color: rgba(255,186,0,0.22);
  background: var(--bg-card-hover);
}

.extra-checkbox input:checked + .extra-checkbox__label {
  border-color: var(--purple);
  background: rgba(255,186,0,0.06);
}

.extra-checkbox__check {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 5px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  margin-top: 1px;
}

.extra-checkbox input:checked + .extra-checkbox__label .extra-checkbox__check {
  background: var(--grad-main);
  border-color: transparent;
}

.extra-checkbox input:checked + .extra-checkbox__label .extra-checkbox__check::after {
  content: '✓';
  font-size: 0.7rem;
  color: white;
  font-weight: 700;
}

.extra-checkbox__info {}

.extra-checkbox__name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--white);
  line-height: 1.3;
}

.extra-checkbox__price {
  font-size: 0.8rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-top: 2px;
}

.extra-checkbox__desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.4;
}

/* Printer toggle */
.printer-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.printer-option {
  position: relative;
}

.printer-option input { display: none; }

.printer-option__label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  height: 100%;
}

.printer-option__label:hover { border-color: rgba(255,186,0,0.28); }

.printer-option input:checked + .printer-option__label {
  border-color: var(--purple);
  background: rgba(255,186,0,0.06);
}

.printer-option__title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
}

.printer-option__price {
  font-size: 0.8rem;
  color: var(--gold-light);
  font-weight: 600;
}

.printer-option__desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 4px;
}

/* Price box */
.price-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.price-line,
.price-total { min-width: 0; }
.price-line__label,
.price-line__value,
.price-total__label,
.price-total__value { min-width: 0; overflow-wrap: anywhere; }

.price-box__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 0.875rem;
}

.price-line__label { color: var(--text-muted); }
.price-line__value { font-weight: 600; color: var(--white); }
.price-line--discount .price-line__value { color: #4ade80; }

.price-divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}

.price-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0 0;
}

.price-total__label {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.price-total__value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Footer ---- */
.footer {
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(255,186,0,0.06), transparent);
  pointer-events: none;
}

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

.footer__brand {}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer__brand-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer__social-link:hover {
  background: rgba(255,186,0,0.1);
  border-color: rgba(255,186,0,0.28);
  color: var(--brand-light);
}

.footer__col-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

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

.footer__link {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer__link:hover { color: var(--brand-light); }

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.footer__contact-item svg { color: var(--brand-light); flex-shrink: 0; }
.footer__contact-item a { color: var(--text-muted); transition: var(--transition); }
.footer__contact-item a:hover { color: var(--brand-light); }

/* Horizontal SEO city links row */
.footer__cities {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  padding: 24px 0;
  margin-bottom: 8px;
  border-top: 1px solid var(--border);
}

.footer__cities-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-right: 8px;
}

.footer__city-link {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer__city-link .icon {
  width: 0.85em;
  height: 0.85em;
  color: var(--brand-light);
  opacity: 0.7;
  transition: var(--transition);
}

.footer__city-link:hover {
  color: var(--brand-light);
}

.footer__city-link:hover .icon { opacity: 1; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: 0.82rem;
  color: var(--text-faint);
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal a {
  font-size: 0.82rem;
  color: var(--text-faint);
  transition: var(--transition);
}

.footer__legal a:hover { color: var(--text-muted); }

.footer__credit {
  margin-top: 16px;
  padding-top: 12px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-faint);
  border-top: 1px solid var(--border);
  opacity: 0.7;
}

.footer__credit a {
  color: var(--text-faint);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.15);
  transition: var(--transition);
}

.footer__credit a:hover {
  color: var(--text-muted);
  text-decoration-color: currentColor;
}

/* ---- Animations ---- */
.js-loaded .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js-loaded .reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-loaded .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }

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

.reveal--left.revealed { transform: translateX(0); }

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

.reveal--right.revealed { transform: translateX(0); }

/* ---- Page hero (inner pages) ---- */
.page-hero {
  padding: calc(var(--nav-height) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 30% 50%, rgba(255,186,0,0.15), transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 40%, rgba(255,140,0,0.07), transparent 60%);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-faint);
  margin-bottom: 20px;
}

.page-hero__breadcrumb a { color: var(--text-muted); transition: var(--transition); }
.page-hero__breadcrumb a:hover { color: var(--brand-light); }
.page-hero__breadcrumb svg { width: 14px; height: 14px; }

.page-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.page-hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* ---- Delivery map ---- */
.delivery-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.delivery-city {
  padding: 6px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.delivery-city:hover {
  border-color: rgba(255,186,0,0.28);
  color: var(--brand-light);
  background: rgba(255,186,0,0.05);
}

/* ---- Logo grid ---- */
.logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
  filter: grayscale(1);
}

.logo-grid img { height: 40px; width: auto; object-fit: contain; }

/* ---- FAQ ---- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ---- Floating contact bar ---- */
.contact-bar {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.contact-bar__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: white;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.contact-bar__btn--whatsapp {
  background: #25d366;
  color: #0a0a14 !important;
}

.contact-bar__btn--whatsapp:hover {
  background: #1ea851;
  transform: scale(1.05);
  color: #0a0a14 !important;
}

.contact-bar__btn--whatsapp .icon,
.contact-bar__btn--whatsapp .icon svg,
.contact-bar__btn--whatsapp .icon__svg {
  color: #0a0a14 !important;
  fill: #0a0a14 !important;
  stroke: none !important;
}

.contact-bar__btn--phone {
  background: rgba(8,8,15,0.9);
  border: 1px solid var(--border);
  color: var(--text);
}

.contact-bar__btn--phone:hover {
  border-color: var(--purple);
  color: white;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ---- Two-column helper grids responsive ---- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

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

/* Contact page layout */
@media (max-width: 900px) {
  [style*="grid-template-columns: 1fr 400px"],
  [style*="grid-template-columns: 1fr 420px"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns: 1fr 400px"] > *,
  [style*="grid-template-columns: 1fr 420px"] > * {
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }

  /* Flatten .hero__content so its children become direct grid items.
     This lets us slot the visual in between the intro and the actions
     instead of forcing it above the title. */
  .hero__content { display: contents; }
  .hero__eyebrow  { display: none; }
  .hero__title    { order: 2; }
  .hero__subtitle { order: 3; margin-left: auto; margin-right: auto; }
  .hero__visual   { order: 4; width: 100%; max-width: 360px; margin: 0 auto; }
  .hero__actions  { order: 5; }
  .hero__stats    { order: 6; }

  .hero__badge-floating--tl { top: -8px; left: -8px; }
  .hero__badge-floating--br { bottom: -8px; right: -8px; }

  .form-grid { grid-template-columns: 1fr; }
  .form-group--full { grid-column: 1; }

  .cta-banner { padding: 40px 24px; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__actions { width: 100%; flex-direction: column; }

  .occasions-grid { grid-template-columns: 1fr; }
  .printer-options { grid-template-columns: 1fr; }

  .section { padding: 72px 0; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }

  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }

  .price-box { position: static; }

  .booth-radio-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2.2rem; }
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .booth-radio-grid { grid-template-columns: 1fr 1fr; }

  .hero { align-items: flex-start; padding-top: calc(var(--nav-height) + 16px); }
  .hero__grid { gap: 32px; }
  .hero__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 20px;
    justify-items: center;
  }
  .hero__stat { min-width: 0; text-align: center; }
  .hero__stat:last-child { grid-column: 1 / -1; }
  .hero__stat-value { font-size: 1.5rem; }
}

/* Inner page inline grids */
@media (max-width: 768px) {
  /* Any inline grid-template-columns with two cols */
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns: 2fr 1fr"],
  [style*="grid-template-columns: 1fr 2fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ---- Misc ---- */
.divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

.tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255,186,0,0.1);
  color: var(--brand-light);
  border: 1px solid rgba(255,186,0,0.18);
}

.tag--gold {
  background: rgba(255,186,0,0.1);
  color: var(--gold-light);
  border-color: rgba(255,186,0,0.18);
}

.tag--green {
  background: rgba(74,222,128,0.1);
  color: #4ade80;
  border-color: rgba(74,222,128,0.2);
}

.highlight {
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-main);
  border-radius: 2px;
  opacity: 0.6;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0d0d18; }
::-webkit-scrollbar-thumb { background: rgba(255,186,0,0.28); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(168,85,247,0.5); }

/* Selection */
::selection {
  background: rgba(255,186,0,0.28);
  color: white;
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Alert / Success */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.alert--success {
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.2);
  color: #4ade80;
}

.alert--error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.2);
  color: #f87171;
}

/* Loading spinner */
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.2);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Photobooth page layout */
.photobooth-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: stretch;
}

.photobooth-layout > aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

/* Wrapper rond de price-box: vult alle ruimte boven het volgende aside-blok,
   zodat sticky netjes loslaat zodra "Andere photobooths" in beeld komt. */
.photobooth-aside__sticky {
  flex: 1;
  min-height: 0;
}

.photobooth-aside__sticky .price-box {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

@media (max-width: 1024px) {
  .photobooth-layout { grid-template-columns: 1fr; }
  .photobooth-layout > aside { height: auto; }
  .photobooth-aside__sticky .price-box { position: static; }
}

/* Stars rating */
.stars { color: var(--gold); letter-spacing: 2px; }

/* Number counter */
.counter { font-variant-numeric: tabular-nums; }

/* ============================================
   ICONS — single Lucide icon family
   Use:  <i class="icon" data-icon="camera"></i>
   ============================================ */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  vertical-align: -0.125em;
  line-height: 1;
  font-style: normal;
}

.icon__svg {
  width: 100%;
  height: 100%;
  display: block;
}

.icon--xs { width: 0.875em; height: 0.875em; }
.icon--sm { width: 1em; height: 1em; }
.icon--md { width: 1.25em; height: 1.25em; }
.icon--lg { width: 1.5em; height: 1.5em; }
.icon--xl { width: 2em; height: 2em; }

/* Inline-with-text icon spacing */
.icon-text {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}

/* Booth feature chip — small icon + label */
.booth-card__feature .icon {
  width: 0.85em;
  height: 0.85em;
  margin-right: 2px;
}

/* Hero floating badges with SVG */
.hero__badge-floating .icon {
  width: 18px;
  height: 18px;
  color: var(--brand-light);
}
.hero__badge-floating .icon-wrap {
  width: 36px;
  height: 36px;
  background: var(--grad-main);
  color: #0a0a14;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__badge-floating .icon-wrap .icon { width: 20px; height: 20px; color: #0a0a14; }

/* Gallery overlay icon */
.gallery-item__overlay .icon { width: 36px; height: 36px; color: white; }

/* Footer social svg fill state for filled icons (whatsapp/facebook) */
.footer__social-link .icon { width: 16px; height: 16px; }

/* Section title accents — keeps single-family icons in headings */
.section-title .icon { color: var(--brand-light); }

/* Buttons can include icons inline; ensure svg sizes consistently */
.btn .icon { width: 1.05em; height: 1.05em; }
.btn--lg .icon { width: 1.1em; height: 1.1em; }
.btn--sm .icon { width: 0.95em; height: 0.95em; }

/* Accordion trigger icon (replaces +) */
.accordion__icon .icon { width: 18px; height: 18px; }

/* Price box small inline icons */
.price-line .icon,
.price-box .icon {
  color: var(--brand-light);
}

/* Icons inside buttons inherit the button's text color */
.price-box .btn .icon {
  color: currentColor;
}

/* Tag with inline icon */
.tag .icon { width: 0.85em; height: 0.85em; margin-right: 4px; }

/* Delivery cities pill icons */
.delivery-city .icon {
  color: var(--brand-light);
  width: 0.9em; height: 0.9em;
  margin-right: 4px;
}

/* Mobile nav inline icons */
.nav__mobile-link .icon,
.nav__mobile-section-title .icon,
.nav__dropdown-link .icon,
.nav__mobile-submenu a .icon {
  width: 18px;
  height: 18px;
  color: var(--brand-light);
  margin-right: 8px;
}

/* WhatsApp groene CTA-knoppen — uniform: zwarte tekst en zwart icoontje. */
.btn--whatsapp { background: #25d366; color: #0a0a14 !important; }
.btn--whatsapp:hover { background: #1ea851; color: #0a0a14 !important; transform: translateY(-2px); }
.btn--whatsapp .icon,
.btn--whatsapp .icon svg,
.btn--whatsapp .icon__svg {
  color: #0a0a14 !important;
  fill: #0a0a14 !important;
  stroke: none !important;
}

/* Eyebrow icon */
.hero__eyebrow .icon {
  width: 14px;
  height: 14px;
}

/* Booth list (sidebar "Other photobooths") inline icons */
.other-booths-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}
.other-booths-link:hover {
  background: var(--bg-card-hover);
  color: var(--white);
}
.other-booths-link .icon { color: var(--brand-light); width: 18px; height: 18px; }
.other-booths-link__title { display: flex; align-items: center; gap: 8px; }

/* Misc utility for icon list rows used on FAQ / contact pages */
.icon-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.icon-row > .icon {
  color: var(--brand-light);
  width: 22px;
  height: 22px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ============================================
   BLOG — overview & individual posts
   ============================================ */

/* ---- Blog header (overview) ---- */
.blog-header {
  position: relative;
  padding: 140px 0 60px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(255,186,0,0.16), transparent 60%),
    var(--bg-dark);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.blog-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,186,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,186,0,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black, transparent 70%);
  pointer-events: none;
}

.blog-header__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.blog-header__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 14px 0 18px;
}

.blog-header__title span {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-header__lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 22px;
}

.blog-header__ig {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid rgba(255,186,0,0.30);
  background: linear-gradient(135deg, rgba(255,186,0,0.10), rgba(255,140,0,0.04));
  color: var(--white);
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.blog-header__ig:hover {
  background: linear-gradient(135deg, rgba(255,186,0,0.22), rgba(255,140,0,0.10));
  transform: translateY(-2px);
}

.blog-header__ig .icon { color: var(--brand-light); }

/* ---- Blog grid ---- */
.blog-grid {
  padding: 60px 0 100px;
}

.blog-grid__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 28px;
}

/* Featured (first) card spans two columns on wider screens */
@media (min-width: 920px) {
  .blog-grid__inner {
    grid-template-columns: repeat(3, 1fr);
  }
  .blog-card--featured {
    grid-column: span 2;
    grid-row: span 1;
  }
}

/* ---- Blog card ---- */
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  text-decoration: none;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,186,0,0.30);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(255,186,0,0.10);
}

.blog-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}

.blog-card--featured .blog-card__media {
  aspect-ratio: 16 / 9;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.blog-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.55));
  pointer-events: none;
}

.blog-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,186,0,0.25);
  color: var(--brand-light);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.blog-card__body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.blog-card__meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.55;
}

.blog-card__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--white);
  margin: 0;
}

.blog-card--featured .blog-card__title {
  font-size: 1.5rem;
}

.blog-card__excerpt {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

.blog-card__cta {
  margin-top: auto;
  padding-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-light);
  font-weight: 600;
  font-size: 0.9rem;
  font-family: 'Outfit', sans-serif;
}

.blog-card:hover .blog-card__cta { gap: 10px; }

.blog-card__cta .icon { transition: transform var(--transition); }

.blog-card:hover .blog-card__cta .icon { transform: translateX(4px); }

/* ---- Individual blog post layout ---- */
.post-hero {
  position: relative;
  padding: 130px 0 50px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255,186,0,0.14), transparent 65%),
    var(--bg-dark);
  border-bottom: 1px solid var(--border);
}

.post-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.post-hero__breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.post-hero__breadcrumbs a:hover { color: var(--brand-light); }
.post-hero__breadcrumbs .icon { width: 14px; height: 14px; opacity: 0.6; }

.post-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,186,0,0.30);
  background: rgba(255,186,0,0.08);
  color: var(--brand-light);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.post-hero__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
}

.post-hero__title span {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.post-hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 30px;
}

.post-hero__meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.55;
}

.post-hero__image {
  margin-top: 16px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  aspect-ratio: 16 / 9;
  background: rgba(255,255,255,0.03);
}

.post-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- Post body ---- */
.post-body {
  padding: 60px 0 40px;
}

.post-body__inner {
  max-width: 740px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
}

.post-body__inner > * + * { margin-top: 1.1em; }

.post-body__inner h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.015em;
  margin-top: 1.8em;
}

.post-body__inner h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  margin-top: 1.6em;
}

.post-body__inner a {
  color: var(--brand-light);
  text-decoration: underline;
  text-decoration-color: rgba(255,186,0,0.35);
  text-underline-offset: 4px;
  transition: var(--transition);
}

.post-body__inner a:hover { text-decoration-color: var(--brand-light); }

.post-body__inner a.btn {
  text-decoration: none;
}
.post-body__inner a.btn--primary,
.post-body__inner a.btn--gold {
  color: #0a0a14;
}
.post-body__inner a.btn--primary .icon,
.post-body__inner a.btn--gold .icon {
  color: #0a0a14;
}
.post-body__inner a.btn--ghost {
  color: var(--text);
}
.post-body__inner a.btn--ghost:hover {
  color: var(--white);
}

.post-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}
.post-cta .btn { margin: 0; }

.post-body__inner ul,
.post-body__inner ol {
  padding-left: 1.4em;
  color: var(--text);
}

.post-body__inner li + li { margin-top: 0.4em; }

.post-body__inner blockquote {
  margin: 1.6em 0;
  padding: 22px 26px;
  background: linear-gradient(135deg, rgba(255,186,0,0.08), rgba(255,140,0,0.02));
  border-left: 4px solid var(--brand);
  border-radius: 0 14px 14px 0;
  font-style: italic;
  color: var(--white);
  position: relative;
}

.post-body__inner blockquote::before {
  content: '“';
  position: absolute;
  top: -8px;
  left: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  color: var(--brand-light);
  opacity: 0.4;
  line-height: 1;
}

.post-body__inner img,
.post-body__figure img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid var(--border);
  margin: 0;
}

.post-body__figure {
  margin: 1.6em 0;
}

.post-body__figure figcaption {
  margin-top: 10px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Image grid for galleries inside posts */
.post-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 1.6em 0;
}

.post-gallery img {
  border-radius: 14px;
  border: 1px solid var(--border);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}

@media (max-width: 600px) {
  .post-gallery { grid-template-columns: 1fr; }
}

/* Highlight box (key takeaway) */
.post-highlight {
  margin: 1.8em 0;
  padding: 22px 26px;
  background: linear-gradient(135deg, rgba(255,186,0,0.10), rgba(168,85,247,0.04));
  border: 1px solid rgba(255,186,0,0.22);
  border-radius: 18px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.post-highlight__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--grad-main);
  color: #0a0a14;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-highlight__icon .icon { width: 20px; height: 20px; color: #0a0a14; }
.post-highlight__title { font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--white); margin: 0 0 4px; }
.post-highlight__text { color: var(--text-muted); font-size: 0.95rem; line-height: 1.55; margin: 0; }

/* ---- Post share + related ---- */
.post-share {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.post-share__label {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--text-muted);
}

.post-share__buttons {
  display: flex;
  gap: 10px;
}

.post-share__btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255,255,255,0.02);
  transition: var(--transition);
}

.post-share__btn:hover {
  border-color: rgba(255,186,0,0.30);
  color: var(--brand-light);
  transform: translateY(-2px);
}

.related-posts {
  padding: 60px 0 100px;
  background: var(--bg-dark);
}

.related-posts__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.015em;
  text-align: center;
  margin-bottom: 34px;
}

.related-posts__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 24px;
}

@media (max-width: 768px) {
  .blog-header { padding: 120px 0 50px; }
  .post-hero { padding: 110px 0 40px; }
  .post-body__inner h2 { font-size: 1.4rem; }
}

/* ======= TOEGANKELIJKHEIDS-WIDGET OVERRIDES ======= */

/*
 * Rechts uitgelijnd met de floating WhatsApp-balk (.contact-bar), maar hoger gezet zodat
 * de FAB boven de groene knop staat (geen overlap).
 * — contact-bar: bottom 24px; pill-knop ~44–52px hoog + marge.
 */
.a11y-widget {
  left: auto !important;
  right: 24px !important;
  bottom: calc(
    24px + 52px + 14px + env(safe-area-inset-bottom, 0px)
  ) !important;
}

@media (max-width: 720px) {
  .a11y-widget {
    left: auto !important;
    right: 24px !important;
    bottom: calc(
      24px + 52px + 14px + env(safe-area-inset-bottom, 0px)
    ) !important;
  }
}

/* Dyslexie-lettertype: forceer OpenDyslexic op ALLE elementen, behalve de a11y-widget zelf
   (zodat het paneel z'n eigen, leesbare systeemfont houdt) en pictogrammen. */
html.a11y-dyslexia-font,
html.a11y-dyslexia-font body,
html.a11y-dyslexia-font *:not(.a11y-widget):not(.a11y-widget *):not(i):not(svg):not(svg *) {
  font-family: var(--a11y-font-dyslexia, "OpenDyslexic", "Comic Sans MS", Arial, sans-serif) !important;
  letter-spacing: 0.015em;
  word-spacing: 0.04em;
}

html.a11y-dyslexia-font h1,
html.a11y-dyslexia-font h2,
html.a11y-dyslexia-font h3,
html.a11y-dyslexia-font h4,
html.a11y-dyslexia-font h5,
html.a11y-dyslexia-font h6,
html.a11y-dyslexia-font .hero__title,
html.a11y-dyslexia-font .page-hero__title,
html.a11y-dyslexia-font .section-title,
html.a11y-dyslexia-font .booth-card__title,
html.a11y-dyslexia-font .nav__link,
html.a11y-dyslexia-font .btn,
html.a11y-dyslexia-font input,
html.a11y-dyslexia-font textarea,
html.a11y-dyslexia-font select,
html.a11y-dyslexia-font button {
  font-family: var(--a11y-font-dyslexia, "OpenDyslexic", "Comic Sans MS", Arial, sans-serif) !important;
}

/* Hoog contrast — site-brede stijlen (html.high-contrast zet de widget zelf al;
   onderstaande regels zorgen voor contrast in de eigen site-content) */
html.high-contrast {
  --bg: #000000;
  --bg-2: #0a0a0a;
  --surface: #111111;
  --border: #ffffff;
  --text: #ffffff;
  --text-muted: #cccccc;
  --gold: #ffdd00;
  --purple: #66aaff;
}

html.high-contrast body {
  background: #000;
  color: #fff;
}

html.high-contrast .nav {
  background: #000 !important;
  border-bottom: 2px solid #fff;
}

html.high-contrast .nav__link,
html.high-contrast .nav__logo {
  color: #fff !important;
}

html.high-contrast .btn--primary {
  background: #ffdd00 !important;
  color: #000 !important;
  border: 2px solid #ffdd00 !important;
}

html.high-contrast .btn--secondary,
html.high-contrast .btn--outline {
  background: transparent !important;
  color: #fff !important;
  border: 2px solid #fff !important;
}

html.high-contrast .card,
html.high-contrast .booth-card,
html.high-contrast .faq-item,
html.high-contrast .blog-card {
  background: #111 !important;
  border: 1px solid #fff !important;
  color: #fff !important;
}

html.high-contrast a {
  color: #66aaff;
}

html.high-contrast a:hover {
  color: #fff;
}

html.high-contrast footer {
  background: #000 !important;
  border-top: 2px solid #fff;
  color: #fff !important;
}

/* ============================================
   RESPONSIVE HEADER
   ----------------------------------------------
   Eén nette balk op alle viewports — geen topbar erboven.
   Layout:
   • ≥1024px: logo · menu · telefoon · offerte
   • 700–1023px: logo · telefoon · offerte · hamburger
   • <700px:  logo · hamburger (telefoon + offerte zitten ín het
              hamburgermenu, in de header is geen ruimte meer)
   ============================================ */

/* 1024–1200px: het volledige menu past nét naast de logo + actieknoppen,
   maar het volledige telefoonnummer maakt het te druk. We laten de
   telefoonknop hier inkrimpen tot een rond icoon-knopje. */
@media (min-width: 1024px) and (max-width: 1200px) {
  .nav__actions .btn--ghost {
    width: 38px;
    height: 38px;
    padding: 0;
    gap: 0;
    font-size: 0;
    line-height: 0;
    justify-content: center;
  }
  /* .icon gebruikt width/height: 1em, dus we forceren een expliciete
     fontgrootte zodat het SVG-icoon zichtbaar blijft. */
  .nav__actions .btn--ghost .icon {
    font-size: 18px;
    line-height: 1;
  }
  /* Tooltip vanuit aria-label hoeft niet, maar voor screenreaders blijft
     het nummer beschikbaar via de tekstinhoud van de link. */
}

/* Onder 1024px past het volledige menu niet meer naast logo + acties,
   dus we schakelen over naar de hamburger met een dropdown-paneel. */
@media (max-width: 1023px) {
  .nav__menu { display: none; }
  .nav__toggle { display: flex; }

  /* Logo links, alle overige knoppen netjes geclusterd rechts. */
  .nav__inner {
    gap: 8px;
    justify-content: flex-start;
  }
  .nav__actions {
    gap: 8px;
    margin-left: auto;
  }
  .nav__actions .btn--sm {
    padding: 7px 12px;
    font-size: 0.85rem;
  }
}

/* Onder 700px is er geen ruimte meer voor de telefoon- en offerte-knop
   naast logo + hamburger. We verbergen ze in de balk; ze blijven
   bereikbaar via het hamburgermenu zelf.
   Layout: logo links, hamburger rechts, beide verticaal gecentreerd. */
@media (max-width: 699px) {
  :root { --nav-height: 64px; }

  .nav__actions { display: none; }

  .nav__inner {
    align-items: center;
  }
  .nav__logo {
    align-self: center;
  }
  /* Geen .nav__actions meer aanwezig om met margin-left:auto te triggeren,
     dus duwen we de hamburger zelf naar rechts. */
  .nav__toggle {
    margin-left: auto;
    align-self: center;
  }
}
