/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #b0884a;
  --gold-hover: #9a7440;
  --gold-light: #d9b87a;
  --gold-bg: #f6edd8;
  --green: #7a9e7e;
  --green-dark: #5a7d5e;
  --cream: #faf7f2;
  --cream2: #f0ebe0;
  --sand: #e2d8c5;
  --dark: #242220;
  --text: #3a3733;
  --text-light: #787370;
  --white: #ffffff;
  --font: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-head: 'Red Hat Display', 'Helvetica Neue', Arial, sans-serif;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 34px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-hover); }
.btn-green {
  background: var(--green);
  color: var(--white);
}
.btn-green:hover { background: var(--green-dark); }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--white); }

/* ── Navbar ───────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--white);
  z-index: 1000;
  box-shadow: 0 1px 0 var(--sand);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 42px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-links li a {
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  transition: color 0.2s;
}
.nav-links li a:hover { color: var(--gold); }
.nav-links li a.nav-current { color: var(--gold); }
.nav-links li.nav-cta-item a {
  background: var(--gold);
  color: var(--white);
  padding: 9px 22px;
  margin-left: 10px;
  transition: background 0.2s;
}
.nav-links li.nav-cta-item a:hover { background: var(--gold-hover); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--dark);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-mobile a:hover { color: var(--gold); }

/* ── Hero ─────────────────────────────────────────────────── */
#hero {
  margin-top: var(--nav-h);
  background: var(--cream);
  padding: 64px 0 56px;
}
.hero-text {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 48px;
}
.hero-text h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-text p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 32px;
}
.hero-video-wrap {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 32px;
}
.hero-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  background: var(--sand);
}
.hero-video iframe {
  position: absolute;
  left: 0;
  width: 100%;
  height: 120%;
  top: -10%;
}

/* ── Section defaults ─────────────────────────────────────── */
section { padding: 80px 0; }
.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-text {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.85;
  max-width: 560px;
}

/* ── Intro strip (naardezon info) ─────────────────────────── */
#naardezon-intro {
  background: var(--cream);
  padding: 64px 0;
}
.nz-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.nz-intro-grid > div:first-child img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.nz-intro-text h2 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.nz-intro-text h3 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.nz-intro-text p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 28px;
}

/* ── Two-col text+image ───────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col-text h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.two-col-text h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.18;
  margin-bottom: 20px;
}
.two-col-text p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 28px;
}
.two-col-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ── Photo grid (3-col) ───────────────────────────────────── */
.photo-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.photo-grid-3 img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.photo-grid-3 img:hover { transform: scale(1.025); opacity: 0.88; }

/* ── Photo grid (2-col) ───────────────────────────────────── */
.photo-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
.photo-grid-2 img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.photo-grid-2 img:hover { transform: scale(1.025); }

/* ── Klimaat section ──────────────────────────────────────── */
#klimaat {
  background: var(--cream2);
  padding: 72px 0;
}
.klimaat-head {
  text-align: center;
  margin-bottom: 48px;
}
.klimaat-head h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.klimaat-head h2 {
  font-family: var(--font-head);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 700;

  color: var(--dark);
  line-height: 1.1;
}
.klimaat-graphs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.klimaat-graphs img {
  width: 100%;
  object-fit: contain;
  background: var(--white);
  padding: 20px;
  border: 1px solid var(--sand);
}

/* ── CTA bottom ───────────────────────────────────────────── */
#cta-bottom {
  background: var(--cream2);
  padding: 80px 0;
  text-align: center;
}
#cta-bottom h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 700;

  color: var(--dark);
  max-width: 660px;
  margin: 0 auto 32px;
  line-height: 1.25;
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  max-width: 280px;
}
.footer-col h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.75; }
.footer-col a.footer-contact-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 24px;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.footer-col a.footer-contact-btn:hover { background: var(--gold-hover); }
.footer-legal {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  align-items: center;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* ── Page hero (subpages) ─────────────────────────────────── */
.page-hero {
  margin-top: var(--nav-h);
  background: var(--cream);
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--sand);
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;

  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.page-hero p {
  font-size: 15px;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.85;
}

/* ── Tarieven table ───────────────────────────────────────── */
.tarieven-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
}
.tarieven-text p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 12px;
}
.tarieven-text strong { color: var(--dark); }
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.price-table thead th {
  background: var(--dark);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.price-table tbody tr {
  border-bottom: 1px solid var(--sand);
  transition: background 0.15s;
}
.price-table tbody tr:hover { background: var(--gold-bg); }
.price-table tbody tr:nth-child(even) { background: var(--cream); }
.price-table tbody tr:nth-child(even):hover { background: var(--gold-bg); }
.price-table tbody td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text);
}
.price-table tbody td:last-child {
  font-weight: 700;
  color: var(--gold);
  font-size: 15px;
  font-family: var(--font-head);

}
.tarieven-img {
  border-radius: 10px;
  overflow: hidden;
}
.tarieven-img img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
}
.tarieven-note {
  background: var(--cream2);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.75;
}

/* ── Omgeving page ────────────────────────────────────────── */
.omgeving-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}
.omgeving-text h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin: 24px 0 8px;
}
.omgeving-text h3:first-child { margin-top: 0; }
.omgeving-text p, .omgeving-text li {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 6px;
}
.omgeving-text ul { padding-left: 16px; list-style: disc; }
.map-embed {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
  border-radius: 10px;
}

/* ── Fotos page ───────────────────────────────────────────── */
.fotos-cat-nav {
  background: var(--cream2);
  border-bottom: 1px solid var(--sand);
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
}
.fotos-cat-nav .container {
  display: flex;
  flex-wrap: wrap;
}
.fotos-cat-nav a {
  display: inline-block;
  padding: 13px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.2s, border-bottom-color 0.2s;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.fotos-cat-nav a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.fotos-cat-section {
  padding: 48px 0 32px;
}
.fotos-cat-head {
  margin-bottom: 20px;
}
.fotos-cat-head h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.fotos-cat-head h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
}
.fotos-gallery-wrap {
  padding: 0 8px;
}
.fotos-gallery {
  columns: 3;
  column-gap: 6px;
}
.fotos-gallery .foto-item {
  break-inside: avoid;
  margin-bottom: 6px;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}
.fotos-gallery .foto-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.45s ease;
}
.fotos-gallery .foto-item:hover img { transform: scale(1.04); }

/* ── Video grid ───────────────────────────────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}
.video-item {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  border-radius: 12px;
  background: var(--dark);
}
.video-item iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ── Omgeving photo stack ─────────────────────────────────── */
.omgeving-photo-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
}
.omgeving-photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  flex: 1;
  min-height: 0;
}
.omgeving-photo-row img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.omgeving-photo-full {
  width: 100%;
  flex: 1.3;
  min-height: 180px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* ── Contact page ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact-info-blocks { display: flex; flex-direction: column; gap: 28px; }
.contact-block {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-block-icon {
  width: 42px;
  height: 42px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}
.contact-block-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-block-value { font-size: 14px; font-weight: 600; color: var(--dark); line-height: 1.6; }
.contact-block-value a { color: var(--dark); }
.contact-block-value a:hover { color: var(--gold); }
.contact-form-box {
  background: var(--cream);
  padding: 40px;
  border: 1px solid var(--sand);
}
.contact-form-box h3 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;

  margin-bottom: 28px;
  color: var(--dark);
}
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 7px;
  color: var(--text-light);
}
.form-row input, .form-row textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--sand);
  font-family: var(--font);
  font-size: 14px;
  background: var(--white);
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
}
.form-row input:focus, .form-row textarea:focus { border-color: var(--gold); }
.form-row textarea { min-height: 130px; resize: vertical; }

/* ── Reserveren page ──────────────────────────────────────── */
.reserveren-content {
  max-width: 700px;
  margin: 0 auto;
}
.reserveren-content p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 16px;
}
.reserveer-card {
  background: var(--cream);
  border: 1px solid var(--sand);
  padding: 40px 36px;
  margin: 32px 0;
  text-align: center;
}
.reserveer-card h3 {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 700;

  margin-bottom: 12px;
  color: var(--dark);
}
.reserveer-card p { margin-bottom: 24px; color: var(--text-light); font-size: 15px; }

/* ── Boekingskalender ─────────────────────────────────────── */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
.booking-cal-wrap {
  background: var(--cream);
  border: 1px solid var(--sand);
  padding: 28px 28px 24px;
}
.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.cal-nav-btn {
  background: none;
  border: 1px solid var(--sand);
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 18px;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.15s, border-color 0.15s;
}
.cal-nav-btn:hover:not(:disabled) { background: var(--gold-bg); border-color: var(--gold); }
.cal-nav-btn:disabled { cursor: default; }
.cal-nav-titel {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;

  color: var(--dark);
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-kop {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 6px 0 10px;
}
.cal-dag {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 400;
  user-select: none;
  position: relative;
}
.cal-leeg {}
.cal-verleden {
  color: var(--sand);
  cursor: default;
}
.cal-geboekt {
  color: var(--sand);
  cursor: not-allowed;
  background: var(--cream2);
}
.cal-geboekt::after {
  content: '';
  position: absolute;
  left: 15%;
  right: 15%;
  top: 50%;
  height: 1px;
  background: var(--sand);
}
.cal-vrij {
  cursor: pointer;
  color: var(--text);
  transition: background 0.12s, color 0.12s;
}
.cal-vrij:hover {
  background: var(--gold-bg);
  color: var(--gold);
  font-weight: 700;
}
.cal-vandaag { font-weight: 900; }
.cal-start, .cal-eind {
  background: var(--gold) !important;
  color: var(--white) !important;
  font-weight: 700;
  z-index: 1;
}
.cal-in-bereik {
  background: var(--gold-bg);
  color: var(--dark);
}
.cal-legenda {
  display: flex;
  gap: 20px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--sand);
}
.cal-legenda-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--text-light);
}
.cal-legenda-kleur {
  width: 14px;
  height: 14px;
  border: 1px solid var(--sand);
  flex-shrink: 0;
}
.cal-legenda-kleur.vrij    { background: var(--white); }
.cal-legenda-kleur.geboekt { background: var(--cream2); }
.cal-legenda-kleur.selectie{ background: var(--gold); border-color: var(--gold); }

/* Foutmelding */
.cal-fout {
  display: none;
  margin-top: 14px;
  padding: 12px 16px;
  background: #fdf2f2;
  border-left: 3px solid #c0392b;
  font-size: 13px;
  color: #a93226;
  line-height: 1.6;
}

/* Rechterkant: info / formulier */
.booking-side {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.booking-info-msg {
  background: var(--cream2);
  border: 1px solid var(--sand);
  padding: 32px 28px;
  text-align: center;
}
.booking-info-msg .bi-icon {
  font-size: 32px;
  margin-bottom: 14px;
  display: block;
  opacity: 0.4;
}
.booking-info-msg p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}
.booking-form-panel {
  background: var(--cream);
  border: 1px solid var(--sand);
  padding: 32px 28px;
}
.booking-form-panel h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;

  color: var(--dark);
  margin-bottom: 6px;
}
.boeking-datum-tag {
  font-size: 13px;
  color: var(--gold);
  font-weight: 700;
  background: var(--gold-bg);
  border-left: 3px solid var(--gold);
  padding: 10px 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}
.boeking-wis {
  display: inline-block;
  font-size: 11px;
  color: var(--text-light);
  cursor: pointer;
  text-decoration: underline;
  margin-left: 8px;
  font-weight: 400;
}
.boeking-wis:hover { color: var(--dark); }
.boeking-prijs-tag {
  font-size: 15px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--dark);
  background: var(--gold-bg);
  border-left: 3px solid var(--gold);
  padding: 10px 14px;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

/* Responsive kalender */
@media (max-width: 900px) {
  .booking-layout { grid-template-columns: 1fr; gap: 28px; }
  .booking-side { position: static; }
}
@media (max-width: 480px) {
  .booking-cal-wrap { padding: 16px 12px; }
  .cal-dag { font-size: 12px; }
}

/* ── Fade-in ──────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .nz-intro-grid, .two-col, .tarieven-grid,
  .omgeving-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .two-col.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .klimaat-graphs { grid-template-columns: 1fr; }
  .fotos-gallery { columns: 2; }
  .video-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .tarieven-img { min-height: 300px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .photo-grid-3 { grid-template-columns: 1fr 1fr; }
  .photo-grid-3 img { height: 180px; }
  .fotos-gallery { columns: 1; }
  .video-grid { grid-template-columns: 1fr; }
  .fotos-cat-nav a { padding: 10px 12px; font-size: 10px; }
  section { padding: 56px 0; }
  .contact-form-box { padding: 24px; }
  .reserveer-card { padding: 28px 20px; }
}
