/* ==========================================================================
   La Vila Nature Experience — mobile-first stylesheet
   Palet: diep bosgroen, warm zand, terracotta accent.
   Alle tekst/achtergrond-combinaties zijn doorgerekend op WCAG 2.2 AA
   (kleine terracotta-tekst gebruikt daarom de donkere variant #a84620).
   ========================================================================== */

:root {
  --groen-900: #1f3a2d;
  --groen-800: #274a39;
  --groen-700: #2f5a45;
  --groen-100: #e4ede7;
  --zand-50: #faf6ef;
  --zand-100: #f3ecdf;
  --zand-200: #e8dcc7;
  --terracotta: #c2542b;          /* alleen voor knoppen/grote vlakken (wit erop = 4,57:1) */
  --terracotta-donker: #a84620;   /* voor kleine tekst op licht (≥5,0:1) */
  --inkt: #22271f;
  --inkt-zacht: #55604f;
  --wit: #ffffff;
  --geel: #e9b03c;
  --whatsapp: #075e54;            /* wit erop = 7,67:1 */
  --radius: 14px;
  --radius-klein: 9px;
  --schaduw: 0 6px 24px rgba(31, 58, 45, 0.12);
  --schaduw-zwaar: 0 12px 40px rgba(31, 58, 45, 0.22);
  --font-kop: "Fraunces", Georgia, "Times New Roman", serif;
  --font-tekst: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max-breedte: 1120px;
  --sticky-hoogte: 68px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-tekst);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--inkt);
  background: var(--zand-50);
  -webkit-font-smoothing: antialiased;
}

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

[hidden] { display: none !important; }

h1, h2, h3, h4 {
  font-family: var(--font-kop);
  font-weight: 600;
  line-height: 1.15;
  color: var(--groen-900);
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2rem, 6.5vw, 3.4rem); }
h2 { font-size: clamp(1.55rem, 4.5vw, 2.3rem); }
h3 { font-size: clamp(1.15rem, 3vw, 1.4rem); }

p { margin: 0 0 1em; }

a { color: var(--groen-700); }

/* Toetsenbordfocus: altijd zichtbaar (WCAG 2.4.7 / 2.4.11) */
:focus-visible {
  outline: 3px solid var(--terracotta-donker);
  outline-offset: 2px;
  border-radius: 4px;
}

.sectie--groen :focus-visible,
.site-footer :focus-visible,
.samenvatting :focus-visible {
  outline-color: var(--geel);
}

/* Skip-link (WCAG 2.4.1) */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  background: var(--groen-900);
  color: var(--wit);
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-klein) var(--radius-klein);
  font-weight: 700;
  text-decoration: none;
  transition: top 0.15s ease;
}

.skip-link:focus { top: 0; }

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

.container {
  width: 100%;
  max-width: var(--max-breedte);
  margin: 0 auto;
  padding: 0 20px;
}

.sectie { padding: 56px 0; }
.sectie--zand { background: var(--zand-100); }
.sectie--groen { background: var(--groen-900); color: var(--zand-50); }
.sectie--groen h2, .sectie--groen h3 { color: var(--zand-50); }
.sectie--groen p { color: var(--groen-100); }
.sectie--groen a:not(.knop) { color: var(--geel); }
.sectie--boeken { padding-top: 36px; }

.sectie-kop { max-width: 640px; margin-bottom: 32px; }
.sectie-kop--compact { margin-bottom: 20px; }
.sectie-voet { margin-top: 24px; }

.overline {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta-donker);
  margin-bottom: 10px;
}

.sectie--groen .overline { color: var(--geel); }

.bron-noot { font-size: 0.85rem; color: var(--inkt-zacht); max-width: 640px; }

/* --------------------------------------------------------------------------
   Knoppen
   -------------------------------------------------------------------------- */

.knop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-tekst);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.knop:active { transform: scale(0.97); }

.knop--primair { background: var(--terracotta); color: var(--wit); }
.knop--primair:hover { background: var(--terracotta-donker); }

.knop--secundair { background: transparent; color: var(--groen-900); border-color: var(--groen-900); }
.knop--secundair:hover { background: var(--groen-900); color: var(--zand-50); }

.knop--licht { background: transparent; color: var(--wit); border-color: var(--wit); }
.knop--licht:hover { background: var(--zand-50); color: var(--groen-900); }

.knop--breed { width: 100%; }

/* --------------------------------------------------------------------------
   Header + navigatie (mobile-first)
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 246, 239, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--zand-200);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  max-width: var(--max-breedte);
  margin: 0 auto;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.1;
  margin-right: auto;
}

.logo strong {
  font-family: var(--font-kop);
  font-size: 1.2rem;
  color: var(--groen-900);
}

.logo span {
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta-donker);
  font-weight: 600;
}

/* Taalwisselaar */
.taal-switch {
  display: flex;
  gap: 2px;
  background: var(--zand-100);
  border: 1px solid var(--zand-200);
  border-radius: 999px;
  padding: 3px;
}

.taal-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 30px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--groen-900);
}

.taal-switch a:hover { background: var(--zand-200); }

.taal-switch a[aria-current="true"] {
  background: var(--groen-900);
  color: var(--zand-50);
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: none;
  border: 1px solid var(--zand-200);
  border-radius: var(--radius-klein);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--groen-900);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--zand-50);
  border-bottom: 1px solid var(--zand-200);
  box-shadow: var(--schaduw);
  padding: 8px 20px 20px;
}

.site-nav.is-open { display: block; }

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-nav a {
  display: block;
  padding: 12px 10px;
  border-radius: var(--radius-klein);
  text-decoration: none;
  font-weight: 600;
  color: var(--groen-900);
}

.site-nav a:hover { background: var(--groen-100); }

.site-nav a.is-actief { color: var(--terracotta-donker); }

.site-nav .nav-cta a {
  background: var(--terracotta);
  color: var(--wit);
  text-align: center;
  margin-top: 8px;
}

.site-nav .nav-cta a:hover { background: var(--terracotta-donker); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: flex-end;
  background: var(--groen-800);
  overflow: hidden;
}

.hero--kort { min-height: 46vh; }

.hero__foto {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,58,45,0.15) 0%, rgba(31,58,45,0.55) 60%, rgba(31,58,45,0.85) 100%);
}

.hero__inhoud {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-breedte);
  margin: 0 auto;
  padding: 96px 20px 48px;
  color: var(--zand-50);
}

.hero__inhoud h1 { color: var(--wit); max-width: 640px; }

.hero__sub {
  font-size: clamp(1.02rem, 2.6vw, 1.25rem);
  max-width: 560px;
  color: var(--zand-100);
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(31, 58, 45, 0.55);
  border: 1px solid rgba(250, 246, 239, 0.5);
  color: var(--wit);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  backdrop-filter: blur(4px);
}

/* --------------------------------------------------------------------------
   Persbalk
   -------------------------------------------------------------------------- */

.persbalk { background: var(--groen-900); color: var(--zand-100); padding: 14px 0; }

.persbalk__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 22px;
  max-width: var(--max-breedte);
  margin: 0 auto;
  padding: 0 20px;
  font-size: 0.85rem;
}

.persbalk__label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--geel);
}

.persbalk__item { font-weight: 600; white-space: nowrap; }

.persbalk a { color: inherit; text-decoration: none; }
.persbalk a:hover, .persbalk a:focus-visible { color: var(--geel); text-decoration: underline; }

/* --------------------------------------------------------------------------
   Kaarten
   -------------------------------------------------------------------------- */

.kaarten { display: grid; grid-template-columns: 1fr; gap: 20px; }

.kaart {
  background: var(--wit);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--schaduw);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

a.kaart { text-decoration: none; color: inherit; }

.kaart:hover { transform: translateY(-4px); box-shadow: var(--schaduw-zwaar); }

.kaart__foto {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
  background: var(--groen-100);
}

.kaart__body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }

.kaart__body h3 { margin-bottom: 6px; }

.kaart__body p { color: var(--inkt-zacht); flex: 1; }

.kaart__link { font-weight: 700; color: var(--terracotta-donker); text-decoration: none; }

.kaart__afstand {
  display: inline-block;
  font-family: var(--font-tekst);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--groen-700);
  background: var(--groen-100);
  border-radius: 999px;
  padding: 2px 10px;
  vertical-align: middle;
  margin-left: 4px;
}

.kaart__acties { font-weight: 600; }

.kaart--vlak { box-shadow: none; border: 1px solid var(--zand-200); }

/* --------------------------------------------------------------------------
   Prijskaarten
   -------------------------------------------------------------------------- */

.prijzen { display: grid; grid-template-columns: 1fr; gap: 20px; }

.prijskaart {
  position: relative;
  background: var(--wit);
  border: 1px solid var(--zand-200);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.prijskaart--uitgelicht { border: 2px solid var(--terracotta); box-shadow: var(--schaduw); }

.prijskaart__tag {
  position: absolute;
  top: -13px;
  left: 22px;
  background: var(--terracotta-donker);
  color: var(--wit);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}

.prijskaart h3 { margin-bottom: 2px; }

.prijskaart__prijs {
  font-family: var(--font-kop);
  font-size: 2rem;
  color: var(--groen-900);
  font-weight: 600;
}

.prijskaart__prijs small {
  font-family: var(--font-tekst);
  font-size: 0.85rem;
  color: var(--inkt-zacht);
  font-weight: 500;
}

.prijskaart ul {
  list-style: none;
  margin: 8px 0 18px;
  padding: 0;
  color: var(--inkt-zacht);
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.prijskaart ul li { padding-left: 24px; position: relative; }

.prijskaart ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--groen-700);
  font-weight: 700;
}

.prijskaart .knop { margin-top: auto; }

/* --------------------------------------------------------------------------
   Eventbanner
   -------------------------------------------------------------------------- */

.eventbanner {
  background: linear-gradient(120deg, var(--terracotta) 0%, var(--terracotta-donker) 100%);
  border-radius: var(--radius);
  color: var(--wit);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.eventbanner h3 { color: var(--wit); font-size: 1.5rem; }

.eventbanner p { color: var(--wit); margin: 0; }

.eventbanner .knop--licht { border-color: var(--wit); color: var(--wit); }
.eventbanner .knop--licht:hover { background: var(--wit); color: var(--terracotta-donker); }

.eventbanner__datum {
  display: inline-block;
  background: rgba(0,0,0,0.22);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: fit-content;
}

/* --------------------------------------------------------------------------
   Split-secties + feiten
   -------------------------------------------------------------------------- */

.split { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }

.split__foto { border-radius: var(--radius); overflow: hidden; box-shadow: var(--schaduw); }

.split__foto img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }

/* Portretfoto's: volledige afbeelding tonen (bijv. Pere + Onna) */
.split__foto--portret { background: var(--zand-100); }

.split__foto--portret img {
  aspect-ratio: 366 / 513;
  height: auto;
  object-fit: contain;
  object-position: center center;
}

.feitenrij { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 24px; }

.feit {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(250,246,239,0.18);
  border-radius: var(--radius-klein);
  padding: 14px 16px;
}

.feitenrij--licht .feit { background: var(--wit); border: 1px solid var(--zand-200); }

.feit strong {
  display: block;
  font-family: var(--font-kop);
  font-size: 1.3rem;
  color: var(--geel);
}

.feitenrij--licht .feit strong { color: var(--terracotta-donker); }

.feit span { font-size: 0.82rem; }

.foto-galerij {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.foto-galerij__item {
  margin: 0;
  border-radius: var(--radius-klein);
  overflow: hidden;
  box-shadow: var(--schaduw);
}

.foto-galerij__item img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

/* Google Maps-embed */
.kaart-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--schaduw);
  background: var(--groen-100);
}

.kaart-embed iframe {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
}

/* --------------------------------------------------------------------------
   Video-facades (klik-om-te-laden YouTube)
   -------------------------------------------------------------------------- */

.videos { display: grid; grid-template-columns: 1fr; gap: 20px; }

.video-facade {
  position: relative;
  border: none;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--groen-900);
  box-shadow: var(--schaduw);
  display: block;
  width: 100%;
  text-align: left;
}

.video-facade img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 0.92;
  transition: opacity 0.2s ease, transform 0.3s ease;
}

.video-facade:hover img { opacity: 1; transform: scale(1.03); }

.video-facade__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--terracotta-donker);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
}

.video-facade:hover .video-facade__play { transform: translate(-50%, -50%) scale(1.08); }

.video-facade__play::after {
  content: "";
  border-style: solid;
  border-width: 11px 0 11px 19px;
  border-color: transparent transparent transparent var(--wit);
  margin-left: 4px;
}

.video-facade__titel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 16px 12px;
  background: linear-gradient(180deg, transparent, rgba(31,58,45,0.95));
  color: var(--wit);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
}

.video-facade__bron {
  display: block;
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--zand-100);
  margin-top: 2px;
}

.video-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--schaduw);
}

.video-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* --------------------------------------------------------------------------
   Pers-artikelkaarten
   -------------------------------------------------------------------------- */

.perskaart {
  background: var(--wit);
  border: 1px solid var(--zand-200);
  border-radius: var(--radius);
  padding: 22px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.perskaart:hover { transform: translateY(-3px); box-shadow: var(--schaduw); }

.perskaart__bron {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta-donker);
}

.perskaart h3 { font-size: 1.08rem; margin: 0; }

.perskaart p { font-size: 0.92rem; color: var(--inkt-zacht); margin: 0; }

.perskaart__lees { font-size: 0.86rem; font-weight: 700; color: var(--groen-700); }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq { max-width: 760px; }

.faq details {
  background: var(--wit);
  border: 1px solid var(--zand-200);
  border-radius: var(--radius-klein);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq summary {
  padding: 16px 18px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--groen-900);
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--terracotta-donker);
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq details[open] summary::after { transform: rotate(45deg); }

.faq details p { padding: 0 18px 16px; color: var(--inkt-zacht); margin: 0; }

/* --------------------------------------------------------------------------
   Formulieren (boeking + contact, mockup)
   -------------------------------------------------------------------------- */

.formulier-kaart {
  background: var(--wit);
  border-radius: var(--radius);
  box-shadow: var(--schaduw);
  padding: 26px 22px;
}

.stap-kop { font-size: 1.3rem; }
.stap-kop--ruim { margin-top: 26px; }

.demo-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--zand-100);
  border: 1px dashed var(--terracotta-donker);
  color: var(--terracotta-donker);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.veld { margin-bottom: 16px; }

.veld label, .veld__label {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--groen-900);
}

.veld__checkbox {
  display: flex !important;
  align-items: center;
  gap: 8px;
  font-weight: 500 !important;
  padding: 12px 0;
  cursor: pointer;
}

.veld__checkbox input { width: 18px; height: 18px; accent-color: var(--terracotta); }

.veld input[type="text"],
.veld input[type="email"],
.veld select,
.veld textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #b8ac95;
  border-radius: var(--radius-klein);
  font-family: var(--font-tekst);
  font-size: 1rem;
  background: var(--zand-50);
  color: var(--inkt);
}

.veld input:focus,
.veld select:focus,
.veld textarea:focus {
  outline: 3px solid var(--groen-700);
  outline-offset: 1px;
  background: var(--wit);
}

.veld--fout input, .veld--fout textarea { border-color: var(--terracotta-donker); }

.veld__fout {
  display: none;
  color: var(--terracotta-donker);
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 4px;
}

.veld--fout .veld__fout { display: block; }

.veld-rij { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Arrangement-keuze */
.arrangementen { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }

.arrangement {
  position: relative;
  display: block;
  border: 2px solid var(--zand-200);
  border-radius: var(--radius-klein);
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.arrangement:has(input:focus-visible) {
  outline: 3px solid var(--terracotta-donker);
  outline-offset: 2px;
}

.arrangement input { position: absolute; opacity: 0; }

.arrangement:has(input:checked) { border-color: var(--terracotta); background: #fdf3ee; }

.arrangement strong { display: block; color: var(--groen-900); }

.arrangement span { font-size: 0.86rem; color: var(--inkt-zacht); }

.arrangement__prijs { float: right; font-weight: 700; color: var(--terracotta-donker) !important; }

/* Kalender */
.kalender { user-select: none; }

.kalender__kop { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }

.kalender__kop strong { font-family: var(--font-kop); font-size: 1.1rem; color: var(--groen-900); }

.kalender__nav {
  background: var(--zand-100);
  border: 1px solid var(--zand-200);
  border-radius: var(--radius-klein);
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--groen-900);
}

.kalender__nav:disabled { opacity: 0.35; cursor: default; }

.kalender__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }

.kalender__dagnaam {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--inkt-zacht);
  padding: 6px 0;
}

.kalender__dag {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.9rem;
  border: none;
  background: var(--zand-50);
  cursor: pointer;
  color: var(--inkt);
  font-family: var(--font-tekst);
}

.kalender__dag:hover:not(:disabled) { background: var(--groen-100); }

.kalender__dag:disabled { color: #8a8272; cursor: default; background: transparent; }

.kalender__dag--bezet { text-decoration: line-through; background: transparent; }

.kalender__dag--gekozen { background: var(--terracotta-donker) !important; color: var(--wit); font-weight: 700; }

.kalender__dag--tussen { background: #f2cdbc !important; }

.kalender__legenda {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--inkt-zacht);
}

.kalender__legenda > span { display: inline-flex; align-items: center; gap: 6px; }

.legenda-blok { width: 13px; height: 13px; border-radius: 4px; display: inline-block; }
.legenda-blok--gekozen { background: var(--terracotta-donker); }
.legenda-blok--tussen { background: #f2cdbc; }
.legenda-doorgestreept { text-decoration: line-through; }

/* Boekingssamenvatting */
.samenvatting {
  background: var(--groen-900);
  color: var(--zand-50);
  border-radius: var(--radius);
  padding: 22px;
}

.samenvatting__kop {
  color: var(--wit);
  font-size: 1.3rem;
}

.samenvatting__rij {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(250,246,239,0.15);
  font-size: 0.95rem;
}

.samenvatting__rij:last-of-type { border-bottom: none; }

.samenvatting__rij--totaal {
  font-size: 1.15rem;
  font-weight: 700;
  border-top: 2px solid rgba(250,246,239,0.35);
  margin-top: 6px;
  padding-top: 14px;
}

.samenvatting__rij--totaal span:last-child { color: var(--geel); }

.samenvatting__voet { font-size: 0.82rem; color: var(--groen-100); margin: 14px 0 0; }

/* Succes- en foutmeldingen */
.succes {
  display: none;
  background: var(--groen-100);
  border: 1px solid var(--groen-700);
  color: var(--groen-800);
  border-radius: var(--radius-klein);
  padding: 16px 18px;
  margin-top: 16px;
  font-weight: 600;
}

.succes.is-zichtbaar { display: block; }

.succes--fout {
  border-color: var(--terracotta-donker);
  color: var(--terracotta-donker);
  background: #fdf3ee;
}

/* --------------------------------------------------------------------------
   Contactlijst + toegankelijkheidstekst
   -------------------------------------------------------------------------- */

.contactlijst {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 600;
}

.a11y-tekst { max-width: 760px; }

/* --------------------------------------------------------------------------
   Nieuwsbrief
   -------------------------------------------------------------------------- */

.nieuwsbrief-formulier { display: flex; flex-direction: column; gap: 10px; max-width: 460px; }

.nieuwsbrief-formulier input {
  padding: 14px 16px;
  border-radius: 999px;
  border: 1px solid rgba(250,246,239,0.55);
  background: rgba(255,255,255,0.1);
  color: var(--wit);
  font-size: 1rem;
  font-family: var(--font-tekst);
}

.nieuwsbrief-formulier input::placeholder { color: var(--groen-100); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--groen-900);
  color: var(--groen-100);
  padding: 48px 0 130px; /* ruimte voor sticky CTA + WhatsApp op mobiel */
  font-size: 0.92rem;
}

.footer-kop {
  color: var(--wit);
  font-size: 1rem;
  font-family: var(--font-tekst);
  font-weight: 700;
  margin-bottom: 12px;
}

.site-footer a { color: var(--groen-100); text-decoration: underline; text-decoration-color: rgba(228,237,231,0.4); }
.site-footer a:hover { color: var(--geel); }

.footer-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }

.footer-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }

.footer-onder {
  border-top: 1px solid rgba(250,246,239,0.15);
  margin-top: 34px;
  padding-top: 20px;
  font-size: 0.8rem;
  color: var(--groen-100);
}

/* --------------------------------------------------------------------------
   WhatsApp-knop: prominent, maar op mobiel BOVEN de sticky boek-balk
   zodat hij nooit een belangrijke knop afdekt.
   -------------------------------------------------------------------------- */

.wa-fab {
  position: fixed;
  right: 16px;
  bottom: calc(var(--sticky-hoogte) + 18px + env(safe-area-inset-bottom));
  z-index: 65;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--wit);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(7, 94, 84, 0.45);
  transition: transform 0.15s ease, background 0.15s ease;
}

.wa-fab:hover { transform: scale(1.07); background: #0a7a6d; }

/* Pagina's zonder sticky balk (boeken): knop mag lager */
.wa-fab--laag { bottom: calc(16px + env(safe-area-inset-bottom)); }

/* --------------------------------------------------------------------------
   Sticky mobiele CTA
   -------------------------------------------------------------------------- */

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  min-height: var(--sticky-hoogte);
  background: rgba(250, 246, 239, 0.97);
  border-top: 1px solid var(--zand-200);
  padding: 10px 88px 10px 16px; /* rechts ruimte vrijhouden onder de WhatsApp-knop */
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 -6px 24px rgba(31,58,45,0.12);
}

.sticky-cta__prijs { font-size: 0.85rem; line-height: 1.3; color: var(--inkt-zacht); }

.sticky-cta__prijs strong { display: block; font-size: 1.05rem; color: var(--groen-900); }

.sticky-cta .knop { padding: 12px 22px; white-space: nowrap; }

/* --------------------------------------------------------------------------
   Breakpoints
   -------------------------------------------------------------------------- */

@media (min-width: 640px) {
  .kaarten, .videos { grid-template-columns: repeat(2, 1fr); }
  .prijzen { grid-template-columns: repeat(2, 1fr); }
  .eventbanner { flex-direction: row; align-items: center; justify-content: space-between; }
  .nieuwsbrief-formulier { flex-direction: row; }
  .nieuwsbrief-formulier input { flex: 1; }
}

@media (min-width: 900px) {
  .sectie { padding: 84px 0; }
  .nav-toggle { display: none; }
  .site-nav {
    display: block;
    position: static;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
  }
  .site-nav ul { flex-direction: row; align-items: center; gap: 2px; }
  .site-nav a { padding: 9px 10px; font-size: 0.88rem; }
  .site-nav .nav-cta a { margin: 0 0 0 6px; padding: 10px 18px; border-radius: 999px; }
  .kaarten { grid-template-columns: repeat(3, 1fr); }
  .videos { grid-template-columns: repeat(3, 1fr); }
  .prijzen { grid-template-columns: repeat(4, 1fr); }
  .prijzen--3 { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr 1fr; gap: 56px; }

  .foto-galerij { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .feitenrij { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; }
  .site-footer { padding-bottom: 48px; }
  .sticky-cta { display: none; }
  .wa-fab { bottom: 28px; }
  .boeken-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px; align-items: start; }
  .samenvatting { position: sticky; top: 90px; }
}

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