/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  /* Colors */
  --color-bg: #faf5ec;            /* Warm cream */
  --color-bg-soft: #f3ead8;       /* Soft sand */
  --color-bg-stone: #ede2cb;      /* Stone */
  --color-bg-dark: #1d2e54;       /* Brand navy */
  --color-bg-darker: #15234a;     /* Deeper navy */
  --color-bg-night: #0a1628;      /* Near-black navy */

  --color-text: #1a2540;
  --color-text-soft: #5a6378;
  --color-text-quiet: #8b93a4;
  --color-text-light: #faf5ec;
  --color-text-muted: #b9c2d4;

  --color-accent: #d97a2e;        /* Sunset */
  --color-accent-warm: #f0993b;
  --color-sand: #f0bf6b;
  --color-gold: #c9a875;          /* Aged gold */

  --color-line: #d8cdb8;
  --color-line-soft: #e7dfcc;
  --color-line-dark: rgba(240, 191, 107, 0.2);
  --color-line-night: rgba(240, 191, 107, 0.14);

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, system-ui, sans-serif;

  /* Layout */
  --container: 1320px;
  --container-narrow: 1100px;

  /* Easing */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
::selection { background: var(--color-accent); color: var(--color-bg); }

/* ============================================
   UTILITIES
   ============================================ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 32px; }

.display {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.022em;
  font-variation-settings: "opsz" 144, "wght" 320;
}
.display em {
  font-style: italic;
  color: var(--color-accent);
  font-variation-settings: "opsz" 144, "wght" 280;
}

/* Reusable inline arrow link */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-bg-dark);
  border-bottom: 1px solid var(--color-bg-dark);
  padding-bottom: 6px;
  transition: color 0.3s, border-color 0.3s;
}
.link-arrow svg { width: 14px; height: 14px; transition: transform 0.4s var(--ease-out); }
.link-arrow:hover { color: var(--color-accent); border-color: var(--color-accent); }
.link-arrow:hover svg { transform: translateX(4px); }
.link-arrow--light {
  color: var(--color-sand);
  border-color: var(--color-sand);
}
.link-arrow--light:hover { color: var(--color-text-light); border-color: var(--color-text-light); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.4s var(--ease-out);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.4s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }
.btn--sm { padding: 11px 20px; font-size: 11px; }

.btn--primary {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
}
.btn--primary:hover { background: var(--color-accent); }

.btn--accent {
  background: var(--color-accent);
  color: var(--color-bg);
}
.btn--accent:hover { background: var(--color-bg-dark); }

.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid currentColor;
}
.btn--ghost:hover { background: var(--color-text); color: var(--color-bg); }

.btn--ghost-light {
  background: transparent;
  color: var(--color-text-light);
  border: 1px solid rgba(250, 245, 236, 0.4);
}
.btn--ghost-light:hover { background: var(--color-text-light); color: var(--color-bg-dark); }

.btn--whatsapp { background: #25D366; color: white; }
.btn--whatsapp:hover { background: #1da851; }

/* ============================================
   TOPBAR
   ============================================ */
.topbar {
  background: var(--color-bg-night);
  color: var(--color-text-muted);
  font-size: 12px;
  padding: 10px 0;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--color-line-night);
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.topbar__location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.topbar__location svg { width: 12px; height: 12px; }
.topbar__phones { display: inline-flex; gap: 18px; }
.topbar__phones a:hover { color: var(--color-bg); }
@media (max-width: 720px) {
  .topbar__phones span:not(:first-child) { display: none; }
  .topbar__location span { display: none; }
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg-night);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.header.scrolled { border-bottom-color: rgba(240, 191, 107, 0.14); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 56px;
  gap: 14px;
  transition: opacity 0.3s;
}
.logo:hover { opacity: 0.85; }
.logo__img { height: 100%; width: auto; display: block; }
.logo__text { display: flex; flex-direction: column; gap: 2px; line-height: 1; }
.logo__text-main {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: 0.01em;
  font-variation-settings: "opsz" 144, "wght" 500;
}
.logo__text-sub {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-sand);
  font-weight: 500;
}
@media (max-width: 720px) {
  .logo__text { display: none; }
}
.nav { display: flex; gap: 32px; align-items: center; }
.nav a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--color-text-light);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.4s var(--ease-out);
}
.nav a:hover { color: var(--color-accent); }
.nav a:hover::after { width: 100%; }

.header__cta { display: flex; gap: 12px; align-items: center; }
.menu-toggle { display: none; }
.nav-mobile { display: none; }

@media (max-width: 1080px) {
  .nav, .header__cta .btn { display: none; }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 200;
  }
  .menu-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--color-text-light);
    transition: all 0.3s;
  }
  body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .nav-mobile {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    z-index: 150;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    padding: 80px 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out);
  }
  body.menu-open .nav-mobile { opacity: 1; pointer-events: auto; }
  .nav-mobile a {
    font-family: var(--font-display);
    font-size: 30px;
    color: var(--color-bg-dark);
    font-variation-settings: "opsz" 144, "wght" 350;
  }
  .nav-mobile .btn { margin-top: 12px; font-size: 12px; font-family: var(--font-body); }
}
@media (max-width: 540px) {
  .logo { height: 44px; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: calc(100vh - 92px);
  min-height: 640px;
  max-height: 920px;
  overflow: hidden;
  background: var(--color-bg-darker);
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s var(--ease-in-out);
}
.hero__slide.active { opacity: 1; }
.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 18s ease-out infinite alternate;
}
@keyframes kenBurns {
  0% { transform: scale(1.04) translate(0, 0); }
  100% { transform: scale(1.16) translate(-1.5%, -1%); }
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg,
      rgba(13, 26, 54, 0.7) 0%,
      rgba(13, 26, 54, 0.35) 35%,
      rgba(13, 26, 54, 0.2) 60%,
      rgba(13, 26, 54, 0.4) 100%
    ),
    linear-gradient(to bottom,
      rgba(13, 26, 54, 0.18) 0%,
      rgba(13, 26, 54, 0.05) 30%,
      rgba(13, 26, 54, 0.6) 75%,
      rgba(13, 26, 54, 0.92) 100%
    );
  z-index: 1;
}
.hero__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 110px;
  color: var(--color-text-light);
}
.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
}
.hero__title-wrap { max-width: 760px; }
.hero__chapter {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s 0.3s var(--ease-out) forwards;
}
.hero__chapter-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  color: var(--color-sand);
  font-variation-settings: "opsz" 144, "wght" 400;
  letter-spacing: 0.04em;
}
.hero__chapter-label {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 500;
  position: relative;
  padding-left: 32px;
}
.hero__chapter-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 1px;
  background: var(--color-text-muted);
  opacity: 0.55;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 250;
  font-size: clamp(48px, 7.5vw, 108px);
  line-height: 0.96;
  letter-spacing: -0.028em;
  font-variation-settings: "opsz" 144, "wght" 280;
  opacity: 0;
  animation: fadeUp 1.1s 0.5s var(--ease-out) forwards;
}
.hero__title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "wght" 250;
  color: var(--color-sand);
}
.hero__sub {
  margin-top: 28px;
  max-width: 500px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text-muted);
  opacity: 0;
  animation: fadeUp 1s 0.7s var(--ease-out) forwards;
}
.hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 0.9s var(--ease-out) forwards;
}

/* Hero booking widget */
.hero__booking {
  width: 360px;
  background: rgba(250, 245, 236, 0.97);
  color: var(--color-text);
  padding: 28px 26px 22px;
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  animation: fadeUp 1s 1.1s var(--ease-out) forwards;
  border: 1px solid rgba(250, 245, 236, 0.5);
}
.hero__booking-head { margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--color-line); }
.hero__booking-eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 500;
}
.hero__booking-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 350;
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--color-bg-dark);
  margin-top: 8px;
  font-variation-settings: "opsz" 144, "wght" 380;
}
.hero__booking-title em {
  font-style: italic;
  color: var(--color-accent);
  font-variation-settings: "opsz" 144, "wght" 320;
}
.hero__booking-form { display: flex; flex-direction: column; gap: 14px; }
.hero__booking-row { display: flex; flex-direction: column; gap: 14px; }
.hero__booking-row--two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero__booking-field { display: flex; flex-direction: column; gap: 6px; }
.hero__booking-field > span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  font-weight: 500;
}
.hero__booking-field input,
.hero__booking-field select {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 11px 12px;
  background: white;
  border: 1px solid var(--color-line);
  border-radius: 1px;
  color: var(--color-text);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.hero__booking-field input:focus,
.hero__booking-field select:focus { border-color: var(--color-accent); }
.hero__booking-extra {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  background: rgba(217, 122, 46, 0.07);
  border: 1px solid rgba(217, 122, 46, 0.18);
  cursor: pointer;
  transition: background 0.2s;
}
.hero__booking-extra:hover { background: rgba(217, 122, 46, 0.13); }
.hero__booking-extra input { margin-top: 3px; accent-color: var(--color-accent); }
.hero__booking-extra-label { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.hero__booking-extra-title { font-size: 13px; font-weight: 500; color: var(--color-bg-dark); }
.hero__booking-extra-sub { font-size: 11px; color: var(--color-text-soft); }
.hero__booking-submit {
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
  font-size: 12px;
  margin-top: 4px;
}
.hero__booking-note {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--color-text-soft);
  margin-top: 4px;
}
@media (max-width: 1024px) {
  .hero__booking { width: 320px; padding: 24px 22px 20px; }
  .hero__booking-title { font-size: 22px; }
}
@media (max-width: 880px) { .hero__booking { display: none; } }

.hero__nav {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 3;
  display: flex;
  gap: 12px;
  align-items: center;
}
.hero__nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(250, 245, 236, 0.4);
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.hero__nav-btn:hover { background: var(--color-bg); color: var(--color-bg-dark); border-color: var(--color-bg); }
.hero__nav-btn svg { width: 14px; height: 14px; }
.hero__indicator {
  color: var(--color-text-muted);
  font-size: 12px;
  letter-spacing: 0.18em;
  font-variation-numeric: tabular-nums;
}

.hero__scroll {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--color-text-muted);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 38px;
  background: var(--color-text-muted);
  opacity: 0.5;
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-sand);
  animation: scrollLine 2.4s var(--ease-in-out) infinite;
}
@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  60% { transform: translateY(100%); }
  100% { transform: translateY(100%); }
}
@media (max-width: 880px) { .hero__scroll { display: none; } }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 880px) {
  .hero { height: calc(100vh - 92px); min-height: 540px; }
  .hero__content { padding-bottom: 100px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__nav { bottom: 24px; right: 24px; }
}

/* ============================================
   CHAPTER FRAMING
   ============================================ */
.chapter { position: relative; padding: 100px 0; }
@media (max-width: 768px) { .chapter { padding: 70px 0; } }

.chapter__head {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 44px;
}
.chapter__head--inline { margin-bottom: 28px; }
.chapter__head--center { justify-content: center; }
.chapter__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--color-accent);
  font-variation-settings: "opsz" 144, "wght" 400;
  letter-spacing: 0.02em;
  position: relative;
  padding-right: 22px;
}
.chapter__num::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 18px;
  background: var(--color-accent);
  transform: translateY(-50%);
  opacity: 0.5;
}
.chapter__label {
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  font-weight: 500;
}
.chapter__head--light .chapter__label { color: var(--color-sand); }
.chapter__head--light .chapter__num { color: var(--color-sand); }
.chapter__head--light .chapter__num::after { background: var(--color-sand); }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 56px;
  max-width: 920px;
}
.section-head--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: none;
  align-items: end;
}
.section-head__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 5.6vw, 80px);
  line-height: 1;
  letter-spacing: -0.022em;
  font-variation-settings: "opsz" 144, "wght" 320;
}
.section-head__title em {
  font-style: italic;
  color: var(--color-accent);
  font-variation-settings: "opsz" 144, "wght" 280;
}
.section-head__title--light { color: var(--color-text-light); }
.section-head__title--light em { color: var(--color-sand); }
.section-head__sub {
  max-width: 540px;
  color: var(--color-text-soft);
  font-size: 17px;
  line-height: 1.6;
}
.section-head__sub--light { color: var(--color-text-muted); }

@media (max-width: 880px) {
  .section-head--split { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================
   CHAPTER 01 — AANKOMST
   ============================================ */
.chapter--aankomst { background: var(--color-bg); }

.aankomst__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.aankomst__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.022em;
  font-variation-settings: "opsz" 144, "wght" 320;
}
.aankomst__title em {
  font-style: italic;
  color: var(--color-accent);
  font-variation-settings: "opsz" 144, "wght" 280;
}
.aankomst__body { display: flex; flex-direction: column; gap: 24px; }
.aankomst__body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text-soft);
}
.aankomst__lead {
  font-size: 19px !important;
  color: var(--color-text) !important;
  line-height: 1.55 !important;
}
.aankomst__signature {
  margin-top: 12px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--color-bg-dark);
  font-variation-settings: "opsz" 144, "wght" 400;
}
.aankomst__divider {
  width: 60px;
  height: 1px;
  background: var(--color-accent);
}

.aankomst__strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 72px;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}
.aankomst__stat {
  padding: 38px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid var(--color-line);
  text-align: center;
}
.aankomst__stat:last-child { border-right: 0; }
.aankomst__stat-num {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 300;
  color: var(--color-bg-dark);
  line-height: 1;
  font-variation-settings: "opsz" 144, "wght" 320;
}
.aankomst__stat-num em {
  font-style: italic;
  color: var(--color-accent);
  font-variation-settings: "opsz" 144, "wght" 280;
}
.aankomst__stat-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  margin-top: 8px;
}

@media (max-width: 880px) {
  .aankomst__grid { grid-template-columns: 1fr; gap: 40px; }
  .aankomst__strip { grid-template-columns: repeat(2, 1fr); }
  .aankomst__stat:nth-child(2) { border-right: 0; }
  .aankomst__stat:nth-child(1), .aankomst__stat:nth-child(2) { border-bottom: 1px solid var(--color-line); }
}

/* ============================================
   CHAPTER 02 — VERBLIJVEN
   ============================================ */
.chapter--verblijven { background: var(--color-bg-soft); }

.verblijven-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.room {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
.room--reverse { grid-template-columns: 1fr 1.1fr; }
.room--reverse .room__media { order: 2; }
.room--reverse .room__body { order: 1; }

.room__media { position: relative; }
.room__image-wrap {
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  border-radius: 1px;
}
.room__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.room:hover .room__image { transform: scale(1.04); }
.room__tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(250, 245, 236, 0.95);
  backdrop-filter: blur(6px);
  color: var(--color-bg-dark);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  z-index: 2;
}
.room__index {
  position: absolute;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--color-accent);
  font-variation-settings: "opsz" 144, "wght" 400;
  letter-spacing: 0.04em;
  bottom: -28px;
  right: 0;
}
.room--reverse .room__index { right: auto; left: 0; }

.room__body { padding: 0; }
.room__cat {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: 18px;
}
.room__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.018em;
  color: var(--color-bg-dark);
  font-variation-settings: "opsz" 144, "wght" 320;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.room__title em {
  font-style: italic;
  color: var(--color-accent);
  font-variation-settings: "opsz" 144, "wght" 280;
  font-size: 0.55em;
}
.room__title-divider {
  width: 32px;
  height: 1px;
  background: var(--color-line);
}
.room__desc {
  color: var(--color-text-soft);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 540px;
}
.room__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  margin-bottom: 28px;
}
.room__specs > div {
  padding: 18px 0 18px;
  padding-right: 16px;
  border-right: 1px solid var(--color-line);
}
.room__specs > div:last-child { border-right: 0; padding-right: 0; padding-left: 16px; }
.room__specs > div:nth-child(2) { padding-left: 16px; }
.room__specs dt {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  margin-bottom: 6px;
  font-weight: 500;
}
.room__specs dd {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--color-bg-dark);
  font-variation-settings: "opsz" 144, "wght" 400;
  line-height: 1.2;
}
.room__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

@media (max-width: 980px) {
  .verblijven-grid { gap: 80px; }
  .room, .room--reverse { grid-template-columns: 1fr; gap: 32px; }
  .room--reverse .room__media { order: 1; }
  .room--reverse .room__body { order: 2; }
  .room--reverse .room__index { left: auto; right: 0; }
  .room__index { bottom: -22px; }
  .room__specs { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 540px) {
  .room__specs { grid-template-columns: 1fr; }
  .room__specs > div, .room__specs > div:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
    padding: 14px 0;
  }
  .room__specs > div:last-child { border-bottom: 0; }
}

.verblijven__note {
  text-align: center;
  margin-top: 60px;
  padding-top: 36px;
  border-top: 1px solid var(--color-line);
  font-size: 14px;
  color: var(--color-text-soft);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.verblijven__note strong { color: var(--color-bg-dark); font-weight: 500; }

/* Tarievenkaart */
.tarieven {
  margin-top: 72px;
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  padding: 48px 48px 40px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.tarieven__head { position: relative; }
.tarieven__head .chapter__num { display: inline-block; padding-right: 0; margin-bottom: 18px; }
.tarieven__head .chapter__num::after { display: none; }
.tarieven__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.6vw, 52px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.018em;
  color: var(--color-bg-dark);
  font-variation-settings: "opsz" 144, "wght" 320;
  margin-bottom: 16px;
}
.tarieven__title em {
  font-style: italic;
  color: var(--color-accent);
  font-variation-settings: "opsz" 144, "wght" 280;
}
.tarieven__sub {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text-soft);
  max-width: 360px;
}
.tarieven__list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.tarieven__list li {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr auto;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--color-line);
  align-items: baseline;
}
.tarieven__list li:first-child { border-top: 1px solid var(--color-line); }
.tarieven__name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--color-bg-dark);
  font-variation-settings: "opsz" 144, "wght" 400;
  letter-spacing: -0.01em;
}
.tarieven__meta {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  font-weight: 500;
}
.tarieven__price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--color-accent);
  font-variation-settings: "opsz" 144, "wght" 380;
  letter-spacing: 0.01em;
  text-align: right;
  white-space: nowrap;
}
.tarieven__note {
  margin-top: 22px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  font-weight: 500;
}

@media (max-width: 980px) {
  .tarieven { grid-template-columns: 1fr; gap: 40px; padding: 44px 32px 36px; }
  .tarieven__head { position: static; }
  .tarieven__list li { grid-template-columns: 1fr; gap: 6px; padding: 20px 0; }
  .tarieven__price { text-align: left; }
}

/* ============================================
   CHAPTER 03 — COMFORT
   ============================================ */
.chapter--comfort {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  position: relative;
  overflow: hidden;
}
.chapter--comfort::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 93, 46, 0.16) 0%, transparent 65%);
  pointer-events: none;
}

.comfort {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.comfort__group {
  padding-top: 32px;
  border-top: 1px solid var(--color-line-dark);
}
.comfort__group--accent {
  background: rgba(217, 122, 46, 0.06);
  padding: 32px 32px 32px;
  border: 1px solid rgba(240, 191, 107, 0.18);
  border-top: 1px solid var(--color-sand);
}
.comfort__group-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
}
.comfort__group-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--color-sand);
  font-variation-settings: "opsz" 144, "wght" 400;
}
.comfort__group-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 350;
  color: var(--color-text-light);
  font-variation-settings: "opsz" 144, "wght" 400;
  letter-spacing: -0.01em;
}
.comfort__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.comfort__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.55;
}
.comfort__bullet {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: var(--color-sand);
  border-radius: 50%;
  margin-top: 8px;
  opacity: 0.85;
}
.comfort__group--accent + * .link-arrow,
.comfort__group--accent .link-arrow { margin-top: 22px; }

@media (max-width: 980px) {
  .comfort { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================
   CHAPTER 04 — BELEVINGEN
   ============================================ */
.chapter--belevingen { background: var(--color-bg); }

.belevingen {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--color-line);
  border-left: 1px solid var(--color-line);
}
.beleving {
  padding: 44px 36px 48px;
  border-right: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--color-bg);
  transition: background 0.4s;
  position: relative;
}
.beleving:hover { background: var(--color-bg-soft); }
.beleving__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--color-accent);
  font-variation-settings: "opsz" 144, "wght" 400;
  letter-spacing: 0.04em;
}
.beleving__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 350;
  line-height: 1.1;
  color: var(--color-bg-dark);
  font-variation-settings: "opsz" 144, "wght" 380;
  letter-spacing: -0.012em;
}
.beleving__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-soft);
  flex: 1;
}
.beleving__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--color-line);
  margin-top: 8px;
}
.beleving__meta span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  font-weight: 500;
  padding: 5px 10px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
}

.belevingen__cta {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

@media (max-width: 880px) {
  .belevingen { grid-template-columns: 1fr; }
}

/* ============================================
   CHAPTER 05 — OMGEVING
   ============================================ */
.chapter--omgeving { background: var(--color-bg); }

.omgeving__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.omgeving__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1;
  letter-spacing: -0.022em;
  font-variation-settings: "opsz" 144, "wght" 320;
}
.omgeving__title em {
  font-style: italic;
  color: var(--color-accent);
  font-variation-settings: "opsz" 144, "wght" 280;
}
.omgeving__top p {
  color: var(--color-text-soft);
  font-size: 17px;
  line-height: 1.65;
}

.omgeving__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
}
.omgeving-card {
  position: relative;
  overflow: hidden;
  cursor: default;
  border-radius: 2px;
}
.omgeving-card--illustrated .omgeving-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  color: var(--color-text-light);
  background: linear-gradient(150deg, var(--card-from, #2a4070) 0%, var(--card-to, #15234a) 100%);
  transition: transform 0.6s var(--ease-out);
  overflow: hidden;
}
.omgeving-card--illustrated:hover .omgeving-card__inner { transform: scale(1.012); }
.omgeving-card--illustrated .omgeving-card__inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(240, 191, 107, 0.18) 0%, transparent 55%);
  pointer-events: none;
}
.omgeving-card--illustrated[data-theme="bigi-pan"] { --card-from: #1a4d3e; --card-to: #0e2c24; }
.omgeving-card--illustrated[data-theme="strandje"] { --card-from: #2a6a8c; --card-to: #133850; }
.omgeving-card--illustrated[data-theme="rijst"] { --card-from: #6e7a2c; --card-to: #3d4218; }
.omgeving-card--illustrated[data-theme="markt"] { --card-from: #9a4225; --card-to: #4a1f12; }
.omgeving-card--illustrated[data-theme="ferry"] { --card-from: #2c4870; --card-to: #15234a; }

.omgeving-card__icon {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 88px;
  height: 88px;
  color: var(--color-sand);
  opacity: 0.9;
  z-index: 1;
}
.omgeving-card--xl .omgeving-card__icon { width: 140px; height: 140px; top: 36px; right: 36px; }

.omgeving-card__overlay { position: relative; z-index: 2; max-width: 90%; }
.omgeving-card__cat {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-sand);
  margin-bottom: 12px;
  font-weight: 500;
}
.omgeving-card__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 350;
  line-height: 1.15;
  font-variation-settings: "opsz" 144, "wght" 380;
  letter-spacing: -0.01em;
}
.omgeving-card__title--big { font-size: 44px; line-height: 1.05; letter-spacing: -0.02em; }
.omgeving-card__desc {
  margin-top: 14px;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 520px;
}

.omgeving-card--xl { grid-column: span 8; min-height: 460px; }
.omgeving-card--md { grid-column: span 4; min-height: 460px; }
.omgeving-card--sm { grid-column: span 4; min-height: 280px; }

@media (max-width: 880px) {
  .omgeving__top { grid-template-columns: 1fr; gap: 24px; }
  .omgeving-card--xl, .omgeving-card--md, .omgeving-card--sm { grid-column: span 12; min-height: 280px; }
  .omgeving-card--illustrated .omgeving-card__inner { padding: 28px; }
  .omgeving-card__icon { width: 72px; height: 72px; top: 22px; right: 22px; }
  .omgeving-card--xl .omgeving-card__icon { width: 96px; height: 96px; }
}

/* ============================================
   GALERIJ
   ============================================ */
.galerij {
  padding: 100px 0;
  background: var(--color-bg-stone);
}
@media (max-width: 768px) { .galerij { padding: 70px 0; } }

.galerij__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 44px;
  align-items: flex-start;
}
.galerij__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1;
  letter-spacing: -0.022em;
  font-variation-settings: "opsz" 144, "wght" 320;
}
.galerij__title em {
  font-style: italic;
  color: var(--color-accent);
  font-variation-settings: "opsz" 144, "wght" 280;
}

.galerij__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.galerij__item {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-dark);
  border-radius: 1px;
}
.galerij__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.galerij__item:hover img { transform: scale(1.06); }
.galerij__item--tall { grid-row: span 2; }

@media (max-width: 980px) {
  .galerij__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
}
@media (max-width: 540px) {
  .galerij__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .galerij__item--tall { grid-row: auto; }
}

/* ============================================
   STEMMEN — TESTIMONIALS
   ============================================ */
.stemmen {
  padding: 100px 0;
  background: var(--color-bg-darker);
  color: var(--color-text-light);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) { .stemmen { padding: 70px 0; } }

.stemmen::before {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 122, 46, 0.14) 0%, transparent 65%);
  pointer-events: none;
}

.stemmen__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 44px;
  align-items: flex-start;
}
.stemmen__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1;
  letter-spacing: -0.022em;
  font-variation-settings: "opsz" 144, "wght" 320;
  color: var(--color-text-light);
}
.stemmen__title em {
  font-style: italic;
  color: var(--color-sand);
  font-variation-settings: "opsz" 144, "wght" 280;
}

.stemmen__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  position: relative;
}
.stem {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 36px 32px 32px;
  position: relative;
  border: 1px solid var(--color-line-night);
  background: rgba(250, 245, 236, 0.025);
  transition: background 0.4s, border-color 0.4s;
}
.stem:hover {
  background: rgba(250, 245, 236, 0.04);
  border-color: rgba(240, 191, 107, 0.32);
}
.stem__quote-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 80px;
  line-height: 0.6;
  color: var(--color-accent);
  opacity: 0.5;
  font-variation-settings: "opsz" 144, "wght" 280;
}
.stem blockquote {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.5;
  color: var(--color-text-light);
  font-weight: 300;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 144, "wght" 350;
}
.stem figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 18px;
  border-top: 1px solid var(--color-line-night);
}
.stem__name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--color-sand);
  font-variation-settings: "opsz" 144, "wght" 380;
}
.stem__meta {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 500;
}

@media (max-width: 980px) {
  .stemmen__grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================
   CHAPTER 06 — PRAKTISCH
   ============================================ */
.chapter--praktisch { background: var(--color-bg); }

.praktisch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.praktisch__h {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 350;
  color: var(--color-bg-dark);
  margin-bottom: 12px;
  font-variation-settings: "opsz" 144, "wght" 380;
  letter-spacing: -0.014em;
}
.praktisch__sub {
  color: var(--color-text-soft);
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.map {
  width: 100%;
  aspect-ratio: 4/3;
  border: 1px solid var(--color-line);
  overflow: hidden;
  margin-bottom: 28px;
  background: var(--color-bg-soft);
}
.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.15) saturate(0.85);
}

.praktisch__points {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.praktisch__points li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-line);
  align-items: baseline;
}
.praktisch__points li:last-child { border-bottom: 0; }
.praktisch__points li > span:first-child {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--color-accent);
  font-variation-settings: "opsz" 144, "wght" 380;
}
.praktisch__points li > span:last-child {
  font-size: 15px;
  color: var(--color-text);
}

/* FAQ accordion */
.faq {
  display: flex;
  flex-direction: column;
  margin-top: 12px;
}
.faq__item {
  border-bottom: 1px solid var(--color-line);
  padding: 4px 0;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 350;
  color: var(--color-bg-dark);
  font-variation-settings: "opsz" 144, "wght" 400;
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--color-accent); }
.faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.3s var(--ease-out);
  top: 50%;
  left: 50%;
}
.faq__icon::before {
  width: 14px;
  height: 1px;
  transform: translate(-50%, -50%);
}
.faq__icon::after {
  width: 1px;
  height: 14px;
  transform: translate(-50%, -50%);
}
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__item[open] summary { color: var(--color-accent); }
.faq__item p {
  padding: 0 0 24px;
  color: var(--color-text-soft);
  font-size: 15px;
  line-height: 1.7;
  max-width: 560px;
}

@media (max-width: 980px) {
  .praktisch { grid-template-columns: 1fr; gap: 60px; }
}

/* ============================================
   BOOKING / CALL TO ACTION
   ============================================ */
.booking {
  background: var(--color-bg-darker);
  color: var(--color-text-light);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) { .booking { padding: 70px 0; } }

.booking::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://static.wixstatic.com/media/7cfcde_532b391332be400f960989096108a12b~mv2.jpg/v1/fit/w_1920,h_900,q_90,enc_avif,quality_auto/7cfcde_532b391332be400f960989096108a12b~mv2.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.16;
  filter: saturate(0.7);
}
.booking__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.booking__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.022em;
  font-variation-settings: "opsz" 144, "wght" 320;
  margin: 24px 0 32px;
}
.booking__title em {
  font-style: italic;
  color: var(--color-sand);
  font-variation-settings: "opsz" 144, "wght" 280;
}
.booking__sub {
  max-width: 620px;
  margin: 0 auto 48px;
  color: var(--color-text-muted);
  font-size: 17px;
  line-height: 1.6;
}
.booking__actions {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.booking__phones {
  margin-top: 60px;
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.booking__phones-label {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.booking__phones-list {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--color-text-light);
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  font-variation-settings: "opsz" 144, "wght" 380;
}
.booking__phones-list a:hover { color: var(--color-accent-warm); }

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 100px 0;
  background: var(--color-bg);
}
@media (max-width: 768px) { .contact { padding: 70px 0; } }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact__info-block { margin-bottom: 36px; }
.contact__info-label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  margin-bottom: 10px;
  display: block;
}
.contact__info-value {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--color-bg-dark);
  line-height: 1.3;
  font-variation-settings: "opsz" 144, "wght" 400;
}
.contact__info-value a:hover { color: var(--color-accent); }

.contact__form {
  background: var(--color-bg-soft);
  padding: 48px 40px;
  border: 1px solid var(--color-line);
}
.contact__form-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--color-bg-dark);
  margin-bottom: 8px;
  font-variation-settings: "opsz" 144, "wght" 400;
}
.contact__form-sub {
  color: var(--color-text-soft);
  font-size: 14px;
  margin-bottom: 28px;
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--color-line);
  outline: none;
  transition: border-color 0.3s;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus { border-bottom-color: var(--color-accent); }
.form-row textarea { resize: vertical; min-height: 80px; }
.form-row--two { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-row--checkbox { padding: 4px 0; }
.form-checkbox {
  display: flex;
  gap: 12px;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: var(--color-text);
}
.form-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
  cursor: pointer;
}
.form-submit { margin-top: 12px; width: 100%; justify-content: center; }

@media (max-width: 880px) {
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .contact__form { padding: 36px 24px; }
  .form-row--two { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-bg-night);
  color: var(--color-text-muted);
  padding: 80px 0 40px;
  border-top: 1px solid var(--color-line-night);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer__brand img.footer__logo {
  height: 80px;
  width: auto;
  margin-bottom: 24px;
  display: block;
}
.footer__brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 360px;
}
.footer__col h4 {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 22px;
  font-weight: 500;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 14px; transition: color 0.3s; }
.footer__col a:hover { color: var(--color-accent-warm); }
.footer__social { display: flex; gap: 12px; margin-top: 8px; }
.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(212, 181, 149, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.footer__social a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: white;
}
.footer__social svg { width: 16px; height: 16px; }

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid var(--color-line-night);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--color-text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: span 2; }
}
@media (max-width: 540px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .footer__brand img.footer__logo { height: 64px; }
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  z-index: 90;
  transition: transform 0.3s var(--ease-out);
  animation: pulse 2.5s infinite;
}
.float-whatsapp:hover { transform: scale(1.08); }
.float-whatsapp svg { width: 26px; height: 26px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 0 0 16px rgba(37, 211, 102, 0); }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.in-view { opacity: 1; transform: none; transition: none; }
  .hero__slide img { animation: none; }
  .hero__scroll-line::after { animation: none; }
}

/* ============================================
   MOBILE REFINEMENTS
   Tighter spacing, better hierarchy on phones.
   ============================================ */
@media (max-width: 720px) {
  .container { padding: 0 22px; }

  /* Topbar — hide phones, leave only the location pin */
  .topbar { padding: 8px 0; font-size: 11px; }

  /* Hero — tighter padding, smaller scroll-cue */
  .hero { min-height: 560px; }
  .hero__content { padding-bottom: 90px; }
  .hero__inner { gap: 30px; padding: 0 22px; }
  .hero__chapter { gap: 12px; margin-bottom: 18px; }
  .hero__chapter-label { padding-left: 22px; }
  .hero__chapter-label::before { width: 14px; }
  .hero__sub { font-size: 15px; margin-top: 20px; }
  .hero__actions { margin-top: 28px; gap: 10px; }
  .hero__actions .btn { padding: 13px 22px; font-size: 11px; }
  .hero__nav { bottom: 22px; right: 22px; }
  .hero__nav-btn { width: 38px; height: 38px; }

  /* Chapters — tighter rhythm */
  .chapter { padding: 70px 0; }
  .chapter__head { gap: 14px; margin-bottom: 32px; }
  .chapter__num { font-size: 15px; padding-right: 16px; }
  .chapter__num::after { height: 14px; }
  .chapter__label { font-size: 10px; letter-spacing: 0.28em; }

  .section-head { gap: 18px; margin-bottom: 44px; }
  .section-head__sub { font-size: 15px; }

  /* Aankomst */
  .aankomst__strip { margin-top: 56px; }
  .aankomst__stat { padding: 24px 14px; }
  .aankomst__stat-num { font-size: 34px; }
  .aankomst__stat-label { font-size: 10px; letter-spacing: 0.18em; }

  /* Verblijven */
  .verblijven-grid { gap: 60px; }
  .room__title { gap: 12px; margin-bottom: 18px; }
  .room__title-divider { width: 24px; }
  .room__desc { font-size: 15px; margin-bottom: 22px; }
  .room__specs > div { padding-right: 0; }
  .room__actions { gap: 18px; }
  .room__tag { font-size: 9px; padding: 6px 11px; letter-spacing: 0.18em; }

  /* Comfort */
  .comfort { gap: 32px; }
  .comfort__group--accent { padding: 26px 22px; }
  .comfort__group-title { font-size: 22px; }
  .comfort__list li { font-size: 14px; }

  /* Belevingen */
  .beleving { padding: 32px 24px 36px; gap: 14px; }
  .beleving__title { font-size: 24px; }
  .beleving__desc { font-size: 14px; }

  /* Omgeving */
  .omgeving__top { margin-bottom: 44px; }
  .omgeving__grid { gap: 16px; }
  .omgeving-card--xl, .omgeving-card--md, .omgeving-card--sm { min-height: 260px; }
  .omgeving-card--illustrated .omgeving-card__inner { padding: 22px; }
  .omgeving-card__title { font-size: 22px; }
  .omgeving-card__title--big { font-size: 32px; }
  .omgeving-card__desc { font-size: 13px; }

  /* Galerij */
  .galerij { padding: 70px 0; }
  .galerij__head { margin-bottom: 36px; }
  .galerij__title { font-size: clamp(30px, 7vw, 44px); }

  /* Stemmen */
  .stemmen { padding: 70px 0; }
  .stemmen__head { margin-bottom: 36px; }
  .stem { padding: 28px 22px 24px; }
  .stem__quote-mark { font-size: 60px; }
  .stem blockquote { font-size: 17px; }

  /* Praktisch */
  .praktisch__h { font-size: 26px; }
  .praktisch__points li { grid-template-columns: 70px 1fr; gap: 12px; padding: 12px 0; }
  .praktisch__points li > span:first-child { font-size: 15px; }
  .praktisch__points li > span:last-child { font-size: 14px; }
  .faq__item summary { padding: 18px 0; font-size: 17px; }
  .faq__item p { font-size: 14px; padding-bottom: 18px; }

  /* Booking CTA */
  .booking { padding: 70px 0; }
  .booking__sub { font-size: 15px; margin-bottom: 32px; }
  .booking__phones { margin-top: 40px; }
  .booking__phones-list { font-size: 16px; gap: 18px; }

  /* Contact */
  .contact { padding: 70px 0; }
  .contact__form { padding: 32px 22px; }
  .contact__info-value { font-size: 19px; }
  .contact__info-block { margin-bottom: 28px; }

  /* Footer */
  .footer { padding: 60px 0 32px; }
  .footer__grid { gap: 36px; margin-bottom: 44px; }
  .footer__bottom { font-size: 11px; gap: 10px; }

  /* Tarieven on mobile */
  .tarieven { margin-top: 60px; padding: 32px 22px 28px; }
  .tarieven__title { font-size: 30px; }
  .tarieven__name { font-size: 19px; }
  .tarieven__meta { font-size: 11px; }
  .tarieven__price { font-size: 16px; }

  /* Float WhatsApp doesn't overlap CTAs on small screens */
  .float-whatsapp { width: 50px; height: 50px; bottom: 18px; right: 18px; }
  .float-whatsapp svg { width: 22px; height: 22px; }
}

@media (max-width: 420px) {
  .hero__title { font-size: 42px; }
  .room__title { font-size: 32px; }
  .room__title em { font-size: 16px; }
  .booking__title, .section-head__title { font-size: 36px; }
  .galerij__title, .stemmen__title { font-size: 30px; }
  .btn { padding: 14px 22px; }
}
