/* Soñora - sonoracuracao.nl */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Clash Display";
  src: url("../fonts/clash-display-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Clash Display";
  src: url("../fonts/clash-display-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("../fonts/general-sans-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("../fonts/general-sans-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --canvas: #FAF5EC;
  --canvas-deep: #F2EADC;
  --ink: #211A12;
  --ink-soft: #5C5044;
  --accent: #E85D0F;
  --accent-deep: #C74B06;
  --turquoise: #0F6E70;        /* linktint op licht, AA voor kleine tekst */
  --turquoise-licht: #62BDBE;  /* linktint op ink */
  --line: rgba(33, 26, 18, 0.12);

  --font-display: "Clash Display", "Avenir Next Condensed", sans-serif;
  --font-body: "General Sans", "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Cascadia Mono", Consolas, monospace;

  --w-content: 68rem;
  --gap: clamp(1rem, 3vw, 2rem);
  --radius: 14px;
}

/* ---------- Reset en basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }
main [id], #faq { scroll-margin-top: 4.8rem; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; margin: 0; }
h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); }
h3 { font-size: 1.15rem; }
p { margin: 0; }
a { color: var(--turquoise); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* De oranje ñ: het merkaccent in elk woordmerk (hero, nav, footer) */
.enye { color: var(--accent); }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--canvas);
  padding: 0.6rem 1rem;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

/* ---------- Knoppen ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  white-space: nowrap;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.8rem 1.6rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.btn-primary {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}
.btn-primary:hover { background: #F06E22; border-color: #F06E22; }
.btn-primary:active { transform: scale(0.98); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: rgba(33, 26, 18, 0.06); }
.btn-wide {
  display: block;
  width: 100%;
  text-align: center;
}
.btn-whatsapp {
  background: var(--ink);
  color: var(--canvas);
  border-color: var(--ink);
  margin-top: 0.8rem;
}
.btn-whatsapp:hover { background: #3A3128; border-color: #3A3128; }

/* ---------- Nav ---------- */
/* Transparant over de herofoto: alleen links en CTA-pill. Woordmerk pas in de solid staat. */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  padding: 1rem clamp(1rem, 4vw, 2.5rem);
  background: transparent;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: var(--w-content);
  margin: 0 auto;
}
.nav-logo {
  display: none;
  align-items: center;
}
.nav-embleem {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 1px 2px rgba(33, 26, 18, 0.18));
}
.nav-links {
  display: flex;
  gap: 1.4rem;
  margin-left: auto;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--canvas);
  text-decoration: none;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta { padding: 0.55rem 1.2rem; font-size: 0.95rem; }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(250, 245, 236, 0.55);
  border-radius: 8px;
  padding: 0.7rem 0.6rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--canvas);
  margin: 5px 0;
}
.nav--solid {
  background: var(--canvas);
  box-shadow: 0 1px 0 var(--line);
}
.nav--solid .nav-logo { display: flex; }
.nav--solid .nav-links a { color: var(--ink); }
.nav--solid .nav-links a:hover { color: var(--accent-deep); }
.nav--solid .nav-toggle { border-color: var(--line); }
.nav--solid .nav-toggle span { background: var(--ink); }

.mobile-menu { display: none; }

@media (max-width: 767px) {
  .nav-links { display: none; }
  .nav-cta { margin-left: auto; }
  .nav-toggle { display: block; }
  .mobile-menu[data-open] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--canvas);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.2rem;
    margin-top: 0.6rem;
    box-shadow: 0 12px 30px rgba(33, 26, 18, 0.15);
  }
  .mobile-menu a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
  }
}
@media (max-width: 420px) {
  .nav-inner { gap: 0.8rem; }
  .nav-cta { font-size: 0.85rem; padding: 0.5rem 0.8rem; }
  .nav-toggle { padding: 0.6rem 0.5rem; }
}

/* ---------- Hero ---------- */
/* Full-bleed foto op de volledige viewport; alle tekst op de foto (ARANYA-patroon). */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 30rem;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
}
/* Ink-scrims: boven voor de nav, onder achter woord, subregel en CTA's. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 1;
  height: 8rem;
  background: linear-gradient(to bottom, rgba(33, 26, 18, 0.55), rgba(33, 26, 18, 0));
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  height: 64%;
  background: linear-gradient(to top, rgba(33, 26, 18, 0.6) 0%, rgba(33, 26, 18, 0.6) 30%, rgba(33, 26, 18, 0.44) 64%, rgba(33, 26, 18, 0) 100%);
}
.hero-text {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  text-align: center;
  padding: 0 1rem clamp(1.6rem, 4vh, 3rem);
  color: var(--canvas);
}
.hero-word {
  font-size: clamp(3.25rem, 17vw, 14rem);
  letter-spacing: -0.02em;
  color: var(--canvas);
}
.hero-sub {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 500;
  margin-top: 0.7rem;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.3rem;
}
.hero .btn-ghost {
  color: var(--canvas);
  border-color: var(--canvas);
}
.hero .btn-ghost:hover { background: rgba(250, 245, 236, 0.14); }
.hero-tagline {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 245, 236, 0.85);
}

/* ---------- Sectiebasis ---------- */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-inner {
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}
.section-deep { background: var(--canvas-deep); }
.section-ink { background: var(--ink); color: var(--canvas); }
.section-intro {
  max-width: 40rem;
  margin-top: 0.9rem;
  color: var(--ink-soft);
}

/* ---------- 2. USP-strip ---------- */
.usps { padding: clamp(1.8rem, 4vw, 2.8rem) 0; }
.usps-list {
  list-style: none;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  max-width: var(--w-content);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem 1.6rem;
}
@media (min-width: 900px) { .usps-list { grid-template-columns: repeat(3, 1fr); } }
.usps-list li { padding-left: 1.1rem; position: relative; }
.usps-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.usps-list strong { display: block; font-weight: 500; line-height: 1.35; }
.usps-list span { font-size: 0.9rem; color: var(--ink-soft); }

/* ---------- 3. De bungalow ---------- */
.specs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  margin: 1.4rem 0 0;
}
.specs li {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  background: var(--canvas);
}
.room-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
  margin-top: 2rem;
}
@media (min-width: 560px) { .room-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .room-grid { grid-template-columns: repeat(3, 1fr); } }
.room-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
}
.room-card h3 { margin-top: 0.9rem; }
.room-size {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--ink-soft);
  margin-left: 0.4rem;
}
.room-card p { margin-top: 0.35rem; font-size: 0.95rem; color: var(--ink-soft); }
.rooms-extra {
  margin-top: 2.2rem;
  max-width: 44rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
}

/* ---------- 4. Zwembad ---------- */
.pool {
  position: relative;
  height: min(82vh, 44rem);
  min-height: 28rem;
  overflow: hidden;
}
.pool-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pool::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  height: 78%;
  background: linear-gradient(to top, rgba(33, 26, 18, 0.72) 0%, rgba(33, 26, 18, 0.5) 40%, rgba(33, 26, 18, 0) 100%);
}
.pool-text {
  position: absolute;
  inset: auto auto 0 0;
  z-index: 2;
  color: var(--canvas);
  padding: 0 clamp(1rem, 4vw, 2.5rem) clamp(2rem, 5vh, 3.5rem);
  max-width: 38rem;
}
.pool-text p { margin-top: 0.9rem; color: rgba(250, 245, 236, 0.92); }
.pool-inset {
  position: absolute;
  right: clamp(1rem, 4vw, 2.5rem);
  bottom: clamp(2rem, 5vh, 3.5rem);
  z-index: 2;
  width: 250px;
  margin: 0;
  display: none;
}
@media (min-width: 1000px) { .pool-inset { display: block; } }
.pool-inset img { border-radius: 12px; }
.pool-inset figcaption {
  font-size: 0.85rem;
  color: rgba(250, 245, 236, 0.85);
  margin-top: 0.5rem;
}

/* ---------- 5. Galerij ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-top: 2rem;
}
@media (min-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-item { display: block; border-radius: 10px; overflow: hidden; }
.gallery-item[hidden] { display: none; }
.gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 10px;
}
.gallery-more { text-align: center; margin-top: 1.8rem; }

/* ---------- 6. Charlie en Ilonka ---------- */
.owners-inner {
  display: grid;
  gap: var(--gap);
  align-items: center;
}
@media (min-width: 768px) {
  .owners-inner { grid-template-columns: 320px 1fr; gap: clamp(2rem, 5vw, 3.5rem); }
}
.owners-photo {
  border-radius: var(--radius);
  width: 100%;
  max-width: 320px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.owners-text p { margin-top: 1rem; max-width: 36rem; }
.owners-embleem { margin-top: 1.6rem; }

/* ---------- 7. Randy ---------- */
.service-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 0.8rem;
}
@media (min-width: 700px) { .service-list { grid-template-columns: repeat(2, 1fr); } }
.service-list li {
  background: var(--canvas-deep);
  border-radius: 10px;
  padding: 0.9rem 1.1rem 0.9rem 2.6rem;
  position: relative;
}
.service-list li::before {
  content: "\2713";
  position: absolute;
  left: 1.1rem;
  color: var(--accent);
  font-weight: 700;
}

/* ---------- 8. Omgeving ---------- */
.area-lead {
  width: 100%;
  border-radius: var(--radius);
  margin-top: 1.8rem;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.area-grid {
  display: grid;
  gap: var(--gap);
  margin-top: var(--gap);
  grid-template-columns: 1fr;
}
@media (min-width: 560px) { .area-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .area-grid { grid-template-columns: repeat(3, 1fr); } }
.area-card {
  background: var(--canvas);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
}
.area-card p { margin-top: 0.4rem; font-size: 0.95rem; color: var(--ink-soft); }
.area-time {
  display: inline-block;
  margin-top: 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--turquoise);
  border: 1px solid rgba(15, 110, 112, 0.35);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
}

/* ---------- 9. Review ---------- */
.review { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.review-inner { max-width: 50rem; text-align: center; }
.review-score {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(6rem, 15vw, 10rem);
  line-height: 1;
  color: var(--accent);
}
.review-quote { margin: 1.5rem 0 0; }
.review-quote p {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.5;
}
.review-quote footer { margin-top: 1.4rem; color: rgba(250, 245, 236, 0.8); }
.review-quote cite { font-style: normal; font-weight: 500; color: var(--canvas); }
.review-quote a { color: var(--accent); display: inline-block; margin-left: 0.4rem; }
.review-response { margin-top: 1.8rem; font-size: 0.9rem; color: rgba(250, 245, 236, 0.6); }
.review-meer {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
  text-align: left;
}
@media (min-width: 760px) { .review-meer { grid-template-columns: repeat(3, 1fr); } }
.review-kaart {
  border: 1px solid rgba(250, 245, 236, 0.16);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.review-kaart p { font-size: 0.95rem; color: rgba(250, 245, 236, 0.92); }
/* Sterren bewust in canvas-wit: de 10 blijft het enige oranje moment hier */
.review-sterren {
  letter-spacing: 0.15em;
  font-size: 1rem;
}
.ster-leeg { color: rgba(250, 245, 236, 0.25); }
.review-kaart footer {
  margin-top: auto;
  font-size: 0.85rem;
  color: rgba(250, 245, 236, 0.6);
}
.review-kaart footer a { color: var(--accent); }

/* ---------- 10. Prijzen en boeken ---------- */
.booking-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  margin-top: 2rem;
}
@media (min-width: 900px) { .booking-grid { grid-template-columns: 1.05fr 1fr; align-items: start; } }
.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table th, .price-table td {
  text-align: left;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}
.price-table th { font-weight: 400; color: var(--ink-soft); }
.price-table td {
  text-align: right;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 1.05rem;
}
.prijs-langer { margin-top: 1rem; font-size: 0.95rem; color: var(--ink-soft); }
.lastminute {
  margin-top: 1.2rem;
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  font-weight: 500;
}
.costs { margin: 1.8rem 0 0; }
.costs div { margin-top: 1.1rem; }
.costs dt { font-weight: 500; }
.costs dd { margin: 0.15rem 0 0; font-size: 0.95rem; color: var(--ink-soft); }
.booking-photo {
  margin-top: 2rem;
  border-radius: var(--radius);
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
  max-width: 420px;
}
.booking-form {
  background: var(--canvas-deep);
  border-radius: 16px;
  padding: clamp(1.3rem, 3vw, 2rem);
}
.booking-form h3 { font-size: 1.35rem; }
.booking-form form { margin-top: 1.2rem; }
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.optioneel { font-weight: 400; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--canvas);
  font: inherit;
  color: var(--ink);
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235C5044' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.6rem;
}
.field-akkoord {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.field-akkoord input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--accent);
}
.field-row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 480px) { .field-row { grid-template-columns: 1fr 1fr; } }
.form-error {
  color: #B42318;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}
.booking-platforms {
  margin-top: 1.4rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  text-align: center;
}

/* ---------- Beschikbaarheidskalender ---------- */
.cal {
  background: var(--canvas-deep);
  border-radius: 16px;
  padding: clamp(1.3rem, 3vw, 2rem);
  margin-top: 2rem;
}
.cal-kop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cal-kop h3 { font-size: 1.35rem; }
.cal-knoppen { display: flex; gap: 0.5rem; }
.cal-knop {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--canvas);
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}
.cal-knop:disabled { opacity: 0.35; cursor: default; }
.cal-uitleg { margin-top: 0.6rem; font-size: 0.95rem; color: var(--ink-soft); max-width: 40rem; }
.cal-maanden {
  display: grid;
  gap: clamp(1rem, 3vw, 2rem);
  margin-top: 1.4rem;
}
@media (min-width: 720px) { .cal-maanden { grid-template-columns: 1fr 1fr; } }
.cal-maand h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.6rem;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-dow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink-soft);
  text-align: center;
  padding-bottom: 0.3rem;
}
.cal-dag {
  aspect-ratio: 1;
  border: none;
  border-radius: 8px;
  background: var(--canvas);
  font: inherit;
  font-size: 0.9rem;
  color: var(--ink);
  cursor: pointer;
  padding: 0;
}
.cal-dag.leeg { background: transparent; cursor: default; }
.cal-dag:disabled { cursor: default; }
.cal-dag.verleden { background: transparent; color: rgba(33, 26, 18, 0.3); }
.cal-dag.bezet { background: #E5D8BE; color: rgba(33, 26, 18, 0.45); text-decoration: line-through; }
.cal-dag.wissel-start { background: linear-gradient(105deg, var(--canvas) 50%, #E5D8BE 50%); }
.cal-dag.wissel-eind { background: linear-gradient(105deg, #E5D8BE 50%, var(--canvas) 50%); }
.cal-dag.selectie { background: var(--accent); color: var(--ink); font-weight: 500; }
.cal-dag.tussen { background: rgba(232, 93, 15, 0.22); }
.cal-legenda {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  padding: 0;
  margin: 1.2rem 0 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.cal-legenda li { display: flex; align-items: center; gap: 0.45rem; }
.leg {
  width: 16px;
  height: 16px;
  border-radius: 5px;
  display: inline-block;
}
.leg-vrij { background: var(--canvas); border: 1px solid var(--line); }
.leg-bezet { background: #E5D8BE; }
.leg-wissel { background: linear-gradient(105deg, var(--canvas) 50%, #E5D8BE 50%); border: 1px solid var(--line); }
.leg-selectie { background: var(--accent); }
.cal-melding {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #B42318;
}
.cal-overzicht {
  margin-top: 1.4rem;
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
  max-width: 30rem;
}
.cal-overzicht dl { margin: 0; }
.cal-overzicht dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.3rem 0;
}
.cal-overzicht dd {
  margin: 0;
  font-family: var(--font-mono);
  font-weight: 500;
}
.cal-totaal {
  border-top: 1px solid var(--line);
  margin-top: 0.4rem;
  padding-top: 0.6rem !important;
  font-weight: 500;
}
.cal-borg, .cal-lastminute {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.cal-lastminute { color: var(--accent-deep); font-weight: 500; }
.cal-voetnoot { margin-top: 0.7rem; font-size: 0.85rem; color: var(--ink-soft); }
.cal-fout { margin-top: 1rem; color: var(--ink-soft); }

/* Honeypot: visueel en voor toetsenbord onbereikbaar, wel aanwezig voor bots */
.veld-verborgen {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-privacy {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.form-succes {
  background: var(--canvas);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 1.2rem 1.4rem;
}

/* ---------- 11. FAQ ---------- */
.faq-inner { max-width: 46rem; }
.faq details { border-bottom: 1px solid var(--line); }
.faq h2 { margin-bottom: 1rem; }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 2rem 1.05rem 0;
  font-weight: 500;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.4rem;
}
.faq details[open] summary::after { content: "\2212"; }
.faq details p { padding: 0 0 1.1rem; color: var(--ink-soft); max-width: 40rem; }

/* ---------- 12. Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--canvas);
  padding: clamp(3rem, 6vw, 4.5rem) 0 1.5rem;
}
.footer-inner {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 800px) { .footer-inner { grid-template-columns: 1.2fr 1fr 1fr 1fr; } }
.footer-tagline { margin-top: 1rem; color: rgba(250, 245, 236, 0.8); }
.footer-col h3 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(250, 245, 236, 0.6);
  margin-bottom: 0.8rem;
}
.footer-col p { margin-top: 0.5rem; }
.footer a { color: var(--accent); }
.footer a:hover { color: #F06E22; }
.footer-note {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: rgba(250, 245, 236, 0.55);
}
@media (max-width: 767px) { .footer { padding-bottom: 6rem; } }

/* ---------- Sticky CTA (alleen mobiel) ---------- */
.sticky-cta {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  background: var(--canvas);
  box-shadow: 0 -1px 0 var(--line), 0 -8px 24px rgba(33, 26, 18, 0.12);
  transition: transform 0.25s ease;
}
.sticky-cta .btn { padding: 0.6rem 1.1rem; font-size: 0.9rem; }
.sticky-price { font-size: 0.9rem; color: var(--ink-soft); white-space: nowrap; }
.sticky-price strong {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--ink);
}
.sticky-cta[data-verborgen] { transform: translateY(120%); }
@media (min-width: 768px) { .sticky-cta { display: none; } }

/* ---------- Subpagina's (huisregels, voorwaarden, privacy) ---------- */
.sub-kop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 1.1rem clamp(1rem, 4vw, 2rem);
}
.sub-kop img { filter: drop-shadow(0 1px 2px rgba(33, 26, 18, 0.18)); }
.sub-terug {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--turquoise);
}
.sub-inhoud { max-width: 44rem; }
.sub-inhoud h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 1.2rem; }
.sub-inhoud h2 { font-size: 1.25rem; margin: 2rem 0 0.5rem; }
.sub-inhoud p { margin-top: 0.7rem; }
.sub-inhoud ul { margin: 0.7rem 0 0; padding-left: 1.2rem; }
.sub-inhoud li { margin-top: 0.35rem; }
.sub-bijgewerkt { color: var(--ink-soft); font-size: 0.9rem; margin-top: 2.5rem; }
.sub-voet {
  text-align: center;
  padding: 2.5rem 1rem 3rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.sub-voet a { margin: 0 0.5rem; }

.footer-juridisch {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
}
.footer-juridisch a { margin: 0 0.6rem; }

/* ---------- Landingspagina's ---------- */
.lp-kop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 1rem clamp(1rem, 4vw, 2rem);
}
.lp-kop img { filter: drop-shadow(0 1px 2px rgba(33, 26, 18, 0.18)); }
.lp-kop-rechts { display: flex; align-items: center; gap: 1.2rem; }
.lp-kop-rechts .btn { padding: 0.55rem 1.2rem; font-size: 0.95rem; }
@media (max-width: 520px) {
  .lp-kop-home { display: none; }
}

.kruimels {
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.kruimels ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
}
.kruimels li::after { content: "›"; margin-left: 0.4rem; color: var(--line); }
.kruimels li:last-child::after { content: ""; }

/* Kopbeeld van een landingspagina: foto met ink-scrim en titel erop */
.lp-hero {
  position: relative;
  margin-top: 0.8rem;
  height: min(40vh, 26rem);
  min-height: 13rem;
  overflow: hidden;
}
@media (min-width: 700px) { .lp-hero { height: min(52vh, 26rem); } }
.lp-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  height: 80%;
  background: linear-gradient(to top, rgba(33, 26, 18, 0.72) 0%, rgba(33, 26, 18, 0.45) 45%, rgba(33, 26, 18, 0) 100%);
}
.lp-hero-tekst {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem) clamp(1.4rem, 4vw, 2.4rem);
  color: var(--canvas);
}
.lp-hero-tekst h1 { color: var(--canvas); font-size: clamp(1.9rem, 5vw, 3rem); }
.lp-hero-tekst p {
  margin-top: 0.6rem;
  max-width: 34rem;
  color: rgba(250, 245, 236, 0.92);
}

.lp-inhoud { max-width: 46rem; }
.lp-inhoud h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-top: 2.5rem; }
.lp-inhoud h2:first-child { margin-top: 0; }
.lp-inhoud h3 { margin-top: 1.6rem; }
.lp-inhoud p { margin-top: 0.8rem; }
.lp-inhoud ul { margin: 0.8rem 0 0; padding-left: 1.2rem; }
.lp-inhoud li { margin-top: 0.4rem; }
.lp-lead { font-size: 1.1rem; }

/* Feitenlijst: machineleesbaar en snel scanbaar */
.feiten {
  margin: 1.4rem 0 0;
  border-top: 1px solid var(--line);
}
.feiten div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.4rem 1.5rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}
.feiten dt { color: var(--ink-soft); }
.feiten dd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: right;
}

.lp-fotos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-top: 1.6rem;
}
@media (min-width: 720px) { .lp-fotos { grid-template-columns: repeat(3, 1fr); } }
.lp-fotos-duo { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .lp-fotos-duo { grid-template-columns: repeat(2, 1fr); } }
.lp-fotos img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 10px;
}
.lp-figuur { margin: 1.6rem 0 0; }
.lp-figuur img { width: 100%; border-radius: var(--radius); aspect-ratio: 16 / 9; object-fit: cover; }
.lp-figuur figcaption { margin-top: 0.6rem; font-size: 0.9rem; color: var(--ink-soft); }

.lp-cta {
  background: var(--ink);
  color: var(--canvas);
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) 1rem;
}
.lp-cta h2 { color: var(--canvas); }
.lp-cta p { margin: 0.8rem auto 1.6rem; max-width: 32rem; color: rgba(250, 245, 236, 0.85); }
.lp-cta a.btn-ghost { color: var(--canvas); border-color: var(--canvas); }
.lp-cta a.btn-ghost:hover { background: rgba(250, 245, 236, 0.14); }
.lp-cta-knoppen { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }

.lp-verder {
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 2.5rem clamp(1rem, 4vw, 2rem) 0;
}
.lp-verder h2 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 500; }
.lp-verder-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}
@media (min-width: 640px) { .lp-verder-grid { grid-template-columns: repeat(2, 1fr); } }
.lp-verder-grid a {
  display: block;
  background: var(--canvas-deep);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  text-decoration: none;
  color: var(--ink);
}
.lp-verder-grid a:hover { background: #EBE0CD; }
.lp-verder-grid strong { display: block; font-family: var(--font-display); font-weight: 600; }
.lp-verder-grid span { font-size: 0.9rem; color: var(--ink-soft); }

/* Doorlink vanuit een homepagesectie */
.sectie-link {
  display: inline-block;
  margin-top: 1.2rem;
  font-weight: 500;
}
.pool-text .sectie-link { color: var(--accent); }

/* ---------- Motion-pass ----------
   Actief via html.motion-aan, gezet door JS en alleen zonder
   prefers-reduced-motion (dan draait er niets). Uitsluitend transform,
   opacity en de kleur van de ñ; nooit layout-eigenschappen, CLS blijft 0. */

/* 1. Hero-entrance: het enige geregisseerde moment */
@keyframes hero-settle {
  from { transform: scale(1.04); }
  to { transform: scale(1); }
}
@keyframes instap {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
@keyframes enye-kleur {
  from { color: var(--canvas); }
  to { color: var(--accent); }
}
.motion-aan .hero-img { animation: hero-settle 6s ease-out both; }
.motion-aan .hero-word { animation: instap 0.6s ease-out both; }
.motion-aan .hero-sub { animation: instap 0.6s ease-out 0.1s both; }
.motion-aan .hero-cta { animation: instap 0.6s ease-out 0.2s both; }
.motion-aan .hero-tagline { animation: instap 0.6s ease-out 0.3s both; }
.motion-aan .hero-word .enye { animation: enye-kleur 0.3s ease-out 0.8s both; }

/* 2. Scroll-reveals: per sectie één groep, eenmalig */
.motion-aan .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.motion-aan .reveal.zichtbaar {
  opacity: 1;
  transform: none;
}

/* 3. Zwembad: trage ken burns, het tweede moment */
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
.motion-aan .pool-img { animation: kenburns 20s ease-in-out infinite alternate; }

/* 4. Micro-interacties */
.motion-aan .btn:hover { transform: translateY(-2px); }
.motion-aan .btn-primary:active { transform: translateY(-1px) scale(0.98); }
.motion-aan .gallery-item img { transition: transform 0.2s ease; }
.motion-aan .gallery-item:hover img { transform: scale(1.03); }
@keyframes lb-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.motion-aan .lightbox[open] { animation: lb-fade 0.15s ease; }
.motion-aan .lightbox[open]::backdrop { animation: lb-fade 0.15s ease; }

/* 5. De 10 schaalt eenmalig met een subtiele overshoot */
.motion-aan .review-score.reveal {
  transform: scale(0.9);
  transition: opacity 0.3s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.motion-aan .review-score.reveal.zichtbaar { transform: scale(1); }

/* ---------- Lightbox ---------- */
.lightbox {
  border: none;
  padding: 0;
  background: transparent;
  max-width: 94vw;
  max-height: 94vh;
  overflow: visible;
}
.lightbox::backdrop { background: rgba(33, 26, 18, 0.93); }
.lightbox img {
  max-width: 94vw;
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 8px;
}
.lightbox-close, .lightbox-nav {
  position: fixed;
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--canvas);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); }
