/* ============================================================
   COMO. Bakery & Brunch, Variant 2 · Performance
   Zelfde merk als variant 1, andere opbouw. Waar variant 1
   editorial blokken gebruikt, werkt deze variant met routestrips:
   de bezoeker kiest eerst waarvoor ze komt en de site richt zich
   daarna op dat pad.
   ============================================================ */

:root {
  --cream: #f5f2ec;
  --paper: #fffdfa;
  --greige: #cac5bf;
  --greige-soft: #e2ded8;
  --sage: #cdd3c2;
  --blush: #ead2d2;
  --rose: #d9adb1;            /* stoffig roze, alleen decoratief */
  --rose-wash: #faf1f0;       /* heel lichte rozewas voor sectievlakken */
  --ink: #2b2926;
  --ink-soft: #5f5b54;
  --muted: #6e6a62;
  --line: rgba(43, 41, 38, 0.12);
  --line-strong: rgba(43, 41, 38, 0.26);
  --accent: #9c2742;
  --accent-dark: #7d1c33;
  --accent-wash: rgba(156, 39, 66, 0.07);

  --font-display: "Outfit", "Century Gothic", sans-serif;
  --font-body: "Switzer", "Segoe UI", sans-serif;

  --step-hero: clamp(3rem, 8.2vw, 7.2rem);
  --step-1: clamp(2.05rem, 4.2vw, 3.4rem);
  --step-2: clamp(1.3rem, 2.3vw, 1.8rem);
  --step-3: clamp(1.08rem, 1.5vw, 1.24rem);

  --space-section: clamp(4rem, 8vw, 7rem);
  --gutter: clamp(1.25rem, 4vw, 3rem);

  --r-soft: 18px;
  --r-pill: 999px;
  --arch: 50% 50% var(--r-soft) var(--r-soft) / 34% 34% var(--r-soft) var(--r-soft);
  --shadow: 0 24px 60px -30px rgba(43, 41, 38, 0.35);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; top: -200%; left: 1rem; z-index: 300;
  background: var(--accent); color: #fff;
  padding: 0.7rem 1.1rem; border-radius: var(--r-pill); font-weight: 600;
}
.skip-link:focus { top: 1rem; }

.wrap { max-width: 1260px; margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: 860px; margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--space-section); }
.section-tight { padding-block: clamp(2.8rem, 5.5vw, 4.5rem); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300; line-height: 1.06; letter-spacing: -0.02em; text-wrap: balance;
}
.h-hero { font-size: var(--step-hero); }
.h-1 { font-size: var(--step-1); }
.h-2 { font-size: var(--step-2); letter-spacing: -0.01em; }
.h-3 { font-size: var(--step-3); font-weight: 400; letter-spacing: 0; line-height: 1.3; }
.lead { font-size: clamp(1.06rem, 1.4vw, 1.2rem); color: var(--ink-soft); max-width: 34em; }
.body-copy { color: var(--ink-soft); max-width: 60ch; }
.micro { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }
.eyebrow {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em; color: var(--accent);
  display: block; margin-bottom: 1rem;
}
.center { text-align: center; }
.center .lead, .center .body-copy { margin-inline: auto; }
.ph { border-bottom: 1px dashed var(--line-strong); color: var(--muted); font-style: normal; }

/* ---------- Knoppen ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.95rem 1.7rem; border-radius: var(--r-pill);
  font-weight: 600; font-size: 0.97rem; line-height: 1.25; white-space: nowrap;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn:active { transform: translateY(1px) scale(0.985); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost { border: 1px solid var(--line-strong); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn-arrow { transition: transform 0.25s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.link-line {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-weight: 600; color: var(--accent);
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
}
.link-line:hover .btn-arrow { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
/* Boven een cinematische hero staat de navigatie in crème */
body.hero-dark .site-header:not(.is-scrolled) { color: var(--cream); }
body.hero-dark .site-header:not(.is-scrolled) .brand img { filter: brightness(0) invert(1); }
body.hero-dark .site-header:not(.is-scrolled) .nav-toggle { border-color: rgba(245, 242, 236, 0.42); }
body.hero-dark .site-header:not(.is-scrolled) .nav-toggle span,
body.hero-dark .site-header:not(.is-scrolled) .nav-toggle span::before,
body.hero-dark .site-header:not(.is-scrolled) .nav-toggle span::after { background: var(--cream); }
.site-header.is-scrolled {
  background: rgba(245, 242, 236, 0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner {
  max-width: 1260px; margin-inline: auto; padding: 0.85rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  transition: padding 0.35s var(--ease);
}
.site-header.is-scrolled .header-inner { padding-block: 0.6rem; }
.brand img { width: 92px; height: auto; }
.nav-desktop { display: none; }
.nav-desktop ul { display: flex; align-items: center; gap: 1.7rem; }
.nav-desktop a { font-size: 0.94rem; font-weight: 500; position: relative; padding-block: 0.3rem; }
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-desktop a:hover::after, .nav-desktop a[aria-current="page"]::after { transform: scaleX(1); }
.header-cta { display: none; }

.nav-toggle {
  width: 46px; height: 46px; display: grid; place-items: center;
  border: 1px solid var(--line-strong); border-radius: var(--r-pill);
}
.nav-toggle span { display: block; width: 17px; height: 1.5px; background: var(--ink); position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 17px; height: 1.5px; background: var(--ink);
  transition: transform 0.3s var(--ease);
}
.nav-toggle span::before { top: -5px; }
.nav-toggle span::after { top: 5px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-5px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 99; background: var(--cream);
  padding: 6.5rem var(--gutter) 2.5rem;
  display: flex; flex-direction: column; justify-content: space-between;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}
.nav-mobile.is-open { opacity: 1; visibility: visible; transform: none; }
.nav-mobile ul { display: flex; flex-direction: column; gap: 0.35rem; }
.nav-mobile nav a {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(1.8rem, 7.5vw, 2.5rem); line-height: 1.25; display: block; padding-block: 0.3rem;
}
.nav-mobile-foot { display: grid; gap: 1rem; }
.nav-mobile-foot .btn { justify-content: center; }

/* ---------- Intentbalk: onthoudt waar de bezoeker voor kwam ---------- */
.intent-bar {
  display: none;
  position: fixed; left: 0; right: 0; top: 0; z-index: 98;
  background: var(--ink); color: var(--cream);
  padding-inline: var(--gutter);
  transform: translateY(-110%); visibility: hidden;
  transition: transform 0.4s var(--ease), visibility 0.4s;
}
.intent-bar.is-visible { transform: none; visibility: visible; }
.intent-inner {
  max-width: 1260px; margin-inline: auto;
  min-height: 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-size: 0.88rem;
}
.intent-inner p { margin: 0; }
.intent-inner b { font-weight: 600; }
.intent-inner .btn { padding: 0.68rem 1.15rem; font-size: 0.85rem; }
.intent-close {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28); flex: none; font-size: 1rem; line-height: 1;
}
.intent-close:hover { background: rgba(255, 255, 255, 0.12); }
body.intent-open .site-header { top: 0; }

/* ---------- Hero: schermvullend, met de routekeuze er direct in ---------- */
.hero {
  min-height: 100dvh;
  display: grid; align-items: end;
  position: relative; overflow: clip;
  padding-top: 8rem; padding-bottom: clamp(2rem, 5vh, 3.5rem);
}
.hero-media { position: absolute; inset: 0; z-index: -2; background: var(--greige-soft); }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 62% 40%;
  transform-origin: 62% 40%;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-media img { animation: hero-kenburns 26s ease-out both; }
  @keyframes hero-kenburns { from { scale: 1.14; } to { scale: 1.02; } }
}
/* Cinematische grond: diep mocha en bordeaux, geen grijs of zwart,
   zodat de hero filmisch wordt zonder mannelijk te worden. */
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 85% at 62% 38%, transparent 0%, rgba(38, 24, 26, 0.35) 52%, rgba(30, 19, 21, 0.82) 100%),
    linear-gradient(to top, rgba(28, 18, 20, 0.95) 0%, rgba(38, 24, 26, 0.72) 34%, rgba(60, 38, 40, 0.42) 66%, rgba(78, 52, 50, 0.28) 100%),
    linear-gradient(96deg, rgba(45, 24, 30, 0.68) 0%, rgba(45, 24, 30, 0.22) 46%, transparent 74%);
}
/* Filmkorrel, heel licht, tegen de digitale vlakheid */
.hero-grain {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  opacity: 0.5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.42'/%3E%3C/svg%3E");
}


.hero-inner { width: 100%; position: relative; z-index: 1; }
.hero-words { display: block; margin-bottom: 1.3rem; }
.hero-words .line { display: block; overflow: hidden; }
.hero-words .line > span { display: inline-block; }
.hero-words .line:nth-child(2) > span { color: var(--accent); }
.hero-sub { max-width: 30em; }

/* De drie bezoekredenen staan meteen in beeld, dat is de kern van deze variant */
.hero-routes { display: grid; gap: 0.7rem; margin-top: clamp(1.8rem, 4vh, 2.8rem); }
.hero-route {
  position: relative;
  display: flex; align-items: center; gap: 0.95rem;
  padding: 0.85rem 1.1rem 0.85rem 0.85rem;
  border-radius: 16px;
  background: rgba(28, 18, 20, 0.42);
  backdrop-filter: blur(14px) saturate(1.1); -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border: 1px solid rgba(245, 242, 236, 0.18);
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.hero-route:hover {
  background: rgba(245, 242, 236, 0.96); border-color: transparent;
  transform: translateY(-3px); color: var(--ink);
}
.hero-route:hover small { color: var(--ink-soft); }
.hero-route img {
  flex: none; width: 52px; height: 62px; object-fit: cover;
  border-radius: 26px 26px 7px 7px / 22px 22px 7px 7px;
}
.hero-route div { min-width: 0; }
.hero-route b {
  display: block; font-family: var(--font-display);
  font-size: 1.08rem; font-weight: 400; letter-spacing: -0.01em; line-height: 1.2;
}
.hero-route small { display: block; font-size: 0.85rem; color: rgba(245, 242, 236, 0.74); line-height: 1.45; margin-top: 0.15rem; transition: color 0.3s var(--ease); }
.hero-route .btn-arrow { margin-left: auto; flex: none; color: var(--blush); font-weight: 700; }
.hero-route:hover .btn-arrow { color: var(--accent); }
.hero-route:hover .btn-arrow { transform: translateX(4px); }

.hero-meta {
  margin-top: 1.6rem; font-size: 0.86rem; color: var(--ink-soft);
  display: flex; flex-wrap: wrap; gap: 0.3rem 1.8rem;
}
.hero-meta b { color: var(--ink); font-weight: 600; }

@media (prefers-reduced-motion: no-preference) {
  .hero-words .line > span { transform: translateY(112%); animation: hero-rise 0.95s var(--ease) forwards; }
  .hero-words .line:nth-child(2) > span { animation-delay: 0.11s; }
  @keyframes hero-rise { to { transform: translateY(0); } }
  .hero-sub, .hero-routes, .hero-meta { opacity: 0; animation: hero-fade 0.85s var(--ease) forwards; }
  .hero-sub { animation-delay: 0.36s; }
  .hero-routes { animation-delay: 0.5s; }
  .hero-meta { animation-delay: 0.68s; }
  @keyframes hero-fade { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .hero-media img {
      scale: 1.12;
      animation: hero-parallax linear both;
      animation-timeline: view(block);
      animation-range: exit 0% exit 100%;
    }
    @keyframes hero-parallax { to { transform: translateY(8%); } }
  }
}

/* ---------- Paginahero op de subpagina's ---------- */
.page-hero {
  min-height: 58dvh;
  display: grid; align-items: end;
  position: relative; overflow: clip;
  padding-top: 7rem; padding-bottom: clamp(2rem, 4.5vh, 3.2rem);
}
.page-hero .hero-media img { object-position: center 42%; }
.page-hero .h-hero { font-size: clamp(2.5rem, 6.6vw, 5.2rem); }
.page-hero .lead { margin-top: 1rem; }

/* ---------- Matcher en funnel ---------- */
.funnel {
  background: var(--paper); border-radius: var(--r-soft);
  padding: clamp(1.5rem, 4vw, 2.4rem);
}
.funnel-head {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  margin-bottom: 1.4rem;
}
.funnel-count { font-size: 0.82rem; font-weight: 600; color: var(--muted); letter-spacing: 0.04em; }
.funnel-bar { height: 3px; border-radius: var(--r-pill); background: var(--greige-soft); overflow: hidden; margin-bottom: 1.6rem; }
.funnel-bar span { display: block; height: 100%; background: var(--accent); width: 0; transition: width 0.45s var(--ease); }
.funnel-step { display: none; }
.funnel-step.is-active { display: block; animation: stepin 0.4s var(--ease) both; }
@keyframes stepin { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.funnel-step > .h-2 { margin-bottom: 1.2rem; }
.options { display: grid; gap: 0.6rem; }
.option {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: 100%; text-align: left;
  padding: 1rem 1.2rem; border-radius: 14px;
  border: 1px solid var(--line-strong); background: var(--paper);
  font-size: 1rem; font-weight: 500;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.option:hover { border-color: var(--ink); background: var(--greige-soft); }
.option.is-selected { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.option small { display: block; font-weight: 400; font-size: 0.85rem; opacity: 0.72; margin-top: 0.15rem; }
.funnel-back {
  margin-top: 1rem; margin-left: -0.9rem;
  padding: 0.6rem 0.9rem;
  font-size: 0.88rem; font-weight: 600; color: var(--muted);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.funnel-back:hover { color: var(--ink); }
.funnel-done, .form-done { display: none; }
.funnel-done.is-visible, .form-done.is-visible { display: block; }
.done-card { background: var(--sage); border-radius: var(--r-soft); padding: clamp(1.6rem, 4vw, 2.4rem); }
.done-card .h-2 { margin-bottom: 0.7rem; }
.done-card p { color: var(--ink-soft); }

.matcher-result { display: none; }
.matcher-result.is-visible { display: block; animation: stepin 0.5s var(--ease) both; }
.matcher-card {
  background: var(--blush); border-radius: var(--r-soft);
  padding: clamp(1.5rem, 4vw, 2.2rem);
}
.matcher-card .h-2 { margin-bottom: 0.6rem; }
.matcher-card p { color: var(--ink-soft); margin-bottom: 1.4rem; }

/* ---------- Kaart met filters ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.filter {
  padding: 0.55rem 1.05rem; border-radius: var(--r-pill);
  border: 1px solid var(--line-strong); background: var(--paper);
  font-size: 0.9rem; font-weight: 500;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.filter:hover { border-color: var(--ink); }
.filter.is-active { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.card-grid { display: grid; gap: 1.1rem; }
.card {
  background: var(--paper); border-radius: var(--r-soft); overflow: hidden;
  display: flex; flex-direction: column;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.card[hidden] { display: none; }
.card-media { aspect-ratio: 4 / 3; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.card:hover .card-media img { transform: scale(1.04); }
.card-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.card-body p { color: var(--ink-soft); font-size: 0.96rem; }
.card-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: auto; padding-top: 0.6rem; }
.tag {
  font-size: 0.78rem; font-weight: 600;
  padding: 0.32rem 0.72rem; border-radius: var(--r-pill);
  background: var(--rose-wash); color: var(--ink-soft);
  border: 1px solid rgba(217, 173, 177, 0.45);
}
.card--sage { background: var(--sage); }
.card--blush { background: var(--blush); }

/* ---------- Placeholderpaneel ---------- */
.placeholder {
  border: 1px dashed var(--line-strong); border-radius: var(--r-soft);
  padding: 1.4rem 1.5rem; background: rgba(255, 253, 250, 0.6); margin-top: 1.6rem;
}
.placeholder-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); display: block; margin-bottom: 0.9rem;
}
.price-row { display: flex; align-items: baseline; gap: 0.75rem; padding-block: 0.55rem; color: var(--muted); }
.price-row + .price-row { border-top: 1px solid var(--line); }
.price-row .dots { flex: 1; border-bottom: 1px dotted var(--line-strong); transform: translateY(-4px); }

/* ---------- Beeld ---------- */
.arch { border-radius: var(--arch); overflow: hidden; background: var(--greige-soft); }
.arch img { width: 100%; height: 100%; object-fit: cover; }
.split { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split-media .arch { aspect-ratio: 4 / 5; }
.band-media { aspect-ratio: 16 / 9; overflow: hidden; border-radius: var(--r-soft); }
.band-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Bezwaren als kaartjes ---------- */
.objections { display: grid; gap: 0.9rem; }
.objection {
  background: var(--paper); border-radius: 14px; padding: 1.3rem 1.4rem;
}
.objection h3 { font-size: 1.02rem; font-weight: 500; margin-bottom: 0.35rem; }
.objection p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Verwachtingen ---------- */
.steps { display: grid; gap: 1.3rem; margin-top: 2rem; }
.step { display: flex; gap: 1.05rem; align-items: flex-start; }
.step-num {
  flex: none; width: 32px; height: 32px; border-radius: 50%;
  background: var(--rose-wash); color: var(--accent);
  border: 1px solid rgba(217, 173, 177, 0.5);
  display: grid; place-items: center; font-size: 0.85rem; font-weight: 700;
}
.step h3 { font-size: 1rem; font-weight: 500; margin-bottom: 0.2rem; }
.step p { color: var(--ink-soft); font-size: 0.94rem; }

/* ---------- Formulier ---------- */
.form { display: grid; gap: 1.15rem; }
.field { display: grid; gap: 0.45rem; }
.field label { font-size: 0.86rem; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; padding: 0.85rem 1rem;
  border: 1px solid var(--line-strong); border-radius: 12px;
  background: var(--paper); color: var(--ink); width: 100%;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #6e6a62; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-wash);
}
.field-hint { font-size: 0.82rem; color: var(--muted); }
.field-error { font-size: 0.85rem; color: var(--accent-dark); font-weight: 600; }
.form-row { display: grid; gap: 1.15rem; }
.form-trust { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.86rem; color: var(--muted); line-height: 1.6; }

/* ---------- Reserveringsmodule ---------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.chip {
  padding: 0.6rem 1.05rem; border-radius: var(--r-pill);
  border: 1px solid var(--line-strong); background: var(--paper);
  font-size: 0.93rem; font-weight: 500;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.chip:hover:not(:disabled) { border-color: var(--ink); }
.chip.is-active { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.chip:disabled { opacity: 0.35; cursor: not-allowed; }
.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(78px, 1fr)); gap: 0.5rem; }
.slot {
  padding: 0.6rem 0.3rem; border-radius: 12px;
  border: 1px solid var(--line-strong); background: var(--paper);
  font-size: 0.93rem; font-weight: 500; text-align: center;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.slot:hover:not(:disabled) { border-color: var(--ink); }
.slot.is-active { background: var(--accent); border-color: var(--accent); color: #fff; }
.slot:disabled { opacity: 0.3; cursor: not-allowed; }
.res-status { font-size: 0.92rem; color: var(--muted); }
.res-summary { background: var(--greige-soft); border-radius: 12px; padding: 1rem 1.15rem; font-size: 0.95rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #d9d5cf; padding-block: clamp(3.5rem, 7vw, 5rem) 2rem; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; gap: 2.5rem; }
.footer-brand img { width: 110px; margin-bottom: 1.1rem; }
.footer-brand p { font-size: 0.95rem; max-width: 30ch; color: #b3aea7; }
.footer-col h3 {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: #a09a92; margin-bottom: 0.9rem;
}
.footer-col li + li { margin-top: 0.45rem; }
.footer-col a, .footer-col p { font-size: 0.95rem; }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between;
  font-size: 0.84rem; color: #a09a92;
}

/* ---------- Sticky CTA mobiel ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: rgba(245, 242, 236, 0.95);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  padding: 0.7rem var(--gutter) calc(0.7rem + env(safe-area-inset-bottom));
  display: flex; gap: 0.6rem; transform: translateY(110%);
  transition: transform 0.35s var(--ease);
}
.sticky-cta.is-visible { transform: none; }
.sticky-cta .btn { flex: 1; justify-content: center; padding-inline: 0.9rem; font-size: 0.92rem; }
body.has-sticky-cta .site-footer { padding-bottom: 6rem; }

/* ---------- Reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); transition-delay: calc(var(--i, 0) * 80ms); }
  .reveal.is-inview { opacity: 1; transform: none; }
  .reveal-arch { clip-path: inset(0 0 100% 0); transition: clip-path 1s var(--ease); transition-delay: calc(var(--i, 0) * 80ms); }
  .reveal-arch.is-inview { clip-path: inset(0 0 0 0); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .funnel-step.is-active, .matcher-result.is-visible { animation: none; }
  .card:hover .card-media img, .route:hover .route-thumb img { transform: none; }
}

/* ---------- Breakpoints ---------- */
@media (min-width: 620px) {
  .hero-routes { grid-template-columns: repeat(3, 1fr); }
  .intent-bar { display: block; }
  body.intent-open .site-header { top: 56px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .objections { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 760px) {
  .form-row-2 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .nav-desktop { display: block; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .sticky-cta { display: none; }
  body.has-sticky-cta .site-footer { padding-bottom: 2rem; }
  .split { grid-template-columns: 0.9fr 1.1fr; }
  .split-reverse .split-media { order: 2; }
  .card-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

/* ---------- Openingstijden ---------- */
.hours { display: grid; gap: 0.3rem; max-width: 24rem; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; color: var(--ink-soft); font-size: 0.97rem; }
.hours .closed { color: var(--muted); }
.hours .today { color: var(--ink); font-weight: 600; }


/* ============================================================
   Cinematische hero: alles wat op de donkere grond staat.
   Staat achteraan zodat het van de basisregels wint.
   ============================================================ */
body.hero-dark .hero { color: var(--cream); }
body.hero-dark .hero .h-hero { font-weight: 200; }
body.hero-dark .hero .hero-words .line:nth-child(2) > span { color: #f0cfd2; }
body.hero-dark .hero .hero-sub { color: rgba(245, 242, 236, 0.84); }
body.hero-dark .hero .hero-meta { color: rgba(245, 242, 236, 0.72); }
body.hero-dark .hero .hero-meta b { color: var(--cream); }
body.hero-dark .hero .btn-ghost { border-color: rgba(245, 242, 236, 0.45); color: var(--cream); }
body.hero-dark .hero .btn-ghost:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

/* ---------- Lopende band: geeft de pagina beweging zonder ruis ---------- */
.marquee {
  overflow: hidden; border-block: 1px solid var(--line);
  padding-block: 1.1rem; background: var(--paper);
}
.marquee-track {
  display: flex; gap: 3rem; width: max-content;
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(1.4rem, 3vw, 2.2rem); letter-spacing: -0.01em;
  color: var(--ink-soft);
}
.marquee-track span { display: flex; align-items: center; gap: 3rem; white-space: nowrap; }
.marquee-track span::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--rose); }
@media (prefers-reduced-motion: no-preference) {
  .marquee-track { animation: marquee 34s linear infinite; }
  @keyframes marquee { to { transform: translateX(-50%); } }
}

/* ---------- Gerechtenraster ---------- */
.food-grid { display: grid; gap: 0.7rem; grid-template-columns: repeat(2, 1fr); }
.food {
  position: relative; border-radius: var(--r-soft); overflow: hidden;
  background: var(--greige-soft);
}
.food img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 4; transition: transform 0.9s var(--ease); }
.food:hover img { transform: scale(1.05); }
.food-cap {
  position: absolute; inset: auto 0 0 0; padding: 3rem 1.2rem 1.2rem;
  background: linear-gradient(to top, rgba(28, 18, 20, 0.85), transparent);
  color: var(--cream);
}
.food-cap b { display: block; font-family: var(--font-display); font-weight: 400; font-size: 1.15rem; letter-spacing: -0.01em; }
.food-cap span { font-size: 0.86rem; color: rgba(245, 242, 236, 0.82); }
.food--wide img { aspect-ratio: 16 / 10; }

/* ---------- Mozaiek ---------- */
.mosaic { display: grid; gap: 0.6rem; grid-template-columns: repeat(2, 1fr); grid-auto-rows: minmax(120px, auto); }
.mosaic a, .mosaic figure { position: relative; overflow: hidden; border-radius: 12px; background: var(--greige-soft); margin: 0; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.mosaic a:hover img { transform: scale(1.06); }
.m-tall { grid-row: span 2; }
.m-wide { grid-column: span 2; }
.mosaic-foot { display: flex; flex-wrap: wrap; gap: 0.8rem 1.5rem; align-items: center; justify-content: space-between; margin-top: 1.5rem; }

@media (min-width: 620px) {
  .food-grid { gap: 1rem; }
  .food--wide { grid-column: span 2; }
  .mosaic { grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(150px, auto); }
}
@media (min-width: 1024px) {
  .food-grid { grid-template-columns: repeat(4, 1fr); }
  .food--wide { grid-column: span 2; }
  .mosaic { grid-template-columns: repeat(6, 1fr); grid-auto-rows: minmax(160px, auto); }
}

/* ---------- Tekst op getinte vlakken ----------
   Blush en sage zijn donkerder dan crème, daar haalt de zachte inkt de
   contrastnorm niet meer. Op die vlakken gebruiken we de volle inkt. */
.card--sage p, .card--blush p,
.done-card p,
.matcher-card p { color: var(--ink); }
.ph { color: var(--ink-soft); }

/* De navigatie staat in crème op de cinematische hero. Zonder deze smalle
   verdonkering haalt hij op de lichtste plek net de contrastnorm niet. */
body.hero-dark .hero::before {
  content: ""; position: absolute; inset: 0 0 auto 0;
  height: 170px; z-index: -1; pointer-events: none;
  background: linear-gradient(to bottom, rgba(28, 18, 20, 0.5), rgba(28, 18, 20, 0.18) 55%, transparent);
}

/* ---------- De kaart met echte gerechten en prijzen ---------- */
.kaart-groepen { display: grid; gap: clamp(2rem, 4vw, 3rem); }
.kaart-groep { break-inside: avoid; }
.kaart-kop {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem); letter-spacing: -0.01em;
  padding-bottom: 0.6rem; margin-bottom: 0.9rem;
  border-bottom: 1px solid var(--line-strong);
}
.kaart-note {
  font-size: 0.85rem; color: var(--ink-soft);
  margin: -0.4rem 0 1rem; max-width: 46ch;
}
.kaart-lijst { display: grid; gap: 0.15rem; }
.kaart-regel {
  display: grid; grid-template-columns: 1fr auto auto;
  align-items: baseline; gap: 0.5rem;
  padding-block: 0.5rem;
}
.kaart-regel + .kaart-regel { border-top: 1px solid var(--line); }
.kaart-naam { color: var(--ink); font-weight: 500; }
.kaart-naam small {
  display: block; font-weight: 400; font-size: 0.85rem;
  color: var(--ink-soft); line-height: 1.45; margin-top: 0.1rem; max-width: 44ch;
}
.kaart-stip { border-bottom: 1px dotted var(--line-strong); align-self: center; min-width: 1.5rem; }
.kaart-prijs { font-variant-numeric: tabular-nums; font-weight: 600; white-space: nowrap; }
.kaart-prijs::before { content: "\20AC\00A0"; font-weight: 400; color: var(--muted); }

@media (min-width: 900px) {
  .kaart-groepen-2 { grid-template-columns: repeat(2, 1fr); column-gap: clamp(2.5rem, 5vw, 4.5rem); }
}

/* ---------- Gangen op de filterbare kaart ---------- */
.kaart-gangen { display: grid; gap: clamp(3rem, 6vw, 4.5rem); }
.kaart-gang[hidden] { display: none; }
.kaart-gang-kop {
  display: grid; gap: 1.1rem; align-items: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.2rem);
}
.kaart-gang-beeld {
  margin: 0; overflow: hidden; border-radius: var(--r-soft);
  background: var(--greige-soft); aspect-ratio: 4 / 3;
}
.kaart-gang-beeld img { width: 100%; height: 100%; object-fit: cover; }
.kaart-gang-kop h2 { margin-bottom: 0.5rem; }

@media (min-width: 760px) {
  .kaart-gang-kop { grid-template-columns: 240px 1fr; gap: 1.8rem; }
}
