/* ───── Top info bar ───── */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 52;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 0;
  border-bottom: 1px solid rgba(244,241,232,0.08);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.topbar-marquee {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;
  overflow: hidden;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 24px, black calc(100% - 24px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, black 24px, black calc(100% - 24px), transparent 100%);
}
.topbar-marquee span:not(.topbar-sep) { opacity: 0.85; }
.topbar-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--rust);
  flex-shrink: 0;
}
.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--paper);
  font-weight: 500;
  transition: color 0.2s;
  flex-shrink: 0;
}
.topbar-phone:hover { color: var(--rust); }
.topbar-phone svg { width: 13px; height: 13px; }

@media (max-width: 720px) {
  .topbar { font-size: 10.5px; padding: 7px 0; }
  .topbar-marquee { display: none; }
  .topbar-inner { justify-content: center; }
}

/* ───── User direct-edit overrides (topbar fine-tuning) ───── */
.topbar {
  background-color: rgb(9, 12, 2);
  font-family: var(--mono);
  height: 42px;
  padding: 0;
  display: flex;
  align-items: center;
}
.topbar-inner {
  align-items: flex-end;
  justify-content: space-evenly;
  padding: 0 56px;
  color: #F4F1E8;
  width: 100%;
}
.topbar-marquee {
  text-align: left;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.topbar-marquee > span:not(.topbar-sep) {
  font-size: 10px;
  color: rgb(251, 248, 239);
}
.topbar-phone { opacity: 0.5; }
.topbar-phone:hover { opacity: 1; }
.nav-inner { color: rgb(9, 12, 2); }
.footer { background-color: rgb(221, 226, 198); }

/* Push nav down to make room for topbar; hero stays edge-to-edge (topbar overlays its dark gradient) */
.nav { top: 40px !important; }
@media (max-width: 720px) {
  .nav { top: 32px !important; }
}

/* Hide language switcher (kept in JS for future re-enable) */
.lang-switch { display: none !important; }

:root {
  --sage-light:  #E6EED6;
  --sage-cream:  #DDE2C6;
  --sage:        #BBC5AA;
  --sage-deep:   #8A9577;
  --sage-ink:    #586745;  /* WCAG-AA-veilig voor kleine tekst op paper/sage-light (5.1-5.4:1) */
  --rust:        #A72608;
  --rust-deep:   #7E1C04;
  --ink:         #090C02;
  --ink-soft:    #1A1F0F;
  --paper:       #F4F1E8;
  --paper-warm:  #ECE7D6;

  --bg:          var(--paper);
  --bg-warm:     var(--paper-warm);
  --fg:          var(--ink);
  --fg-soft:     rgba(9,12,2,0.78);
  --fg-muted:    rgba(9,12,2,0.55);
  --line:        rgba(9,12,2,0.1);

  --serif: "Instrument Serif", "Times New Roman", serif;
  --sans:  "Geist", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:  "Geist Mono", ui-monospace, monospace;

  --container: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
}

[data-theme="day"] {
  --paper:       #FBF8EF;
  --paper-warm:  #F4F0E1;
  --sage-light:  #EEF3DE;
  --sage-cream:  #E5EAD0;
}
[data-theme="night"] {
  --paper:       #14180D;
  --paper-warm:  #1A1F12;
  --sage-light:  #1F2618;
  --sage-cream:  #232B1B;
  --sage:        #3C4A2E;
  --sage-ink:    #B8C2A4;  /* Donkere modus: lichter sage voor kleine tekst */
  --ink:         #F4F1E8;
  --ink-soft:    #DDD9CC;
  --fg-soft:     rgba(244,241,232,0.78);
  --fg-muted:    rgba(244,241,232,0.55);
  --line:        rgba(244,241,232,0.12);
  color-scheme: dark;
}
[data-theme="night"] body { background: var(--paper); color: var(--ink); }
[data-theme="night"] .nav.scrolled,
[data-theme="night"] .nav.solid { background: rgba(20,24,13,0.88); border-bottom-color: rgba(244,241,232,0.08); }
[data-theme="night"] .booking-bar { background: var(--paper-warm); box-shadow: 0 30px 80px -30px rgba(0,0,0,0.7), 0 2px 6px rgba(0,0,0,0.2); }
[data-theme="night"] .bf:hover { background: var(--sage-light); }
[data-theme="night"] .bf-value { color: var(--ink); }
[data-theme="night"] .bf-label { color: var(--fg-muted); }
[data-theme="night"] .bf + .bf { border-left-color: var(--line); }
[data-theme="night"] .story,
[data-theme="night"] .gallery,
[data-theme="night"] .hood,
[data-theme="night"] .room-overview,
[data-theme="night"] .features,
[data-theme="night"] .other-rooms { background: var(--paper); color: var(--ink); }
[data-theme="night"] .apartments { background: var(--paper-warm); }
[data-theme="night"] .faq { background: var(--paper-warm); }
[data-theme="night"] .footer { background: var(--paper-warm); color: var(--ink); }
[data-theme="night"] .apt-card,
[data-theme="night"] .feature,
[data-theme="night"] .route-card { background: var(--sage-cream); color: var(--ink); }
[data-theme="night"] .apt-tag,
[data-theme="night"] .route-card .badge { background: var(--paper-warm); color: var(--ink); }
[data-theme="night"] .other-room,
[data-theme="night"] .room-spec-card { background: var(--sage-cream); }
[data-theme="night"] .body-l,
[data-theme="night"] .story-text p,
[data-theme="night"] .room-overview p,
[data-theme="night"] .feature p,
[data-theme="night"] .apt-desc,
[data-theme="night"] .hood-item-desc,
[data-theme="night"] .footer-brand p,
[data-theme="night"] .footer-col a { color: var(--fg-soft); }
[data-theme="night"] .apt-specs li,
[data-theme="night"] .apt-sub,
[data-theme="night"] .room-spec-list .lbl,
[data-theme="night"] .hood-item-num,
[data-theme="night"] .story-meta dt,
[data-theme="night"] .room-spec-card h3,
[data-theme="night"] .footer-col h4 { color: var(--fg-muted); }
[data-theme="night"] .faq-item,
[data-theme="night"] .apt-specs,
[data-theme="night"] .room-spec-list li,
[data-theme="night"] .hood-item,
[data-theme="night"] .footer-grid,
[data-theme="night"] .footer-bottom,
[data-theme="night"] .story-meta { border-color: var(--line); }
[data-theme="night"] .faq-toggle { background: var(--ink); color: var(--paper); }
[data-theme="night"] .btn-ghost { color: var(--ink); border-color: rgba(244,241,232,0.25); }
[data-theme="night"] .btn-paper { background: var(--ink); color: var(--paper); }
[data-theme="night"] .nav-sub-inner { background: var(--paper-warm); }
[data-theme="night"] .nav-sub a { color: var(--ink); }
[data-theme="night"] .nav-sub a:hover { background: var(--sage-light); }
[data-theme="night"] .logo img { filter: invert(1); }
[data-theme="night"] .contact-form input,
[data-theme="night"] .contact-form select,
[data-theme="night"] .contact-form textarea { background: var(--paper-warm); color: var(--ink); border-color: var(--line); }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* Defensieve guard: nooit horizontaal scrollen op de site, ook niet als
   een sectie per ongeluk wat te breed wordt door een lange titel of img. */
html, body { overflow-x: hidden; max-width: 100%; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

/* ─────── TYPE ─────── */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.7;
}
.display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 0.92;
}
.display em { font-style: italic; color: var(--rust); }
.body-l { font-size: 18px; line-height: 1.55; color: rgba(9,12,2,0.78); }
.body-s { font-size: 14px; line-height: 1.55; color: rgba(9,12,2,0.7); }

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

/* ─────── NAV ─────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.3s ease, border-color 0.4s ease;
  padding: 18px 0;
  border-bottom: 1px solid transparent;
}
.nav.scrolled,
.nav.solid {
  background: rgba(244, 241, 232, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom-color: rgba(9, 12, 2, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.logo img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  transition: filter 0.4s ease;
}
.logo-text {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--paper);
  transition: color 0.4s ease;
}
.nav.scrolled .logo-text,
.nav.solid .logo-text { color: var(--ink); }

.nav-links {
  display: flex; gap: 28px;
  list-style: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--paper);
  transition: color 0.4s ease;
  align-items: center;
}
.nav.scrolled .nav-links,
.nav.solid .nav-links { color: var(--ink); }

.nav-links > li { position: relative; }
.nav-links a, .nav-links .nav-link-trigger {
  position: relative;
  padding: 6px 2px;
  opacity: 0.88;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
  cursor: pointer;
}
.nav-links a.active { opacity: 1; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 1px;
  background: var(--rust);
}
.nav-links a:hover, .nav-links .nav-link-trigger:hover { opacity: 1; }

.has-sub > .nav-link-trigger::after {
  content: '▾';
  font-size: 9px;
  opacity: 0.7;
}
.nav-sub {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  margin-top: 14px; /* visual gap */
  background: var(--paper);
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 25px 60px -25px rgba(9, 12, 2, 0.35), 0 2px 6px rgba(9,12,2,0.05);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
  list-style: none;
  z-index: 60;
}
.nav-sub::before {
  /* invisible hover bridge across the visual gap so the menu doesn't close mid-mouse-travel */
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}
.has-sub:hover .nav-sub,
.has-sub:focus-within .nav-sub,
.has-sub.open .nav-sub {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-sub a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 14px;
  opacity: 0.85;
  transition: background 0.2s, opacity 0.2s, color 0.2s;
}
.nav-sub a:hover {
  background: var(--sage-light);
  opacity: 1;
}
.nav-sub a .nav-sub-meta {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(9,12,2,0.5);
  margin-top: 2px;
}

/* Nav tools (theme + lang switchers) */
.nav-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}
.theme-switch,
.lang-switch {
  display: inline-flex;
  align-items: center;
  background: rgba(244,241,232,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(244,241,232,0.18);
  border-radius: 999px;
  padding: 3px;
  transition: background 0.4s, border-color 0.4s;
}
.nav.scrolled .theme-switch,
.nav.scrolled .lang-switch,
.nav.solid .theme-switch,
.nav.solid .lang-switch {
  background: rgba(9,12,2,0.06);
  border-color: rgba(9,12,2,0.12);
}
[data-theme="night"] .nav.scrolled .theme-switch,
[data-theme="night"] .nav.scrolled .lang-switch,
[data-theme="night"] .nav.solid .theme-switch,
[data-theme="night"] .nav.solid .lang-switch {
  background: rgba(244,241,232,0.08);
  border-color: rgba(244,241,232,0.15);
}
.theme-switch button,
.lang-switch button {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--paper);
  opacity: 0.55;
  transition: opacity 0.2s, background 0.2s, color 0.2s;
  padding: 0;
}
.nav.scrolled .theme-switch button,
.nav.scrolled .lang-switch button,
.nav.solid .theme-switch button,
.nav.solid .lang-switch button { color: var(--ink); }
[data-theme="night"] .nav.scrolled .theme-switch button,
[data-theme="night"] .nav.scrolled .lang-switch button { color: var(--ink); }
.theme-switch button:hover,
.lang-switch button:hover { opacity: 1; }
.theme-switch button.active,
.lang-switch button.active {
  background: var(--rust);
  color: var(--paper);
  opacity: 1;
}
.theme-switch button svg { width: 14px; height: 14px; display: block; }
.lang-switch button { width: 32px; }
.lang-switch button svg { width: 20px; height: 14px; display: block; border-radius: 2px; overflow: hidden; }

@media (max-width: 1080px) {
  .nav-tools { gap: 6px; }
  .theme-switch button,
  .lang-switch button { width: 26px; height: 26px; }
}
@media (max-width: 980px) {
  .nav-tools.in-desktop { display: none; }
  .nav-tools.in-mobile {
    display: flex;
    gap: 14px;
    padding: 18px 0 6px;
    border-top: 1px solid rgba(9,12,2,0.1);
    margin-top: 8px;
    justify-content: space-between;
  }
}
@media (min-width: 981px) {
  .nav-tools.in-mobile { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 0.2s, background 0.25s, color 0.25s, box-shadow 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--rust); color: var(--paper); }
.btn-primary:hover { background: var(--rust-deep); box-shadow: 0 10px 30px -10px rgba(167, 38, 8, 0.5); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: var(--ink-soft); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid rgba(9,12,2,0.15); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-ghost-light { background: transparent; color: var(--paper); border: 1px solid rgba(244,241,232,0.3); }
.btn-ghost-light:hover { border-color: var(--paper); background: rgba(244,241,232,0.08); }
.btn-paper { background: var(--paper); color: var(--ink); }
.btn-paper:hover { background: white; }
.btn-arrow::after {
  content: '→';
  display: inline-block;
  transition: transform 0.25s ease;
}
.btn-arrow:hover::after { transform: translateX(4px); }
.btn-sm { padding: 9px 16px; font-size: 12px; gap: 7px; }
.btn-sm.btn-arrow::after { font-size: 12px; }

.mobile-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 999px;
  align-items: center; justify-content: center;
  color: var(--paper);
  font-size: 20px;
}
.nav.scrolled .mobile-toggle,
.nav.solid .mobile-toggle { color: var(--ink); }

/* ─────── HERO ─────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 180px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg image-slot {
  width: 100%; height: 100%;
  --is-bg: var(--sage-deep);
  --is-border: transparent;
  --is-fg: rgba(244,241,232,0.85);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9,12,2,0.45) 0%, rgba(9,12,2,0.15) 30%, rgba(9,12,2,0.55) 80%, rgba(9,12,2,0.85) 100%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
/* Schaduw op alle tekst in de hero zodat het leesbaar blijft over een foto */
.hero-content,
.hero-scroll,
.breadcrumbs {
  text-shadow: 0 1px 2px rgba(9, 12, 2, 0.35), 0 2px 18px rgba(9, 12, 2, 0.45);
}
.hero-content .btn,
.hero-content .pill,
.hero-content .badge { text-shadow: none; }
.hero-eyebrow {
  color: var(--paper);
  opacity: 0.8;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before { content: ''; width: 24px; height: 1px; background: currentColor; }
.hero-title {
  font-size: clamp(56px, 9.5vw, 156px);
  margin-bottom: 30px;
  max-width: 13ch;
}
.hero-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}
.hero-tag { max-width: 380px; font-size: 17px; line-height: 1.5; color: rgba(244,241,232,0.85); }
.hero-meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,241,232,0.65);
  display: flex; gap: 28px; flex-wrap: wrap;
}
.hero-meta strong { color: var(--paper); font-weight: 500; }

.hero-scroll {
  position: absolute;
  bottom: 220px;
  right: var(--gutter);
  z-index: 2;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244,241,232,0.7);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: flex; align-items: center; gap: 14px;
}
.hero-scroll::after { content: ''; width: 1px; height: 60px; background: linear-gradient(transparent, currentColor); }

/* Compact hero variant (sub-pages) */
.hero-compact {
  min-height: 70vh;
  padding-bottom: 80px;
}
.hero-compact .hero-title {
  font-size: clamp(48px, 7.5vw, 120px);
  line-height: 0.95;
}

/* Breadcrumbs */
.breadcrumbs {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,241,232,0.7);
  display: flex; gap: 10px;
  margin-bottom: 24px;
}
.breadcrumbs a { color: rgba(244,241,232,0.7); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--paper); }
.breadcrumbs span { color: var(--paper); }

/* ─────── BOOKING BAR ─────── */
.booking-bar {
  position: relative;
  z-index: 3;
  margin: -130px auto 0;
  max-width: calc(var(--container) - 80px);
  width: calc(100% - 2 * var(--gutter));
  background: var(--paper);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 30px 80px -30px rgba(9, 12, 2, 0.45), 0 2px 6px rgba(9,12,2,0.04);
  display: grid;
  grid-template-columns: 1.3fr 1.3fr 1fr 1fr auto;
  gap: 6px;
  align-items: stretch;
}
.bf {
  padding: 14px 18px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s, transform 0.25s ease;
}
.bf:hover { background: var(--sage-light); }
.bf:active { transform: scale(0.985); }
.bf-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(9,12,2,0.55);
  margin-bottom: 4px;
}
.bf-value { font-family: var(--serif); font-size: 20px; color: var(--ink); letter-spacing: -0.01em; }
.bf-value .placeholder { color: rgba(9,12,2,0.4); }
.bf + .bf { border-left: 1px solid rgba(9,12,2,0.08); }
.bf-cta { display: flex; align-items: center; }
.bf-cta .btn { width: 100%; height: 100%; justify-content: center; padding: 16px 28px; font-size: 15px; }

/* Hero CTA wrapper — hergebruikt .booking-bar voor de drijvende positie + reveal,
   maar laat het inhoudelijke .form-cta blok zijn donkere achtergrond houden. */
.hero-cta-wrap.booking-bar {
  background: transparent;
  box-shadow: none;
  padding: 0;
  display: block;
  border-radius: 0;
}
.hero-cta-wrap .form-cta { margin-top: 0; }
/* Subtitel in een eigen middenkolom, vult de witruimte tussen titel en knop. */
.form-cta-inner > div { flex: 0 1 auto; }
.hero-cta-sub {
  flex: 1 1 220px;
  max-width: 36ch;
  margin-top: 0 !important;
  align-self: center;
  padding: 0 8px;
}
@media (max-width: 880px) {
  .hero-cta-sub { flex-basis: 100%; padding: 0; order: 3; }
  .form-cta-inner .btn { order: 2; }
}

/* ─────── SECTION ─────── */
.section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }
.section-sm { padding: clamp(60px, 8vw, 100px) 0; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}
.section-title { font-size: clamp(40px, 5.5vw, 88px); max-width: 14ch; }
.section-lead { max-width: 42ch; }

/* ─────── STORY ─────── */
.story { background: var(--paper); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
}
.story-text .eyebrow { margin-bottom: 24px; }
.story-text h2 {
  font-size: clamp(38px, 5vw, 76px);
  margin-bottom: 32px;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.015em;
}
.story-text h2 em { font-style: italic; color: var(--rust); }
.story-text p { font-size: 18px; line-height: 1.6; color: rgba(9,12,2,0.78); }
.story-text p + p { margin-top: 18px; }
.story-meta {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 32px;
  border-top: 1px solid rgba(9,12,2,0.12);
}
.story-meta dt {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(9,12,2,0.55);
  margin-bottom: 6px;
}
.story-meta dd { font-family: var(--serif); font-size: 22px; color: var(--ink); }

.story-images { display: grid; gap: 20px; }
.story-figure { margin: 0; }
.story-figure image-slot {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  --is-bg: var(--sage);
  --is-border: transparent;
  border-radius: 14px;
}
.story-figure figcaption {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-ink);
}
.si-3 {
  background: var(--ink);
  color: var(--paper);
  padding: 18px 22px;
  border-radius: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  width: max-content;
}

/* ─────── APARTMENTS GRID ─────── */
.apartments { background: var(--sage-cream); color: var(--ink); }
.apartment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.apartment-grid.four-up {
  grid-template-columns: repeat(2, 1fr);
}
.apt-card {
  background: var(--paper);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}
.apt-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(9,12,2,0.3);
}
.apt-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.apt-media image-slot {
  width: 100%; height: 100%;
  --is-bg: var(--sage);
  --is-border: transparent;
  transition: transform 0.8s cubic-bezier(0.2,0.7,0.2,1);
}
.apt-card:hover .apt-media image-slot { transform: scale(1.04); }
.apt-tag {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--paper);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 2;
}
.apt-price {
  position: absolute;
  bottom: 18px; right: 18px;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  z-index: 2;
}
.apt-price strong { font-family: var(--serif); font-size: 18px; font-weight: 400; letter-spacing: 0; }
.apt-body { padding: 36px 36px; flex: 1; display: flex; flex-direction: column; }
.apt-title {
  font-family: var(--serif);
  font-size: 52px;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  line-height: 1;
}
.apt-sub { font-size: 14px; color: rgba(9,12,2,0.65); margin-bottom: 22px; }
.apt-desc { font-size: 15px; line-height: 1.55; color: rgba(9,12,2,0.8); margin-bottom: 26px; }
.apt-specs {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(9,12,2,0.1);
  margin-bottom: 28px;
}
.apt-specs li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-size: 13.5px;
  color: rgba(9,12,2,0.78);
}
.apt-specs li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rust);
  flex-shrink: 0;
  position: relative;
  top: -2px;
}
.apt-cta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; }

/* ─────── AMENITIES ─────── */
.amenities { background: var(--ink); color: var(--paper); }
.amenities .section-head { margin-bottom: 60px; }
.amenities-title { color: var(--paper); }
.amenities .body-l { color: rgba(244,241,232,0.7); }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(244,241,232,0.15);
}
.amenity {
  padding: 36px 28px;
  border-right: 1px solid rgba(244,241,232,0.15);
  border-bottom: 1px solid rgba(244,241,232,0.15);
}
.amenity:nth-child(4n) { border-right: none; }
.amenity-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(244,241,232,0.5);
  margin-bottom: 18px;
}
.amenity-title {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
  margin-bottom: 14px;
  color: var(--paper);
}
.amenity-desc { font-size: 14px; line-height: 1.55; color: rgba(244,241,232,0.7); }

/* ─────── GALLERY ─────── */
.gallery { background: var(--sage-light); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(150px, 18vw, 215px);
  gap: 14px;
  grid-template-areas:
    "a a f f"
    "a a b c"
    "e e b d";
}
.gallery-grid image-slot {
  --is-bg: var(--sage);
  --is-border: transparent;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.gallery-grid image-slot:hover { transform: scale(1.01); }
.g1 { grid-area: a; }
.g2 { grid-area: b; }
.g3 { grid-area: c; }
.g4 { grid-area: d; }
.g5 { grid-area: e; }
.g6 { grid-area: f; }
/* (alle galerijen delen nu deze indeling: brede tegel rechtsboven) */

/* ─────── HOOD / NEIGHBORHOOD ─────── */
.hood { background: var(--paper); }
.hood-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.hood-map {
  position: sticky;
  top: 100px;
  aspect-ratio: 3 / 4;
  border-radius: 22px;
  overflow: hidden;
  background: var(--sage-cream);
}
.hood-map image-slot { width: 100%; height: 100%; --is-bg: var(--sage); --is-border: transparent; }
/* Leaflet-kaart vult de hood-map container */
.hood-map #hoodMap { position: absolute; inset: 0; width: 100%; height: 100%; background: var(--sage-cream); }
.hood-map .leaflet-control-attribution { font-size: 9px; background: rgba(244,241,232,0.85); }
/* Genummerde pin voor de 8 hoogtepunten */
.hood-num-marker { background: transparent !important; border: none !important; }
.hood-num-pin {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  border: 2px solid var(--paper);
  box-shadow: 0 4px 12px rgba(9,12,2,0.35);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.hood-num-marker:hover .hood-num-pin,
.hood-num-marker.is-active .hood-num-pin {
  background: var(--rust);
  transform: scale(1.18);
  box-shadow: 0 6px 16px rgba(167,38,8,0.5);
}

/* Routes-kaart op fietsen-en-wandelen.html */
.routes-map-wrap {
  margin-top: clamp(60px, 8vw, 100px);
  border-radius: 22px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 30px 60px -30px rgba(9,12,2,0.25);
}
.routes-map-head {
  padding: clamp(22px, 3vw, 32px) clamp(24px, 3vw, 36px);
  border-bottom: 1px solid rgba(9,12,2,0.08);
  background: var(--paper-warm);
}
.routes-map-head .eyebrow { margin-bottom: 12px; }
.routes-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.routes-map-legend span { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; transition: opacity 0.15s ease; }
.routes-map-legend span:hover { opacity: 1; }
.routes-map-legend:hover span:not(:hover) { opacity: 0.4; }
.routes-map-legend i {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid var(--paper);
  box-shadow: 0 1px 3px rgba(9,12,2,0.25);
  flex-shrink: 0;
}
#routesMap {
  height: clamp(420px, 60vh, 640px);
  width: 100%;
  background: var(--sage-cream);
}
.route-num-marker .hood-num-pin { width: 28px; height: 28px; font-size: 10.5px; }

@media (max-width: 720px) {
  #routesMap { height: 380px; }
  .routes-map-legend { font-size: 10.5px; gap: 6px 12px; }
}
.hood-marker { position: absolute; z-index: 3; display: flex; flex-direction: column; align-items: center; pointer-events: none; }
.hood-marker .dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--rust);
  border: 3px solid var(--paper);
  box-shadow: 0 4px 12px rgba(167,38,8,0.4);
  position: relative;
}
.hood-marker:first-of-type .dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--rust);
  opacity: 0.5;
  animation: pulse 2.4s ease-out infinite;
  z-index: -1;
}
.hood-marker .label {
  margin-top: 6px;
  background: var(--ink); color: var(--paper);
  padding: 4px 10px; border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  white-space: nowrap;
}

.hood-list { list-style: none; }
.hood-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(9,12,2,0.1);
  align-items: start;
  cursor: pointer;
  transition: padding 0.2s ease;
}
.hood-item:hover { padding-left: 12px; }
.hood-item:last-child { border-bottom: none; }
.hood-item-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(9,12,2,0.5);
  padding-top: 6px;
}
.hood-item-title {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
  margin-bottom: 6px;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.5s ease;
  display: inline-block;
}
.hood-item:hover .hood-item-title { background-size: 100% 1px; }
.hood-item-desc { font-size: 14px; line-height: 1.55; color: rgba(9,12,2,0.7); max-width: 50ch; }
.hood-item-time {
  display: flex;
  gap: 14px;
  padding-top: 6px;
  white-space: nowrap;
  align-items: flex-start;
}
.hood-item-time .ht-mode {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--rust);
  min-width: 36px;
}
.hood-item-time .ht-icon {
  width: 18px;
  height: 18px;
  display: block;
}
.hood-item-time .ht-val {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--rust);
  line-height: 1;
}

/* ─────── QUOTE ─────── */
.quote { background: var(--rust); color: var(--paper); text-align: center; }
.quote-body {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.012em;
  max-width: 22ch;
  margin: 0 auto 40px;
}
.quote-body em { font-style: italic; }
.quote-attr {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.8;
}
.quote-stars { font-family: var(--serif); font-size: 26px; letter-spacing: 0.1em; margin-bottom: 30px; }

/* ─────── FAQ ─────── */
.faq { background: var(--paper-warm); }
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item { border-top: 1px solid rgba(9,12,2,0.15); }
.faq-item:last-child { border-bottom: 1px solid rgba(9,12,2,0.15); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.faq-toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--rust); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; font-size: 16px; line-height: 1.6; color: rgba(9,12,2,0.75); }
.faq-a-inner > * { padding-bottom: 28px; max-width: 70ch; }

/* ─────── CTA ─────── */
.cta { background: var(--ink); color: var(--paper); text-align: center; position: relative; overflow: hidden; }
.cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(167,38,8,0.18), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(187,197,170,0.08), transparent 50%);
  animation: cta-breath 9s ease-in-out infinite alternate;
}
.cta-inner { position: relative; z-index: 2; }
.cta-eyebrow { color: var(--paper); opacity: 0.7; margin-bottom: 30px; }
.cta-title {
  font-family: var(--serif);
  font-size: clamp(50px, 8vw, 130px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin-bottom: 50px;
  color: var(--paper);
}
.cta-title em { font-style: italic; color: var(--sage); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.cta-contact {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding-top: 50px;
  border-top: 1px solid rgba(244,241,232,0.15);
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: rgba(244,241,232,0.7);
  flex-wrap: wrap;
  justify-content: center;
}
.cta-contact a { color: var(--paper); transition: color 0.2s; }
.cta-contact a:hover { color: var(--rust); }

/* ─────── FOOTER ─────── */
.footer { background: var(--sage-cream); color: var(--ink); padding: 80px 0 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(9,12,2,0.15);
}
.footer-brand .display { font-size: 56px; line-height: 0.95; margin-bottom: 20px; }
.footer-brand p { max-width: 36ch; font-size: 14px; line-height: 1.6; color: rgba(9,12,2,0.7); }
.socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--paper);
  transition: background 0.25s ease, transform 0.25s ease;
}
.socials a:hover {
  background: var(--rust);
  transform: translateY(-2px);
}
.socials a svg { display: block; }
[data-theme="night"] .socials a { background: var(--paper-warm); color: var(--ink); }
[data-theme="night"] .socials a:hover { background: var(--rust); color: var(--paper); }
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 18px;
  color: rgba(9,12,2,0.55);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul.with-icons { gap: 14px; }
.footer-col ul.with-icons li { line-height: 1.4; }
.footer-col ul.with-icons a,
.footer-col ul.with-icons span.contact-line {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
}
.footer-col ul.with-icons svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.7;
}
.footer-col ul.with-icons a:hover svg { opacity: 1; color: var(--rust); }
.footer-col a {
  font-size: 14.5px;
  color: var(--ink);
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
.footer-col a:hover { opacity: 1; color: var(--rust); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(9,12,2,0.55);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom a {
  color: inherit;
  border-bottom: 1px solid currentColor;
  transition: color 0.2s ease;
}
.footer-bottom a:hover { color: var(--rust); }

/* ═════════ ROOM-DETAIL PAGE ═════════ */
.room-overview { background: var(--paper); }
.room-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.room-overview .lead {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 30px;
}
.room-overview .lead em { font-style: italic; color: var(--rust); }
.room-overview p { font-size: 17px; line-height: 1.6; color: rgba(9,12,2,0.78); }
.room-overview p + p { margin-top: 16px; }

.room-spec-card {
  background: var(--sage-cream);
  border-radius: 18px;
  padding: 36px;
  position: sticky;
  top: 100px;
}
.room-spec-card h3 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(9,12,2,0.55);
  margin-bottom: 20px;
}
.room-spec-list { list-style: none; }
.room-spec-list li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(9,12,2,0.1);
}
.room-spec-list li:last-of-type { border-bottom: none; }
.room-spec-list .lbl {
  font-size: 11px;
  font-family: var(--mono);
  letter-spacing: 0.12em;
  color: var(--sage-ink);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.room-spec-list .lbl .spec-ico {
  width: 14px;
  height: 14px;
  flex: none;
  color: var(--rust);
}
.room-spec-list .val {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.3;
  color: var(--ink);
  text-wrap: pretty;
}
.room-spec-card .btn { width: 100%; justify-content: center; margin-top: 20px; }

/* Feature grid (room highlights) */
.features {
  background: var(--sage-light);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: var(--paper);
  padding: 36px 30px;
  border-radius: 18px;
  transition: transform 0.4s ease;
}
.feature:hover { transform: translateY(-4px); }
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  margin-bottom: 22px;
}
.feature-icon svg { display: block; }
.feature h3 { font-family: var(--serif); font-size: 28px; line-height: 1; margin-bottom: 10px; }
.feature h3 a {
  color: inherit;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  transition: color 0.25s ease;
}
.feature h3 a:hover { color: var(--rust); }
.feature h3 .ext-arrow {
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
  color: var(--rust);
  transition: transform 0.25s ease;
  vertical-align: baseline;
}
.feature h3 .ext-arrow svg {
  width: 0.62em;
  height: 0.62em;
}
.feature h3 a:hover .ext-arrow { transform: translate(2px, -2px); }
.feature p { font-size: 14.5px; line-height: 1.55; color: rgba(9,12,2,0.7); }

/* ─────── WEATHER WIDGET (omgeving.html) ─────── */
.weather-section {
  background: var(--paper-warm);
}
.weather-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.weather-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 6px 0 8px;
}
.weather-title em { font-style: italic; color: var(--rust); }
.weather-sub {
  font-size: 15px;
  color: rgba(9,12,2,0.7);
  max-width: 48ch;
  margin: 0;
}
.weather-source {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(9,12,2,0.55);
  text-decoration: none;
  align-self: flex-end;
  transition: color 0.2s ease;
}
.weather-source:hover { color: var(--rust); }

.weather-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.weather-card {
  background: var(--paper);
  border: 1px solid rgba(9,12,2,0.08);
  border-radius: 18px;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.weather-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px -18px rgba(9,12,2,0.25); }
.weather-day {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 8px;
}
.weather-day-name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(9,12,2,0.7);
}
.weather-day-date {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--sage-ink);
  font-style: normal;
}
.weather-icon {
  color: var(--ink);
}
.weather-icon svg { width: 38px; height: 38px; display: block; }
.weather-card:nth-child(1) .weather-icon { color: var(--rust); }
.weather-temp {
  font-family: var(--serif);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.weather-temp strong { font-size: 36px; font-weight: 400; letter-spacing: -0.02em; color: var(--ink); }
.weather-temp span { font-size: 18px; color: rgba(9,12,2,0.5); }
.weather-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 10px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: rgba(9,12,2,0.65);
  border-top: 1px solid rgba(9,12,2,0.08);
  padding-top: 10px;
  margin-top: 2px;
}
.weather-meta span { display: inline-flex; align-items: center; gap: 4px; }
.weather-meta .wm-label { text-align: right; }

.weather-skeleton { min-height: 168px; position: relative; overflow: hidden; }
.weather-skeleton span {
  display: block;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(9,12,2,0.06) 0%, rgba(9,12,2,0.12) 50%, rgba(9,12,2,0.06) 100%);
  background-size: 200% 100%;
  animation: weatherShimmer 1.6s ease-in-out infinite;
}
.weather-skeleton span:nth-child(1) { width: 50%; }
.weather-skeleton span:nth-child(2) { width: 38px; height: 38px; margin: 8px 0; }
.weather-skeleton span:nth-child(3) { width: 70%; height: 22px; }
@keyframes weatherShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.weather-error {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(9,12,2,0.6);
  text-align: center;
  grid-column: 1 / -1;
  padding: 24px;
}

[data-theme="night"] .weather-section { background: var(--ink-soft); }
[data-theme="night"] .weather-card { background: var(--sage-cream); }
[data-theme="night"] .weather-title em { color: var(--rust); }

/* ─────── REVIEWS (rust-rode achtergrond, gecureerd) ─────── */
.reviews {
  background: var(--rust);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.reviews::before {
  content: '"';
  position: absolute;
  top: -40px;
  right: clamp(-20px, 4vw, 80px);
  font-family: var(--serif);
  font-size: clamp(280px, 36vw, 540px);
  line-height: 1;
  color: var(--rust-deep);
  opacity: 0.45;
  pointer-events: none;
  font-style: italic;
}
.reviews .container { position: relative; z-index: 1; }
.reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.reviews .eyebrow { color: rgba(244,241,232,0.7); }
.reviews-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  max-width: 16ch;
  margin: 6px 0 0;
  color: var(--paper);
}
.reviews-title em { font-style: italic; color: var(--paper-warm); opacity: 0.85; }
.reviews-rating {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,241,232,0.85);
  white-space: nowrap;
}
.reviews-rating strong {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--paper);
  letter-spacing: 0;
  text-transform: none;
  margin-right: 6px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: 22px;
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 18px 40px -20px rgba(9,12,2,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -18px rgba(9,12,2,0.45); }
.review-head { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.review-avatar-fallback {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--paper);
  text-transform: uppercase;
  letter-spacing: 0;
}
.review-name { font-family: var(--serif); font-size: 18px; color: var(--ink); line-height: 1.2; }
.review-name a { color: inherit; text-decoration: none; }
.review-name a:hover { color: var(--rust); }
.review-when {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(9,12,2,0.5);
  margin-top: 3px;
}
.review-stars {
  color: var(--rust);
  font-size: 16px;
  letter-spacing: 3px;
  line-height: 1;
}
.review-stars-empty { color: rgba(9,12,2,0.15); }
.review-text {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(9,12,2,0.85);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reviews-foot {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.reviews .btn-paper {
  background: var(--paper);
  color: var(--ink);
}
.reviews .btn-paper:hover { background: var(--paper-warm); }
.reviews .btn-ink {
  background: var(--ink);
  color: var(--paper);
}
.reviews .btn-ink:hover { background: var(--ink-soft); }

.reviews-empty {
  grid-column: 1 / -1;
  text-align: center;
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(244,241,232,0.7);
  padding: 24px;
}

[data-theme="night"] .reviews { background: var(--rust-deep); }
[data-theme="night"] .review-card { background: var(--paper); color: var(--ink); }

@media (max-width: 960px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
  .reviews-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .review-card { padding: 22px 20px; }
  .reviews::before { font-size: 220px; top: -30px; right: -10px; }
}

@media (max-width: 900px) {
  .weather-grid { grid-template-columns: repeat(2, 1fr); }
  .weather-head { gap: 10px; }
  .weather-source { align-self: flex-start; }
}
@media (max-width: 480px) {
  .weather-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .weather-card { padding: 16px 14px 14px; gap: 10px; }
  .weather-icon svg { width: 32px; height: 32px; }
  .weather-temp strong { font-size: 28px; }
  .weather-temp span { font-size: 16px; }
  .weather-day-name { font-size: 10.5px; letter-spacing: 0.1em; }
  .weather-day-date { font-size: 10px; }
  .weather-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .weather-meta .wm-label { text-align: left; }
}
@media (max-width: 360px) {
  .weather-temp strong { font-size: 26px; }
  .weather-card { padding: 14px 12px 12px; }
}

/* Other rooms strip (cross-link) */
.other-rooms { background: var(--paper); }
.other-rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.other-room {
  display: block;
  background: var(--sage-cream);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.other-room:hover { transform: translateY(-4px); }
.other-room .media {
  aspect-ratio: 4/3;
  position: relative;
  background: var(--sage);
}
.other-room .media image-slot {
  width: 100%; height: 100%;
  --is-bg: var(--sage);
  --is-border: transparent;
}
.other-room .body {
  padding: 22px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.other-room .body h4 { font-family: var(--serif); font-size: 28px; line-height: 1; }
.other-room .body small {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(9,12,2,0.6);
}

/* ─────── CONTACT PAGE ─────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(9,12,2,0.6);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit;
  font-size: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(9,12,2,0.15);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  transition: border-color 0.2s, background 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--rust);
  background: white;
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form .btn { align-self: flex-start; margin-top: 8px; }

.form-cta {
  margin-top: 30px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 18px;
  padding: 32px 36px;
  position: relative;
  overflow: hidden;
}
.form-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 0%, rgba(167,38,8,0.22), transparent 55%);
  pointer-events: none;
}
.form-cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.form-cta-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,241,232,0.6);
  margin-bottom: 10px;
}
.form-cta-title {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--paper);
  max-width: 22ch;
}
.form-cta-title em { font-style: italic; color: var(--sage); }
.form-cta-sub {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(244,241,232,0.65);
  max-width: 42ch;
}
@media (max-width: 720px) {
  .form-cta { padding: 26px 24px; }
  .form-cta-title { font-size: 26px; }
}

.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info .block { padding: 24px 0; border-bottom: 1px solid rgba(9,12,2,0.12); }
.contact-info .block:last-child { border-bottom: none; }
.contact-info h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(9,12,2,0.55);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.contact-info h4 svg {
  width: 16px;
  height: 16px;
  flex: none;
  color: var(--rust);
}
.contact-info p { font-family: var(--serif); font-size: 22px; line-height: 1.3; }
.contact-info a { color: var(--ink); transition: color 0.2s; }
.contact-info a:hover { color: var(--rust); }
.contact-info .socials a { color: var(--paper); }
.contact-info .socials a:hover { color: var(--paper); }

/* ─────── MAP ─────── */
.map-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(9,12,2,0.25);
}
#contactMap {
  height: 480px;
  width: 100%;
  background: var(--sage-cream);
  z-index: 1;
}
.map-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 5;
  background: var(--paper);
  padding: 22px 26px;
  border-radius: 14px;
  max-width: 280px;
  box-shadow: 0 12px 30px -8px rgba(9,12,2,0.25);
}
.map-overlay-label {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
  margin-bottom: 6px;
}
.map-overlay-addr {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(9,12,2,0.6);
  margin-bottom: 18px;
  line-height: 1.5;
}
.map-overlay .btn { width: 100%; justify-content: center; }
[data-theme="night"] .map-overlay { background: var(--paper-warm); }
[data-theme="night"] .map-overlay-addr { color: var(--fg-muted); }

/* Custom Leaflet marker */
.sm-marker {
  position: relative;
  background: transparent !important;
  border: none !important;
}
.sm-marker-dot {
  position: absolute;
  inset: 4px;
  background: var(--rust);
  border: 3px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(167,38,8,0.5);
}
.sm-marker-pulse {
  position: absolute;
  inset: 0;
  background: var(--rust);
  border-radius: 50%;
  opacity: 0.45;
  animation: pulse 2.4s ease-out infinite;
  pointer-events: none;
}
.leaflet-popup-content-wrapper {
  border-radius: 10px !important;
  background: var(--paper) !important;
  color: var(--ink) !important;
}
.leaflet-popup-content {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
}
.leaflet-popup-tip { background: var(--paper) !important; }
.leaflet-container { font-family: var(--sans); }

@media (max-width: 720px) {
  #contactMap { height: 360px; }
  .map-overlay {
    position: relative;
    margin-top: -40px;
    max-width: none;
    border-radius: 14px;
    z-index: 1000;
  }
}

/* ─────── ACTIVITY PAGE ─────── */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.route-card {
  background: var(--paper);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease;
}
.route-card:hover { transform: translateY(-6px); }
.route-card .media {
  aspect-ratio: 16/9;
  background: var(--sage);
  position: relative;
}
.route-card .media image-slot {
  width: 100%; height: 100%;
  --is-bg: var(--sage); --is-border: transparent;
}
.route-card .badge {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--paper);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 2;
}
.route-card .duration {
  position: absolute;
  bottom: 18px; right: 18px;
  background: var(--ink); color: var(--paper);
  padding: 8px 14px; border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  z-index: 2;
}
.route-card .body { padding: 30px 32px; display: flex; flex-direction: column; flex: 1; }
.route-card h3 {
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
  margin-bottom: 6px;
}
.route-card .sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(9,12,2,0.55);
  margin-bottom: 16px;
}
.route-card p { font-size: 15px; line-height: 1.55; color: rgba(9,12,2,0.78); margin-bottom: 18px; }
.route-card .meta {
  display: grid;
  grid-template-columns: 0.75fr 1fr 1.5fr 1.4fr;
  gap: 18px;
  align-items: start;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(9,12,2,0.1);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(9,12,2,0.6);
}
.route-card .meta strong { font-family: var(--serif); font-size: 16px; color: var(--ink); letter-spacing: 0; text-transform: none; display: block; margin-top: 2px; }

/* GPX download button onderin een route-card */
.route-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.gpx-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.gpx-btn:hover { background: var(--rust); transform: translateY(-1px); }
.gpx-btn svg { width: 14px; height: 14px; }

/* Secondary outline variant naast de gpx-btn — voor "Print PDF" */
.gpx-btn.pdf-btn {
  background: transparent;
  color: var(--ink);
  border: 1px solid color-mix(in oklch, var(--ink) 25%, transparent);
  cursor: pointer;
  font-family: var(--mono);
}
.gpx-btn.pdf-btn:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.gpx-btn.pdf-btn[disabled] {
  opacity: 0.5;
  cursor: wait;
  transform: none;
}
.gpx-btn + .gpx-btn { margin-left: 10px; }

/* ─────── PDF ROUTE PRINT STAGE ─────── */
.route-print-stage { display: none; }

@media print {
  body[data-printing-route] {
    background: #fff !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  body[data-printing-route] > *:not(.route-print-stage):not(script):not(style):not(link) {
    display: none !important;
  }
  body[data-printing-route] .route-print-stage {
    display: block !important;
    color: #090C02;
    background: #fff;
    box-sizing: border-box;
    width: 210mm;
    min-height: 297mm;
    padding: 16mm 18mm 14mm;
    font-family: "Geist", -apple-system, sans-serif;
  }
  body[data-printing-route] .rps-brand {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: "Geist Mono", monospace;
    font-size: 9pt;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #586745;
    border-bottom: 1px solid rgba(9,12,2,0.18);
    padding-bottom: 9pt;
  }
  body[data-printing-route] .rps-brand strong {
    color: #090C02;
    font-weight: 600;
    letter-spacing: 0.18em;
  }
  body[data-printing-route] .rps-eyebrow {
    font-family: "Geist Mono", monospace;
    font-size: 9pt;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #A72608;
    margin: 18pt 0 4pt;
  }
  body[data-printing-route] .rps-title {
    font-family: "Instrument Serif", serif;
    font-size: 38pt;
    line-height: 1;
    margin: 0 0 6pt;
    font-weight: 400;
  }
  body[data-printing-route] .rps-title em { font-style: italic; color: #A72608; }
  body[data-printing-route] .rps-sub {
    font-family: "Geist Mono", monospace;
    font-size: 9pt;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(9,12,2,0.6);
    margin: 0 0 14pt;
  }
  body[data-printing-route] .rps-meta {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(9,12,2,0.18);
    border-radius: 4pt;
    margin: 0 0 16pt;
    overflow: hidden;
  }
  body[data-printing-route] .rps-meta > div {
    padding: 10pt 12pt;
    border-right: 1px solid rgba(9,12,2,0.18);
  }
  body[data-printing-route] .rps-meta > div:last-child { border-right: 0; }
  body[data-printing-route] .rps-meta-label {
    display: block;
    font-family: "Geist Mono", monospace;
    font-size: 7.5pt;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(9,12,2,0.55);
    margin-bottom: 4pt;
  }
  body[data-printing-route] .rps-meta strong {
    display: block;
    font-family: "Instrument Serif", serif;
    font-size: 14pt;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.1;
  }
  body[data-printing-route] .rps-map {
    margin: 0 0 12pt;
    border: 1px solid rgba(9,12,2,0.18);
    border-radius: 4pt;
    overflow: hidden;
    background: #F4F1E8;
  }
  body[data-printing-route] .rps-map svg {
    width: 100%;
    height: auto;
    display: block;
  }
  body[data-printing-route] .rps-legend {
    display: flex;
    gap: 20pt;
    font-family: "Geist Mono", monospace;
    font-size: 8pt;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(9,12,2,0.65);
    margin: 8pt 0 16pt;
    flex-wrap: wrap;
  }
  body[data-printing-route] .rps-legend span {
    display: inline-flex;
    align-items: center;
    gap: 6pt;
  }
  body[data-printing-route] .rps-legend .dot {
    width: 9pt;
    height: 9pt;
    border-radius: 50%;
    background: #A72608;
  }
  body[data-printing-route] .rps-legend .dot-end { background: rgba(167,38,8,0.45); }
  body[data-printing-route] .rps-legend .dot-smedery { background: #090C02; }
  body[data-printing-route] .rps-desc {
    font-size: 10.5pt;
    line-height: 1.55;
    margin: 0 0 14pt;
    max-width: 80ch;
    color: #090C02;
  }
  body[data-printing-route] .rps-foot {
    margin-top: auto;
    padding-top: 10pt;
    border-top: 1px solid rgba(9,12,2,0.18);
    font-family: "Geist Mono", monospace;
    font-size: 8pt;
    color: rgba(9,12,2,0.6);
    display: flex;
    justify-content: space-between;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  @page { size: A4 portrait; margin: 0; }
}

/* ─────── STICKY BADGE ─────── */
.sticky-badge {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 40;
  background: var(--ink);
  color: var(--paper);
  padding: 14px 20px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 20px 50px -20px rgba(9,12,2,0.5);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.2,0.7,0.2,1), background 0.25s;
}
.sticky-badge.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.sticky-badge:hover { background: var(--rust); }
.sticky-badge .pulse-ring {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rust);
  position: relative;
}
.sticky-badge .pulse-ring::after {
  content: '';
  position: absolute; inset: -3px;
  border-radius: 50%;
  background: var(--rust);
  opacity: 0.5;
  animation: pulse 2s ease-out infinite;
}
.sticky-badge:hover .pulse-ring,
.sticky-badge:hover .pulse-ring::after { background: var(--paper); }

/* ─────── MARQUEE ─────── */
.marquee {
  background: var(--ink);
  color: var(--paper);
  padding: 26px 0;
  overflow: hidden;
  border-top: 1px solid rgba(244,241,232,0.08);
  border-bottom: 1px solid rgba(244,241,232,0.08);
}
.marquee-track {
  display: flex;
  gap: 60px;
  align-items: center;
  width: max-content;
  animation: marquee 50s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 60px;
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.marquee-item em { font-style: italic; color: var(--rust); }
.marquee-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--rust); flex-shrink: 0; }

/* ═════════ MOTION ═════════ */
.word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.word > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.hero.loaded .word > span { transform: translateY(0); }
.hero .word:nth-child(1) > span { transition-delay: 0.05s; }
.hero .word:nth-child(2) > span { transition-delay: 0.15s; }
.hero .word:nth-child(3) > span { transition-delay: 0.25s; }
.hero .word:nth-child(4) > span { transition-delay: 0.35s; }
.hero .word:nth-child(5) > span { transition-delay: 0.45s; }
.hero .word:nth-child(6) > span { transition-delay: 0.55s; }
.hero .word:nth-child(7) > span { transition-delay: 0.65s; }

.hero-eyebrow, .hero-row, .hero-scroll, .breadcrumbs {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: 0.9s;
}
.hero.loaded .hero-eyebrow,
.hero.loaded .hero-row,
.hero.loaded .hero-scroll,
.hero.loaded .breadcrumbs { opacity: 1; transform: translateY(0); }
.hero.loaded .breadcrumbs { transition-delay: 0.1s; }
.hero.loaded .hero-eyebrow { transition-delay: 0.2s; }
.hero.loaded .hero-row { transition-delay: 1.0s; }
.hero.loaded .hero-scroll { transition-delay: 1.2s; }

.hero-bg image-slot {
  animation: kenburns 30s ease-out infinite alternate;
  transform-origin: center;
}
@keyframes kenburns {
  0%   { transform: scale(1.0) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1.5%, -1%); }
}

.booking-bar {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease 1.4s, transform 0.9s cubic-bezier(0.2,0.7,0.2,1) 1.4s;
}
.hero.loaded ~ .booking-bar,
.hero.loaded + .booking-bar { opacity: 1; transform: translateY(0); }

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2,0.7,0.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2,0.7,0.2,1);
}
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.55s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 0.65s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: 0.75s; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pulse {
  0%   { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(2.6); opacity: 0; }
}
@keyframes cta-breath {
  0%   { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1.1; transform: scale(1.08); }
}

.counter { font-variant-numeric: tabular-nums; }

/* ═════════ ACCESSIBILITY ═════════
   Keyboard-only focus ring (muisklikken krijgen niets, tab-navigatie wel).
   Rust outline + 3px offset werkt over alle achtergronden behalve de
   rust-rode reviews sectie, waar we 'm vervangen door paper. */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 3px;
  border-radius: 4px;
}
.reviews :focus-visible,
[data-theme="night"] :focus-visible {
  outline-color: var(--paper);
}
/* Pill-buttons hebben al border-radius — outline volgt 'm netjes */
.btn:focus-visible,
.sticky-badge:focus-visible,
.guide-back:focus-visible { outline-offset: 4px; }
/* Vermijd dubbele rand op inputs (die hebben eigen focus-stijl) */
.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible { outline: none; }
/* Skip-link voor screenreaders / keyboard, alleen zichtbaar bij focus */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 18px;
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 200;
  transition: top 0.2s ease;
}
.skip-link:focus-visible {
  top: 16px;
  outline: 2px solid var(--paper);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
  .word > span { transform: none; }
  .hero-eyebrow, .hero-row, .hero-scroll, .booking-bar, .breadcrumbs { opacity: 1; transform: none; }
  .ken-burns, .hero-bg img, .hero-bg image-slot img { animation: none !important; transform: none !important; }
  .pulse-ring, .pulse-ring::after, .marquee, .topbar-marquee { animation: none !important; }
  .skip-link { transition: none; }
}

/* ═════════ RESPONSIVE ═════════ */
@media (max-width: 1080px) {
  .nav-links { gap: 18px; }
  .nav-links a, .nav-links .nav-link-trigger { font-size: 13px; }
}
@media (max-width: 980px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .story-grid { grid-template-columns: 1fr; }
  .apartment-grid, .apartment-grid.four-up { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .amenity:nth-child(4n) { border-right: 1px solid rgba(244,241,232,0.15); }
  .amenity:nth-child(2n) { border-right: none; }
  .hood-layout { grid-template-columns: 1fr; }
  .hood-map { position: relative; top: 0; aspect-ratio: 4/3; }
  /* Fallback voor oudere browsers zonder aspect-ratio support */
  @supports not (aspect-ratio: 1) {
    .hood-map { aspect-ratio: auto; height: clamp(280px, 60vw, 420px); }
  }
  /* Booking-bar / Hero-CTA: stop met -100px floating zodra we onder desktop
     gaan zitten, anders overlapt de bar de hero-tekst op tablet. */
  .booking-bar { grid-template-columns: 1fr 1fr; }
  .hero-cta-wrap.booking-bar { margin-top: 24px; margin-bottom: 0; }
  .bf-cta { grid-column: 1 / -1; }
  .bf + .bf:nth-child(odd) { border-left: none; }
  .bf:nth-child(3), .bf:nth-child(4) { border-top: 1px solid rgba(9,12,2,0.08); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero { padding-bottom: 220px; }
  .hero-scroll { display: none; }
  .room-overview-grid { grid-template-columns: 1fr; }
  .room-spec-card { position: relative; top: 0; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .other-rooms-grid { grid-template-columns: 1fr 1fr; }
  .routes-grid { grid-template-columns: 1fr; }
  /* Meta op mobiel in 2 regels: Afstand+Niveau boven, Stop+Tip onder */
  .route-card .meta {
    grid-template-columns: 1fr 1fr;
    gap: 16px 22px;
  }
  /* GPX/Print knoppen iets compacter op mobiel */
  .route-actions { gap: 10px; }
  .route-actions .gpx-btn {
    padding: 7px 12px;
    font-size: 10px;
    letter-spacing: 0.08em;
    gap: 6px;
  }
  .route-actions .gpx-btn svg { width: 13px; height: 13px; }
  .route-actions .gpx-btn + .gpx-btn { margin-left: 0; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--paper);
    padding: 24px var(--gutter);
    color: var(--ink) !important;
    gap: 4px;
    border-bottom: 1px solid rgba(9,12,2,0.1);
    align-items: stretch;
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open a, .nav-links.open .nav-link-trigger {
    color: var(--ink);
    padding: 14px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
    font-size: 16px;
    width: 100%;
    border-bottom: 1px solid rgba(9,12,2,0.08);
  }
  .nav-links.open .nav-sub {
    position: static;
    transform: none;
    background: var(--sage-light);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    padding: 6px;
    margin: 6px 0 12px;
    display: none;
  }
  .nav-links.open .has-sub.open .nav-sub { display: block; }
  .nav-links.open .nav-sub a { min-height: 44px; padding: 12px 16px; border-bottom: none; }
  /* Vergroot tap-targets voor de theme- en lang-switch knoppen op mobiel */
  .theme-switch button,
  .lang-switch button { width: 36px; height: 36px; }
  .lang-switch button { width: 40px; }
  /* Footer link-items krijgen een nette tap-zone */
  .footer-col li a,
  .footer-col li span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 4px 0;
  }
  /* ...maar de icoon-lijst lijnt het icoon uit met de (mogelijk 2-regelige)
     tekst, niet verticaal gecentreerd over het hele blok */
  .footer-col ul.with-icons a,
  .footer-col ul.with-icons span.contact-line {
    align-items: flex-start;
    min-height: 0;
  }
  .socials a { width: 44px; height: 44px; }
  .logo img { width: 50px; height: 50px; }
  .logo-text { font-size: 16px; }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(120px, 32vw, 170px);
    grid-template-areas:
      "a a"
      "f f"
      "b c"
      "d e";
  }
  .g1, .g2, .g3, .g4, .g5, .g6 { grid-column: auto; grid-row: auto; }
  .g1 { grid-area: a; }
  .g2 { grid-area: b; }
  .g3 { grid-area: c; }
  .g4 { grid-area: d; }
  .g5 { grid-area: e; }
  .g6 { grid-area: f; }
  .footer-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .amenity { border-right: none !important; }
  .apt-body { padding: 28px 24px; }
  .apt-title { font-size: 42px; }
  .booking-bar { grid-template-columns: 1fr; }
  /* Hero-CTA op mobiel: niet meer als zwevend element over de hero hangen,
     maar netjes erónder zodat hij nooit de hero-titel overlapt. */
  .hero-cta-wrap.booking-bar { margin-top: 24px; margin-bottom: 0; }
  .bf + .bf { border-left: none; border-top: 1px solid rgba(9,12,2,0.08); }
  .hood-item { grid-template-columns: 1fr; gap: 8px; }
  .hood-item-time { padding-top: 0; }
  /* (story-images stacking nu al gedaan bij 980 — niet meer hier nodig) */
  .feature-grid { grid-template-columns: 1fr; }
  .other-rooms-grid { grid-template-columns: 1fr; }
  .contact-form .row { grid-template-columns: 1fr; }

  /* Voorkom dat lange hero-titels onder het menu schuiven op mobiel.
     Hero gebruikt flex-end, dus extra ruimte aan de bovenkant houdt de tekst vrij van de topbar + nav. */
  .hero { padding-top: 140px; padding-bottom: 120px; }
  .hero-compact { min-height: auto; padding-top: 140px; padding-bottom: 60px; }
  .hero-title { max-width: none; }
  .hero-scroll { display: none; }
}

@media (max-width: 480px) {
  .hero { padding-top: 130px; padding-bottom: 90px; }
  .hero-compact { padding-top: 130px; padding-bottom: 50px; }
  .hero-title { font-size: clamp(40px, 11vw, 72px); }
  .hero-compact .hero-title { font-size: clamp(36px, 10.5vw, 64px); }
  .hero-eyebrow { margin-bottom: 18px; }
}

/* ─────── WELKOM TERUG (repeat-guest aanbieding) ─────── */
.welkom-terug {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 45;
  width: 320px;
  max-width: calc(100vw - 48px);
  background: var(--paper);
  border: 1px solid color-mix(in oklch, var(--sage) 55%, transparent);
  border-radius: 18px;
  padding: 22px 22px 20px;
  box-shadow: 0 28px 60px -28px rgba(9, 12, 2, 0.45), 0 6px 14px -8px rgba(9, 12, 2, 0.18);
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
  font-family: var(--sans);
}
.welkom-terug.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.welkom-terug .wt-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.welkom-terug .wt-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rust);
  display: inline-block;
}
.welkom-terug .wt-title {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.05;
  margin: 0 0 10px;
  color: var(--ink);
  font-weight: 400;
}
.welkom-terug .wt-title em {
  font-style: italic;
  color: var(--rust);
}
.welkom-terug .wt-body {
  font-size: 13.5px;
  line-height: 1.55;
  color: color-mix(in oklch, var(--ink) 75%, transparent);
  margin: 0 0 14px;
}
.welkom-terug .wt-code {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--sage-light);
  border: 1px dashed color-mix(in oklch, var(--sage-deep) 55%, transparent);
  border-radius: 10px;
  padding: 11px 14px;
  font-family: var(--mono);
  font-size: 12.5px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  width: 100%;
  text-align: left;
  color: var(--ink);
}
.welkom-terug .wt-code:hover {
  background: color-mix(in oklch, var(--sage) 35%, var(--sage-light));
  border-color: color-mix(in oklch, var(--sage-deep) 75%, transparent);
}
.welkom-terug .wt-code strong {
  font-weight: 600;
  letter-spacing: 0.18em;
}
.welkom-terug .wt-code .wt-copy-status {
  margin-left: auto;
  font-size: 10.5px;
  color: var(--sage-ink);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: color 0.2s ease;
}
.welkom-terug .wt-code.copied {
  background: color-mix(in oklch, var(--rust) 8%, var(--sage-light));
  border-color: color-mix(in oklch, var(--rust) 40%, transparent);
}
.welkom-terug .wt-code.copied .wt-copy-status {
  color: var(--rust);
}
.welkom-terug .wt-signed {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: color-mix(in oklch, var(--ink) 65%, transparent);
  margin: 14px 0 0;
}
.welkom-terug .wt-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: color-mix(in oklch, var(--ink) 55%, transparent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
  padding: 0;
}
.welkom-terug .wt-close:hover {
  background: color-mix(in oklch, var(--sage) 35%, transparent);
  color: var(--ink);
}

@media (max-width: 720px) {
  .welkom-terug {
    left: 16px;
    right: 16px;
    width: auto;
    bottom: 96px;
    padding: 18px 18px 16px;
  }
  .welkom-terug .wt-title { font-size: 24px; }
}

/* Night theme */
[data-theme="night"] .welkom-terug {
  background: color-mix(in oklch, var(--ink) 88%, var(--sage));
  border-color: color-mix(in oklch, var(--sage-deep) 45%, transparent);
}
[data-theme="night"] .welkom-terug .wt-title { color: var(--paper); }
[data-theme="night"] .welkom-terug .wt-body { color: color-mix(in oklch, var(--paper) 78%, transparent); }
[data-theme="night"] .welkom-terug .wt-signed { color: color-mix(in oklch, var(--paper) 60%, transparent); }
[data-theme="night"] .welkom-terug .wt-close { color: color-mix(in oklch, var(--paper) 60%, transparent); }
[data-theme="night"] .welkom-terug .wt-close:hover { background: color-mix(in oklch, var(--sage-deep) 35%, transparent); color: var(--paper); }
[data-theme="night"] .welkom-terug .wt-code {
  background: color-mix(in oklch, var(--ink) 75%, var(--sage-deep));
  color: var(--paper);
  border-color: color-mix(in oklch, var(--sage-deep) 60%, transparent);
}
[data-theme="night"] .welkom-terug .wt-code:hover {
  background: color-mix(in oklch, var(--ink) 65%, var(--sage-deep));
}

@media (prefers-reduced-motion: reduce) {
  .welkom-terug { transition: opacity 0.2s ease; transform: none; }
  .welkom-terug.show { transform: none; }
}

/* ═════════ FOTO-LIGHTBOX ═════════ */
.lb-eligible {
  cursor: zoom-in;
  transition: opacity 0.2s ease;
}
.lb-eligible:hover { opacity: 0.92; }

body.lb-locked { overflow: hidden; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: color-mix(in oklch, var(--ink) 95%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 5vw, 80px) clamp(16px, 4vw, 56px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.lightbox.show { opacity: 1; pointer-events: auto; }

.lightbox .lb-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: min(1280px, 100%);
  max-height: 100%;
}
.lightbox .lb-img {
  width: min(1280px, 100%);
  height: calc(100vh - 200px);
  object-fit: contain;
  display: block;
  border-radius: 8px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
  background: var(--ink);
}
.lightbox .lb-caption {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 241, 232, 0.7);
  text-align: center;
  max-width: 60ch;
}
.lightbox .lb-caption:empty { display: none; }

.lightbox .lb-counter {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(244, 241, 232, 0.55);
  font-variant-numeric: tabular-nums;
}

.lightbox .lb-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(244, 241, 232, 0.1);
  border: 1px solid rgba(244, 241, 232, 0.15);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  padding: 0;
}
.lightbox .lb-close:hover {
  background: rgba(244, 241, 232, 0.18);
  transform: scale(1.05);
}

.lightbox .lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(244, 241, 232, 0.08);
  border: 1px solid rgba(244, 241, 232, 0.15);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  padding: 0;
}
.lightbox .lb-nav:hover {
  background: rgba(244, 241, 232, 0.18);
}
.lightbox .lb-prev { left: 24px; }
.lightbox .lb-next { right: 24px; }
.lightbox .lb-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lightbox .lb-next:hover { transform: translateY(-50%) translateX(3px); }
.lightbox .lb-nav[hidden] { display: none; }

@media (max-width: 720px) {
  .lightbox { padding: 80px 12px 100px; }
  .lightbox .lb-img { height: calc(100vh - 220px); }
  .lightbox .lb-nav {
    width: 44px;
    height: 44px;
    bottom: 24px;
    top: auto;
    transform: none;
  }
  .lightbox .lb-prev { left: 50%; margin-left: -54px; }
  .lightbox .lb-next { right: 50%; margin-right: -54px; }
  .lightbox .lb-prev:hover,
  .lightbox .lb-next:hover { transform: none; }
  .lightbox .lb-counter { top: 18px; font-size: 11px; }
  .lightbox .lb-caption { font-size: 10.5px; }
}

@media (prefers-reduced-motion: reduce) {
  .lightbox { transition: none; }
  .lightbox .lb-close:hover,
  .lightbox .lb-nav:hover { transform: none; }
  .lightbox .lb-prev:hover { transform: none; }
  .lightbox .lb-next:hover { transform: none; }
}
