:root {
  --cream: #faf6f0;
  --sand: #ebe3d8;
  --sand-deep: #d4c9bb;
  --terracotta-cal: #c47d5e;
  --terracotta-cal-deep: #9a5a3f;
  --earth: #3d3429;
  --earth-soft: #5c4f42;
  --terracotta: #a86b4a;
  --terracotta-hover: #955a3f;
  --gold: #c9a227;
  --white: #fffefb;
  --line: rgba(61, 52, 41, 0.12);
  --shadow: 0 12px 40px rgba(61, 52, 41, 0.08);
  --radius: 14px;
  --font-sans: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  max-width: 100%;
  /* Geen overflow-x: hidden — dat maakt impliciet overflow-y:auto en breekt position:sticky op de header */
  overflow-x: clip;
  overflow-y: visible;
}

body {
  margin: 0;
  max-width: 100%;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.35vw + 0.94rem, 1.06rem);
  line-height: 1.65;
  color: var(--earth);
  background: var(--cream);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  overflow-y: visible;
}

main {
  flex: 1;
  min-width: 0;
  max-width: 100%;
  overflow-x: clip;
  overflow-y: visible;
}

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

a {
  color: var(--terracotta);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--terracotta-hover);
}

.wrap {
  width: 100%;
  max-width: 1080px;
  min-width: 0;
  margin-inline: auto;
  padding-left: max(clamp(1.1rem, 4vw, 1.5rem), env(safe-area-inset-left, 0px));
  padding-right: max(clamp(1.1rem, 4vw, 1.5rem), env(safe-area-inset-right, 0px));
  box-sizing: border-box;
}

/* ——— Header (zandtextuur + lichte gradient voor leesbaarheid) ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  max-width: 100%;
  width: 100%;
  align-self: flex-start;
  flex-shrink: 0;
  /* clip horizontaal zonder verticaal te knippen — anders valt het mobiele menu weg (overflow-y werd impliciet auto) */
  overflow-x: clip;
  overflow-y: visible;
  padding-top: env(safe-area-inset-top, 0);
  background-color: var(--sand);
  background-image:
    linear-gradient(
      180deg,
      rgba(253, 250, 245, 0.86) 0%,
      rgba(245, 237, 226, 0.8) 45%,
      rgba(238, 228, 216, 0.84) 100%
    ),
    url("/assets/voorzieningen-achtergrond.png");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 14px rgba(61, 52, 41, 0.07);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  /* Alleen verticaal — geen padding: 0.85rem 0 (dat wist .wrap horizontaal weg) */
  padding-block: 1.2rem;
  min-height: 4.35rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 5.2vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--earth);
  text-decoration: none;
  min-width: 0;
}

.brand-logo {
  flex-shrink: 0;
  width: 3.35rem;
  height: 3.35rem;
  padding: 4px;
  box-sizing: border-box;
  object-fit: contain;
  object-position: center;
  border-radius: 9px;
  background: rgba(255, 254, 251, 0.97);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.brand-text {
  min-width: 0;
}

.brand:hover {
  color: var(--terracotta);
}

.brand:hover .brand-logo {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(61, 52, 41, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  margin-inline: auto;
  background: var(--earth);
  border-radius: 1px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem 0.5rem;
}

.site-nav a {
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--earth-soft);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(168, 107, 74, 0.14);
  color: var(--terracotta);
}

/* Tot ±tablet: hamburger (lange NL-menu’s breken niet meer) */
@media (max-width: 900px) {
  /*
   * Homepage: .hero--slider recht onder de header — op iOS/WebKit kan die composited
   * laag boven het absoluut gepositioneerde menu tekenen. Bij open menu: hele header
   * omhoog in z-index + vast paneel onder de balk (niet alleen binnen de header-box).
   */
  html.nav-drawer-open .site-header {
    /* Boven homepage-hero; onder legal-modals (300) en cookiebalk (400) */
    z-index: 280;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: flex;
  }

  .brand {
    position: relative;
    z-index: 1;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 5;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem clamp(1.1rem, 4vw, 1.5rem) 1rem;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0));
    background-color: var(--sand);
    background-image:
      linear-gradient(
        180deg,
        rgba(253, 250, 245, 0.88) 0%,
        rgba(242, 234, 222, 0.82) 50%,
        rgba(236, 226, 214, 0.86) 100%
      ),
      url("/assets/voorzieningen-achtergrond.png");
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 28px rgba(61, 52, 41, 0.1);
  }

  .site-nav.is-open {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    top: calc(env(safe-area-inset-top, 0px) + clamp(4.65rem, 11vw, 6rem));
    max-height: calc(100vh - env(safe-area-inset-top, 0px) - clamp(4.65rem, 11vw, 6rem));
    max-height: calc(100dvh - env(safe-area-inset-top, 0px) - clamp(4.65rem, 11vw, 6rem));
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    z-index: 10;
    box-sizing: border-box;
  }

  .site-nav a {
    padding: 0.65rem 0.75rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

/* iPad / tablet: grotere menu-tekst (staand + liggend, hamburger én horizontaal) */
@media (min-width: 768px) and (max-width: 1366px) {
  .site-nav a {
    font-size: 1.08rem;
  }

  .section--hosts .hosts-photo-actions .btn {
    font-size: 1.08rem;
  }
}

/* ——— Hero ——— (alleen homepage: slider; geen crème-achtergrond op deze sectie) */
.hero {
  position: relative;
  padding: clamp(2.5rem, 8vw, 4.5rem) 0 clamp(2.75rem, 7vw, 4rem);
  border-bottom: none;
}

/* Foto-slider: echte <img>, geen CSS background-image — geen overlay, geen waas */
.hero.hero--slider {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  min-height: clamp(30rem, 78vh, 56rem);
  max-height: min(88vh, 56rem);
  padding: 0;
  overflow: hidden;
  border-bottom: none;
  box-shadow: none;
  background: #1c1917;
}

.hero-foreground {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: clamp(30rem, 78vh, 56rem);
}

.hero-title-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 3vw, 1.5rem);
}

.hero-bottom {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-bottom: clamp(0.85rem, 2.5vw, 1.35rem);
}

.hero-bottom .hero-dots-wrap {
  padding-bottom: 0.65rem;
}

.hero-bottom .wrap.hero-actions,
.hero-bottom .hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  box-sizing: border-box;
}

.hero--slider .hero-bottom .btn {
  flex: 0 1 auto;
  min-width: 0;
  text-align: center;
}

/* Eén foto (bijv. galerij-pagina): zelfde layout & hoogte als homepage-slider, geen stippen */
.hero--single .hero-dots-wrap {
  display: none;
}

/* Galerij: één hero-foto — zelfde cover-gedrag als slider; licht framen op complex */
.hero--single .hero-slide img {
  object-position: center 38%;
}

#galerij-fotos {
  scroll-margin-top: 5.5rem;
  background: var(--sand);
  border-top: none;
  border-bottom: 1px solid rgba(168, 107, 74, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.85s ease;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}

.hero--slider .hero-title-wrap h1 {
  margin: 0;
  max-width: min(100%, 42rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.65rem, 2.2vw, 1.05rem);
}

.hero--slider .hero-title-wrap h1 .hero-title__main {
  display: block;
  color: #fffefb;
  text-shadow:
    0 0 2px rgba(0, 0, 0, 0.85),
    0 1px 3px rgba(0, 0, 0, 0.9),
    0 4px 24px rgba(0, 0, 0, 0.55);
}

.hero--slider .hero-title-wrap h1 .hero-title__location {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 5.8vw, 3.65rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.06;
  color: var(--terracotta);
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.38),
    0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Galerij-hero: wit + schaduw voor leesbaarheid op foto */
.hero--slider .hero-title-wrap--galerij h1 {
  color: #fffefb;
  max-width: min(100%, 46rem);
  font-size: clamp(2.75rem, 8vw, 5rem);
  font-weight: 600;
  line-height: 1.14;
  text-shadow:
    0 0 2px rgba(0, 0, 0, 0.85),
    0 1px 3px rgba(0, 0, 0, 0.9),
    0 4px 24px rgba(0, 0, 0, 0.55);
}

.hero--slider .btn-ghost {
  background: linear-gradient(180deg, var(--sand) 0%, var(--sand-deep) 100%);
  color: var(--earth);
  border: 1px solid rgba(61, 52, 41, 0.12);
  box-shadow: 0 2px 14px rgba(61, 52, 41, 0.14);
}

.hero--slider .btn-ghost:hover {
  background: linear-gradient(180deg, #f5efe8 0%, #ddd0c4 100%);
  color: var(--earth);
  border-color: rgba(61, 52, 41, 0.18);
}

.hero-dots-wrap {
  position: relative;
  z-index: 2;
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.hero-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 999px;
  border: 2px solid rgba(61, 52, 41, 0.3);
  background: rgba(255, 254, 251, 0.6);
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s,
    border-color 0.2s;
}

.hero-dot:hover {
  border-color: rgba(168, 107, 74, 0.55);
}

.hero-dot.is-active {
  background: var(--terracotta);
  border-color: var(--terracotta);
  transform: scale(1.12);
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--earth);
  letter-spacing: 0.01em;
}

.hero .lead {
  margin: 0 0 1.5rem;
  max-width: 42rem;
  font-size: 1.08rem;
  color: var(--earth-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 4px 16px rgba(168, 107, 74, 0.35);
}

.btn-primary:hover {
  background: var(--terracotta-hover);
  color: #fff;
  transform: translateY(-1px);
}

.btn-ghost {
  background: var(--white);
  color: var(--earth);
  border: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(61, 52, 41, 0.06);
}

.btn-ghost:hover {
  border-color: var(--sand-deep);
  color: var(--earth);
}

/* ——— Sections ——— */
.section {
  padding: clamp(3.5rem, 9vw, 5.75rem) 0;
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
}

.section--alt {
  background: linear-gradient(180deg, var(--sand) 0%, var(--cream) 100%);
  border-top: none;
  border-bottom: 1px solid rgba(168, 107, 74, 0.12);
}

/* Homepage: Over ons — zelfde zand + gradient als header (leesbaarheid) */
.section.section--alt.section--hosts {
  border-top: none;
  border-bottom: 1px solid rgba(168, 107, 74, 0.16);
  background-color: var(--sand);
  background-image:
    linear-gradient(
      180deg,
      rgba(253, 250, 245, 0.86) 0%,
      rgba(245, 237, 226, 0.8) 45%,
      rgba(238, 228, 216, 0.84) 100%
    ),
    url("/assets/voorzieningen-achtergrond.png");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

/* Homepage: Voorzieningen — effen zandkleur */
.section--amenities {
  position: relative;
  overflow: hidden;
  background: var(--sand);
  border-top: none;
  border-bottom: 1px solid rgba(168, 107, 74, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.section--amenities .wrap {
  position: relative;
}

/* Homepage: Waarom — zelfde zand + gradient als header */
.section--why {
  border-top: none;
  border-bottom: 1px solid rgba(168, 107, 74, 0.1);
  background-color: var(--sand);
  background-image:
    linear-gradient(
      180deg,
      rgba(253, 250, 245, 0.86) 0%,
      rgba(245, 237, 226, 0.8) 45%,
      rgba(238, 228, 216, 0.84) 100%
    ),
    url("/assets/voorzieningen-achtergrond.png");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

/* Homepage: Ontdek omgeving — zelfde zand + gradient als header */
.section--discover {
  border-top: none;
  border-bottom: 1px solid rgba(168, 107, 74, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
  background-color: var(--sand);
  background-image:
    linear-gradient(
      180deg,
      rgba(253, 250, 245, 0.86) 0%,
      rgba(245, 237, 226, 0.8) 45%,
      rgba(238, 228, 216, 0.84) 100%
    ),
    url("/assets/voorzieningen-achtergrond.png");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

.section--discover h2,
h2#discover-title {
  color: var(--terracotta);
}

.section--discover h2.discover-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: none;
}

.discover-title-row .discover-video-btn {
  margin-left: 4cm;
  flex-shrink: 0;
  background: linear-gradient(180deg, var(--sand) 0%, var(--sand-deep) 100%);
  color: var(--earth);
  border: 1px solid rgba(61, 52, 41, 0.12);
  box-shadow: 0 4px 14px rgba(61, 52, 41, 0.12);
  font-size: 0.92rem;
  padding: 0.52rem 1.15rem;
}

.discover-title-row .discover-video-btn:hover {
  background: linear-gradient(180deg, #f5efe8 0%, #ddd0c4 100%);
  color: var(--earth);
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  .discover-title-row .discover-video-btn {
    margin-left: 0;
    margin-top: 0.65rem;
  }
}

.section--discover .discover-lead {
  margin: 0 0 0.25rem;
  max-width: 52ch;
  color: var(--earth-soft);
}

.discover-spots {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
  margin-top: clamp(1.5rem, 4vw, 2.25rem);
}

.discover-spot {
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  align-items: center;
  margin: 0;
}

@media (min-width: 720px) {
  .discover-spot {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  }

  .discover-spot--reverse .discover-spot__media {
    order: 2;
  }

  .discover-spot--reverse .discover-spot__body {
    order: 1;
  }
}

.discover-spot__media {
  position: relative;
  margin: 0;
  min-width: 0;
}

.discover-spot__lightbox {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  font: inherit;
  color: inherit;
  border-radius: var(--radius);
  cursor: zoom-in;
  -webkit-tap-highlight-color: transparent;
}

.discover-spot__lightbox:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 4px;
}

.discover-spot__lightbox img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(61, 52, 41, 0.1);
  box-shadow:
    0 4px 12px rgba(61, 52, 41, 0.1),
    0 12px 28px rgba(61, 52, 41, 0.12),
    0 24px 56px rgba(61, 52, 41, 0.14),
    0 0 0 1px rgba(168, 107, 74, 0.08);
}

/* Overlay: .section p mag niet beperken — pill op span */
.discover-spot__hint,
.highlights-slider-hint {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  max-width: none !important;
  width: auto;
  height: auto;
  padding: 0;
  pointer-events: none;
  background: transparent;
  border: none;
  box-shadow: none;
}

.discover-spot__hint {
  z-index: 2;
}

.photo-hint-pill {
  display: inline-block;
  max-width: calc(100% - 2rem);
  padding: 0.4rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--terracotta);
  background: rgba(255, 254, 251, 0.92);
  border-radius: 999px;
  box-shadow: 0 2px 12px rgba(61, 52, 41, 0.2);
}

.discover-spot__body h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 600;
  color: var(--earth);
}

.discover-spot__body p {
  margin: 0;
  max-width: none;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--earth-soft);
}

.discover-spot__body p + p {
  margin-top: 0.85rem;
}

.discover-spot__body strong {
  color: var(--earth);
  font-weight: 600;
}

/* Homepage: Tarieven — tussen Waarom en Ontdek omgeving (accenten = terracotta, geen goud) */
.section--pricing {
  background: linear-gradient(180deg, #f8f5f1 0%, #eee6dd 100%);
  border-top: none;
  border-bottom: 1px solid rgba(168, 107, 74, 0.12);
  overflow-x: visible;
}

.pricing-header {
  text-align: center;
  max-width: 46rem;
  margin-inline: auto;
}

.pricing-kicker {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.section--pricing .pricing-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 2.55rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--earth);
}

.pricing-title-plain {
  color: var(--earth);
}

.pricing-title-accent {
  color: var(--terracotta);
}

.section--pricing .pricing-intro {
  margin: 0;
  max-width: none;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--earth-soft);
}

.section--pricing .pricing-card p {
  max-width: none;
}

.pricing-grid {
  display: grid;
  gap: 1.15rem;
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  align-items: stretch;
  overflow: visible;
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: clamp(1.35rem, 3.2vw, 1.85rem);
  min-height: 23.5rem;
  background: rgba(255, 254, 251, 0.94);
  border: 1px solid rgba(168, 107, 74, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease;
  transform-origin: center center;
}

.pricing-card:hover,
.pricing-card:focus-within {
  transform: scale(1.045);
  z-index: 2;
  box-shadow: 0 22px 50px rgba(61, 52, 41, 0.14);
}

@media (prefers-reduced-motion: reduce) {
  .pricing-card {
    transition: none;
  }

  .pricing-card:hover,
  .pricing-card:focus-within {
    transform: none;
    box-shadow: var(--shadow);
  }

  .pricing-card--featured:hover,
  .pricing-card--featured:focus-within {
    box-shadow:
      0 12px 40px rgba(61, 52, 41, 0.1),
      0 0 0 1px rgba(168, 107, 74, 0.12);
  }
}

@media (max-width: 899px) {
  .pricing-card {
    min-height: 0;
  }
}

.pricing-card--featured {
  border-top: 4px solid var(--terracotta);
  box-shadow:
    0 12px 40px rgba(61, 52, 41, 0.1),
    0 0 0 1px rgba(168, 107, 74, 0.12);
}

.pricing-card--featured:hover,
.pricing-card--featured:focus-within {
  box-shadow:
    0 22px 52px rgba(61, 52, 41, 0.15),
    0 0 0 1px rgba(168, 107, 74, 0.16);
}

.pricing-card-name {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--earth);
}

.pricing-card-months {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--earth-soft);
}

.pricing-card-price {
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2rem);
  font-weight: 600;
  color: var(--earth);
}

.pricing-amount--accent {
  color: var(--terracotta);
}

.pricing-unit {
  margin-left: 0.2rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--earth-soft);
}

.pricing-card-desc {
  margin: 0 0 1rem;
  flex: 1;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--earth-soft);
}

.pricing-features {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--earth);
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin-bottom: 0.45rem;
}

.pricing-features li:last-child {
  margin-bottom: 0;
}

.pricing-check {
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.12rem;
  color: var(--terracotta);
}

.pricing-check svg {
  display: block;
  width: 100%;
  height: 100%;
}

.pricing-card-cta {
  margin-top: auto;
  padding-top: 1.05rem;
}

.pricing-card-cta-btn {
  display: block;
  width: 100%;
  max-width: 100%;
  text-align: center;
  box-sizing: border-box;
}

/* Alleen de drie «Vraag info»-knoppen: zand; kaarten zelf blijven licht */
.section--pricing .pricing-card-cta .btn.btn-primary.pricing-card-cta-btn {
  background: linear-gradient(180deg, var(--sand) 0%, var(--sand-deep) 100%);
  color: var(--earth);
  border: 1px solid rgba(61, 52, 41, 0.12);
  box-shadow: 0 4px 14px rgba(61, 52, 41, 0.12);
}

.section--pricing .pricing-card-cta .btn.btn-primary.pricing-card-cta-btn:hover {
  background: linear-gradient(180deg, #f5efe8 0%, #ddd0c4 100%);
  color: var(--earth);
  transform: translateY(-1px);
}

.pricing-extra {
  margin-top: clamp(2rem, 5vw, 3rem);
}

.pricing-info-card {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: rgba(255, 254, 251, 0.96);
  border: 1px solid rgba(168, 107, 74, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pricing-info-title {
  margin: 0 0 1.2rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 600;
  color: var(--earth);
}

.pricing-info-layout {
  display: grid;
  gap: 1.25rem 1.75rem;
  align-items: start;
}

@media (min-width: 720px) {
  .pricing-info-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  }
}

.pricing-info-costs {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pricing-cost-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0.85rem;
  background: rgba(250, 246, 240, 0.72);
  border: 1px solid rgba(168, 107, 74, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(61, 52, 41, 0.06);
  transform-origin: center center;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease;
}

.pricing-cost-row:hover {
  position: relative;
  z-index: 1;
  transform: scale(1.045);
  box-shadow: 0 12px 28px rgba(61, 52, 41, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  .pricing-cost-row {
    transition: none;
  }

  .pricing-cost-row:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(61, 52, 41, 0.06);
  }
}

.pricing-cost-label {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--earth);
}

.pricing-cost-value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--terracotta);
}

.pricing-info-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-info-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--earth-soft);
}

.pricing-info-list li:last-child {
  margin-bottom: 0;
}

.pricing-info-icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  min-width: 1.35rem;
  min-height: 1.35rem;
  margin-top: 0.08rem;
  color: var(--terracotta);
}

.pricing-info-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 1.35rem;
  max-height: 1.35rem;
}

.pricing-info-body {
  flex: 1;
  min-width: 0;
}

.pricing-info-body strong {
  color: var(--earth);
  font-weight: 600;
}

/* Homepage: Waarom — extra lucht rond tekst, chips en slider */
.section.section--highlights.section--why {
  padding-top: clamp(2.75rem, 6vw, 4rem);
  padding-bottom: clamp(3.5rem, 9vw, 6rem);
}

/* Homepage: Waarom — kenmerken links + horizontale foto-slider */
.section--highlights .highlights-layout {
  display: grid;
  gap: clamp(2.25rem, 5vw, 3.25rem);
  align-items: start;
  min-width: 0;
  max-width: 100%;
}

@media (min-width: 880px) {
  .section--highlights .highlights-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 3rem 3.5rem;
    align-items: center;
  }
}

.section--highlights .highlights-copy,
.section--highlights .highlights-media {
  min-width: 0;
  max-width: 100%;
}

.section--highlights .highlights-media {
  margin-top: clamp(2.75rem, 8vw, 3.75cm);
}

.highlights-intro {
  text-align: center;
  margin: 0 0 1.65rem;
}

.highlights-copy h2 {
  margin-top: 0;
  margin-bottom: 0.45rem;
  text-align: center;
}

.section .highlights-lead {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 1.8rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--terracotta);
  text-align: center;
  max-width: 42ch;
  margin-inline: auto;
}

/* Specifieker dan .section p — anders wint margin/max-width en staat de paragraaf links i.p.v. gecentreerd. */
.section.section--highlights .highlights-facilities-text {
  max-width: min(48ch, 100%);
  margin: 0.35rem auto 2rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--earth-soft);
  text-align: center;
  text-wrap: balance;
}

.highlights-features {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.05rem 1.35rem;
  margin: 0.25rem 0 0;
  padding: 0;
  list-style: none;
  max-width: 100%;
  min-width: 0;
}

@media (max-width: 520px) {
  .highlights-features {
    grid-template-columns: 1fr;
  }
}

.highlights-feature {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--earth-soft);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(168, 107, 74, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(61, 52, 41, 0.05);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.highlights-feature:hover {
  transform: scale(1.045);
  z-index: 2;
  box-shadow:
    0 8px 22px rgba(61, 52, 41, 0.1),
    0 4px 14px rgba(168, 107, 74, 0.14);
  border-color: rgba(168, 107, 74, 0.28);
}

.highlights-feature-icon {
  flex-shrink: 0;
  width: 1.85rem;
  height: 1.85rem;
  color: var(--earth);
  opacity: 0.92;
}

.highlights-feature-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.highlights-feature-label {
  text-align: left;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (prefers-reduced-motion: reduce) {
  .highlights-feature {
    transition: none;
  }

  .highlights-feature:hover {
    transform: none;
  }
}

.highlights-features-policy-row {
  grid-column: 1 / -1;
  margin: 2.25rem 0 0;
  padding: 0;
  list-style: none;
}

.highlights-features-policy-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.05rem 1.35rem;
  margin: 0;
  padding: 0;
}

@media (max-width: 520px) {
  .highlights-features-policy-wrap {
    grid-template-columns: 1fr;
  }
}

.highlights-feature--policy {
  border: 2px solid var(--terracotta);
  background: rgba(168, 107, 74, 0.09);
  box-shadow: 0 2px 12px rgba(168, 107, 74, 0.14);
  font-weight: 600;
  color: var(--earth);
}

.highlights-feature--policy .highlights-feature-icon {
  color: var(--terracotta);
  opacity: 1;
}

.highlights-media {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(1.35rem, 3vw, 1.85rem);
  width: 100%;
  max-width: min(40rem, 100%);
  margin-inline: auto;
  min-width: 0;
  overflow-x: hidden;
}

button.btn {
  cursor: pointer;
}

/* Video lightbox (homepage) */
.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;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 4vw, 2rem);
  box-sizing: border-box;
}

.video-modal[hidden] {
  display: none !important;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(40, 32, 26, 0.78);
  cursor: pointer;
}

.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(96vw, 1120px);
  max-height: min(90vh, 100%);
  margin: auto;
  background: #0a0a0a;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
}

.video-modal__video {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(85vh, 100%);
  vertical-align: middle;
}

.video-modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}

.video-modal__close:hover {
  background: rgba(0, 0, 0, 0.75);
}

/* Bijna volledig scherm (o.a. Kijk video) */
.video-modal.video-modal--fill {
  padding: 0;
  align-items: stretch;
  justify-content: stretch;
}

.video-modal.video-modal--fill .video-modal__dialog {
  width: 100%;
  max-width: none;
  min-height: 100%;
  min-height: 100dvh;
  max-height: none;
  border-radius: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #000;
}

.video-modal.video-modal--fill .video-modal__video {
  flex: 1 1 auto;
  width: 100%;
  max-height: none;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.video-modal.video-modal--fill .video-modal__close {
  top: max(0.65rem, env(safe-area-inset-top, 0px));
  right: max(0.65rem, env(safe-area-inset-right, 0px));
}

@media (min-width: 900px) {
  .video-modal.video-modal--fill .video-modal__dialog {
    width: min(96vw, 1400px);
    min-height: min(92vh, 100dvh);
    margin: auto;
    border-radius: var(--radius);
  }
}

.highlights-slider-viewport {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(61, 52, 41, 0.08);
  box-shadow:
    0 4px 14px rgba(61, 52, 41, 0.08),
    0 20px 52px rgba(61, 52, 41, 0.14);
  background: var(--sand-deep);
}

.highlights-slider-track {
  display: flex;
  flex-direction: row;
  width: max-content;
  max-width: none;
  transition: transform 0.55s ease-in-out;
  will-change: transform;
}

.highlights-slider-slide {
  flex: 0 0 auto;
  width: var(--highlights-slide-w, 100%);
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.highlights-slider-lightbox {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  font: inherit;
  color: inherit;
  cursor: zoom-in;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.highlights-slider-lightbox:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

.highlights-slider-lightbox:hover {
  transform: scale(1.02);
}

.highlights-slider-slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .highlights-slider-track {
    transition: none;
  }

  .highlights-slider-lightbox {
    transition: none;
  }

  .highlights-slider-lightbox:hover {
    transform: none;
  }
}

.section h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 600;
  color: var(--earth);
}

.section p {
  margin: 0 0 1rem;
  max-width: 62ch;
  color: var(--earth-soft);
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.section p:last-child {
  margin-bottom: 0;
}

.grid-2 {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
}

@media (min-width: 720px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* Homepage: Over ons — ruimte onder hero zit IN de sectie (padding), geen aparte crème-band + harde rand */
.section.section--hosts {
  margin-top: 0;
  padding-top: calc(3cm + clamp(3.5rem, 9vw, 5.75rem));
}

/* Homepage: Over ons — tekst links, ronde foto rechts (zwarte hoeken weggeknipt) */
.grid-2--hosts {
  align-items: center;
}

.hosts-copy {
  position: relative;
}

.hosts-brand {
  position: absolute;
  top: calc(clamp(-3.25rem, -8vw, -2.25rem) - 2cm);
  left: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 0.5rem;
  margin: 0;
  max-width: 100%;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 6.5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--terracotta);
}

.hosts-brand-dots {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: 0.05rem;
}

.hosts-brand-dot {
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}

.hosts-brand-tagline {
  font-weight: 500;
  font-size: clamp(1.05rem, 2.8vw, 1.4rem);
  letter-spacing: 0.03em;
  color: var(--terracotta);
  opacity: 0.9;
  white-space: normal;
}

.section--hosts .hosts-copy p.hosts-brand {
  margin: 0;
  color: var(--terracotta);
  max-width: none;
}

.hosts-copy h2 {
  margin-top: 0;
}

/* Alleen de lopende tekst onder «Over ons» iets lager (niet de merkregel). */
.section--hosts .hosts-copy h2 + p {
  margin-top: 1cm;
}

.hosts-copy p:last-child {
  margin-bottom: 0;
}

/* Ruimte tussen laatste alinea en tekstballon (mobiel: kolom onder elkaar). */
.section--hosts .hosts-copy p:last-child {
  margin-bottom: clamp(1rem, 3.5vw, 1.75rem);
}

.hosts-photo {
  margin: 0;
  justify-self: center;
}

@media (min-width: 720px) {
  .hosts-photo {
    justify-self: end;
  }
}

.hosts-photo-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(1.15rem + 2cm);
  width: 100%;
  max-width: 19rem;
  margin-inline: auto;
}

.hosts-photo-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 0;
}

@media (min-width: 720px) {
  .hosts-photo-stack {
    margin-left: auto;
    margin-right: 0;
  }
}

.hosts-photo-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.7rem;
  width: 100%;
}

.hosts-book-btn {
  width: 100%;
  max-width: 100%;
  padding-inline: 1.5rem;
}

.hosts-video-btn {
  width: 100%;
  max-width: 100%;
  padding-inline: 1.5rem;
  background: linear-gradient(180deg, var(--sand) 0%, var(--sand-deep) 100%);
  color: var(--earth);
  border: 1px solid rgba(61, 52, 41, 0.12);
  box-shadow: 0 2px 12px rgba(61, 52, 41, 0.12);
}

.hosts-video-btn:hover {
  background: linear-gradient(180deg, #f5efe8 0%, #ddd0c4 100%);
  color: var(--earth);
  transform: translateY(-1px);
}

.hosts-photo-frame {
  width: min(100%, 19rem);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin-inline: auto;
  box-shadow: var(--shadow);
  background: var(--cream);
}

.hosts-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transform: scale(1.14);
  transform-origin: center center;
}

/* Over ons: gedachtenballon — verschijnt na scroll (midden viewport) + 4s, zie thought-bubble-reveal.js */
.hosts-thought-bubble {
  width: 100%;
  max-width: 19rem;
  margin-inline: auto;
  margin-top: clamp(1.1rem, 3.2vw, 2rem);
  opacity: 0;
  visibility: hidden;
}

.hosts-thought-bubble--show {
  visibility: visible;
  animation: hosts-thought-bubble-in 0.88s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes hosts-thought-bubble-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.94) rotate(-0.5deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hosts-thought-bubble--show {
    animation: none;
    opacity: 1;
    transform: translateY(0);
  }
}

/* Klassieke strip-tekstballon: ovaal + punt (cf. tekstballon / speech balloon) */
.hosts-thought-bubble__cloud {
  position: relative;
  padding: 0 0 0.85rem;
  margin: 0;
  filter: drop-shadow(0 5px 12px rgba(61, 52, 41, 0.1));
}

.hosts-thought-bubble__balloon {
  position: relative;
  z-index: 1;
  margin: 0 0 -3px;
  padding: 0.95rem 1.15rem 1rem;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.52) 0%,
    rgba(255, 255, 255, 0.28) 45%,
    rgba(250, 246, 240, 0.38) 100%
  );
  backdrop-filter: blur(14px) saturate(1.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
  border: 2px solid rgba(61, 52, 41, 0.55);
  border-radius: 2rem 2.1rem 1.85rem 2.05rem;
  box-sizing: border-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 4px 20px rgba(61, 52, 41, 0.06);
  isolation: isolate;
}

/* Driehoekige punt: buitenste contour + glasachtige vulling (zelfde tint als ballon) */
.hosts-thought-bubble__tip {
  position: absolute;
  z-index: 0;
  left: 20%;
  bottom: -0.05rem;
  width: 0;
  height: 0;
  margin-left: -15px;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 18px solid rgba(61, 52, 41, 0.55);
  background: none;
  pointer-events: none;
}

.hosts-thought-bubble__tip::after {
  content: "";
  position: absolute;
  left: -11px;
  top: -15px;
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 13px solid rgba(255, 255, 255, 0.42);
}

.section--hosts .hosts-thought-bubble__text {
  position: relative;
  z-index: 1;
  margin: 0 0 0.55rem;
  max-width: none;
  font-size: clamp(0.78rem, 2.1vw, 0.88rem);
  line-height: 1.5;
  font-weight: 500;
  color: var(--earth);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.hosts-thought-bubble__attr {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.72rem;
  font-style: italic;
  font-weight: 500;
  color: var(--earth-soft);
  text-align: right;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
}

@media (max-width: 640px) {
  .hosts-thought-bubble__balloon {
    padding-bottom: 1.35rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hosts-thought-bubble__cloud {
    padding-bottom: 1rem;
  }

  .section--hosts .hosts-thought-bubble__text {
    margin-bottom: 0.65rem;
  }

  .hosts-thought-bubble__attr {
    margin-top: 0.2rem;
    padding-bottom: 0.15rem;
  }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 1.6rem);
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--earth);
}

.card p {
  margin: 0;
  font-size: 0.98rem;
}

/* ——— Homepage: Voorzieningen ——— */
.section--amenities h2,
h2#voorzieningen-title {
  margin-bottom: 0.65rem;
  color: var(--terracotta);
  text-align: center;
}

.section.section--amenities .amenities-intro {
  margin: 0 auto 1.75rem;
  max-width: min(48ch, 100%);
  text-align: center;
  text-wrap: balance;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--earth-soft);
}

.amenities-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .amenities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .amenities-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

.amenity-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  min-height: 3.75rem;
  background: linear-gradient(180deg, var(--sand) 0%, var(--sand-deep) 100%);
  border: 1px solid rgba(61, 52, 41, 0.1);
  border-radius: 15px;
  box-shadow:
    0 8px 22px rgba(61, 52, 41, 0.1),
    0 2px 8px rgba(61, 52, 41, 0.06);
  transform-origin: center center;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease;
}

/* Eén-voor-één infaden (volgorde DOM = 1…9, niet rij-voor-rij op scherm) */
.section--amenities .amenities-grid:not(.is-revealed) .amenity-card {
  opacity: 0;
  transform: translateY(0.75rem);
}

.section--amenities .amenities-grid.is-revealed .amenity-card {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.42s ease,
    transform 0.42s ease,
    box-shadow 0.28s ease;
}

.section--amenities .amenities-grid.is-revealed .amenity-card:hover {
  /* Geen stagger-delay bij hover — anders reageert de kaart pas na seconden */
  transition-delay: 0s;
  transform: translateY(-4px) scale(1.055);
  box-shadow:
    0 18px 44px rgba(61, 52, 41, 0.18),
    0 6px 16px rgba(168, 107, 74, 0.14);
  border-color: rgba(168, 107, 74, 0.22);
  z-index: 2;
  position: relative;
}

/* ~0,45 s tussen het begin van elk volgend vlak (was 1 s) */
.section--amenities .amenities-grid.is-revealed .amenity-card:nth-child(1) {
  transition-delay: 0s;
}
.section--amenities .amenities-grid.is-revealed .amenity-card:nth-child(2) {
  transition-delay: 0.45s;
}
.section--amenities .amenities-grid.is-revealed .amenity-card:nth-child(3) {
  transition-delay: 0.9s;
}
.section--amenities .amenities-grid.is-revealed .amenity-card:nth-child(4) {
  transition-delay: 1.35s;
}
.section--amenities .amenities-grid.is-revealed .amenity-card:nth-child(5) {
  transition-delay: 1.8s;
}
.section--amenities .amenities-grid.is-revealed .amenity-card:nth-child(6) {
  transition-delay: 2.25s;
}
.section--amenities .amenities-grid.is-revealed .amenity-card:nth-child(7) {
  transition-delay: 2.7s;
}
.section--amenities .amenities-grid.is-revealed .amenity-card:nth-child(8) {
  transition-delay: 3.15s;
}
.section--amenities .amenities-grid.is-revealed .amenity-card:nth-child(9) {
  transition-delay: 3.6s;
}

@media (prefers-reduced-motion: reduce) {
  .section--amenities .amenities-grid:not(.is-revealed) .amenity-card,
  .section--amenities .amenities-grid.is-revealed .amenity-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .section--amenities .amenities-grid.is-revealed .amenity-card:hover {
    transform: none;
    box-shadow:
      0 8px 22px rgba(61, 52, 41, 0.1),
      0 2px 8px rgba(61, 52, 41, 0.06);
  }
}

.amenity-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
}

.amenity-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.amenity-label {
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--earth-soft);
  line-height: 1.35;
}

/* ——— Gallery ——— */
.gallery-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0;
  border: none;
  background: var(--sand-deep);
  cursor: zoom-in;
  box-shadow: 0 6px 22px rgba(61, 52, 41, 0.1);
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.gallery-item:hover,
.gallery-item:focus-visible {
  z-index: 1;
  box-shadow:
    0 10px 32px rgba(168, 107, 74, 0.42),
    0 20px 50px rgba(143, 90, 62, 0.28);
  transform: translateY(-3px);
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  .gallery-item {
    transition: none;
  }

  .gallery-item:hover,
  .gallery-item:focus-visible {
    transform: none;
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right))
    max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
  background: rgba(28, 25, 23, 0.88);
  backdrop-filter: blur(4px);
  cursor: zoom-out;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-img {
  max-width: min(96vw, 1400px);
  max-height: min(88vh, 1200px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  cursor: default;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: max(0.75rem, env(safe-area-inset-top));
  right: max(0.75rem, env(safe-area-inset-right));
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 254, 251, 0.14);
  color: #fffefb;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  background: rgba(255, 254, 251, 0.24);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 302;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 254, 251, 0.14);
  color: #fffefb;
  font-size: 2.25rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 2px;
}

.lightbox-prev {
  left: max(0.75rem, env(safe-area-inset-left));
}

.lightbox-next {
  right: max(0.75rem, env(safe-area-inset-right));
}

.lightbox-nav:hover {
  background: rgba(255, 254, 251, 0.24);
}

@media (max-width: 480px) {
  .lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 1.85rem;
  }
}

/* ——— Attractions list ——— */
.attr-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.attr-list li {
  padding: 1.1rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(61, 52, 41, 0.05);
}

.attr-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--earth);
  margin-bottom: 0.35rem;
}

.attr-list p {
  margin: 0;
  max-width: none;
  font-size: 0.96rem;
}

/* ——— Strandenlijst + Ortigues (legacy layout; kan hergebruikt worden) ——— */
.beach-section-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2rem);
  font-weight: 600;
  color: var(--earth);
}

.beach-stranden-intro {
  margin-bottom: 0.35rem;
}

.beach-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: clamp(1.2rem, 3vw, 1.65rem);
  max-width: 48rem;
}

.beach-item h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--earth);
}

.beach-item p {
  margin: 0;
  max-width: none;
  color: var(--earth-soft);
  line-height: 1.6;
}

.beach-item--ortigues {
  max-width: none;
  margin-top: 0.35rem;
  padding-top: clamp(1rem, 3vw, 1.35rem);
  border-top: 1px solid rgba(168, 107, 74, 0.16);
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.5rem);
  align-items: center;
}

@media (min-width: 720px) {
  .beach-item--ortigues {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
    gap: 1.5rem 2rem;
  }
}

.beach-item__figure {
  margin: 0;
  min-width: 0;
}

.beach-item__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow:
    0 4px 14px rgba(61, 52, 41, 0.08),
    0 16px 40px rgba(61, 52, 41, 0.1);
  border: 1px solid rgba(61, 52, 41, 0.08);
}

.beach-item--ortigues .beach-item__text h3 {
  margin-top: 0;
}

.beach-stranden-cta {
  margin: clamp(1.75rem, 4vw, 2.5rem) 0 0;
}

/* ——— Parque Reina Sofía (homepage park-spot) ——— */
.park-spot {
  margin: 0;
  max-width: none;
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.5rem);
  align-items: center;
}

@media (min-width: 720px) {
  .park-spot {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
    gap: 1.5rem 2rem;
  }
}

.park-spot__figure {
  margin: 0;
  min-width: 0;
}

.park-spot__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow:
    0 4px 14px rgba(61, 52, 41, 0.08),
    0 16px 40px rgba(61, 52, 41, 0.1);
  border: 1px solid rgba(61, 52, 41, 0.08);
}

.park-spot__body h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 600;
  color: var(--earth);
}

.park-spot__body p {
  margin: 0 0 1rem;
  max-width: none;
  color: var(--earth-soft);
  line-height: 1.6;
}

.park-spot__body p:last-child {
  margin-bottom: 0;
}

/* ——— Guestbook ——— */
.quote-block {
  margin: 0 0 1.25rem;
  padding: 1.25rem 1.35rem;
  border-left: 4px solid var(--gold);
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.quote-block p {
  margin: 0;
  font-style: italic;
  color: var(--earth-soft);
}

.quote-block footer {
  margin-top: 0.65rem;
  font-size: 0.88rem;
  font-weight: 600;
  font-style: normal;
  color: var(--earth);
}

.gb-reviews {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 0 0 1.5rem;
  max-width: min(46rem, 100%);
}

.gb-review {
  margin: 0;
  padding: 1.2rem 1.35rem 1.05rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  border-left: 4px solid var(--terracotta);
  box-shadow: var(--shadow);
}

.gb-review__text {
  margin: 0;
  font-style: italic;
  color: var(--earth-soft);
  line-height: 1.65;
  font-size: 0.98rem;
}

.gb-review__author {
  margin: 0.75rem 0 0;
  padding: 0;
  font-size: 0.9rem;
  font-weight: 600;
  font-style: normal;
  color: var(--earth);
}

.gb-review__stars {
  display: flex;
  flex-wrap: wrap;
  gap: 0.12rem;
  margin-top: 0.55rem;
  font-size: 1.15rem;
  line-height: 1;
  color: var(--gold);
  filter: drop-shadow(0 1px 0 rgba(61, 52, 41, 0.06));
}

.gb-review__stars .gb-star {
  user-select: none;
}

.note {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--earth-soft);
}

.note.gb-mail-note {
  margin-top: clamp(1.75rem, 5vw, 2.75rem);
}

/* ——— Contact ——— */
/* Hero: slaapkamerfoto (afb 2) met zachte crème-overlay voor leesbaarheid. */
.section.section--contact-hero {
  position: relative;
  isolation: isolate;
  background-color: var(--cream);
  background-image:
    linear-gradient(
      180deg,
      rgba(250, 246, 240, 0.93) 0%,
      rgba(250, 246, 240, 0.74) 40%,
      rgba(250, 246, 240, 0.91) 100%
    ),
    url("/assets/contact-slaapkamer-bg.png");
  background-size: cover, cover;
  background-position: center 28%, center;
  background-repeat: no-repeat, no-repeat;
  border-bottom: 1px solid rgba(168, 107, 74, 0.1);
}

.section.section--contact-hero .contact-grid {
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

.contact-card-cta-wrap {
  margin: 0 0 0.25rem;
}

.contact-card-links {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}

.contact-card-links a {
  font-weight: 600;
  color: var(--earth);
  text-decoration: none;
}

.contact-card-links a:hover {
  color: var(--terracotta-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.address-block {
  font-style: normal;
  line-height: 1.7;
  color: var(--earth);
}

.address-block strong {
  display: block;
  margin-bottom: 0.5rem;
  font-style: normal;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

/* ——— Contact: aanvraag beschikbaarheid ——— */
.section.section--contact-request {
  position: relative;
  isolation: isolate;
  padding-top: clamp(3rem, 8vw, 4.5rem);
  padding-bottom: clamp(3rem, 8vw, 4.75rem);
  border-top: 1px solid rgba(168, 107, 74, 0.12);
  border-bottom: 1px solid rgba(168, 107, 74, 0.1);
  background-color: #e9e2d8;
  background-image:
    linear-gradient(
      180deg,
      rgba(233, 226, 216, 0.94) 0%,
      rgba(245, 239, 230, 0.82) 42%,
      rgba(233, 226, 216, 0.94) 100%
    ),
    url("/assets/contact-terras-bg.png");
  background-size: cover, cover;
  background-position: center 40%, center;
  background-repeat: no-repeat, no-repeat;
}

.contact-request-layout {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: start;
  max-width: min(1040px, 100%);
  margin-inline: auto;
}

@media (min-width: 880px) {
  .contact-request-layout {
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    gap: clamp(2.25rem, 4.5vw, 3.75rem);
    align-items: center;
  }
}

.contact-request-copy {
  min-width: 0;
}

.contact-request-title {
  margin: 0 0 1.15rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.8vw, 2.45rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--terracotta);
  letter-spacing: 0.01em;
}

.section.section--contact-request .contact-request-lead {
  margin: 0 0 1.25rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--earth-soft);
  max-width: 38ch;
}

.section.section--contact-request .contact-request-privacy {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--earth-soft);
  max-width: 36ch;
}

.contact-request-form-wrap {
  min-width: 0;
}

.contact-request-card {
  margin: 0;
  padding: clamp(1.35rem, 3.5vw, 1.85rem) clamp(1.25rem, 3vw, 1.75rem) clamp(1.45rem, 3.5vw, 1.95rem);
  background: var(--white);
  border: 1px solid rgba(61, 52, 41, 0.1);
  border-radius: 15px;
  box-shadow: 0 10px 36px rgba(61, 52, 41, 0.08);
}

.contact-request-field {
  margin: 0 0 1.15rem;
}

.contact-request-field:last-of-type {
  margin-bottom: 1.35rem;
}

.contact-request-field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--earth);
  letter-spacing: 0.02em;
}

.contact-request-req {
  color: #b42318;
  font-weight: 700;
}

.contact-request-field input,
.contact-request-field textarea {
  width: 100%;
  margin: 0;
  padding: 0.65rem 0.85rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.45;
  color: var(--earth);
  background: rgba(255, 254, 251, 0.98);
  border: 1px solid rgba(61, 52, 41, 0.14);
  border-radius: 10px;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-request-field textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.contact-request-field input::placeholder,
.contact-request-field textarea::placeholder {
  color: rgba(92, 79, 66, 0.55);
}

.contact-request-field input:hover,
.contact-request-field textarea:hover {
  border-color: rgba(168, 107, 74, 0.35);
}

.contact-request-field input:focus-visible,
.contact-request-field textarea:focus-visible {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(168, 107, 74, 0.2);
}

.contact-request-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.25rem;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--earth);
  background: linear-gradient(180deg, #f4ebe1 0%, #e5d9cc 100%);
  border: 1px solid rgba(61, 52, 41, 0.16);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(61, 52, 41, 0.08);
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.15s;
}

.contact-request-submit:hover {
  background: linear-gradient(180deg, #faf4ec 0%, #eadfd2 100%);
  border-color: rgba(168, 107, 74, 0.35);
  color: var(--earth);
}

.contact-request-submit:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

.section.section--contact-request .contact-request-status {
  max-width: none;
  margin: 1rem 0 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--earth-soft);
}

/* ——— Footer (zandtextuur + sterkere lichte gradient — terracotta leesbaar) ——— */
.site-footer {
  margin-top: auto;
  max-width: 100%;
  overflow-x: hidden;
  background-color: var(--sand);
  background-image:
    linear-gradient(
      180deg,
      rgba(252, 246, 238, 0.92) 0%,
      rgba(244, 234, 222, 0.9) 40%,
      rgba(236, 226, 212, 0.92) 100%
    ),
    url("/assets/voorzieningen-achtergrond.png");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  color: var(--earth);
  font-size: 0.92rem;
}

.footer-main {
  padding: clamp(2.25rem, 5vw, 3.25rem) 0;
}

.footer-grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.5rem);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.15fr 0.8fr 1fr;
    gap: 2rem 2.5rem;
    align-items: start;
  }
}

.footer-logo {
  display: block;
  width: auto;
  max-width: 2.85rem;
  height: auto;
  max-height: 3.5rem;
  object-fit: contain;
  border-radius: 9px;
  margin: 0 0 0.6rem;
  box-shadow: 0 1px 4px rgba(61, 52, 41, 0.12);
}

.footer-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(168, 107, 74, 0.72);
}

.footer-brand-title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 600;
  color: var(--terracotta);
  line-height: 1.2;
}

.footer-lead {
  margin: 0;
  max-width: 38ch;
  line-height: 1.55;
  color: var(--earth-soft);
  font-size: 0.94rem;
}

.footer-divider {
  height: 1px;
  background: rgba(61, 52, 41, 0.12);
  margin: 1.25rem 0 1.15rem;
  max-width: 17rem;
}

.footer-labeled-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-labeled-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
}

.footer-labeled-item a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--terracotta);
  text-decoration: none;
}

.footer-labeled-item a:hover {
  color: var(--terracotta-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-heading {
  margin: 0 0 0.85rem;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--terracotta);
}

.footer-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-link-list a {
  font-weight: 600;
  color: #000;
  text-decoration: none;
}

.footer-link-list a:hover {
  color: var(--terracotta-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-legal-trigger {
  display: inline;
  font: inherit;
  font-weight: 600;
  font-size: inherit;
  color: #000;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
}

.footer-legal-trigger:hover {
  color: var(--terracotta-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Juridische tekst-pop-ups (footer) */
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 320;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 4vw, 1.75rem);
  padding-bottom: max(clamp(0.75rem, 4vw, 1.75rem), env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
}

.legal-modal[hidden] {
  display: none !important;
}

.legal-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(40, 32, 26, 0.55);
  cursor: pointer;
}

.legal-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 40rem);
  max-height: min(88vh, 42rem);
  margin: auto;
  display: flex;
  flex-direction: column;
  background: var(--white);
  color: var(--earth);
  border-radius: var(--radius);
  border: 1px solid rgba(61, 52, 41, 0.1);
  box-shadow:
    0 24px 60px rgba(61, 52, 41, 0.18),
    0 2px 0 rgba(255, 255, 255, 0.9) inset;
  overflow: hidden;
}

.legal-modal__close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(61, 52, 41, 0.08);
  color: var(--earth);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.legal-modal__close:hover {
  background: rgba(168, 107, 74, 0.18);
  color: var(--terracotta);
}

.legal-modal__body {
  overflow-y: auto;
  padding: 1.35rem 1.5rem 1.5rem;
  padding-right: 2.75rem;
  font-size: 0.94rem;
  line-height: 1.65;
  -webkit-overflow-scrolling: touch;
}

.legal-modal__body h2 {
  margin: 0 0 0.85rem;
  padding-right: 2rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.65rem);
  font-weight: 600;
  color: var(--terracotta);
  line-height: 1.2;
}

.legal-modal__body h3 {
  margin: 1.15rem 0 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--earth-soft);
}

.legal-modal__body p {
  margin: 0 0 0.65rem;
  color: var(--earth-soft);
}

.legal-modal__body p:last-child {
  margin-bottom: 0;
}

/* ——— Cookiebalk ——— */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  padding: 1rem max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom))
    max(1rem, env(safe-area-inset-left));
  background: rgba(253, 250, 245, 0.98);
  border-top: 1px solid rgba(168, 107, 74, 0.22);
  box-shadow:
    0 -6px 28px rgba(61, 52, 41, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  box-sizing: border-box;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.cookie-banner__copy {
  flex: 1 1 16rem;
  min-width: 0;
}

.cookie-banner__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--terracotta);
  line-height: 1.2;
}

.cookie-banner__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--earth-soft);
}

.cookie-banner__link {
  display: inline;
  font: inherit;
  font-weight: 600;
  color: var(--terracotta);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__link:hover {
  color: var(--terracotta-hover);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.65rem;
  flex-shrink: 0;
}

.cookie-banner__actions .btn {
  min-height: 44px;
  font-size: 0.9rem;
  padding: 0.55rem 1.1rem;
}

@media (max-width: 560px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__actions {
    flex-direction: column;
  }

  .cookie-banner__actions .btn {
    width: 100%;
  }
}

.footer-address {
  margin: 0 0 0.85rem;
  font-style: normal;
  line-height: 1.55;
  color: var(--earth-soft);
  font-size: 0.94rem;
}

.footer-credit {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--terracotta);
  opacity: 0.92;
}

.footer-bar {
  background-color: var(--sand);
  background-image:
    linear-gradient(
      180deg,
      rgba(248, 240, 230, 0.9) 0%,
      rgba(240, 230, 218, 0.92) 100%
    ),
    url("/assets/voorzieningen-achtergrond.png");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  border-top: 1px solid rgba(168, 107, 74, 0.2);
  padding: 0.85rem 0 calc(0.85rem + env(safe-area-inset-bottom, 0));
}

.footer-bar-inner {
  text-align: center;
}

.footer-bar-inner p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--earth-soft);
}

/* Homepage: beschikbaarheid — zandkleur */
.section--inquiry {
  background: linear-gradient(180deg, var(--sand) 0%, var(--sand-deep) 100%);
  border-top: 1px solid rgba(61, 52, 41, 0.1);
  border-bottom: 1px solid rgba(61, 52, 41, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.inquiry-wrap {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.5rem);
}

@media (min-width: 880px) {
  .inquiry-wrap {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    align-items: start;
    gap: 2.5rem 3rem;
  }
}

.inquiry-intro h2 {
  margin-top: 0;
  color: var(--terracotta);
}

.inquiry-intro p:not(.inquiry-note) {
  color: #4a4036;
}

.inquiry-note {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
  color: rgba(92, 79, 66, 0.92);
  max-width: 44ch;
}

.inquiry-card {
  background: linear-gradient(180deg, #fffdfb 0%, #faf5f0 100%);
  border: 1px solid rgba(168, 107, 74, 0.28);
  border-radius: calc(var(--radius) + 2px);
  padding: clamp(1.35rem, 3vw, 1.9rem);
  box-shadow:
    0 10px 36px rgba(168, 107, 74, 0.12),
    0 2px 10px rgba(61, 52, 41, 0.06);
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.inquiry-field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--earth);
  margin-bottom: 0.35rem;
}

.field-req {
  color: #c53030;
  font-weight: 700;
}

.inquiry-field input,
.inquiry-field textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(168, 107, 74, 0.22);
  border-radius: 10px;
  font: inherit;
  font-size: 1rem;
  background: rgba(255, 254, 251, 0.95);
  color: var(--earth);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.inquiry-field textarea {
  min-height: 7.5rem;
  resize: vertical;
  line-height: 1.5;
}

.inquiry-field input:focus,
.inquiry-field textarea:focus {
  outline: none;
  border-color: rgba(168, 107, 74, 0.55);
  background: #fffefb;
  box-shadow: 0 0 0 3px rgba(168, 107, 74, 0.14);
}

.inquiry-field input::placeholder,
.inquiry-field textarea::placeholder {
  color: #a89b8f;
}

.inquiry-submit {
  width: 100%;
  margin-top: 0.25rem;
}

.section--inquiry .inquiry-submit.btn-primary {
  background: linear-gradient(180deg, var(--sand) 0%, var(--sand-deep) 100%);
  color: var(--earth);
  border: 1px solid rgba(61, 52, 41, 0.12);
  box-shadow: 0 4px 14px rgba(61, 52, 41, 0.12);
}

.section--inquiry .inquiry-submit.btn-primary:hover {
  background: linear-gradient(180deg, #f5efe8 0%, #ddd0c4 100%);
  color: var(--earth);
  transform: translateY(-1px);
}

.page-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
  color: var(--earth);
}

.page-intro {
  margin: 0 0 1.75rem;
  max-width: 52ch;
  color: var(--earth-soft);
}

.gallery-back-top-wrap {
  margin: clamp(1.75rem, 4vw, 2.5rem) 0 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-back-top {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--terracotta);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(168, 107, 74, 0.35);
  background: rgba(255, 254, 251, 0.75);
  box-shadow: 0 2px 10px rgba(61, 52, 41, 0.06);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.gallery-back-top:hover {
  color: var(--terracotta-hover);
  border-color: rgba(168, 107, 74, 0.5);
  background: var(--white);
}

.gallery-back-top-arrow {
  font-size: 1.15rem;
  line-height: 1;
}

/* Alle pagina’s: vaste link omhoog (pijl + “Up”) */
.home-scroll-top {
  position: fixed;
  z-index: 250;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 44px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--earth);
  background: rgba(255, 254, 251, 0.96);
  border: 1px solid rgba(168, 107, 74, 0.35);
  box-shadow: 0 6px 22px rgba(61, 52, 41, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease;
}

.home-scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.home-scroll-top:hover {
  color: var(--terracotta);
  border-color: rgba(168, 107, 74, 0.5);
}

.home-scroll-top:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

.home-scroll-top__arrow {
  font-size: 1.05rem;
  line-height: 1;
}

@media (max-width: 900px) {
  .home-scroll-top {
    bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-scroll-top {
    transition: none;
    transform: none;
  }

  .home-scroll-top.is-visible {
    transform: none;
  }
}

@media print {
  .home-scroll-top {
    display: none !important;
  }
}

/* ——— Responsive: iPhone, iPad, kleine schermen ——— */
@media (max-width: 640px) {
  .hero.hero--slider {
    min-height: min(72vh, 48rem);
    max-height: min(88vh, 56rem);
  }

  .hero-foreground {
    min-height: min(72vh, 48rem);
  }

  .section h2 {
    font-size: clamp(1.85rem, 5.2vw, 2.2rem);
  }

  .hero--slider .hero-title-wrap h1 {
    font-size: clamp(1.4rem, 5.2vw, 2.5rem);
    gap: clamp(0.55rem, 2.4vw, 0.85rem);
  }

  .hero--slider .hero-title-wrap h1 .hero-title__location {
    font-size: clamp(1.55rem, 5.4vw, 2.55rem);
  }

  .hero--slider .hero-title-wrap--galerij h1 {
    font-size: clamp(2.55rem, 9.5vw, 3.85rem);
    max-width: min(100%, 100%);
  }

  .hero-bottom {
    padding-left: max(0.5rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.5rem, env(safe-area-inset-right, 0px));
    padding-bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
  }

  /* Knoppen gecentreerd: kolom + vaste maxbreedte op smalle schermen */
  .hero--slider .hero-bottom .wrap.hero-actions,
  .hero--slider .hero-bottom .hero-actions {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
  }

  .hero--slider .hero-bottom .btn {
    width: min(100%, 22rem);
    margin-inline: auto;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .hero.hero--slider {
    min-height: clamp(26rem, 58vh, 52rem);
    max-height: min(85vh, 56rem);
  }

  .hero-foreground {
    min-height: clamp(26rem, 58vh, 52rem);
  }

  .hero--slider .hero-bottom .wrap.hero-actions,
  .hero--slider .hero-bottom .hero-actions {
    justify-content: center;
    gap: 0.75rem 1rem;
  }
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
  }
}

/* ——— Beschikbaarheidskalender (publiek + beheer) ——— */
/* Intro: wellness/spa-foto met crème-gradient (leesbaarheid + overgang naar kalender-sectie). */
.section.section--calendar-intro {
  position: relative;
  isolation: isolate;
  background-color: var(--cream);
  background-image:
    linear-gradient(
      180deg,
      rgba(250, 246, 240, 0.94) 0%,
      rgba(250, 246, 240, 0.68) 40%,
      rgba(250, 246, 240, 0.86) 72%,
      rgba(235, 227, 216, 0.97) 100%
    ),
    url("/assets/beschikbaarheid-spa-wellness.png");
  background-size: cover, cover;
  background-position: center 22%, center;
  background-repeat: no-repeat, no-repeat;
  border-bottom: 1px solid rgba(168, 107, 74, 0.1);
}

.section--calendar-intro .cp-cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 254, 251, 0.75);
  box-shadow: var(--shadow);
}

.cp-cal-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: var(--earth-soft);
}

.cp-cal-legend__swatch {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 8px;
  flex-shrink: 0;
  border: 1px solid rgba(61, 52, 41, 0.12);
}

.cp-cal-legend__swatch--free {
  background: rgba(255, 254, 251, 0.95);
  box-shadow: inset 0 0 0 1px rgba(168, 107, 74, 0.12);
}

.cp-cal-legend__swatch--booked {
  background: linear-gradient(180deg, var(--terracotta-cal) 0%, var(--terracotta) 45%, var(--terracotta-cal-deep) 100%);
  border-color: rgba(149, 90, 63, 0.45);
}

/* Flex + gap: voorkomt margin-collapse; afstand toolbar → status bewust klein (±1 cm). */
.cp-cal-toolbar-stack {
  display: flex;
  flex-direction: column;
  gap: 1cm;
  min-width: 0;
}

.cp-cal-note {
  margin-top: 0;
  min-height: 1.25rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cp-cal-policies {
  margin-top: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: min(42rem, 100%);
  box-sizing: border-box;
}

.cp-cal-policy-card {
  margin: 0;
  padding: 1.15rem 1.25rem 1.2rem;
  background: rgba(255, 254, 251, 0.96);
  border: 1px solid rgba(61, 52, 41, 0.12);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(61, 52, 41, 0.05);
}

.cp-cal-policy-card__title {
  margin: 0 0 0.45rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--earth);
  letter-spacing: 0.01em;
}

.cp-cal-policy-card__text {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--earth-soft);
}

.cp-cal-policy-card__text a {
  color: var(--terracotta);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.cp-cal-policy-card__text a:hover {
  color: var(--terracotta-hover);
}

.section--calendar {
  padding-top: 2rem;
  padding-bottom: 2.75rem;
}

.cp-cal {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.cp-cal__month {
  min-width: 0;
  max-width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 254, 251, 0.88);
  box-shadow: 0 8px 28px rgba(61, 52, 41, 0.06);
  padding: 1.1rem 1.15rem 1.25rem;
}

.cp-cal__month-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 1.65rem);
  font-weight: 600;
  color: var(--terracotta);
}

.cp-cal__weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.25rem;
  margin-bottom: 0.35rem;
}

.cp-cal__weekday {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--earth-soft);
  text-align: center;
  padding: 0.2rem 0;
}

.cp-cal__days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.35rem;
}

.cp-cal__pad {
  min-height: 2.65rem;
}

.cp-cal__day {
  min-height: 2.65rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(61, 52, 41, 0.1);
  box-sizing: border-box;
}

.cp-cal__day--free {
  background: rgba(255, 254, 251, 0.98);
  color: var(--earth);
}

.cp-cal__day--booked {
  background: linear-gradient(180deg, var(--terracotta-cal) 0%, var(--terracotta) 48%, var(--terracotta-cal-deep) 100%);
  color: #fffaf6;
  border-color: rgba(149, 90, 63, 0.5);
  text-shadow: 0 1px 0 rgba(61, 52, 41, 0.12);
}

button.cp-cal__day {
  font: inherit;
  cursor: pointer;
  width: 100%;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition:
    background 0.15s ease,
    transform 0.12s ease,
    border-color 0.15s ease;
}

button.cp-cal__day:hover {
  border-color: rgba(149, 90, 63, 0.55);
  transform: translateY(-1px);
}

button.cp-cal__day:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}

.cp-cal-admin-label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
  color: var(--earth-soft);
}

.cp-cal-admin-input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(61, 52, 41, 0.18);
  font: inherit;
  font-size: 1rem;
  background: rgba(255, 254, 251, 0.95);
}

.cp-cal-admin-card code {
  font-size: 0.85em;
  padding: 0.08rem 0.28rem;
  border-radius: 4px;
  background: rgba(168, 107, 74, 0.1);
  color: var(--earth);
}

@media (max-width: 520px) {
  .cp-cal__day,
  .cp-cal__pad {
    min-height: 2.35rem;
    font-size: 0.82rem;
  }

  .cp-cal__weekday {
    font-size: 0.65rem;
  }
}

.cp-cal-toolbar {
  margin-top: 1.25rem;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cp-cal-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.cp-cal-toolbar-user {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.cp-cal-toolbar-email {
  font-weight: 600;
  color: var(--earth-soft);
  font-size: 0.92rem;
}

.cp-cal-setup-hint {
  max-width: 62ch;
  line-height: 1.55;
}

.cp-cal-setup-hint code {
  font-size: 0.88em;
  padding: 0.08rem 0.28rem;
  border-radius: 4px;
  background: rgba(168, 107, 74, 0.1);
  color: var(--earth);
}

.cp-login-error {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #b42318;
}

/* Specifieker dan .section p { margin: … } — anders wordt margin-top op de <p> teruggezet naar 0. */
.section.section--calendar .cp-cal-cta {
  /* Volle breedte: anders vangt .section p { max-width: 62ch } de <p> en blijven knoppen links hangen. */
  max-width: none;
  width: 100%;
  margin-top: calc(2rem + 1cm);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.65rem 1rem;
  padding-inline: max(0px, env(safe-area-inset-left, 0px)) max(0px, env(safe-area-inset-right, 0px));
}

.section.section--calendar .cp-cal-cta .btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 520px) {
  .section.section--calendar .cp-cal-cta {
    flex-direction: column;
    width: 100%;
  }

  .section.section--calendar .cp-cal-cta .btn {
    width: min(100%, 22rem);
  }
}

/* Beschikbaarheid: phones + kleine tablets */
@media (max-width: 640px) {
  .section.section--calendar-intro,
  .section.section--calendar {
    padding-block: clamp(2.35rem, 7vw, 4rem);
  }

  .section--calendar-intro .page-intro {
    max-width: none;
  }

  .cp-cal-toolbar-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cp-cal-toolbar-actions > .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .cp-cal-toolbar-user {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .cp-cal-toolbar-user .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .cp-cal-toolbar-email {
    text-align: center;
  }

  .cp-cal__month {
    padding: 0.9rem 0.55rem 1rem;
  }

  .cp-cal__days {
    gap: 0.22rem;
  }
}

@media (max-width: 380px) {
  .cp-cal__day,
  .cp-cal__pad {
    min-height: 2.15rem;
    font-size: 0.78rem;
  }

  .cp-cal__days {
    gap: 0.15rem;
  }

  .cp-cal-policy-card {
    padding: 0.95rem 0.85rem 1rem;
  }
}

/* iPad / tablet landscape: iets compactere maandrand indien nodig */
@media (min-width: 641px) and (max-width: 1024px) {
  .cp-cal__month {
    padding: 1rem 0.95rem 1.15rem;
  }
}
