/* ============================================================
   Aristé, Arnhem
   Art direction uit hun eigen zaak: het creme en het warme bruin
   komen uit hun eigen merk, het matchagroen uit hun drankjes.
   Layoutlogica: het doek. In de zaak hangt de kaart op twee linnen
   doeken aan een stang. Dat is hier het layoutsysteem geworden.
   Letters: Gambetta voor de koppen, Switzer voor de tekst.
   Vormsysteem: alles scherp, radius nul. Ook de knoppen.
   ============================================================ */

:root {
  --linnen: #ede3d9;        /* hun eigen creme */
  --linnen-licht: #f6f0e9;
  --wit: #fcfaf7;
  --espresso: #3d2e24;      /* hun eigen warme bruin */
  --espresso-zacht: #6a5648;
  --gedempt: #6f5c4d;
  --matcha: #4f6029;        /* het accent, uit de matcha zelf */
  --matcha-diep: #3a4a1b;
  --matcha-was: #e6e9d8;
  --lijn: rgba(61, 46, 36, 0.14);
  --lijn-sterk: rgba(61, 46, 36, 0.32);

  --font-display: "Gambetta", Georgia, serif;
  --font-body: "Switzer", "Segoe UI", sans-serif;

  --stap-hero: clamp(2.9rem, 6.6vw, 5.8rem);
  --stap-1: clamp(1.9rem, 3.8vw, 3rem);
  --stap-2: clamp(1.25rem, 2.1vw, 1.7rem);

  --sectie: clamp(4rem, 7.5vw, 6.5rem);
  --marge: clamp(1.25rem, 4vw, 3.25rem);
  --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(--wit);
  color: var(--espresso);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.68;
  -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(--matcha); color: #fff; }
:focus-visible { outline: 2px solid var(--matcha); outline-offset: 3px; }

.overslaan {
  position: absolute; top: -200%; left: 1rem; z-index: 300;
  background: var(--espresso); color: var(--linnen-licht);
  padding: 0.7rem 1.1rem; font-weight: 600;
}
.overslaan:focus { top: 1rem; }

.omhulsel { max-width: 1240px; margin-inline: auto; padding-inline: var(--marge); }
.smal { max-width: 760px; margin-inline: auto; padding-inline: var(--marge); }
.sectie { padding-block: var(--sectie); }
.sectie-kort { padding-block: clamp(2.6rem, 5vw, 4.2rem); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400; line-height: 1.06; letter-spacing: -0.012em; text-wrap: balance;
}
.h-hero { font-size: var(--stap-hero); }
.h-1 { font-size: var(--stap-1); }
.h-2 { font-size: var(--stap-2); }
.lead { font-size: clamp(1.05rem, 1.3vw, 1.18rem); color: var(--espresso-zacht); max-width: 34em; }
.tekst { color: var(--espresso-zacht); max-width: 60ch; }
.klein { font-size: 0.86rem; color: var(--gedempt); line-height: 1.6; }
.opschrift {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em; color: var(--matcha);
  display: block; margin-bottom: 0.9rem;
}
.nog-in-te-vullen {
  background: #e6e5d6;
  border-bottom: 1px dashed var(--matcha);
  color: var(--espresso-zacht);
  padding: 0.08em 0.34em;
}
.voet .nog-in-te-vullen { background: #4b3a2e; border-bottom-color: #8a7a63; color: #ded4c8; }
.voet .klein { color: #c3b8a9; }

/* ---------- Knoppen: scherp, geen ronding ---------- */
.knop {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.95rem 1.6rem; line-height: 1.25;
  font-weight: 600; font-size: 0.95rem; white-space: nowrap;
  transition: transform 0.2s var(--ease), background-color 0.24s var(--ease), color 0.24s var(--ease), border-color 0.24s var(--ease);
}
.knop:active { transform: translateY(1px); }
.knop-vol { background: var(--espresso); color: var(--linnen-licht); }
.knop-vol:hover { background: var(--matcha-diep); }
.knop-lijn { border: 1px solid var(--lijn-sterk); color: var(--espresso); }
.knop-lijn:hover { background: var(--espresso); color: var(--linnen-licht); border-color: var(--espresso); }
.pijl { transition: transform 0.22s var(--ease); }
.knop:hover .pijl { transform: translateX(4px); }
.knoprij { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.tekstlink {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: 600; color: var(--matcha-diep);
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
}
.tekstlink:hover .pijl { transform: translateX(4px); }

/* ---------- Kop ---------- */
.kop {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.kop.is-scrolled {
  background: rgba(252, 250, 247, 0.93);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--lijn);
}
.kop-binnen {
  max-width: 1240px; margin-inline: auto; padding: 0.85rem var(--marge);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  transition: padding 0.35s var(--ease);
}
.kop.is-scrolled .kop-binnen { padding-block: 0.6rem; }
.merk {
  font-family: var(--font-display); font-size: 1.5rem; line-height: 1;
  letter-spacing: 0.01em; display: inline-flex; align-items: center; min-height: 40px;
}
.nav-groot { display: none; }
.nav-groot ul { display: flex; align-items: center; gap: 1.7rem; }
.nav-groot a {
  font-size: 0.92rem; font-weight: 500; position: relative;
  display: inline-flex; align-items: center; min-height: 40px;
}
.nav-groot a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 8px; height: 1px;
  background: var(--matcha); transform: scaleX(0); transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.nav-groot a:hover::after, .nav-groot a[aria-current="page"]::after { transform: scaleX(1); }
.kop-knop { display: none; }

.nav-schakel {
  width: 46px; height: 46px; display: grid; place-items: center;
  border: 1px solid var(--lijn-sterk);
}
.nav-schakel span { display: block; width: 17px; height: 1.5px; background: var(--espresso); position: relative; }
.nav-schakel span::before, .nav-schakel span::after {
  content: ""; position: absolute; left: 0; width: 17px; height: 1.5px; background: var(--espresso);
  transition: transform 0.28s var(--ease);
}
.nav-schakel span::before { top: -5px; }
.nav-schakel span::after { top: 5px; }
.nav-schakel[aria-expanded="true"] span { background: transparent; }
.nav-schakel[aria-expanded="true"] span::before { transform: translateY(5px) rotate(45deg); }
.nav-schakel[aria-expanded="true"] span::after { transform: translateY(-5px) rotate(-45deg); }

.nav-klein {
  position: fixed; inset: 0; z-index: 99; background: var(--linnen);
  padding: 6.5rem var(--marge) 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-klein.is-open { opacity: 1; visibility: visible; transform: none; }
.nav-klein nav ul { display: flex; flex-direction: column; gap: 0.2rem; }
.nav-klein nav a {
  font-family: var(--font-display); font-size: clamp(1.9rem, 8vw, 2.6rem);
  line-height: 1.25; display: block; padding-block: 0.3rem;
}
.nav-klein-voet { display: grid; gap: 1rem; }
.nav-klein-voet .knop { justify-content: center; }

/* ---------- De hero: gesplitst, tekst op linnen naast de gevel ---------- */
.hero { position: relative; min-height: 100dvh; display: grid; }
.hero-linnen {
  background: var(--linnen);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 7.5rem var(--marge) clamp(2.2rem, 5vh, 3.4rem);
  position: relative; z-index: 1;
}
.hero-beeld { position: relative; overflow: clip; background: var(--espresso); min-height: 44dvh; }
.hero-beeld img { width: 100%; height: 100%; object-fit: cover; object-position: center 46%; }
.hero-woorden { display: block; margin-bottom: 1.1rem; }
.hero-woorden .regel { display: block; overflow: hidden; }
.hero-woorden .regel > span { display: inline-block; }
.hero-woorden .regel:nth-child(2) > span { font-style: italic; color: var(--matcha-diep); }
.hero-onder { max-width: 27em; color: var(--espresso-zacht); }
.hero-acties { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.7rem; }
.hero-feiten {
  margin-top: 1.9rem; padding-top: 1.2rem; border-top: 1px solid var(--lijn-sterk);
  display: flex; flex-wrap: wrap; gap: 0.35rem 1.9rem;
  font-size: 0.86rem; color: var(--espresso-zacht);
}
.hero-feiten b { color: var(--espresso); font-weight: 600; }

@media (prefers-reduced-motion: no-preference) {
  .hero-woorden .regel > span { transform: translateY(112%); animation: opkomen 0.95s var(--ease) forwards; }
  .hero-woorden .regel:nth-child(2) > span { animation-delay: 0.11s; }
  @keyframes opkomen { to { transform: translateY(0); } }
  .hero-onder, .hero-acties, .hero-feiten { opacity: 0; animation: opdoemen 0.85s var(--ease) forwards; }
  .hero-onder { animation-delay: 0.36s; }
  .hero-acties { animation-delay: 0.5s; }
  .hero-feiten { animation-delay: 0.64s; }
  @keyframes opdoemen { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
  .hero-beeld img { animation: inzoomen 24s ease-out both; }
  @keyframes inzoomen { from { scale: 1.1; } to { scale: 1.01; } }
}

/* ---------- Paginakop ---------- */
.pagina-kop {
  background: var(--linnen);
  padding: 8.5rem var(--marge) clamp(2.5rem, 5vw, 4rem);
}
.pagina-kop-binnen { max-width: 1240px; margin-inline: auto; }
.pagina-kop .h-hero { font-size: clamp(2.3rem, 5.6vw, 4.4rem); }
.pagina-kop .hero-onder { margin-top: 0.9rem; max-width: 34em; }

/* ---------- Het doek: hun kaart hangt op linnen ---------- */
.doek {
  background: var(--linnen);
  padding: clamp(2rem, 4.5vw, 3.4rem) clamp(1.4rem, 4vw, 3rem) clamp(2.4rem, 5vw, 3.8rem);
  position: relative;
  box-shadow: 0 18px 40px -30px rgba(61, 46, 36, 0.55);
}
.doek::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: var(--espresso-zacht);
}
.doek-groepen { display: grid; gap: clamp(2rem, 4vw, 3rem); }
.doek-groep h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-bottom: 1.1rem;
}
.doek-groep li {
  display: grid; grid-template-columns: 1fr auto; gap: 1rem;
  padding-block: 0.42rem; align-items: baseline;
}
.doek-groep li + li { border-top: 1px solid rgba(61, 46, 36, 0.1); }
.doek-groep .naam small { display: block; font-size: 0.83rem; color: var(--espresso-zacht); }
.doek-groep .prijs { font-variant-numeric: tabular-nums; font-weight: 600; }
.doek-noot { margin-top: 2.4rem; font-size: 0.85rem; color: var(--espresso-zacht); max-width: 56ch; }

/* ---------- Routes ---------- */
.routes { display: grid; gap: 1px; background: var(--lijn); border-block: 1px solid var(--lijn); }
.route {
  position: relative; background: var(--wit);
  padding: clamp(1.4rem, 3vw, 2rem);
  display: flex; flex-direction: column; gap: 0.5rem;
  transition: background-color 0.28s var(--ease);
}
.route:hover { background: var(--linnen-licht); }
.route b { font-family: var(--font-display); font-weight: 400; font-size: 1.35rem; line-height: 1.2; }
.route p { font-size: 0.92rem; color: var(--espresso-zacht); }
.route .pijl { color: var(--matcha-diep); font-weight: 700; margin-top: 0.4rem; }
.route a::after { content: ""; position: absolute; inset: 0; }

/* ---------- De routes als menuregel, in het stramien van het doek ---------- */
.routelijst { border-top: 1px solid var(--lijn-sterk); }
.routelijst li { border-bottom: 1px solid var(--lijn); }
.routelijst a {
  display: grid; grid-template-columns: 1fr auto; align-items: baseline;
  gap: 0.2rem 1.5rem; padding: 1.1rem 0; min-height: 44px;
  transition: color 0.24s var(--ease);
}
.routelijst a:hover { color: var(--matcha-diep); }
.routelijst-naam { font-family: var(--font-display); font-size: clamp(1.3rem, 2.6vw, 1.9rem); line-height: 1.15; }
.routelijst-uitleg { grid-column: 1; font-size: 0.92rem; color: var(--espresso-zacht); max-width: 54ch; }
.routelijst .pijl { grid-row: 1 / span 2; align-self: center; color: var(--matcha-diep); font-weight: 700; }
.routelijst a:hover .pijl { transform: translateX(4px); }

.vandaag-regel[hidden] { display: none; }
.vandaag-regel {
  display: inline-flex; align-items: center; gap: 0.45rem;
  margin-top: 1.5rem; font-weight: 600; color: var(--matcha-diep);
}
.vandaag-regel::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--matcha); flex: none; }
.hero-feiten .vandaag[hidden] { display: none; }
.hero-feiten .vandaag { display: inline-flex; align-items: center; gap: 0.45rem; color: var(--espresso); font-weight: 700; }
.hero-feiten .vandaag::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--matcha); flex: none; }

/* ---------- Beeldblokken ---------- */
.splitsing { display: grid; gap: clamp(1.8rem, 4vw, 3.4rem); align-items: center; }
.splitsing > figure { margin: 0; overflow: hidden; background: var(--linnen); }
.splitsing > figure img { width: 100%; height: 100%; object-fit: cover; }
.band { overflow: hidden; aspect-ratio: 16 / 9; background: var(--linnen); }
.band img { width: 100%; height: 100%; object-fit: cover; }

.drieluik { display: grid; gap: 0.55rem; grid-template-columns: repeat(3, 1fr); }
.drieluik figure { margin: 0; overflow: hidden; background: var(--linnen); aspect-ratio: 3 / 4; }
.drieluik img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.drieluik figure:hover img { transform: scale(1.04); }
.drieluik figcaption { font-size: 0.82rem; color: var(--gedempt); margin-top: 0.5rem; }

/* ---------- Drankenrij op beige ---------- */
.dranken { display: grid; gap: 1rem; }
.drank { background: var(--linnen); padding: 1rem 1rem 1.4rem; text-align: center; }
.drank img { margin-inline: auto; width: 100%; max-width: 260px; aspect-ratio: 1; object-fit: contain; }
.drank b { display: block; font-family: var(--font-display); font-weight: 400; font-size: 1.25rem; margin-top: 0.9rem; }
.drank span { display: block; font-size: 0.88rem; color: var(--espresso-zacht); margin-top: 0.2rem; }
.drank .prijs { font-weight: 600; color: var(--espresso); font-variant-numeric: tabular-nums; margin-top: 0.5rem; }

/* ---------- Reviews ---------- */
.score { display: flex; align-items: baseline; gap: 0.7rem; }
.score b { font-family: var(--font-display); font-size: clamp(2.6rem, 5.5vw, 4rem); font-weight: 400; line-height: 1; }
.reviews { display: grid; gap: 1px; background: var(--lijn); border-block: 1px solid var(--lijn); }
.review { background: var(--wit); padding: clamp(1.3rem, 3vw, 1.9rem); }
.review blockquote { font-family: var(--font-display); font-size: 1.06rem; line-height: 1.5; }
.review figcaption { margin-top: 0.9rem; font-size: 0.84rem; color: var(--gedempt); }

/* ---------- Stappen ---------- */
.stappen { display: grid; gap: 1.2rem; margin-top: 1.7rem; }
.stap { display: flex; gap: 1rem; align-items: flex-start; }
.stap-nr {
  flex: none; width: 28px; height: 28px; background: var(--matcha-was); color: var(--matcha-diep);
  display: grid; place-items: center; font-size: 0.82rem; font-weight: 700;
}
.stap h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; margin-bottom: 0.15rem; }
.stap p { color: var(--espresso-zacht); font-size: 0.94rem; }

/* ---------- Feiten ---------- */
.feiten { display: grid; gap: 1px; background: var(--lijn); border: 1px solid var(--lijn); }
.feit { background: var(--wit); padding: 1.3rem 1.4rem; }
.feit h3 { font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gedempt); margin-bottom: 0.5rem; }
.feit p, .feit li { color: var(--espresso-zacht); font-size: 0.95rem; }

/* ---------- Formulieren en trechter ---------- */
.paneel { background: var(--linnen-licht); border: 1px solid var(--lijn); padding: clamp(1.4rem, 4vw, 2.2rem); }
.paneel-kop { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.1rem; }
.teller { font-size: 0.8rem; font-weight: 600; color: var(--gedempt); letter-spacing: 0.05em; }
.balk { height: 2px; background: var(--lijn); overflow: hidden; margin-bottom: 1.6rem; }
.balk span { display: block; height: 100%; background: var(--matcha); width: 0; transition: width 0.45s var(--ease); }
[data-step] { display: none; }
[data-step].is-active { display: block; }
@media (prefers-reduced-motion: no-preference) {
  [data-step].is-active { animation: stapin 0.4s var(--ease) both; }
  @keyframes stapin { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
}
[data-step] > .h-2 { margin-bottom: 1rem; }
.keuzes { display: grid; gap: 0.5rem; }
.keuze {
  display: block; width: 100%; text-align: left;
  padding: 0.9rem 1.1rem; border: 1px solid var(--lijn-sterk); background: var(--wit);
  font-size: 1rem; font-weight: 500;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.keuze:hover { border-color: var(--matcha); background: var(--matcha-was); }
.keuze.is-selected { background: var(--matcha-diep); border-color: var(--matcha-diep); color: var(--linnen-licht); }
.keuze small { display: block; font-weight: 400; font-size: 0.85rem; opacity: 0.8; margin-top: 0.1rem; }
.terug {
  margin-top: 1rem; margin-left: -0.9rem; padding: 0.6rem 0.9rem;
  font-size: 0.87rem; font-weight: 600; color: var(--gedempt);
  display: inline-flex; align-items: center; gap: 0.4rem; min-height: 40px;
}
.terug:hover { color: var(--espresso); }
[data-funnel-done], [data-form-done] { display: none; }
[data-funnel-done].is-visible, [data-form-done].is-visible { display: block; }
.gereed { background: var(--matcha-was); padding: clamp(1.4rem, 4vw, 2.1rem); }
.gereed .h-2 { margin-bottom: 0.5rem; }
.gereed p { color: var(--espresso-zacht); }

.veld { display: grid; gap: 0.4rem; }
.veld label { font-size: 0.86rem; font-weight: 600; }
.veld input, .veld select, .veld textarea {
  font: inherit; font-size: 1rem; padding: 0.8rem 0.95rem;
  border: 1px solid var(--lijn-sterk); background: var(--wit); color: var(--espresso); width: 100%;
}
.veld textarea { min-height: 110px; resize: vertical; }
.veld input::placeholder, .veld textarea::placeholder { color: var(--gedempt); }
.veld input:focus, .veld select:focus, .veld textarea:focus {
  outline: none; border-color: var(--matcha); box-shadow: 0 0 0 3px rgba(79, 96, 41, 0.14);
}
.veld-fout { font-size: 0.86rem; color: #8f2b1c; font-weight: 600; }
.formulier { display: grid; gap: 1rem; }
.rij { display: grid; gap: 1rem; }
.vertrouwen { display: flex; gap: 0.55rem; align-items: flex-start; font-size: 0.85rem; color: var(--gedempt); line-height: 1.6; }

/* ---------- Openingstijden ---------- */
.tijden { display: grid; gap: 0.3rem; max-width: 26rem; }
.tijden li { display: flex; justify-content: space-between; gap: 1rem; color: var(--espresso-zacht); font-size: 0.97rem; }
.tijden .dicht { color: var(--gedempt); }
.tijden .is-today { color: var(--espresso); font-weight: 600; }

/* ---------- Vragen ---------- */
.vragen { border-top: 1px solid var(--lijn); }
.vragen > div { border-bottom: 1px solid var(--lijn); }
.vragen button {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 1.15rem 0; font-size: 1.02rem; font-weight: 600; line-height: 1.4; min-height: 40px;
}
.vragen button::after {
  content: ""; flex: none; width: 11px; height: 11px; margin-right: 2px;
  border-right: 1.6px solid var(--matcha); border-bottom: 1.6px solid var(--matcha);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.3s var(--ease);
}
.vragen .is-open button::after { transform: rotate(225deg) translate(-2px, -2px); }
.vragen .antwoord { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.vragen .is-open .antwoord { max-height: 34rem; }
.vragen .antwoord p { color: var(--espresso-zacht); padding-bottom: 1.2rem; max-width: 60ch; }

/* ---------- Voet ---------- */
.voet { background: var(--espresso); color: rgba(237, 227, 217, 0.78); padding-block: clamp(3rem, 6vw, 4.4rem) 2rem; }
.voet a:hover { color: var(--linnen); }
.voet .merk { color: var(--linnen); }
.voet-raster { display: grid; gap: 2.2rem; }
.voet-merk p { font-size: 0.94rem; max-width: 30ch; margin-top: 1rem; }
.voet-kolom h3 { font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(237, 227, 217, 0.58); margin-bottom: 0.8rem; }
.voet-kolom li + li { margin-top: 0.15rem; }
.voet-kolom li a { display: inline-flex; align-items: center; min-height: 44px; }
.voet .tijden li { min-height: 34px; align-items: center; }
.voet-kolom a, .voet-kolom p { font-size: 0.94rem; }
.voet .tijden li { color: rgba(237, 227, 217, 0.78); }
.voet .tijden .dicht { color: rgba(237, 227, 217, 0.5); }
.voet .tijden .is-today { color: var(--linnen); font-weight: 600; }
.voet .nog-in-te-vullen { color: rgba(237, 227, 217, 0.78); border-bottom-color: rgba(237, 227, 217, 0.4); }
.voet-onder {
  margin-top: 2.6rem; padding-top: 1.4rem; border-top: 1px solid rgba(237, 227, 217, 0.18);
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between;
  font-size: 0.83rem; color: rgba(237, 227, 217, 0.62);
}

/* ---------- Sticky balk ---------- */
.sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: rgba(252, 250, 247, 0.96);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--lijn);
  padding: 0.6rem var(--marge) calc(0.6rem + env(safe-area-inset-bottom));
  display: flex; gap: 0.5rem; transform: translateY(110%);
  transition: transform 0.35s var(--ease);
}
.sticky.is-visible { transform: none; }
.sticky .knop { flex: 1; justify-content: center; padding-inline: 0.8rem; font-size: 0.9rem; }
body.heeft-sticky .voet { padding-bottom: 6rem; }

/* ---------- Verschijnen ---------- */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); transition-delay: calc(var(--i, 0) * 80ms); }
  [data-reveal].is-inview { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .drieluik figure:hover img { transform: none; }
}

/* ---------- Breekpunten ---------- */
@media (min-width: 620px) {
  .rij-2 { grid-template-columns: 1fr 1fr; }
  .dranken { grid-template-columns: repeat(3, 1fr); }
  .feiten { grid-template-columns: repeat(2, 1fr); }
  .routes { grid-template-columns: repeat(3, 1fr); }
  .reviews { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .nav-groot { display: block; }
  .kop-knop { display: inline-flex; }
  .nav-schakel { display: none; }
  .sticky { display: none; }
  body.heeft-sticky .voet { padding-bottom: 2rem; }
  .hero { grid-template-columns: 1.02fr 0.98fr; }
  .hero-beeld { min-height: 100dvh; }
  .splitsing { grid-template-columns: 1fr 1fr; }
  .splitsing-om > figure { order: 2; }
  .feiten { grid-template-columns: repeat(4, 1fr); }
  .doek-groepen-2 { grid-template-columns: 1fr 1fr; column-gap: clamp(2.5rem, 5vw, 4.5rem); }
  .voet-raster { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

/* Op mobiel moeten tekst en gevel samen in het eerste scherm passen,
   anders zie je bij binnenkomst alleen tekst. */
@media (max-width: 1023px) {
  .hero { grid-template-rows: 1fr auto; }
  .hero-linnen { padding-top: 6rem; }
  .hero-beeld { min-height: 32dvh; max-height: 36dvh; }
  .hero-beeld img { object-position: center 62%; }
}
