/* ---------------------------------------
   Design tokens
--------------------------------------- */
:root {
  --clr-primary: #a1662f;
  --clr-primary-2: #d7b079;
  --clr-ink: #40362a;
  --clr-sand: #dcd3c2;
  --clr-bg: #ffffff;

  --ff-body: "Karla", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --ff-head: "Teko", "Impact", system-ui, sans-serif;

  --radius: 6px;
  --radius-btn: 6px;

  --container: 1200px;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
:root {
  --page-gutter: max(1rem, calc((100vw - var(--container)) / 2));
}

/* ---------------------------------------
   Reset & base
--------------------------------------- */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--clr-ink);
  background: var(--clr-bg);
  font-family: var(--ff-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--clr-primary-2);
  outline-offset: 2px;
}
.u-visually-hidden {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #fff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 9999;
}

/* Containers */
.container {
  max-width: var(--container);
  width: 100%;
  margin-inline: auto;
  padding-inline: 1rem; /* vervangt '100% - 2rem' rekenwerk */
}

/* ---------------------------------------
   Buttons
--------------------------------------- */
.btn {
  display: inline-block;
  padding: 0.8rem 1.25rem;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn--primary {
  background: var(--clr-primary);
  color: #fff;
}
.btn--primary:hover {
  background: #8c5629;
}
.btn--secondary {
  background: var(--clr-primary-2);
  color: #2b241d;
}
.btn--secondary:hover {
  background: #caa266;
}

.btn--full {
  display: block;
  text-align: center;
}

/* ---------------------------------------
   Header / Nav
--------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(64, 54, 42, 0.9), rgba(64, 54, 42, 0.2));
  color: #fff;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav__toggle {
  width: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.nav__toggle-line {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 3px 0;
  border-radius: 2px;
}
.nav__toggle-line {
  transition: all 0.25s ease;
}

/* Off-canvas */
.offcanvas {
  position: fixed;
  inset: 0 0 0 30%;
  background: var(--clr-ink);
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 0 1.25rem 2rem;
  display: flex;
  flex-direction: column;
}
.offcanvas--open {
  transform: translateX(0);
}
.offcanvas__list {
  list-style: none;
  margin: 1.5rem 0 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.offcanvas__link {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid #ffffff14;
}
.no-scroll {
  overflow: hidden;
}

@media (min-width: 980px) {
  .nav__toggle {
    display: none;
  }
  .offcanvas {
    display: none;
  }
}

/* Maak de header vast en overlay (zodat de hero eronder doorloopt) */

.site {
  padding-top: var(--header-h);
  accent-color: var(--clr-primary);
} /* normale pagina’s: content onder header */
.home .hero {
  margin-top: calc(-1 * var(--header-h));
} /* homepage: hero omhoog onder header */
.header--overlay {
  background: linear-gradient(to bottom, rgba(64, 54, 42, 0.85), rgba(64, 54, 42, 0.15));
}
.header--scrolled {
  background: var(--clr-ink);
}

/* Homepage 3-koloms header (menu – logo – menu) */
.header__inner--home {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
}

/* Desktop menus links/rechts */
.nav__list--left,
.nav__list--right {
  display: none;
  gap: 1.25rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 980px) {
  .nav__list--left,
  .nav__list--right {
    display: flex;
  }
  .nav__list--left {
    justify-content: flex-start;
  }
  .nav__list--right {
    justify-content: flex-end;
  }
}

/* Centraal, groter logo */
.header__brand--center {
  justify-self: center;
}

/* Verberg desktop menus op mobiel, toon burger (bestaand gedrag blijft) */
@media (max-width: 979px) {
  .header__brand--center {
    margin-left: auto;
    margin-right: auto;
  }
  .header__brand--center {
    grid-column: 1;
    justify-self: start;
    margin-left: 0;
  }
}
/* Nav-links opmaken als h3 */
.nav__link {
  font-family: var(--ff-head);
  color: var(--clr-primary-2);
  font-size: clamp(1rem, 1.2vw, 1.25rem); /* iets groter */
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav__link:hover {
  color: var(--clr-primary);
}
/* Taalkeuze in de rechter UL, netjes in lijn */
.nav__list--right {
  align-items: center;
} /* zekerheidje */
.nav__item-lang {
  margin-left: 1rem;
} /* ruimte t.o.v. menu */
.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.lang-switcher__btn {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  padding: 0.3rem 0.6rem;
  font-family: var(--ff-head);
  font-size: 1rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.lang-switcher__btn:hover {
  border-color: var(--clr-primary-2);
  color: var(--clr-primary-2);
}
.lang-switcher__arrow {
  font-size: 0.8em;
  opacity: 0.75;
}

/* Dropdown */
.lang-switcher__list {
  position: absolute;
  top: 115%;
  right: 0;
  min-width: 80px;
  background: rgba(26, 22, 17, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  list-style: none;
  margin: 0;
  padding: 0.25rem 0;
  display: none;
  z-index: 1100; /* boven hero/header */
}
.lang-switcher__list li a {
  display: block;
  padding: 0.45rem 0.8rem;
  color: #fff;
  font-family: var(--ff-head);
  font-size: 1rem;
  text-transform: uppercase;
}
.lang-switcher__list li a:hover {
  background: var(--clr-primary);
}
.lang-switcher__list a.is-active {
  font-weight: 600;
  text-decoration: underline;
  pointer-events: none; /* maakt duidelijk dat het de huidige taal is */
  opacity: 0.7;
}
.offcanvas__lang-btn.is-active {
  font-weight: 600;
  opacity: 0.7;
  pointer-events: none;
}

/* Open states */
.lang-switcher:hover .lang-switcher__list,
.lang-switcher__btn[aria-expanded="true"] + .lang-switcher__list {
  display: block;
}

/* Verberg desktop-switcher op mobiel, gebruik off-canvas variant */
@media (max-width: 979px) {
  .nav__item-lang {
    display: none;
  }
}

/* ---------------------------------------
   Hero
--------------------------------------- */
.hero {
  position: relative;
  color: #fff;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.45));
}
.hero__content {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 2rem;
}
.hero__title {
  font-family: var(--ff-head);
  font-size: min(11vw, 80px);
  line-height: 0.95;
  letter-spacing: 0.5px;
  margin: 0 0 1rem 0;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}
@media (max-width: 680px) {
  .hero__title {
    /* iets kleiner en nog steeds vloeiend */
    font-size: clamp(1.6rem, 7.5vw, 2.2rem);
  }
}
.hero__content .btn {
  font-size: 1.25rem; /* duidelijk grotere tekst */
  padding: 0.7rem 1.4rem; /* smaller en iets compacter */
  font-weight: 600;
  min-width: auto; /* voorkomt te brede standaardknop */
  display: inline-block;
  text-align: center;
}
/* ==== Hero-knop kleiner op mobiele schermen ==== */
@media (max-width: 680px) {
  .hero__content .btn {
    font-size: 1rem; /* kleinere tekst */
    padding: 0.4rem 1rem; /* compacter */
    border-radius: 5px; /* iets strakker */
  }
}

/* ---------------------------------------
   Sections
--------------------------------------- */
.section--pad {
  padding: clamp(2.5rem, 4vw, 5rem) 0;
}
.gallery--pad {
  padding-top: 0;
  padding-bottom: clamp(2.5rem, 4vw, 5rem);
}
.section__title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 48px);
  line-height: 1;
  margin: 0 0 var(--space-3) 0;
  color: var(--clr-ink);
}

/* About */
/* ===== Over ons ===== */
.about {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

/* Foto vult de sectie */
.about__media {
  display: block;
  width: 100%;
  height: clamp(340px, 48vw, 520px);
}
.about__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Donkere overlay van links (leesbaarheid) + subtiele vignet */
.about__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 120% at 100% 0%, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 55%), linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(0, 0, 0, 0) 65%);
  pointer-events: none;
}

/* Contentlaag bovenop */
.about__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  max-width: 520px;
}
.about__inner {
  /* linkse uitlijning + ruime padding */
  padding-left: clamp(1rem, 6vw, 5rem);
  padding-right: clamp(1rem, 4vw, 2rem);
}

/* Titel + button onder elkaar */
.about__title {
  margin: 0 0 1rem 0;
  font-family: var(--ff-head);
  line-height: 0.95;
  color: #fff;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}
.about__cta {
  display: inline-block;
}

/* Responsive finetuning */
@media (max-width: 680px) {
  .about__media {
    height: 360px;
  }
  .about__inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
  padding: 1rem;
}
.feature__icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  margin: 0 auto 0.5rem auto;
}
.feature__title {
  font-family: var(--ff-head);
  margin: 0.25rem 0 0.25rem;
}
@media (min-width: 900px) {
  .features {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------------------------------------
   Media placeholders (vervang later)
--------------------------------------- */
.media {
  background: #d7d2c6;
  border-radius: var(--radius);
}
.media--1x1 {
  aspect-ratio: 1/1;
}
.media--4x3 {
  aspect-ratio: 4/3;
}
.media--16x9 {
  aspect-ratio: 16/9;
}
.media,
.media--16x9,
.media--4x3,
.media--1x1 {
  width: 100%;
}
.media > img {
  width: 100%;
  height: auto;
  display: block;
}

/* Utilities */
.section {
  background: #fff;
}

/* ===== Sectie 2: 3 kolommen, elke kolom een pair ===== */
.pairs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
}

/* Elke kolom is een verticale stack van 2 items */
.pair {
  display: grid;
  grid-template-rows: auto auto;
  row-gap: clamp(14px, 2vw, 20px);
}
.pairs,
.pair,
.tile,
.media {
  min-width: 0;
}

/* Tekst-tegels */
.tile--text {
  padding-top: clamp(6px, 1vw, 10px);
}
.tile__title {
  font-family: var(--ff-head);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1;
  margin: 0 0 0.5rem 0;
  color: var(--clr-ink);
}
.tile--text p {
  margin: 0 0 1rem 0;
  max-width: 42ch;
  color: #5a4e41;
}
.tile--text,
.tile--text p,
.btn {
  overflow-wrap: anywhere;
}

/* Foto-tegels (placeholders) */

/* Spatiëring onder de knop gelijk trekken */
.pair .btn {
  margin-top: 0.25rem;
}

/* Tablet/mobiel: stapel per koppel met juiste volgorde */
@media (max-width: 980px) {
  .pairs {
    grid-template-columns: 1fr;
  }
  .pairs {
    grid-template-columns: 1fr;
  }
  .pair {
    row-gap: 12px;
  }
  .pair {
    display: flex;
    flex-direction: column;
  }

  /* Extra ruimte tussen de kolommen/koppels */
  .pair + .pair {
    margin-top: clamp(20px, 4vw, 32px);
  }
  .pair + .pair {
    margin-top: clamp(20px, 4vw, 32px);
  }
}

/* ===== Split full-bleed: tekst links, foto rechts ===== */

/* Gutter berekenen zodat tekst links mooi met je site-container uitlijnt,
   terwijl de foto rechts tot de rand mag. */

.split-full {
  background: #fff;
}

/* 2 kolommen grid over de volle breedte */
.split-full__grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* links tekst, rechts beeld */
  align-items: center;
}

/* Tekstkolom met dezelfde linker marge als je container */
.split-full__content {
  padding-left: var(--page-gutter);
  padding-right: 30px;
}
.split-full__content p {
  color: #5a4e41;
  margin: 0 0 1rem 0;
}
.split-full .btn {
  margin-top: 0.5rem;
}

/* Beeldkolom: full width/height binnen de kolom */
.split-full__media {
  display: block;
  width: 100%;
  height: clamp(380px, 55vw, 640px); /* mooie hoogte desktop; pas gerust aan */
}
.split-full__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0; /* geen cirkel meer */
}

/* Responsiveness: stapelen met foto eerst of tekst eerst? 
   Hier tonen we eerst de foto, dan tekst. Zet 'order' om als je anders wil. */
@media (max-width: 980px) {
  .split-full__grid {
    grid-template-columns: 1fr;
  }
  .split-full__media {
    order: -1;
    height: clamp(260px, 50vw, 420px);
  }
  .split-full__content {
    padding-left: 1rem;
    padding-right: 1rem;
    margin-top: 1rem;
  }
}

/* ==== Reviews: 2 rijen + horizontale carrousel ==== */
/* ==== Reviews: 2 rijen + verbeterde icons ==== */

/* De “track”: kolommen die horizontaal scrollen */
.snap {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(260px, 32vw, 420px);
  /* grid-template-rows: repeat(2, auto); */
  column-gap: clamp(14px, 2vw, 20px);
  row-gap: clamp(14px, 2vw, 20px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
}
.snap > .testimonial {
  scroll-snap-align: start;
}

/* Kaarten */
.testimonial {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  padding: 1.2rem 1.4rem 1.1rem;
  min-height: 160px;
}
.testimonial__text {
  margin: 0.25rem 0 0.75rem 0;
  color: #4f463b;
}
.testimonial__meta {
  margin: 0;
  font-weight: 600;
  color: #6b5d4c;
}

/* Toprij: quote + sterren rechts */
.review__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

/* Twee quote.svg naast elkaar */
.review__quote-icon {
  width: 26px;
  height: 26px;
  display: block;
}
.review__quotes {
  display: flex;
  align-items: center;
}

/* Sterren in een afgeronde achtergrond */
.review__stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #d7b079; /* jouw kleur */
  padding: 6px 16px;
  border-radius: 999px; /* pill-shape */
}
.review__stars img {
  width: 18px;
  height: 18px;
  display: block;
  filter: brightness(0.7) saturate(1.2); /* iets donkerder bruin */
}
/* Responsief: aantal kolommen */
@media (max-width: 680px) {
  .snap {
    grid-auto-columns: 85%;
  }
}
@media (min-width: 681px) and (max-width: 980px) {
  .snap {
    grid-auto-columns: 46%;
  }
}
@media (min-width: 981px) and (max-width: 1280px) {
  .snap {
    grid-auto-columns: 32%;
  }
}
@media (min-width: 1281px) {
  .snap {
    grid-auto-columns: 24%;
  }
}

/* ===== Sfeerbeelden: 3 kolommen × 2 rijen, top/bottom aligned ===== */
.gallery-balanced {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto; /* rijhoogte = hoogte hoogste item in die rij */
  gap: clamp(10px, 1.5vw, 24px);
  align-items: start; /* default: top align */
  position: relative;
}

/* Kaarten */
.g-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #eee;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 0;
}
.g-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Onderste rij: bottom align binnen de rijtrack */
.g-bottom {
  align-self: end;
}

/* Aspect ratios per kaart – hiermee creëer je de “grote/kleine” mix */
.g-standard {
  aspect-ratio: 4 / 3;
} /* standaard landscape */
.g-wide {
  aspect-ratio: 16 / 9;
} /* lager/breder */
.g-tall {
  aspect-ratio: 3 / 4;
} /* hoger/portret */

/* Responsiveness: 2 kolommen, daarna stacken */
@media (max-width: 1024px) {
  .gallery-balanced {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Bij 2 kolommen is "bottom align" minder logisch; zet alles gewoon top */
  .g-bottom {
    align-self: start;
  }
}
@media (max-width: 560px) {
  .gallery-balanced {
    grid-template-columns: 1fr;
  }
}
/* Laat exact één kaart “opstijgen” zodat hij tussen rij 1 komt */
.g-rise {
  margin-top: -48px; /* desktop lift */
  z-index: 1;
}
@media (min-width: 1400px) {
  .g-rise {
    margin-top: -300px;
  } /* wat meer ruimte op grote schermen */
}
@media (max-width: 1024px) {
  .g-rise {
    margin-top: -24px;
  } /* tablet subtieler */
}
@media (max-width: 560px) {
  .g-rise {
    margin-top: 0;
  } /* mobiel niet laten overlappen */
}

/* Zorg dat overlappende schaduwen netjes renderen */

/* iets boven de andere kaarten */

/* ===== FOOTER ===== */

/* Top: 4 kolommen */

/* Footer */
.footer {
  background: var(--clr-ink);
  color: #fff;
}
.footer__title {
  font-family: var(--ff-head);
  margin: 0.2rem 0 1rem;
}
.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.footer__social {
  list-style: none;
  display: flex;
  gap: 0.75rem;
  padding: 0;
  margin: 0.25rem 0 0 0;
}
.footer__bottom {
  background: #8c5629;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
}
@media (max-width: 560px) {
  .footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 1rem;
  }
}

/* Newsletter row */
.footer__newsletter {
  background: rgba(0, 0, 0, 0.06);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.footer__newsletter-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: clamp(16px, 4vw, 28px);
  padding: clamp(18px, 3vw, 28px) 0;
}
.footer__nl-title {
  margin: 0 0 0.25rem 0;
  font-family: var(--ff-head);
}
.footer__nl-sub {
  margin: 0;
  opacity: 0.9;
}

.footer__form {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  width: 100%;
}
.footer__form input {
  flex: 1 1 auto;
  min-width: 260px;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: #ffffff1a;
  color: #fff;
}
.footer__form input::placeholder {
  color: #fff;
  opacity: 0.7;
}

/* Bottom bar */

.footer__legal {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}
.footer__legal a {
  color: #fff;
  opacity: 0.95;
}
.footer__legal a:hover {
  opacity: 1;
  text-decoration: underline;
}
/* ==== Newsletter kleiner op mobiele schermen ==== */
@media (max-width: 680px) {
  .footer__newsletter-inner {
    padding: 1.2rem 1rem; /* minder hoogte */
    gap: 1rem;
  }

  .footer__nl-title {
    font-size: 1.1rem; /* iets kleiner */
    margin-bottom: 0.3rem;
  }

  .footer__nl-sub {
    font-size: 0.9rem;
  }

  .footer__form {
    flex-direction: column; /* onder elkaar voor meer ruimte */
    align-items: stretch;
    gap: 0.6rem;
  }

  .footer__form input {
    padding: 0.65rem 0.9rem;
    font-size: 0.9rem;
    min-width: 0;
  }

  .footer__form .btn {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    width: 100%; /* netjes over volle breedte */
  }
}
.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr; /* linkerkolom breder */
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(28px, 4vw, 48px) 0;
}

.footer__brand .footer__logo {
  width: 200px;
  height: 200px;
  margin-bottom: 0.75rem;
}
.footer__tagline {
  margin: 0 0 1rem 0;
  opacity: 0.95;
}

.footer__social-btn {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #40362a;
  transition: all 0.2s ease;
}
.footer__social-btn:hover {
  background: var(--clr-ink);
  transform: translateY(-1px);
}
.footer__social-btn svg {
  width: 40px;
  height: 40px;
  fill: #fff;
}

.footer__list a {
  color: #fff;
  opacity: 0.95;
}
.footer__list a:hover {
  opacity: 1;
  text-decoration: underline;
}
.footer__contact li {
  display: flex;
  gap: 0.5rem;
}
.footer__contact li {
  display: flex;
  align-items: flex-start; /* icon netjes bovenaan bij 2-regelige tekst */
  gap: 0.6rem;
}

/* Responsive */
@media (max-width: 980px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
  .footer__top {
    display: grid;
    grid-template-columns: 1fr !important; /* override previous 2-cols rule */
    row-gap: 22px;
  }
  .footer__top {
    display: grid;
    grid-template-columns: 1fr;
  }
  .footer__newsletter-inner {
    grid-template-columns: 1fr;
  }
  .footer__form {
    justify-content: stretch;
  }
  .footer__form input {
    min-width: 0;
  }
}

/* ============ MOBILE HEADER COMPACT ============ */
@media (max-width: 979px) {
  /* compacte vaste header */
  .header {
    background: var(--clr-ink);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
    height: 56px; /* halve hoogte van desktop */
  }

  /* grid: logo links, burger rechts */
  .header__inner--home {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0 0.75rem;
    min-height: 56px;
  }

  /* logo kleiner en naar links */

  .header__brand--center img,
  .header__brand--center svg {
    height: 42px; /* kleiner logo */
    width: auto;
  }

  /* burger helemaal rechts */
  .header__inner--home .nav {
    grid-column: 3;
    justify-self: end;
  }

  /* container marges wat nauwer zodat burger echt rechts staat */
  .header > .container {
    width: 100%;
    padding: 0 0.5rem;
  }

  /* hero begint netjes ONDER de header */
  .site {
    padding-top: 56px;
  }
  .home .hero {
    margin-top: 0;
  }
}
/* ============ MOBILE MENU EN CLOSE BUTTON ============ */

/* Header bovenaan menu */
.offcanvas__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.offcanvas__logo {
  height: 80px;
  width: auto;
}
.offcanvas__close {
  background: none;
  border: 0;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

/* Menu-items */

/* Hamburger → kruisje animatie */
.nav__toggle.open .nav__toggle-line:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}
.nav__toggle.open .nav__toggle-line:nth-child(2) {
  opacity: 0;
}
.nav__toggle.open .nav__toggle-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* ============ MOBIEL: TAALSWITCHER IN OFFCANVAS ============ */
.offcanvas__lang {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin: 1rem 0 1.5rem 0;
}

.offcanvas__lang-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-family: var(--ff-head);
  font-size: 1rem;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.offcanvas__lang-btn:hover {
  border-color: var(--clr-primary-2);
  color: var(--clr-primary-2);
}

.offcanvas__lang-btn.is-active {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: #fff;
}
/* ============ MOBILE: Pairs als Foto → Tekst (per kolom) ============ */
@media (max-width: 980px) {
  /* Eén kolom; jouw regel had je al – laten staan */

  /* Maak elk pair een flexstack en zet foto eerst, tekst erna */

  .pair picture {
    order: 1;
    margin-bottom: 10px;
  }
  .pair .tile--text {
    order: 2;
  }

  /* lucht tussen de “paren” zelf */

  /* optioneel: ietsje extra ruimte onder de foto */
}
@media (min-width: 980px) {
  .header {
    --header-height-default: 180px; /* hoger dan vroeger (was 84px) */
    --header-height-scrolled: 75px; /* compacter bij scroll */
    transition: all 0.35s ease;
  }

  .header__inner--home {
    min-height: var(--header-height-default);
    transition: min-height 0.35s ease;
  }

  /* Standaardgroot logo */
  .header__brand--center img,
  .header__brand--center svg {
    height: 200px; /* groter op start */
    width: auto;
    transition: all 0.35s ease;
  }

  /* Na scroll: iets kleiner, maar niet te klein */
  .header--scrolled .header__inner--home {
    min-height: var(--header-height-scrolled);
  }

  .header--scrolled .header__brand--center img,
  .header--scrolled .header__brand--center svg {
    height: 80px;
  }
}
/* ===== Menu: sticky pills ===== */
.menu-nav {
  position: sticky;
  top: var(--sticky-top, 74px); /* laat zoals je had */
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.menu-nav__inner {
  display: flex;
  gap: 0.6rem;
  padding: 0.9rem 0;
  overflow: auto;
  scroll-snap-type: x mandatory;
}
.menu-nav__inner::-webkit-scrollbar {
  height: 8px;
}
.menu-pill {
  scroll-snap-align: start;
  border: 1px solid #dcd3c2;
  background: #fff;
  border-radius: var(--radius-btn); /* 6px */
  padding: 0.55rem 0.9rem;
  font-family: var(--ff-head);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.menu-pill:hover {
  border-color: var(--clr-primary-2);
}
.menu-pill.is-active {
  background: var(--clr-primary);
  color: #fff;
  border-color: var(--clr-primary);
}

/* ===== Menu blocks + headings ===== */
.menu-block {
  padding: clamp(4rem, 3.2vw, 4rem) 0;
  scroll-margin-top: 100px;
}
@media (max-width: 768px) {
  .menu-block {
    scroll-margin-top: 60px; /* iets minder marge op mobiel */
  }
}

.menu-block__header {
  margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
}
.menu-block__title {
  font-family: var(--ff-head);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1;
  margin: 0 0 0.35rem 0;
  color: var(--clr-ink);
  position: relative;
  display: inline-block;
  padding-bottom: 0.2rem;
}
.menu-block__sub {
  margin: 0;
  color: #6a5e51;
}

/* ===== Highlight (Suggesties) ===== */
.menu-block--highlight {
  background: linear-gradient(135deg, #d7b07922, #a1662f18);
  border-top: 1px solid #e8e1d7;
  border-bottom: 1px solid #e8e1d7;
}
.menu-grid {
  display: grid;
  gap: clamp(0.9rem, 1.8vw, 1.25rem);
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 680px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 980px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.menu-card {
  position: relative;
  border-radius: var(--radius-btn);
  overflow: hidden;
  text-align: center;
  color: #fff;
  aspect-ratio: 1 / 1; /* vierkant voor consistent grid */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.menu-card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
}
.menu-card__title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  padding: 0.5rem;
  margin: 0.1rem 0;
  font-weight: 700;
}
.menu-card__price {
  font-weight: 700;
  color: var(--clr-primary);
}
.menu-card__desc {
  margin: 0.25rem 0 0 0;
  color: #5b4f43;
}

/* ===== Klassieke lijst met dot leaders ===== */
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}
.menu-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  display: grid;
  row-gap: 0.35rem;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.menu-item__name {
  font-weight: 700;
}
.menu-item__price {
  font-weight: 700;
  color: var(--clr-primary);
}

/* Dot leaders via grid */

.menu-item__dots {
  border-bottom: 1px dotted #c8bfb3;
  margin: 0 0.6rem;
  height: 0.8rem;
}

/* Subdesc onderaan in volle breedte */
.menu-item__desc {
  grid-column: 1 / -1;
  margin: 0;
  color: #6a5e51;
}

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Optioneel: subtiele titel-underline */

.menu-block__title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-primary-2));
  opacity: 0.25;
}

/* ===== MENU HERO ===== */
.menu-hero {
  position: relative;
  min-height: clamp(280px, 40vw, 460px); /* hoogte ~ zoals je screenshot */
  overflow: hidden;
}
.menu-hero__media {
  display: block;
  width: 100%;
  height: 100%;
}
.menu-hero__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay 40% #D7B079 */
.menu-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(215, 176, 121, 0.4);
  pointer-events: none;
}

/* Titel gecentreerd */
.menu-hero__content {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 1.25rem;
}
.menu-hero__title {
  margin: 0;
  font-family: var(--ff-head);
  font-size: clamp(2.2rem, 6vw, 56px);
  line-height: 0.95;
  color: #fff;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}
@media (max-width: 680px) {
  .menu-hero__title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%; /* optioneel: voorkomt dat de tekst te breed wordt */
    margin: 0 auto;
  }

  /* Zorg dat de parent (foto) position:relative heeft */
  .menu-hero {
    position: relative;
  }
}

/* ===== MENU PILLS – centreren + radius 6 ===== */

/* Mobiel: horizontale scroll, desktop: centraal uitgelijnd */

@media (min-width: 900px) {
  .menu-nav__inner {
    justify-content: center; /* centreren */
    flex-wrap: wrap; /* mag op 2 rijen als nodig */
    overflow: visible; /* geen scroll-balk op desktop */
  }
}

/* Radius 6 zoals je site (var(--radius-btn) = 6px) */

.menu-cards__grid {
  display: grid;
  gap: clamp(14px, 2vw, 20px);
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  align-items: stretch;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.menu-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(215, 176, 121, 0.25);
  transition: background 0.3s ease;
}

.menu-card:hover .menu-card__overlay {
  background: rgba(161, 102, 47, 0.55);
}

/* Responsiveness */
@media (max-width: 1024px) {
  .menu-cards__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 680px) {
  .menu-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Twee kolommen naast elkaar */
.menu-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
  margin-top: 2rem;
}

/* Subtitel boven elke kolom */
.menu-subtitle {
  font-family: var(--ff-head);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--color-accent, #a1662f);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.menu-subtitle::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: currentColor;
  margin-top: 0.4rem;
  opacity: 0.7;
}

/* Responsief: enkel kolom op mobiel */
@media (max-width: 768px) {
  .menu-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
/* --- MENU HERO: mobiel fix --- */
@media (max-width: 768px) {
  /* Laat de foto de hoogte bepalen (geen geforceerde min-height) */
  .menu-hero {
    min-height: 0;
  }

  /* Media-wrapper niet oprekken: hoogte = hoogte van de img */
  .menu-hero__media {
    height: auto;
    line-height: 0; /* voorkomt kleine witruimte onder images */
  }

  /* Foto schaalt proportioneel mee */
  .menu-hero__media > img {
    width: 100%;
    height: auto;
    object-fit: cover; /* bij erg hoge/wijde beelden */
    object-position: center; /* focus in het midden */
    display: block;
  }

  /* Overlay wat lichter en onderaan wat minder ruimte */
  .menu-hero__overlay {
    background: rgba(215, 176, 121, 0.25); /* 25% op mobiel */
  }

  /* Content netjes onderaan, compacter */
  .menu-hero__content {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.25rem;
  }
}
/* Icons in footer contactlijst */

.footer__icon {
  flex: 0 0 22px; /* vaste iconbreedte */
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px; /* optisch centreren */
  opacity: 0.95; /* subtiele zachtheid */
}

.footer__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor; /* erft tekstkleur (wit in jouw footer) */
}

/* Hover states voor links blijven zoals bij jou */
.footer__contact a:hover {
  text-decoration: underline;
}
/* ===== CONTACT ===== */
.contact__mapwrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
}

/* Map */
.contact__map {
  position: relative;
  /* breedte van de kaart op desktop */
  width: min(70%, 980px); /* neem 70% van de container, max 980px */
  margin-left: auto; /* duwt de kaart naar de rechterkant */
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.contact__map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10; /* mooie verhouding; past mee met breedte */
  border: 0;
  display: block;
}

/* Adreskaart (overlay op desktop) */
.contact__card {
  position: relative;
  z-index: 2;
  background: #0f0e0c;
  color: #fff;
  border-radius: var(--radius-btn);
  padding: clamp(2rem, 4vw, 3rem); /* groter dan voorheen */
  max-width: 480px; /* breder kader */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);

  /* zodat hij deels over de kaart komt */
  margin-top: -250px; /* schuift 80px over de kaart */
  margin-bottom: 2rem;
}
.contact__card-title {
  margin: 0 0 0.5rem 0;
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
}

.contact__card-subline {
  margin: 0.25rem 0 1rem 0;
  opacity: 0.8;
}
.contact__addr {
  font-style: normal;
  margin: 0 0 1.5rem 0;
  opacity: 0.95;
  line-height: 1.6;
}
.contact__cta {
  display: inline-block;
}

/* Info-kaarten onder de map */
.contact__grid {
  display: grid;
  gap: clamp(14px, 2vw, 18px);
  grid-template-columns: repeat(1, minmax(0, 1fr));
  margin-top: clamp(18px, 3vw, 26px);
}

.contactcard {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: #f3efe8;
  border: 1px solid #e6ded0;
  border-radius: var(--radius-btn);
  padding: clamp(12px, 2.2vw, 16px) clamp(14px, 2.4vw, 18px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
}
.contactcard__icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--clr-primary-2);
  color: #fff;
  display: grid;
  place-items: center;
}
.contactcard__icon svg {
  width: 24px;
  height: 24px;
}
.contactcard__title {
  margin: 0 0 0.15rem 0;
  font-family: var(--ff-head);
  letter-spacing: 0.3px;
}
.contactcard__body a {
  color: var(--clr-ink);
  text-decoration: none;
}
.contactcard__body a:hover {
  text-decoration: underline;
}

/* Responsief */
@media (min-width: 980px) {
  .contact__mapwrap {
    grid-template-columns: 1fr;
  }
  .contact__map iframe {
    height: 540px;
  }
}
@media (min-width: 1024px) {
  .contact__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .contact__card {
    margin-top: -10px;
    max-width: 100%;
    text-align: center;
    border-radius: var(--radius);
  }
}
/* Kaart kleiner maken en rechts uitlijnen */

/* iframe netjes laten schalen */

/* Mobiel: gewoon full-width en niet rechts uitlijnen */
@media (max-width: 900px) {
  .contact__map {
    width: 100%;
    margin-left: 0;
  }
  .contact__map iframe {
    aspect-ratio: 4 / 3; /* iets hoger op mobiel */
  }
}
/* ===== Contact gallery ===== */
.contact-gallery {
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.contact-gallery__inner {
  border-radius: var(--radius);
  overflow: hidden;
}

/* --- Mobile-first: swipeable row with scroll-snap (no auto anim) --- */
.contact-gallery__track {
  display: flex;
  gap: clamp(10px, 2.5vw, 16px);
  padding: 0 clamp(1rem, 3vw, 2rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.contact-gallery__track::-webkit-scrollbar {
  height: 0;
} /* hide mobile scroll bar */

.contact-gallery__track img {
  flex: 0 0 78vw; /* big cards on phone */
  height: clamp(180px, 42vw, 240px);
  object-fit: cover;
  border-radius: var(--radius-btn);
  scroll-snap-align: start;
  filter: brightness(0.95);
  transition: transform 0.25s ease, filter 0.25s ease;
}
.contact-gallery__track img:active {
  cursor: grabbing;
}
.contact-gallery__track img:hover {
  transform: scale(1.02);
  filter: brightness(1);
}

/* --- Tablet up: make cards a bit smaller in the row --- */
@media (min-width: 680px) {
  .contact-gallery__track img {
    flex-basis: 46vw;
    height: clamp(220px, 28vw, 280px);
  }
}

/* --- Desktop: switch to static grid (no scroll, no animation) --- */
@media (min-width: 900px) {
  .contact-gallery__inner {
    overflow: visible;
  }
  .contact-gallery__track {
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: clamp(14px, 2vw, 20px);
    padding: clamp(1rem, 2vw, 1.25rem);
    overflow: visible; /* no scrolling */
    scroll-snap-type: none;
  }
  .contact-gallery__track img {
    flex: initial;
    width: 100%;
    height: clamp(200px, 18vw, 260px);
    border-radius: var(--radius-btn);
    transform: none !important; /* no hover lift if you prefer */
  }
}
/* ====== Over ons sectie ====== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

/* Foto container met overlap */
.about__images {
  position: relative;
  width: 100%;
  height: auto;
}

/* Achterste foto */
.about__img--back {
  position: relative;
  z-index: 1;
  width: 75%;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
.about__img--back img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* Voorste foto — overlapt */
.about__img--front {
  position: absolute;
  bottom: -10%;
  right: 0;
  z-index: 2;
  width: 60%;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
}
.about__img--front img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* Tekstgedeelte */

.about__text {
  margin-bottom: 1rem;
  color: var(--text);
  line-height: 1.6;
}

/* Responsief: 1 kolom op mobiel */
@media (max-width: 820px) {
  .about__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about__images {
    max-width: 420px;
    margin: 0 auto 2rem;
  }

  .about__img--front {
    position: absolute;
    bottom: -12%;
    right: -5%;
    width: 65%;
  }
}
/* =========================
   Over ons – 2 kolommen + overlap
   ========================= */
.about-stack__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr; /* iets meer ruimte voor tekst */
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

/* Tekstkolom */
.about-stack__title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 3.6vw, 2.6rem);
  line-height: 0.95;
  margin: 0 0 0.8rem 0;
}
.about-stack__content p {
  margin: 0 0 1rem 0;
  color: #5a4e41;
  max-width: 52ch;
}
.about-stack__content .btn {
  margin-top: 0.25rem;
}

/* Beeldkolom met voorspelbare maat */
.about-stack__images {
  position: relative;
  width: min(520px, 100%); /* harde cap -> geen rare overshoot */
  min-height: clamp(280px, 42vw, 420px); /* houdt de stack zichtbaar */
  margin-inline: auto; /* bij smalle schermen mooi centreren */
}

/* Achterste foto */
.about-stack__img {
  position: relative;
  overflow: hidden;
  border-radius: 12px; /* zachter & luxueus */
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}
.about-stack__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-stack__img--back {
  width: 78%;
  height: 78%;
  transform: translate(10%, 6%); /* subtiele offset */
}

/* Voorste (overlappende) foto */
.about-stack__img--front {
  position: absolute;
  right: 0;
  top: 0;
  width: 68%;
  height: 68%;
  transform: translate(6%, 18%); /* overlap naar beneden/rechts */
  z-index: 2;
}

/* Responsief: één kolom met nette overlap */
@media (max-width: 980px) {
  .about-stack__grid {
    grid-template-columns: 1fr;
  }
  .about-stack__content {
    text-align: center;
    margin-inline: auto;
    max-width: 640px;
  }
  .about-stack__images {
    margin-top: 1rem;
    width: min(440px, 92%);
    min-height: 340px;
  }
  .about-stack__img--back {
    width: 82%;
    height: 75%;
    transform: translate(8%, 6%);
  }
  .about-stack__img--front {
    width: 72%;
    height: 72%;
    transform: translate(4%, 18%);
  }
}

/* Extra kleine schermen – minder overlap zodat niets “breekt” */
@media (max-width: 520px) {
  .about-stack__images {
    min-height: 300px;
  }
  .about-stack__img--back {
    transform: translate(6%, 4%);
  }
  .about-stack__img--front {
    transform: translate(2%, 16%);
  }
}
/* ===== Intro met geschrankte foto's ===== */
.intro-stagger__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr; /* tekst iets breder */
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
}

.intro-stagger__title {
  font-family: var(--ff-head);
  font-size: clamp(2.2rem, 5.5vw, 64px);
  line-height: 0.95;
  margin: 0 0 0.6rem 0;
  color: var(--clr-ink);
}
.intro-stagger__lead {
  margin: 0 0 1.2rem 0;
  color: #5a4e41;
  max-width: 56ch;
}
.intro-stagger__actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

/* Foto-stack */
.intro-stagger__photos {
  position: relative;
  min-height: clamp(360px, 46vw, 640px);
}

/* Kaarten (foto’s) */
.st-card {
  position: absolute;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #eee;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.st-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 4–5 kaarten: posities + grootten */
.st-card--a {
  top: 4%;
  left: 4%;
  width: 44%;
  height: 46%;
}
.st-card--b {
  top: 0;
  right: 8%;
  width: 38%;
  height: 38%;
}
.st-card--c {
  bottom: 6%;
  left: 10%;
  width: 36%;
  height: 38%;
}
.st-card--d {
  bottom: 2%;
  right: 0;
  width: 40%;
  height: 44%;
}
/* optioneel 5e kaart (smaller, bovenaan rechts) */
.st-card--e {
  top: 16%;
  right: -4%;
  width: 26%;
  height: 28%;
}

/* zachte “glow” onderaan rechts (subtiel accent) */
.intro-stagger__photos::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -10%;
  width: 60%;
  height: 50%;
  background: radial-gradient(60% 60% at 80% 80%, rgba(215, 176, 121, 0.28), rgba(215, 176, 121, 0));
  filter: blur(24px);
  pointer-events: none;
}

/* Responsief */
@media (max-width: 980px) {
  .intro-stagger__grid {
    grid-template-columns: 1fr;
  }
  .intro-stagger__photos {
    min-height: 420px;
    margin-top: 0.5rem;
  }
  /* iets compacter positioneren */
  .st-card--a {
    top: 2%;
    left: 2%;
    width: 48%;
    height: 46%;
  }
  .st-card--b {
    top: 0;
    right: 6%;
    width: 44%;
    height: 40%;
  }
  .st-card--c {
    bottom: 4%;
    left: 8%;
    width: 42%;
    height: 40%;
  }
  .st-card--d {
    bottom: 0;
    right: 0;
    width: 46%;
    height: 44%;
  }
  .st-card--e {
    display: none;
  } /* vijfde kaart verbergen op tablet/mobiel */
}

@media (max-width: 560px) {
  /* op klein scherm alternatieve layout: horizontale “rail” */
  .intro-stagger__photos {
    min-height: auto;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 70%;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }
  .intro-stagger__photos::-webkit-scrollbar {
    height: 8px;
  }
  .intro-stagger__photos::-webkit-scrollbar-thumb {
    background: #d9d0c3;
    border-radius: 999px;
  }

  .st-card {
    position: relative;
    width: auto;
    height: 56vw;
    min-height: 240px;
  }
  .st-card--a,
  .st-card--b,
  .st-card--c,
  .st-card--d,
  .st-card--e {
    inset: auto;
  }
}
/* ===== Compact About variant ===== */
.about--compact {
  position: relative;
  overflow: hidden;
  background: #f9f7f3; /* subtiel zandkleurig vlak (geen full white) */
  border-radius: var(--radius);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.about__inner--side {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.about__media--half {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
.about__media--half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 3;
}

.about__content--narrow {
  max-width: 500px;
}
.about__content--narrow p {
  color: #5a4e41;
  margin: 0 0 1rem 0;
}

/* Responsief */
@media (max-width: 880px) {
  .about__inner--side {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about__content--narrow {
    margin: 0 auto;
  }
  .about__media--half {
    order: -1;
  }
  .about__media--half img {
    aspect-ratio: 16 / 9;
  }
}
/* ===== Compacte side-by-side variant van .about ===== */

/* Gebruik een gewone grid i.p.v. absolute layering */
.about--compact .about__inner {
  position: static;
  display: grid;
  grid-template-columns: 1.1fr 1fr; /* iets meer ruimte voor de foto */
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1.5rem, 4vw, 3rem);
}

/* Zorg dat content onderdeel is van de grid, geen absolute positioning */
.about--compact .about__content {
  position: static;
  display: block;
  align-self: center;
  max-width: 560px; /* smalle elegante tekstkolom */
}

/* Verberg de hero-overlay in deze variant */
.about--compact .about__overlay {
  display: none;
}

/* Foto gedraagt zich als “kaartje” */
.about--compact .about__media {
  position: static;
  height: auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
.about--compact .about__media > img {
  width: 100%;
  height: auto; /* geen height:100% hier */
  object-fit: cover;
  aspect-ratio: 4 / 3; /* mooie verhouding */
}

/* Typo-tuning */
.about--compact .section__title {
  margin: 0 0 0.5rem 0;
}
.about--compact .about__content p {
  margin: 0 0 1rem 0;
  color: #5a4e41;
}

/* Responsief stapelen (foto boven, tekst eronder) */
@media (max-width: 900px) {
  .about--compact .about__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about--compact .about__content {
    margin-inline: auto;
  }
  .about--compact .about__media {
    order: -1;
  }
  .about--compact .about__media > img {
    aspect-ratio: 16 / 9;
  }
}
/* ===== Groepen hero ===== */
.groepen-hero .menu-hero__overlay {
  background: rgba(64, 54, 42, 0.35); /* iets donkerder dan menu-hero */
}
.groepen-hero .menu-hero__overlay {
  background: rgba(64, 54, 42, 0.35);
}
.groepen-hero .menu-hero__title {
  font-size: clamp(2.5rem, 6vw, 64px);
}

/* ===== CTA blok voor groepen ===== */
.group-cta {
  background: #f9f7f3;
  text-align: center;
  border-top: 1px solid #e8e1d7;
  border-bottom: 1px solid #e8e1d7;
}
.group-cta__inner {
  max-width: 720px;
  margin-inline: auto;
}
.group-cta p {
  color: #5a4e41;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}
.group-cta .btn {
  margin-bottom: 1.5rem;
}

/* Subtiele lijn tussen de 2 delen */
.group-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-primary-2));
  margin: 2rem auto;
  border-radius: 2px;
}

/* Hero overlay */

/* CTA blok */

/* ===== Formulier ===== */
.group-form {
  background: #fff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  margin-top: 1.5rem;
  text-align: left;
}

.group-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 1rem;
}

.group-form .form-group.full {
  grid-column: 1 / -1;
}

.group-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: #3d2e22;
}

.group-form input,
.group-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd3c5;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  color: #3d2e22;
  background-color: #fff;
}

.group-form input:focus,
.group-form textarea:focus {
  border-color: var(--clr-primary);
  outline: none;
}

.group-form button {
  display: block;
  margin: 1.5rem auto 0 auto;
}

/* Mobiel */
@media (max-width: 700px) {
  .group-form .form-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== Footer: force single column on mobile/tablet ===== */
@media (max-width: 980px) {
  /* center the brand and social a bit */
  .footer__brand {
    order: 1;
    text-align: center;
  }
  .footer__brand .footer__logo {
    width: 140px;
    height: 140px;
    margin: 0 auto 0.75rem;
  }
  .footer__social {
    justify-content: center;
  }

  /* contact list icons + text tidy */
  .footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
  }
  .footer__icon {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    color: var(--clr-primary-2);
    margin-top: 0.2rem;
  }
  .footer__icon svg {
    width: 22px;
    height: 22px;
  }
}

/* keep the bottom bar stacked nicely */
@media (max-width: 560px) {
}
/* ===== Footer: volgorde & centrering op mobiel ===== */
@media (max-width: 980px) {
  /* Zet de contactkolom eerst */

  .footer__contact {
    order: 2;
  }

  /* Center de overige blokken */
  .footer__col,
  .footer__brand {
    text-align: center;
  }

  /* Center de linklijsten binnen kolommen */
  .footer__list {
    justify-items: center;
    text-align: center;
  }

  /* Zorg dat Quick Links en Menu iets compacter zijn */
  .footer__col .footer__title {
    margin-bottom: 0.5rem;
  }
  .footer__list li {
    margin: 0.25rem 0;
  }

  /* Logo blijft mooi gecentreerd */

  /* Socials centreren */
} /* ===== Footer: juiste volgorde en centrering op mobiel ===== */
@media (max-width: 980px) {
  /* 1️⃣ Logo/brand blijft eerst */

  /* 2️⃣ Contactinfo komt daarna */

  /* 3️⃣ Quick Links & Menu erna */
  .footer__col {
    order: 3;
    text-align: center;
  }

  /* Extra ademruimte tussen secties */
  .footer__brand,
  .footer__contact,
  .footer__col {
    margin-bottom: 1.25rem;
  }
}
.footer__nl-success {
  background: #e8f8e8;
  border: 1px solid #4fa84f;
  color: #2d6b2d;
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 15px;
}

.footer__nl-error {
  background: #fde8e8;
  border: 1px solid #c45858;
  color: #8a2e2e;
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 15px;
}
/* Popup background */
.holiday-popup {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  padding: 0;
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

/* Visible state */
.holiday-popup.show {
  opacity: 1;
  pointer-events: auto;
}

/* Inner content */
.holiday-popup__inner {
  padding: 1.2rem 1.5rem;
  background: white;
  color: #222;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  font-size: 0.95rem;
  max-width: 260px;
  line-height: 1.45;
}

/* Close button */
.holiday-popup__close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: #222;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

/* Promo modal */
.promo-modal { position: fixed; inset: 0; display: none; z-index: 9999; }
.promo-modal.is-open { display: block; }
html.modal-open,
body.modal-open {
  overflow: hidden;
}

.promo-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.60); }

.promo-modal__dialog {
  position: relative;
  max-width: 860px;
  margin: 7vh auto;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
  overflow: hidden;
}

.promo-modal__content { padding: 22px 22px 18px; }

.promo-modal__close{
  position: absolute;
  top: 14px; right: 14px;
  width: 44px; height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(0,0,0,.06);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.promo-modal__close:hover {
  background: rgba(0,0,0,.12);
}

.promo-modal__badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.06);
  font-size: 13px;
  margin: 0 0 10px;
}

.promo-modal__title{
  margin: 0 0 10px;
  font-size: 30px;
  color: #111;
}

.promo-modal__text{
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.5;
  color: #222;
  max-width: 68ch;
}

/* Foto / hero */
.promo-modal__media{
  margin: 0 0 16px;
  border-radius: 16px;
  overflow: hidden;
  background: #f2f2f2;
  border: 1px solid rgba(0,0,0,.08);
}

.promo-modal__media img{
  width: 100%;
  height: auto;
  display: block;
}

/* CTA row */
.promo-modal__ctaRow{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.promo-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.promo-btn--accent  { background: #b1002e; color: #fff; }
.promo-btn--primary { background: #111; color: #fff; }
.promo-btn--outline { background: #fff; color: #111; border-color: rgba(0,0,0,.22); }
.promo-btn--ghost   { background: rgba(0,0,0,.06); color: #111; }

.promo-btn--outline {
  appearance: none;
}

.promo-modal__fine{
  margin: 12px 0 0;
  font-size: 12px;
  color: rgba(0,0,0,.65);
}

@media (max-width: 760px){
  .promo-modal__dialog { margin: 10vh 14px; }
  .promo-modal__content { padding: 18px 16px 16px; }
  .promo-modal__title { font-size: 22px; }
  .promo-btn { width: 100%; }
}
@media (max-width: 480px) {
  /* maak de close-knop iets kleiner en zorg dat hij niet in de tekst zit */
  .promo-modal__close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  /* duw de titel wat naar beneden + ruimte rechts zodat X nooit overlapt */
  .promo-modal__content {
    padding-top: 56px; /* ruimte voor de close button */
  }

  .promo-modal__title {
    padding-right: 64px; /* ruimte zodat titel niet onder X komt */
  }
}
