/* ==========================================================================
   Villa de Musschenberg — Hero + Nieuwsbrief
   Gebaseerd op de aangeleverde hero-component, omgezet naar de huisstijl.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Layout tokens
   -------------------------------------------------------------------------- */
:root {
  --container-padding: 1.5rem;
  --radius-container: 20px;
  --radius-card: 20px;
  --content-inset: 3.25rem;        /* gedeelde inset: hero-content == nieuwsbrief-content */
}
@media (max-width: 991px) { :root { --radius-card: 16px; --content-inset: 2.5rem; } }
@media (max-width: 767px) { :root { --radius-container: 16px; --radius-card: 12px; --content-inset: 1.5rem; } }
@media (max-width: 479px) { :root { --radius-container: 16px; --radius-card: 12px; --content-inset: 1.25rem; } }

/* --------------------------------------------------------------------------
   Design tokens — Villa de Musschenberg palet (colorhunt)
   -------------------------------------------------------------------------- */
:root {
  /* Merk & accenten */
  --color-primary: #468432;          /* bosgroen — primaire knop */
  --color-primary-hover: #3a6e2a;    /* donkerder groen (hover) */
  --color-accent-green: #9ad872;     /* frisgroen */
  --color-accent-yellow: #ffef91;    /* zachtgeel */
  --color-accent-orange: #ffa02e;    /* oranje */
  --color-button-dark: #1f2a16;

  /* Achtergronden */
  --color-bg-white: #ffffff;
  --color-bg-dark: #131a10;
  --color-footer: #15170f;           /* near-black, subtiele bosgroen-ondertoon — niet puur zwart */
  --color-bg-page: #ffffff;          /* witte pagina-achtergrond — navbar valt weg, geen balk */
  --color-bg-cream: #f5f2ea;
  --color-bg-green: #e6f0d8;          /* zacht lichtgroen sectie-accent */

  --color-accent-orange-hover: #f08c12;

  /* Tekst */
  --color-text-primary: #1f2a16;
  --color-text-secondary: #555f4c;
  --color-text-muted: #8a917f;
  --color-text-white: #ffffff;
  --color-error: #c0392b;

  /* Outline */
  --color-border: #ded9cd;

  /* Typografie */
  --font-heading: 'Rokkitt', Georgia, 'Times New Roman', serif;
  --font-body: 'Nunito Sans', system-ui, -apple-system, sans-serif;

  /* Transitions */
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------------------
   Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-secondary);
  background-color: var(--color-bg-page);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 100svh;
}
@media (max-width: 991px) { body { padding: 20px 20px; } }
@media (max-width: 767px) { body { padding: 16px; gap: 16px; } }

img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
ul { list-style: none; }
h1, h2 { font-family: var(--font-heading); font-weight: 600; line-height: 1.1; overflow-wrap: break-word; }
p { overflow-wrap: break-word; }

main { display: contents; }

/* --------------------------------------------------------------------------
   Typografie
   -------------------------------------------------------------------------- */
.hero__heading {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 4.75rem;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
@media (max-width: 991px) { .hero__heading { font-size: 3.75rem; } }
@media (max-width: 767px) { .hero__heading { font-size: 3rem; } }
@media (max-width: 479px) { .hero__heading { font-size: 2.4rem; } }

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.container { width: 100%; max-width: 100%; margin-inline: auto; }
.container--padded { padding-inline: 0; }
/* Secties onder de nieuwsbrief: inhoud gecentreerd op max. 1180px */
.container--narrow { max-width: 1180px; margin-inline: auto; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.sr-only:focus {
  position: fixed; top: 0.5rem; left: 0.5rem; z-index: 9999;
  width: auto; height: auto; padding: 0.75rem 1.5rem; margin: 0;
  overflow: visible; clip: auto; white-space: normal;
  background-color: var(--color-bg-dark); color: var(--color-text-white);
  font-family: var(--font-body); font-size: 1rem; font-weight: 500;
  border-radius: 0.5em; text-decoration: none;
}

/* --------------------------------------------------------------------------
   Knoppen (component-stijl: uppercase caption, text-roll hover)
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: fit-content;
  height: 3rem;
  padding-inline: 1.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.43;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  white-space: nowrap;
  overflow: clip;
  transition: scale 0.35s var(--ease-soft), background-color 0.35s var(--ease-soft);
}
.btn__mask { display: flex; flex-direction: column; height: 1lh; overflow: clip; }
.btn__text { display: block; transition: transform 0.35s var(--ease-soft); }
.btn__arrow { flex-shrink: 0; transition: transform 0.35s var(--ease-soft); }
.btn:hover .btn__arrow { transform: translateX(8px); }
/* Primaire CTA (Direct boeken): oranje accent met donkere tekst */
.btn--primary { background-color: var(--color-accent-orange); color: var(--color-text-primary); }
/* Secundaire knop: outlined; vult zich bij hover */
.btn--outline {
  background-color: transparent;
  color: var(--color-text-white);
  border: 1px solid rgba(255,255,255,0.85);
  transition: scale 0.35s var(--ease-soft), background-color 0.35s var(--ease-soft), color 0.35s var(--ease-soft), border-color 0.35s var(--ease-soft);
}
/* Outline-knop voor lichte achtergronden: groene rand die zich bij hover vult */
.btn--line {
  background-color: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  transition: scale 0.35s var(--ease-soft), background-color 0.35s var(--ease-soft), color 0.35s var(--ease-soft);
}
/* Outline-knop met oranje accent: oranje rand + tekst, vult oranje bij hover */
.btn--accent {
  background-color: transparent;
  color: var(--color-accent-orange);
  border: 1px solid var(--color-accent-orange);
  transition: scale 0.35s var(--ease-soft), background-color 0.35s var(--ease-soft), color 0.35s var(--ease-soft), border-color 0.35s var(--ease-soft);
}

@media (min-width: 992px) and (hover: hover) and (pointer: fine) {
  .btn:hover { scale: 0.95 !important; }
  .btn--primary:hover { background-color: var(--color-accent-orange-hover); }
  .btn--outline:hover {
    background-color: var(--color-bg-white);
    color: var(--color-text-primary);
    border-color: var(--color-bg-white);
  }
  .btn--line:hover {
    background-color: var(--color-primary);
    color: var(--color-text-white);
  }
  .btn--accent:hover {
    background-color: var(--color-accent-orange);
    color: var(--color-text-primary);
    border-color: var(--color-accent-orange);
  }
  .btn:hover .btn__text,
  .btn:focus-visible .btn__text { transform: translateY(-100%); }
}

:focus:not(:focus-visible) { outline: none; }
:focus-visible { outline: 2px solid var(--color-accent-orange); outline-offset: 2px; }

@media (max-width: 479px) { .btn { width: 100%; } }

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar-wrap { position: relative; height: 64px; z-index: 50; }
.navbar {
  position: absolute; top: 0; left: 0; right: 0;
  background-color: transparent;     /* geen balk: items staan los op de pagina/over de video */
  border-radius: var(--radius-container);
  /* geen overflow:hidden -> de vlaggen kunnen vrij boven de balk uitsteken */
}
/* Alleen wanneer het mobiele uitklapmenu open is krijgt de header een leesbaar vlak */
.navbar[data-open="true"] {
  background-color: var(--color-bg-white);
  box-shadow: 0 18px 50px -28px rgba(31,42,22,0.45);
}
.navbar__bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px 12px;     /* extra ruimte boven: de zwevende vlaggen krijgen dezelfde marge boven als onder */
  border-radius: inherit; background-color: inherit;
  position: relative; z-index: 3;
}
.navbar__brand { display: inline-flex; align-items: center; height: 46px; flex-shrink: 0; }
.navbar__logo { width: auto; height: 46px; display: block; color: var(--color-text-primary); }

.navbar__menu { display: flex; align-items: center; gap: 1rem; }
.navbar__link {
  position: relative;
  display: inline-flex; align-items: center; padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 0.8125rem; font-weight: 600; line-height: 1.43;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-text-secondary);
  transition: color 0.35s var(--ease-soft);
}
.navbar__link-mask { display: flex; flex-direction: column; }
.navbar__link-text { display: block; }
.navbar__link-text + .navbar__link-text { display: none; }  /* duplicaat niet meer nodig zonder rol */
/* Smooth underline: groeit vanuit links bij hover; permanent zichtbaar op de actieve pagina */
.navbar__link::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px;
  height: 2px; border-radius: 2px;
  background-color: var(--color-primary);
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.35s var(--ease-soft);
}
.navbar__link.is-active { color: var(--color-text-primary); }
.navbar__link.is-active::after { transform: scaleX(1); }

.navbar__actions { display: flex; align-items: center; gap: 0.75rem; }
.navbar__cta { height: 2.5rem; }

/* Taalkiezer = vlaggetjes, horizontaal, zwevend boven de CTA.
   De vlaggen staan absoluut zodat ze GEEN hoogte aan de balk toevoegen:
   logo, menu en knop blijven zo netjes op één lijn verticaal uitgelijnd. */
.navbar__stack { position: relative; display: flex; align-items: center; }
.langflags {
  position: absolute; right: 2px; bottom: calc(100% + 13px);
  display: flex; align-items: center; gap: 7px;
}
.langflag {
  display: block; width: 26px; height: 17px; border-radius: 3px; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(31,42,22,0.14); opacity: 0.5;
  transition: opacity 0.2s var(--ease-soft), box-shadow 0.2s var(--ease-soft), transform 0.2s var(--ease-soft);
}
.langflag svg { width: 100%; height: 100%; display: block; }
.langflag:hover { opacity: 1; transform: translateY(-1px); }
.langflag.is-active { opacity: 1; box-shadow: 0 0 0 2px var(--color-primary); }

/* Homepage: lichte header-items over de full-screen video, op ALLE schermen
   (ook telefoon) zolang het uitklapmenu dicht is. Zodra het mobiele menu open
   gaat wordt de header wit -> deze regels vervallen en de items worden donker. */
.home .navbar:not([data-open="true"]) .navbar__link { color: rgba(255,255,255,0.88); }
.home .navbar:not([data-open="true"]) .navbar__link.is-active { color: #ffffff; }
.home .navbar:not([data-open="true"]) .navbar__link::after { background-color: #ffffff; }
.home .navbar:not([data-open="true"]) .navbar__logo { color: #f4f1e9; }
.home .navbar:not([data-open="true"]) .navbar__toggle { background-color: rgba(255,255,255,0.18); color: #ffffff; }
.home .navbar:not([data-open="true"]) .navbar__toggle-burger span { background-color: #ffffff; }
.home .navbar:not([data-open="true"]) .langflag { box-shadow: 0 0 0 1px rgba(255,255,255,0.6); opacity: 0.8; }
.home .navbar:not([data-open="true"]) .langflag.is-active { box-shadow: 0 0 0 2px #ffffff; opacity: 1; }
/* Hover op de homepage moet WIT blijven, anders valt de link weg tegen de video */
.home .navbar:not([data-open="true"]) .navbar__link:hover { color: #ffffff; }

.navbar__toggle {
  display: none; width: 2.5rem; height: 2.5rem; padding: 0;
  align-items: center; justify-content: center;
  background-color: var(--color-accent-yellow);
  border-radius: 0; color: var(--color-text-primary);
}
.navbar__toggle-burger { display: inline-flex; flex-direction: column; gap: 5px; }
.navbar__toggle-burger span { width: 18px; height: 2px; background-color: var(--color-text-primary); display: block; }
.navbar__toggle-close { display: none; align-items: center; justify-content: center; }
.navbar[data-open="true"] .navbar__toggle-burger { display: none; }
.navbar[data-open="true"] .navbar__toggle-close { display: inline-flex; }

.navbar__panel {
  position: relative; z-index: 2;
  display: grid; grid-template-rows: minmax(0, 0fr);
  background-color: inherit;
  border-radius: 0 0 var(--radius-container) var(--radius-container);
  transition: grid-template-rows 0.5s var(--ease-soft);
}
.navbar[data-open="true"] .navbar__panel { grid-template-rows: minmax(0, 1fr); }
.navbar__panel-inner { min-height: 0; overflow: hidden; display: flex; flex-direction: column; gap: 1.5rem; }

.navbar__backdrop {
  position: fixed; inset: 0; z-index: -1;
  background-color: rgba(20,26,16,0.35);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease-soft);
}
@media (max-width: 991px) {
  .navbar[data-open="true"] .navbar__backdrop { opacity: 1; pointer-events: auto; }
}

.navbar__panel-menu { display: flex; flex-direction: column; gap: 0.5rem; }
.navbar__panel-link {
  display: block; padding: 12px;
  font-family: var(--font-body);
  font-size: 0.875rem; font-weight: 600; line-height: 1.43;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-text-secondary);
  opacity: 0; transform: translateX(20px);
  transition: color 0.35s var(--ease-soft), opacity 0.35s var(--ease-soft), transform 0.35s var(--ease-soft);
}
.navbar__panel-cta {
  display: none; align-self: stretch; width: 100%;
  opacity: 0; transform: translateX(20px);
  transition: opacity 0.35s var(--ease-soft), transform 0.35s var(--ease-soft), scale 0.35s var(--ease-soft);
}
.navbar[data-open="true"] .navbar__panel-link,
.navbar[data-open="true"] .navbar__panel-cta { opacity: 1; transform: translateX(0); }
.navbar[data-open="true"] .navbar__panel-menu > li:nth-child(1) .navbar__panel-link { transition-delay: 0.15s; }
.navbar[data-open="true"] .navbar__panel-menu > li:nth-child(2) .navbar__panel-link { transition-delay: 0.2s; }
.navbar[data-open="true"] .navbar__panel-menu > li:nth-child(3) .navbar__panel-link { transition-delay: 0.25s; }
.navbar[data-open="true"] .navbar__panel-cta { transition-delay: 0.3s; }

@media (min-width: 992px) and (hover: hover) and (pointer: fine) {
  .navbar__link:hover { color: var(--color-text-primary); }
  .navbar__link:hover::after,
  .navbar__link:focus-visible::after { transform: scaleX(1); }
}
@media (min-width: 992px) and (hover: hover) and (pointer: fine) {
  .navbar__panel-link:hover { color: var(--color-text-primary); }
}

@media (max-width: 991px) {
  .navbar__menu { display: none; }
  .navbar__toggle { display: inline-flex; }
  .navbar__panel-inner { padding: 1rem 24px; }
  /* Zodra de hamburger verschijnt verhuist de CTA naar het uitklapmenu,
     zodat de balk op smalle schermen nooit overloopt. */
  .navbar__cta { display: none; }
  .navbar__panel-cta { display: inline-flex; }
  /* CTA is weg -> de vlaggen weer in de flow, netjes naast de hamburger */
  .navbar__stack { position: static; }
  .langflags { position: static; }
  /* één rij op mobiel: geen extra ruimte boven nodig */
  .navbar__bar { padding: 12px 24px; }
}
@media (max-width: 479px) {
  .navbar__bar { padding: 12px 16px; }
  .navbar__panel-inner { padding: 1rem; gap: 0.5rem; }
  .navbar__logo { height: 32px; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
/* Full-bleed: hero-video van rand tot rand, geen witte marges/afronding */
.hero {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  margin-top: -104px;          /* video loopt door tot bovenaan, achter de transparante header */
  position: relative; z-index: 1;
}
.hero > .container { max-width: none; padding-inline: 0; }
.hero__card {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 800px;           /* vaste ondergrens: korter scherm -> alle hero-tekst + knoppen blijven boven de nieuwsbrief */
  overflow: clip;
  border-radius: 0;
  background-color: var(--color-bg-dark);
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  pointer-events: none;
}
.hero__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(20,26,16,0.72) 0%, rgba(20,26,16,0.45) 38%, rgba(20,26,16,0.05) 70%),
    linear-gradient(0deg, rgba(20,26,16,0.55) 0%, rgba(20,26,16,0) 45%);
}
.hero__content {
  position: absolute;
  /* extra inset zodat de tekst meeloopt met de geboxte nieuwsbrief eronder */
  left: calc(var(--content-inset) + 24px); right: calc(var(--content-inset) + 24px);
  /* boven: ruimte voor de header; onder: ruimte voor de overlappende nieuwsbrief -> nooit overlap met de knoppen */
  top: 96px; bottom: 8rem;
  display: flex; flex-direction: column; justify-content: center;
  align-items: flex-start;
  max-width: 42em;
  color: var(--color-text-white);
  z-index: 1;
}
.hero__main { display: flex; flex-direction: column; gap: 3rem; align-items: flex-start; }
.hero__text { display: flex; flex-direction: column; gap: 1.1rem; }
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--color-accent-yellow);
}
.hero__heading { color: var(--color-text-white); max-width: 15em; text-shadow: 0 2px 24px rgba(0,0,0,0.25); }
.hero__sub {
  font-family: var(--font-body);
  font-size: 1.0625rem; line-height: 1.55;
  color: rgba(255,255,255,0.92);
  max-width: 33em;
}
.hero__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero__btn { height: 3.5rem; }

@media (max-width: 991px) {
  .hero__content { max-width: 34em; left: calc(var(--content-inset) + 20px); right: calc(var(--content-inset) + 20px); }
  .hero__main { gap: 2.5rem; }
}
@media (max-width: 767px) {
  /* Video loopt door tot bovenaan, achter de transparante header (net als desktop).
     Content blijft onderaan verankerd zodat alle hero-tekst zichtbaar is. */
  .hero { margin-top: -96px; }   /* -(body-padding 16 + navbar-wrap 64 + body-gap 16) */
  .hero__card {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: flex-end;
  }
  .hero__content {
    position: relative;
    top: auto; bottom: auto; left: auto; right: auto;
    transform: none;
    max-width: none; width: 100%;
    padding: 2.5rem var(--content-inset) 4rem;
  }
  .hero__main { gap: 2rem; }
  .hero__sub { font-size: 1rem; }
  /* Op telefoon: gelijkmatige overlay i.p.v. gradient, niet te donker */
  .hero__scrim { background: rgba(20, 26, 16, 0.42); }
}
@media (max-width: 479px) {
  .hero__main { gap: 1.75rem; }
  .hero__sub { font-size: 1rem; line-height: 1.55; }
  .hero__eyebrow { font-size: 0.75rem; letter-spacing: 0.14em; }
  .hero__actions { width: 100%; flex-direction: column; }
}

/* ==========================================================================
   NIEUWSBRIEF — overlappende kaart
   ========================================================================== */
.newsletter {
  position: relative;
  z-index: 5;
  margin-top: -6.5rem;       /* overlapt de onderrand van de hero */
}
.newsletter__card {
  background-color: var(--color-bg-white);
  border-radius: 22px;
  /* Het hele blok schuift mee met de hero-content-kolom:
     dezelfde inset als .hero__content -> de kaartrand staat exact
     onder de hero-tekst, niet onder de hele videokaart. */
  margin-inline: var(--content-inset);
  padding: 2rem 2.25rem;
  display: flex;
  /* Form lijnt uit met de onderkant van de paragraaf */
  align-items: flex-end;
  justify-content: space-between;
  gap: 2.5rem;
  border: 1px solid #e8e8e8;
  box-shadow: 0 16px 40px -30px rgba(31,42,22,0.22);
}
.newsletter__intro { max-width: 30em; }
.newsletter__eyebrow {
  font-family: var(--font-body);
  font-size: 0.8125rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.6rem;
}
.newsletter__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3.25rem;
  line-height: 1.05;
  color: var(--color-text-primary);
  margin-bottom: 0.85rem;
}
.newsletter__sub {
  font-family: var(--font-body);
  font-size: 1.0625rem; line-height: 1.55;
  color: var(--color-text-secondary);
  max-width: 26em;
}

.newsletter__form { flex-shrink: 0; width: min(100%, 30rem); }
.newsletter__field {
  display: flex; align-items: center;
  gap: 0.5rem;
  background-color: var(--color-bg-white);
  border: 1px solid #e8e8e8;
  border-radius: 0;
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  box-shadow: 0 10px 28px -26px rgba(31,42,22,0.22);
  transition: border-color 0.25s var(--ease-soft), box-shadow 0.25s var(--ease-soft);
}
.newsletter__field:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 12px 34px -20px rgba(70,132,50,0.55);
}
.newsletter__input {
  flex: 1 1 auto; min-width: 0;
  border: none; outline: none; background: transparent;
  font-family: var(--font-body);
  font-size: 1rem; color: var(--color-text-primary);
  padding: 0.65rem 0;
}
.newsletter__input::placeholder { color: var(--color-text-muted); }

.newsletter__submit {
  flex-shrink: 0;
  height: 3rem;
  gap: 0.5rem;
  padding-inline: 1.6rem;
  border-radius: 0;
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 0.95rem;
  font-weight: 600;
  /* Nieuwsbrief-knop blijft groen (zoals het goedgekeurde voorbeeld) */
  background-color: var(--color-primary);
  color: var(--color-text-white);
}
.newsletter__submit-arrow { transition: transform 0.35s var(--ease-soft); }
@media (min-width: 992px) and (hover: hover) and (pointer: fine) {
  .newsletter__submit:hover { scale: 1 !important; background-color: var(--color-primary-hover); }
  .newsletter__submit:hover .newsletter__submit-arrow { transform: translateX(3px); }
}

.newsletter__feedback {
  margin-top: 0.85rem;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.newsletter__feedback[data-state="ok"] { color: var(--color-primary); }
.newsletter__feedback[data-state="error"] { color: var(--color-error); }

@media (max-width: 991px) {
  .newsletter { margin-top: -5.5rem; }
  .newsletter__card { flex-direction: column; align-items: flex-start; gap: 1.5rem; padding: 1.75rem; }
  .newsletter__form { width: 100%; }
  .newsletter__heading { font-size: 2.75rem; }
}
@media (max-width: 767px) {
  .newsletter { margin-top: -1.5rem; }
  .newsletter__card { padding: 1.875rem; border-radius: 18px; gap: 1.875rem; }
  .newsletter__heading { font-size: 2.4rem; }
}
@media (max-width: 479px) {
  .newsletter__field {
    flex-direction: column;
    border-radius: 0;
    padding: 0.75rem;
    align-items: stretch;
    gap: 0.6rem;
  }
  .newsletter__input { padding: 0.65rem 0.75rem; text-align: left; }
  .newsletter__submit { width: 100%; }
  .newsletter__heading { font-size: 2.1rem; }
}

/* ==========================================================================
   UITGELICHT — mooiste foto + tekst/CTA
   ========================================================================== */
.feature { padding-block: 6rem; }
.feature__grid {
  display: grid;
  /* Tekstkolom 150px breder dan de foto (bij 1180px: foto 487 / tekst 637) */
  grid-template-columns: 487fr 637fr;
  /* Foto rekt mee met de hoogte van de tekstkolom */
  align-items: stretch;
  gap: 3.5rem;
}
.feature__media {
  position: relative;
  margin: 0;
  /* Foto is bewust wat langer dan de tekst; de tekst centreert ernaast */
  min-height: 430px;
  border-radius: 10px;
  overflow: clip;
}
.feature__media img {
  /* Vult de volledige kolomhoogte; steekt boven/onder uit (bijgesneden) */
  position: absolute; inset: 0;
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
}
.feature__body { max-width: none; align-self: center; }
.feature__eyebrow {
  font-family: var(--font-body);
  font-size: 0.8125rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.feature__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.06;
  color: var(--color-text-primary);
  margin-bottom: 1.1rem;
}
.feature__text {
  font-family: var(--font-body);
  font-size: 1.0625rem; line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: 1.75rem;
}
.feature__cta { height: 3.25rem; }

@media (max-width: 991px) {
  .feature { padding-block: 4.5rem; }
  .feature__grid { gap: 2.5rem; }
  .feature__heading { font-size: 2.6rem; }
}
@media (max-width: 767px) {
  .feature { padding-block: 3.5rem; }
  .feature__grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .feature__media { min-height: 0; aspect-ratio: 16 / 10; }
  .feature__body { max-width: none; }
  .feature__heading { font-size: 2.3rem; }
}

/* Omgekeerde variant: foto rechts, tekst links */
.feature--reverse .feature__grid { grid-template-columns: 637fr 487fr; }
.feature--reverse .feature__media { order: 2; }
.feature--reverse .feature__body { order: 1; }
@media (max-width: 767px) {
  .feature--reverse .feature__grid { grid-template-columns: 1fr; }
  .feature--reverse .feature__media { order: 0; }
  .feature--reverse .feature__body { order: 0; }
}

/* ==========================================================================
   BENTO — mooiste foto's (zachtgele sectie)
   ========================================================================== */
.bento {
  /* Full-bleed: breekt uit de body-padding, dekt de volledige breedte */
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  background-color: var(--color-bg-green);
  padding: 4.5rem var(--content-inset);
}
.bento__head { max-width: 1180px; margin: 0 auto 2.5rem; }
.bento__eyebrow {
  font-family: var(--font-body);
  font-size: 0.8125rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.bento__heading {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 3rem; line-height: 1.05; color: var(--color-text-primary);
}
.bento__grid {
  max-width: 1180px; margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
  grid-template-areas:
    "big big aerial aerial"
    "big big bar bedroom"
    "cta cta terrace biljart";
}
.bento__tile { position: relative; margin: 0; border-radius: 10px; overflow: clip; }
.bento__tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-soft); }
.bento__tile--big { grid-area: big; }
.bento__tile--aerial { grid-area: aerial; }
.bento__tile--bar { grid-area: bar; }
.bento__tile--bedroom { grid-area: bedroom; }
.bento__tile--terrace { grid-area: terrace; }
.bento__tile--biljart { grid-area: biljart; }

.bento__cta {
  grid-area: cta;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 1.1rem;
  padding: 1.75rem;
  border-radius: 18px;
  background-color: var(--color-bg-white);
  border: 1px solid #e8e8e8;
}
.bento__cta-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.45rem;
}
.bento__cta-title {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 1.6rem; line-height: 1.12;
  color: var(--color-text-primary);
}
.bento__cta-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }

@media (min-width: 992px) and (hover: hover) and (pointer: fine) {
  .bento__tile:hover img { transform: scale(1.05); }
}
@media (max-width: 991px) {
  .bento { padding-block: 3.5rem; }
  .bento__heading { font-size: 2.6rem; }
  .bento__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    grid-template-areas:
      "big big"
      "aerial aerial"
      "bar bedroom"
      "terrace biljart"
      "cta cta";
  }
}
@media (max-width: 479px) {
  .bento__heading { font-size: 2.3rem; }
  .bento__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 190px;
    gap: 12px;
    grid-template-areas:
      "big" "aerial" "bar" "bedroom" "terrace" "biljart" "cta";
  }
}

/* Bento op telefoon: foto's als horizontale swipe-slider, CTA eronder */
.bento__swipe { display: none; }
@media (max-width: 600px) {
  .bento__swipe {
    display: flex; gap: 12px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    /* Full-bleed: breekt uit de sectie-padding zodat de slider tot de schermrand loopt */
    margin: 0 calc(-1 * var(--content-inset)) 1.5rem;
    padding: 0 var(--content-inset) 4px;
    scroll-padding-left: var(--content-inset);
    scrollbar-width: none;
  }
  .bento__swipe::-webkit-scrollbar { display: none; }
  .bento__swipe-item {
    flex: 0 0 84%; margin: 0; scroll-snap-align: start;
    border-radius: 12px; overflow: clip; aspect-ratio: 4 / 3;
    background: var(--color-bg-cream);
  }
  .bento__swipe-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .bento__grid { display: block; }
  .bento__grid > .bento__tile { display: none; }
}

/* ==========================================================================
   BEZIENSWAARDIGHEDEN — kaartenraster
   ========================================================================== */
.sights { padding-block: 6rem; }
.sights__head { max-width: 44rem; margin: 0 auto 3rem; text-align: center; }
.sights__eyebrow {
  font-family: var(--font-body);
  font-size: 0.8125rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.sights__heading {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 3rem; line-height: 1.05; color: var(--color-text-primary);
  margin-bottom: 1.1rem;
}
.sights__lead {
  font-family: var(--font-body);
  font-size: 1.0625rem; line-height: 1.7; color: var(--color-text-secondary);
  max-width: 40rem; margin-inline: auto;
}

.sights__grid {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1px;                                  /* dunne scheidslijnen */
  background-color: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: clip;
}
.sights__card {
  background-color: var(--color-bg-white);
  padding: clamp(1.6rem, 2.5vw, 2.3rem);
  display: flex; flex-direction: column; align-items: flex-start;
}
.sights__icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background-color: rgba(70, 132, 50, 0.1);
  color: var(--color-primary);
  margin-bottom: 1.3rem;
}
.sights__icon svg { width: 23px; height: 23px; }
.sights__tag {
  font-family: var(--font-body);
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700; color: var(--color-accent-orange);
  margin-bottom: 0.6rem;
}
.sights__card-title {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 1.4rem; line-height: 1.2;
  color: var(--color-text-primary); margin-bottom: 0.5rem;
}
.sights__card-text {
  font-family: var(--font-body);
  font-size: 0.95rem; line-height: 1.6; color: var(--color-text-secondary);
}
.sights__closing {
  font-family: var(--font-heading); font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.6rem);
  color: var(--color-primary); text-align: center;
  margin-top: 3rem;
}

@media (max-width: 991px) {
  .sights { padding-block: 4.5rem; }
  .sights__heading { font-size: 2.6rem; }
}
@media (max-width: 767px) {
  .sights { padding-block: 3.5rem; }
  .sights__heading { font-size: 2.3rem; }
}
@media (max-width: 560px) {
  .sights__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  /* Full-bleed: volledige breedte én tot de onderrand van de pagina */
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  margin-bottom: -20px;
  background-color: var(--color-footer);
  color: rgba(255,255,255,0.88);
  padding: 4rem var(--content-inset) 2.25rem;
}
.site-footer .container { max-width: 1180px; }
.site-footer__top {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
  padding-bottom: 2.5rem;
}
.site-footer__cols {
  display: flex; gap: 5rem; flex-wrap: wrap;
  /* Kolommen staan helemaal rechts (via space-between), tekst links uitgelijnd */
}
.site-footer__brand { max-width: 32rem; }
.site-footer__logo { display: inline-block; margin-bottom: 1.25rem; color: #f4f1e9; }
.site-footer__logo svg { height: 46px; width: auto; display: block; }
.site-footer__tagline {
  font-family: var(--font-body); font-size: 1rem; line-height: 1.6;
  color: rgba(255,255,255,0.66); margin-bottom: 1.5rem;
}
.footer-news__field {
  display: flex; align-items: center; gap: 0.5rem;
  background-color: #fff; border-radius: 0;
  padding: 0.4rem 0.4rem 0.4rem 1.25rem;
  max-width: 30rem;
}
.footer-news__input {
  flex: 1 1 auto; min-width: 0;
  border: none; outline: none; background: transparent;
  font-family: var(--font-body); font-size: 1rem; color: var(--color-text-primary);
  padding: 0.6rem 0;
}
.footer-news__input::placeholder { color: var(--color-text-muted); }
.footer-news__submit {
  flex-shrink: 0; height: 2.75rem; gap: 0.4rem;
  padding-inline: 1.3rem; border-radius: 0;
  text-transform: none; letter-spacing: 0.01em; font-size: 0.9rem; font-weight: 600;
}
.footer-news__submit svg { transition: transform 0.35s var(--ease-soft); }
.footer-news__feedback { margin-top: 0.6rem; font-size: 0.9rem; color: var(--color-accent-green); }
.footer-news__feedback[data-state="error"] { color: #ffb4ab; }

/* Footer op telefoon: kolommen onder elkaar + nieuwsbrief netjes gestapeld */
@media (max-width: 560px) {
  .site-footer__cols { flex-direction: column; gap: 2.25rem; }
  .footer-news__field {
    flex-direction: column; align-items: stretch;
    gap: 0.55rem; padding: 0.55rem;
  }
  .footer-news__input { padding: 0.75rem 0.85rem; }
  .footer-news__submit { width: 100%; height: 3rem; }
}

.site-footer__col-title {
  font-family: var(--font-body); font-size: 0.8125rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin-bottom: 1.1rem;
}
.site-footer__col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.site-footer__col a {
  font-family: var(--font-body); font-size: 1rem; color: rgba(255,255,255,0.7);
  transition: color 0.25s var(--ease-soft);
}
.site-footer__socials { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.site-footer__socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.22); border-radius: 50%;
  color: rgba(255,255,255,0.75);
  transition: color 0.25s var(--ease-soft), background-color 0.25s var(--ease-soft), border-color 0.25s var(--ease-soft);
}
.site-footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.12);
}
.site-footer__copy { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.site-footer__legal { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.site-footer__legal > a { font-size: 0.85rem; color: rgba(255,255,255,0.7); transition: color 0.25s var(--ease-soft); }
.site-footer__made { font-size: 0.8rem; color: rgba(255,255,255,0.38); }
.site-footer__made a { color: rgba(255,255,255,0.6); transition: color 0.25s var(--ease-soft); }

@media (min-width: 992px) and (hover: hover) and (pointer: fine) {
  .site-footer__col a:hover,
  .site-footer__legal > a:hover { color: #fff; }
  .site-footer__socials a:hover {
    color: var(--color-text-primary);
    background-color: var(--color-accent-green);
    border-color: var(--color-accent-green);
  }
  .footer-news__submit:hover svg { transform: translateX(3px); }
  .site-footer__made a:hover { color: var(--color-accent-green); }
}
@media (max-width: 767px) {
  .site-footer { padding-block: 3rem 1.75rem; margin-bottom: -16px; }
  .site-footer__top { flex-direction: column; gap: 2.25rem; padding-bottom: 2rem; }
  .site-footer__cols { text-align: left; gap: 2.5rem; }
  .site-footer__socials { justify-content: flex-start; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; gap: 0.85rem; }
}

/* ==========================================================================
   TAALWISSELAAR (NL / DE / EN / FR)
   ========================================================================== */
.lang { position: relative; }
.lang__toggle {
  display: inline-flex; align-items: center; gap: 0.4rem;
  height: 2.5rem; padding: 0 0.6rem;
  border: none;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--color-text-primary);
  background-color: transparent;
  transition: background-color 0.25s var(--ease-soft);
}
.lang__globe { color: var(--color-primary); flex-shrink: 0; }
.lang__chevron { transition: transform 0.3s var(--ease-soft); opacity: 0.7; }
.lang[data-open="true"] .lang__chevron { transform: rotate(180deg); }
@media (min-width: 992px) and (hover: hover) and (pointer: fine) {
  .lang__toggle:hover { background-color: #f1f6ed; }
}

.lang__menu {
  position: absolute; top: calc(100% + 0.5rem); right: 0;
  min-width: 11rem;
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: 0.85rem;
  padding: 0.4rem;
  box-shadow: 0 18px 44px -22px rgba(31,42,22,0.45);
  display: flex; flex-direction: column; gap: 0.1rem;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.25s var(--ease-soft), transform 0.25s var(--ease-soft), visibility 0.25s;
  z-index: 20;
}
.lang[data-open="true"] .lang__menu { opacity: 1; visibility: visible; transform: translateY(0); }

.lang__option {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 0.6rem 0.75rem;
  border-radius: 0.55rem;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
  color: var(--color-text-secondary);
  transition: background-color 0.2s var(--ease-soft), color 0.2s var(--ease-soft);
}
.lang__code { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; color: var(--color-text-muted); }
.lang__option.is-active { color: var(--color-primary); background-color: #f1f6ed; }
.lang__option.is-active .lang__code { color: var(--color-primary); }
@media (min-width: 992px) and (hover: hover) and (pointer: fine) {
  .lang__option:hover { background-color: #f1f6ed; color: var(--color-text-primary); }
}
@media (max-width: 479px) {
  .lang__toggle { height: 2.25rem; padding: 0 0.55rem; }
}

/* ==========================================================================
   prefers-reduced-motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.001ms !important; }
}

/* ==========================================================================
   BOEKEN-pagina
   ========================================================================== */
.booking { padding-block: clamp(2.5rem, 5vw, 4.75rem); }
.booking__head { max-width: 44rem; margin: 0 auto clamp(1.75rem, 3vw, 2.75rem); text-align: center; }
.booking__eyebrow {
  font-family: var(--font-body);
  font-size: 0.8125rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--color-primary); margin-bottom: 0.75rem;
}
.booking__heading {
  font-family: var(--font-heading); font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1.05;
  color: var(--color-text-primary); margin-bottom: 1rem;
}
.booking__lead {
  font-family: var(--font-body);
  font-size: 1.0625rem; line-height: 1.7; color: var(--color-text-secondary);
  max-width: 40rem; margin-inline: auto;
}
.booking__frame {
  max-width: 1180px; margin-inline: auto;
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-container);
  box-shadow: 0 16px 40px -30px rgba(31, 42, 22, 0.22);
  padding: clamp(0.6rem, 1.6vw, 1.1rem);
  scroll-margin-top: 90px;
}
.booking__iframe {
  display: block; width: 100%; height: 2000px;
  border: none; border-radius: 12px; background: #fff;
}
@media (max-width: 479px) {
  .booking__iframe { height: 1750px; }
}

/* Boekpagina: 3 optiekaarten naast elkaar */
.book-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}
.book-option {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: box-shadow 0.35s var(--ease-soft), transform 0.35s var(--ease-soft), border-color 0.35s var(--ease-soft);
}
.book-option:hover {
  box-shadow: 0 22px 50px -34px rgba(31, 42, 22, 0.32);
  border-color: #d6d2c6;
  transform: translateY(-4px);
}
.book-option__media { aspect-ratio: 16 / 11; overflow: hidden; background: var(--color-bg-cream); }
.book-option__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s var(--ease-soft);
}
.book-option:hover .book-option__media img { transform: scale(1.05); }
.book-option__body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.book-option__cap {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-primary);
}
.book-option__name {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 1.6rem; line-height: 1.1; color: var(--color-text-primary);
}
.book-option__desc {
  font-family: var(--font-body); font-size: 0.97rem; line-height: 1.6;
  color: var(--color-text-secondary); flex: 1;
}
.book-option__cta { margin-top: 0.85rem; }
.book-option__cta .btn { width: 100%; }
@media (max-width: 880px) {
  .book-options { grid-template-columns: 1fr; max-width: 30rem; margin-inline: auto; }
}

/* Boekpagina: Google Maps */
.book-map { margin-top: clamp(2.5rem, 5vw, 4.25rem); }
.book-map__head { max-width: 44rem; margin: 0 auto clamp(1.5rem, 3vw, 2.25rem); text-align: center; }
.book-map__eyebrow {
  font-family: var(--font-body); font-size: 0.8125rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 0.75rem;
}
.book-map__heading {
  font-family: var(--font-heading); font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1.08; color: var(--color-text-primary);
}
.book-map__frame {
  border-radius: var(--radius-container); overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 16px 40px -30px rgba(31, 42, 22, 0.22);
}
.book-map__frame iframe { display: block; width: 100%; height: 440px; border: 0; }
@media (max-width: 479px) { .book-map__frame iframe { height: 340px; } }

/* ==========================================================================
   VILLA-PAGINA — hero, kamer-secties, specificaties, galerij, geschiedenis
   ========================================================================== */

/* ---- Hero (400px hoog, foto van het hele complex) ---- */
.villa-hero__card {
  position: relative;
  min-height: 400px;
  border-radius: var(--radius-container);
  overflow: clip;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.villa-hero__bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
}
.villa-hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(19,26,16,.55) 0%, rgba(19,26,16,.40) 35%, rgba(19,26,16,.78) 100%),
    linear-gradient(90deg, rgba(19,26,16,.45) 0%, rgba(19,26,16,0) 60%);
}
.villa-hero__content {
  padding: clamp(1.75rem, 4vw, 3.25rem);
  max-width: 46rem;
  text-shadow: 0 1px 18px rgba(0,0,0,.35);
}
.villa-hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.8125rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--color-accent-green);
  margin-bottom: 0.6rem;
}
.villa-hero__heading {
  font-family: var(--font-heading); font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 4rem); line-height: 1.02;
  color: #fff;
}
.villa-hero__sub {
  margin-top: 0.85rem;
  font-size: 1.0625rem; line-height: 1.6;
  color: rgba(255,255,255,.9);
  max-width: 40rem;
}
@media (max-width: 767px) { .villa-hero__card { min-height: 340px; } }

/* ---- Pagina-intro onder de hero ---- */
.villa-intro { padding-block: clamp(3rem, 6vw, 5rem) 0; }
.villa-intro__inner { max-width: 46rem; margin-inline: auto; text-align: center; }
.villa-intro__eyebrow {
  font-family: var(--font-body); font-size: 0.8125rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.villa-intro__heading {
  font-family: var(--font-heading); font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 3rem); line-height: 1.06;
  color: var(--color-text-primary); margin-bottom: 1.1rem;
}
.villa-intro__text {
  font-size: 1.0625rem; line-height: 1.7; color: var(--color-text-secondary);
}

/* ---- Kamer-secties (3 opties, alles uitgeklapt) ---- */
.vroom { padding-block: clamp(3rem, 6vw, 5.5rem); }
.vroom + .vroom { border-top: 1px solid var(--color-border); }
.vroom__head { max-width: none; margin-bottom: clamp(1.75rem, 3vw, 2.5rem); }
.vroom__index {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-body); font-size: 0.8125rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-primary);
  margin-bottom: 0.8rem;
}
.vroom__index b {
  font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem;
  letter-spacing: 0; color: var(--color-accent-orange);
}
.vroom__index .vroom__pers { color: var(--color-text-muted); }
.vroom__title {
  font-family: var(--font-heading); font-weight: 700;
  font-size: clamp(2.1rem, 4.5vw, 3rem); line-height: 1.05;
  color: var(--color-text-primary);
}
.vroom__body { max-width: none; }
.vroom__body p {
  font-size: 1.0625rem; line-height: 1.75; color: var(--color-text-secondary);
  margin-bottom: 1.1rem;
}
.vroom__body p:last-of-type { margin-bottom: 0; }
.vroom__body .vroom__welcome {
  font-family: var(--font-heading); font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem); line-height: 1.4;
  color: var(--color-primary);
}
.vroom__actions { margin-top: 1.6rem; }

/* Subtiele "lees meer" met uitklappende tekst (sectie 1) */
.vroom__more {
  max-height: 0; overflow: hidden;
  transition: max-height .55s ease;
}
.vroom__more.is-open { max-height: 3000px; }
.vroom__more p:first-child { margin-top: 1.1rem; }
.readmore {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.1rem;
  font-family: var(--font-body); font-size: 0.92rem; font-weight: 600;
  color: var(--color-primary); letter-spacing: 0.01em;
  border-bottom: 1px solid transparent; padding-bottom: 1px;
  transition: border-color .2s ease;
}
.readmore:hover { border-color: var(--color-primary); }
.readmore svg { width: 15px; height: 15px; transition: transform .35s ease; }
.readmore[aria-expanded="true"] svg { transform: rotate(180deg); }

/* ---- Foto-slider (hoofdfoto + verticale, aanklikbare thumbnails rechts) ---- */
.slider {
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  display: flex; flex-direction: column; gap: 20px;
}
.slider__bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.slider__bar .btn { width: fit-content; }
.slider__controls { display: flex; gap: 20px; }
.slider__body { display: flex; gap: 12px; align-items: stretch; }
.slider__main {
  position: relative; flex: 1 1 auto; min-width: 0;
  height: clamp(300px, 40vw, 480px);
  border-radius: 14px; overflow: clip; background: var(--color-bg-cream);
}
.slider__track {
  display: flex; height: 100%;
  transition: transform .55s cubic-bezier(.4, .0, .2, 1);
}
.slider__slide { flex: 0 0 100%; height: 100%; }
.slider__slide img { width: 100%; height: 100%; object-fit: cover; }
.slider__arrow {
  flex: none;
  width: 46px; height: 46px; display: grid; place-items: center;
  border-radius: 0;
  background: #fff; color: #131a10;
  border: 1px solid #131a10;
  transition: background .2s ease, color .2s ease, transform .12s ease;
}
.slider__arrow:hover { background: #131a10; color: #fff; }
.slider__arrow:active { transform: scale(.94); }
.slider__arrow svg { width: 28px; height: 13px; }
.slider__count {
  position: absolute; right: 14px; bottom: 12px; z-index: 2;
  padding: 0.3rem 0.7rem; border-radius: 0;
  background: rgba(19,26,16,.6); color: #fff;
  font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.06em;
}
.slider__thumbs {
  position: relative;
  flex: 0 0 116px; display: flex; flex-direction: column; gap: 10px;
  height: clamp(300px, 40vw, 480px);
  overflow-y: auto; scroll-behavior: smooth;
  padding: 2px;                       /* ruimte zodat de actieve rand niet wordt afgesneden */
  scrollbar-width: thin; scrollbar-color: var(--color-border) transparent;
}
.slider__thumbs::-webkit-scrollbar { width: 6px; }
.slider__thumbs::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 999px; }
.slider__thumb {
  flex: 0 0 auto; width: 100%; height: 78px;
  border-radius: 10px; overflow: clip;
  opacity: 0.55;
  box-shadow: inset 0 0 0 0 var(--color-primary);
  transition: opacity .2s ease, box-shadow .2s ease;
}
.slider__thumb img { width: 100%; height: 100%; object-fit: cover; }
.slider__thumb:hover { opacity: 0.85; }
.slider__thumb.is-active { opacity: 1; box-shadow: inset 0 0 0 3px var(--color-primary); }
@media (max-width: 767px) {
  .slider__body { flex-direction: column; }
  .slider__main { height: auto; aspect-ratio: 4 / 3; flex: none; }
  .slider__arrow { width: 42px; height: 42px; }
  .slider__arrow svg { width: 24px; height: 12px; }
  .slider__thumbs {
    flex: none; flex-direction: row; height: auto;
    overflow-x: auto; overflow-y: hidden;
  }
  .slider__thumb { width: 96px; height: 64px; flex: 0 0 auto; }
}

/* ---- Specificatie-grid (de "kenmerken" sectie, vernieuwd) ---- */
/* Eén samenhangend paneel met 4 kolommen, gescheiden door dunne lijnen */
.spec-grid {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: clip;
}
@media (max-width: 991px) { .spec-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 519px) { .spec-grid { grid-template-columns: 1fr; } }
.spec-card {
  background: var(--color-bg-white);
  padding: clamp(1.5rem, 2.2vw, 2rem);
}
.spec-card__head { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1.2rem; }
.spec-card__icon {
  flex: none; width: 44px; height: 44px;
  display: grid; place-items: center; border-radius: 12px;
  background: rgba(70,132,50,.1); color: var(--color-primary);
}
.spec-card__icon svg { width: 23px; height: 23px; }
.spec-card__title {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 1.4rem; line-height: 1.1; color: var(--color-text-primary);
}
.spec-list { display: flex; flex-direction: column; gap: 0.8rem; }
.spec-list li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-family: var(--font-body); font-size: 0.92rem; line-height: 1.45;
  color: var(--color-text-secondary);
}
.spec-list__ico { flex: none; width: 19px; height: 19px; margin-top: 1px; color: var(--color-primary); }
.spec-list__ico svg { width: 19px; height: 19px; display: block; }
.spec-list li b { color: var(--color-text-primary); font-weight: 600; }

/* ---- Lightbox ---- */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  display: none; align-items: center; justify-content: center;
  background: rgba(15,20,12,.92);
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: min(1100px, 92vw); max-height: 86vh;
  width: auto; height: auto; object-fit: contain;
  border-radius: 10px; box-shadow: 0 40px 120px -40px rgba(0,0,0,.8);
}
.lightbox__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; display: grid; place-items: center;
  border-radius: 50%; background: rgba(255,255,255,.12); color: #fff;
  transition: background .2s ease;
}
.lightbox__btn:hover { background: rgba(255,255,255,.25); }
.lightbox__btn--prev { left: clamp(0.75rem, 3vw, 2rem); }
.lightbox__btn--next { right: clamp(0.75rem, 3vw, 2rem); }
.lightbox__close {
  position: absolute; top: clamp(0.75rem, 3vw, 1.5rem); right: clamp(0.75rem, 3vw, 1.5rem);
  width: 46px; height: 46px; display: grid; place-items: center;
  border-radius: 50%; background: rgba(255,255,255,.12); color: #fff;
  transition: background .2s ease;
}
.lightbox__close:hover { background: rgba(255,255,255,.25); }
.lightbox__count {
  position: absolute; bottom: clamp(0.75rem, 3vw, 1.75rem); left: 50%; transform: translateX(-50%);
  font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.08em;
  color: rgba(255,255,255,.8);
}
@media (max-width: 767px) { .lightbox__btn { width: 44px; height: 44px; } }

/* ==========================================================================
   CONTACT-PAGINA — compacte hero, info links + formulier rechts
   ========================================================================== */

/* Compacte variant van de villa-hero (nog lager) */
.villa-hero--compact .villa-hero__card { min-height: 260px; }
@media (max-width: 767px) { .villa-hero--compact .villa-hero__card { min-height: 210px; } }
/* Op telefoon: lange hero-paragraaf van de villapagina verbergen (titel blijft) */
@media (max-width: 600px) { .villa-hero:not(.villa-hero--compact) .villa-hero__sub { display: none; } }

.contact { padding-block: clamp(2.75rem, 5vw, 4.75rem); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
@media (max-width: 860px) { .contact__grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ---- Linkerkolom: contactgegevens ---- */
.contact__eyebrow {
  font-family: var(--font-body); font-size: 0.8125rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.contact__heading {
  font-family: var(--font-heading); font-weight: 700;
  font-size: clamp(2.1rem, 4.5vw, 3rem); line-height: 1.05;
  color: var(--color-text-primary); margin-bottom: 1.1rem;
}
.contact__lead {
  font-family: var(--font-body); font-size: 1.0625rem; line-height: 1.7;
  color: var(--color-text-secondary); max-width: 34rem;
}
.contact__list { list-style: none; margin: clamp(1.75rem, 3vw, 2.4rem) 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 1.3rem; }
.contact__item { display: flex; align-items: flex-start; gap: 0.85rem; }
.contact__item-ico {
  flex: none; width: 26px; height: 26px; margin-top: 1px;
  display: grid; place-items: center; color: var(--color-primary);
}
.contact__item-ico svg { width: 24px; height: 24px; }
.contact__item-body { display: flex; flex-direction: column; gap: 0.15rem; }
.contact__item-label {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-text-muted);
}
.contact__item-value, .contact__item-value a {
  font-family: var(--font-body); font-size: 1.02rem; line-height: 1.4;
  color: var(--color-text-primary);
}
.contact__item-value a { transition: color 0.2s var(--ease-soft); }
.contact__item-value a:hover { color: var(--color-primary); }

/* ---- Rechterkolom: formulier ---- */
.contact__form {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.contact__form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.1rem; }
.contact__form-row .contact__field { margin-bottom: 0; }
@media (max-width: 519px) { .contact__form-row { grid-template-columns: 1fr; gap: 0.7rem; } }
.contact__field { margin-bottom: 1.1rem; }
.contact__label {
  display: block; margin-bottom: 0.45rem;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.02em; color: var(--color-text-primary);
}
.contact__label .req { color: var(--color-accent-orange); }
.contact__input, .contact__textarea {
  width: 100%;
  font-family: var(--font-body); font-size: 1rem; color: var(--color-text-primary);
  background: var(--color-bg-white);
  border: 1px solid var(--color-border); border-radius: 0;
  padding: 0.75rem 0.9rem;
  transition: border-color 0.2s var(--ease-soft), box-shadow 0.2s var(--ease-soft);
}
.contact__input::placeholder, .contact__textarea::placeholder { color: var(--color-text-muted); }
.contact__input:focus, .contact__textarea:focus {
  outline: none; border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(70,132,50,0.14);
}
.contact__textarea { min-height: 150px; resize: vertical; line-height: 1.5; }
.contact__submit { width: 100%; height: 3.25rem; margin-top: 0.4rem; }
.contact__feedback {
  margin-top: 0.9rem; font-family: var(--font-body); font-size: 0.92rem;
  color: var(--color-primary);
}
.contact__feedback[data-state="error"] { color: var(--color-error); }

/* ---- FAQ (accordion onder het contactformulier) ---- */
.faq { padding-block: clamp(2.5rem, 5vw, 4.75rem) clamp(3rem, 6vw, 5.5rem); }
.faq__head { max-width: 44rem; margin: 0 auto clamp(1.75rem, 3vw, 2.75rem); text-align: center; }
.faq__eyebrow {
  font-family: var(--font-body); font-size: 0.8125rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.faq__heading {
  font-family: var(--font-heading); font-weight: 700;
  font-size: clamp(2.1rem, 4.5vw, 3rem); line-height: 1.05; color: var(--color-text-primary);
}
.faq__list { max-width: 56rem; margin-inline: auto; border-top: 1px solid var(--color-border); }
.faq__item { border-bottom: 1px solid var(--color-border); }
.faq__qh { margin: 0; }
.faq__q {
  width: 100%; cursor: pointer; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 1.25rem;
  padding: 1.3rem 0.25rem;
  background: none; border: none;
  font-family: var(--font-heading); font-weight: 600; font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.3; color: var(--color-text-primary);
  transition: color 0.2s var(--ease-soft);
}
.faq__q:hover { color: var(--color-primary); }
.faq__q-ico {
  flex: none; width: 22px; height: 22px; color: var(--color-primary);
  transition: transform 0.3s var(--ease-soft);
}
.faq__item.is-open .faq__q-ico { transform: rotate(180deg); }
.faq__a { overflow: hidden; height: 0; transition: height 0.34s var(--ease-soft); }
.faq__a-inner { padding: 0 0.25rem 1.45rem; }
.faq__a p {
  margin: 0;
  font-family: var(--font-body); font-size: 1rem; line-height: 1.7;
  color: var(--color-text-secondary); max-width: 50rem;
}
.faq__a p + p { margin-top: 0.8rem; }
.faq__a a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { .faq__a { transition: none; } }

/* ==========================================================================
   LEGAL — algemene voorwaarden / juridische tekstpagina
   ========================================================================== */
.legal { padding-block: clamp(2.75rem, 5vw, 4.75rem); }
.legal__layout {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.legal__inner { max-width: 760px; min-width: 0; }

/* Sticky submenu (inhoudsopgave) links naast de tekst */
.legal__toc { position: sticky; top: 28px; align-self: start; }
.legal__toc-title {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-text-muted);
  margin: 0 0 0.9rem;
}
.legal__toc ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0.05rem;
  border-left: 1px solid var(--color-border);
}
.legal__toc a {
  display: block; padding: 0.4rem 0 0.4rem 0.95rem; margin-left: -1px;
  font-family: var(--font-body); font-size: 0.9rem; line-height: 1.3;
  color: var(--color-text-secondary); text-decoration: none;
  border-left: 2px solid transparent;
  transition: color 0.2s var(--ease-soft), border-color 0.2s var(--ease-soft);
}
.legal__toc a:hover { color: var(--color-text-primary); }
.legal__toc a.is-active { color: var(--color-primary); font-weight: 600; border-left-color: var(--color-primary); }
@media (max-width: 860px) {
  .legal__layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .legal__toc { position: static; top: auto; padding-bottom: 1.4rem; border-bottom: 1px solid var(--color-border); }
  .legal__toc ul { flex-direction: row; flex-wrap: wrap; gap: 0.35rem 0.9rem; border-left: none; }
  .legal__toc a { padding: 0.2rem 0; border-left: none; }
  .legal__toc a.is-active { border-left: none; }
}
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }

.legal__meta {
  font-family: var(--font-body); font-size: 0.9rem; color: var(--color-text-muted);
  letter-spacing: 0.01em;
  margin: 0 0 clamp(1.75rem, 3vw, 2.5rem); padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
}
.legal h2 {
  font-family: var(--font-heading); font-weight: 700;
  font-size: clamp(1.55rem, 3vw, 2.05rem); line-height: 1.14; color: var(--color-text-primary);
  margin: clamp(2.4rem, 4.5vw, 3.25rem) 0 1rem;
  scroll-margin-top: 2rem;
}
.legal h2:first-of-type { margin-top: 0; }
.legal h3 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 1.2rem; line-height: 1.25; color: var(--color-text-primary);
  margin: 1.9rem 0 0.6rem;
}
.legal p {
  font-family: var(--font-body); font-size: 1rem; line-height: 1.75;
  color: var(--color-text-secondary); margin: 0 0 1rem;
}
.legal p em { color: var(--color-text-primary); font-style: italic; }
.legal a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--color-primary-hover); }
.legal ul, .legal ol { margin: 0 0 1.25rem; padding-left: 1.35rem; }
.legal li {
  font-family: var(--font-body); font-size: 1rem; line-height: 1.7;
  color: var(--color-text-secondary); margin-bottom: 0.55rem;
}
.legal li::marker { color: var(--color-primary); }
.legal strong { color: var(--color-text-primary); font-weight: 700; }

/* Begrippen — definitielijst met groen accent */
.legal__defs { list-style: none; margin: 0 0 1.25rem; padding: 0;
  display: flex; flex-direction: column; gap: 0.85rem; }
.legal__defs li {
  margin: 0; padding: 0.1rem 0 0.1rem 1.1rem;
  border-left: 2px solid var(--color-accent-green);
}

/* Annuleringstijdlijn — 3 oplopende kosten-stappen */
.legal__timeline {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.85rem;
  margin: 0.5rem 0 1.75rem;
}
.legal__tl-step {
  display: flex; flex-direction: column; gap: 0.35rem;
  padding: 1.1rem 1.15rem;
  background: var(--color-bg-cream); border-radius: 14px;
  border: 1px solid var(--color-border);
}
.legal__tl-pct {
  font-family: var(--font-heading); font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.1rem); line-height: 1; color: var(--color-text-primary);
}
.legal__tl-when {
  font-family: var(--font-body); font-size: 0.82rem; line-height: 1.4;
  color: var(--color-text-secondary);
}
@media (max-width: 600px) { .legal__timeline { grid-template-columns: 1fr; } }

/* Noodnummers */
.legal__emergency { list-style: none; margin: 0.25rem 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 0; max-width: 30rem; }
.legal__emergency li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  margin: 0; padding: 0.8rem 0; border-bottom: 1px solid var(--color-border);
}
.legal__emergency li:first-child { border-top: 1px solid var(--color-border); }
.legal__em-label { font-family: var(--font-body); font-size: 0.98rem; color: var(--color-text-primary); }
.legal__emergency a {
  font-family: var(--font-heading); font-weight: 600; font-size: 1.1rem;
  color: var(--color-primary); text-decoration: none; white-space: nowrap;
}
