:root{
    --ink:#0F231C;
    --forest:#173B2C;
    --forest-deep:#0C2119;
    --cream:#F6F1E4;
    --cream-dim:#E9E1CC;
    --brass:#C6A24D;
    --brass-bright:#E0BE6F;
    --line: rgba(246,241,228,0.14);
    --max: 1180px;
  }

  *{ box-sizing:border-box; margin:0; padding:0; }
  html{ scroll-behavior:smooth; }
  body{
    background:var(--forest-deep);
    color:var(--cream);
    font-family:'Inter', sans-serif;
    font-size:16px;
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  img,svg{ display:block; max-width:100%; }
  a{ color:inherit; text-decoration:none; }
  ul{ list-style:none; }
  button{ font-family:inherit; cursor:pointer; border:none; background:none; }

  .wrap{ max-width:var(--max); margin:0 auto; padding:0 32px; }
  .eyebrow{
    font-family:'IBM Plex Mono', monospace;
    font-size:12px;
    letter-spacing:0.16em;
    text-transform:uppercase;
    color:var(--brass-bright);
  }
  h1,h2,h3{ font-family:'Fraunces', serif; font-weight:600; letter-spacing:-0.01em; }
  .reveal{ opacity:0; transform:translateY(22px); transition:opacity 0.8s ease, transform 0.8s ease; }
  .reveal.in{ opacity:1; transform:translateY(0); }
  @media (prefers-reduced-motion: reduce){
    .reveal{ opacity:1; transform:none; transition:none; }
    html{ scroll-behavior:auto; }
  }

  /* ---------- NAV ---------- */
  header{
    position:fixed; top:0; left:0; right:0; z-index:100;
    padding:20px 0;
    transition:background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
    border-bottom:1px solid transparent;
  }
  header.scrolled{
    background:rgba(12,33,25,0.88);
    backdrop-filter:blur(10px);
    padding:14px 0;
    border-bottom:1px solid var(--line);
  }
  nav{ display:flex; align-items:center; justify-content:space-between; gap:24px; }
  .logo{
    font-family:'Fraunces', serif; font-weight:600; font-size:19px;
    letter-spacing:0.01em; display:flex; align-items:center; gap:10px; flex-shrink:0;
  }
  .logo .mark{
    width:32px; height:32px; object-fit:contain; display:block; flex-shrink:0;
  }
  .nav-links{ display:flex; gap:28px; font-size:14px; font-weight:500; }
  .nav-links a{ opacity:0.82; transition:opacity 0.2s ease; white-space:nowrap; }
  .nav-links a:hover{ opacity:1; }

  /* "Info" dropdown — groups Hoe werkt het / Prijzen / Over / Contact under
     one trigger. Opens on hover (desktop) or focus (keyboard tab), and also
     supports a click-toggle via JS for touch devices, which don't have
     hover at all. */
  .nav-dropdown{ position:relative; list-style:none; }
  .nav-dropdown-trigger{
    display:flex; align-items:center; gap:5px; background:none; border:none;
    font-family:inherit; font-size:14px; font-weight:500; color:var(--cream);
    opacity:0.82; cursor:pointer; padding:4px 0; transition:opacity 0.2s ease;
  }
  .nav-dropdown-trigger:hover{ opacity:1; }
  .nav-dropdown-chevron{ width:13px; height:13px; transition:transform 0.2s ease; }
  .nav-dropdown:hover .nav-dropdown-chevron,
  .nav-dropdown:focus-within .nav-dropdown-chevron,
  .nav-dropdown.open .nav-dropdown-chevron{ transform:rotate(180deg); }

  .nav-dropdown-menu{
    position:absolute; top:100%; left:50%; margin-top:14px;
    transform:translateX(-50%) translateY(4px);
    min-width:190px; padding:8px; background:var(--forest-deep);
    border:1px solid var(--line); border-radius:6px;
    box-shadow:0 20px 40px -14px rgba(0,0,0,0.55);
    opacity:0; visibility:hidden; pointer-events:none;
    transition:opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    z-index:10;
  }
  /* Invisible bridge so moving the mouse from trigger down to the menu
     doesn't lose hover in the gap between them. */
  .nav-dropdown-menu::before{ content:""; position:absolute; left:0; right:0; top:-14px; height:14px; }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu,
  .nav-dropdown.open .nav-dropdown-menu{
    opacity:1; visibility:visible; pointer-events:auto; transform:translateX(-50%) translateY(0);
  }
  .nav-dropdown-menu li{ list-style:none; }
  .nav-dropdown-menu a{
    display:block; padding:9px 12px; border-radius:4px; font-size:13.5px;
    color:var(--cream-dim); opacity:1; white-space:nowrap;
    transition:background 0.15s ease, color 0.15s ease;
  }
  .nav-dropdown-menu a:hover{ background:rgba(198,162,77,0.12); color:var(--brass-bright); }

  .nav-utils{ display:flex; align-items:center; gap:6px; flex-shrink:0; }
  .nav-cta{
    padding:10px 20px; border:1px solid var(--brass); border-radius:2px;
    font-size:13px; font-weight:600; letter-spacing:0.02em; color:var(--brass-bright);
    transition:background 0.2s ease, color 0.2s ease; white-space:nowrap; flex-shrink:0;
  }
  .nav-cta:hover{ background:var(--brass); color:var(--forest-deep); }
  /* Icon-only now (same treatment as .nav-cart below) — the word "Helpdesk"
     was one more block of text competing for room in an already busy row;
     the icon plus aria-label/tooltip carries the same meaning in less space. */
  .nav-help{
    display:flex; align-items:center; justify-content:center; width:40px; height:40px;
    border-radius:50%; color:var(--cream-dim); border:1px solid transparent;
    transition:color 0.2s ease, border-color 0.2s ease; flex-shrink:0;
  }
  .nav-help svg{ width:21px; height:21px; flex-shrink:0; }
  .nav-help:hover{ color:var(--brass-bright); border-color:var(--line); }
  .nav-toggle{ display:none; flex-direction:column; gap:5px; width:26px; flex-shrink:0; }
  .nav-toggle span{ height:2px; background:var(--cream); border-radius:2px; }
  .mobile-menu{
    display:none; flex-direction:column; gap:0; background:var(--forest-deep);
    border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  }
  .mobile-menu a{ padding:16px 32px; border-bottom:1px solid var(--line); font-size:15px; }
  .mobile-menu.open{ display:flex; }

  /* The nav used to only switch to the mobile hamburger menu at 760px — with
     6 nav links plus the utility icons plus the CTA button, that left a wide
     "in-between" range (roughly 760–1150px, most laptops) where everything
     had to squeeze into one row at once. Switching earlier means that
     crowded middle ground just doesn't happen — it's either the full
     spaced-out desktop row, or the clean compact toggle, never a squeeze. */
  @media (max-width: 1150px){
    .nav-links{ display:none; }
    .nav-toggle{ display:flex; }
  }

  /* Below ~560px the logo + cart + help icon + CTA button + hamburger no
     longer fit on one line (everything above has flex-shrink:0), which was
     pushing the hamburger itself off-screen — the exact "menu isn't visible
     on phone" bug. The CTA and help icon are already duplicated as full-width
     links inside .mobile-menu, so on phones we hide them from the top row
     and keep only the logo, cart icon, and a now-always-visible hamburger. */
  @media (max-width: 560px){
    .nav-cta{ display:none; }
    .nav-help{ display:none; }
    nav{ gap:10px; }
    .logo{ font-size:16px; gap:8px; }
    .logo .mark{ width:28px; height:28px; }
    .logo{ order:1; }
    .nav-utils{ order:2; }
    .nav-toggle{ order:3; }

    /* Once the page is scrolled, the hero's own "Grade je kaart" button has
       scrolled out of view, so the header brings its CTA back — but instead
       of squeezing it into the top row (which is what overflowed before),
       it drops to a full-width row of its own directly under the logo, and
       the hamburger simply stays put at the right edge — the same spot the
       CTA used to sit next to on wider screens. */
    header.scrolled .nav-cta{
      display:block; order:4; flex-basis:100%;
      text-align:center; margin-top:12px; padding:12px 20px;
    }
  }
  @media (max-width: 340px){
    .logo{ font-size:14px; }
  }
  /* Safety net: if content ever still can't fit (very old/narrow devices,
     zoomed browsers, long translated brand names), wrap instead of
     overflowing off-screen. */
  nav{ flex-wrap:wrap; row-gap:10px; }

  /* ---------- HERO ---------- */
  .hero{
    position:relative;
    padding:168px 0 110px;
    background:
      radial-gradient(ellipse 900px 500px at 82% 8%, rgba(198,162,77,0.14), transparent 60%),
      linear-gradient(180deg, var(--forest-deep) 0%, var(--forest) 100%);
    overflow:hidden;
  }
  .hero::before{
    content:""; position:absolute; inset:0;
    background-image: radial-gradient(rgba(246,241,228,0.05) 1px, transparent 1px);
    background-size:26px 26px;
    mask-image: linear-gradient(180deg, black, transparent 70%);
    pointer-events:none;
  }
  .hero-grid{
    position:relative; display:grid; grid-template-columns:1.05fr 0.95fr;
    gap:64px; align-items:center;
  }
  .hero-copy h1{
    font-size:clamp(38px, 4.6vw, 60px); line-height:1.05; margin:18px 0 24px;
  }
  .hero-copy h1 em{ font-style:italic; color:var(--brass-bright); }
  .hero-copy p{ font-size:17px; color:var(--cream-dim); max-width:460px; margin-bottom:34px; }
  .hero-actions{ display:flex; gap:14px; flex-wrap:wrap; }
  .btn{
    padding:14px 26px; border-radius:2px; font-size:14px; font-weight:600;
    letter-spacing:0.02em; display:inline-block; transition:transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  }
  .btn-primary{ background:var(--brass); color:var(--forest-deep); }
  .btn-primary:hover{ background:var(--brass-bright); transform:translateY(-2px); }
  .btn-ghost{ border:1px solid var(--line); color:var(--cream); }
  .btn-ghost:hover{ border-color:var(--brass); color:var(--brass-bright); }

  .stat-row{ display:flex; gap:36px; margin-top:52px; }
  .stat-row div{ font-family:'IBM Plex Mono', monospace; }
  .stat-num{ font-size:22px; color:var(--brass-bright); font-weight:600; }
  .stat-label{ font-size:11px; color:var(--cream-dim); text-transform:uppercase; letter-spacing:0.1em; margin-top:2px; }

  /* ---------- SLAB (signature element) ---------- */
  .slab-stage{ display:flex; flex-direction:column; align-items:center; gap:18px; perspective:1400px; }
  .slab{
    width:280px; cursor:pointer;
    transform:rotate3d(0.4, -1, 0.05, 10deg);
    transition:transform 0.4s ease;
    position:relative;
  }
  .slab:hover{ transform:rotate3d(0.4, -1, 0.05, 3deg); }
  .slab:focus-visible{ outline:2px solid var(--brass-bright); outline-offset:6px; }
  .slab-inner{
    position:relative; width:100%; transform-style:preserve-3d;
    transition:transform 0.9s cubic-bezier(.45,.2,.2,1);
  }
  .slab-inner.is-flipped{ transform:rotateY(180deg); }
  .slab-face{
    background:linear-gradient(160deg, rgba(239,233,216,0.22), rgba(220,211,184,0.22));
    backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
    border:1px solid rgba(255,255,255,0.35);
    border-radius:6px; padding:14px;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(255,255,255,0.18);
    backface-visibility:hidden; -webkit-backface-visibility:hidden;
  }
  .slab-face.slab-back{ position:absolute; inset:0; transform:rotateY(180deg); }
  .slab-label{
    border-radius:3px; margin-bottom:10px; overflow:hidden;
  }
  .slab-label-img{ display:block; width:100%; height:auto; }
  .slab-card{
    aspect-ratio:5/7; border-radius:4px; overflow:hidden; position:relative;
    background: linear-gradient(135deg,#1c4632,#0c2119 55%, #2c5c40);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.25);
  }
  .slab-card-img{ width:100%; height:100%; object-fit:cover; display:block; }
  .slab-card::after{
    content:""; position:absolute; inset:0; pointer-events:none;
    background:
      radial-gradient(circle at 30% 20%, rgba(255,255,255,0.28), transparent 40%),
      linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.14) 45%, transparent 60%);
    mix-blend-mode:screen;
    animation: sheen 6s ease-in-out infinite;
  }
  @keyframes sheen{
    0%,100%{ opacity:0.5; transform:translateX(-6%); }
    50%{ opacity:0.85; transform:translateX(6%); }
  }
  .slab-hint{
    font-family:'IBM Plex Mono', monospace; font-size:11px; letter-spacing:0.06em;
    text-transform:uppercase; color:var(--cream-dim); opacity:0.75; text-align:center;
  }
  @media (prefers-reduced-motion: reduce){
    .slab-card::after{ animation:none; }
    .slab-inner{ transition:none; }
  }

  /* ---------- HERO SLAB (rotating — same design as the QR certificate page) ----------
     Deliberately separate class names from .slab/.slab-inner/.slab-face above:
     those are still used by the shop's product-detail modal and stay exactly
     as they are. This is its own component so changing one never touches
     the other. */
  .hero-slab-stage{ display:flex; flex-direction:column; align-items:center; gap:16px; }
  .hero-slab{
    --depth: 16px; /* how "thick" the slab looks — the edge faces below use this */
    width:min(280px, 70vw); cursor:grab; position:relative; touch-action:pan-y;
  }
  .hero-slab:active{ cursor:grabbing; }
  .hero-slab:focus-visible{ outline:2px solid var(--brass-bright); outline-offset:8px; }
  .hero-slab-inner{
    position:relative; width:100%;
    transform-style:preserve-3d; -webkit-transform-style:preserve-3d;
    will-change:transform;
  }
  .hero-slab-face{
    /* No backdrop-filter/box-shadow here on purpose — recomputing either one
       every frame on a rotating 3D element is what causes flicker right at
       the edge-on angle. The dedicated ground shadow below already gives the
       slab its "lifted off the page" weight. */
    background:linear-gradient(160deg, rgba(239,233,216,0.32), rgba(220,211,184,0.28));
    border:1px solid rgba(255,255,255,0.35); border-radius:6px; padding:14px;
    backface-visibility:hidden; -webkit-backface-visibility:hidden;
    transform:translateZ(calc(var(--depth) / 2));
    position:relative; will-change:transform;
  }
  .hero-slab-face.hero-slab-back{ position:absolute; inset:0; transform:rotateY(180deg) translateZ(calc(var(--depth) / 2)); }
  /* The two edge strips give the slab actual volume — without them, a plane
     rotated to ~90° has zero visible width and looks like a stretched sliver.
     With them, you see a thin brass-lit edge instead, like a real slab case. */
  .hero-slab-edge{
    position:absolute; top:0; bottom:0; width:var(--depth);
    left:50%; margin-left:calc(var(--depth) / -2);
    background:linear-gradient(90deg, rgba(6,16,12,0.95), rgba(198,162,77,0.4) 45%, rgba(6,16,12,0.95));
    border-radius:2px; backface-visibility:hidden; -webkit-backface-visibility:hidden;
    will-change:transform;
  }
  .hero-slab-edge-right{ transform:rotateY(90deg) translateZ(calc(var(--w, 140px) / 2)); }
  .hero-slab-edge-left{ transform:rotateY(-90deg) translateZ(calc(var(--w, 140px) / 2)); }
  .hero-slab-spacer{ height:14px; }
  /* Ground shadow — scales narrower and drifts sideways as the slab turns,
     the way a spinning object's shadow does. Updated every frame in JS. */
  .hero-slab-shadow{
    position:absolute; left:50%; bottom:-12px; width:80%; height:20px;
    background:radial-gradient(ellipse at center, rgba(0,0,0,0.6), transparent 72%);
    filter:blur(4px); pointer-events:none;
  }
  /* Sheen — a soft highlight band that sweeps across whichever face is
     showing, in sync with rotation, so the light visibly travels one
     direction rather than just pulsing in place. */
  .hero-slab-sheen{
    position:absolute; inset:0; border-radius:6px; pointer-events:none;
    background-image:linear-gradient(100deg, transparent 25%, rgba(255,255,255,0.28) 42%, transparent 58%);
    background-size:240% 100%; background-repeat:no-repeat;
  }
  /* Shade — darkens the visible face as it approaches edge-on (turning away
     from the viewer), lightening again once it's flat-on. Also set in JS. */
  .hero-slab-shade{ position:absolute; inset:0; border-radius:6px; pointer-events:none; background:#000; opacity:0; }
  .hero-slab-label{ border-radius:3px; margin-bottom:10px; overflow:hidden; }
  .hero-slab-label img{ display:block; width:100%; height:auto; }
  .hero-slab-card{
    aspect-ratio:5/7; border-radius:4px; overflow:hidden; position:relative;
    background:linear-gradient(135deg,#1c4632,#0c2119 55%, #2c5c40);
    box-shadow:inset 0 0 0 1px rgba(0,0,0,0.25);
  }
  .hero-slab-card img{ width:100%; height:100%; object-fit:cover; display:block; }
  .hero-slab-hint{
    font-family:'IBM Plex Mono', monospace; font-size:11px; letter-spacing:0.06em; text-transform:uppercase;
    color:var(--cream-dim); opacity:0.75; text-align:center;
  }
  @media (prefers-reduced-motion: reduce){ .hero-slab-inner{ transition:none !important; } }

  /* ---------- SECTION SHELL ---------- */
  .section{ padding:110px 0; position:relative; }
  .section-head{ max-width:600px; margin-bottom:64px; }
  .section-head h2{ font-size:clamp(30px,3.4vw,42px); margin-top:14px; }
  .section-head p{ color:var(--cream-dim); margin-top:16px; font-size:16px; }
  .section-alt{ background:var(--forest); }

  /* ---------- HOW IT WORKS ---------- */
  .steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:4px; overflow:hidden; }
  .step{ background:var(--forest-deep); padding:36px 28px; }
  .step-num{ font-family:'IBM Plex Mono', monospace; font-size:13px; color:var(--brass-bright); }
  .step h3{ font-size:19px; margin:18px 0 10px; font-weight:600; }
  .step p{ font-size:14px; color:var(--cream-dim); }

  /* ---------- PRICING ---------- */
  .price-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
  .price-card{
    background:linear-gradient(180deg, rgba(246,241,228,0.03), transparent);
    border:1px solid var(--line); border-radius:6px; padding:32px 28px 28px;
    display:flex; flex-direction:column; position:relative;
    transition:border-color 0.25s ease, transform 0.25s ease;
  }
  .price-card:hover{ transform:translateY(-4px); border-color:rgba(198,162,77,0.5); }
  .price-card.featured{ border-color:var(--brass); background:linear-gradient(180deg, rgba(198,162,77,0.09), transparent); }
  .badge{
    position:absolute; top:-13px; left:28px; background:var(--brass); color:var(--forest-deep);
    font-family:'IBM Plex Mono', monospace; font-size:10px; letter-spacing:0.08em; text-transform:uppercase;
    padding:5px 10px; border-radius:2px; font-weight:600;
  }
  .tier-name{ font-family:'IBM Plex Mono', monospace; font-size:12px; letter-spacing:0.1em; text-transform:uppercase; color:var(--brass-bright); }
  .tier-price{ font-family:'Fraunces', serif; font-size:44px; margin:14px 0 4px; }
  .tier-price span{ font-size:14px; font-family:'Inter',sans-serif; color:var(--cream-dim); font-weight:400; }
  .tier-turn{ font-size:13px; color:var(--cream-dim); margin-bottom:22px; }
  .tier-list{ display:flex; flex-direction:column; gap:11px; margin-bottom:28px; flex-grow:1; }
  .tier-list li{ font-size:14px; display:flex; gap:10px; align-items:flex-start; color:var(--cream-dim); }
  .tier-list li::before{ content:"—"; color:var(--brass); flex-shrink:0; }
  .price-card .btn{ text-align:center; }

  /* ---------- ABOUT ---------- */
  .about-grid{ display:grid; grid-template-columns:0.8fr 1.2fr; gap:72px; align-items:start; }
  .about-copy p{ color:var(--cream-dim); font-size:16px; margin-bottom:18px; max-width:560px; }
  .about-copy p:first-of-type{ color:var(--cream); font-size:18px; }
  .about-stats{ display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--line); border:1px solid var(--line); border-radius:4px; overflow:hidden; margin-top:36px; }
  .about-stat{ background:var(--forest-deep); padding:24px; }
  .about-stat b{ font-family:'Fraunces', serif; font-size:30px; color:var(--brass-bright); display:block; }
  .about-stat span{ font-size:12px; color:var(--cream-dim); text-transform:uppercase; letter-spacing:0.06em; }
  .about-visual{ display:flex; flex-direction:column; gap:20px; }
  .about-portrait{
    border:1px solid var(--line); border-radius:6px; padding:36px;
    background:linear-gradient(160deg, rgba(198,162,77,0.08), transparent);
    aspect-ratio:4/5; display:flex; align-items:center; justify-content:center; text-align:center;
  }
  .about-portrait span{ font-family:'Fraunces', serif; font-style:italic; font-size:20px; color:var(--brass-bright); line-height:1.5; }

  /* Two "squares cut in half" beneath the portrait — short, wide cards,
     stacked on top of each other, each spanning the same width as the
     portrait square above. Photo circles are mirrored (top card / bottom
     card) so the pair reads as a matched set, not two identical copies. */
  .about-founders{ display:flex; flex-direction:column; gap:16px; }
  .founder-card{
    width:100%;
    border:1px solid var(--line); border-radius:6px; padding:24px 22px;
    background:linear-gradient(160deg, rgba(198,162,77,0.06), transparent);
    display:flex; align-items:center; gap:16px;
  }
  /* founder-card-left's markup order is photo-then-quote (photo lands on the
     left naturally). founder-card-right's markup order is already reversed
     — quote-then-photo — so it needs plain row direction here, not another
     reverse on top of that; two reversals is what was cancelling itself out
     and leaving both photos on the same side. */
  .founder-card-right{ text-align:right; }
  .founder-photo{
    flex-shrink:0; width:64px; height:64px; border-radius:50%; overflow:hidden;
    border:2px solid var(--brass); background:linear-gradient(135deg,#1c4632,#0c2119 55%, #2c5c40);
  }
  .founder-photo img{ width:100%; height:100%; object-fit:cover; object-position:center top; display:block; }
  /* Both photos are angled/profile shots rather than centered head-on
     portraits, so the generic center-top crop above doesn't land well on
     either — nudged toward where each face actually sits. These are
     estimates; adjust the percentages (horizontal% vertical%) if the crop
     still isn't quite right once you see it live. */
  .founder-photo-mike img{ object-position:38% 20%; }
  .founder-photo-joshua img{ object-position:32% 25%; }
  .founder-quote{ font-family:'Fraunces', serif; font-style:italic; font-size:12.5px; color:var(--cream-dim); line-height:1.5; }
  .founder-quote span{
    display:block; margin-top:6px; font-style:normal; font-family:'IBM Plex Mono', monospace;
    font-size:9.5px; letter-spacing:0.05em; text-transform:uppercase; color:var(--brass-bright);
  }

  /* ---------- CTA / CONTACT ---------- */
  .cta{
    text-align:center; padding:100px 0; position:relative;
    background: radial-gradient(ellipse 700px 400px at 50% 0%, rgba(198,162,77,0.14), transparent 65%);
  }
  .cta h2{ font-size:clamp(30px,4vw,48px); max-width:680px; margin:14px auto 20px; }
  .cta p{ color:var(--cream-dim); max-width:480px; margin:0 auto 34px; }
  .cta-actions{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
  .contact-strip{ display:flex; justify-content:center; gap:44px; margin-top:56px; flex-wrap:wrap; font-family:'IBM Plex Mono', monospace; font-size:13px; }
  .contact-strip a{ color:var(--cream-dim); border-bottom:1px solid transparent; transition:color 0.2s ease, border-color 0.2s ease; }
  .contact-strip a:hover{ color:var(--brass-bright); border-color:var(--brass-bright); }

  footer{ border-top:1px solid var(--line); padding:32px 0; }
  .footer-row{ display:flex; justify-content:space-between; align-items:center; font-size:13px; color:var(--cream-dim); flex-wrap:wrap; gap:12px; }
  .footer-socials{ display:flex; align-items:center; gap:12px; }
  .footer-socials a{
    display:flex; align-items:center; justify-content:center; width:32px; height:32px;
    border:1px solid var(--line); border-radius:50%; color:var(--cream-dim); flex-shrink:0;
    transition:border-color 0.2s ease, color 0.2s ease;
  }
  .footer-socials a svg{ width:15px; height:15px; flex-shrink:0; }
  .footer-socials a:hover{ border-color:var(--brass); color:var(--brass-bright); }
  @media (max-width:640px){ .footer-socials{ order:-1; } }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 980px){
    .hero-grid{ grid-template-columns:1fr; }
    .slab-stage{ margin-top:20px; }
    .about-grid{ grid-template-columns:1fr; }
    .steps{ grid-template-columns:repeat(2,1fr); }
    .price-grid{ grid-template-columns:1fr; max-width:420px; margin:0 auto; }
  }
  @media (max-width: 760px){
    .wrap{ padding:0 22px; }
    .hero{ padding:140px 0 80px; }
    .stat-row{ gap:26px; flex-wrap:wrap; }
    .steps{ grid-template-columns:1fr; }
    .section{ padding:80px 0; }
    .about-stats{ grid-template-columns:1fr; }
  }

  /* ---------- HELPDESK PAGE ---------- */
  .page-hero{
    position:relative;
    padding:168px 0 70px;
    background:
      radial-gradient(ellipse 900px 500px at 82% 8%, rgba(198,162,77,0.14), transparent 60%),
      linear-gradient(180deg, var(--forest-deep) 0%, var(--forest) 100%);
    overflow:hidden;
  }
  .page-hero::before{
    content:""; position:absolute; inset:0;
    background-image: radial-gradient(rgba(246,241,228,0.05) 1px, transparent 1px);
    background-size:26px 26px;
    mask-image: linear-gradient(180deg, black, transparent 70%);
    pointer-events:none;
  }
  .page-hero .wrap{ position:relative; max-width:720px; }
  .page-hero h1{
    font-size:clamp(34px, 4.2vw, 52px); line-height:1.08; margin:16px 0 18px;
  }
  .page-hero p{ font-size:17px; color:var(--cream-dim); max-width:520px; }

  /* FAQ accordion */
  .faq-list{ display:flex; flex-direction:column; gap:1px; background:var(--line); border:1px solid var(--line); border-radius:4px; overflow:hidden; }
  .faq-item{ background:var(--forest-deep); }
  .faq-q{
    width:100%; display:flex; align-items:center; justify-content:space-between; gap:20px;
    padding:24px 28px; text-align:left; font-family:'Fraunces', serif; font-size:18px; font-weight:500; color:var(--cream);
  }
  .faq-q .plus{
    flex-shrink:0; width:22px; height:22px; position:relative; color:var(--brass-bright);
  }
  .faq-q .plus::before, .faq-q .plus::after{
    content:""; position:absolute; background:currentColor; border-radius:1px;
    top:50%; left:50%; transform:translate(-50%,-50%);
  }
  .faq-q .plus::before{ width:14px; height:2px; }
  .faq-q .plus::after{ width:2px; height:14px; transition:transform 0.25s ease, opacity 0.25s ease; }
  .faq-item.open .faq-q .plus::after{ transform:translate(-50%,-50%) rotate(90deg); opacity:0; }
  .faq-a{
    max-height:0; overflow:hidden; transition:max-height 0.35s ease, padding 0.35s ease;
    padding:0 28px;
  }
  .faq-a p{ font-size:14.5px; color:var(--cream-dim); padding-bottom:24px; max-width:640px; }
  .faq-item.open .faq-a{ max-height:400px; }

  /* Contact / helpdesk form */
  .help-grid{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:56px; align-items:start; }
  .help-side h2{ font-size:clamp(26px,3vw,34px); margin:14px 0 16px; }
  .help-side p{ color:var(--cream-dim); font-size:15px; margin-bottom:28px; max-width:400px; }
  .help-side-item{ display:flex; gap:12px; align-items:flex-start; padding:16px 0; border-top:1px solid var(--line); }
  .help-side-item:last-child{ border-bottom:1px solid var(--line); }
  .help-side-item b{ display:block; font-size:14px; font-weight:600; color:var(--cream); }
  .help-side-item span{ display:block; font-size:13px; color:var(--cream-dim); margin-top:2px; }

  .help-form{
    background:linear-gradient(180deg, rgba(246,241,228,0.03), transparent);
    border:1px solid var(--line); border-radius:6px; padding:36px;
  }
  .form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
  .form-field{ margin-bottom:18px; }
  .form-field label{
    display:block; font-family:'IBM Plex Mono', monospace; font-size:11px; letter-spacing:0.08em;
    text-transform:uppercase; color:var(--brass-bright); margin-bottom:8px;
  }
  .form-field input, .form-field select, .form-field textarea{
    width:100%; background:var(--forest-deep); border:1px solid var(--line); border-radius:2px;
    padding:12px 14px; font-family:'Inter', sans-serif; font-size:14px; color:var(--cream);
    transition:border-color 0.2s ease;
  }
  .form-field input:focus, .form-field select:focus, .form-field textarea:focus{
    outline:none; border-color:var(--brass);
  }
  .form-field textarea{ resize:vertical; min-height:120px; }
  .form-field select{ appearance:none; cursor:pointer; }
  .form-note{ font-size:12px; color:var(--cream-dim); margin-top:4px; }
  .form-submit{ width:100%; border:none; margin-top:6px; }
  .form-status{ font-size:13px; margin-top:14px; display:none; }
  .form-status.ok{ display:block; color:var(--brass-bright); }
  .form-status.err{ display:block; color:#e08a6f; }

  @media (max-width: 980px){
    .help-grid{ grid-template-columns:1fr; }
  }
  @media (max-width: 760px){
    .nav-help{ display:none; }
    .page-hero{ padding:140px 0 60px; }
    .form-row{ grid-template-columns:1fr; }
    .help-form{ padding:26px; }
  }

  /* ---------- AANVRAAG FORM PAGE ---------- */
  .apply-form{
    max-width:760px; margin:0 auto;
    background:linear-gradient(180deg, rgba(246,241,228,0.03), transparent);
    border:1px solid var(--line); border-radius:6px; padding:40px;
  }
  .form-section-label{
    font-family:'IBM Plex Mono', monospace; font-size:12px; letter-spacing:0.1em; text-transform:uppercase;
    color:var(--brass-bright); margin:0 0 18px; padding-bottom:12px; border-bottom:1px solid var(--line);
  }
  .apply-form fieldset{ border:none; margin-bottom:38px; }
  .apply-form fieldset:last-of-type{ margin-bottom:0; }

  .tier-select{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-bottom:8px; }
  .tier-option{
    border:1px solid var(--line); border-radius:6px; padding:18px 16px; cursor:pointer;
    transition:border-color 0.2s ease, background 0.2s ease; position:relative;
  }
  .tier-option input{ position:absolute; opacity:0; pointer-events:none; }
  .tier-option:hover{ border-color:rgba(198,162,77,0.5); }
  .tier-option .t-name{ font-family:'IBM Plex Mono', monospace; font-size:11px; letter-spacing:0.08em; text-transform:uppercase; color:var(--brass-bright); }
  .tier-option .t-price{ font-family:'Fraunces', serif; font-size:23px; margin:8px 0 2px; }
  .tier-option .t-price span{ font-size:12px; font-family:'Inter',sans-serif; color:var(--cream-dim); font-weight:400; }
  .tier-option .t-turn{ font-size:12px; color:var(--cream-dim); }
  .tier-option.checked{ border-color:var(--brass); background:linear-gradient(180deg, rgba(198,162,77,0.09), transparent); }

  .check-field{ display:flex; gap:10px; align-items:flex-start; margin:22px 0 6px; font-size:13px; color:var(--cream-dim); }
  .check-field input{ margin-top:3px; flex-shrink:0; }
  .check-field a{ color:var(--brass-bright); border-bottom:1px solid var(--brass-bright); }

  @media (max-width: 760px){
    .apply-form{ padding:24px; }
    .tier-select{ grid-template-columns:1fr; }
  }

  /* Card specification grid (aanvraagformulier) */
  .cards-total-row{
    display:flex; align-items:baseline; gap:8px; margin-bottom:14px; opacity:0.35; pointer-events:none;
    font-family:'IBM Plex Mono', monospace; font-size:13px; color:var(--cream-dim); transition:opacity 0.2s ease;
  }
  .cards-total-row.active{ opacity:1; pointer-events:auto; }
  .cards-total-row b{ color:var(--brass-bright); font-size:17px; }
  .cards-total-row span:last-child{ font-size:12px; }

  .card-grid{ display:none; flex-direction:column; gap:14px; margin-bottom:16px; }
  .card-grid.active{ display:flex; }

  .card-row{
    border:1px solid var(--line); border-radius:6px; padding:16px 18px 18px;
    background:linear-gradient(180deg, rgba(246,241,228,0.03), transparent);
  }
  .card-row-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:12px; }
  .card-row-num{
    font-family:'IBM Plex Mono', monospace; font-size:11px; letter-spacing:0.08em; text-transform:uppercase;
    color:var(--brass-bright);
  }
  .card-row-remove{
    width:24px; height:24px; border-radius:50%; border:1px solid var(--line); color:var(--cream-dim);
    font-size:16px; line-height:1; display:flex; align-items:center; justify-content:center; flex-shrink:0;
    transition:border-color 0.2s ease, color 0.2s ease;
  }
  .card-row-remove:hover{ border-color:#e08a6f; color:#e08a6f; }

  .card-row-grid{
    display:grid; grid-template-columns:66px 76px 1.4fr 88px 1.6fr 128px 148px; gap:10px;
  }
  .cr-field label{
    display:block; font-family:'IBM Plex Mono', monospace; font-size:10px; letter-spacing:0.06em;
    text-transform:uppercase; color:var(--cream-dim); margin-bottom:6px;
  }
  .cr-field input, .cr-field select{
    width:100%; background:var(--forest-deep); border:1px solid var(--line); border-radius:2px;
    padding:9px 10px; font-family:'Inter', sans-serif; font-size:13px; color:var(--cream);
    transition:border-color 0.2s ease;
  }
  .cr-field input:focus, .cr-field select:focus{ outline:none; border-color:var(--brass); }
  .cr-field select{ appearance:none; cursor:pointer; }
  .cr-value-wrap{
    display:flex; align-items:center; gap:6px; background:var(--forest-deep); border:1px solid var(--line);
    border-radius:2px; padding:0 10px; transition:border-color 0.2s ease;
  }
  .cr-value-wrap span{ font-size:13px; color:var(--cream-dim); }
  .cr-value-wrap input{ border:none !important; padding:9px 0 !important; background:transparent !important; }
  .cr-value-wrap:focus-within{ border-color:var(--brass); }

  .card-add-btn{ display:none; width:100%; text-align:center; border-style:dashed; }
  .card-add-btn.active{ display:block; }
  .card-add-btn:disabled{ opacity:0.4; cursor:not-allowed; }
  .card-add-btn:disabled:hover{ border-color:var(--line); color:var(--cream); }

  .cards-subtotal-row{
    display:none; align-items:baseline; justify-content:flex-end; gap:10px;
    margin-top:18px; padding-top:16px; border-top:1px solid var(--line);
    font-family:'IBM Plex Mono', monospace; font-size:13px; color:var(--cream-dim);
  }
  .cards-subtotal-row.active{ display:flex; }
  .cards-subtotal-calc{ font-size:12px; opacity:0.7; }
  .cards-subtotal-row b{ font-family:'Fraunces', serif; font-size:20px; font-weight:600; color:var(--brass-bright); }

  @media (max-width: 500px){
    .cards-subtotal-row{ flex-wrap:wrap; justify-content:space-between; }
  }

  @media (max-width: 900px){
    .card-row-grid{ grid-template-columns:1fr 1fr; }
    .cr-wide{ grid-column:1 / -1; }
  }
  @media (max-width: 500px){
    .card-row{ padding:14px; }
  }

  /* ---------- CONFIRM MODAL ---------- */
  .modal-overlay{
    display:none; position:fixed; inset:0; z-index:200;
    background:rgba(6,16,12,0.72); backdrop-filter:blur(3px);
    align-items:center; justify-content:center; padding:24px;
  }
  .modal-overlay.open{ display:flex; }
  .modal-box{
    width:100%; max-width:560px; max-height:85vh; overflow-y:auto;
    background:var(--forest-deep); border:1px solid var(--line); border-radius:6px;
    padding:36px; box-shadow:0 30px 60px -20px rgba(0,0,0,0.6);
  }
  .modal-box .eyebrow{ display:block; margin-bottom:8px; }
  .modal-box h3{ font-family:'Fraunces', serif; font-size:24px; font-weight:600; margin-bottom:8px; }
  .modal-box > p{ color:var(--cream-dim); font-size:14px; margin-bottom:24px; }
  .modal-summary{ display:flex; flex-direction:column; gap:1px; background:var(--line); border:1px solid var(--line); border-radius:4px; overflow:hidden; margin-bottom:28px; }
  .modal-row{ background:var(--forest); padding:12px 16px; display:flex; gap:16px; justify-content:space-between; }
  .modal-row b{
    font-family:'IBM Plex Mono', monospace; font-size:11px; letter-spacing:0.06em; text-transform:uppercase;
    color:var(--brass-bright); flex-shrink:0; padding-top:1px;
  }
  .modal-row span{ font-size:14px; color:var(--cream); text-align:right; white-space:pre-line; }
  .modal-actions{ display:flex; gap:14px; flex-wrap:wrap; }
  .modal-actions .btn{ flex:1; text-align:center; }
  @media (max-width: 500px){
    .modal-box{ padding:26px; }
    .modal-row{ flex-direction:column; gap:4px; }
    .modal-row span{ text-align:left; }
  }

  /* Generic close button for any .modal-box (same look as .shop-modal-close,
     without the shop-specific name, for modals used outside the shop). */
  .modal-close{
    position:absolute; top:0; right:0; width:32px; height:32px; border-radius:50%; border:1px solid var(--line);
    color:var(--cream-dim); font-size:16px; display:flex; align-items:center; justify-content:center;
    transition:border-color 0.2s ease, color 0.2s ease;
  }
  .modal-close:hover{ border-color:var(--brass); color:var(--brass-bright); }

  /* ---------- NEWSLETTER POPUP ---------- */
  .newsletter-modal{ max-width:440px; text-align:center; }
  .newsletter-modal .eyebrow{ display:block; }
  .newsletter-modal h3{ font-family:'Fraunces', serif; font-size:25px; font-weight:600; margin:8px 0 10px; }
  .newsletter-modal p{ color:var(--cream-dim); font-size:14px; margin-bottom:20px; }
  .newsletter-modal .form-field{ text-align:left; margin-bottom:16px; }
  .newsletter-modal .form-submit{ width:100%; }
  .newsletter-modal .form-status{ text-align:left; }
  .newsletter-fineprint{ font-size:12px !important; color:var(--cream-dim); opacity:0.75; margin-top:16px; margin-bottom:0 !important; }
  .newsletter-code{
    display:flex; align-items:center; justify-content:space-between; gap:12px;
    border:1px dashed var(--brass); border-radius:4px; padding:14px 18px; margin-bottom:6px;
    background:linear-gradient(180deg, rgba(198,162,77,0.09), transparent);
  }
  .newsletter-code span{
    font-family:'IBM Plex Mono', monospace; font-size:20px; font-weight:600; letter-spacing:0.08em; color:var(--brass-bright);
  }
  .newsletter-code button{
    flex-shrink:0; padding:8px 14px; border:1px solid var(--brass); border-radius:2px; color:var(--brass-bright);
    font-family:'IBM Plex Mono', monospace; font-size:11px; letter-spacing:0.04em; text-transform:uppercase;
    transition:background 0.2s ease, color 0.2s ease;
  }
  .newsletter-code button:hover{ background:var(--brass); color:var(--forest-deep); }
  @media (max-width:500px){
    .newsletter-modal{ max-width:none; }
    .newsletter-code{ flex-direction:column; gap:10px; }
    .newsletter-code button{ width:100%; }
  }

  /* ---------- NAV CART ---------- */
  .nav-cart{
    position:relative; display:flex; align-items:center; justify-content:center;
    width:40px; height:40px; border-radius:50%; color:var(--cream-dim);
    transition:color 0.2s ease;
  }
  .nav-cart svg{ width:23px; height:23px; flex-shrink:0; }
  .nav-cart:hover{ color:var(--brass-bright); }
  .cart-count{
    display:none; position:absolute; top:2px; right:2px; min-width:16px; height:16px; padding:0 4px;
    border-radius:8px; background:var(--brass); color:var(--forest-deep);
    font-family:'IBM Plex Mono', monospace; font-size:10px; font-weight:600;
    align-items:center; justify-content:center;
  }
  .mobile-menu a.mob-cart{ display:flex; align-items:center; justify-content:space-between; }
  .mobile-menu .cart-count{ position:static; display:none; }
  .mobile-menu .cart-count.show, .nav-cart .cart-count.show{ display:flex; }

  /* ---------- SHOP: SLAB LIBRARY — 4 INDEPENDENTLY SCROLLABLE ROWS ---------- */
  /* Each .shop-row-wrap is one row: its own horizontal scroller plus its own
     ‹ › buttons, stacked in .shop-rows. Rows don't share a scroll position —
     scrolling row 2 has no effect on row 1, 3 or 4. */
  .shop-rows{ display:flex; flex-direction:column; gap:28px; }
  .shop-row-wrap{ position:relative; }
  .shop-row{
    display:flex; gap:22px; overflow-x:auto; padding:10px 4px 14px; scroll-snap-type:x proximity;
    scrollbar-width:thin; scrollbar-color:var(--brass) transparent;
    cursor:grab;
  }
  .shop-row::-webkit-scrollbar{ height:6px; }
  .shop-row::-webkit-scrollbar-thumb{ background:var(--brass); border-radius:4px; }
  .shop-row::-webkit-scrollbar-track{ background:var(--line); border-radius:4px; }
  /* Click-and-hold drag scroll: press anywhere in the row and drag to scroll it. */
  .shop-row.is-grabbing{ cursor:grabbing; scroll-snap-type:none; user-select:none; }
  /* Same fix as above, needed for the same reason — continuously setting
     scrollLeft via JS fights with scroll-snap-type otherwise, causing a
     jittery back-and-forth instead of a smooth slide. */
  .shop-rows.sliding .shop-row{ scroll-snap-type:none; }
  .shop-card-clone{ pointer-events:none; }

  /* Optional auto-slide toggle, above the rows */
  .shop-slide-toggle{ display:flex; align-items:center; gap:10px; margin-bottom:24px; cursor:pointer; width:fit-content; }
  .shop-slide-toggle input{ position:absolute; opacity:0; width:0; height:0; }
  .toggle-track{
    position:relative; width:40px; height:22px; border-radius:20px;
    background:var(--line); border:1px solid var(--line); flex-shrink:0;
    transition:background 0.2s ease, border-color 0.2s ease;
  }
  .toggle-thumb{
    position:absolute; top:2px; left:2px; width:16px; height:16px; border-radius:50%;
    background:var(--cream-dim); transition:transform 0.2s ease, background 0.2s ease;
  }
  .shop-slide-toggle input:checked + .toggle-track{ background:rgba(198,162,77,0.35); border-color:var(--brass); }
  .shop-slide-toggle input:checked + .toggle-track .toggle-thumb{ transform:translateX(18px); background:var(--brass-bright); }
  .toggle-label{
    font-family:'IBM Plex Mono', monospace; font-size:12px; letter-spacing:0.04em;
    text-transform:uppercase; color:var(--cream-dim); transition:color 0.2s ease;
  }
  .shop-slide-toggle:hover .toggle-label{ color:var(--cream); }
  .shop-slide-toggle input:disabled ~ .toggle-label{ opacity:0.5; cursor:not-allowed; }
  .shop-row.is-grabbing .shop-card{ pointer-events:none; }

  .shop-card{
    flex:0 0 208px; scroll-snap-align:start; text-align:left; background:none; border:none; padding:0; cursor:pointer;
    display:block; transition:transform 0.25s ease;
  }
  .shop-card:hover{ transform:translateY(-6px); }
  .shop-card:focus-visible{ outline:2px solid var(--brass-bright); outline-offset:6px; }
  .shop-card-slab{
    background:linear-gradient(160deg, rgba(239,233,216,0.22), rgba(220,211,184,0.22));
    border:1px solid rgba(255,255,255,0.35); border-radius:6px; padding:8px;
    box-shadow:0 20px 40px -18px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(255,255,255,0.18);
    position:relative;
  }
  /* Photo-forward: the card photo fills the tile edge to edge inside the slab
     frame. No permanent label bar, no text block underneath — grade and name
     live in a caption that's invisible until you hover or focus the card, and
     the price is the one thing that stays on, small, so browsing still works
     at a glance. */
  .shop-card-img{ position:relative; aspect-ratio:5/7; border-radius:4px; overflow:hidden; }
  .shop-card-img img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.6s ease; }
  .shop-card:hover .shop-card-img img{ transform:scale(1.045); }
  .shop-card-badge{
    position:absolute; top:16px; right:16px; background:rgba(12,33,25,0.85); border:1px solid var(--brass);
    color:var(--brass-bright); font-family:'IBM Plex Mono', monospace; font-size:10px; padding:3px 7px; border-radius:2px;
    letter-spacing:0.04em; display:none; z-index:3;
  }
  .shop-card.in-cart .shop-card-badge{ display:block; }
  .shop-card-price-tag{
    position:absolute; bottom:9px; right:9px; z-index:2;
    background:rgba(12,33,25,0.72); backdrop-filter:blur(3px); -webkit-backdrop-filter:blur(3px);
    color:var(--cream); font-family:'IBM Plex Mono', monospace; font-size:11px; font-weight:600;
    padding:4px 8px; border-radius:2px; letter-spacing:0.02em;
    transition:opacity 0.2s ease;
  }
  .shop-card:hover .shop-card-price-tag, .shop-card:focus-visible .shop-card-price-tag{ opacity:0; }
  .shop-card-caption{
    position:absolute; inset:auto 0 0 0; z-index:2; padding:34px 12px 11px;
    background:linear-gradient(0deg, rgba(6,16,12,0.94) 0%, rgba(6,16,12,0.6) 60%, transparent 100%);
    opacity:0; transform:translateY(8px);
    transition:opacity 0.3s ease, transform 0.3s ease;
  }
  .shop-card:hover .shop-card-caption, .shop-card:focus-visible .shop-card-caption{ opacity:1; transform:translateY(0); }
  .shop-card-caption-top{ display:flex; align-items:baseline; justify-content:space-between; gap:10px; }
  .shop-card-grade{ font-family:'Fraunces', serif; font-size:19px; color:var(--brass-bright); font-weight:600; line-height:1; }
  .shop-card-grade span{ display:none; }
  .shop-card-price{ font-family:'IBM Plex Mono', monospace; font-size:13px; color:var(--cream); font-weight:600; }
  .shop-card-name{ font-size:12px; color:var(--cream-dim); margin-top:4px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
  @media (hover:none){
    /* Touch devices can't hover — keep the caption quietly visible instead of unreachable */
    .shop-card-caption{ opacity:1; transform:none; background:linear-gradient(0deg, rgba(6,16,12,0.85) 0%, transparent 100%); }
    .shop-card-price-tag{ display:none; }
  }
  @media (prefers-reduced-motion: reduce){
    .shop-card-img img, .shop-card-caption, .shop-card-price-tag{ transition:none; }
  }

  .shop-row-btn{
    display:flex; align-items:center; justify-content:center; width:38px; height:38px; border-radius:50%;
    border:1px solid var(--line); color:var(--cream); font-size:18px; flex-shrink:0; background:var(--forest-deep);
    transition:border-color 0.2s ease, color 0.2s ease; position:absolute; top:50%; transform:translateY(-50%); z-index:5;
  }
  .shop-row-prev{ left:-16px; }
  .shop-row-next{ right:-16px; }
  .shop-row-btn:hover{ border-color:var(--brass); color:var(--brass-bright); }
  @media (max-width:900px){ .shop-row-btn{ display:none; } }

  /* ---------- SHOP: SEARCH & FILTERS ---------- */
  .shop-filter-bar{
    display:flex; flex-wrap:wrap; align-items:flex-end; gap:16px;
    margin-bottom:12px; padding:18px 20px;
    background:linear-gradient(180deg, rgba(246,241,228,0.03), transparent);
    border:1px solid var(--line); border-radius:6px;
  }
  .shop-filter-search{ position:relative; flex:1 1 240px; min-width:200px; }
  .shop-filter-search svg{
    position:absolute; left:12px; top:50%; transform:translateY(-50%); width:15px; height:15px;
    color:var(--cream-dim); pointer-events:none;
  }
  .shop-filter-search input{
    width:100%; background:var(--forest-deep); border:1px solid var(--line); border-radius:2px;
    padding:11px 14px 11px 36px; font-family:'Inter', sans-serif; font-size:14px; color:var(--cream);
    transition:border-color 0.2s ease;
  }
  .shop-filter-search input:focus{ outline:none; border-color:var(--brass); }
  .shop-filter-group{ display:flex; flex-direction:column; gap:6px; }
  .shop-filter-group label{
    font-family:'IBM Plex Mono', monospace; font-size:10px; letter-spacing:0.08em; text-transform:uppercase; color:var(--brass-bright);
  }
  .shop-filter-group select{
    background:var(--forest-deep); border:1px solid var(--line); border-radius:2px; min-width:150px;
    padding:10px 12px; font-family:'Inter', sans-serif; font-size:13px; color:var(--cream);
    cursor:pointer; appearance:none; transition:border-color 0.2s ease;
  }
  .shop-filter-group select:focus{ outline:none; border-color:var(--brass); }
  .shop-filter-reset{
    padding:11px 16px; border:1px solid var(--line); border-radius:2px; color:var(--cream-dim);
    font-family:'IBM Plex Mono', monospace; font-size:11px; letter-spacing:0.05em; text-transform:uppercase;
    transition:border-color 0.2s ease, color 0.2s ease;
  }
  .shop-filter-reset:hover{ border-color:var(--brass); color:var(--brass-bright); }
  .shop-filter-count{
    font-family:'IBM Plex Mono', monospace; font-size:12px; color:var(--cream-dim); min-height:1.2em; margin-bottom:20px;
  }
  @media (max-width:640px){
    .shop-filter-bar{ flex-direction:column; align-items:stretch; }
    .shop-filter-group select{ width:100%; }
    .shop-filter-reset{ width:100%; }
  }

  /* Search brings a matching card forward within its row (low CSS `order` =
     earlier) and gives it a brass outline; it never hides non-matches. Price
     and grade are hard filters — cards that don't qualify are hidden. */
  .shop-card.is-search-match .shop-card-slab{
    box-shadow:0 0 0 2px var(--brass-bright), 0 20px 40px -18px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(255,255,255,0.18);
  }
  .shop-card.is-filtered-out{ display:none; }

  /* ---------- SHOP: PRODUCT DETAIL MODAL ---------- */
  .shop-modal{ max-width:860px; position:relative; }
  .shop-modal-close{
    position:absolute; top:0; right:0; width:32px; height:32px; border-radius:50%; border:1px solid var(--line);
    color:var(--cream-dim); font-size:16px; display:flex; align-items:center; justify-content:center;
    transition:border-color 0.2s ease, color 0.2s ease;
  }
  .shop-modal-close:hover{ border-color:var(--brass); color:var(--brass-bright); }
  .shop-modal-body{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:38px; margin-top:6px; }
  .shop-modal-visual{ display:flex; flex-direction:column; align-items:center; gap:16px; perspective:1200px; }
  .shop-modal-visual .slab{ width:190px; }
  .shop-modal-hint{ font-family:'IBM Plex Mono', monospace; font-size:10.5px; letter-spacing:0.05em; text-transform:uppercase; color:var(--cream-dim); opacity:0.75; text-align:center; }
  .shop-modal-grades{ display:grid; grid-template-columns:repeat(4,1fr); gap:8px; width:100%; }
  .shop-modal-grades div{ border:1px solid var(--line); border-radius:4px; padding:9px 4px; text-align:center; }
  .shop-modal-grades b{ display:block; font-family:'Fraunces', serif; font-size:16px; color:var(--brass-bright); }
  .shop-modal-grades span{ font-size:9px; text-transform:uppercase; letter-spacing:0.05em; color:var(--cream-dim); }
  .shop-modal-info .m-grade{ font-family:'IBM Plex Mono', monospace; font-size:12px; letter-spacing:0.08em; text-transform:uppercase; color:var(--brass-bright); }
  .shop-modal-info h3{ font-family:'Fraunces', serif; font-size:27px; font-weight:600; margin:8px 0 4px; }
  .shop-modal-info .m-meta{ font-size:13px; color:var(--cream-dim); margin-bottom:18px; }
  .shop-modal-info .m-price{ font-family:'Fraunces', serif; font-size:32px; margin-bottom:16px; }
  .shop-modal-info .m-desc{ font-size:14px; color:var(--cream-dim); margin-bottom:24px; max-width:400px; }
  .shop-cart-btn{ width:100%; text-align:center; }
  .shop-cart-btn.in-cart{ background:transparent; border:1px solid var(--brass); color:var(--brass-bright); }
  .shop-cart-note{ font-size:12px; color:var(--cream-dim); margin-top:12px; }

  @media (max-width:760px){
    .shop-modal-body{ grid-template-columns:1fr; }
    .shop-modal-visual .slab{ width:170px; }
  }

  /* ---------- SHOP: FILMSTRIP GALLERY ("more pictures", modal) ---------- */
  /* A strip of every photo for the card — front, back, both label sides —
     under the flip-slab. Click a frame to zoom it in the lightbox; the
     strip scrolls if there are more frames than fit. */
  .filmstrip{
    position:relative; width:100%; padding:12px 8px;
    background:linear-gradient(180deg, #0a1a13, #0c2119);
    border-radius:4px; box-shadow:inset 0 0 0 1px rgba(255,255,255,0.06);
  }
  .filmstrip::before, .filmstrip::after{
    content:""; position:absolute; left:6px; right:6px; height:5px;
    background-image:repeating-linear-gradient(90deg, var(--forest-deep) 0 5px, transparent 5px 11px);
  }
  .filmstrip::before{ top:3px; }
  .filmstrip::after{ bottom:3px; }
  .filmstrip-track{ display:flex; gap:8px; overflow-x:auto; padding:2px; scrollbar-width:none; }
  .filmstrip-track::-webkit-scrollbar{ display:none; }
  .filmstrip-frame{
    flex-shrink:0; width:50px; aspect-ratio:5/7; border-radius:3px; overflow:hidden; padding:0;
    border:1.5px solid rgba(255,255,255,0.12); cursor:pointer; background:none;
    opacity:0.55; transition:opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }
  .filmstrip-frame img{ width:100%; height:100%; object-fit:cover; display:block; }
  .filmstrip-frame:hover{ opacity:0.85; transform:translateY(-2px); }
  .filmstrip-frame.active{ opacity:1; border-color:var(--brass-bright); box-shadow:0 0 0 2px rgba(224,190,111,0.2); }
  .filmstrip-frame:focus-visible{ outline:2px solid var(--brass-bright); outline-offset:2px; }

  .gallery-trigger{
    display:flex; align-items:center; justify-content:center; gap:8px; width:100%;
    margin-top:10px; padding:10px 14px; border:1px solid var(--line); border-radius:3px; background:none;
    color:var(--cream-dim); font-family:'IBM Plex Mono', monospace; font-size:11px;
    letter-spacing:0.05em; text-transform:uppercase; transition:border-color 0.2s ease, color 0.2s ease;
  }
  .gallery-trigger svg{ width:14px; height:14px; flex-shrink:0; }
  .gallery-trigger:hover{ border-color:var(--brass); color:var(--brass-bright); }
  @media (prefers-reduced-motion: reduce){ .filmstrip-frame{ transition:none; } }

  /* ---------- LIGHTBOX ---------- */
  /* Single mode: one photo, full size, prev/next. Grid mode ("more photos"):
     every photo for the card at once. The overlay's .grid-mode class picks
     which one is visible. */
  .lightbox-overlay{
    display:none; position:fixed; inset:0; z-index:300;
    background:rgba(6,16,12,0.92); backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px);
    align-items:center; justify-content:center; padding:40px 24px;
  }
  .lightbox-overlay.open{ display:flex; }
  .lightbox-box{ position:relative; max-width:520px; width:100%; text-align:center; transition:max-width 0.2s ease; }
  .lightbox-overlay.grid-mode .lightbox-box{ max-width:640px; text-align:left; }
  .lightbox-overlay.grid-mode .lightbox-single{ display:none; }
  .lightbox-grid-wrap{ display:none; }
  .lightbox-overlay.grid-mode .lightbox-grid-wrap{ display:block; }
  .lightbox-grid-title{
    font-family:'IBM Plex Mono', monospace; font-size:11px; letter-spacing:0.08em; text-transform:uppercase;
    color:var(--brass-bright); margin-bottom:16px;
  }
  .lightbox-grid{
    display:grid; grid-template-columns:repeat(3,1fr); gap:10px;
    max-height:min(64vh, 520px); overflow-y:auto; padding-right:2px;
    scrollbar-width:thin; scrollbar-color:var(--brass) transparent;
  }
  .lightbox-grid-item{
    aspect-ratio:5/7; border-radius:5px; overflow:hidden; padding:0; cursor:pointer;
    border:1.5px solid rgba(255,255,255,0.14); transition:border-color 0.2s ease, transform 0.2s ease;
  }
  .lightbox-grid-item img{ width:100%; height:100%; object-fit:cover; display:block; }
  .lightbox-grid-item:hover{ border-color:var(--brass-bright); transform:translateY(-3px); }
  .lightbox-grid-item:focus-visible{ outline:2px solid var(--brass-bright); outline-offset:2px; }
  .lightbox-img-wrap{
    border-radius:6px; overflow:hidden; background:var(--forest-deep);
    box-shadow:0 40px 80px -20px rgba(0,0,0,0.7);
  }
  .lightbox-img-wrap img{ width:100%; height:auto; display:block; max-height:70vh; object-fit:contain; }
  .lightbox-caption{
    font-family:'IBM Plex Mono', monospace; font-size:11px; letter-spacing:0.05em; text-transform:uppercase;
    color:var(--cream-dim); margin-top:16px;
  }
  .lightbox-close{
    position:absolute; top:-46px; right:0; width:34px; height:34px; border-radius:50%;
    border:1px solid var(--line); color:var(--cream); background:var(--forest-deep);
    display:flex; align-items:center; justify-content:center; font-size:16px;
    transition:border-color 0.2s ease, color 0.2s ease; z-index:2;
  }
  .lightbox-close:hover{ border-color:var(--brass); color:var(--brass-bright); }
  .lightbox-nav{
    position:absolute; top:50%; transform:translateY(-50%); width:40px; height:40px; border-radius:50%;
    border:1px solid var(--line); background:rgba(12,33,25,0.75); color:var(--cream);
    display:flex; align-items:center; justify-content:center; font-size:18px;
    transition:border-color 0.2s ease, color 0.2s ease;
  }
  .lightbox-nav:hover{ border-color:var(--brass); color:var(--brass-bright); }
  .lightbox-prev{ left:-54px; }
  .lightbox-next{ right:-54px; }
  @media (max-width:640px){
    .lightbox-prev{ left:2px; }
    .lightbox-next{ right:2px; }
    .lightbox-close{ top:-42px; }
    .lightbox-grid{ grid-template-columns:repeat(2,1fr); }
  }
  @media (prefers-reduced-motion: reduce){
    .lightbox-box, .lightbox-grid-item{ transition:none; }
  }

  /* ---------- CART MODAL ---------- */
  .cart-modal{ max-width:560px; }
  .cart-items{ display:flex; flex-direction:column; gap:1px; background:var(--line); border:1px solid var(--line); border-radius:4px; overflow:hidden; margin-bottom:24px; max-height:340px; overflow-y:auto; }
  .cart-item{ background:var(--forest-deep); padding:12px 14px; display:flex; gap:12px; align-items:center; }
  .cart-item-img{ width:42px; height:58px; border-radius:3px; overflow:hidden; flex-shrink:0; }
  .cart-item-icon{
    width:100%; height:100%; display:flex; align-items:center; justify-content:center;
    background:var(--forest); color:var(--brass-bright);
  }
  .cart-item-icon svg{ width:20px; height:20px; }
  .cart-item-img img{ width:100%; height:100%; object-fit:cover; display:block; }
  .cart-item-info{ flex-grow:1; }
  .cart-item-info b{ display:block; font-size:13.5px; font-weight:600; }
  .cart-item-info span{ display:block; font-size:12px; color:var(--cream-dim); margin-top:2px; }
  .cart-item-price{ font-family:'IBM Plex Mono', monospace; font-size:13px; flex-shrink:0; }
  .cart-item-remove{
    width:22px; height:22px; border-radius:50%; border:1px solid var(--line); color:var(--cream-dim); font-size:14px;
    display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:border-color 0.2s ease, color 0.2s ease;
  }
  .cart-item-remove:hover{ border-color:#e08a6f; color:#e08a6f; }
  .cart-empty{ text-align:center; padding:36px 10px; color:var(--cream-dim); font-size:14px; }
  .cart-total-row{
    display:flex; justify-content:space-between; align-items:baseline; padding-top:16px; border-top:1px solid var(--line);
    margin-bottom:22px; font-family:'IBM Plex Mono', monospace; font-size:13px; color:var(--cream-dim);
  }
  .cart-total-row b{ font-family:'Fraunces', serif; font-size:22px; color:var(--brass-bright); font-weight:600; }

  /* ---------- CHAT WIDGET ---------- */
  .chat-widget{ position:fixed; right:24px; bottom:24px; z-index:400; }
  .chat-launcher{
    width:56px; height:56px; border-radius:50%; display:flex; align-items:center; justify-content:center;
    background:var(--brass); color:var(--forest-deep); box-shadow:0 14px 30px -10px rgba(0,0,0,0.5);
    transition:transform 0.2s ease, background 0.2s ease; position:relative;
  }
  .chat-launcher svg{ width:24px; height:24px; }
  .chat-launcher:hover{ transform:translateY(-3px); background:var(--brass-bright); }
  .chat-launcher::after{
    content:""; position:absolute; top:2px; right:2px; width:10px; height:10px; border-radius:50%;
    background:#5fbf7a; border:2px solid var(--forest-deep);
  }
  .chat-widget.open .chat-launcher{ display:none; }

  .chat-window{
    display:none; position:absolute; right:0; bottom:70px; width:340px; max-width:calc(100vw - 40px);
    height:460px; max-height:70vh; flex-direction:column;
    background:var(--forest-deep); border:1px solid var(--line); border-radius:10px;
    box-shadow:0 30px 60px -20px rgba(0,0,0,0.6); overflow:hidden;
  }
  .chat-widget.open .chat-window{ display:flex; }

  .chat-header{
    display:flex; align-items:center; justify-content:space-between; gap:10px;
    padding:16px 18px; background:linear-gradient(160deg, rgba(198,162,77,0.16), transparent);
    border-bottom:1px solid var(--line);
  }
  .chat-header b{ font-family:'Fraunces', serif; font-size:15px; color:var(--brass-bright); display:block; }
  .chat-header span{ font-size:11px; color:var(--cream-dim); }
  .chat-close{
    width:26px; height:26px; border-radius:50%; border:1px solid var(--line); color:var(--cream-dim);
    display:flex; align-items:center; justify-content:center; font-size:13px; flex-shrink:0;
    transition:border-color 0.2s ease, color 0.2s ease;
  }
  .chat-close:hover{ border-color:var(--brass); color:var(--brass-bright); }

  .chat-body{
    flex:1; overflow-y:auto; padding:16px 14px; display:flex; flex-direction:column; gap:10px;
    scrollbar-width:thin; scrollbar-color:var(--brass) transparent;
  }
  .chat-msg{ max-width:85%; font-size:13px; line-height:1.5; padding:10px 12px; border-radius:10px; }
  .chat-msg.bot{ align-self:flex-start; background:var(--forest); color:var(--cream); border-bottom-left-radius:2px; }
  .chat-msg.user{ align-self:flex-end; background:var(--brass); color:var(--forest-deep); border-bottom-right-radius:2px; }
  .chat-msg a{ color:var(--brass-bright); text-decoration:underline; }

  .chat-quick{ display:flex; flex-wrap:wrap; gap:6px; padding:0 14px 12px; }
  .chat-quick button{
    padding:6px 10px; border:1px solid var(--line); border-radius:20px; font-size:11px; color:var(--cream-dim);
    transition:border-color 0.2s ease, color 0.2s ease;
  }
  .chat-quick button:hover{ border-color:var(--brass); color:var(--brass-bright); }

  .chat-input-row{ display:flex; gap:8px; padding:12px; border-top:1px solid var(--line); }
  .chat-input-row input{
    flex:1; background:var(--forest); border:1px solid var(--line); border-radius:20px; padding:10px 14px;
    font-family:'Inter', sans-serif; font-size:13px; color:var(--cream); min-width:0;
  }
  .chat-input-row input:focus{ outline:none; border-color:var(--brass); }
  .chat-input-row button{
    width:36px; height:36px; border-radius:50%; background:var(--brass); color:var(--forest-deep);
    display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:background 0.2s ease;
  }
  .chat-input-row button:hover{ background:var(--brass-bright); }
  .chat-input-row button svg{ width:16px; height:16px; }

  @media (max-width:500px){
    .chat-widget{ right:16px; bottom:16px; }
    .chat-window{ width:calc(100vw - 32px); right:-8px; }
  }

  /* ============================================================================
     VENDING PAGE
     ============================================================================ */

  /* Shared text-left / content-right layout used by all three feature
     sections on this page, so the section-head text and its accompanying
     form/map/etc. sit in the same row instead of stacking with a lot of
     empty space between them. */
  .vending-split{
    display:grid; grid-template-columns:0.85fr 1.15fr; gap:56px; align-items:center;
  }
  .vending-split .section-head{ margin-bottom:0; }
  @media (max-width:900px){
    .vending-split{ grid-template-columns:1fr; gap:36px; }
  }
  .vending-vote-right{ display:flex; flex-direction:column; gap:28px; }

  /* ---------- Feature 1: request form ---------- */
  .vending-form{
    max-width:480px;
    background:linear-gradient(180deg, rgba(246,241,228,0.03), transparent);
    border:1px solid var(--line); border-radius:6px; padding:32px;
  }
  .vtype-toggle{
    display:flex; gap:1px; background:var(--line); border:1px solid var(--line);
    border-radius:4px; overflow:hidden; margin-bottom:22px;
  }
  .vtype-option{
    flex:1; position:relative; text-align:center; padding:12px; background:var(--forest-deep); cursor:pointer;
    font-family:'IBM Plex Mono', monospace; font-size:12px; letter-spacing:0.05em; text-transform:uppercase;
    color:var(--cream-dim); transition:background 0.2s ease, color 0.2s ease;
  }
  .vtype-option input{ position:absolute; opacity:0; pointer-events:none; }
  .vtype-option.checked{ background:linear-gradient(180deg, rgba(198,162,77,0.16), transparent); color:var(--brass-bright); }

  /* ---------- Feature 2: locations map ---------- */
  .vending-map-wrap{
    border:1px solid var(--line); border-radius:8px; overflow:hidden;
    max-width:560px; aspect-ratio:1/1;
  }
  #vendingMap{ width:100%; height:100%; display:flex; align-items:center; justify-content:center; background:var(--forest); }
  .vending-map-fallback{ max-width:320px; text-align:center; font-size:13px; color:var(--cream-dim); padding:0 20px; }
  /* The site resets img{max-width:100%} globally — Leaflet's map tiles are
     plain <img> elements too and need their own fixed sizing, or they
     render squashed/misaligned. Scoped back to normal here. */
  .leaflet-container img{ max-width:none; }
  .leaflet-container{ font-family:'Inter', sans-serif; background:var(--forest); }
  .leaflet-popup-content-wrapper, .leaflet-popup-tip{ background:var(--forest-deep); color:var(--cream); }
  .leaflet-popup-content{ font-family:'Fraunces', serif; font-size:14px; margin:10px 14px; }
  .vending-map-dot{
    width:16px; height:16px; border-radius:50%;
    background:var(--brass-bright); border:2px solid var(--forest-deep);
    box-shadow:0 0 0 2px rgba(224,190,111,0.4);
  }

  /* ---------- Feature 3: city vote / giveaway ---------- */

  /* Flip-klok — één doorlopende rechthoek met vier aaneensluitende vakjes
     (dagen/uren/minuten/seconden), gescheiden door dunne lijntjes in plaats
     van losse kaartjes met tussenruimte. */
  .flip-strip{
    display:flex; justify-content:center; width:fit-content;
    border:1px solid var(--brass); border-radius:8px; overflow:hidden;
    background:linear-gradient(180deg, var(--forest) 0%, var(--forest-deep) 100%);
    box-shadow:0 20px 40px -18px rgba(0,0,0,0.5);
  }
  .flip-cell{
    display:flex; flex-direction:column; align-items:center; gap:9px;
    padding:16px 14px; border-right:1px solid rgba(198,162,77,0.3);
  }
  .flip-cell:last-child{ border-right:none; }
  .flip-cell-label{
    font-family:'IBM Plex Mono', monospace; font-size:10px; letter-spacing:0.1em;
    text-transform:uppercase; color:var(--cream-dim);
  }
  .flip-card{ position:relative; width:58px; height:70px; perspective:600px; }
  .flip-cell:first-child .flip-card{ width:76px; } /* dagen kan 3 cijfers nodig hebben bij 6 maanden */
  .flip-card-inner{
    position:relative; width:100%; height:100%; transform-style:preserve-3d;
    transition:transform 0.55s cubic-bezier(.65,0,.35,1);
  }
  .flip-card-inner.flipped{ transform:rotateX(-180deg); }
  .flip-card-inner.no-transition{ transition:none; }
  .flip-face{
    position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
    font-family:'IBM Plex Mono', monospace; font-size:30px; font-weight:600; color:var(--brass-bright);
    background:#0F231C; border-radius:4px; backface-visibility:hidden; -webkit-backface-visibility:hidden;
  }
  .flip-face::after{ content:""; position:absolute; left:3px; right:3px; top:50%; height:1px; background:rgba(0,0,0,0.4); }
  .flip-front{ transform:rotateX(0deg); }
  .flip-back{ transform:rotateX(180deg); }
  @media (max-width:500px){
    .flip-card{ width:44px; height:54px; }
    .flip-cell:first-child .flip-card{ width:58px; }
    .flip-face{ font-size:22px; }
    .flip-cell{ padding:12px 8px; gap:6px; }
  }
  @media (prefers-reduced-motion: reduce){
    .flip-card-inner{ transition:none; }
  }

  #cityMessage{ max-width:480px; margin:0 auto 24px; text-align:center; }

  /* De poll — visueel los van het formulier erboven */
  .vote-poll{ margin-top:44px; padding-top:36px; border-top:1px solid var(--line); }
  .vote-poll h3{
    font-family:'Fraunces', serif; font-size:20px; font-weight:600; text-align:center; margin-bottom:24px;
  }

  /* "Kaarsjes"-grafiek — elke stad een staaf, hoogte naar rato van stemmen
     t.o.v. de koploper. De koploper krijgt een brass gloed zodat meteen
     duidelijk is welke stad er nu voor staat. */
  .vote-chart{
    display:flex; align-items:flex-end; justify-content:center; gap:14px;
    height:200px; max-width:560px; margin:0 auto 36px; padding:0 8px 12px;
    border-bottom:1px solid var(--line);
  }
  .vote-bar-col{
    display:flex; flex-direction:column; align-items:center; justify-content:flex-end;
    height:100%; flex:1; max-width:60px; min-width:32px;
  }
  .vote-bar-count{
    font-family:'IBM Plex Mono', monospace; font-size:12px; color:var(--cream-dim); margin-bottom:6px;
  }
  .vote-bar{
    width:100%; min-height:4px; border-radius:4px 4px 0 0;
    background:linear-gradient(180deg, rgba(198,162,77,0.55), rgba(198,162,77,0.12));
    border:1px solid var(--brass); border-bottom:none;
    transition:height 0.6s cubic-bezier(.34,1.4,.64,1);
  }
  .vote-bar-col.leading .vote-bar{
    background:linear-gradient(180deg, var(--brass-bright), rgba(224,190,111,0.3));
    box-shadow:0 0 18px rgba(224,190,111,0.45);
  }
  .vote-bar-col.leading .vote-bar-count{ color:var(--brass-bright); font-weight:600; }
  .vote-bar-city{
    margin-top:9px; font-family:'Fraunces', serif; font-size:12px; text-align:center; color:var(--cream-dim);
    max-width:70px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap;
  }
  .vote-bar-col.leading .vote-bar-city{ color:var(--cream); font-weight:600; }
  .vote-chart-empty{ text-align:center; color:var(--cream-dim); font-size:14px; padding:0 0 40px; }
  @media (max-width:500px){
    .vote-chart{ height:160px; gap:8px; }
    .vote-bar-city{ font-size:10px; max-width:50px; }
  }
  @media (prefers-reduced-motion: reduce){
    .vote-bar{ transition:none; }
  }

  .vote-list{
    display:flex; flex-direction:column; gap:1px; background:var(--line); border:1px solid var(--line);
    border-radius:4px; overflow:hidden; max-width:560px; margin:0 auto;
  }
  .vote-row{ display:flex; align-items:center; gap:14px; background:var(--forest-deep); padding:14px 18px; }
  .vote-city{ flex:1; font-family:'Fraunces', serif; font-weight:500; font-size:15px; }
  .vote-count{ font-family:'IBM Plex Mono', monospace; font-size:12px; color:var(--cream-dim); flex-shrink:0; }
  .vote-btn{
    flex-shrink:0; padding:7px 14px; border:1px solid var(--brass); border-radius:2px; color:var(--brass-bright);
    font-family:'IBM Plex Mono', monospace; font-size:11px; letter-spacing:0.04em; text-transform:uppercase;
    transition:background 0.2s ease, color 0.2s ease;
  }
  .vote-btn:hover:not(:disabled){ background:var(--brass); color:var(--forest-deep); }
  .vote-btn:disabled{ opacity:0.45; cursor:default; border-color:var(--line); color:var(--cream-dim); }
  .vote-row.flash{ animation:voteFlash 1.6s ease; }
  @keyframes voteFlash{
    0%, 100%{ background:var(--forest-deep); }
    30%{ background:rgba(198,162,77,0.18); }
  }
  .vote-empty{ text-align:center; color:var(--cream-dim); font-size:14px; padding:24px; }
  @media (max-width:500px){
    .vote-row{ flex-wrap:wrap; }
  }

  /* ============================================================================
     REVIEWS SECTION (index.html, bottom of page)
     ============================================================================ */
  /* This section's header needs more room than the site's usual 600px-capped
     .section-head, since the average rating now sits in the same row as the
     title rather than stacked below it. */
  .reviews-head{ max-width:none; }
  .reviews-title-row{
    display:flex; align-items:flex-start; justify-content:space-between; gap:24px; flex-wrap:wrap;
  }
  .reviews-title-row h2{ margin:0; }
  .reviews-average-col{ display:flex; flex-direction:column; align-items:flex-end; gap:14px; }
  .reviews-average{
    display:flex; align-items:baseline; justify-content:flex-end; gap:10px; flex-wrap:wrap; text-align:right;
  }
  .reviews-average-num{ font-family:'Fraunces', serif; font-size:36px; font-weight:600; color:var(--brass-bright); line-height:1; }
  .reviews-average-of{ font-family:'IBM Plex Mono', monospace; font-size:14px; color:var(--cream-dim); }
  .reviews-average-stars{ color:var(--brass-bright); font-size:16px; letter-spacing:2px; }
  .reviews-average-count{ font-family:'IBM Plex Mono', monospace; font-size:12px; color:var(--cream-dim); width:100%; text-align:right; }
  @media (max-width:600px){
    .reviews-title-row{ justify-content:flex-start; }
    .reviews-average-col{ align-items:flex-start; }
    .reviews-average{ justify-content:flex-start; text-align:left; }
    .reviews-average-count{ text-align:left; }
  }

  .reviews-write-btn{ margin-top:2px; }
  /* Continuous right-to-left marquee — the track holds every review rendered
     twice back to back (see renderReviewsTrack in JS); once it's scrolled
     past the width of one full set, it silently wraps back to 0, so the
     loop never has a visible seam. Drag it to pause and read at your own
     pace; it picks auto-scrolling back up shortly after you let go. */
  .reviews-carousel{ overflow:hidden; cursor:grab; user-select:none; }
  .reviews-carousel.dragging{ cursor:grabbing; }
  .reviews-track{ display:flex; gap:24px; width:max-content; will-change:transform; }
  .review-card{
    flex-shrink:0; width:320px;
    border:1px solid var(--line); border-radius:8px; padding:28px;
    background:linear-gradient(180deg, rgba(246,241,228,0.03), transparent);
    display:flex; flex-direction:column; gap:14px; min-height:180px;
  }
  .review-stars{ color:var(--brass-bright); font-size:16px; letter-spacing:2px; }
  .review-message{ color:var(--cream-dim); font-size:14.5px; line-height:1.65; flex:1; }
  .review-author{ font-family:'IBM Plex Mono', monospace; font-size:12px; color:var(--cream); }
  @media (max-width: 500px){
    .review-card{ width:260px; }
  }
  @media (prefers-reduced-motion: reduce){
    .reviews-track{ transition:none; }
  }

  /* Star picker — clickable 1-5 rating input, used in the write-a-review modal */
  .star-picker{ display:flex; gap:6px; }
  .star-btn{
    font-size:26px; line-height:1; color:var(--line); padding:2px; transition:color 0.15s ease, transform 0.15s ease;
  }
  .star-btn:hover{ transform:scale(1.15); }
  .star-btn.filled{ color:var(--brass-bright); }
