  @font-face {
    font-family: 'Edo SZ';
    src: url('../fonts/edosz.ttf') format('truetype');
    font-display: swap;
  }

  * { box-sizing: border-box; }
  html, body { overflow-x: clip; margin: 0; }
  body {
    background: #0B0B0B;
    color: #F4EBDD;
    font-family: 'Plus Jakarta Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.55;
    letter-spacing: -0.005em;
  }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; }
  /* dark-mode design tokens */
  :root {
    --bg: #0B0B0B;
    --bg-warm: #171410;
    --surface: #1F1B16;
    --text: #F4EBDD;
    --text-muted: rgba(244,235,221,0.65);
    --text-dim: rgba(244,235,221,0.6);
    --border: rgba(244,235,221,0.12);
    --border-strong: rgba(244,235,221,0.25);
    --lime: #8dbe22;
    --peach: #EBBE94;
  }

  /* ===== TOP STACK (util-bar + nav) — fixed at top ===== */
  #topStack {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 60;
  }

  /* ===== TOP UTILITY BAR — live location ===== */
  .util-bar {
    background: #0B0B0B; color: var(--text);
    font-size: 14px;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(141,190,34,0.25);
  }
  .util-bar-in {
    max-width: 1400px; margin: 0 auto;
    display: flex; justify-content: space-between; gap: 24px; align-items: center;
    min-height: 28px;
  }
  .util-bar a:hover { color: var(--lime); }
  .util-bar .sep { opacity: 0.4; padding: 0 8px; }
  @media (max-width: 768px) {
    .util-bar { padding: 10px 16px; font-size: 13px; }
    .util-bar .hide-sm { display: none; }
  }

  /* Live location indicator — prominent */
  .live-status {
    display: inline-flex; align-items: center; gap: 14px;
    color: var(--text);
    padding: 6px 16px 6px 12px;
    background: rgba(141,190,34,0.08);
    border: 1px solid rgba(141,190,34,0.3);
    border-radius: 9999px;
    transition: all 0.25s;
    line-height: 1;
  }
  .live-status:hover {
    background: rgba(141,190,34,0.15);
    border-color: rgba(141,190,34,0.5);
    color: var(--text);
  }
  .live-status .ls-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--lime);
    animation: pulse-loc 1.6s ease-in-out infinite;
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(141,190,34,0.6);
  }
  @keyframes pulse-loc {
    0%, 100% { box-shadow: 0 0 0 0 rgba(141,190,34,0.7); }
    50% { box-shadow: 0 0 0 10px rgba(141,190,34,0); }
  }
  .live-status .ls-label {
    font-family: 'Anton', sans-serif;
    color: var(--lime);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    padding-right: 10px;
    border-right: 1px solid rgba(141,190,34,0.3);
  }
  .live-status .ls-info {
    font-weight: 600; color: var(--text);
  }
  .live-status .ls-info .ls-sub { color: rgba(244,235,221,0.7); font-weight: 400; margin-left: 4px; }
  .live-status .ls-time { color: var(--lime); font-weight: 600; margin-left: 6px; }
  .live-status .ls-arrow {
    display: inline-block;
    color: var(--lime);
    transition: transform 0.25s;
    font-weight: 600;
  }
  .live-status:hover .ls-arrow { transform: translateX(4px); }
  @media (max-width: 768px) {
    .live-status { padding: 5px 12px 5px 10px; gap: 10px; }
    .live-status .ls-label { font-size: 11px; padding-right: 8px; }
    .live-status .ls-info .ls-sub { display: none; }
    .live-status .ls-time, .live-status .ls-arrow { display: none; }
  }
  @media (max-width: 480px) {
    .live-status .ls-label { display: none; }
  }

  /* ===== NAV ===== */
  .nav {
    background: rgba(11,11,11,0.96);
    border-bottom: 1px solid var(--border);
    padding: 18px 24px;
  }
  .nav-in { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
  .logo { display: inline-flex; align-items: center; gap: 12px; }
  .logo-icon { width: 44px; height: 44px; }
  .logo-img { height: 68px; width: auto; display: block; }
  @media (max-width: 640px) { .logo-img { height: 54px; } }
  .wordmark {
    font-family: 'Anton', sans-serif;
    font-size: 22px;
    letter-spacing: 0.04em;
    font-style: italic;
    transform: skewX(-8deg);
  }
  .wordmark .dot { color: #8dbe22; }
  .nav-links { display: none; }
  @media (min-width: 1024px) {
    .nav-links { display: flex; gap: 4px; align-items: center; list-style: none; padding: 0; margin: 0; }
    .nav-links a { display: inline-block; padding: 10px 16px; border-radius: 9999px; font-size: 15px; font-weight: 500; transition: all 0.2s; color: var(--text); }
    .nav-links a:hover { background: rgba(244,235,221,0.08); }
    .nav-links a.active { background: var(--lime); color: #0B0B0B; }
  }

  /* ===== BUTTONS — circular ripple fill from cursor entry point ===== */
  .btn {
    position: relative; display: inline-flex; align-items: center; gap: 12px;
    padding: 18px 28px;
    background: var(--text); color: #0B0B0B;
    border-radius: 9999px;
    font-weight: 600; font-size: 14px;
    letter-spacing: 0.02em;
    line-height: 1;
    border: 0;
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
    transition: color 0.4s cubic-bezier(.7,.2,.3,1);
    --cx: 50%;
    --cy: 50%;
    --cr: 0%;
  }
  .btn::before {
    content: ''; position: absolute; inset: 0; z-index: -1;
    background: var(--lime);
    clip-path: circle(var(--cr) at var(--cx) var(--cy));
    -webkit-clip-path: circle(var(--cr) at var(--cx) var(--cy));
    transition: clip-path 0.55s cubic-bezier(.7,.2,.3,1), -webkit-clip-path 0.55s cubic-bezier(.7,.2,.3,1);
  }
  .btn.no-trans::before { transition: none; }
  .btn:hover { color: #0B0B0B; }
  .btn-lime { background: var(--lime); color: #0B0B0B; }
  .btn-lime::before { background: var(--text); }
  .btn-lime:hover { color: #0B0B0B; }
  .btn-outline { background: transparent; border: 1.5px solid var(--text); color: var(--text); }
  .btn-outline::before { background: var(--text); }
  .btn-outline:hover { color: #0B0B0B; border-color: var(--text); }
  /* Arrow with subtle shift */
  .btn .arr {
    display: inline-grid; place-items: center; width: 22px; height: 22px;
    background: currentColor; border-radius: 9999px;
    transition: transform 0.4s cubic-bezier(.7,.2,.3,1);
  }
  .btn:hover .arr { transform: translateX(3px) rotate(-45deg); }
  .btn .arr svg { width: 10px; height: 10px; color: #0B0B0B; transition: transform 0.4s; }
  /* Leading icon (calendar-check etc.) */
  .btn .btn-ico { display: inline-grid; place-items: center; width: 18px; height: 18px; margin-right: -4px; transition: transform 0.4s cubic-bezier(.7,.2,.3,1); }
  .btn .btn-ico svg { width: 18px; height: 18px; color: currentColor; }
  .btn:hover .btn-ico { transform: rotate(-6deg) scale(1.08); }
  /* Calendar variant — icon zit IN het bolletje (.arr-cal) i.p.v. los ervoor */
  .btn .arr.arr-cal svg { width: 13px; height: 13px; }
  .btn.btn-cal:hover .arr.arr-cal { transform: translateX(2px) rotate(-4deg); }
  .btn-lime .arr { background: #0B0B0B; }
  .btn-lime .arr svg { color: var(--lime); }
  .btn-lime:hover .arr { background: #0B0B0B; }
  .btn-lime:hover .arr svg { color: var(--text); }

  .burger { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 9999px; background: #0B0B0B; color: #8dbe22; border: 0; }
  @media (min-width: 1024px) { .burger { display: none; } }

  /* ===== TYPOGRAPHY ===== */
  .h-display {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2.4rem, 7vw, 6.25rem);
    line-height: 0.9;
    letter-spacing: -0.02em;
    text-transform: uppercase;
  }
  .h-section {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2.25rem, 5.5vw, 4.5rem);
    line-height: 0.95;
    letter-spacing: -0.015em;
    text-transform: uppercase;
  }
  .h-mid {
    font-family: 'Anton', sans-serif;
    font-size: clamp(1.75rem, 4vw, 3.25rem);
    line-height: 0.95;
    letter-spacing: -0.005em;
    text-transform: uppercase;
  }
  .edo {
    font-family: 'Edo SZ', sans-serif;
    color: #8dbe22;
    text-transform: lowercase;
    display: inline-block;
    transform: rotate(-3deg);
    line-height: 0.85;
  }
  .h-display .edo { font-size: 1.15em; vertical-align: -0.08em; }
  .h-section .edo { font-size: 1.12em; vertical-align: -0.07em; }
  .h-mid .edo { font-size: 1.12em; vertical-align: -0.04em; }
  .eyebrow {
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    font-weight: 600; color: var(--text);
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px 6px 11px; border-radius: 9999px;
    border: 1px solid color-mix(in srgb, currentColor 35%, transparent);
    background: color-mix(in srgb, currentColor 8%, transparent);
  }
  .eyebrow::before { content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex-shrink: 0; }

  /* ===== HERO (CENTERED with playful scatter) ===== */
  .hero {
    padding: 60px 24px 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  @media (min-width: 768px) { .hero { padding: 80px 48px 80px; } }
  /* Vervaagd Kawung-batikpatroon op de hero-achtergrond (zacht uitvloeiend) */
  /* Batik-laag: 45° gedraaid + kleiner getild (oversized zodat hoeken gevuld blijven) */
  .hero::before {
    content: '';
    position: absolute;
    top: -60%; left: -60%; width: 220%; height: 220%;
    background-image: url("../img/batik-bg.jpg");
    background-repeat: repeat;
    background-size: 620px;
    transform: rotate(45deg);
    transform-origin: center;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
  }
  /* Verticale fade-overlay (draait niet mee) — batik vervaagt hoog in de hero */
  .hero::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(11,11,11,0) 0%, rgba(11,11,11,0) 16%, rgba(11,11,11,0.8) 50%, #0B0B0B 72%);
    pointer-events: none;
    z-index: 0;
  }
  .hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
  }
  /* Flankerende uitgesneden productfoto's met lime ster-onderlegger */
  .hero-food {
    position: absolute;
    top: 50%;
    width: clamp(270px, 30vw, 518px);
    z-index: 1;
    pointer-events: none;
  }
  .hero-food img {
    position: relative; z-index: 1;
    width: 100%; height: auto; display: block;
    filter: drop-shadow(0 26px 45px rgba(0,0,0,0.55));
  }
  .hero-food::before {
    content: '';
    position: absolute; z-index: 0;
    top: 50%; left: 50%;
    width: 138%; aspect-ratio: 1;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 16 C54 40 60 46 84 50 C60 54 54 60 50 84 C46 60 40 54 16 50 C40 46 46 40 50 16 Z' fill='%238dbe22'/%3E%3C/svg%3E") no-repeat center / contain;
    transform: translate(-50%, -50%);
  }
  .hero-food-left  { left: -9%;  transform: translateY(-50%) rotate(-4deg); animation: foodInLeft 1.1s cubic-bezier(.2,.75,.25,1) both; }
  .hero-food-right { right: -9%; transform: translateY(-50%) rotate(4deg);  animation: foodInRight 1.1s cubic-bezier(.2,.75,.25,1) 0.12s both; }
  @keyframes foodInLeft  { from { transform: translateY(-50%) rotate(-4deg) translateX(-135%); opacity: 0; } to { transform: translateY(-50%) rotate(-4deg) translateX(0); opacity: 1; } }
  @keyframes foodInRight { from { transform: translateY(-50%) rotate(4deg)  translateX(135%);  opacity: 0; } to { transform: translateY(-50%) rotate(4deg)  translateX(0); opacity: 1; } }
  @media (max-width: 900px) {
    .hero-food { top: auto; bottom: -3%; width: 50vw; }
    .hero-food-left  { left: -12%;  transform: rotate(-5deg); animation-name: foodInLeftM; }
    .hero-food-right { right: -12%; transform: rotate(5deg);  animation-name: foodInRightM; }
    @keyframes foodInLeftM  { from { transform: rotate(-5deg) translateX(-135%); opacity: 0; } to { transform: rotate(-5deg) translateX(0); opacity: 1; } }
    @keyframes foodInRightM { from { transform: rotate(5deg)  translateX(135%);  opacity: 0; } to { transform: rotate(5deg)  translateX(0); opacity: 1; } }
  }
  @media (prefers-reduced-motion: reduce) { .hero-food { animation: none !important; } }
  .hero-content .h-display { text-align: center; }
  .hero-sub { margin: 36px auto 0 !important; text-align: center; max-width: 540px; color: var(--text-muted); font-size: 19px; line-height: 1.55; }
  .hero-ctas { justify-content: center; }
  .hero-eyebrow { display: inline-flex !important; }

  /* Hero showcase — wide banner image, dark-mode native */
  .hero-showcase {
    position: relative;
    margin: 64px auto 0;
    width: 100%;
    max-width: 1200px;
    aspect-ratio: 16/9;
    border-radius: 24px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
  }
  @media (min-width: 768px) { .hero-showcase { aspect-ratio: 21/9; border-radius: 32px; } }
  .hero-showcase img {
    width: 100%; height: 100%; object-fit: cover;
    will-change: transform;
  }
  /* Soft vignette overlay for legibility */
  .hero-showcase::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(11,11,11,0.65) 100%);
    pointer-events: none;
  }
  /* Caption embedded in hero showcase */
  .hero-cap {
    position: absolute; left: 24px; bottom: 24px; right: 24px;
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: 16px; z-index: 2;
    color: var(--text);
  }
  @media (min-width: 768px) { .hero-cap { left: 40px; right: 40px; bottom: 32px; } }
  .hero-cap-tag {
    background: rgba(0,0,0,0.66);
    padding: 8px 14px; border-radius: 9999px;
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
    border: 1px solid rgba(244,235,221,0.2);
  }
  .hero-cap-meta { font-size: 13px; color: var(--text-muted); }
  .hero-cap-meta strong { color: var(--text); }
  /* ===== HERO SCATTER — speelse strooi van gerechten onder de hero tekst ===== */
  .hero-scatter {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: -180px auto 0;
    height: 520px;
    pointer-events: none;
    z-index: 1;
  }
  .hero-content { position: relative; z-index: 3; }
  .hero-scatter .hero-tile, .hero-scatter .hero-chip { pointer-events: auto; }
  @media (max-width: 1023px) {
    .hero-scatter { height: auto; display: flex; gap: 16px; overflow-x: auto; scrollbar-width: none; padding: 16px 24px; margin-top: 56px; -webkit-overflow-scrolling: touch; }
    .hero-scatter::-webkit-scrollbar { display: none; }
  }
  .hero-tile {
    position: absolute;
    border-radius: 22px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: 0 18px 60px rgba(0,0,0,0.45);
    transition: transform 0.5s cubic-bezier(.7,.2,.3,1), box-shadow 0.5s;
    transform: rotate(var(--rot, 0deg));
    will-change: transform;
  }
  @media (max-width: 1023px) {
    .hero-tile { position: static; flex: 0 0 auto; width: 200px; transform: none !important; scroll-snap-align: start; box-shadow: 0 8px 24px rgba(0,0,0,0.3); animation: none !important; }
  }
  .hero-tile:hover { transform: rotate(var(--rot, 0deg)) translateY(-8px) scale(1.03); box-shadow: 0 28px 80px rgba(0,0,0,0.6); z-index: 10; }
  .hero-tile-img { width: 100%; aspect-ratio: 1/1; overflow: hidden; }
  .hero-tile-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.7s; }
  .hero-tile:hover .hero-tile-img img { transform: scale(1.08); }
  .hero-tile-cap {
    position: relative;
    padding: 16px 16px 15px;
    background: var(--surface);
    border-top: 2px solid rgba(141,190,34,0.55);
    font-family: 'Anton', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text);
    text-align: center;
    line-height: 1.05;
    transition: border-color 0.35s, color 0.35s;
  }
  .hero-tile-cap small { display: block; font-family: 'Plus Jakarta Sans', sans-serif; text-transform: none; letter-spacing: 0; font-size: 11px; color: var(--text-dim); margin-top: 5px; font-weight: 500; }
  .hero-tile:hover { border-color: rgba(141,190,34,0.55); }
  .hero-tile:hover .hero-tile-cap { border-top-color: var(--lime); color: #fff; }
  /* Floating chip variant (stat / live status) */
  .hero-chip {
    position: absolute;
    border-radius: 9999px;
    padding: 14px 22px;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: 0 12px 36px rgba(0,0,0,0.35);
    transform: rotate(var(--rot, 0deg));
    transition: transform 0.4s cubic-bezier(.7,.2,.3,1);
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 13px; font-weight: 600; color: var(--text);
    white-space: nowrap;
    will-change: transform;
  }
  @media (max-width: 1023px) {
    .hero-chip { position: static; flex: 0 0 auto; transform: none !important; scroll-snap-align: start; align-self: center; }
  }
  .hero-chip:hover { transform: rotate(var(--rot, 0deg)) translateY(-4px); }
  .hero-chip.is-lime { background: var(--lime); color: #0B0B0B; border-color: transparent; }
  .hero-chip.is-peach { background: var(--peach); color: #0B0B0B; border-color: transparent; }
  .hero-chip .chip-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(141,190,34,0.2); }
  /* Scatter posities — verspreid rond hero-text gebied (desktop) */
  @media (min-width: 1024px) {
    .hero-tile.h-sate     { top: 0;    left: 2%;   width: 260px; --rot: -6deg; }
    .hero-tile.h-soto     { top: 260px; left: 14%; width: 220px; --rot: 4deg; }
    .hero-tile.h-dadar    { top: 10px;  right: 4%; width: 250px; --rot: 5deg; }
    .hero-tile.h-broodje  { top: 280px; right: 14%; width: 230px; --rot: -4deg; }
    .hero-chip.c-live     { bottom: 24px; left: 50%; transform: translateX(-50%) rotate(var(--rot, 0deg)); --rot: 2deg; }
    .hero-chip.c-live:hover { transform: translateX(-50%) rotate(var(--rot, 0deg)) translateY(-4px); }
  }
  /* Subtiele float-animatie */
  @media (min-width: 1024px) {
    @keyframes heroBob { 0%, 100% { translate: 0 0; } 50% { translate: 0 -6px; } }
    .hero-tile, .hero-chip { animation: heroBob 5.5s ease-in-out infinite; }
    .hero-tile.h-soto    { animation-delay: -1.2s; }
    .hero-tile.h-dadar   { animation-delay: -2.4s; }
    .hero-tile.h-broodje { animation-delay: -3.6s; }
    .hero-chip.c-live    { animation-delay: -1.8s; }
  }

  /* Floating product-stat cards over hero showcase */
  .hs-stat {
    position: absolute;
    background: var(--surface);
    color: var(--text);
    border-radius: 20px;
    padding: 14px 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    z-index: 3;
    transition: transform 0.3s ease;
  }
  .hs-stat:hover { transform: translateY(-4px) scale(1.03); }
  .hs-stat .ic {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--lime); color: #0B0B0B;
    display: grid; place-items: center;
    font-weight: 700; flex-shrink: 0;
    font-size: 16px;
  }
  .hs-stat strong { font-size: 16px; line-height: 1; display: block; color: var(--text); }
  .hs-stat .ml { font-size: 11px; color: var(--text-dim); letter-spacing: 0.04em; font-weight: 500; display: block; margin-top: 2px; }
  .hs-stat.tl { top: -8px; left: -8px; }
  .hs-stat.tr { top: 14%; right: -16px; }
  .hs-stat.bl { bottom: 14%; left: -16px; }
  .hs-stat.br { bottom: -8px; right: -8px; }
  @media (max-width: 640px) {
    .hs-stat { padding: 10px 12px; font-size: 12px; }
    .hs-stat.tl, .hs-stat.tr, .hs-stat.bl, .hs-stat.br { top: auto; bottom: auto; left: auto; right: auto; position: static; display: none; }
  }

  /* ===== AANVRAAG-PAGE STYLE EFFECTS toegevoegd ===== */
  /* Interactive chip (zoals form chips) */
  .chip-i {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    border: 1.5px solid rgba(11,11,11,0.2);
    border-radius: 9999px;
    background: transparent;
    font-size: 14px; font-weight: 500;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(.7,.2,.3,1);
    color: #0B0B0B;
  }
  .chip-i:hover { background: #0B0B0B; color: #F4EBDD; border-color: #0B0B0B; transform: translateY(-2px); }
  .chip-i.is-active {
    background: #8dbe22; color: #0B0B0B; border-color: #8dbe22;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(141,190,34,0.35);
  }

  /* Animated progress line (zoals form steps) */
  .progress-line {
    position: relative; height: 3px;
    background: rgba(11,11,11,0.08);
    border-radius: 9999px; overflow: hidden;
  }
  .progress-line > div {
    height: 100%;
    background: linear-gradient(90deg, #8dbe22, #b3e23a);
    width: 0;
    transition: width 0.7s cubic-bezier(.7,.2,.3,1);
    border-radius: 9999px;
  }

  /* Number stepper (zoals form) */
  .num-stepper {
    display: inline-flex; align-items: center; padding: 4px;
    background: #FAF3E8; border-radius: 9999px;
  }
  .num-stepper button {
    width: 36px; height: 36px; border-radius: 50%; border: 0;
    background: transparent; cursor: pointer;
    transition: all 0.2s; font-weight: 600; font-size: 16px;
  }
  .num-stepper button:hover { background: #8dbe22; }
  .num-stepper input {
    width: 60px; text-align: center; border: 0; background: transparent;
    font-family: 'Anton'; font-size: 22px; padding: 0;
  }
  .num-stepper input:focus { outline: none; }

  /* Smooth element slide-in (like form step transition) */
  .slide-in { opacity: 0; transform: translateX(20px); transition: all 0.6s cubic-bezier(.7,.2,.3,1); }
  .slide-in.is-shown { opacity: 1; transform: translateX(0); }

  /* ===== ADVANCED CUSTOM CURSOR (Mr Boost-style) ===== */
  @media (hover: hover) and (pointer: fine) {
    body { cursor: none; }
    a, button, summary, input, .b-chip, .b-pkg-card { cursor: none; }
    #cursorBig {
      position: fixed; top: 0; left: 0;
      width: 30px; height: 30px;
      border: 1.5px solid var(--text);
      border-radius: 50%;
      pointer-events: none; z-index: 9999;
      transform: translate(-50%, -50%);
      transition: width 0.35s cubic-bezier(.7,.2,.3,1), height 0.35s cubic-bezier(.7,.2,.3,1), background 0.3s, border-color 0.3s, color 0.3s, opacity 0.2s;
      mix-blend-mode: difference;
      will-change: transform;
      display: grid; place-items: center;
      font-size: 0;
      color: #0B0B0B;
      font-family: 'Anton', sans-serif;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: normal;
    }
    #cursorDot {
      position: fixed; top: 0; left: 0;
      width: 5px; height: 5px;
      background: var(--lime);
      border-radius: 50%;
      pointer-events: none; z-index: 10000;
      transform: translate(-50%, -50%);
      will-change: transform;
    }
    /* Generic interactive grow */
    .cursor-grow #cursorBig { width: 70px; height: 70px; background: var(--lime); border-color: var(--lime); }
    .cursor-grow #cursorDot { opacity: 0; }
    /* Image cursor — show "VIEW" label */
    .cursor-view #cursorBig {
      width: 90px; height: 90px;
      background: var(--lime); border-color: var(--lime);
      font-size: 12px; mix-blend-mode: normal;
    }
    .cursor-view #cursorBig::before { content: 'VIEW'; }
    .cursor-view #cursorDot { opacity: 0; }
    /* Drag cursor */
    .cursor-drag #cursorBig {
      width: 90px; height: 90px;
      background: var(--text); border-color: var(--text);
      font-size: 11px; mix-blend-mode: normal;
      color: #0B0B0B;
    }
    .cursor-drag #cursorBig::before { content: '◀ DRAG ▶'; }
    .cursor-drag #cursorDot { opacity: 0; }
    /* Plus cursor */
    .cursor-plus #cursorBig {
      width: 70px; height: 70px;
      background: var(--lime); border-color: var(--lime);
      font-size: 30px; mix-blend-mode: normal;
      color: #0B0B0B;
      font-weight: 100;
    }
    .cursor-plus #cursorBig::before { content: '+'; }
    .cursor-plus #cursorDot { opacity: 0; }

  }
  @media (hover: none), (pointer: coarse) { #cursorBig, #cursorDot { display: none; } body { cursor: auto; } }

  /* ===== FULLSCREEN MENU OVERLAY ===== */
  #fullMenu {
    position: fixed; inset: 0; z-index: 100;
    background: #0B0B0B;
    color: var(--text);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s;
  }
  #fullMenu.is-open { pointer-events: auto; opacity: 1; }
  .fm-close {
    position: absolute; top: 24px; right: 24px;
    width: 56px; height: 56px; border-radius: 50%;
    border: 1px solid var(--border-strong);
    background: transparent; color: var(--text);
    display: grid; place-items: center;
    z-index: 110;
  }
  @media (min-width: 768px) { .fm-close { top: 32px; right: 48px; } }
  .fm-grid {
    display: grid; grid-template-columns: 1fr;
    height: 100%;
  }
  @media (min-width: 1024px) { .fm-grid { grid-template-columns: 1fr 1fr; } }
  /* Left: nav links */
  .fm-nav { padding: 100px 32px 48px; display: flex; flex-direction: column; justify-content: center; }
  @media (min-width: 768px) { .fm-nav { padding: 120px 64px 64px; } }
  .fm-eyebrow { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 32px; }
  .fm-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
  .fm-links li { overflow: hidden; }
  .fm-links li a {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 18px 0;
    font-family: 'Anton', sans-serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    line-height: 0.95;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--text);
    transition: color 0.3s, padding-left 0.3s;
    border-bottom: 1px solid var(--border);
    transform: none !important; /* altijd zichtbaar — gsap-reveal mag links niet verbergen (mobiel-fix) */
  }
  .fm-links li a:hover { color: var(--lime); padding-left: 24px; }
  .fm-links li a::after { content: '→'; opacity: 0; transition: opacity 0.3s, transform 0.3s; font-size: 0.6em; }
  .fm-links li a:hover::after { opacity: 1; transform: translateX(8px); }
  .fm-meta {
    margin-top: auto; padding-top: 48px;
    display: grid; gap: 8px;
    font-size: 13px; color: var(--text-muted);
  }
  .fm-meta a:hover { color: var(--lime); }
  .fm-meta strong { color: var(--text); display: block; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 6px; }
  /* Right: image preview */
  .fm-preview {
    position: relative;
    background: #000;
    overflow: hidden;
    display: none;
  }
  @media (min-width: 1024px) { .fm-preview { display: block; } }
  .fm-preview-img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(.7,.2,.3,1);
    will-change: opacity;
  }
  .fm-preview-img.is-active { opacity: 1; }
  .fm-preview::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(11,11,11,0.4) 0%, transparent 50%);
    pointer-events: none;
  }

  /* Horizontal drag-scroll section */
  .pin-scroll {
    position: relative;
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: 32px;
    margin: 80px 24px;
    overflow: hidden;
    padding: 80px 0 40px;
  }
  @media (min-width: 768px) { .pin-scroll { margin: 100px 48px; padding: 100px 0 60px; } }
  .pin-scroll-head { padding: 0 24px 56px; max-width: 1200px; margin: 0 auto; }
  @media (min-width: 768px) { .pin-scroll-head { padding: 0 48px 64px; } }
  .pin-scroll-head h2 { font-family: 'Anton'; font-size: clamp(2rem, 5vw, 4rem); text-transform: uppercase; line-height: 0.95; }
  .pin-scroll-head p { color: var(--text-muted); margin-top: 16px; max-width: 480px; }
  .pin-track-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    padding-bottom: 8px;
  }
  .pin-track-wrap::-webkit-scrollbar { display: none; }
  .pin-track-wrap.is-dragging { cursor: grabbing; }
  .pin-track-wrap.is-dragging .pin-card { pointer-events: none; }
  .pin-track {
    display: inline-flex; gap: 20px; padding: 0 24px;
  }
  @media (min-width: 768px) { .pin-track { padding: 0 48px; gap: 24px; } }
  .pin-card { scroll-snap-align: start; }
  .pin-card {
    flex-shrink: 0; width: 320px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 16px;
    transition: border-color 0.3s;
  }
  @media (min-width: 768px) { .pin-card { width: 380px; } }
  .pin-card:hover { border-color: var(--lime); }
  .pin-card-img {
    aspect-ratio: 4/3;
    border-radius: 14px;
    overflow: hidden;
    background: #2a2520;
    position: relative;
  }
  .pin-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
  .pin-card:hover .pin-card-img img { transform: scale(1.06); }
  .pin-card-num { position: absolute; top: 12px; left: 12px; background: rgba(11,11,11,0.82); color: var(--lime); font-family: 'Anton'; font-size: 12px; letter-spacing: 0.25em; padding: 4px 10px; border-radius: 9999px; }
  .pin-card-body { padding: 16px 8px 4px; }
  .pin-card-name { font-family: 'Anton'; font-size: 22px; text-transform: uppercase; line-height: 1; color: var(--text); }
  .pin-card-meta { font-size: 13px; color: var(--text-muted); margin-top: 6px; }
  .pin-drag-hint { display: flex; justify-content: center; align-items: center; gap: 12px; margin-top: 32px; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-dim); }
  .pin-drag-hint .line { width: 80px; height: 1px; background: var(--border-strong); }

  /* ===== EVENT BUILDER WIDGET ===== */
  .builder {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 32px;
    margin: 80px 24px;
    padding: 40px 28px;
    color: var(--text);
    position: relative;
    overflow: hidden;
  }
  @media (min-width: 768px) { .builder { margin: 100px 48px; padding: 64px 56px; } }
  .builder::before {
    content: ''; position: absolute; inset: -100% -50% auto auto;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(141,190,34,0.08), transparent 60%);
    pointer-events: none;
  }
  .builder-grid {
    display: grid; grid-template-columns: 1fr; gap: 48px;
    position: relative; z-index: 1;
  }
  @media (min-width: 1024px) { .builder-grid { grid-template-columns: 1.4fr 1fr; gap: 64px; } }
  .builder-head .eyebrow { color: var(--lime); margin-bottom: 24px; display: inline-flex; }
  .builder-head h2 { font-family: 'Anton'; font-size: clamp(2rem, 5vw, 4rem); text-transform: uppercase; line-height: 0.95; letter-spacing: -0.01em; color: var(--text); }
  .builder-head .edo { font-family: 'Edo SZ'; color: var(--lime); text-transform: lowercase; }
  .builder-head p { color: var(--text-muted); margin-top: 16px; font-size: 16px; line-height: 1.55; max-width: 480px; }

  /* Builder fields */
  .b-field { margin-top: 32px; }
  .b-label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; color: var(--text-dim); margin-bottom: 12px; }
  .b-chips { display: flex; flex-wrap: wrap; gap: 8px; }
  .b-chip {
    padding: 10px 18px;
    border: 1.5px solid var(--border-strong);
    background: transparent;
    color: var(--text);
    border-radius: 9999px;
    font-size: 14px; font-weight: 500;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(.7,.2,.3,1);
  }
  .b-chip:hover { border-color: var(--text); background: rgba(244,235,221,0.05); }
  .b-chip.is-active { background: var(--lime); color: #0B0B0B; border-color: var(--lime); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(141,190,34,0.35); }

  /* Number stepper for guests */
  .b-stepper {
    display: inline-flex; align-items: center;
    background: rgba(244,235,221,0.06);
    border: 1px solid var(--border-strong);
    border-radius: 9999px; padding: 4px;
  }
  .b-stepper button {
    width: 44px; height: 44px;
    border-radius: 50%; border: 0;
    background: transparent; color: var(--text);
    cursor: pointer; transition: all 0.2s;
    font-size: 18px; font-weight: 600;
  }
  .b-stepper button:hover { background: var(--lime); color: #0B0B0B; }
  .b-stepper input {
    width: 80px; text-align: center;
    border: 0; background: transparent;
    font-family: 'Anton'; font-size: 28px;
    color: var(--text);
  }
  .b-stepper input:focus { outline: none; }
  .b-stepper input::-webkit-outer-spin-button, .b-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

  /* Pakket cards in builder */
  .b-pkg-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(88px, 1fr)); gap: 8px; }
  .b-pkg-card {
    background: rgba(244,235,221,0.04);
    border: 1.5px solid var(--border-strong);
    border-radius: 14px;
    padding: 14px 12px;
    text-align: left;
    cursor: pointer;
    transition: all 0.25s;
  }
  .b-pkg-card:hover { border-color: var(--text); }
  .b-pkg-card.is-active { background: var(--lime); color: #0B0B0B; border-color: var(--lime); transform: translateY(-3px); }
  .b-pkg-card .b-pkg-name { font-family: 'Anton'; font-size: 18px; line-height: 1; text-transform: uppercase; }
  .b-pkg-card .b-pkg-price { font-family: 'Anton'; font-size: 22px; line-height: 1; margin-top: 6px; color: var(--lime); }
  .b-pkg-card.is-active .b-pkg-price { color: #0B0B0B; }
  .b-pkg-card .b-pkg-meta { font-size: 11px; color: var(--text-dim); margin-top: 4px; }
  .b-pkg-card.is-active .b-pkg-meta { color: rgba(11,11,11,0.6); }

  /* Live summary panel */
  .b-summary {
    background: #000;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px 24px;
    position: sticky; top: 100px;
  }
  .b-summary-head { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
  .b-summary h4 { font-family: 'Anton'; font-size: 18px; text-transform: uppercase; letter-spacing: 0.005em; line-height: 1; color: var(--text); margin: 0; }
  .b-summary-sub { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--lime); font-weight: 600; }
  .b-summary dl { margin: 20px 0; display: grid; gap: 14px; }
  .b-summary dt { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim); font-weight: 500; margin-bottom: 2px; }
  .b-summary dd { font-size: 15px; color: var(--text); margin: 0; font-weight: 500; transition: all 0.3s; }
  .b-summary dd.changed { color: var(--lime); transform: translateX(4px); }
  .b-summary-total { padding-top: 20px; border-top: 1px solid var(--border); }
  .b-summary-total .lbl { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 6px; }
  .b-summary-total .amt { font-family: 'Anton'; font-size: 42px; line-height: 0.9; color: var(--lime); transition: all 0.4s cubic-bezier(.7,.2,.3,1); }
  .b-summary-total .per { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
  .b-summary .b-cta { margin-top: 24px; }
  .b-summary .b-cta a {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; padding: 16px 20px;
    background: var(--lime); color: #0B0B0B;
    border-radius: 9999px;
    font-weight: 600; font-size: 14px;
    transition: all 0.25s;
  }
  .b-summary .b-cta a:hover { background: var(--text); }
  .b-summary .b-disclaimer { font-size: 11px; color: var(--text-dim); margin-top: 14px; text-align: center; line-height: 1.5; }

  /* Scroll hint */
  .scroll-hint {
    position: relative;
    margin: 56px auto 0;
    width: fit-content;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(244,235,221,0.6); font-weight: 600;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
  }
  .scroll-hint .line { width: 1px; height: 32px; background: rgba(244,235,221,0.3); animation: scrollLine 1.6s ease-in-out infinite; transform-origin: top; }
  @keyframes scrollLine { 0%, 100% { transform: scaleY(0.3); } 50% { transform: scaleY(1); } }

  /* Floating product badges around hero image (food-delivery style) */
  .hero-badge {
    position: absolute;
    background: #F4EBDD;
    border-radius: 9999px;
    padding: 12px 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(11, 11, 11, 0.08);
    z-index: 2;
  }
  .hero-badge .b-dot { width: 24px; height: 24px; border-radius: 50%; background: #8dbe22; display: grid; place-items: center; color: #0B0B0B; font-weight: 700; flex-shrink: 0; }
  .hero-badge .b-meta { display: block; font-size: 11px; color: rgba(11,11,11,0.5); font-weight: 500; letter-spacing: 0.04em; }
  .hero-badge.top-left { top: 8%; left: -2%; }
  .hero-badge.bottom-right { bottom: 8%; right: -2%; }

  .hero-eyebrow { margin-bottom: 28px; }
  /* Hero title line animation */
  .hero-title-anim { line-height: 0.92; }
  .hero-line {
    display: block;
    overflow: hidden;
    padding-bottom: 0.08em;
  }
  .hero-line > * { display: inline-block; }
  .hero-fade { will-change: transform, opacity; }
  .hero-sub { margin-top: 36px; font-size: 19px; line-height: 1.55; max-width: 480px; color: rgba(244,235,221,0.82); }
  .hero-ctas { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

  /* Hero trust strip */
  .hero-trust { margin-top: 56px; padding-top: 32px; border-top: 1px solid rgba(244,235,221,0.12); display: flex; flex-wrap: wrap; gap: 32px; align-items: center; font-size: 13px; color: rgba(244,235,221,0.6); }
  .hero-trust strong { color: #0B0B0B; }
  .hero-trust .avatars { display: flex; }
  .hero-trust .av { width: 32px; height: 32px; border-radius: 50%; border: 2px solid #F4EBDD; background: #EBBE94; margin-left: -10px; overflow: hidden; }
  .hero-trust .av:first-child { margin-left: 0; }
  .hero-trust .av img { width: 100%; height: 100%; object-fit: cover; }

  /* ===== CATEGORY PILLS (food-delivery filter) ===== */
  .cat-bar {
    background: #FAF3E8;
    padding: 20px 24px;
    border-radius: 9999px;
    max-width: 1300px;
    margin: 0 auto 80px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: space-between;
    align-items: center;
  }
  @media (min-width: 768px) { .cat-bar { padding: 24px 32px; } }
  .cat-bar .cat-label { font-size: 13px; font-weight: 600; color: rgba(11,11,11,0.6); padding: 0 8px; }
  .cat-pills { display: flex; flex-wrap: wrap; gap: 8px; flex: 1; justify-content: flex-end; }
  .cat-pill {
    padding: 10px 18px;
    border-radius: 9999px;
    background: transparent;
    border: 1px solid rgba(11,11,11,0.18);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .cat-pill:hover { background: #0B0B0B; color: #F4EBDD; border-color: #0B0B0B; }
  .cat-pill.active { background: #8dbe22; color: #0B0B0B; border-color: #8dbe22; }
  .cat-pill .ic { width: 16px; height: 16px; }

  /* ===== MARQUEE (dark band) ===== */
  .marquee-band {
    background: #0B0B0B; color: #F4EBDD;
    padding: 24px 0; overflow: hidden;
  }
  .marquee-track {
    display: flex; gap: 0; white-space: nowrap;
    width: max-content; animation: scrollX 36s linear infinite;
  }
  .marquee-track span {
    font-family: 'Anton', sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 2.75rem);
    letter-spacing: 0.005em;
  }
  .marquee-track .star { color: #8dbe22; padding: 0 24px; }
  @keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ===== SECTIONS ===== */
  .sec {
    padding: 100px 24px;
    max-width: 1400px;
    margin: 0 auto;
  }
  @media (min-width: 768px) { .sec { padding: 140px 48px; } }
  .sec-full {
    padding: 100px 0;
  }
  @media (min-width: 768px) { .sec-full { padding: 140px 0; } }
  .sec-inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
  @media (min-width: 768px) { .sec-inner { padding: 0 48px; } }

  /* Section header */
  .sec-head { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 64px; align-items: end; }
  @media (min-width: 1024px) { .sec-head { grid-template-columns: 1.5fr 1fr; gap: 48px; } }

  /* ===== DISH STRIP — sticky GSAP pin (desktop) / native scroll (mobile) ===== */
  .dish-pin { position: relative; }
  .dish-strip-wrap {
    width: 100%;
    overflow: hidden;
    padding-bottom: 8px;
  }
  .dish-strip {
    display: flex;
    gap: 32px;
    padding: 8px 24px 32px;
    width: max-content;
    will-change: transform;
  }
  @media (min-width: 768px) { .dish-strip { gap: 48px; padding: 8px 56px 32px; } }
  /* Mobile/tablet: native horizontal scroll, geen pin */
  @media (max-width: 1023px) {
    .dish-strip-wrap {
      overflow-x: auto;
      overflow-y: hidden;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
      scroll-snap-type: x proximity;
      cursor: grab;
    }
    .dish-strip-wrap.is-dragging { cursor: grabbing; }
    .dish-strip-wrap.is-dragging .dish { pointer-events: none; }
    .dish-strip-wrap::-webkit-scrollbar { display: none; }
  }
  .dish {
    flex: 0 0 240px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.5s cubic-bezier(.7,.2,.3,1);
    scroll-snap-align: start;
  }
  @media (min-width: 768px) { .dish { flex-basis: 280px; } }
  .dish:hover { transform: translateY(-10px); }
  .dish-img {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 24px;
    position: relative;
  }
  .dish-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(.7,.2,.3,1);
  }
  .dish:hover .dish-img img { transform: scale(1.07); }
  .dish-tag {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--text); color: #0B0B0B;
    padding: 5px 12px;
    border-radius: 9999px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
    white-space: nowrap;
  }
  .dish-tag.lime { background: var(--lime); color: #0B0B0B; }
  .dish-tag.peach { background: var(--peach); color: #0B0B0B; }
  .dish-tag.hot { background: #C0392B; color: #fff; }
  /* Name onder de foto — uitgesproken, leesbaar op donker */
  .dish-name {
    font-family: 'Anton', sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.05;
    margin-top: 20px;
    color: var(--text);
  }
  /* Forceer leesbare kleur ook in .block.is-light (warm donkere bg) */
  .block.is-light .dish-name { color: var(--text); }
  /* Drag/scroll hint */
  .dish-hint {
    display: flex; justify-content: center; align-items: center; gap: 14px;
    margin-top: 24px;
    font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
    color: var(--text-dim);
  }
  .dish-hint .line { flex: 0 0 64px; height: 1px; background: currentColor; opacity: 0.5; }

  /* ===== WERK GRID — compact ===== */
  .werk-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 1300px;
    margin: 0 auto;
  }
  @media (min-width: 640px) { .werk-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
  @media (min-width: 1024px) { .werk-grid { grid-template-columns: repeat(6, 1fr); gap: 18px; } }
  .werk-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.4s cubic-bezier(.7,.2,.3,1);
  }
  .werk-card:hover { transform: translateY(-6px); }
  .werk-card-img {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 14px;
    position: relative;
    background: #2a2520;
  }
  .werk-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
  .werk-card:hover .werk-card-img img { transform: scale(1.08); }
  .werk-card-num {
    position: absolute; top: 8px; left: 8px;
    background: rgba(11,11,11,0.85);
    color: var(--lime);
    font-family: 'Anton'; font-size: 9px; letter-spacing: 0.25em;
    padding: 3px 8px; border-radius: 9999px;
  }
  .werk-card-body { padding: 10px 2px 2px; }
  .werk-card-name { font-family: 'Anton'; font-size: 14px; text-transform: uppercase; line-height: 1.05; color: var(--text); letter-spacing: 0.02em; }
  .werk-card-meta { font-size: 11px; color: var(--text-dim); margin-top: 4px; line-height: 1.3; }

  /* ===== (LEGACY) DISH MENU CARDS — niet meer gebruikt, behouden voor andere pagina's ===== */
  .recipe-row {
    display: grid; grid-template-columns: 1fr;
    gap: 20px; overflow-x: auto; scrollbar-width: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 1fr);
    padding-bottom: 16px;
  }
  @media (min-width: 768px) { .recipe-row { grid-template-columns: repeat(4, 1fr); grid-auto-flow: row; gap: 24px; overflow: visible; } }
  .recipe-row::-webkit-scrollbar { display: none; }
  .recipe-card {
    display: block;
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 16px;
    transition: all 0.3s ease;
    position: relative;
  }
  .recipe-card:hover { transform: translateY(-6px); border-color: var(--border-strong); }
  .recipe-img {
    aspect-ratio: 1/1;
    border-radius: 16px;
    overflow: hidden;
    background: #2a2520;
    position: relative;
  }
  .recipe-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
  .recipe-card:hover .recipe-img img { transform: scale(1.06); }
  .recipe-tag {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--text); color: #0B0B0B;
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }
  .recipe-tag.lime { background: var(--lime); color: #0B0B0B; }
  .recipe-body { padding: 16px 8px 8px; }
  .recipe-name { font-family: 'Anton', sans-serif; font-size: 22px; text-transform: uppercase; letter-spacing: 0.01em; line-height: 1.1; color: var(--text); }
  .recipe-meta { font-size: 13px; color: var(--text-muted); margin-top: 8px; line-height: 1.5; min-height: 38px; }
  .recipe-foot {
    margin-top: 18px; padding-top: 14px;
    border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
  }
  .recipe-cta-link { font-size: 13px; font-weight: 600; color: var(--text); }
  .recipe-arrow { font-size: 18px; color: var(--lime); transition: transform 0.25s; }
  .recipe-card:hover .recipe-arrow { transform: translateX(6px); }

  /* ===== PAKKET CARDS ===== */
  .pkg-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
  @media (min-width: 1024px) { .pkg-row { grid-template-columns: 1fr 1fr 1fr; gap: 16px; } }
  @media (min-width: 1024px) { .pkg-row.pkg-row-2 { grid-template-columns: 1fr 1fr; max-width: 760px; } }
  .pkg-group-head { font-family: 'Anton', sans-serif; font-size: clamp(1.1rem, 2.4vw, 1.5rem); text-transform: uppercase; letter-spacing: 0.01em; color: var(--text); margin: 48px 0 18px; }
  .pkg-group-head span { color: var(--peach); font-size: 11px; letter-spacing: 0.22em; display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; margin-bottom: 4px; }
  .pkg {
    position: relative;
    display: flex; flex-direction: column;
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
    border-top: 3px solid rgba(235,190,148,0.55);
    padding: 30px 28px 30px;
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(.7,.2,.3,1), border-color 0.3s, box-shadow 0.45s;
  }
  /* Subtiel Kawung-batik watermerk — night-market menukaart-gevoel */
  .pkg::before {
    content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23EBBE94' stroke-opacity='0.5' stroke-width='1'%3E%3Cellipse cx='20' cy='20' rx='14' ry='7' transform='rotate(-45 20 20)'/%3E%3Cellipse cx='60' cy='20' rx='14' ry='7' transform='rotate(45 60 20)'/%3E%3Cellipse cx='20' cy='60' rx='14' ry='7' transform='rotate(45 20 60)'/%3E%3Cellipse cx='60' cy='60' rx='14' ry='7' transform='rotate(-45 60 60)'/%3E%3Ccircle cx='40' cy='40' r='1.5' fill='%23EBBE94' fill-opacity='0.5' stroke='none'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 88px 88px;
    opacity: 0.06;
    -webkit-mask-image: radial-gradient(120% 70% at 100% 0%, #000 0%, transparent 70%);
    mask-image: radial-gradient(120% 70% at 100% 0%, #000 0%, transparent 70%);
  }
  .pkg > * { position: relative; z-index: 1; }
  .pkg:hover { transform: translateY(-8px); border-color: rgba(141,190,34,0.55); box-shadow: 0 22px 55px rgba(0,0,0,0.5); }
  .pkg.feat { background: var(--lime); color: #0B0B0B; border-color: var(--lime); border-top-color: #0B0B0B; box-shadow: 0 24px 65px rgba(141,190,34,0.25); }
  .pkg.feat::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%230B0B0B' stroke-opacity='0.6' stroke-width='1'%3E%3Cellipse cx='20' cy='20' rx='14' ry='7' transform='rotate(-45 20 20)'/%3E%3Cellipse cx='60' cy='20' rx='14' ry='7' transform='rotate(45 60 20)'/%3E%3Cellipse cx='20' cy='60' rx='14' ry='7' transform='rotate(45 20 60)'/%3E%3Cellipse cx='60' cy='60' rx='14' ry='7' transform='rotate(-45 60 60)'/%3E%3C/g%3E%3C/svg%3E"); opacity: 0.12; }
  @media (min-width: 1024px) { .pkg.feat { transform: translateY(-14px); } .pkg.feat:hover { transform: translateY(-20px); } }
  .pkg.feat:hover { box-shadow: 0 32px 78px rgba(141,190,34,0.34); }
  .pkg-img { display: none; } /* foto's tijdelijk uit */
  @media (min-width: 1024px) { .pkg-img { aspect-ratio: 4/3; margin-bottom: 22px; } }
  .pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(.7,.2,.3,1); }
  .pkg:hover .pkg-img img { transform: scale(1.05); }
  .pkg-eyebrow { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--peach); font-weight: 700; }
  .pkg.feat .pkg-eyebrow { color: rgba(11,11,11,0.7); }
  .pkg-name { font-family: 'Anton', sans-serif; font-size: 38px; text-transform: uppercase; line-height: 0.92; letter-spacing: 0.005em; color: var(--text); margin-top: 4px; }
  .pkg.feat .pkg-name { color: #0B0B0B; }
  .pkg-desc { font-size: 14px; color: var(--text-muted); margin-top: 12px; line-height: 1.5; }
  .pkg.feat .pkg-desc { color: rgba(11,11,11,0.75); }
  .pkg-items-label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; color: var(--text-dim); margin-top: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
  .pkg.feat .pkg-items-label { color: rgba(11,11,11,0.72); border-color: rgba(11,11,11,0.2); }
  .pkg-items { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 10px; }
  .pkg-items li { font-size: 14px; color: var(--text-muted); line-height: 1.3; padding-left: 30px; position: relative; }
  .pkg-items li::before {
    content: '✓'; position: absolute; left: 0; top: 0;
    width: 19px; height: 19px; border-radius: 50%;
    display: grid; place-items: center; font-size: 10px; font-weight: 800;
    background: rgba(235,190,148,0.16); color: var(--peach);
  }
  .pkg-items li.plus { color: var(--text); font-weight: 700; }
  .pkg.feat .pkg-items li { color: rgba(11,11,11,0.82); }
  .pkg.feat .pkg-items li::before { background: rgba(11,11,11,0.12); color: #0B0B0B; }
  .pkg.feat .pkg-items li.plus { color: #0B0B0B; }
  .pkg-price { font-family: 'Anton', sans-serif; font-size: 52px; line-height: 0.82; margin-top: 10px; color: var(--lime); display: inline-block; }
  .pkg.feat .pkg-price { color: #0B0B0B; }
  .pkg-price small { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-dim); font-weight: 600; font-family: 'Plus Jakarta Sans'; display: block; margin-top: 8px; }
  .pkg.feat .pkg-price small { color: rgba(11,11,11,0.72); }
  .pkg-cta { margin-top: auto; padding-top: 22px; border-top: 1px solid var(--border); }
  .pkg.feat .pkg-cta { border-color: rgba(11,11,11,0.2); }
  .pkg-cta a { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; color: var(--text); }
  .pkg.feat .pkg-cta a { color: #0B0B0B; }
  .pkg-cta .arr-simple { transition: transform 0.25s; color: var(--peach); }
  .pkg.feat .pkg-cta .arr-simple { color: #0B0B0B; }
  .pkg-cta a:hover .arr-simple { transform: translateX(5px); }
  /* "Populair" als market-stempel (Edo brush, gekanteld) */
  .pkg-ribbon {
    position: absolute; top: 14px; right: 16px; z-index: 3;
    font-family: 'Edo SZ', sans-serif; text-transform: lowercase;
    font-size: 30px; line-height: 1; color: #0B0B0B;
    transform: rotate(-6deg); pointer-events: none;
    text-shadow: 0 1px 0 rgba(255,255,255,0.25);
  }

  /* ===== LIFESTYLE ===== */
  .lifestyle {
    background: var(--bg-warm); color: var(--text);
    padding: 120px 24px;
  }
  @media (min-width: 768px) { .lifestyle { padding: 160px 48px; } }
  .lifestyle-grid {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr; gap: 48px;
  }
  @media (min-width: 1024px) { .lifestyle-grid { grid-template-columns: 1fr 1.2fr; gap: 100px; align-items: center; } }
  .lifestyle-img {
    aspect-ratio: 4/5; border-radius: 4px; overflow: hidden;
    background: #EBBE94;
  }
  .lifestyle-img img { width: 100%; height: 100%; object-fit: cover; }
  .lifestyle .eyebrow { color: var(--lime); }
  .lifestyle .eyebrow::before { background: var(--lime); }
  .lifestyle h2 { color: var(--text); }
  .lifestyle p { color: var(--text-muted); }
  .lifestyle h4 { color: var(--text); }
  .lifestyle .lifestyle-img { background: var(--peach); }

  /* ===== MISSION ===== */
  .mission { background: var(--peach); color: #0B0B0B; padding: 120px 24px; }
  .mission .edo { color: #0B0B0B; }
  .mission .eyebrow, .mission h2 { color: #0B0B0B; }
  @media (min-width: 768px) { .mission { padding: 160px 48px; } }
  .mission-inner { max-width: 1400px; margin: 0 auto; }
  .mission-quote {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.1; letter-spacing: -0.01em;
    text-transform: uppercase;
  }
  .mission-quote em { font-family: 'Edo SZ'; font-style: normal; color: #0B0B0B; text-transform: lowercase; font-size: 1.05em; }
  .mission-attr { margin-top: 40px; display: flex; gap: 20px; align-items: center; }
  .mission-attr-img { width: 60px; height: 60px; border-radius: 9999px; overflow: hidden; background: #0B0B0B; }
  .mission-attr-img img { width: 100%; height: 100%; object-fit: cover; }
  .mission-attr-name { font-family: 'Anton'; font-size: 16px; text-transform: uppercase; letter-spacing: 0.05em; }
  .mission-attr-title { font-size: 13px; color: rgba(11,11,11,0.65); margin-top: 2px; }
  .mission h2 .accent-grey { color: rgba(11,11,11,0.4); }

  /* ===== NUMBERS ===== */
  .numbers-row {
    display: grid; grid-template-columns: 1fr;
    gap: 48px;
  }
  @media (min-width: 768px) {
    .numbers-row { grid-template-columns: 1fr 1fr 1fr; gap: 0; }
    .numbers-row > div + div { border-left: 1px solid var(--border); padding-left: 32px; }
  }
  .num-big { font-family: 'Anton', sans-serif; font-size: clamp(5rem, 14vw, 11rem); line-height: 0.85; letter-spacing: -0.03em; color: var(--lime); }
  .num-label { font-family: 'Anton'; font-size: 13px; text-transform: uppercase; letter-spacing: 0.22em; margin-top: 16px; color: var(--text-muted); }
  .num-sub { font-size: 14px; color: var(--text-muted); margin-top: 8px; max-width: 300px; line-height: 1.5; }

  /* ===== FAQ ===== */
  .faq-list { max-width: 900px; margin: 0 auto; }
  .faq-item { border-top: 1px solid var(--border); padding: 28px 0; }
  .faq-item:last-child { border-bottom: 1px solid var(--border); }
  .faq-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-q { font-family: 'Anton'; font-size: clamp(1.25rem, 2.5vw, 1.75rem); text-transform: uppercase; letter-spacing: 0.005em; line-height: 1.1; transition: color 0.3s; color: var(--text); }
  .faq-item[open] .faq-q { color: var(--lime); }
  .faq-plus {
    width: 40px; height: 40px; border-radius: 9999px;
    border: 1px solid var(--border-strong);
    display: grid; place-items: center;
    flex-shrink: 0; transition: all 0.3s;
    color: var(--text);
  }
  .faq-item[open] .faq-plus { background: var(--lime); border-color: var(--lime); color: #0B0B0B; }
  .faq-a {
    display: grid; grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(.7,.2,.3,1);
  }
  .faq-item[open] .faq-a { grid-template-rows: 1fr; }
  .faq-a > div { overflow: hidden; }
  .faq-a-body { padding-top: 20px; color: var(--text-muted); font-size: 16px; line-height: 1.6; max-width: 720px; }

  /* ===== STILL QUESTIONS / CONTACT BLOCK ===== */
  .contact-block {
    background: var(--surface);
    color: var(--text);
    padding: 80px 24px;
    border-radius: 32px;
    margin-top: 80px;
    text-align: center;
  }

  /* ===== HOW IT WORKS — step cards ===== */
  .steps-section { background: var(--bg-warm); padding: 100px 24px; border-radius: 32px; margin: 80px 24px; }
  @media (min-width: 768px) { .steps-section { margin: 120px 48px; padding: 140px 64px; } }
  .steps-head { max-width: 1400px; margin: 0 auto 56px; text-align: center; }
  .steps-head h2 { color: var(--text); }
  .steps-head p { color: var(--text-muted); }
  .steps-grid { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 1400px; margin: 0 auto; }
  @media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
  .step-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 28px 24px 24px;
    border-radius: 24px;
    position: relative;
    transition: all 0.3s;
  }
  .step-card:hover { transform: translateY(-4px); border-color: var(--lime); }
  .step-card .step-ic {
    width: 56px; height: 56px;
    background: var(--lime); color: #0B0B0B;
    border-radius: 50%;
    display: grid; place-items: center;
    font-family: 'Anton'; font-size: 22px; line-height: 1;
    margin-bottom: 20px;
  }
  .step-card h3 { font-family: 'Anton'; font-size: 22px; text-transform: uppercase; line-height: 1; letter-spacing: 0.005em; color: var(--text); }
  .step-card p { font-size: 14px; color: var(--text-muted); margin-top: 10px; line-height: 1.5; }
  .step-card .step-when { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--lime); margin-top: 16px; font-weight: 600; }

  /* ===== SPECIAL OFFER BANNER ===== */
  .offer-banner {
    background: #8dbe22;
    border-radius: 32px;
    padding: 56px 32px;
    margin: 80px 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  @media (min-width: 768px) { .offer-banner { grid-template-columns: 1.5fr 1fr; padding: 80px; margin: 100px 48px; } }
  .offer-banner h3 { font-family: 'Anton'; font-size: clamp(2rem, 5vw, 4rem); text-transform: uppercase; line-height: 0.95; letter-spacing: -0.01em; }
  .offer-banner p { font-size: 17px; margin-top: 20px; color: rgba(11,11,11,0.8); max-width: 480px; }
  .offer-banner h3 { color: #0B0B0B; }
  .offer-img { aspect-ratio: 4/3; background: #F4EBDD; border-radius: 24px; overflow: hidden; }
  .offer-img img { width: 100%; height: 100%; object-fit: cover; }
  .offer-tag {
    display: inline-block;
    background: #0B0B0B; color: #8dbe22;
    padding: 6px 14px; border-radius: 9999px;
    font-family: 'Anton'; font-size: 12px; letter-spacing: 0.2em;
    text-transform: uppercase; margin-bottom: 20px;
  }

  /* ===== UNIFORM SECTION BLOCK ===== */
  .block {
    padding: 80px 24px;
    overflow: hidden;
    position: relative;
  }
  @media (min-width: 768px) { .block { padding: 104px 48px; } }
  .block.is-light { }
  .block.is-lime { background: var(--lime); color: #0B0B0B; }
  .block.is-peach { background: var(--peach); color: #0B0B0B; }
  .block.is-dark { background: #000; }
  .block-head { max-width: 1400px; margin: 0 auto; }
  .block-head .eyebrow { color: var(--lime); margin-bottom: 24px; display: inline-flex; }
  .block.is-lime .block-head .eyebrow { color: #0B0B0B; }
  .block-title {
    font-family: 'Anton'; font-size: clamp(2.25rem, 5.5vw, 4.5rem);
    line-height: 0.95; letter-spacing: -0.015em;
    text-transform: uppercase; margin: 0;
    color: var(--text);
  }
  .block.is-lime .block-title, .block.is-peach .block-title { color: #0B0B0B; }
  .block-sub { font-size: 17px; line-height: 1.55; color: var(--text-muted); margin-top: 20px; max-width: 520px; }
  .block.is-lime .block-sub, .block.is-peach .block-sub { color: rgba(11,11,11,0.75); }
  .block-content { max-width: 1400px; margin: 56px auto 0; }

  /* ===== STANDPLAATSEN / FOODTRUCK SCHEDULE ===== */
  .standplaatsen { padding: 100px 24px; max-width: 1400px; margin: 0 auto; }
  @media (min-width: 768px) { .standplaatsen { padding: 140px 48px; } }
  .standplaatsen-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }
  @media (min-width: 1024px) { .standplaatsen-grid { grid-template-columns: 1.2fr 1.4fr; gap: 80px; } }
  .schedule-list { display: grid; gap: 4px; margin-top: 32px; }
  .schedule-row {
    display: grid; grid-template-columns: 96px 1fr 40px;
    align-items: center; column-gap: 14px; row-gap: 2px;
    padding: 20px 16px;
    border-bottom: 1px solid var(--border);
    transition: padding-left 0.3s, background 0.3s;
  }
  .schedule-row .schedule-time { grid-column: 1 / 2; grid-row: 2; }
  .schedule-row:hover { padding-left: 28px; }
  /* Ruimer rooster op tablet/desktop — meer lucht tussen dag, tijd en locatie */
  @media (min-width: 768px) {
    .schedule-row { grid-template-columns: 170px 160px 1fr 40px; column-gap: 36px; row-gap: 0; padding: 30px 28px; }
    .schedule-row .schedule-time { grid-column: 2; grid-row: 1; }
    .schedule-row:hover { padding-left: 40px; }
    .schedule-list { gap: 8px; }
    .schedule-day { font-size: 24px; }
    .schedule-time { font-size: 17px; }
    .schedule-location { font-size: 18px; }
    .schedule-location small { font-size: 13px; margin-top: 4px; }
  }
  .schedule-row.is-open { background: linear-gradient(90deg, rgba(141,190,34,0.06), transparent); }
  .schedule-row.is-active { background: linear-gradient(90deg, rgba(141,190,34,0.14), transparent); }
  .schedule-row.is-active .schedule-day { color: var(--lime); }
  .schedule-day { font-family: 'Anton'; font-size: 18px; text-transform: uppercase; letter-spacing: 0.02em; color: var(--text); }
  .schedule-time { font-size: 14px; color: var(--text-muted); font-weight: 500; }
  .schedule-location { font-size: 15px; color: var(--text); }
  .schedule-location small { color: var(--text-dim); display: block; font-size: 12px; margin-top: 2px; }
  .schedule-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--text-dim); justify-self: end; transition: all 0.3s; }
  .schedule-row.is-open .schedule-dot { background: var(--lime); box-shadow: 0 0 0 4px rgba(141,190,34,0.2); }
  .standplaatsen-map {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 24px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
  }
  @media (min-width: 768px) { .standplaatsen-map { aspect-ratio: 4/5; } }
  /* Desktop: bovenkant afbeelding uitlijnen met bovenkant heading (offset = eyebrow-hoogte) */
  @media (min-width: 1024px) { .standplaatsen-map { margin-top: 50px; } }
  .standplaatsen-map img {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(.7,.2,.3,1);
  }
  .standplaatsen-map:hover img { transform: scale(1.05); }
  .standplaatsen-map::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(11,11,11,0.85) 100%);
    pointer-events: none;
  }
  .map-caption {
    position: absolute;
    left: 24px; right: 24px; bottom: 24px;
    color: var(--text);
    z-index: 2;
  }
  .map-caption .map-tag {
    display: inline-block;
    background: var(--lime); color: #0B0B0B;
    padding: 6px 12px; border-radius: 9999px;
    font-family: 'Anton'; font-size: 11px; letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .map-caption h3 {
    font-family: 'Anton'; font-size: 28px;
    text-transform: uppercase; line-height: 1;
    margin: 0;
  }
  .map-caption p { font-size: 14px; color: var(--text-muted); margin-top: 8px; line-height: 1.5; }
  .map-caption .pulse-dot {
    display: inline-block;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--lime);
    margin-right: 8px; vertical-align: middle;
    animation: pulse-loc 1.8s ease-in-out infinite;
  }
  @keyframes pulse-loc {
    0%, 100% { box-shadow: 0 0 0 0 rgba(141,190,34,0.6); }
    50% { box-shadow: 0 0 0 8px rgba(141,190,34,0); }
  }

  /* ===== STORY SECTION ===== */
  .story { padding: 100px 24px; max-width: 1400px; margin: 0 auto; }
  @media (min-width: 768px) { .story { padding: 140px 48px; } }
  .story-grid { display: grid; grid-template-columns: 1fr; gap: 64px; align-items: center; }
  @media (min-width: 1024px) { .story-grid { grid-template-columns: 1fr 1.2fr; gap: 100px; } }
  .story-stage { position: relative; }
  .story-img-wrap { aspect-ratio: 4/5; border-radius: 24px; overflow: hidden; background: var(--surface); position: relative; }
  .story-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s; }
  .story-img-wrap:hover img { transform: scale(1.05); }
  .story-badge {
    position: absolute;
    background: var(--peach); color: #0B0B0B;
    padding: 16px 22px;
    border-radius: 16px;
    font-family: 'Anton';
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1.1;
    letter-spacing: 0.02em;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  }
  .story-badge strong { display: block; font-size: 28px; line-height: 1; margin-bottom: 4px; }
  .story-badge.tl { top: -16px; left: -16px; transform: rotate(-4deg); }
  .story-badge.br { bottom: -16px; right: -16px; transform: rotate(3deg); }
  @media (max-width: 640px) { .story-badge { font-size: 12px; padding: 12px 16px; } .story-badge strong { font-size: 22px; } }

  .story-quotes { display: grid; gap: 16px; margin-top: 40px; }
  .story-quote {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 22px;
    display: flex; gap: 14px; align-items: flex-start;
  }
  .story-quote-num {
    font-family: 'Anton';
    color: var(--lime);
    font-size: 18px;
    letter-spacing: 0.05em;
    flex-shrink: 0;
  }
  .story-quote p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--text-muted); }
  .story-quote p strong { color: var(--text); }

  /* ===== REAL REVIEWS ===== */
  .reviews { padding: 100px 24px; max-width: 1400px; margin: 0 auto; }
  @media (min-width: 768px) { .reviews { padding: 140px 48px; } }
  .reviews-head { text-align: center; margin-bottom: 64px; }
  .reviews-head h2 { font-family: 'Anton'; font-size: clamp(2.5rem, 7vw, 6rem); text-transform: uppercase; line-height: 0.92; letter-spacing: -0.015em; }
  .reviews-head p { color: var(--text-muted); margin-top: 16px; max-width: 500px; margin-left: auto; margin-right: auto; }
  .reviews-grid {
    display: grid; grid-template-columns: 1fr; gap: 24px;
  }
  @media (min-width: 768px) { .reviews-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
  .review-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.3s;
  }
  .review-card:hover { border-color: var(--lime); transform: translateY(-4px); }
  .review-stars { color: var(--lime); font-size: 16px; letter-spacing: 0.1em; margin-bottom: 16px; }
  .review-card p { font-size: 16px; line-height: 1.55; color: var(--text); }
  .review-card .review-foot { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 14px; }
  .review-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--peach); color: #0B0B0B; display: grid; place-items: center; font-family: 'Anton'; font-size: 16px; flex-shrink: 0; }
  .review-name { font-weight: 600; font-size: 15px; color: var(--text); }
  .review-source { font-size: 12px; color: var(--text-dim); margin-top: 2px; }

  /* Round corners on lifestyle/mission for cohesion */
  .lifestyle { border-radius: 32px; margin: 80px 24px; }
  @media (min-width: 768px) { .lifestyle { margin: 100px 48px; } }
  .mission { border-radius: 32px; margin: 80px 24px; }
  @media (min-width: 768px) { .mission { margin: 100px 48px; } }
  .locator { border-radius: 32px; margin: 80px 24px; }
  @media (min-width: 768px) { .locator { margin: 100px 48px; } }
  .promo { border-radius: 32px; margin: 80px 24px; }
  @media (min-width: 768px) { .promo { margin: 100px 48px; } }
  .contact-block h3 { font-family: 'Anton'; font-size: clamp(2rem, 5vw, 4rem); text-transform: uppercase; line-height: 0.95; }
  .contact-block p { margin-top: 20px; max-width: 480px; margin-left: auto; margin-right: auto; color: rgba(244,235,221,0.78); }

  /* ===== LOCATOR ===== */
  .locator {
    background: var(--lime); color: #0B0B0B;
    padding: 120px 24px;
    text-align: center;
  }
  @media (min-width: 768px) { .locator { padding: 160px 48px; } }
  .locator h2 { font-family: 'Anton'; font-size: clamp(2.5rem, 7vw, 6rem); text-transform: uppercase; line-height: 0.92; letter-spacing: -0.015em; color: #0B0B0B; }
  .locator p { margin-top: 24px; font-size: 18px; max-width: 540px; margin-left: auto; margin-right: auto; color: rgba(11,11,11,0.85); }
  .locator-pills { margin-top: 48px; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; max-width: 720px; margin-left: auto; margin-right: auto; }
  .locator-pill { padding: 8px 16px; border: 1.5px solid #0B0B0B; border-radius: 9999px; font-size: 13px; font-weight: 500; background: transparent; transition: all 0.2s; color: #0B0B0B; }
  .locator-pill:hover { background: #0B0B0B; color: var(--lime); }

  /* ===== NEWSLETTER / FOOTER PROMO ===== */
  .promo {
    background: var(--bg-warm); color: var(--text);
    border: 1px solid var(--border);
    padding: 80px 24px;
  }
  @media (min-width: 768px) { .promo { padding: 100px 48px; } }
  .promo-inner { max-width: 900px; margin: 0 auto; text-align: center; }
  .promo h3 { font-family: 'Anton'; font-size: clamp(1.75rem, 4vw, 3rem); text-transform: uppercase; line-height: 1; color: var(--text); }
  .promo p { color: var(--text-muted); margin-top: 16px; }
  .promo-form { margin-top: 32px; display: flex; gap: 8px; max-width: 520px; margin-left: auto; margin-right: auto; flex-wrap: wrap; }
  .promo-form input { flex: 1; min-width: 240px; padding: 16px 24px; border: 1px solid var(--border-strong); background: transparent; color: var(--text); border-radius: 9999px; font-family: inherit; font-size: 15px; }
  .promo-form input::placeholder { color: var(--text-dim); }
  .promo-form input:focus { outline: none; border-color: var(--lime); }

  /* ===== FOOTER ===== */
  .footer {
    background: #000;
    color: var(--text);
    padding: 60px 24px 24px;
    border-top: 1px solid var(--border);
  }
  @media (min-width: 768px) { .footer { padding: 80px 48px 32px; } }
  .footer-in { max-width: 1400px; margin: 0 auto; }
  .footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
  @media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; } }
  .footer-grid h4 { font-family: 'Anton'; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 16px; color: var(--text-dim); }
  .footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 14px; color: var(--text-muted); }
  .footer-grid ul a:hover { color: var(--lime); }
  .footer-mega { font-family: 'Anton', sans-serif; text-transform: uppercase; font-size: clamp(3.5rem, 16vw, 16rem); line-height: 0.82; letter-spacing: -0.02em; color: var(--text); text-align: center; margin-top: 56px; overflow: hidden; white-space: nowrap; user-select: none; }
  .footer-mega .dot { color: var(--lime); }
  .footer-meta { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; color: var(--text-dim); }

  /* Reveal — alleen verbergen als JS draait; zonder JS staat alles gewoon zichtbaar */
  /* verbergregel uitgeschakeld: content mag nooit achter een animatie verdwijnen */
  @media (prefers-reduced-motion: reduce) { .js .r-up { opacity: 1; transform: none; } }

  /* ===== VIDEO FEATURE (achter de schermen) ===== */
  .video-feature { padding: 80px 24px; }
  @media (min-width: 768px) { .video-feature { padding: 104px 48px; } }
  .video-feature-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
  @media (min-width: 900px) { .video-feature-grid { grid-template-columns: 340px 1fr; gap: 64px; } }
  .video-feature-media { position: relative; width: 100%; max-width: 340px; margin: 0 auto; aspect-ratio: 9 / 16; border-radius: 24px; overflow: hidden; background: #0B0B0B; border: 1px solid var(--border); box-shadow: 0 28px 70px rgba(0,0,0,0.55); }
  .video-feature-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
  .video-tag { position: absolute; top: 14px; left: 14px; display: inline-flex; align-items: center; gap: 8px; background: rgba(11,11,11,0.72); color: #fff; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; padding: 7px 13px; border-radius: 9999px; }
  .video-feature-text .vf-sub { font-size: 17px; line-height: 1.6; color: var(--text-muted); margin-top: 20px; max-width: 520px; }
  .vf-ctas { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }

  .vf-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; max-width: 540px; border-top: 1px solid var(--border); padding-top: 26px; }
  .vf-stat { display: flex; flex-direction: column; gap: 5px; }
  .vf-stat-num { font-family: 'Anton', sans-serif; font-size: clamp(1.4rem, 2.6vw, 2.1rem); line-height: 0.9; color: var(--lime); text-transform: uppercase; letter-spacing: 0.005em; }
  .vf-stat-lbl { font-size: 12px; color: var(--text-dim); letter-spacing: 0.03em; line-height: 1.3; }
  @media (max-width: 560px) { .vf-stats { grid-template-columns: 1fr 1fr; gap: 18px 16px; } }

  /* ===== STORY / VERHAAL (cohesief editorial) ===== */
  .story-media { aspect-ratio: 4/5; border-radius: 24px; overflow: hidden; background: var(--surface); box-shadow: 0 24px 60px rgba(0,0,0,0.45); }
  .story-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(.7,.2,.3,1); }
  .story-media:hover img { transform: scale(1.05); }
  .story-body { align-self: center; }
  .story-body .eyebrow { color: var(--lime); margin-bottom: 16px; }
  .story-body h2 { margin-top: 6px; }
  .story-lead { font-size: clamp(18px, 2.2vw, 23px); line-height: 1.5; color: var(--text); margin-top: 22px; }
  .story-text { font-size: 16px; line-height: 1.7; color: var(--text-muted); margin-top: 18px; max-width: 560px; }

  /* ============================================================
     CRAFT-LAAG — typografie, cijfers, klikdoelen, beweging
     ============================================================ */

  /* Koppen breken op gelijke regellengte; lopende tekst laat geen los woord achter */
  h1, h2, h3, .block-title, .pkg-name, .b-pkg-name, .hero-title { text-wrap: balance; }
  p, .block-sub, .num-sub, .pkg-items li { text-wrap: pretty; }

  /* Cijfers houden hun breedte: het configurator-totaal springt niet meer per klik */
  .num-big, .pkg-price, .b-pkg-price, .step-ic, .ls-time,
  #bsTotal, .b-total, .b-sum-val, input[type="number"] { font-variant-numeric: tabular-nums; }

  /* Klikdoelen: 44px op touch, zonder de lay-out te verschuiven */
  .pkg-cta a { min-height: 44px; }
  @media (pointer: coarse) {
    .footer-grid ul { gap: 26px; }
    .footer-grid ul a, .fm-meta a, .util-bar .hide-sm a { position: relative; display: inline-block; }
    .footer-grid ul a::after, .fm-meta a::after, .util-bar .hide-sm a::after {
      content: ''; position: absolute; left: 0; right: 0; top: 50%;
      height: 44px; transform: translateY(-50%);
    }
    .live-status { min-height: 44px; }
  }

  /* Minder beweging: alles wat schuift of pulseert valt terug op een rustige weergave */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
    .marquee-track { animation: none !important; transform: none !important; }
    #cursor, #cursorDot, #cursorBig { display: none !important; }
    body, a, button, summary, input { cursor: auto !important; }
  }


  /* ===== Reveal-laag (zie assets/js/reveal.js) =====
     De beweging zit in CSS in plaats van in GSAP, zodat een hapering in een
     animatiebibliotheek nooit tekst kan verbergen. */
  .js .r-up { opacity: 1; transform: none; transition: opacity 0.6s ease, transform 0.6s ease; }
  .js .r-up.mf-zichtbaar { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) {
    .js .r-up { opacity: 1; transform: none; transition: none; }
  }

/* Schermvullend menu: dekking hard afdwingen.
   De bestaande regel #fullMenu.is-open won het op deze installatie niet van
   de basisregel, waardoor het menu wel klikbaar werd maar onzichtbaar bleef. */
#fullMenu.is-open { opacity: 1 !important; pointer-events: auto !important; }
#fullMenu.is-open .fm-links li a { transform: none !important; opacity: 1 !important; }
#fullMenu.is-open { background: #0B0B0B !important; }
