/* =================================================================
   Casa el Blanco — warm white + Mediterranean blue, sans-only
   Closer to the original casaelblanco.nl: clean, photo-forward,
   minimal ornamentation. Typography: Inter + DM Mono.
   ================================================================= */

:root {
  --bg:        #fbf7ee;
  --ink:       #1b4f8c;
  --ink-deep:  #103466;
  --soft:      #6b7c95;
  --line:      rgba(27, 79, 140, 0.18);
  --inset:     rgba(27, 79, 140, 0.05);
  --accent:    #e8b43a;
  --accent-2:  #b85f3a;

  --container: 1180px;
  --gutter: 32px;

  --font-display: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-mono:    'DM Mono', ui-monospace, Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
::selection { background: var(--ink); color: var(--bg); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}
p { margin: 0 0 1em; }

/* ---------- Shared headings ---------- */
.label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--soft);
}
.section-head { margin-bottom: 56px; max-width: 720px; }
.section-head .label { display: block; margin-bottom: 14px; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 0.4em;
  color: var(--ink-deep);
  text-wrap: balance;
}
.section-head h2 em { font-style: normal; color: var(--ink); font-weight: 500; }
.section-head .head-note {
  max-width: 60ch;
  color: var(--soft);
  font-size: 1.02rem;
  margin: 0;
}

/* ============================================================
   HEADER — logo left, content nav center, booking pills right
   ============================================================ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 12px 32px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(251, 247, 238, 0.94) 0%, rgba(251, 247, 238, 0.82) 70%, rgba(251, 247, 238, 0) 100%);
  backdrop-filter: blur(10px) saturate(1.2);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
}
.topbar > * { pointer-events: auto; }
.topbar .brand {
  display: inline-flex;
  align-items: center;
}
.topbar .brand img {
  height: 40px;
  width: auto;
  display: block;
}
.topbar-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.topbar-nav a {
  color: var(--soft);
  padding: 6px 0;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.topbar-nav a:hover { color: var(--ink); }
.topbar-nav a.active { color: var(--ink); }
.topbar-nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
}
.topbar-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.pill-outline {
  color: var(--ink);
  border: 1px solid var(--ink);
  background: transparent;
}
.pill-outline:hover {
  background: var(--ink);
  color: var(--bg);
}
.pill-fill {
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
}
.pill-fill:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
}
.pill[aria-current="page"] {
  background: var(--ink-deep);
  color: var(--accent);
  border-color: var(--ink-deep);
}
.pill[aria-current="page"]:hover {
  background: var(--ink-deep);
  color: var(--accent);
  border-color: var(--ink-deep);
  cursor: default;
}

/* ============================================================
   HERO — atmospheric (full-bleed photo, overlay text)
   ============================================================ */
.hero.hero-atmos {
  position: relative;
  min-height: min(88vh, 820px);
  padding: 0;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-atmos .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 45%;
  z-index: 0;
  filter: saturate(0.95) contrast(1.02);
}
.hero-atmos .hero-mask {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(16, 52, 102, 0.18) 0%, rgba(16, 52, 102, 0) 28%, rgba(16, 52, 102, 0.55) 78%, rgba(16, 52, 102, 0.72) 100%);
  pointer-events: none;
}
.hero-atmos .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 140px;
  padding-bottom: 64px;
  color: #fff;
}
.hero-atmos .hero-eyebrow {
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.95);
}
.hero-atmos h1 {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 26px;
  text-wrap: balance;
  text-shadow: 0 1px 22px rgba(16, 52, 102, 0.35);
}
.hero-atmos h1 em {
  font-style: normal;
  font-weight: 500;
  color: #fff;
  background: none;
  padding: 0;
}
.hero-atmos .hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.94);
  max-width: 56ch;
  margin: 0 0 36px;
  text-shadow: 0 1px 16px rgba(16, 52, 102, 0.35);
}
.hero-atmos .hero-sub mark {
  background: var(--accent);
  color: var(--ink);
  padding: 3px 10px 4px;
  font-weight: 500;
  border-radius: 2px;
  text-shadow: none;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hero-atmos .cta-primary {
  background: #fff;
  color: var(--ink);
}
.hero-atmos .cta-primary:hover {
  background: var(--accent);
  color: var(--ink);
}
.hero-atmos .cta-secondary {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.7);
}
.hero-atmos .cta-secondary:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ============================================================
   FACTS BAR — quick-scan key numbers immediately below hero
   ============================================================ */
.facts-bar {
  padding: 30px 0;
  background: var(--inset);
  border-bottom: 1px solid var(--line);
}
.facts-bar ul {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 36px;
}
.facts-bar li {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--soft);
  display: flex;
  align-items: baseline;
  gap: 0;
  white-space: nowrap;
}
.facts-bar strong {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-transform: none;
  margin-right: 10px;
}
@media (max-width: 1080px) {
  .facts-bar ul { grid-template-columns: repeat(2, 1fr); gap: 16px 28px; }
}
@media (max-width: 480px) {
  .facts-bar ul { grid-template-columns: 1fr; gap: 12px; }
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--soft);
  display: inline-block;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 0; }
.cta-primary {
  display: inline-flex; align-items: baseline; gap: 14px;
  background: var(--ink); color: var(--bg);
  padding: 16px 26px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: gap 0.3s ease, background 0.25s ease;
}
.cta-primary:hover { gap: 20px; background: var(--accent-2); color: #fff; }
.cta-secondary {
  display: inline-flex; align-items: baseline; gap: 10px;
  padding: 16px 4px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  transition: color 0.25s ease, border-color 0.25s ease, gap 0.25s ease;
}
.cta-secondary:hover { color: var(--accent-2); border-color: var(--accent-2); gap: 14px; }

/* Section spacing — quiet, no decorative dividers */
section + section { border-top: 0; }

/* ============================================================
   VIDEO FEATURE — 16:9 Vimeo embed, full-width within container
   ============================================================ */
.video-feature { padding: 70px 0 30px; }
.video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 4px;
  overflow: hidden;
  background: var(--ink-deep);
  box-shadow: 0 30px 70px -30px rgba(16, 52, 102, 0.35);
}
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 720px) {
  .video-feature { padding: 50px 0 20px; }
}

/* ============================================================
   WELKOM — intro copy + specs side-by-side
   ============================================================ */
.welkom { padding: 100px 0; }
.welkom-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 80px;
  align-items: start;
}
.welkom-copy .label { display: block; margin-bottom: 18px; }
.welkom-copy h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
  color: var(--ink-deep);
  text-wrap: balance;
}
.welkom-copy h2 em { font-style: normal; font-weight: 500; color: var(--ink); }
.welkom-copy p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  max-width: 56ch;
}
.welkom-copy p em { font-style: normal; font-weight: 600; color: var(--ink-deep); }

.welkom-specs {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px;
  position: sticky;
  top: 96px;
}
.welkom-specs h3 {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--soft);
  font-weight: 500;
  margin: 0 0 18px;
}
.welkom-specs dl {
  margin: 0 0 22px;
  display: grid;
  gap: 0;
}
.welkom-specs dl > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.93rem;
}
.welkom-specs dl > div:last-child { border-bottom: 0; }
.welkom-specs dt {
  color: var(--soft);
  font-weight: 400;
}
.welkom-specs dd {
  color: var(--ink);
  font-weight: 500;
  margin: 0;
  text-align: right;
}
.welkom-specs .specs-extra {
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.6;
}
.welkom-specs .specs-extra .label {
  display: block;
  margin-bottom: 8px;
}

@media (max-width: 980px) {
  .welkom-grid { grid-template-columns: 1fr; gap: 48px; }
  .welkom-specs { position: static; }
}
@media (max-width: 720px) {
  .welkom { padding: 70px 0; }
  .welkom-specs { padding: 24px; }
}

/* ============================================================
   FEATURES — alternating image + copy blocks
   ============================================================ */
.features { padding: 100px 0; background: var(--inset); }
.features-list {
  display: flex;
  flex-direction: column;
  gap: 96px;
}
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature.reverse > figure { order: 2; }
.feature figure {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
}
.feature figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.feature-copy h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: var(--ink-deep);
  text-wrap: balance;
}
.feature-copy h3 em { font-style: normal; font-weight: 500; color: var(--ink); }
.feature-copy p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 22px;
  max-width: 48ch;
}
.feature-copy .cta-secondary {
  border-bottom-color: var(--ink);
}

@media (max-width: 980px) {
  .features { padding: 70px 0; }
  .features-list { gap: 60px; }
  .feature { grid-template-columns: 1fr; gap: 24px; }
  .feature.reverse > figure { order: 0; }
}

/* ============================================================
   PRICES — real 2026 rates + bijkomende kosten aside
   ============================================================ */
.prices { padding: 110px 0; }
.rates-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 24px;
}
.rate-table {
  width: 100%;
  border-collapse: collapse;
}
.rate-table th, .rate-table td {
  text-align: left;
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
}
.rate-table th {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--soft);
  font-weight: 500;
  padding-bottom: 12px;
}
.rate-table td {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  vertical-align: baseline;
}
.rate-table td.price {
  text-align: right;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.rate-table tr.peak { background: rgba(184, 95, 58, 0.08); }
.rate-table tr.peak td.price { color: var(--accent-2); }
.rate-table tbody tr { transition: background 0.2s ease; }
.rate-table tbody tr:hover { background: var(--inset); }

.rates-aside {
  background: var(--inset);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 28px;
  position: sticky;
  top: 90px;
}
.rates-aside h3 {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--soft);
  margin: 0 0 14px;
  font-weight: 500;
}
.rates-aside h3:not(:first-child) { margin-top: 26px; }
.rates-aside ul {
  list-style: none;
  margin: 0; padding: 0;
}
.rates-aside li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.93rem;
}
.rates-aside li:last-child { border-bottom: 0; }
.rates-aside li span { color: var(--soft); }
.rates-aside li strong {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  color: var(--ink);
  white-space: nowrap;
}
.rates-aside .aside-note {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--soft);
  line-height: 1.55;
}
.rates-aside .aside-link {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}
.rates-aside .aside-link:hover { border-color: var(--accent-2); }

/* ============================================================
   QUICK CHECK — light warm bg, form is the focal point
   ============================================================ */
.quick { padding: 110px 0; }
.quick-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: start;
}
.quick-letter .quick-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 18px;
  display: block;
}
.quick-letter h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  color: var(--ink);
}
.quick-letter h2 em { font-style: normal; font-weight: 500; color: var(--ink); }
.quick-letter p { font-size: 1.05rem; max-width: 44ch; color: var(--ink); opacity: 0.85; }

.quick-signoff {
  margin: 32px 0 0;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.quick-contact {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink);
}
.quick-contact a { opacity: 0.85; transition: opacity 0.2s ease, color 0.2s ease; }
.quick-contact a:hover { color: var(--accent-2); opacity: 1; }

.quick-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 34px;
  background: var(--inset);
  border: 1px solid var(--line);
  border-radius: 3px;
}
.quick-form .full { grid-column: 1 / -1; }
.quick-form label { display: flex; flex-direction: column; gap: 6px; }
.quick-form label span {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--soft);
}
.quick-form input,
.quick-form select,
.quick-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 9px 0;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease;
  border-radius: 0;
}
.quick-form input:focus, .quick-form select:focus, .quick-form textarea:focus {
  border-color: var(--accent-2);
}
.quick-form textarea { resize: vertical; min-height: 60px; }
.quick-form button {
  grid-column: 1 / -1;
  background: var(--ink);
  color: var(--bg);
  border: 0;
  padding: 17px 24px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: baseline; justify-content: center;
  gap: 14px;
  border-radius: 2px;
  transition: gap 0.3s ease, background 0.25s ease;
}
.quick-form button:hover { gap: 20px; background: var(--accent-2); color: #fff; }
.quick-form .form-note {
  grid-column: 1 / -1;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--soft);
  margin: 0;
  text-align: center;
}
.quick-form .form-note a {
  color: var(--accent-2);
  border-bottom: 1px solid transparent;
}
.quick-form .form-note a:hover { border-color: var(--accent-2); }

/* ============================================================
   RESERVEREN — micazu link + email pitch
   ============================================================ */
.reserveren { padding: 110px 0; text-align: center; }
.reserveren .section-head { margin-left: auto; margin-right: auto; text-align: center; }
.reserveren .section-head .head-note { margin-left: auto; margin-right: auto; }
.reserveren-actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.reserveren-contact {
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--soft);
}
.reserveren-contact a {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  transition: color 0.25s ease, border-color 0.25s ease;
}
.reserveren-contact a:hover { color: var(--accent-2); border-color: var(--accent-2); }
@media (max-width: 720px) {
  .reserveren { padding: 80px 0; }
  .reserveren-actions { gap: 16px; }
}

/* ============================================================
   INDEX LIST
   ============================================================ */
.indexlist { padding: 80px 0; }
.indexlist h3 {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--soft);
  margin: 0 0 20px;
  font-weight: 500;
}
.indexlist ol {
  list-style: none; margin: 0; padding: 0;
  border-top: 1px solid var(--line);
}
.indexlist ol li { border-bottom: 1px solid var(--line); }
.indexlist ol a {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
  padding: 18px 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.2;
  color: var(--ink);
  transition: padding-left 0.3s cubic-bezier(0.2, 0.7, 0.2, 1), color 0.25s ease;
}
.indexlist ol a:hover { padding-left: 14px; color: var(--accent-2); }
.indexlist ol a .n { display: none; }
.indexlist ol a em { font-style: normal; font-weight: 500; }
.indexlist ol a .meta {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft);
}
.indexlist ol a .arr {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--soft);
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.indexlist ol a:hover .arr { transform: translateX(8px); color: var(--accent-2); }

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  padding: 34px 0 44px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soft);
}
.foot a:hover { color: var(--accent-2); }
.foot-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

/* ============================================================
   STICKY CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 18px;
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), background 0.25s ease, gap 0.25s ease;
  box-shadow: 0 18px 36px -18px rgba(16, 52, 102, 0.45);
}
.sticky-cta.show { opacity: 1; transform: none; pointer-events: auto; }
.sticky-cta:hover { background: var(--accent-2); gap: 16px; }
.sticky-cta .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.sticky-cta:hover .dot { background: #fff; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1180px) {
  .topbar-nav { gap: 22px; font-size: 0.66rem; letter-spacing: 0.12em; }
}
@media (max-width: 1080px) {
  .quick-grid, .rates-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .rates-aside { position: static; }
  .topbar-cta .pill-outline { display: none; }
}
@media (max-width: 860px) {
  .topbar { grid-template-columns: auto auto; gap: 16px; }
  .topbar-nav { display: none; }
}
@media (max-width: 720px) {
  :root { --gutter: 22px; }
  .topbar { padding: 10px 18px; gap: 12px; }
  .topbar .brand img { height: 32px; }
  .pill { padding: 8px 14px; font-size: 0.62rem; letter-spacing: 0.1em; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .cta-primary, .hero-cta .cta-secondary { text-align: center; justify-content: center; }
  .hero-atmos .hero-content { padding-top: 110px; padding-bottom: 44px; }
  .quick-form { grid-template-columns: 1fr; padding: 24px; }
  .rate-table td, .rate-table th { padding: 11px 8px; font-size: 0.92rem; }
  .rate-table td.price { font-size: 1.05rem; }
  .rates-aside { padding: 22px; }
  .indexlist ol a { grid-template-columns: 1fr; gap: 6px; padding: 16px 0; }
  .indexlist ol a .meta, .indexlist ol a .arr { font-size: 0.62rem; }
  .sticky-cta { bottom: 14px; right: 14px; padding: 10px 14px; font-size: 0.68rem; }
}

@media (prefers-reduced-motion: reduce) {
  .sticky-cta { transition: none !important; }
}

/* =================================================================
   SUBPAGES — shared chrome (sub-nav, sub-hero) + per-page components
   ================================================================= */

.sub-hero {
  padding: 130px 0 60px;
  border-bottom: 1px solid var(--line);
}
.sub-hero .label { display: block; margin-bottom: 14px; }
.sub-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
  text-wrap: balance;
  color: var(--ink);
  max-width: 18ch;
}
.sub-hero h1 em { font-style: normal; font-weight: 500; color: var(--ink); }
.sub-hero .lede {
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.9;
  max-width: 58ch;
  margin: 0;
}

/* ---------- FOTOGALERIJ — grouped 3-col grids with section heads ---------- */
.gallery { padding: 60px 0 110px; }
.gallery-group {
  margin-bottom: 70px;
}
.gallery-group:last-child {
  margin-bottom: 0;
}
.gallery-group-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.gallery-group-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.7rem;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
.gallery-group-head h2 em {
  font-style: normal;
  font-weight: 500;
  color: var(--ink);
}
.gallery-group-head .count {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--soft);
  white-space: nowrap;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 3px;
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--inset);
}
.gallery-grid figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.95);
  transition: transform 1.4s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.4s ease;
}
.gallery-grid figure:hover img { transform: scale(1.04); filter: saturate(1.05); }
.gallery-grid figure.wide { grid-column: 1 / -1; aspect-ratio: 16 / 5; }
.gallery-grid figure.half { grid-column: span 2; aspect-ratio: 8 / 5; }
.gallery-grid figure.tall { grid-row: span 2; aspect-ratio: 4 / 7; }
.gallery-grid figcaption {
  position: absolute;
  bottom: 10px; left: 12px; right: 12px;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.gallery-grid figure:hover figcaption { opacity: 1; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(16, 52, 102, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 64px;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox .lb-stage {
  margin: 0;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.lightbox .lb-stage img {
  max-width: 100%;
  max-height: calc(100vh - 160px);
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
.lightbox .lb-stage figcaption {
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
}
.lightbox .lb-stage figcaption:empty { display: none; }
.lightbox button {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
  line-height: 1;
  font-family: var(--font-mono);
  padding: 0;
}
.lightbox button:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}
.lightbox .lb-close { top: 22px; right: 22px; font-size: 1.6rem; }
.lightbox .lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 22px; top: 50%; transform: translateY(-50%); }
@media (max-width: 720px) {
  .lightbox { padding: 24px; }
  .lightbox button { width: 38px; height: 38px; font-size: 1.1rem; }
  .lightbox .lb-prev, .lightbox .lb-next { display: none; }
}

/* ---------- VOORZIENINGEN — amenity groups ---------- */
.amenities { padding: 90px 0 110px; }
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px 80px;
}
.amenity-block h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.7rem;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
  color: var(--ink);
}
.amenity-block h2 em { font-style: normal; font-weight: 500; color: var(--ink); }
.amenity-block ul {
  list-style: none;
  margin: 0; padding: 0;
  border-top: 1px solid var(--line);
}
.amenity-block ul li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
}
.amenity-block ul li::before {
  content: '·';
  color: var(--accent-2);
  font-size: 1.4rem;
  line-height: 0;
}
.amenity-block ul li strong {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  color: var(--ink);
  margin-right: 6px;
}

/* ---------- OMGEVING ---------- */
.omgeving { padding: 80px 0 110px; }
.omgeving-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  margin-bottom: 80px;
  align-items: center;
}
.omgeving-intro figure { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 3px; }
.omgeving-intro figure img { width: 100%; height: 100%; object-fit: cover; }
.omgeving-intro .label { display: block; margin-bottom: 14px; }
.omgeving-intro h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 22px;
  color: var(--ink);
}
.omgeving-intro h2 em { font-style: normal; font-weight: 500; color: var(--ink); }
.omgeving-intro p { font-size: 1.05rem; color: var(--ink); opacity: 0.9; }

.omgeving-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  border-top: 1px solid var(--line);
  padding-top: 60px;
}
.omgeving-cols h3 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--soft);
  margin: 0 0 22px;
  font-weight: 500;
}
.omgeving-cols ol, .omgeving-cols ul {
  list-style: none;
  margin: 0; padding: 0;
}
.omgeving-cols ol li, .omgeving-cols ul li {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.omgeving-cols ol li .n {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  color: var(--soft);
}
.omgeving-cols li .name {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--ink);
}
.omgeving-cols li .meta {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--soft);
}
.omgeving-cols .place-list { list-style: none; margin: 0; padding: 0; }
.omgeving-cols .place-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  grid-template-areas: "n name" ". desc";
  column-gap: 14px;
  row-gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.omgeving-cols .place-list li .n { grid-area: n; }
.omgeving-cols .place-list li .name { grid-area: name; }
.omgeving-cols .place-list li .desc {
  grid-area: desc;
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--soft);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.55;
  max-width: 52ch;
}

/* ---------- BESCHIKBAARHEID — month grid ---------- */
.calendar-wrap { padding: 80px 0 110px; }
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}
.cal-month {
  border-top: 1px solid var(--ink);
  padding-top: 14px;
}
.cal-month .name {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: var(--ink);
}
.cal-month .year {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--soft);
  text-transform: uppercase;
  margin-left: 8px;
}
.cal-weeks {
  list-style: none;
  margin: 0; padding: 0;
  font-family: var(--font-mono);
  font-size: 0.76rem;
}
.cal-weeks li {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  color: var(--soft);
  border-bottom: 1px dashed var(--line);
}
.cal-weeks li:last-child { border-bottom: 0; }
.cal-weeks li .tag { opacity: 0.8; }
.cal-weeks li.free  { color: var(--ink); }
.cal-weeks li.free .tag {
  color: var(--accent-2);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
}
.cal-weeks li.option { color: var(--accent); font-style: italic; }
.cal-weeks li.option .tag { font-style: normal; opacity: 0.85; }

.cal-legend {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--soft);
}
.cal-legend span { display: inline-flex; align-items: center; gap: 10px; }
.cal-legend .swatch { width: 22px; height: 2px; display: inline-block; }
.cal-legend .free .swatch   { background: var(--ink); }
.cal-legend .booked .swatch { background: var(--accent-2); }
.cal-legend .option .swatch { background: repeating-linear-gradient(90deg, var(--accent) 0 4px, transparent 4px 8px); height: 2px; }

/* ---------- VOORWAARDEN — terms list ---------- */
.terms { padding: 80px 0 110px; }
.terms-grid {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0 60px;
  border-top: 1px solid var(--line);
}
.term-num {
  padding: 30px 0;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--accent);
  border-bottom: 1px solid var(--line);
  line-height: 1;
}
.term-body {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.term-body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.45rem;
  margin: 0 0 12px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.term-body p, .term-body li {
  color: var(--ink);
  opacity: 0.92;
  font-size: 1rem;
}
.term-body p:last-child { margin-bottom: 0; }
.term-body ul {
  list-style: none;
  margin: 8px 0 0; padding: 0;
}
.term-body ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
}
.term-body ul li::before {
  content: '·';
  position: absolute;
  left: 4px; top: -6px;
  color: var(--accent-2);
  font-size: 1.6rem;
}
.term-body strong { font-weight: 600; }

/* ---------- CONTACT ---------- */
.contact-page { padding: 70px 0 110px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
  align-items: start;
}
.contact-side h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  color: var(--ink);
}
.contact-side h2 em { font-style: normal; font-weight: 500; color: var(--ink); }
.contact-side p { font-size: 1.05rem; color: var(--ink); opacity: 0.9; max-width: 44ch; }
.contact-card {
  margin: 30px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.contact-card > div { display: flex; flex-direction: column; gap: 4px; }
.contact-card dt {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--soft);
  margin: 0;
}
.contact-card dd {
  margin: 0;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--ink);
}
.contact-card dd a { border-bottom: 1px solid var(--line); transition: border-color 0.2s ease, color 0.2s ease; }
.contact-card dd a:hover { color: var(--accent-2); border-color: var(--accent-2); }

/* ---------- Subpage responsive ---------- */
@media (max-width: 1080px) {
  .amenity-grid, .omgeving-intro, .omgeving-cols, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .calendar-grid { grid-template-columns: repeat(2, 1fr); }
  .terms-grid { grid-template-columns: 70px 1fr; gap: 0 30px; }
}
@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-grid figure.wide { grid-column: 1 / -1; aspect-ratio: 16 / 7; }
  .gallery-grid figure.half { grid-column: 1 / -1; aspect-ratio: 4 / 3; }
  .gallery-grid figure.tall { grid-row: span 2; aspect-ratio: 4 / 7; }
  .calendar-grid { grid-template-columns: 1fr; }
  .terms-grid { grid-template-columns: 1fr; gap: 0; }
  .term-num { padding: 22px 0 0; border-bottom: 0; font-size: 1.2rem; }
  .term-body { padding-top: 8px; padding-bottom: 26px; }
  .sub-hero { padding: 90px 0 44px; }
  .omgeving-cols ol li, .omgeving-cols ul li { grid-template-columns: 24px 1fr; }
  .omgeving-cols li .meta { grid-column: 1 / -1; padding-left: 36px; }
}
