/* =========================================================
   Camperplaatsen De Boonk — clean rebuild
   ========================================================= */

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'URW Gothic';
  src: url('../fonts/URWGothic-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'URW Gothic';
  src: url('../fonts/URWGothic-BookOblique.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'URW Gothic';
  src: url('../fonts/URWGothic-Demi.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'URW Gothic';
  src: url('../fonts/URWGothic-DemiOblique.otf') format('opentype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: 'URW Gothic', 'Outfit', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--navy);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- Theme tokens ---------- */
:root {
  --cream: #f6f4ef;
  --cream-soft: #ede9df;
  --navy: #132430;
  --navy-soft: rgba(19, 36, 48, 0.78);
  --navy-deep: #0e1a23;
  --gold: #bc9e59;
  --gold-soft: rgba(188, 158, 89, 0.18);
  --blue: #4a7fce;
  --white: #ffffff;
  --line: rgba(19, 36, 48, 0.12);

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(19, 36, 48, 0.06);
  --shadow-md: 0 10px 30px rgba(19, 36, 48, 0.10);
  --shadow-lg: 0 20px 50px rgba(19, 36, 48, 0.18);

  --container: 1200px;
}

/* ---------- Headings & utility ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw + 1rem, 4.4rem); font-weight: 400; }
h2 { font-size: clamp(1.8rem, 3vw + 1rem, 3rem); font-weight: 400; }
h3 { font-size: clamp(1.3rem, 1.5vw + 0.8rem, 1.8rem); }
p  { margin: 0 0 1em; }

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

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.85rem;
  padding-left: 1.6rem;
  position: relative;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 1.1rem;
  height: 1px;
  background: var(--gold);
}
/* Hide the line for centered eyebrows that don't have padding-left */
.eyebrow--clean { padding-left: 0; }
.eyebrow--clean::before { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1.5px solid var(--gold);
  background: var(--gold);
  color: var(--navy);
  box-shadow:
    0 6px 18px rgba(188, 158, 89, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.25) inset;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
  box-shadow: 0 10px 26px rgba(19, 36, 48, 0.30), 0 0 0 rgba(255,255,255,0) inset;
}

/* Subtle glow when on hero (over a dark photo) */
.hero .btn {
  box-shadow:
    0 6px 20px rgba(188, 158, 89, 0.30),
    0 1px 0 rgba(255, 255, 255, 0.22) inset;
}
.hero .btn:hover {
  box-shadow:
    0 8px 26px rgba(188, 158, 89, 0.40),
    0 0 0 rgba(255, 255, 255, 0) inset;
}
.btn--ghost { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn--ghost:hover { background: var(--cream); color: var(--navy); border-color: var(--cream); }
.btn--dark { background: var(--navy); border-color: var(--navy); color: var(--cream); }
.btn--dark:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
}
.nav__logo {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.02em;
  transition: color .25s ease;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width .25s ease;
}
.nav__link:hover { color: var(--gold); }
.nav__link:hover::after,
.nav__link.is-active::after { width: 100%; }
.nav__link.is-active { color: var(--gold); }

/* When nav is scrolled or page has light bg */
.nav.is-solid {
  background: var(--cream);
  box-shadow: 0 2px 18px rgba(0,0,0,.08);
  padding: 12px 0;
}
.nav.is-solid .nav__logo,
.nav.is-solid .nav__link { color: var(--navy); }
.nav.is-solid .nav__link:hover,
.nav.is-solid .nav__link.is-active { color: var(--gold); }

/* For pages with light hero (no dark image): nav already on light */
body.theme-light .nav__logo,
body.theme-light .nav__link { color: var(--navy); }

/* Mobile menu toggle (positioned absolute right when visible) */
.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  padding: 0;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.85;
  transition: opacity .2s ease;
}
.nav__toggle:hover { opacity: 1; }
.nav__toggle span {
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .3s ease, top .3s ease, opacity .2s ease, background .2s ease;
}
.nav__toggle span:nth-child(1) { top: 14px; }
.nav__toggle span:nth-child(2) { top: 21px; }
.nav__toggle span:nth-child(3) { top: 28px; }
.nav.is-solid .nav__toggle span,
body.theme-light .nav__toggle span { background: var(--navy); }

/* Mobile menu open */
.nav.is-open .nav__toggle span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav__toggle {
    display: block;
    z-index: 110;          /* keep above the slide-down menu so it stays clickable */
  }
  .nav__menu {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 78px 24px 24px;
    background: rgba(19, 36, 48, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    transform: translateY(-100%);
    transition: transform .4s cubic-bezier(.2, .7, .2, 1);
    border-bottom: 1px solid rgba(188, 158, 89, 0.18);
    z-index: 101;
  }
  .nav__menu .nav__link {
    color: var(--cream);
    font-size: 0.95rem;
    padding: 14px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(246, 244, 239, 0.08);
  }
  .nav__menu .nav__link:last-child { border-bottom: 0; }
  .nav__menu .nav__link::after { display: none; } /* no underline animation in vertical menu */
  .nav.is-open .nav__menu { transform: translateY(0); }
  /* When menu is open, force cream text + light hamburger bars
     even if the nav was scrolled-solid (which would otherwise paint navy on navy) */
  .nav.is-open .nav__link,
  .nav.is-solid.is-open .nav__link { color: var(--cream); }
  .nav.is-open .nav__link:hover,
  .nav.is-solid.is-open .nav__link:hover,
  .nav.is-open .nav__link.is-active,
  .nav.is-solid.is-open .nav__link.is-active { color: var(--gold); }
  .nav.is-open .nav__toggle span,
  .nav.is-solid.is-open .nav__toggle span { background: var(--cream); }
}

/* ---------- Hero (homepage) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--cream);
  isolation: isolate;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('../images/WhatsApp-Image-2025-05-02-at-15.29.47.jpeg') center/cover no-repeat;
  z-index: -2;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero.is-loaded .hero__bg { transform: scale(1); }
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,26,35,0.55) 0%, rgba(14,26,35,0.35) 50%, rgba(14,26,35,0.85) 100%);
  z-index: -1;
}
.hero__content { padding: 120px 24px 80px; max-width: 900px; }
.hero__title {
  color: var(--cream);
  font-weight: 600;
  font-variation-settings: "wght" 600;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.05;
  margin-bottom: 1rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.25);
}
.hero__sub {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(246, 244, 239, 0.92);
  margin-bottom: 2.4rem;
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 50px;
  background: var(--cream);
  animation: scroll-bounce 1.8s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scroll-bounce {
  0%   { transform: scaleY(0.2); opacity: 0; }
  50%  { transform: scaleY(1);   opacity: 1; }
  100% { transform: scaleY(0.2); opacity: 0; transform-origin: bottom; }
}

/* Banner: "open + tel" */
.hero__banner {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(14, 26, 35, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
  color: var(--cream);
  font-size: 0.95rem;
}
.hero__banner-divider {
  width: 1px;
  height: 18px;
  background: rgba(246, 244, 239, 0.25);
}
.hero__banner-status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hero__banner-status::before {
  content: "";
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, .6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, .6); }
  70%  { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
.hero__banner a.tel {
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--cream);
  border-bottom: 1px solid rgba(188, 158, 89, 0.6);
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}
.hero__banner a.tel:hover { color: var(--gold); border-color: var(--gold); }

@media (max-width: 700px) {
  .hero__banner { gap: 14px; font-size: 0.9rem; padding: 14px 18px; }
}

/* ---------- Page hero (smaller, for inner pages) ---------- */
.page-hero {
  position: relative;
  padding: 180px 0 80px;
  text-align: center;
  color: var(--cream);
  background: var(--navy);
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,26,35,0.55), rgba(14,26,35,0.85));
  z-index: -1;
}
.page-hero--camperplaatsen { background: url('../images/Foto-drone.jpg') center/cover no-repeat var(--navy); }
.page-hero--faciliteiten  { background: url('../images/IMG_7699-1.jpg') center/cover no-repeat var(--navy); }
.page-hero--omgeving      { background: url('../images/Twente-Springendal-1.jpg') center/cover no-repeat var(--navy); }
.page-hero--over          { background: url('../images/CF4A8559.jpg') center 25%/cover no-repeat var(--navy); }
.page-hero--contact       { background: url('../images/WhatsApp-Image-2025-05-02-at-15.29.47-3.jpeg') center/cover no-repeat var(--navy); }

.page-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  color: var(--cream);
  font-weight: 400;
  margin: 0;
}
.page-hero__sub {
  margin-top: 14px;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(246, 244, 239, 0.8);
}

/* ---------- Section base ---------- */
.section {
  padding: clamp(60px, 9vw, 120px) 0;
}
.section--cream { background: var(--cream); }
.section--cream-soft { background: var(--cream-soft); }
.section--dark { background: var(--navy); color: var(--cream); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--cream); }

.section__head {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}
.section__head .eyebrow { padding-left: 0; }
.section__head .eyebrow::before { display: none; }

/* ---------- Welcome (intro) section ---------- */
.welcome {
  text-align: center;
  padding: clamp(40px, 6vw, 70px) 0 clamp(30px, 4vw, 50px);
  background: var(--cream);
}
.welcome__title {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto;
}

/* ---------- Quick links cards (homepage) ---------- */
.links {
  background: var(--cream);
  padding: 0 0 clamp(60px, 9vw, 120px);
}
.links__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.links__card {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s ease;
  box-shadow: var(--shadow-sm);
  will-change: transform;
}
.links__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(19, 36, 48, 0.18);
}
.links__card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,26,35,0) 35%, rgba(14,26,35,0.85) 100%);
  z-index: 1;
  transition: background .35s ease;
}
.links__card:hover::after {
  background: linear-gradient(180deg, rgba(14,26,35,0.15) 0%, rgba(14,26,35,0.92) 100%);
}
.links__card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}
.links__card:hover img { transform: scale(1.08); }
.links__card-label {
  position: absolute;
  left: 22px; bottom: 22px;
  z-index: 2;
  color: var(--cream);
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform .45s cubic-bezier(.2,.7,.2,1), gap .35s ease;
}
.links__card:hover .links__card-label {
  transform: translateY(-4px);
  gap: 18px;
}
.links__card-label::after {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold);
  position: relative; top: 1px;
  transition: width .35s ease, background .2s ease;
}
.links__card:hover .links__card-label::after {
  width: 38px;
  background: var(--cream);
}

@media (max-width: 900px) {
  .links__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .links__grid { grid-template-columns: 1fr; }
  .links__card { aspect-ratio: 16/10; }
}

/* ---------- Reviews ---------- */
.reviews {
  position: relative;
  padding: clamp(80px, 11vw, 140px) 0;
  background: var(--navy);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.reviews::before {
  content: "";
  position: absolute; inset: 0;
  background: url('../images/Foto-drone.jpg') center/cover no-repeat;
  opacity: 0.10;
  z-index: -1;
}
.reviews .section__head { color: var(--cream); }
.reviews .section__head h2,
.reviews .section__head .eyebrow { color: var(--cream); }
.reviews .section__head .eyebrow { color: var(--gold); }

.review-track {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
}
.review-card {
  grid-column: 1;
  grid-row: 1;
  text-align: center;
  padding: 0 32px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .5s ease, transform .5s ease, visibility .5s;
  transform: translateY(8px);
}
.review-card.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.review-card__date {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.review-card__stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 1.4rem; color: var(--gold); font-size: 1.7rem; letter-spacing: 3px; text-shadow: 0 1px 6px rgba(188, 158, 89, 0.25); }
.review-card__quote {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  line-height: 1.5;
  font-style: italic;
  color: var(--cream);
  max-width: 760px;
  margin: 0 auto 1.6rem;
}
.review-card__name {
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-bottom: 4px;
}
.review-card__source {
  font-size: 0.85rem;
  color: rgba(246, 244, 239, 0.65);
}

.review-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 40px;
}
.review-nav button {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(246,244,239,0.4);
  color: var(--cream);
  font-size: 1.1rem;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.review-nav button:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.review-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(246,244,239,0.25);
  border: 0;
  padding: 0;
  transition: background .2s ease, transform .2s ease;
}
.review-dots button.is-active {
  background: var(--gold);
  transform: scale(1.4);
}

/* ---------- Camperplaatsen page ---------- */
.info-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.info-split__text h2 { margin-top: 0; }
.info-list {
  display: grid;
  gap: 14px;
  margin-top: 1.2rem;
}
.info-list__row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.info-list__row strong { font-weight: 600; color: var(--navy); letter-spacing: 0.02em; }

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 900px) {
  .info-split { grid-template-columns: 1fr; gap: 40px; }
  .info-list__row { grid-template-columns: 140px 1fr; }
}
@media (max-width: 500px) {
  .info-list__row { grid-template-columns: 1fr; gap: 2px; padding: 10px 0; }
}

/* ---------- Faciliteiten page ---------- */
.facilities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.facility {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.facility:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.facility__img {
  aspect-ratio: 4/3;
  width: 100%;
  object-fit: cover;
  background: var(--cream-soft);
}
.facility__body { padding: 22px 22px 24px; flex-grow: 1; }
.facility__title {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 0 8px;
  line-height: 1.2;
}
.facility__text { font-size: 0.95rem; color: var(--navy-soft); margin: 0; line-height: 1.55; }

@media (max-width: 900px) { .facilities { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .facilities { grid-template-columns: 1fr; } }

/* ---------- Over (about) page ---------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/5;
  position: relative;
}
.about__img img { width: 100%; height: 100%; object-fit: cover; }
.about__text p { line-height: 1.75; }
.about__text p + p { margin-top: 1em; }

@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; gap: 40px; }
  .about__img { aspect-ratio: 4/3; max-width: 540px; margin: 0 auto; }
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { margin-top: 0; }
.contact-info__list {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}
.contact-info__row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.contact-info__icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-info__row a { color: var(--navy); border-bottom: 1px solid transparent; transition: border-color .2s ease; }
.contact-info__row a:hover { border-bottom-color: var(--gold); }

.form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 18px;
}
.form__row { display: grid; gap: 6px; }
.form__row.split { grid-template-columns: 1fr 1fr; gap: 18px; }
.form label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}
.form input,
.form textarea {
  font: inherit;
  width: 100%;
  padding: 14px 16px;
  background: var(--cream);
  color: var(--navy);
  border: 1.5px solid transparent;
  border-radius: 10px;
  transition: border-color .2s ease, background .2s ease;
}
.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.form textarea { resize: vertical; min-height: 130px; }
.form__hint { font-size: 0.82rem; color: var(--navy-soft); margin-top: 4px; }
.form__submit { justify-self: start; margin-top: 6px; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form__row.split { grid-template-columns: 1fr; }
  .form { padding: 26px; }
}

/* ---------- Notice / placeholder ---------- */
.notice {
  text-align: center;
  padding: 60px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  max-width: 720px;
  margin: 0 auto;
}
.notice h3 { margin-top: 0; }
.notice p { color: var(--navy-soft); }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 80px 0 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}
.footer__col h4 {
  color: var(--gold);
  font-family: 'URW Gothic', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}
.footer__col p,
.footer__col a {
  color: rgba(246, 244, 239, 0.85);
  font-size: 0.98rem;
  line-height: 1.7;
}
.footer__col a { transition: color .2s ease; }
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(246, 244, 239, 0.12);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.85rem;
  color: rgba(246, 244, 239, 0.55);
}
.footer__bottom a { color: rgba(246, 244, 239, 0.7); }
.footer__bottom a:hover { color: var(--gold); }

@media (max-width: 700px) {
  .footer__grid { grid-template-columns: 1fr; gap: 30px; margin-bottom: 40px; }
}

/* ---------- Reveal-on-scroll utility ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Skip link / a11y ---------- */
.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;
}

/* ============================================================
   Camperplaatsen page – info cards + slider
   ============================================================ */
.cp-intro {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}
.cp-intro h2 { margin-top: .25em; }

.info-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 920px;
  margin: 0 auto;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease;
}
.info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.info-card__title {
  font-size: 1.4rem;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.info-card__title::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 36px; height: 2px;
  background: var(--gold);
}
.info-card__note {
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  color: var(--navy-soft);
  font-size: .92rem;
  line-height: 1.55;
}

@media (max-width: 720px) {
  .info-cards { grid-template-columns: 1fr; gap: 18px; }
  .info-card { padding: 26px 22px; }
}

.cp-cta {
  text-align: center;
  margin-top: 50px;
}

/* ---------- Slider section ---------- */
.slider-section { padding: clamp(60px, 8vw, 100px) 0; overflow: hidden; }
.slider-section .section__head { margin-bottom: 32px; }

.cp-slider {
  position: relative;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.cp-slider.is-dragging { cursor: grabbing; }
.cp-slider__track {
  display: flex;
  gap: 16px;
  padding: 0 24px;
  overflow-x: auto;
  scroll-behavior: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: none;
}
.cp-slider__track::-webkit-scrollbar { display: none; }
.cp-slide {
  flex: 0 0 auto;
  width: clamp(260px, 32vw, 420px);
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow-sm);
  pointer-events: none; /* drag-friendly: clicks/drags on inside don't break flow */
}
.cp-slider.is-dragging .cp-slide img,
.cp-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}
.cp-slide--placeholder { background: var(--cream-soft); }
.cp-slider__hint {
  text-align: center;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--navy-soft);
  margin: 24px 0 0;
  opacity: .7;
}

/* Subtle fade on edges so it looks like a continuous flow */
.cp-slider::before,
.cp-slider::after {
  content: "";
  position: absolute;
  top: 0; bottom: 24px;
  width: 60px;
  pointer-events: none;
  z-index: 2;
}
.cp-slider::before { left: 0;  background: linear-gradient(90deg, var(--cream-soft), transparent); }
.cp-slider::after  { right: 0; background: linear-gradient(270deg, var(--cream-soft), transparent); }

/* Placeholder (grey block + photo icon) */
.placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #e6e2d6 0%, #d8d3c5 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(19, 36, 48, 0.4);
}
.placeholder svg { width: 38px; height: 38px; }
.placeholder span {
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============================================================
   Faciliteiten – clickable cards + modal
   ============================================================ */
.facility { cursor: pointer; }
.facility:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.facility::after {
  content: "+";
  position: absolute;
  bottom: 18px; right: 18px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(188, 158, 89, 0.3);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .3s ease, transform .3s ease;
}
.facility { position: relative; }
.facility:hover::after { opacity: 1; transform: translateY(0); }

/* Modal overlay */
.fac-modal {
  position: fixed;
  inset: 0;
  background: rgba(14, 26, 35, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 200;
  animation: modalFadeIn .25s ease;
}
.fac-modal.is-open { display: flex; }
@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.fac-modal__panel {
  background: var(--cream);
  border-radius: var(--radius-lg);
  max-width: 920px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modalSlideIn .35s cubic-bezier(.2,.7,.2,1);
}
@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fac-modal__close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream);
  border: 0;
  color: var(--navy);
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 10;
  transition: transform .2s ease, background .2s ease;
}
.fac-modal__close:hover { transform: rotate(90deg); background: var(--gold); }

.fac-modal__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 6px;
  padding: 6px;
  background: var(--cream-soft);
}
.fac-modal__gallery img,
.fac-modal__gallery .placeholder {
  aspect-ratio: 4/3;
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.fac-modal__body {
  padding: 36px 40px 40px;
}
.fac-modal__body h3 {
  font-size: 1.8rem;
  margin: 0 0 12px;
}
.fac-modal__body .eyebrow { padding-left: 0; }
.fac-modal__body .eyebrow::before { display: none; }
.fac-modal__body p {
  color: var(--navy-soft);
  line-height: 1.7;
}

@media (max-width: 600px) {
  .fac-modal__body { padding: 24px 22px 30px; }
  .fac-modal__close { top: 14px; right: 14px; }
}
.fac-modal__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 6px;
  padding: 6px;
  background: var(--cream-soft);
}
.fac-modal__gallery img,
.fac-modal__gallery .placeholder {
  aspect-ratio: 4/3;
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.fac-modal__body {
  padding: 36px 40px 40px;
}
.fac-modal__body h3 {
  font-size: 1.8rem;
  margin: 0 0 12px;
}
.fac-modal__body .eyebrow { padding-left: 0; }
.fac-modal__body .eyebrow::before { display: none; }
.fac-modal__body p {
  color: var(--navy-soft);
  line-height: 1.7;
}
@media (max-width: 600px) {
  .fac-modal__body { padding: 24px 22px 30px; }
  .fac-modal__close { top: 14px; right: 14px; }
}

/* ============================================================
   Omgeving page – nature photo grid
   ============================================================ */
.environs-intro {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}
.environs-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.environs-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-soft, #ece8dd);
  aspect-ratio: 4 / 3;
  min-height: 200px;
}
.environs-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.environs-caption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  background: rgba(19, 36, 48, 0.78);
  color: var(--cream);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.environs-tile--full       { grid-column: span 12; aspect-ratio: 16 / 7; min-height: 280px; }
.environs-tile--wide       { grid-column: span 8;  }
.environs-tile--medium     { grid-column: span 6;  }
.environs-tile--small      { grid-column: span 4;  }
.environs-tile--tall       { grid-column: span 4;  aspect-ratio: 3 / 4; }

@media (max-width: 900px) {
  .environs-tile--full   { grid-column: 1 / -1; aspect-ratio: 16 / 9; min-height: 200px; }
  .environs-tile--wide,
  .environs-tile--medium { grid-column: span 6; }
  .environs-tile--small,
  .environs-tile--tall   { grid-column: span 6; aspect-ratio: 1 / 1; }
}
@media (max-width: 560px) {
  .environs-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .environs-tile--full,
  .environs-tile--wide,
  .environs-tile--medium,
  .environs-tile--small,
  .environs-tile--tall   { grid-column: span 2; aspect-ratio: 4 / 3; min-height: 160px; }
}

/* Override .placeholder svg specifically inside environs tiles - keep them small */
.environs-tile .placeholder { width: 100%; height: 100%; }
.environs-tile .placeholder svg { width: 32px; height: 32px; flex: 0 0 32px; }

/* ============ Trust blok (homepage, tussen welcome en links) ============ */
.trust {
  background: var(--cream);
  padding: 0 0 clamp(40px, 6vw, 70px);
}
.trust__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 56px);
  border-top: 1px solid rgba(19, 36, 48, 0.10);
  border-bottom: 1px solid rgba(19, 36, 48, 0.10);
  align-items: center;
  text-align: center;
}
.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}
.trust__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 56%;
  background: rgba(19, 36, 48, 0.10);
}
.trust__icon {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 1px;
  height: 26px;
}
.trust__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust__value {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 2.4vw, 1.95rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.trust__label {
  font-size: 0.85rem;
  color: var(--navy-soft, #4d5a64);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.trust__item a.trust__link {
  color: inherit;
  text-decoration: none;
}
.trust__item a.trust__link:hover .trust__value { color: var(--gold); }

@media (max-width: 820px) {
  .trust__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
  .trust__item:not(:last-child)::after { display: none; }
  .trust__item:nth-child(odd)::after {
    content: "";
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(19, 36, 48, 0.10);
    display: block;
  }
}
@media (max-width: 480px) {
  .trust__inner { grid-template-columns: 1fr; gap: 24px; padding: 24px 20px; }
  .trust__item::after { display: none !important; }
  .trust__item:not(:last-child) { padding-bottom: 24px; border-bottom: 1px solid rgba(19, 36, 48, 0.10); }
}

/* ============ Bedankt-pagina ============ */
.thanks {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px;
  background: var(--cream);
  position: relative;
  isolation: isolate;
}
.thanks::before {
  content: "";
  position: absolute; inset: 0;
  background: url('../images/Foto-drone.jpg') center/cover no-repeat;
  opacity: 0.10;
  z-index: -1;
}
.thanks__inner {
  max-width: 580px;
  margin: 0 auto;
}
.thanks__icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(188, 158, 89, 0.30);
  animation: thanksPop 0.5s cubic-bezier(.5, 1.6, .4, 1) both;
}
.thanks__icon svg {
  width: 44px;
  height: 44px;
  stroke: var(--cream);
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: thanksDraw 0.6s ease-out 0.3s both;
}
@keyframes thanksPop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes thanksDraw {
  0% { stroke-dasharray: 0 60; }
  100% { stroke-dasharray: 60 60; }
}
.thanks h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin: 0 0 14px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.thanks p {
  max-width: 480px;
  margin: 0 auto 16px;
  color: var(--navy-soft, #4d5a64);
  font-size: 1.08rem;
  line-height: 1.6;
}
.thanks__meta {
  font-size: 0.95rem;
  color: var(--navy-soft, #4d5a64);
  margin-bottom: 28px;
}
.thanks__meta a {
  color: var(--navy);
  font-weight: 500;
}
.thanks__actions {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.thanks__actions .btn--ghost {
  border-color: var(--navy);
  color: var(--navy);
}
.thanks__actions .btn--ghost:hover {
  background: var(--navy);
  color: var(--cream);
}

/* ============ Page loader (camper drives across) ============ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--cream);
  display: grid;
  place-items: center;
  transition: opacity 600ms ease, visibility 600ms ease;
}
.page-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.page-loader__art {
  width: min(280px, 60vw);
  height: min(280px, 60vw);
  position: relative;
  overflow: hidden;
}
.page-loader__art svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* All strokes use navy now */
.page-loader__art .ground { stroke: var(--navy); stroke-width: 1.4; stroke-linecap: round; fill: none; }

.page-loader__art .label {
  fill: var(--navy);
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 4px;
  text-anchor: middle;
  animation: loaderLabelFly 7s ease-in-out infinite;
}
@keyframes loaderLabelFly {
  0%   { transform: translateY(40px); }
  30%  { transform: translateY(0); }
  65%  { transform: translateY(0); }
  95%  { transform: translateY(40px); }
  100% { transform: translateY(40px); }
}

.page-loader__art .camper-track { animation: loaderDrive 7s ease-in-out infinite; }
@keyframes loaderDrive {
  0%   { transform: translateX(-160px); }
  30%  { transform: translateX(-11px); }
  65%  { transform: translateX(-11px); }
  95%  { transform: translateX(160px); }
  100% { transform: translateX(160px); }
}

.page-loader__art .trees-track { animation: loaderTrees 7s linear infinite; }
@keyframes loaderTrees {
  from { transform: translateX(0); }
  to   { transform: translateX(-200px); }
}


.page-loader__art .camper {
  animation: loaderBob 0.55s ease-in-out infinite;
  transform-origin: 100px 130px;
}
.page-loader__art .wheel {
  transform-origin: center;
  transform-box: fill-box;
  animation: loaderSpin 0.4s linear infinite;
}
@keyframes loaderBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-0.7px); }
}
@keyframes loaderSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.page-loader__art .bird { animation: loaderBird 9s linear infinite; transform-origin: center; }
.page-loader__art .bird-flap {
  animation: loaderFlap 0.35s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes loaderBird {
  0%   { transform: translate(220px, 0); }
  20%  { transform: translate(220px, 0); }
  55%  { transform: translate(-40px, -8px); }
  100% { transform: translate(-40px, -8px); }
}
@keyframes loaderFlap {
  0%, 100% { transform: scaleY(1); }
  50%      { transform: scaleY(0.55); }
}

.page-loader__art .sun { animation: loaderShowSun 7s ease-in-out infinite; }
.page-loader__art .sun-rays {
  transform-origin: 0 0;
  transform-box: view-box;
  animation: loaderSpinSun 14s linear infinite;
}
@keyframes loaderShowSun {
  0%   { opacity: 0; }
  30%  { opacity: 1; }
  65%  { opacity: 1; }
  95%  { opacity: 0; }
  100% { opacity: 0; }
}
@keyframes loaderSpinSun {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.page-loader__art .sun > circle,
.page-loader__art .sun-rays line {
  stroke: var(--gold);
}

@media (prefers-reduced-motion: reduce) {
  .page-loader { display: none !important; }
}

/* ============ Reviews badge (subtiel, onder welcome) ============ */
.reviews-badge {
  background: var(--cream);
  padding: 0 0 clamp(28px, 4vw, 50px);
}
.reviews-badge__inner {
  display: flex;
  justify-content: center;
}
.reviews-badge__pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--navy-soft);
  letter-spacing: 0.01em;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.reviews-badge__pill:hover {
  background: var(--cream-soft);
  color: var(--navy);
  border-color: rgba(19, 36, 48, 0.22);
  transform: translateY(-1px);
}
.reviews-badge__stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 2px;
  line-height: 1;
}
.reviews-badge__text { font-weight: 500; }

/* ============ Inline form-success ============ */
.form-success {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 40px);
  text-align: center;
  animation: formSuccessIn .5s cubic-bezier(.5, 1.6, .4, 1) both;
}
.form-success__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(188, 158, 89, 0.30);
}
.form-success__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--cream);
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.form-success h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  margin: 0 0 10px;
  color: var(--navy);
}
.form-success p {
  color: var(--navy-soft);
  margin: 0 0 8px;
  line-height: 1.6;
}
.form-success__meta { font-size: 0.92rem; }
.form-success__meta a { color: var(--navy); font-weight: 600; }

@keyframes formSuccessIn {
  0%   { opacity: 0; transform: translateY(8px) scale(.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* ============ Hero status: gesloten (rood) ============ */
.hero__banner-status.is-closed::before {
  background: #ef4444;
  animation: pulseRed 1.8s infinite;
}
@keyframes pulseRed {
  0%   { box-shadow: 0 0 0 0 rgba(239, 68, 68, .55); }
  70%  { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* ============ FAQ accordeon ============ */
.faq-section {
  background: var(--cream);
  padding: clamp(50px, 7vw, 100px) 0;
}
.faq-container {
  max-width: 820px;
}
.faq-intro {
  text-align: center;
  margin-bottom: clamp(30px, 4vw, 50px);
}
.faq-intro h2 {
  margin: 0 0 12px;
}
.faq-intro p {
  color: var(--navy-soft);
  max-width: 520px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.faq-item[open] {
  background: var(--white);
  border-color: rgba(188, 158, 89, 0.35);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 56px 18px 22px;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy);
  position: relative;
  user-select: none;
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: translateY(-65%) rotate(45deg);
  transition: transform .25s ease;
}
.faq-item[open] summary::after {
  transform: translateY(-25%) rotate(-135deg);
}
.faq-item summary:hover { color: var(--gold); }
.faq-item__body {
  padding: 0 22px 20px;
  color: var(--navy-soft);
  line-height: 1.65;
  animation: faqOpen .3s ease both;
}
.faq-item__body p { margin: 0; }
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .faq-item summary { padding: 16px 50px 16px 18px; font-size: 0.98rem; }
  .faq-item summary::after { right: 18px; width: 9px; height: 9px; }
  .faq-item__body { padding: 0 18px 18px; }
}

/* ============ Sticky bel-knop (alleen mobiel) ============ */
.call-cta {
  display: none;
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  align-items: center;
  justify-content: center;
  box-shadow:
    0 8px 26px rgba(188, 158, 89, 0.45),
    0 2px 6px rgba(0, 0, 0, 0.18);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  animation: callPulse 2.4s ease-in-out infinite;
}
.call-cta::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0;
  animation: callRing 2.4s ease-out infinite;
}
.call-cta svg {
  width: 26px;
  height: 26px;
  fill: var(--navy);
  display: block;
}
.call-cta:hover,
.call-cta:active {
  background: var(--navy);
  box-shadow: 0 10px 30px rgba(19, 36, 48, 0.35);
  transform: scale(1.06);
}
.call-cta:hover svg,
.call-cta:active svg { fill: var(--gold); }

@keyframes callPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}
@keyframes callRing {
  0%   { opacity: 0.6; transform: scale(1); }
  80%  { opacity: 0;   transform: scale(1.5); }
  100% { opacity: 0;   transform: scale(1.5); }
}

@media (max-width: 768px) {
  .call-cta { display: inline-flex; }
}

@media (prefers-reduced-motion: reduce) {
  .call-cta { animation: none; }
  .call-cta::before { animation: none; opacity: 0; }
}

/* Ootmarsum SVG-illustratie tile */
.environs-tile--illustration {
  background: var(--cream);
}
.environs-tile--illustration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
