/* ==========================================================================
   Puur Egmond — twee vakantiehuisjes aan zee
   Kustthema: licht, luxe, fris. Zand, schuimwit, diep zeeblauw, helmgras.
   ========================================================================== */

:root {
  /* Kleuren */
  --schuim: #fbf8f2;        /* basisachtergrond */
  --zand: #f2ecdf;          /* secundaire vlakken */
  --zand-diep: #e7ddc9;
  --wit: #ffffff;
  --zee: #16414f;           /* primair: diep zeeblauw */
  --zee-diep: #0d2c37;
  --inkt: #1c3640;          /* tekstkleur */
  --inkt-zacht: #4f6873;
  --gras: #88996b;          /* helmgras-groen */
  --gras-diep: #6c7d52;
  --goud: #bd9c61;          /* subtiel luxe-accent */
  --lijn: #e5dcc9;
  --fout: #b4503e;

  /* Typografie */
  --font-kop: "Fraunces", Georgia, serif;
  --font-tekst: "Figtree", "Segoe UI", system-ui, sans-serif;

  /* Maten */
  --container: 1180px;
  --radius: 14px;
  --schaduw: 0 18px 50px -22px rgba(13, 44, 55, 0.28);
  --sectie: clamp(4.5rem, 9vw, 7.5rem);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-tekst);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--inkt);
  background: var(--schuim);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-kop);
  font-weight: 480;
  line-height: 1.12;
  color: var(--zee-diep);
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.65rem); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--zee); text-decoration-color: rgba(22, 65, 79, 0.3); text-underline-offset: 3px; }
a:hover { text-decoration-color: currentColor; }

em { font-style: italic; }

.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

.smal { max-width: 46rem; }

section { padding-block: var(--sectie); }

/* Sierlijke accentwoorden in koppen */
.accent {
  font-style: italic;
  font-weight: 400;
  color: var(--gras-diep);
}

/* Eyebrow: klein kopje boven titels */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--goud);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: var(--goud);
}
.eyebrow.gecentreerd::after {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: var(--goud);
}

.sectiekop { max-width: 44rem; margin-bottom: clamp(2.2rem, 5vw, 3.6rem); }
.sectiekop.gecentreerd { margin-inline: auto; text-align: center; }

.intro-tekst { font-size: 1.16rem; color: var(--inkt-zacht); }

/* --------------------------------------------------------------------------
   Knoppen
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-tekst);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn:hover { transform: translateY(-2px); }

.btn-zee {
  background: var(--zee);
  color: var(--wit);
  box-shadow: 0 12px 28px -14px rgba(13, 44, 55, 0.55);
}
.btn-zee:hover { background: var(--zee-diep); }

.btn-licht {
  background: rgba(255, 255, 255, 0.92);
  color: var(--zee-diep);
}
.btn-licht:hover { background: var(--wit); }

.btn-omlijnd {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--wit);
}
.btn-omlijnd:hover { background: rgba(255, 255, 255, 0.14); border-color: var(--wit); }

.btn-omlijnd-donker {
  border-color: rgba(22, 65, 79, 0.35);
  color: var(--zee);
}
.btn-omlijnd-donker:hover { border-color: var(--zee); background: rgba(22, 65, 79, 0.05); }

/* Tekstlink met pijl */
.pijl-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--zee);
}
.pijl-link svg { width: 1.1em; height: 1.1em; transition: transform 0.25s ease; }
.pijl-link:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   Header & navigatie
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.9rem;
}

/* Transparant boven de hero, gevuld na scrollen of op subpagina's */
.site-header.gevuld,
.site-header.gescrold {
  background: rgba(251, 248, 242, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(28, 54, 64, 0.08);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-family: var(--font-kop);
  font-size: 1.32rem;
  font-weight: 520;
  letter-spacing: 0.04em;
  color: var(--wit);
  transition: color 0.35s ease;
}
.logo svg { width: 2.1rem; height: 2.1rem; }
.site-header.gevuld .logo,
.site-header.gescrold .logo { color: var(--zee-diep); }

/* Logo-afbeelding (wordmark): wit boven de hero(video), donker op lichte header */
.logo img {
  height: 2.6rem;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.35s ease;
}
.site-header.gevuld .logo img,
.site-header.gescrold .logo img { filter: brightness(0) saturate(0) brightness(0.32); }
body.nav-open .site-header .logo img { filter: brightness(0) invert(1) !important; }
.site-footer .logo img { filter: brightness(0) invert(1); height: 2.9rem; margin-bottom: 1rem; }
@media (max-width: 960px) { .logo img { height: 2.3rem; } }

.hoofdnav { display: flex; align-items: center; gap: clamp(1.1rem, 2.4vw, 2rem); }
.hoofdnav a {
  font-size: 0.99rem;
  font-weight: 500;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.3s ease;
}
.hoofdnav a:hover { color: var(--wit); }
.site-header.gevuld .hoofdnav a,
.site-header.gescrold .hoofdnav a { color: var(--inkt-zacht); }
.site-header.gevuld .hoofdnav a:hover,
.site-header.gescrold .hoofdnav a:hover { color: var(--zee-diep); }

.hoofdnav a.actief { color: var(--goud) !important; }

.hoofdnav .nav-cta {
  padding: 0.62rem 1.3rem;
  border-radius: 999px;
  background: var(--zee);
  color: var(--wit) !important;
  font-weight: 600;
  box-shadow: 0 10px 22px -12px rgba(13, 44, 55, 0.6);
}
.hoofdnav .nav-cta:hover { background: var(--zee-diep); }

/* Taalwissel */
.taal-wissel {
  display: inline-flex;
  gap: 0.15rem;
  padding: 0.22rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
}
.site-header.gevuld .taal-wissel,
.site-header.gescrold .taal-wissel { background: rgba(28, 54, 64, 0.07); }
.taal-wissel a {
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
}
.site-header.gevuld .taal-wissel a,
.site-header.gescrold .taal-wissel a { color: var(--inkt-zacht); }
.taal-wissel a.actief { background: var(--wit); color: var(--zee-diep); box-shadow: 0 2px 8px rgba(13, 44, 55, 0.18); }

/* Hamburger (mobiel) */
.nav-knop {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-knop span {
  display: block;
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--wit);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}
.nav-knop span + span { margin-top: 6px; }
.site-header.gevuld .nav-knop span,
.site-header.gescrold .nav-knop span { background: var(--zee-diep); }
body.nav-open .nav-knop span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.nav-open .nav-knop span:nth-child(2) { opacity: 0; }
body.nav-open .nav-knop span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-knop { display: block; }
  .hoofdnav {
    position: fixed;
    inset: 0;
    z-index: -1;
    flex-direction: column;
    justify-content: center;
    gap: 1.6rem;
    background: var(--zee-diep);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }
  body.nav-open .hoofdnav { opacity: 1; visibility: visible; }
  .hoofdnav a { font-size: 1.35rem; color: rgba(255, 255, 255, 0.92) !important; }
  .hoofdnav a.actief { color: var(--goud) !important; }
  .hoofdnav .nav-cta { font-size: 1.1rem; }
  body.nav-open .nav-knop span { background: var(--wit); }
  body.nav-open { overflow: hidden; }
}

/* --------------------------------------------------------------------------
   Hero met video
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0;
  background: var(--zee-diep);
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 44, 55, 0.42) 0%, rgba(13, 44, 55, 0.18) 45%, rgba(13, 44, 55, 0.55) 100%);
}
.hero-inhoud {
  position: relative;
  z-index: 2;
  width: min(54rem, 100% - 2.5rem);
  padding-block: 8rem 6rem;
  color: var(--wit);
}
.hero-inhoud .eyebrow { color: #ead9b6; justify-content: center; }
.hero-inhoud .eyebrow::before, .hero-inhoud .eyebrow::after { background: rgba(234, 217, 182, 0.7); }
.hero-inhoud .eyebrow::after { content: ""; width: 2.2rem; height: 1px; }
.hero-inhoud h1 { color: var(--wit); margin-bottom: 0.4em; }
.hero-inhoud h1 .accent { color: #ead9b6; }
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 36rem;
  margin: 0 auto 2.2rem;
}
.hero-knoppen { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}
.scroll-hint svg { width: 1.6rem; height: 1.6rem; animation: deinen 2.4s ease-in-out infinite; }
@keyframes deinen {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Compacte hero voor subpagina's */
.pagina-hero {
  position: relative;
  min-height: clamp(20rem, 48vh, 30rem);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: var(--zee-diep);
  padding: 0;
}
.pagina-hero .hero-inhoud {
  text-align: left;
  width: min(var(--container), 100% - 2.5rem);
  padding-block: 7.5rem 2.8rem;
}
.pagina-hero .eyebrow { justify-content: flex-start; }
.pagina-hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); }

/* --------------------------------------------------------------------------
   Golf-scheiding tussen secties
   -------------------------------------------------------------------------- */
.golf {
  display: block;
  width: 100%;
  height: clamp(3rem, 7vw, 5.5rem);
  margin-bottom: -1px;
}

/* --------------------------------------------------------------------------
   USP-strook
   -------------------------------------------------------------------------- */
.usp-strook { background: var(--zand); }
.usp-raster {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.4rem, 3vw, 2.6rem);
}
.usp {
  text-align: center;
  padding: 0.4rem;
}
.usp-icoon {
  width: 3.4rem;
  height: 3.4rem;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--wit);
  color: var(--zee);
  box-shadow: 0 10px 24px -14px rgba(13, 44, 55, 0.35);
}
.usp-icoon svg { width: 1.5rem; height: 1.5rem; }
.usp h3 { font-size: 1.12rem; margin-bottom: 0.3em; font-family: var(--font-tekst); font-weight: 700; color: var(--zee-diep); }
.usp p { font-size: 0.95rem; color: var(--inkt-zacht); }

@media (max-width: 960px) { .usp-raster { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .usp-raster { grid-template-columns: 1fr 1fr; gap: 1.6rem 1rem; } .usp p { display: none; } }

/* --------------------------------------------------------------------------
   Intro-sectie (tekst + beeld)
   -------------------------------------------------------------------------- */
.splitsectie {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.2rem, 5vw, 4.5rem);
  align-items: center;
}
.splitsectie.omgekeerd { grid-template-columns: 0.95fr 1.05fr; }
.splitsectie .beeld { position: relative; }
.splitsectie .beeld img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--schaduw);
}
/* Tweede foto die er schuin overheen hangt */
.splitsectie .beeld img.beeld-klein {
  position: absolute;
  width: 44%;
  bottom: -2.2rem;
  left: -2.2rem;
  aspect-ratio: 1;
  border-radius: var(--radius);
  border: 6px solid var(--schuim);
  object-fit: cover;
  box-shadow: var(--schaduw);
}
.handtekening {
  font-family: var(--font-kop);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gras-diep);
}

@media (max-width: 880px) {
  .splitsectie, .splitsectie.omgekeerd { grid-template-columns: 1fr; }
  .splitsectie .beeld { order: -1; }
  .splitsectie .beeld img.beeld-klein { bottom: -1.4rem; left: 1rem; border-color: var(--wit); }
}

/* --------------------------------------------------------------------------
   Huisjes-kaarten
   -------------------------------------------------------------------------- */
.huisjes-raster {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.6rem, 3.5vw, 2.8rem);
}
.huisje-kaart {
  display: flex;
  flex-direction: column;
  background: var(--wit);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--schaduw);
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.huisje-kaart:hover { transform: translateY(-6px); box-shadow: 0 26px 60px -24px rgba(13, 44, 55, 0.4); }
.huisje-kaart .foto { position: relative; overflow: hidden; aspect-ratio: 16 / 10; }
.huisje-kaart .foto img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.huisje-kaart:hover .foto img { transform: scale(1.05); }
.huisje-kaart .foto .label {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(251, 248, 242, 0.92);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--zee);
}
.huisje-kaart .inhoud { padding: clamp(1.4rem, 3vw, 2.1rem); display: flex; flex-direction: column; gap: 0.8rem; flex: 1; }
.huisje-kaart h3 { margin: 0; font-size: 1.7rem; }
.huisje-kaart .feiten {
  display: flex; flex-wrap: wrap; gap: 0.4rem 1.2rem;
  font-size: 0.92rem; color: var(--inkt-zacht);
}
.huisje-kaart .feiten span { display: inline-flex; align-items: center; gap: 0.4rem; }
.huisje-kaart .feiten svg { width: 1.05rem; height: 1.05rem; color: var(--gras-diep); }
.huisje-kaart p { color: var(--inkt-zacht); }
.huisje-kaart .pijl-link { margin-top: auto; }

@media (max-width: 880px) { .huisjes-raster { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Stappen (zo werkt boeken)
   -------------------------------------------------------------------------- */
.stappen-raster {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  counter-reset: stap;
}
.stap {
  position: relative;
  background: var(--wit);
  border-radius: var(--radius);
  padding: 2rem 1.8rem 1.8rem;
  box-shadow: var(--schaduw);
}
.stap::before {
  counter-increment: stap;
  content: counter(stap, decimal-leading-zero);
  font-family: var(--font-kop);
  font-size: 2.6rem;
  font-style: italic;
  color: var(--zand-diep);
  display: block;
  line-height: 1;
  margin-bottom: 0.7rem;
}
.stap h3 { font-size: 1.2rem; }
.stap p { font-size: 0.97rem; color: var(--inkt-zacht); }

@media (max-width: 760px) { .stappen-raster { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   CTA-band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  background: var(--zee-diep);
  color: var(--wit);
  text-align: center;
  overflow: hidden;
}
.cta-band h2 { color: var(--wit); }
.cta-band p { color: rgba(255, 255, 255, 0.82); max-width: 34rem; margin-inline: auto; }
.cta-band .hero-knoppen { margin-top: 2rem; }
.cta-band .golf-achtergrond {
  position: absolute; inset: auto 0 -1px;
  opacity: 0.08;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   Feitenstrook op huisjespagina
   -------------------------------------------------------------------------- */
.feiten-strook {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.6rem;
  padding: 1.4rem 0;
  border-block: 1px solid var(--lijn);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.feiten-strook .feit { display: flex; align-items: center; gap: 0.65rem; font-weight: 600; color: var(--zee-diep); }
.feiten-strook .feit svg { width: 1.35rem; height: 1.35rem; color: var(--gras-diep); }
.feiten-strook .feit small { display: block; font-weight: 400; color: var(--inkt-zacht); font-size: 0.82rem; line-height: 1.3; }

/* --------------------------------------------------------------------------
   Voorzieningen
   -------------------------------------------------------------------------- */
.voorzieningen-raster {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: clamp(1.6rem, 3vw, 2.4rem);
}
.voorziening-groep {
  background: var(--wit);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
  box-shadow: var(--schaduw);
}
.voorziening-groep h3 {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 1.08rem;
  font-family: var(--font-tekst);
  font-weight: 700;
  margin-bottom: 0.9rem;
}
.voorziening-groep h3 svg { width: 1.25rem; height: 1.25rem; color: var(--goud); }
.voorziening-groep ul { list-style: none; margin: 0; padding: 0; }
.voorziening-groep li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.45rem;
  font-size: 0.97rem;
  color: var(--inkt-zacht);
}
.voorziening-groep li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.52em;
  width: 0.55rem; height: 0.32rem;
  border-left: 2px solid var(--gras);
  border-bottom: 2px solid var(--gras);
  transform: rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Fotogalerij + lightbox
   -------------------------------------------------------------------------- */
.galerij {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.8rem, 1.6vw, 1.2rem);
}
.galerij a {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  box-shadow: var(--schaduw);
}
.galerij a.breed { grid-column: span 2; aspect-ratio: auto; }
.galerij img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.galerij a:hover img { transform: scale(1.06); }

@media (max-width: 700px) {
  .galerij { grid-template-columns: 1fr 1fr; }
  .galerij a.breed { grid-column: span 2; }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(13, 44, 55, 0.93);
  padding: 2.5rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(92vw, 70rem);
  max-height: 84vh;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.lightbox button {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: var(--wit);
  width: 3rem; height: 3rem;
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background 0.25s ease;
}
.lightbox button:hover { background: rgba(255, 255, 255, 0.28); }
.lightbox button svg { width: 1.4rem; height: 1.4rem; }
.lightbox .lb-sluit { top: 1.2rem; right: 1.2rem; }
.lightbox .lb-vorige { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox .lb-volgende { right: 1.2rem; top: 50%; transform: translateY(-50%); }

/* --------------------------------------------------------------------------
   Prijskaart / boekingskader op huisjespagina
   -------------------------------------------------------------------------- */
.prijs-kader {
  background: var(--zee-diep);
  color: var(--wit);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  box-shadow: var(--schaduw);
}
.prijs-kader h2, .prijs-kader h3 { color: var(--wit); }
.prijs-kader .prijs {
  font-family: var(--font-kop);
  font-size: clamp(2.2rem, 4vw, 3rem);
}
.prijs-kader .prijs small { font-family: var(--font-tekst); font-size: 1rem; color: rgba(255, 255, 255, 0.75); }
.prijs-kader ul { list-style: none; margin: 1rem 0 0; padding: 0; color: rgba(255, 255, 255, 0.85); font-size: 0.97rem; }
.prijs-kader li { display: flex; gap: 0.6rem; align-items: baseline; margin-bottom: 0.35rem; }
.prijs-kader li::before { content: "·"; color: var(--goud); font-weight: 700; }
.prijs-kader .actie { text-align: center; }

@media (max-width: 760px) { .prijs-kader { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Boekingspagina
   -------------------------------------------------------------------------- */
.boeking-indeling {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4.5vw, 4rem);
  align-items: start;
}
@media (max-width: 960px) { .boeking-indeling { grid-template-columns: 1fr; } }

/* Huisjeskeuze */
.huisje-keuze { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.huisje-keuze label { cursor: pointer; }
.huisje-keuze input { position: absolute; opacity: 0; }
.huisje-keuze .keuze-kaart {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.8rem;
  background: var(--wit);
  border: 2px solid transparent;
  border-radius: var(--radius);
  box-shadow: var(--schaduw);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.huisje-keuze label:hover .keuze-kaart { transform: translateY(-2px); }
.huisje-keuze input:checked + .keuze-kaart { border-color: var(--zee); }
.huisje-keuze input:focus-visible + .keuze-kaart { outline: 2px solid var(--goud); outline-offset: 2px; }
.huisje-keuze img { width: 4.6rem; height: 4.6rem; object-fit: cover; border-radius: 10px; }
.huisje-keuze strong { display: block; font-size: 1.05rem; color: var(--zee-diep); }
.huisje-keuze small { color: var(--inkt-zacht); }

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

/* Kalender */
.kalender {
  background: var(--wit);
  border-radius: var(--radius);
  box-shadow: var(--schaduw);
  padding: clamp(1.2rem, 2.5vw, 1.8rem);
}
.kalender-kop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.kalender-kop button {
  width: 2.5rem; height: 2.5rem;
  border: 1px solid var(--lijn);
  border-radius: 50%;
  background: var(--wit);
  color: var(--zee);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.kalender-kop button:hover:not(:disabled) { background: var(--zand); border-color: var(--zand-diep); }
.kalender-kop button:disabled { opacity: 0.35; cursor: default; }
.kalender-kop button svg { width: 1.1rem; height: 1.1rem; }

.maanden { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
@media (max-width: 700px) { .maanden { grid-template-columns: 1fr; } .maand:nth-child(2) { display: none; } }

.maand-naam {
  text-align: center;
  font-family: var(--font-kop);
  font-size: 1.15rem;
  color: var(--zee-diep);
  margin-bottom: 0.7rem;
}
.dagen-raster {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  text-align: center;
}
.dagen-raster .dagkop {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--inkt-zacht);
  padding-block: 0.35rem;
}
.dag {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-size: 0.92rem;
  border-radius: 8px;
  color: var(--inkt);
  background: transparent;
  border: 0;
  font-family: var(--font-tekst);
}
.dag.leeg { visibility: hidden; }
.dag.verleden, .dag.gewoon { color: #b9c2c0; }
.dag.bezet {
  color: #c2a59d;
  background: repeating-linear-gradient(135deg, #f7eee9 0 4px, #f1e2da 4px 8px);
  border-radius: 0;
}
.dag.selecteerbaar {
  cursor: pointer;
  font-weight: 700;
  color: var(--zee);
  background: rgba(136, 153, 107, 0.14);
  transition: background 0.2s ease, transform 0.2s ease;
}
.dag.selecteerbaar:hover { background: rgba(136, 153, 107, 0.32); transform: scale(1.06); }
.dag.in-periode { background: rgba(22, 65, 79, 0.1); border-radius: 0; color: var(--zee); }
.dag.gekozen {
  background: var(--zee);
  color: var(--wit);
  font-weight: 700;
}
.dag.gekozen.start { border-radius: 8px 0 0 8px; }
.dag.gekozen.eind { border-radius: 0 8px 8px 0; }

.kalender-legenda {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  margin-top: 1.1rem;
  font-size: 0.85rem;
  color: var(--inkt-zacht);
}
.kalender-legenda span { display: inline-flex; align-items: center; gap: 0.45rem; }
.kalender-legenda i {
  width: 0.95rem; height: 0.95rem;
  border-radius: 4px;
}
.kalender-legenda .vrij i { background: rgba(136, 153, 107, 0.3); }
.kalender-legenda .vol i { background: repeating-linear-gradient(135deg, #f7eee9 0 3px, #f1e2da 3px 6px); }
.kalender-legenda .sel i { background: var(--zee); }

.kalender-status {
  margin-top: 1rem;
  padding: 0.85rem 1.1rem;
  border-radius: 10px;
  background: var(--zand);
  font-size: 0.95rem;
  color: var(--zee-diep);
}
.kalender-status.waarschuwing { background: #f7e8e4; color: var(--fout); }

/* --------------------------------------------------------------------------
   Formulieren
   -------------------------------------------------------------------------- */
.formulier-kaart {
  background: var(--wit);
  border-radius: var(--radius);
  box-shadow: var(--schaduw);
  padding: clamp(1.6rem, 3vw, 2.4rem);
}
.formulier-kaart h2 { font-size: 1.6rem; }

.veld { margin-bottom: 1.15rem; }
.veld label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--zee-diep);
  margin-bottom: 0.35rem;
}
.veld input,
.veld select,
.veld textarea {
  width: 100%;
  padding: 0.78rem 1rem;
  border: 1px solid var(--lijn);
  border-radius: 10px;
  background: var(--schuim);
  font-family: var(--font-tekst);
  font-size: 1rem;
  color: var(--inkt);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.veld input:focus,
.veld select:focus,
.veld textarea:focus {
  outline: none;
  border-color: var(--zee);
  box-shadow: 0 0 0 3px rgba(22, 65, 79, 0.12);
}
.veld textarea { resize: vertical; min-height: 6.5rem; }
.veld-rij { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .veld-rij { grid-template-columns: 1fr; } }

.veld .hint { font-size: 0.83rem; color: var(--inkt-zacht); margin-top: 0.3rem; }

.boeking-overzicht {
  background: var(--zand);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  margin-bottom: 1.4rem;
  font-size: 0.97rem;
}
.boeking-overzicht strong { color: var(--zee-diep); }

.privacy-noot { font-size: 0.85rem; color: var(--inkt-zacht); margin-top: 1rem; }

/* Kostenoverzicht op de boekingspagina */
.kosten-kader {
  background: var(--schuim);
  border: 1px solid var(--lijn);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  margin-bottom: 1.4rem;
  font-size: 0.95rem;
}
.kosten-kader h4 {
  font-family: var(--font-tekst);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--zee-diep);
  margin: 0 0 0.7rem;
}
.kosten-rij {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.28rem 0;
  align-items: baseline;
}
.kosten-rij > span:first-child { color: var(--inkt-zacht); }
.kosten-rij > span:last-child { color: var(--zee-diep); font-weight: 600; white-space: nowrap; }
.kosten-rij small { color: var(--inkt-zacht); font-weight: 400; }
.kosten-totaal {
  border-top: 1px solid var(--lijn);
  margin-top: 0.5rem;
  padding-top: 0.6rem;
}
.kosten-totaal > span { font-weight: 700 !important; color: var(--zee-diep) !important; }
.kosten-noot { font-size: 0.82rem; color: var(--inkt-zacht); margin: 0.7rem 0 0; line-height: 1.5; }

/* Checkbox-rij (bijv. hond meenemen) */
.check-rij {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-weight: 500;
  color: var(--inkt);
  padding: 0.55rem 0;
}
.check-rij input[type="checkbox"] {
  width: 1.15rem;
  height: 1.15rem;
  flex: none;
  accent-color: var(--zee);
  cursor: pointer;
}

/* Honeypot tegen spam: visueel verbergen */
.niet-invullen { position: absolute !important; left: -9999px !important; }

/* --------------------------------------------------------------------------
   Contactpagina
   -------------------------------------------------------------------------- */
.contact-raster {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 3vw, 2.2rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.contact-kaart {
  background: var(--wit);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--schaduw);
  text-align: center;
}
.contact-kaart .usp-icoon { margin-bottom: 1rem; background: var(--zand); }
.contact-kaart h3 { font-size: 1.15rem; font-family: var(--font-tekst); font-weight: 700; }
.contact-kaart p { color: var(--inkt-zacht); font-size: 0.97rem; }
.contact-kaart a { font-weight: 600; }
@media (max-width: 760px) { .contact-raster { grid-template-columns: 1fr; } }

.kaart-kader {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--schaduw);
  line-height: 0;
}
.kaart-kader iframe { width: 100%; height: clamp(20rem, 45vw, 28rem); border: 0; }

/* --------------------------------------------------------------------------
   Omgeving / Over ons
   -------------------------------------------------------------------------- */
.omgeving-blokken { display: grid; gap: clamp(3rem, 7vw, 5.5rem); }

.portret {
  width: min(17rem, 60vw);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid var(--wit);
  box-shadow: var(--schaduw);
}

/* --------------------------------------------------------------------------
   Bevestigingspagina
   -------------------------------------------------------------------------- */
.bevestiging {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-top: 8rem;
}
.bevestiging .vink {
  width: 4.6rem; height: 4.6rem;
  margin: 0 auto 1.6rem;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(136, 153, 107, 0.18);
  color: var(--gras-diep);
}
.bevestiging .vink svg { width: 2.2rem; height: 2.2rem; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--zee-diep);
  color: rgba(255, 255, 255, 0.78);
  margin-top: 0;
}
.site-footer .golf { color: var(--schuim); transform: scaleY(-1); }
.cta-band + .site-footer .golf { color: var(--zee-diep); }
.footer-raster {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2.5rem;
}
.site-footer .logo { color: var(--wit); margin-bottom: 1rem; }
.site-footer h4 {
  color: var(--wit);
  font-family: var(--font-tekst);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.55rem; }
.site-footer a { color: rgba(255, 255, 255, 0.78); text-decoration: none; }
.site-footer a:hover { color: var(--wit); text-decoration: underline; }
.site-footer .adresregel { display: flex; gap: 0.6rem; align-items: baseline; }
.site-footer .adresregel svg { width: 1rem; height: 1rem; flex: none; transform: translateY(2px); color: var(--goud); }
.footer-onder {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 760px) { .footer-raster { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Onthul-animaties
   -------------------------------------------------------------------------- */
.onthul {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.onthul.zichtbaar { opacity: 1; transform: none; }
.onthul[data-vertraging="1"] { transition-delay: 0.12s; }
.onthul[data-vertraging="2"] { transition-delay: 0.24s; }
.onthul[data-vertraging="3"] { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .onthul { opacity: 1; transform: none; transition: none; }
  .scroll-hint svg { animation: none; }
}

/* --------------------------------------------------------------------------
   Veelgestelde vragen
   -------------------------------------------------------------------------- */
.faq-lijst {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.faq-item[open] {
  border-color: var(--zand-diep);
  box-shadow: var(--schaduw);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 3.2rem 1.15rem 1.4rem;
  position: relative;
  font-weight: 600;
  font-size: 1.03rem;
  color: var(--zee-diep);
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--zee); }
.faq-item summary:focus-visible {
  outline: 2px solid var(--zee);
  outline-offset: -2px;
}

/* Plusje dat een minnetje wordt */
.faq-item summary::before,
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 1.4rem;
  top: 50%;
  width: 0.85rem;
  height: 2px;
  background: var(--goud);
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.faq-item summary::before { transform: translateY(-50%); }
.faq-item summary::after { transform: translateY(-50%) rotate(90deg); }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(0deg); }

.faq-antwoord {
  padding: 0 1.4rem 1.35rem;
  color: var(--inkt-zacht);
}
.faq-antwoord p { margin: 0 0 0.8rem; font-size: 0.98rem; }
.faq-antwoord p:last-child { margin-bottom: 0; }
.faq-antwoord ul {
  margin: 0 0 0.9rem;
  padding-left: 1.1rem;
  list-style: none;
}
.faq-antwoord li {
  position: relative;
  margin-bottom: 0.4rem;
  font-size: 0.98rem;
}
.faq-antwoord li::before {
  content: "";
  position: absolute;
  left: -1.1rem;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--goud);
}
.faq-antwoord strong { color: var(--inkt); }

.faq-slot {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  background: var(--zand);
  border-radius: var(--radius);
  text-align: center;
}
.faq-slot h3 {
  font-family: var(--font-kop);
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  margin: 0 0 0.5rem;
  color: var(--zee-diep);
}
.faq-slot p { color: var(--inkt-zacht); margin: 0 0 1.4rem; }
.faq-slot-knoppen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 0 !important;
}

/* --------------------------------------------------------------------------
   Agenda-koppeling op de beheerpagina
   -------------------------------------------------------------------------- */
.agenda-kader {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
}
.agenda-kader h2 {
  font-family: var(--font-kop);
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  margin: 0 0 1.2rem;
  color: var(--zee-diep);
}
.agenda-kader h3 {
  font-family: var(--font-tekst);
  font-size: 1rem;
  font-weight: 700;
  color: var(--zee-diep);
  margin: 1.8rem 0 0.4rem;
}
.agenda-kader h3:first-of-type { margin-top: 0; }
.agenda-kader > p {
  color: var(--inkt-zacht);
  font-size: 0.97rem;
  margin: 0 0 0.9rem;
}

.agenda-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.9rem;
  background: var(--zand);
  border-radius: 10px;
  margin-bottom: 0.9rem;
}
.agenda-link code {
  flex: 1 1 16rem;
  font-size: 0.92rem;
  color: var(--zee-diep);
  word-break: break-all;
}
.agenda-link .btn { padding: 0.5rem 1rem; font-size: 0.9rem; }

.agenda-weken {
  display: grid;
  gap: 0.5rem;
}
.agenda-week {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.75rem 0.95rem;
  background: var(--zand);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--inkt);
}
.agenda-week .btn {
  padding: 0.45rem 0.9rem;
  font-size: 0.87rem;
}
@media (max-width: 560px) {
  .agenda-week { flex-direction: column; align-items: stretch; }
  .agenda-week .btn { justify-content: center; }
}

/* --------------------------------------------------------------------------
   Nu aan het strand
   -------------------------------------------------------------------------- */
.strand-strook {
  padding-block: 0;
  background: var(--zee-diep);
  color: rgba(255, 255, 255, 0.85);
}
.strand-binnen {
  padding-block: clamp(1.5rem, 3.5vw, 2.2rem);
  text-align: center;
}
.strand-binnen .eyebrow {
  color: #ead9b6;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.strand-binnen .eyebrow::before,
.strand-binnen .eyebrow::after { background: rgba(234, 217, 182, 0.7); }
.strand-binnen .eyebrow::after { content: ""; width: 2.2rem; height: 1px; }

.strand-cijfers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.6rem, 5vw, 3.6rem);
}
.strand-cijfer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 5rem;
}
.strand-cijfer strong {
  font-family: var(--font-kop);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 400;
  color: var(--wit);
  line-height: 1.1;
}
.strand-cijfer span {
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.strand-zon {
  margin: 1.2rem 0 0;
  font-family: var(--font-kop);
  font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: #ead9b6;
}

/* --------------------------------------------------------------------------
   Honderd stappen
   -------------------------------------------------------------------------- */
.stappen-sectie {
  --voortgang: 0;
  background: var(--zand);
  text-align: center;
  overflow: hidden;
}
.stappen-sectie .eyebrow { justify-content: center; }

.stappen-teller {
  margin: 0.6rem 0 0;
  font-family: var(--font-kop);
  line-height: 1;
  color: var(--zee-diep);
}
.stappen-getal {
  font-size: clamp(4rem, 15vw, 8.5rem);
  font-weight: 300;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}
.stappen-eenheid {
  font-family: var(--font-tekst);
  margin-left: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--inkt-zacht);
  vertical-align: super;
}

/* Voetstappen die één voor één in het zand verschijnen */
.stappen-spoor {
  position: relative;
  height: 3.2rem;
  margin: 0.8rem auto 1.6rem;
  max-width: 30rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.voetstap {
  width: 0.85rem;
  height: 1.4rem;
  border-radius: 50% 50% 45% 45%;
  background: #d8cbb0;
  /* Elke voetstap verschijnt op zijn eigen moment in de scroll */
  opacity: clamp(0, calc((var(--voortgang) * 12) - var(--stap)), 1);
  transform: rotate(-14deg);
  transition: opacity 0.25s ease;
}
.voetstap.rechts {
  align-self: flex-end;
  transform: rotate(14deg) scaleX(-1);
}
.voetstap.links { align-self: flex-start; }

.stappen-sectie h2 { margin-top: 0; }
.stappen-sectie.stappen-klaar .stappen-getal { color: var(--gras-diep); }

@media (max-width: 620px) {
  .stappen-spoor { height: 2.6rem; max-width: 18rem; }
  .voetstap { width: 0.6rem; height: 1rem; }
}

/* --------------------------------------------------------------------------
   Vuurtoren in de footer
   -------------------------------------------------------------------------- */
.site-footer { position: relative; overflow: hidden; padding-bottom: 4.5rem; }

.vuurtoren {
  position: absolute;
  right: clamp(1rem, 5vw, 4rem);
  bottom: 0.4rem;
  width: 40px;
  height: 64px;
  color: rgba(255, 255, 255, 0.22);
  pointer-events: none;
  z-index: 0;
}
.vuurtoren-toren {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}

/* De lichtbundel draait rond de lantaarn; hij verschijnt pas na zonsondergang */
.vuurtoren-straal {
  position: absolute;
  left: 50%;
  top: 13px;
  width: 34rem;
  height: 34rem;
  margin: -17rem 0 0 -17rem;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 2s ease;
  background: conic-gradient(
    from -6deg,
    rgba(255, 238, 199, 0.5),
    rgba(255, 238, 199, 0.12) 7deg,
    rgba(255, 238, 199, 0) 15deg
  );
  animation: vuurtoren-draai 9s linear infinite;
}
.vuurtoren.brandt .vuurtoren-straal { opacity: 1; }
.vuurtoren.brandt { color: rgba(255, 255, 255, 0.3); }

@keyframes vuurtoren-draai {
  to { transform: rotate(360deg); }
}

@media (max-width: 760px) {
  .vuurtoren { width: 28px; height: 45px; right: 1rem; }
  .vuurtoren-straal { width: 20rem; height: 20rem; margin: -10rem 0 0 -10rem; top: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  .vuurtoren-straal { animation: none; }
  .voetstap { transition: none; }
}

/* --------------------------------------------------------------------------
   Aftelling op de bedankpagina
   -------------------------------------------------------------------------- */
.aftellen {
  margin: 2rem auto;
  padding: 1.6rem 1.4rem;
  max-width: 30rem;
  background: var(--zand);
  border-radius: var(--radius);
}
.aftellen-getal {
  margin: 0 0 0.3rem;
  font-family: var(--font-kop);
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 400;
  color: var(--zee-diep);
  line-height: 1.15;
}
.aftellen-uitleg {
  margin: 0;
  font-size: 0.95rem;
  color: var(--inkt-zacht);
}

.strand-getij {
  margin: 0.45rem 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}
