/* ===========================================================
   Röntgenstraat 28 — Heerlen  |  Verkoopwebsite
   Stijl: rustig, modern, vertrouwenwekkend
   =========================================================== */

:root {
  --groen: #2f5d50;
  --groen-licht: #e7f0ec;
  --groen-donker: #21443a;
  --accent: #c9a24a;
  --tekst: #2a2a28;
  --tekst-zacht: #5e615c;
  --lijn: #e2e0da;
  --bg: #ffffff;
  --bg-zacht: #f6f5f1;
  --radius: 14px;
  --schaduw: 0 8px 30px rgba(0, 0, 0, 0.08);
  --schaduw-zacht: 0 4px 16px rgba(0, 0, 0, 0.06);
  --max: 1140px;
  --font: "Helvetica Neue", Arial, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--tekst);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--groen-donker);
  letter-spacing: -0.01em;
}

h2 {
  font-size: 1.9rem;
  margin-bottom: 8px;
}

.section {
  padding: 80px 0;
}

.section--zacht { background: var(--bg-zacht); }

.section__kop {
  margin-bottom: 38px;
  max-width: 720px;
}

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

.section__intro {
  color: var(--tekst-zacht);
  margin-top: 6px;
}

/* ---------- Navigatie ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--lijn);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__merk {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--groen-donker);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav__merk span { color: var(--accent); }

.nav__links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.nav__links a {
  text-decoration: none;
  color: var(--tekst);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav__links a:hover { color: var(--groen); }

.nav__cta {
  background: var(--groen);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600 !important;
}

.nav__cta:hover { background: var(--groen-donker); }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--groen-donker);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--groen-donker);
  color: #fff;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  background-color: #21443a;
  background-image:
    linear-gradient(120deg, rgba(20,40,33,0.78) 0%, rgba(20,40,33,0.42) 55%, rgba(20,40,33,0.30) 100%),
    repeating-linear-gradient(45deg, #2f5d50 0 22px, #2b5448 22px 44px);
  background-size: auto, auto;
  background-position: center, center;
  background-repeat: no-repeat, repeat;
}

/* Foto bovenop het patroon (wordt door JS gevuld zodra de foto bestaat) */
.hero__foto {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(20,40,33,0.78) 0%, rgba(20,40,33,0.42) 55%, rgba(20,40,33,0.30) 100%);
  z-index: 1;
}

.hero__inner { z-index: 2; }

.hero__inner {
  position: relative;
  padding: 96px 0 104px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}

.hero h1 {
  color: #fff;
  font-size: 3rem;
  margin: 20px 0 6px;
}

.hero__plaats {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
}

.hero__prijs {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 32px;
}

.hero__prijs strong {
  font-size: 2.4rem;
  font-weight: 700;
}

.hero__prijs span {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.hero__acties {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 1rem;
  transition: transform 0.12s ease, background 0.15s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn--primair {
  background: var(--accent);
  color: #1f1f1d;
}

.btn--primair:hover { background: #d6b25e; }

.btn--licht {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}

.btn--licht:hover { background: rgba(255,255,255,0.12); }

/* Bod uitbrengen — overal de goud/oranje accent, met zachte pulsering */
.btn--bod {
  background: var(--accent);
  color: #1f1f1d;
  box-shadow: 0 0 0 0 rgba(201,162,74, 0.55);
  animation: bodPuls 2.4s ease-in-out infinite;
}

.btn--bod:hover { background: #d6b25e; animation: none; }

@keyframes bodPuls {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,162,74, 0.55); }
  50%     { box-shadow: 0 0 0 14px rgba(201,162,74, 0); }
}

/* Bezichtiging — afwijkende kleur (helder wit met groene tekst) */
.btn--bezichtiging {
  background: #ffffff;
  color: var(--groen-donker);
  border-color: #fff;
}

.btn--bezichtiging:hover { background: #eef3f0; }

.btn--groot { padding: 15px 34px; font-size: 1.05rem; }

.nav__cta--bod {
  background: var(--accent) !important;
  color: #1f1f1d !important;
}
.nav__cta--bod:hover { background: #d6b25e !important; }

/* ---------- Snelle kenmerken (hero balk) ---------- */
.kerncijfers {
  background: var(--bg);
  border-bottom: 1px solid var(--lijn);
}

.kerncijfers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.kerncijfer {
  text-align: center;
  padding: 30px 16px;
  border-right: 1px solid var(--lijn);
}

.kerncijfer:last-child { border-right: none; }

.kerncijfer strong {
  display: block;
  font-size: 1.7rem;
  color: var(--groen-donker);
}

.kerncijfer span {
  font-size: 0.85rem;
  color: var(--tekst-zacht);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- Kenmerken-tabel ---------- */
.kenmerken__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
}

.kenmerk {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--lijn);
}

.kenmerk dt { color: var(--tekst-zacht); }
.kenmerk dd { font-weight: 600; text-align: right; }

/* Authentiek Nederlands energielabel-vinkje (A = donkergroen) */
.label-pill {
  display: inline-flex;
  align-items: center;
  background: #009640;
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 3px 6px 3px 12px;
  position: relative;
  border-radius: 2px 0 0 2px;
  line-height: 1.1;
  box-shadow: 0 1px 2px rgba(0,0,0,0.12);
  font-family: Arial, Helvetica, sans-serif;
}

.label-pill::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 0;
  bottom: 0;
  width: 14px;
  background: inherit;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.label-pill__letter {
  font-size: 1.05rem;
  font-weight: 900;
  margin-left: 2px;
  margin-right: 4px;
}

/* ---------- Omschrijving ---------- */
.omschrijving p { margin-bottom: 16px; color: var(--tekst); }
.omschrijving p:last-child { margin-bottom: 0; }

.kader {
  background: var(--groen-licht);
  border-left: 4px solid var(--groen);
  padding: 20px 24px;
  border-radius: 8px;
  margin-top: 28px;
}

.kader strong { color: var(--groen-donker); }

/* ---------- Galerij ---------- */
.galerij {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.foto {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--groen-licht);
  border: 1px dashed #b9c9c1;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--groen);
  overflow: hidden;
}

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

.foto__icoon { font-size: 1.8rem; opacity: 0.5; }
.foto__naam { font-size: 0.9rem; font-weight: 600; }
.foto__hint { font-size: 0.75rem; color: var(--tekst-zacht); }

.foto--breed { grid-column: span 2; aspect-ratio: 8 / 3; }

/* ---------- Foto-viewer (groot beeld + miniaturen) ---------- */
.fotoviewer {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Kamer-navigatie (chips) */
.fv-kamers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fv-kamer {
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--groen-donker);
  background: var(--groen-licht);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.fv-kamer:hover { border-color: var(--groen); }

.fv-kamer.is-actief {
  background: var(--groen);
  color: #fff;
}

.fv-kamer__telt {
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.28);
  color: inherit;
  border-radius: 999px;
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}
.fv-kamer:not(.is-actief) .fv-kamer__telt {
  background: rgba(47, 93, 80, 0.14);
}

/* Podium: grote foto, volledig zichtbaar (niet bijgesneden) */
.fv-podium {
  position: relative;
  background: #12211c;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--schaduw);
}

.fv-podium__foto {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: zoom-in;
  opacity: 1;
  transition: opacity 0.25s ease;
}
.fv-podium__foto.is-laden { opacity: 0; }

/* Pijlen op het podium */
.fv-pijl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: var(--groen-donker);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  transition: background 0.15s, transform 0.15s;
  z-index: 2;
}
.fv-pijl:hover { background: #fff; }
.fv-pijl:active { transform: translateY(-50%) scale(0.94); }
.fv-pijl--vorige { left: 14px; }
.fv-pijl--volgende { right: 14px; }

/* Teller + vergroot-knop */
.fv-teller {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  z-index: 2;
}

.fv-vergroot {
  position: absolute;
  right: 14px;
  bottom: 14px;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.15s;
  z-index: 2;
}
.fv-vergroot:hover { background: rgba(0, 0, 0, 0.78); }

/* Miniaturen-strook */
.fv-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}
.fv-strip::-webkit-scrollbar { height: 8px; }
.fv-strip::-webkit-scrollbar-thumb {
  background: #cdd6d1;
  border-radius: 999px;
}

.fv-mini {
  flex: 0 0 auto;
  width: 104px;
  height: 74px;
  border: 2px solid transparent;
  border-radius: 9px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: var(--groen-licht);
  transition: border-color 0.15s, opacity 0.15s;
  opacity: 0.7;
}
.fv-mini img { width: 100%; height: 100%; object-fit: cover; }
.fv-mini:hover { opacity: 1; }
.fv-mini.is-actief { border-color: var(--accent); opacity: 1; }

/* ---------- Volledig-scherm lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8, 14, 12, 0.94);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px 16px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.lightbox.is-open { opacity: 1; }
.lightbox[hidden] { display: none; }

.lightbox__sluit {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.15s;
  z-index: 3;
}
.lightbox__sluit:hover { background: rgba(255, 255, 255, 0.28); }

.lightbox__podium {
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 0;
}

.lightbox__podium.is-laden::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38px;
  height: 38px;
  margin: -19px 0 0 -19px;
  border: 3px solid rgba(255, 255, 255, 0.25);
  border-top-color: #fff;
  border-radius: 50%;
  animation: lbSpin 0.7s linear infinite;
  z-index: 1;
}

@keyframes lbSpin { to { transform: rotate(360deg); } }

.lightbox__foto {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  user-select: none;
}

.lightbox__pijl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, transform 0.15s;
  z-index: 3;
}
.lightbox__pijl:hover { background: rgba(255, 255, 255, 0.32); }
.lightbox__pijl:active { transform: translateY(-50%) scale(0.92); }
.lightbox__pijl--vorige { left: 18px; }
.lightbox__pijl--volgende { right: 18px; }

.lightbox__bijschrift {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  margin-top: 14px;
  letter-spacing: 0.01em;
}
.lightbox__bijschrift span { color: rgba(255, 255, 255, 0.6); font-weight: 400; }

.lightbox__strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  max-width: 100%;
  margin-top: 14px;
  padding-bottom: 4px;
}
.lightbox__strip .fv-mini { width: 84px; height: 58px; }
.lightbox__strip .fv-mini.is-actief { border-color: #fff; }

body.geen-scroll { overflow: hidden; }

/* ---------- Duurzaamheid ---------- */
.duur__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.duur-kaart {
  background: var(--bg);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--schaduw-zacht);
}

.duur-kaart__icoon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--groen-licht);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.duur-kaart h3 { font-size: 1.15rem; margin-bottom: 6px; }
.duur-kaart p { color: var(--tekst-zacht); font-size: 0.95rem; }

/* ---------- Plattegrond ---------- */
.plattegrond {
  aspect-ratio: 16 / 7;
  background: var(--bg-zacht);
  border: 1px dashed #c4c2ba;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--tekst-zacht);
}

.plattegrond__icoon { font-size: 2rem; opacity: 0.5; }

/* Meerdere plattegronden naast elkaar */
.plattegronden {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.plattegrond-kaart {
  display: block;
  background: #fff;
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--schaduw-zacht);
  transition: transform 0.15s, box-shadow 0.15s;
}
.plattegrond-kaart:hover {
  transform: translateY(-2px);
  box-shadow: var(--schaduw);
}
.plattegrond-kaart img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- Buurt ---------- */
.buurt__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.buurt__kaart {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(47,93,80,0.08), rgba(47,93,80,0.08)),
    repeating-linear-gradient(0deg, #eceae3 0 1px, transparent 1px 40px),
    repeating-linear-gradient(90deg, #eceae3 0 1px, transparent 1px 40px),
    var(--bg-zacht);
  border: 1px solid var(--lijn);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tekst-zacht);
  position: relative;
  overflow: hidden;
}

.buurt__kaart iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.buurt__pin {
  position: absolute;
  left: 46%; top: 44%;
  width: 18px; height: 18px;
  background: var(--accent);
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: var(--schaduw-zacht);
}

.buurt__lijst { list-style: none; margin-top: 16px; }
.buurt__lijst li {
  padding: 9px 0;
  border-bottom: 1px solid var(--lijn);
  display: flex; gap: 10px;
}
.buurt__lijst li::before { content: "→"; color: var(--accent); font-weight: 700; }

/* ---------- FAQ ---------- */
.faq__item {
  border-bottom: 1px solid var(--lijn);
}

.faq__vraag {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--groen-donker);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: inherit;
}

.faq__teken { color: var(--accent); flex-shrink: 0; transition: transform 0.2s; }
.faq__item.open .faq__teken { transform: rotate(45deg); }

.faq__antwoord {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  color: var(--tekst-zacht);
}

.faq__antwoord p { padding-bottom: 20px; }

/* ---------- Bezichtiging / formulier ---------- */
.contact {
  background: var(--groen-donker);
  color: #fff;
}

.contact h2 { color: #fff; }
.contact .section__intro { color: rgba(255,255,255,0.78); }
.contact .section__label { color: var(--accent); }

.contact__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.contact__info p { color: rgba(255,255,255,0.82); margin-bottom: 18px; }

.contact__info ul { list-style: none; margin-top: 20px; }
.contact__info li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  display: flex; gap: 12px; align-items: center;
}
.contact__info li span:first-child { font-size: 1.1rem; }

.form {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--schaduw);
}

.form__rij {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.veld { margin-bottom: 16px; }

.veld label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--tekst);
  margin-bottom: 6px;
}

.veld input,
.veld textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--lijn);
  border-radius: 9px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--tekst);
  background: var(--bg-zacht);
}

.veld input:focus,
.veld textarea:focus {
  outline: none;
  border-color: var(--groen);
  background: #fff;
}

.veld textarea { resize: vertical; min-height: 96px; }

.veld--fout input,
.veld--fout textarea { border-color: #c0392b; background: #fdf3f2; }

.veld__fout {
  display: none;
  color: #c0392b;
  font-size: 0.8rem;
  margin-top: 4px;
}

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

.form__melding {
  display: none;
  background: var(--groen-licht);
  color: var(--groen-donker);
  border-radius: 9px;
  padding: 14px 16px;
  margin-bottom: 16px;
  font-size: 0.92rem;
  font-weight: 500;
}

.form__melding.zichtbaar { display: block; }

.form button[type="submit"] {
  width: 100%;
  border: none;
}

.form__klein {
  font-size: 0.78rem;
  color: var(--tekst-zacht);
  margin-top: 12px;
  text-align: center;
}

/* ---------- Boekingssysteem ---------- */
.boeking {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.boeking__stap {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.boeking__nr {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #1f1f1d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.kal {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 20px 14px;
  box-shadow: var(--schaduw);
}

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

.kal__kop strong {
  font-size: 1.05rem;
  color: var(--groen-donker);
  text-transform: capitalize;
}

.kal__nav {
  width: 36px; height: 36px;
  border-radius: 9px;
  border: 1px solid var(--lijn);
  background: var(--bg-zacht);
  color: var(--groen-donker);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}
.kal__nav:hover:not(:disabled) { background: var(--groen-licht); }
.kal__nav:disabled { opacity: 0.3; cursor: not-allowed; }

.kal__weekdagen {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 6px;
}
.kal__weekdagen span {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--tekst-zacht);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

.kal__dag {
  aspect-ratio: 1 / 1;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 9px;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--tekst);
  cursor: default;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kal__dag--leeg { visibility: hidden; }

.kal__dag--uit {
  color: #c4c2ba;
}

.kal__dag--vrij {
  background: var(--groen-licht);
  color: var(--groen-donker);
  font-weight: 700;
  cursor: pointer;
  border-color: #bcd3c9;
}
.kal__dag--vrij:hover { background: #d4e6dd; }

.kal__dag--vrij::after {
  content: "";
  position: absolute;
  bottom: 6px; left: 50%;
  transform: translateX(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.kal__dag--gekozen {
  background: var(--groen) !important;
  color: #fff !important;
  border-color: var(--groen) !important;
}
.kal__dag--gekozen::after { background: #fff; }

.kal__legenda {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--tekst-zacht);
  margin-top: 12px;
  flex-wrap: wrap;
}
.kal__stip {
  display: inline-block;
  width: 11px; height: 11px;
  border-radius: 50%;
  margin-left: 8px;
}
.kal__stip--vrij { background: var(--groen-licht); border: 1px solid #bcd3c9; margin-left: 0; }
.kal__stip--gekozen { background: var(--groen); }

.kal__status {
  font-size: 0.78rem;
  color: var(--tekst-zacht);
  margin-top: 6px;
  min-height: 1em;
}

.tijden {
  margin-top: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  padding: 16px 18px;
}

.tijden__leeg {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin: 0;
}

.tijden__kop {
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: capitalize;
}

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

.tijd {
  padding: 10px 6px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.95);
  color: var(--groen-donker);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}
.tijd:hover { background: #fff; transform: translateY(-1px); }
.tijd--gekozen {
  background: var(--accent);
  border-color: var(--accent);
  color: #1f1f1d;
}

/* Gekozen afspraak in formulier */
.gekozen-afspraak {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--groen-licht);
  border: 1px solid #bcd3c9;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 18px;
}
.gekozen-afspraak__icoon { font-size: 1.4rem; }
.gekozen-afspraak strong { display: block; color: var(--groen-donker); font-size: 0.98rem; }
.gekozen-afspraak span { font-size: 0.84rem; color: var(--tekst-zacht); }
.gekozen-afspraak div { flex: 1; }
.gekozen-afspraak__wis {
  background: none;
  border: none;
  color: var(--groen);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}

.boeking__form button[type="submit"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ---------- Modal: Bod uitbrengen ---------- */
.modal[hidden] { display: none !important; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}

.modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 28, 23, 0.72);
  backdrop-filter: blur(3px);
  animation: modalFade 0.2s ease;
}

.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 720px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  margin: 30px auto;
  animation: modalIn 0.22s ease;
  overflow: hidden;
}

@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalIn   { from { opacity: 0; transform: translateY(20px) scale(0.98); } to { opacity: 1; transform: none; } }

.modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid var(--lijn);
  background: var(--groen-donker);
  color: #fff;
}

.modal__head h2 {
  font-size: 1.35rem;
  color: #fff;
  margin: 0;
}

.modal__head__sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}

.modal__sluit {
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}
.modal__sluit:hover { background: rgba(255,255,255,0.25); }

.modal__body {
  padding: 28px;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
}

/* Open-staat */
body.modal-open { overflow: hidden; }

/* ---------- Biedingsformulier ---------- */
.bod-form fieldset {
  border: none;
  padding: 0;
  margin: 0 0 26px;
}

.bod-form legend {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  padding: 0;
}

.bod-form .form__rij {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}

.bod-form .form__rij--3 { grid-template-columns: 2fr 1fr 1fr; }

.bod-form .veld--breed { grid-column: 1 / -1; }

.bod-form input,
.bod-form textarea,
.bod-form select {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--lijn);
  border-radius: 9px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--tekst);
  background: var(--bg-zacht);
}

.bod-form input:focus,
.bod-form textarea:focus,
.bod-form select:focus {
  outline: none;
  border-color: var(--groen);
  background: #fff;
}

/* Vaste, niet-bewerkbare keuze-weergave (bv. Kosten koper) */
.vaste-keuze {
  padding: 11px 13px;
  border: 1px solid var(--lijn);
  border-radius: 9px;
  font-size: 0.95rem;
  background: var(--groen-licht);
  color: var(--groen-donker);
  font-weight: 600;
}

.bod-form .veld--inline {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}

.bod-form .veld--inline input[type="checkbox"] {
  width: 18px; height: 18px;
  margin: 0;
  accent-color: var(--groen);
  flex-shrink: 0;
}

.bod-form .veld--inline label {
  margin: 0;
  font-weight: 500;
  font-size: 0.95rem;
}

.voorbehoud-detail {
  margin: 6px 0 8px 28px;
  padding: 10px 14px;
  background: var(--bg-zacht);
  border-radius: 8px;
  display: none;
  gap: 12px;
  align-items: center;
  font-size: 0.88rem;
}

.voorbehoud-detail.open { display: flex; flex-wrap: wrap; }

.voorbehoud-detail input { padding: 7px 9px; font-size: 0.88rem; }

/* Aankoopmakelaar-blok (klapt open onder de checkbox) */
.makelaar-detail {
  display: none;
  margin: 8px 0 4px 28px;
  padding: 14px;
  background: var(--bg-zacht);
  border-radius: 8px;
}
.makelaar-detail.open { display: block; }
.makelaar-detail .form__rij { gap: 12px 18px; margin: 0; }

/* Algemene 'inline' veld (checkbox + label) — ook bruikbaar buiten de bod-form */
.veld--inline {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}
.veld--inline input[type="checkbox"] {
  width: 18px; height: 18px;
  margin: 0;
  accent-color: var(--groen);
  flex-shrink: 0;
}
.veld--inline label { margin: 0; font-weight: 500; font-size: 0.95rem; color: var(--tekst); }

.bedrag-veld {
  position: relative;
}
.bedrag-veld::before {
  content: "€";
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--tekst-zacht);
  font-weight: 600;
}
.bedrag-veld input { padding-left: 28px; }

.bod-form .bevestiging {
  background: var(--groen-licht);
  border-radius: 10px;
  padding: 16px 18px;
}

.bod-form .bevestiging .veld--inline { padding: 6px 0; }
.bod-form .bevestiging label { font-size: 0.88rem; color: var(--tekst); }

.bod-form button[type="submit"] {
  width: 100%;
  margin-top: 8px;
  border: none;
}

.bod-form .vraagprijs-hint {
  font-size: 0.78rem;
  color: var(--tekst-zacht);
  margin-top: 4px;
}

/* ---------- Footer ---------- */
.footer {
  background: #1b362e;
  color: rgba(255,255,255,0.7);
  padding: 48px 0 28px;
  font-size: 0.9rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer__merk {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.footer h4 {
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.footer a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer a:hover { color: #fff; }

.footer ul { list-style: none; }
.footer li { padding: 4px 0; }

.footer__onder {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
}

/* ---------- Responsief ---------- */
@media (max-width: 860px) {
  body { font-size: 16px; }
  .section { padding: 56px 0; }
  h2 { font-size: 1.55rem; }

  .nav__links {
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--lijn);
    box-shadow: var(--schaduw);
    display: none;
  }
  .nav__links.open { display: flex; }
  .nav__links li { padding: 0 24px; }
  .nav__links li a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--lijn);
  }
  .nav__links li:last-child a { border-bottom: none; }
  .nav__cta { text-align: center; margin: 10px 0; }
  .nav__toggle { display: block; }

  .hero__inner { padding: 64px 0 72px; }
  .hero h1 { font-size: 2.1rem; }
  .hero__prijs strong { font-size: 1.9rem; }

  .kerncijfers__grid { grid-template-columns: 1fr 1fr; }
  .kerncijfer:nth-child(2) { border-right: none; }
  .kerncijfer:nth-child(1),
  .kerncijfer:nth-child(2) { border-bottom: 1px solid var(--lijn); }

  .kenmerken__grid { grid-template-columns: 1fr; gap: 0; }
  .galerij { grid-template-columns: 1fr 1fr; }
  .foto--breed { grid-column: span 2; }
  .fv-pijl { width: 40px; height: 40px; font-size: 1.4rem; }
  .fv-mini { width: 88px; height: 62px; }
  .duur__grid { grid-template-columns: 1fr; }
  .buurt__grid { grid-template-columns: 1fr; gap: 28px; }
  .plattegronden { grid-template-columns: 1fr 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 32px; }
  .boeking { grid-template-columns: 1fr; gap: 28px; }
  .form__rij { grid-template-columns: 1fr; gap: 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .form { padding: 24px; }
}

@media (max-width: 860px) {
  .modal { padding: 0; }
  .modal__dialog { margin: 0; border-radius: 0; min-height: 100vh; max-width: none; }
  .modal__body { max-height: calc(100vh - 80px); padding: 20px; }
  .bod-form .form__rij,
  .bod-form .form__rij--3 { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 480px) {
  .galerij { grid-template-columns: 1fr; }
  .plattegronden { grid-template-columns: 1fr; }
  .foto--breed { grid-column: span 1; aspect-ratio: 4/3; }
  .hero__acties { flex-direction: column; }
  .hero__acties .btn { text-align: center; }
  .modal__head { padding: 16px 18px; }
  .modal__head h2 { font-size: 1.15rem; }
  .tijden__grid { grid-template-columns: repeat(3, 1fr); }
  .fv-podium { aspect-ratio: 4 / 3; }
  .fv-kamer { font-size: 0.85rem; padding: 7px 13px; }
  .fv-vergroot span { display: none; }
  .lightbox__pijl { width: 44px; height: 44px; font-size: 1.6rem; }
  .lightbox__pijl--vorige { left: 8px; }
  .lightbox__pijl--volgende { right: 8px; }
}
