/* De homepage van Lunchroom De Zon. Zelfde kleuren als de kaart (style.css), met één lettertype voor de koppen. */

@font-face {
  font-family: "Fraunces";
  src: url("/letters/fraunces-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: optional;
}

:root {
  --room: #fbf7f0;
  --warm: #f4ecdf;
  --kaart: #ffffff;
  --inkt: #2b2621;
  --zacht: #6f6459;
  --zon: #e0913a;
  --zon-diep: #d27f25;
  --zon-tekst: #9c500c;
  --lijn: #ece3d6;
  --rand-veld: #d9ccbb;
  --fout: #a3361f;
  --licht-op-donker: #c9bdb0;

  --koppen: "Fraunces", Georgia, "Times New Roman", serif;
  --tekst: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px; --s5: 24px; --s6: 32px; --s7: 48px; --s8: 64px; --s9: 96px;
  --blok: clamp(4.5rem, 9vw, 8rem);

  --r-klein: 14px;
  --r: 18px;
  --r-rond: 999px;

  --schaduw: 0 1px 0 var(--lijn), 0 10px 30px rgba(43, 38, 33, 0.07);
  --schaduw-hoog: 0 1px 0 var(--lijn), 0 22px 48px rgba(43, 38, 33, 0.14);
  --zacht-uit: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (min-width: 900px) { html { scroll-padding-top: 88px; } }

body {
  font-family: var(--tekst);
  font-size: 1.0625rem;
  line-height: 1.55;
  background: var(--room);
  color: var(--inkt);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }

h1, h2, h3 {
  font-family: var(--koppen);
  font-weight: 600;
  overflow-wrap: break-word;
  hyphens: auto;
  text-wrap: balance;
}

a { color: inherit; }

svg {
  width: 1.25em;
  height: 1.25em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.verborgen { position: absolute; width: 0; height: 0; overflow: hidden; }

:focus-visible { outline: 3px solid var(--zon-tekst); outline-offset: 3px; border-radius: 6px; }

.rand { width: min(100% - 2 * var(--s5), 1180px); margin-inline: auto; }
@media (min-width: 768px) { .rand { width: min(100% - 2 * var(--s7), 1180px); } }

.naar-inhoud {
  position: absolute;
  left: var(--s3);
  top: -80px;
  z-index: 50;
  padding: var(--s3) var(--s4);
  border-radius: var(--r-klein);
  background: var(--inkt);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.naar-inhoud:focus { top: var(--s3); }

.voorbeeld {
  padding: var(--s2) var(--s4);
  background: var(--inkt);
  color: #ffd9a8;
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: center;
}

/* ---------- knoppen ---------- */
.knop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border: 0;
  border-radius: var(--r-rond);
  background: var(--zon);
  color: var(--inkt);
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s, box-shadow 0.2s, transform 0.2s var(--zacht-uit);
}
.knop svg { width: 20px; height: 20px; stroke-width: 2; }
.knop:active { transform: scale(0.98); }
@media (hover: hover) {
  .knop:hover { background: var(--zon-diep); }
  .knop:hover svg:last-child { transform: translateX(2px); }
}
.knop svg { transition: transform 0.2s var(--zacht-uit); }

.knop-licht { background: var(--kaart); box-shadow: inset 0 0 0 1.5px var(--rand-veld); }
@media (hover: hover) { .knop-licht:hover { background: var(--kaart); box-shadow: inset 0 0 0 1.5px var(--inkt); } }

.knop-donker { background: var(--inkt); color: #fff; }
@media (hover: hover) { .knop-donker:hover { background: #453c34; } }

.knop-klein { min-height: 44px; padding: 0 20px; font-size: 0.9375rem; }
.knop-vol { width: 100%; }

.tekstlink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--zon-tekst);
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
  cursor: pointer;
}
.tekstlink svg { width: 18px; height: 18px; stroke-width: 2; }
@media (hover: hover) { .tekstlink:hover { color: var(--inkt); } }

.bovenregel {
  margin-bottom: var(--s3);
  color: var(--zon-tekst);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.zacht { color: var(--zacht); }

/* ---------- kopbalk ---------- */
.kopbalk { position: relative; z-index: 20; background: var(--room); }
.kopbalk-binnen { display: flex; align-items: center; gap: var(--s5); min-height: 68px; }

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  font-family: var(--koppen);
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.logo b { font-weight: 600; color: var(--zon-tekst); }
.logo-zon { width: 30px; height: 30px; color: var(--zon); stroke-width: 2.2; }

.hoofdmenu { display: none; }
/* op de telefoon staan de knoppen al in beeld (en daarna in de actiebalk): de kopbalk blijft rustig */
@media (max-width: 899px) { .kopbalk .knop { display: none; } }

@media (min-width: 900px) {
  .kopbalk {
    position: sticky;
    top: 0;
    background: rgba(251, 247, 240, 0.84);
    -webkit-backdrop-filter: blur(14px) saturate(1.4);
    backdrop-filter: blur(14px) saturate(1.4);
    box-shadow: 0 1px 0 rgba(236, 227, 214, 0.9);
  }
  .kopbalk-binnen { min-height: 76px; }
  .hoofdmenu { display: flex; gap: var(--s6); }
  .hoofdmenu a {
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    padding: var(--s2) 0;
    background: linear-gradient(var(--zon), var(--zon)) left bottom / 0 2px no-repeat;
    transition: background-size 0.25s var(--zacht-uit);
  }
  .hoofdmenu a:hover { background-size: 100% 2px; }
}

/* ---------- 1. hero ---------- */
.hero-beeld img { width: 100%; height: auto; }

.hero-rand {
  position: relative;
  width: 100%;
  margin-top: -34px;
  padding: var(--s6) var(--s5) var(--s7);
  border-radius: 28px 28px 0 0;
  background: var(--room);
}

.hero h1 {
  font-size: clamp(2.5rem, 1.4rem + 4.6vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.hero-intro {
  margin-top: var(--s4);
  max-width: 34ch;
  color: var(--zacht);
  font-size: 1.125rem;
}

.knoppen { display: flex; flex-wrap: wrap; gap: var(--s3); margin-top: var(--s5); }
@media (max-width: 479px) { .hero .knoppen .knop { flex: 1 1 100%; } }

.hero-feiten {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s3) var(--s5);
  margin-top: var(--s5);
  font-size: 0.9375rem;
}

.sterren-regel { display: inline-flex; align-items: center; gap: var(--s2); text-decoration: none; }
@media (hover: hover) { .sterren-regel:hover span:last-child { text-decoration: underline; text-underline-offset: 3px; } }

.sterren { display: inline-flex; gap: 2px; }
.sterren svg { width: 17px; height: 17px; fill: var(--zon); stroke: none; }
.sterren svg.leeg { fill: var(--rand-veld); }

.nu-open { display: inline-flex; align-items: center; gap: var(--s2); min-height: 1.5em; color: var(--zacht); }
.nu-open:empty { display: none; }
.nu-open::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: #a79a8c; }
.nu-open[data-open="ja"]::before { background: #3f8f5a; box-shadow: 0 0 0 4px rgba(63, 143, 90, 0.16); }

@media (min-width: 900px) {
  .hero { position: relative; display: grid; min-height: clamp(560px, 80vh, 840px); overflow: hidden; }
  .hero-beeld { position: absolute; inset: 0; }
  .hero-beeld img { height: 100%; object-fit: cover; object-position: 70% 50%; animation: inzoomen 1.6s var(--zacht-uit) both; }
  /* licht verloop achter de tekst, zodat de foto rechts gewoon zichtbaar blijft */
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(251, 247, 240, 0.94) 0%, rgba(251, 247, 240, 0.8) 30%, rgba(251, 247, 240, 0) 58%);
  }
  .hero-rand {
    z-index: 1;
    display: flex;
    align-items: center;
    width: min(100% - 2 * var(--s7), 1180px);
    margin: 0 auto;
    padding: var(--s8) 0;
    border-radius: 0;
    background: none;
  }
  .hero-tekst { max-width: 560px; }
  .hero-intro { font-size: 1.25rem; }
}

@keyframes inzoomen { from { transform: scale(1.05); } }

/* ---------- 2. vertrouwensbalk ---------- */
.vertrouwen { border-block: 1px solid var(--lijn); background: var(--kaart); }
.vertrouwen-lijst {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s4) var(--s5);
  padding-block: var(--s5);
  list-style: none;
}
.vertrouwen-lijst li { display: flex; align-items: center; gap: var(--s3); font-size: 0.9375rem; font-weight: 600; line-height: 1.3; }
.vertrouwen-lijst svg { width: 24px; height: 24px; color: var(--zon-tekst); }
@media (max-width: 359px) { .vertrouwen-lijst { grid-template-columns: minmax(0, 1fr); gap: var(--s3); } }
@media (min-width: 900px) {
  .vertrouwen-lijst { grid-template-columns: repeat(4, minmax(0, 1fr)); padding-block: var(--s6); }
  .vertrouwen-lijst li { font-size: 1rem; }
}

/* ---------- blokken ---------- */
.blok { padding-block: var(--blok); }
.blok-warm { background: var(--warm); }

.blok-kop { margin-bottom: var(--s7); }
.blok h2 {
  max-width: 20ch;
  font-size: clamp(2rem, 1.35rem + 2.5vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.018em;
}
.blok-intro { margin-top: var(--s4); color: var(--zacht); }
.blok-kop-rij { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: var(--s4) var(--s6); }

/* ---------- 3. populair ---------- */
.populair { display: grid; gap: var(--s4); list-style: none; }
.gerecht-kaart {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: var(--s4);
  height: 100%;
  padding: var(--s3);
  border-radius: var(--r);
  background: var(--kaart);
  box-shadow: var(--schaduw);
  text-decoration: none;
  transition: transform 0.3s var(--zacht-uit), box-shadow 0.3s var(--zacht-uit);
}
.gerecht-kaart img { width: 100%; aspect-ratio: 1; border-radius: var(--r-klein); object-fit: cover; }
.gerecht-groep { color: var(--zacht); font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.gerecht-kaart h3 { margin-top: 2px; font-size: 1.3125rem; line-height: 1.2; }
.gerecht-prijs { display: flex; align-items: center; justify-content: space-between; gap: var(--s3); margin-top: var(--s2); }
.gerecht-prijs b { color: var(--zon-tekst); font-size: 1.125rem; font-variant-numeric: tabular-nums; }
.gerecht-prijs span { display: inline-flex; align-items: center; gap: 4px; color: var(--zacht); font-size: 0.875rem; font-weight: 600; }
.gerecht-prijs svg { width: 16px; height: 16px; }
.gerecht-kaart:active { transform: scale(0.99); }
@media (hover: hover) { .gerecht-kaart:hover { transform: translateY(-4px); box-shadow: var(--schaduw-hoog); } }

@media (min-width: 700px) {
  .populair { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s5); }
  .gerecht-kaart { grid-template-columns: minmax(0, 1fr); align-items: start; padding: var(--s3) var(--s3) var(--s5); }
  .gerecht-kaart img { aspect-ratio: 4 / 3; }
  .gerecht-kaart > div { padding-inline: var(--s3); }
}

/* ---------- 4. bestellen aan tafel ---------- */
.bestellen { display: grid; gap: var(--s7); }
.stappen { display: grid; gap: var(--s5); margin-top: var(--s6); list-style: none; }
.stappen li { display: grid; grid-template-columns: 56px minmax(0, 1fr); gap: var(--s4); align-items: start; }
.stap-teken {
  position: relative;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--kaart);
  box-shadow: var(--schaduw);
  color: var(--zon-tekst);
}
.stap-teken svg { width: 26px; height: 26px; }
.stap-teken small {
  position: absolute;
  top: -4px;
  right: -4px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--inkt);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}
.stappen h3 { font-size: 1.25rem; line-height: 1.25; }
.stappen p { margin-top: var(--s1); color: var(--zacht); }

.tafelkaart {
  justify-self: center;
  width: min(100%, 340px);
  padding: var(--s6) var(--s6) var(--s5);
  border-top: 6px solid var(--zon);
  border-radius: var(--r);
  background: var(--kaart);
  box-shadow: var(--schaduw-hoog);
  text-align: center;
}
.tafelkaart img { width: 190px; height: 190px; margin: 0 auto; image-rendering: pixelated; }
.tafelkaart figcaption { display: grid; gap: 2px; margin-top: var(--s4); }
.tafelkaart b { font-family: var(--koppen); font-size: 1.625rem; font-weight: 600; }
.tafelkaart span { color: var(--zacht); font-size: 0.9375rem; }
.tafelkaart .knop { margin-top: var(--s5); width: 100%; }

@media (min-width: 900px) {
  .bestellen { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); align-items: center; gap: var(--s8); }
  .tafelkaart { transform: rotate(-1.5deg); }
}

/* ---------- 5. verhaal ---------- */
.verhaal { display: grid; gap: var(--s6); }
.verhaal-beeld { width: 100%; aspect-ratio: 4 / 3; border-radius: var(--r); object-fit: cover; object-position: 50% 45%; }
.verhaal-tekst p:not(.bovenregel) { max-width: 40ch; margin-top: var(--s4); font-size: 1.1875rem; line-height: 1.6; }
.verhaal-tekst h2 + p { margin-top: var(--s5); }
@media (min-width: 900px) {
  .verhaal { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); align-items: center; gap: var(--s9); }
  .verhaal-beeld { aspect-ratio: 4 / 5; }
}

/* ---------- 6. groepen ---------- */
.groepen { display: grid; gap: var(--s6); }
.groepen-tekst > p:not(.bovenregel) { max-width: 46ch; margin-top: var(--s5); }
.kenmerken { display: grid; gap: var(--s3); margin: var(--s5) 0 var(--s6); list-style: none; font-weight: 600; }
.kenmerken li { display: flex; align-items: center; gap: var(--s3); }
.kenmerken svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  border-radius: 50%;
  background: var(--kaart);
  color: var(--zon-tekst);
  box-shadow: var(--schaduw);
}
.groepen-beeld { width: 100%; aspect-ratio: 3 / 2; border-radius: var(--r); object-fit: cover; }
@media (min-width: 900px) {
  .groepen { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); align-items: center; gap: var(--s8); }
}

/* ---------- 7. sfeer ---------- */
.galerij { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s3); }
.galerij img { width: 100%; height: 100%; border-radius: var(--r); object-fit: cover; }
.g-terras, .g-thee { grid-column: span 2; aspect-ratio: 4 / 3; }
.g-zaak, .g-koffie { aspect-ratio: 3 / 4; }
.g-thee { aspect-ratio: 16 / 10; object-position: 50% 62%; }
@media (min-width: 900px) {
  .galerij { grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr); grid-template-rows: repeat(2, 290px); gap: var(--s4); }
  .galerij img { aspect-ratio: auto; }
  .g-terras { grid-column: 1; grid-row: 1 / span 2; }
  .g-zaak { grid-column: 2; grid-row: 1 / span 2; }
  .g-koffie { grid-column: 3; grid-row: 1; }
  .g-thee { grid-column: 3; grid-row: 2; object-position: 50% 50%; }
}

/* ---------- 8. reviews ---------- */
.reviews-kop .cijfer { color: var(--zon-tekst); }
.reviews { display: grid; gap: var(--s4); list-style: none; }
.reviews li {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  padding: var(--s5) var(--s5) var(--s5);
  border-radius: var(--r);
  background: var(--kaart);
  box-shadow: var(--schaduw);
}
.reviews blockquote { font-size: 1.0625rem; line-height: 1.55; }
.reviews .wie { margin-top: auto; font-weight: 700; }
@media (min-width: 700px) { .reviews { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s5); } }
@media (min-width: 1100px) { .reviews { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* ---------- 9. vragen ---------- */
.vragen { display: grid; }
.vragenlijst { border-top: 1px solid var(--lijn); }
.vragenlijst details { border-bottom: 1px solid var(--lijn); }
.vragenlijst summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  padding: var(--s5) 0;
  font-size: 1.125rem;
  font-weight: 650;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}
.vragenlijst summary::-webkit-details-marker { display: none; }
.vragenlijst summary svg { width: 22px; height: 22px; color: var(--zon-tekst); transition: transform 0.3s var(--zacht-uit); }
.vragenlijst details[open] summary svg { transform: rotate(180deg); }
@media (hover: hover) { .vragenlijst summary:hover { color: var(--zon-tekst); } }
.vragenlijst details p { max-width: 60ch; padding-bottom: var(--s5); color: var(--zacht); }
@media (min-width: 900px) {
  .vragen { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: var(--s8); align-items: start; }
}

/* ---------- 10. slot ---------- */
.slot { padding-block: var(--s9) var(--s6); background: var(--inkt); color: #f3ebe0; }
.slot :focus-visible { outline-color: var(--zon); }
.slot-oproep { text-align: center; }
.slot-oproep h2 { font-size: clamp(2.25rem, 1.5rem + 3vw, 3.75rem); line-height: 1.05; letter-spacing: -0.02em; color: #fff; }
.slot-oproep p { margin-top: var(--s4); color: var(--licht-op-donker); font-size: 1.125rem; }
.slot-oproep .knoppen { justify-content: center; margin-top: var(--s6); }
.slot .knop-donker { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.4); }
@media (hover: hover) { .slot .knop-donker:hover { background: rgba(255, 255, 255, 0.08); box-shadow: inset 0 0 0 1.5px #fff; } }

.slot-info {
  display: grid;
  gap: var(--s6);
  margin-top: var(--s8);
  padding-top: var(--s7);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.slot-info h3 { margin-bottom: var(--s3); color: #fff; font-size: 1.25rem; }
.slot-info p + p { margin-top: var(--s3); }
.slot-info .zacht { color: var(--licht-op-donker); }
.slot-info .knop { margin-top: var(--s4); }
.tijden { display: grid; grid-template-columns: minmax(0, 1fr) auto; row-gap: var(--s2); max-width: 300px; }
.tijden dd { font-weight: 700; text-align: right; font-variant-numeric: tabular-nums; }
.tijden .vandaag { color: var(--zon); }
@media (min-width: 768px) { .slot-info { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s7); } }

.slot-onder {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s2) var(--s5);
  margin-top: var(--s8);
  color: var(--licht-op-donker);
  font-size: 0.875rem;
}

/* ---------- actiebalk (telefoon) ---------- */
.actiebalk {
  position: fixed;
  left: var(--s3);
  right: var(--s3);
  bottom: calc(var(--s3) + env(safe-area-inset-bottom));
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s2);
  padding: var(--s2);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--lijn), 0 16px 40px rgba(43, 38, 33, 0.2);
  transform: translateY(calc(100% + 40px));
  visibility: hidden;
  transition: transform 0.35s var(--zacht-uit), visibility 0.35s;
}
.actiebalk .knop { min-height: 50px; padding: 0 var(--s3); }
.actiebalk.zichtbaar { transform: none; visibility: visible; }
@media (min-width: 900px) { .actiebalk { display: none; } }

/* ---------- vensters (reserveren, groepslunch, vraag, bon) ---------- */
.venster {
  width: min(100% - 24px, 480px);
  max-width: none;
  max-height: calc(100dvh - 24px);
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: var(--kaart);
  color: var(--inkt);
  box-shadow: 0 30px 80px rgba(43, 38, 33, 0.35);
}
.venster::backdrop { background: rgba(43, 38, 33, 0.55); }
.venster[open] { animation: omhoog 0.35s var(--zacht-uit); }
@media (max-width: 599px) { .venster { margin: auto auto 12px; } }
@keyframes omhoog { from { transform: translateY(24px); opacity: 0; } }

.formulier, .bon { position: relative; padding: var(--s6) var(--s5) var(--s5); }
.venster h2 { margin-right: 52px; font-size: 1.75rem; line-height: 1.15; outline: none; }
.venster-intro { margin-top: var(--s2); color: var(--zacht); font-size: 0.9375rem; }

.sluit {
  position: absolute;
  top: var(--s4);
  right: var(--s4);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--room);
  color: var(--inkt);
  cursor: pointer;
}
.sluit svg { width: 20px; height: 20px; stroke-width: 2; }
@media (hover: hover) { .sluit:hover { background: var(--lijn); } }

.velden { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s4) var(--s3); margin-top: var(--s5); }
.velden label { display: grid; gap: 6px; font-size: 0.875rem; font-weight: 650; }
.velden .breed { grid-column: 1 / -1; }
.velden label .zacht { font-weight: 500; }

.velden select, .velden input, .velden textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 var(--s4);
  border: 1.5px solid var(--rand-veld);
  border-radius: var(--r-klein);
  background: var(--room);
  color: var(--inkt);
  font: inherit;
  font-size: 1rem;
  font-weight: 500;
}
.velden textarea { padding: var(--s3) var(--s4); resize: vertical; }
.velden select {
  appearance: none;
  padding-right: 40px;
  background: var(--room) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232b2621' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") right 14px center / 18px no-repeat;
}
.velden :is(select, input, textarea):focus-visible { outline: 3px solid var(--zon); outline-offset: 1px; border-color: var(--inkt); }
.velden [aria-invalid="true"] { border-color: var(--fout); }
.velden select:disabled { opacity: 0.6; cursor: not-allowed; }

.fout { margin-top: var(--s3); color: var(--fout); font-size: 0.9375rem; font-weight: 600; }
.hint { margin-top: var(--s3); color: var(--zacht); font-size: 0.9375rem; }
.formulier > .knop { margin-top: var(--s5); }

.bon-label {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--r-rond);
  background: var(--lijn);
  color: #5a5047;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.bon h2 { margin-top: var(--s4); }
.bon ul { margin: var(--s4) 0; list-style: none; }
.bon li { padding: var(--s2) 0; border-bottom: 1px dashed var(--rand-veld); }
.bon li:first-child { border-top: 1px dashed var(--rand-veld); }
.bon-uitleg { margin-bottom: var(--s5); color: var(--zacht); font-size: 0.9375rem; }

/* ---------- beweging bij het scrollen (alleen als het script het aanzet) ---------- */
.onthul { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--zacht-uit), transform 0.7s var(--zacht-uit); }
.onthul.in-beeld { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
