/* Schoonheidssalon Mooi, Baflo
   Palet en typografie afgeleid van het logo: olijfgroene cirkel met blaadjestak
   op warm wit. Olijf draagt de site, linnen geeft rust, messing is het kleine
   accent. Het blaadjestakje is het signatuurelement. */

:root {
  --olijf-diep: #3D4630;
  --olijf: #5A6342;
  --olijf-licht: #7E8A62;
  --salie: #C3CDB0;
  --salie-zacht: #E2E7D6;
  --linnen: #FAF7F0;
  --room: #F2EFE5;
  --wit: #FFFFFF;
  --inkt: #23261E;
  --inkt-zacht: #5B6052;
  --messing: #9C7F45;

  --rand: 1px solid rgba(90, 99, 66, 0.16);
  --schaduw: 0 1px 2px rgba(35, 38, 30, .04), 0 8px 24px -12px rgba(35, 38, 30, .16);
  --schaduw-hoog: 0 2px 4px rgba(35, 38, 30, .05), 0 20px 46px -20px rgba(35, 38, 30, .28);

  --rond: 14px;
  --rond-klein: 8px;

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

  --wrap: 1140px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
}

/* ---------- basis ---------- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--linnen);
  color: var(--inkt);
  font-family: var(--sans);
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.14;
  letter-spacing: -.012em;
  margin: 0 0 .55em;
  color: var(--olijf-diep);
}

h1 { font-size: clamp(2.15rem, 1.5rem + 3.1vw, 3.65rem); }
h2 { font-size: clamp(1.6rem, 1.25rem + 1.7vw, 2.35rem); }
h3 { font-size: clamp(1.2rem, 1.08rem + .55vw, 1.42rem); font-weight: 400; }
h4 { font-size: 1.05rem; font-weight: 600; font-family: var(--sans); letter-spacing: .01em; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--olijf); text-underline-offset: .18em; text-decoration-thickness: 1px; }
a:hover { color: var(--olijf-diep); }

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

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

ul, ol { padding-left: 1.15em; margin: 0 0 1.1em; }
li { margin-bottom: .38em; }

strong { font-weight: 700; }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--olijf-diep);
  color: var(--linnen);
  padding: .8rem 1.2rem;
  z-index: 200;
}
.skip:focus { left: .6rem; top: .6rem; }

.wrap {
  width: min(var(--wrap), 100%);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wrap--smal { width: min(760px, 100%); }

.sr {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- signatuur: het blaadjestakje ---------- */

.sprig { color: var(--olijf-licht); flex: none; }

.streep {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin: 0 0 1.6rem;
  color: var(--olijf-licht);
}
.streep::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--salie), transparent);
}

.label {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--messing);
  margin: 0 0 .7rem;
}

/* ---------- knoppen ---------- */

.knop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: .01em;
  line-height: 1.2;
  padding: .95rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid var(--olijf-diep);
  background: var(--olijf-diep);
  color: var(--linnen);
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.knop:hover {
  background: var(--olijf);
  border-color: var(--olijf);
  color: var(--linnen);
  transform: translateY(-2px);
  box-shadow: var(--schaduw);
}

.knop--rand {
  background: transparent;
  color: var(--olijf-diep);
  border-color: rgba(90, 99, 66, .38);
}
.knop--rand:hover { background: var(--salie-zacht); color: var(--olijf-diep); border-color: var(--olijf); }

.knop--licht {
  background: var(--linnen);
  color: var(--olijf-diep);
  border-color: var(--linnen);
}
.knop--licht:hover { background: var(--salie); color: var(--olijf-diep); border-color: var(--salie); }

.knop--klein { padding: .68rem 1.15rem; font-size: .9rem; }

.knoppen {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.8rem;
}

/* ---------- header ---------- */

.kop {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 240, .93);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: var(--rand);
}

.kop__in {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
}

.kop__logo { flex: none; display: block; line-height: 0; }
.kop__logo img { width: auto; height: 34px; }

.kop__nav { margin-left: auto; }
.kop__nav ul {
  display: flex;
  align-items: center;
  gap: clamp(.7rem, 1.4vw, 1.55rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.kop__nav li { margin: 0; }
.kop__nav a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--inkt);
  text-decoration: none;
  padding: .35rem 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.kop__nav a:hover { color: var(--olijf); border-bottom-color: var(--salie); }
.kop__nav a[aria-current="page"] { color: var(--olijf-diep); border-bottom-color: var(--messing); }

.kop__cta { flex: none; }

.kop__toggle {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: .55rem;
  background: transparent;
  border: 1.5px solid rgba(90, 99, 66, .3);
  border-radius: 999px;
  padding: .5rem .9rem;
  font-family: var(--sans);
  font-size: .88rem;
  font-weight: 700;
  color: var(--olijf-diep);
  cursor: pointer;
}
.kop__bars, .kop__bars::before, .kop__bars::after {
  display: block;
  width: 17px;
  height: 1.8px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.kop__bars { position: relative; }
.kop__bars::before, .kop__bars::after { content: ""; position: absolute; left: 0; }
.kop__bars::before { top: -5.5px; }
.kop__bars::after { top: 5.5px; }
[aria-expanded="true"] .kop__bars { background: transparent; }
[aria-expanded="true"] .kop__bars::before { transform: translateY(5.5px) rotate(45deg); }
[aria-expanded="true"] .kop__bars::after { transform: translateY(-5.5px) rotate(-45deg); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  background: var(--room);
  border-bottom: var(--rand);
  overflow: hidden;
}
.hero__foto {
  position: absolute;
  inset: 0;
  background: url("/assets/blad-hero.jpg") right center / cover no-repeat;
  opacity: .85;
}
.hero__foto::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, var(--linnen) 0 34%, rgba(250, 247, 240, .82) 52%, rgba(250, 247, 240, .1) 78%);
}
.hero__in {
  position: relative;
  padding-block: clamp(3rem, 8vw, 6.5rem);
  max-width: 44rem;
}
.hero h1 { margin-bottom: .5em; }
.hero__lead {
  font-size: clamp(1.06rem, 1rem + .38vw, 1.24rem);
  color: var(--inkt-zacht);
  max-width: 34rem;
}
.hero__plaats {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--wit);
  border: var(--rand);
  border-radius: 999px;
  padding: .42rem 1rem .42rem .7rem;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--olijf);
  margin-bottom: 1.5rem;
}

.hero__punten {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: .55rem;
  max-width: 33rem;
}
.hero__punten li {
  position: relative;
  padding-left: 1.7rem;
  margin: 0;
  font-size: .98rem;
  color: var(--inkt-zacht);
}
.hero__punten li::before {
  content: "";
  position: absolute;
  left: 0; top: .58em;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--salie);
  border: 2px solid var(--olijf-licht);
}

/* ---------- secties ---------- */

.sectie { padding-block: clamp(3rem, 7vw, 5.5rem); }
.sectie--room { background: var(--room); }
.sectie--olijf { background: var(--olijf-diep); color: var(--salie-zacht); }
.sectie--olijf h2, .sectie--olijf h3 { color: var(--linnen); }
.sectie--olijf .label { color: var(--salie); }
.sectie--olijf a { color: var(--linnen); }
.sectie--rand { border-top: var(--rand); }

.sectie__kop { max-width: 46rem; margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }
.sectie__kop p { color: var(--inkt-zacht); }
.sectie--olijf .sectie__kop p { color: var(--salie-zacht); }

.pagina-kop {
  background: var(--room);
  border-bottom: var(--rand);
  padding-block: clamp(2.4rem, 6vw, 4.2rem);
}
.pagina-kop p { max-width: 44rem; color: var(--inkt-zacht); font-size: 1.08rem; }

.kruimels {
  font-size: .84rem;
  color: var(--inkt-zacht);
  margin-bottom: 1.1rem;
}
.kruimels a { color: var(--inkt-zacht); }
.kruimels span { padding-inline: .4rem; opacity: .5; }

/* ---------- raster en kaarten ---------- */

.raster { display: grid; gap: clamp(1rem, 2.2vw, 1.6rem); }
.raster--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 21rem), 1fr)); }
.raster--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }
.raster--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr)); }

.kaart {
  background: var(--wit);
  border: var(--rand);
  border-radius: var(--rond);
  padding: clamp(1.3rem, 2.6vw, 1.9rem);
  display: flex;
  flex-direction: column;
  box-shadow: var(--schaduw);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.kaart h3 { margin-bottom: .45em; }
.kaart p { color: var(--inkt-zacht); font-size: .97rem; }
.kaart__prijs {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--messing);
  margin-bottom: .6rem;
}
.kaart__link {
  margin-top: auto;
  padding-top: 1rem;
  font-weight: 700;
  font-size: .94rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.kaart__link::after { content: "\203A"; font-size: 1.25em; line-height: 1; }
a.kaart { text-decoration: none; color: inherit; }
a.kaart:hover, .kaart:hover {
  transform: translateY(-3px);
  box-shadow: var(--schaduw-hoog);
  border-color: rgba(90, 99, 66, .34);
}

.kaart--stil { background: transparent; box-shadow: none; border-color: transparent; padding-inline: 0; }
.kaart--stil:hover { transform: none; box-shadow: none; }

.sectie--olijf .kaart {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(226, 231, 214, .22);
  box-shadow: none;
}
.sectie--olijf .kaart p { color: var(--salie-zacht); }

/* ---------- twee kolommen met beeld ---------- */

.duo {
  display: grid;
  gap: clamp(1.6rem, 4vw, 3.4rem);
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
}
.duo__beeld {
  border-radius: var(--rond);
  overflow: hidden;
  box-shadow: var(--schaduw-hoog);
  background: var(--salie-zacht);
}
.duo__beeld img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.duo--omgekeerd .duo__beeld { order: 2; }

/* ---------- prijstabel ---------- */

.prijzen { margin-bottom: 2.6rem; }
.prijzen:last-child { margin-bottom: 0; }
.prijzen h3 {
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--salie);
  margin-bottom: .3rem;
}
.prijs-tabel { width: 100%; border-collapse: collapse; font-size: .99rem; }
.prijs-tabel caption { text-align: left; padding-bottom: .7rem; color: var(--inkt-zacht); font-size: .95rem; }
.prijs-tabel th { text-align: left; font-weight: 700; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--inkt-zacht); padding: .7rem .6rem; border-bottom: 1px solid var(--salie); }
.prijs-tabel th:last-child, .prijs-tabel td:last-child { text-align: right; }
.prijs-tabel td { padding: .82rem .6rem; border-bottom: 1px dotted rgba(90, 99, 66, .3); vertical-align: top; }
.prijs-tabel tbody tr:last-child td { border-bottom: 1px solid var(--salie); }
.prijs-tabel .beh { font-weight: 500; }
.prijs-tabel .duur { color: var(--inkt-zacht); white-space: nowrap; font-size: .93rem; }
.prijs-tabel .prijs { font-family: var(--serif); font-size: 1.08rem; color: var(--olijf-diep); white-space: nowrap; }
.prijs-tabel .uitleg { display: block; color: var(--inkt-zacht); font-size: .9rem; margin-top: .2rem; }
.prijs-tabel .waarde { font-family: var(--sans); font-size: 1rem; color: var(--inkt); }

/* ---------- galerij ---------- */

.galerij {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 15rem), 1fr));
  gap: clamp(.7rem, 1.6vw, 1.1rem);
}
.galerij figure { margin: 0; }
.galerij img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--rond-klein);
  background: var(--salie-zacht);
}
.galerij figcaption {
  font-size: .87rem;
  color: var(--inkt-zacht);
  padding-top: .5rem;
}

/* ---------- reviews ---------- */

.review {
  background: var(--wit);
  border: var(--rand);
  border-left: 3px solid var(--salie);
  border-radius: var(--rond-klein);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--schaduw);
}
.review blockquote { margin: 0 0 .9rem; font-size: 1.02rem; }
.review blockquote p { color: var(--inkt); }
.review figcaption { font-size: .9rem; color: var(--inkt-zacht); }
.review figcaption b { color: var(--olijf-diep); font-weight: 700; }

/* ---------- stappen ---------- */

.stappen { list-style: none; padding: 0; margin: 0; counter-reset: stap; display: grid; gap: 1.15rem; }
.stappen li {
  position: relative;
  padding-left: 3.3rem;
  margin: 0;
  counter-increment: stap;
}
.stappen li::before {
  content: counter(stap);
  position: absolute;
  left: 0; top: -.1rem;
  width: 2.3rem; height: 2.3rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--salie-zacht);
  border: 1px solid var(--salie);
  color: var(--olijf-diep);
  font-family: var(--serif);
  font-size: 1.05rem;
}
.stappen h3 { margin-bottom: .25em; }
.stappen p { color: var(--inkt-zacht); font-size: .97rem; }
.sectie--olijf .stappen li::before { background: rgba(255, 255, 255, .08); border-color: rgba(226, 231, 214, .3); color: var(--linnen); }
.sectie--olijf .stappen p { color: var(--salie-zacht); }

/* ---------- lijst met vinkjes ---------- */

.vink { list-style: none; padding: 0; margin: 0 0 1.2rem; display: grid; gap: .5rem; }
.vink li { position: relative; padding-left: 1.85rem; margin: 0; }
.vink li::before {
  content: "";
  position: absolute;
  left: .1rem; top: .48em;
  width: .62rem; height: .34rem;
  border-left: 2px solid var(--olijf-licht);
  border-bottom: 2px solid var(--olijf-licht);
  transform: rotate(-45deg);
}
.sectie--olijf .vink li::before { border-color: var(--salie); }

/* ---------- faq ---------- */

.faq { display: grid; gap: .7rem; }
.faq details {
  background: var(--wit);
  border: var(--rand);
  border-radius: var(--rond-klein);
  padding: 0 1.3rem;
  transition: border-color .18s ease;
}
.faq details[open] { border-color: rgba(90, 99, 66, .34); box-shadow: var(--schaduw); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 2rem 1.05rem 0;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1rem + .28vw, 1.2rem);
  font-weight: 400;
  color: var(--olijf-diep);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: .25rem; top: 1.45rem;
  width: .6rem; height: .6rem;
  border-right: 2px solid var(--olijf-licht);
  border-bottom: 2px solid var(--olijf-licht);
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 1.65rem; }
.faq .antwoord { padding-bottom: 1.15rem; color: var(--inkt-zacht); }
.faq .antwoord p:first-child { color: var(--inkt); }

/* ---------- contactblok ---------- */

.contactblok {
  display: grid;
  gap: clamp(1.4rem, 3vw, 2.6rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
}
.contactkaart {
  background: var(--wit);
  border: var(--rand);
  border-radius: var(--rond);
  padding: clamp(1.3rem, 2.6vw, 1.9rem);
  box-shadow: var(--schaduw);
}
.contactkaart h3 { display: flex; align-items: center; gap: .6rem; }
.contactkaart .groot {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.15rem + .85vw, 1.75rem);
  color: var(--olijf-diep);
  text-decoration: none;
  display: inline-block;
  margin-bottom: .3rem;
  word-break: break-word;
}
.contactkaart .groot:hover { color: var(--messing); }
.contactkaart address { font-style: normal; }
.contactkaart p { font-size: .96rem; color: var(--inkt-zacht); }

.map-link {
  display: block;
  border-radius: var(--rond);
  overflow: hidden;
  border: var(--rand);
  text-decoration: none;
  box-shadow: var(--schaduw);
  background: var(--salie-zacht);
}
.map-link img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.map-link span {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .85rem 1.1rem;
  background: var(--wit);
  font-weight: 700;
  font-size: .93rem;
  color: var(--olijf-diep);
}
.map-link:hover span { background: var(--salie-zacht); }
.map-plaats {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  color: var(--olijf);
  font-size: .95rem;
  text-align: center;
  padding: 1rem;
}

/* ---------- oproep ---------- */

.oproep {
  background: var(--olijf-diep);
  color: var(--salie-zacht);
  border-radius: var(--rond);
  padding: clamp(1.8rem, 4vw, 3rem);
  display: grid;
  gap: 1.4rem;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr));
}
.oproep h2 { color: var(--linnen); margin-bottom: .35em; }
.oproep p { color: var(--salie-zacht); margin-bottom: 0; }
.oproep .knoppen { margin-top: 0; justify-content: flex-start; }

/* ---------- prose ---------- */

.prose h2 { margin-top: 2.4rem; }
.prose h3 { margin-top: 1.9rem; }
.prose > :first-child { margin-top: 0; }
.prose .lead { font-size: 1.12rem; color: var(--inkt-zacht); }

.let-op {
  background: var(--salie-zacht);
  border-left: 3px solid var(--olijf-licht);
  border-radius: var(--rond-klein);
  padding: 1.1rem 1.3rem;
  font-size: .97rem;
  margin: 1.6rem 0;
}
.let-op p:last-child { margin-bottom: 0; }

/* ---------- footer ---------- */

.voet {
  background: var(--olijf-diep);
  color: var(--salie-zacht);
  padding-top: clamp(2.6rem, 6vw, 4.2rem);
  margin-top: 0;
}
.voet__in {
  display: grid;
  gap: clamp(1.8rem, 4vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  padding-bottom: 2.6rem;
}
.voet h2 {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--salie);
  margin-bottom: 1rem;
}
.voet a { color: var(--linnen); text-decoration: none; }
.voet a:hover { color: var(--salie); text-decoration: underline; }
/* De knop in de footer houdt zijn eigen kleuren: .voet a is specifieker dan
   .knop--licht en zou de tekst anders onzichtbaar maken op de lichte knop. */
.voet a.knop--licht, .voet a.knop--licht:hover { color: var(--olijf-diep); text-decoration: none; }
.sectie--olijf a.knop--licht, .sectie--olijf a.knop--licht:hover { color: var(--olijf-diep); }
.voet__mark { color: var(--salie); display: block; margin-bottom: .5rem; }
.voet__naam {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--linnen);
  margin-bottom: .4rem;
}
.voet__claim { font-size: .95rem; max-width: 22rem; }
.voet address { font-style: normal; line-height: 1.9; margin-bottom: 1rem; }
.voet__note { font-size: .92rem; margin-bottom: 1.1rem; }
.voet__links { list-style: none; padding: 0; margin: 0; font-size: .95rem; }
.voet__links li { margin-bottom: .48rem; }
.voet__onder {
  border-top: 1px solid rgba(226, 231, 214, .18);
  padding-block: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.4rem;
  justify-content: space-between;
  font-size: .87rem;
}
.voet__onder p { margin: 0; }

/* ---------- mobiele belbalk ---------- */

.belbalk { display: none; }

/* ---------- responsief ---------- */

@media (max-width: 900px) {
  .kop__cta { display: none; }
  .kop__toggle { display: inline-flex; }
  .kop__nav {
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--linnen);
    border-bottom: var(--rand);
    box-shadow: var(--schaduw-hoog);
    display: none;
    margin-left: 0;
  }
  .kop__nav.open { display: block; }
  .kop__nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .5rem var(--gutter) 1.1rem;
  }
  .kop__nav a {
    display: block;
    padding: .85rem 0;
    border-bottom: 1px solid rgba(90, 99, 66, .12);
    font-size: 1.02rem;
  }
  .kop__nav a[aria-current="page"] { border-bottom-color: var(--messing); }

  .hero__foto { opacity: .5; }
  .hero__foto::after {
    background: linear-gradient(to bottom, rgba(250, 247, 240, .9), rgba(250, 247, 240, .97));
  }

  .duo--omgekeerd .duo__beeld { order: 0; }

  body { padding-bottom: 4.4rem; }

  .belbalk {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 120;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(226, 231, 214, .3);
    border-top: 1px solid rgba(226, 231, 214, .3);
    box-shadow: 0 -6px 22px -12px rgba(35, 38, 30, .5);
  }
  .belbalk a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .95rem .6rem;
    background: var(--olijf-diep);
    color: var(--linnen);
    font-weight: 700;
    font-size: .96rem;
    text-decoration: none;
  }
  .belbalk a:active { background: var(--olijf); }
  .belbalk__boek { background: var(--olijf); }
}

@media (max-width: 560px) {
  .prijs-tabel .duur { display: none; }
  .knoppen .knop { flex: 1 1 100%; }
  .voet__onder { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .kaart:hover, a.kaart:hover, .knop:hover { transform: none; }
}

@media print {
  .kop, .belbalk, .knoppen, .voet__links { display: none; }
  body { background: #fff; }
}
