/* =========================================================
   Hankie Pankie
   Palette: cream, rose-terracotta, sun, sea-teal, ink
   ========================================================= */

:root {
  --cream: #FBF6EE;
  --cream-2: #F4ECDD;
  --sand: #E8DBC2;
  --ink: #1E1A16;
  --ink-soft: #5A4E44;
  --muted: #8B7E70;
  --terracotta: #5b7ef7;
  --terracotta-dark: #3f62db;
  --sun: #E8A33D;
  --sea: #2a7a6f;
  --sea-deep: #1d5e55;
  --white: #ffffff;
  --border: #E5DCC9;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 14px rgba(30, 26, 22, 0.06);
  --shadow: 0 14px 40px rgba(30, 26, 22, 0.10);
  --shadow-lg: 0 30px 80px rgba(30, 26, 22, 0.18);

  --ff-display: "Playfair Display", "Times New Roman", serif;
  --ff-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --container: 1200px;
  --pad: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 .4em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6.4vw, 5.5rem); line-height: 1.02; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); line-height: 1.08; }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.6rem); line-height: 1.2; }
h4 { font-size: 1.05rem; font-family: var(--ff-sans); font-weight: 600; letter-spacing: 0; }
p  { margin: 0 0 1em; color: var(--ink-soft); }

.italic { font-style: italic; font-family: var(--ff-display); color: var(--terracotta); }

/* ===== Multilingual switching (NL / EN / ES / IT) ===== */
/* Verberg elk taalblok dat niet bij de actieve html[lang] hoort; matchende
   blokken houden hun standaard display (inline/block). */
html[lang="nl"] [data-lang]:not([data-lang="nl"]),
html[lang="en"] [data-lang]:not([data-lang="en"]),
html[lang="es"] [data-lang]:not([data-lang="es"]),
html[lang="it"] [data-lang]:not([data-lang="it"]) { display: none !important; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 3px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lang-switch button {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.85);
  padding: 5px 10px;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  transition: background .2s, color .2s;
}
.lang-switch button.is-active {
  background: #fff;
  color: var(--ink);
}
.nav.scrolled .lang-switch {
  background: var(--cream);
  border-color: var(--border);
}
.nav.scrolled .lang-switch button { color: var(--ink-soft); }
.nav.scrolled .lang-switch button.is-active {
  background: var(--terracotta);
  color: #fff;
}

.kombinnen {
  white-space: nowrap;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
}

.eyebrow {
  font-family: var(--ff-sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--terracotta);
  margin: 0 0 1rem;
}
.eyebrow.light { color: var(--sun); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 10px 30px rgba(200, 85, 61, 0.35);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(200, 85, 61, 0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(30, 26, 22, 0.18);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn-secondary {
  background: transparent;
  color: var(--terracotta);
  border-color: var(--terracotta);
}
.btn-secondary:hover { background: var(--terracotta); color: #fff; }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 18px 36px; font-size: 16px; }

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav.scrolled {
  background: rgba(251, 246, 238, 0.85);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  box-shadow: 0 1px 0 rgba(30, 26, 22, .06);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: var(--ff-display);
  letter-spacing: 0.02em;
}
.nav.scrolled .logo,
.nav.menu-open .logo { color: var(--ink); }
.logo-mark {
  width: 44px; height: 44px;
  border-radius: 999px;
  object-fit: contain;
  background: rgba(255,255,255,0.85);
  padding: 2px;
  transition: background .35s ease;
}
.nav.scrolled .logo-mark,
.nav.menu-open .logo-mark { background: transparent; padding: 0; }
.footer .logo { gap: 14px; align-items: center; }
.footer .logo-mark {
  width: 68px; height: 68px;
  background: #fff;
  padding: 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.footer .logo-text { font-size: 22px; }
.logo-text { font-size: 19px; font-weight: 500; }
.logo-dark { color: var(--ink); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255,255,255,.92);
  font-size: 14.5px;
  font-weight: 500;
}
.nav-links a { transition: color .25s ease; position: relative; }
.nav-links a:hover { color: var(--sun); }
.nav.scrolled .nav-links { color: var(--ink); }
.nav.scrolled .nav-links a:hover { color: var(--terracotta); }

.nav-burger {
  display: none;
  background: none;
  border: 0;
  width: 38px; height: 38px;
  cursor: pointer;
  padding: 8px;
}
.nav-burger span {
  display: block; height: 2px; width: 100%;
  background: #fff;
  margin: 5px 0;
  transition: background .25s;
}
.nav.scrolled .nav-burger span,
.nav.menu-open .nav-burger span { background: var(--ink); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: -1;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: hero-pan 18s ease-in-out infinite alternate;
}
@keyframes hero-pan {
  from { transform: scale(1.05) translate3d(0,0,0); }
  to   { transform: scale(1.12) translate3d(-1.5%, -1.5%, 0); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8,12,12,.55) 0%,
    rgba(8,12,12,0)   28%,
    rgba(8,12,12,.65) 62%,
    rgba(8,12,12,.85) 100%
  );
}

.hero-content {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad) clamp(60px, 10vh, 120px);
  position: relative;
  z-index: 2;
}
.hero-content .eyebrow {
  color: var(--sun);
  margin-bottom: 1.4rem;
}
.hero h1 {
  color: #fff;
  max-width: 14ch;
  margin-bottom: .4em;
  text-shadow: 0 2px 20px rgba(0,0,0,.5), 0 1px 4px rgba(0,0,0,.35);
}
.hero h1 .italic { color: var(--sun); }
.hero-sub {
  color: rgba(255,255,255,.92);
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 54ch;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 3rem;
}
.hero-actions .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.hero-actions .btn-ghost:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 3vw, 40px);
  max-width: 640px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.22);
}
.hero-meta div {
  display: flex;
  flex-direction: column;
}
.hero-meta div { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; }
.hero-meta .hm-num {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-meta .hm-lbl {
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.3;
}
@media (max-width: 560px) {
  .hero-meta .hm-lbl { font-size: 11px; letter-spacing: 0.04em; }
}

.scroll-cue {
  position: absolute;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 44px;
  border: 1.5px solid rgba(255,255,255,.5);
  border-radius: 14px;
  display: grid; place-items: start center;
  padding-top: 8px;
  z-index: 2;
}
.scroll-cue span {
  width: 3px; height: 8px;
  background: #fff; border-radius: 2px;
  animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%,100% { transform: translateY(0); opacity: .4; }
  50%     { transform: translateY(10px); opacity: 1; }
}

/* ===== Sections base ===== */
section { padding: clamp(72px, 10vw, 140px) 0; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 80px);
  padding: 0 var(--pad);
}
.section-head h2 { margin-bottom: .3em; }
.section-lead {
  font-size: 17px;
  color: var(--ink-soft);
}
.section-head.light .eyebrow,
.section-head.light h2 { color: var(--ink); }

/* ===== INTRO ===== */
.intro {
  background: var(--cream);
}
.intro-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.intro-text h2 { margin-bottom: 1.2rem; }
.intro-text p { font-size: 17px; max-width: 52ch; line-height: 1.75; color: var(--ink-soft); margin-bottom: 1.1em; }
.intro-text p:last-of-type { margin-bottom: 0; }
.intro-desc p {
  font-size: 17px;
  max-width: 52ch;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 1.1em;
}
.intro-desc p:last-child { margin-bottom: 0; }
.signature {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--terracotta);
  margin-top: 2rem;
  font-size: 1.05rem;
}
.intro-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
}
.intro-media img { width: 100%; height: 100%; object-fit: cover; }
.intro-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(251, 246, 238, 0.92);
  backdrop-filter: blur(10px);
  padding: 18px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.intro-badge small {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
}
.intro-badge strong {
  display: block;
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: 2.8rem;
  color: var(--terracotta);
  margin-top: 4px;
  line-height: 1;
  letter-spacing: -.04em;
}

/* ===== FEATURES ===== */
.features {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.feature-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.feature-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.feature-card-tall .feature-img { aspect-ratio: 4/4.5; }
.feature-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.feature-card:hover .feature-img img { transform: scale(1.06); }
.feature-card h3 {
  padding: 28px 28px 6px;
}
.feature-card p {
  padding: 0 28px 28px;
  margin: 0;
}

/* ===== GALLERY / Masonry ===== */
.gallery { background: var(--cream); }
.masonry {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}
.m-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand);
  grid-row: span 2;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.m-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.m-item:hover img { transform: scale(1.05); }
.m-tall { grid-row: span 3; }
.m-wide { grid-column: span 2; }

/* ===== SURROUNDINGS ===== */
.surroundings {
  background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
}
.surroundings-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.surroundings-text h2 { margin-bottom: 1.2rem; }
.loc-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.loc-list li {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.loc-list .loc-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.loc-list .loc-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.loc-list strong {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--terracotta);
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
}
.loc-list .loc-desc {
  margin: 5px 0 0;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}
/* legacy: plain string highlights */
.loc-list span { color: var(--ink-soft); font-size: 15px; }
/* Location tabs */
.loc-tabs-wrap { margin-top: 2rem; }
.loc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0;
  padding-bottom: 0;
}
.loc-tab {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
  font-family: var(--ff-sans);
}
.loc-tab:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}
.loc-tab.active {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: #fff;
}
.loc-panel { display: none; margin-top: 0; border-top: 1px solid var(--border); }
.loc-panel.active { display: grid; }
.loc-list li.loc-item-hidden { display: none; }
.loc-show-more { list-style: none; padding: 12px 0 4px; }
.loc-more-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 18px;
  font-size: .85rem;
  font-family: var(--ff-sans);
  color: var(--ink-soft);
  cursor: pointer;
  transition: border-color .15s, color .15s;
}
.loc-more-btn:hover { border-color: var(--terracotta); color: var(--terracotta); }

.loc-route {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--terracotta);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--terracotta);
  text-decoration: none;
  transition: background .2s, color .2s;
}
.loc-route:hover { background: var(--terracotta); color: #fff; }
.loc-route svg { flex-shrink: 0; }

.surroundings-collage {
  position: relative;
  aspect-ratio: 1/1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 14px;
}
.surroundings-collage img {
  border-radius: var(--radius);
  width: 100%; height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}
.surroundings-collage .c1 { grid-column: 1 / span 4; grid-row: 1 / span 3; }
.surroundings-collage .c2 { grid-column: 5 / span 2; grid-row: 1 / span 3; }
.surroundings-collage .c3 { grid-column: 1 / span 2; grid-row: 4 / span 3; }
.surroundings-collage .c4 { grid-column: 3 / span 4; grid-row: 4 / span 3; }

/* ===== GOLF ===== */
.golf {
  position: relative;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(90px, 12vw, 160px) 0;
}
.golf-media {
  position: absolute; inset: 0;
  z-index: -1;
}
.golf-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.golf-media-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(20, 50, 45, 0.92) 0%, rgba(20, 50, 45, 0.78) 45%, rgba(20, 50, 45, 0.35) 100%),
    radial-gradient(60% 80% at 20% 50%, rgba(232, 163, 61, 0.18) 0%, transparent 70%);
}
.golf-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.golf-text h2 { color: #fff; margin-bottom: 1.2rem; }
.golf-text h2 .italic { color: var(--sun); }
.golf-text p {
  color: rgba(255,255,255,0.88);
  max-width: 52ch;
}
.golf-text strong { color: #fff; font-weight: 600; }
.golf-text em { color: var(--sun); font-style: italic; font-family: var(--ff-display); }

.golf-stats {
  list-style: none;
  margin: 2.2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 24px;
}
.golf-stats strong {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
  font-weight: 500;
}
.golf-stats span {
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
}

.golf-cards {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 140px auto;
  gap: 18px;
}
.golf-card {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform .35s ease;
}
.golf-card:hover { transform: translateY(-3px); }
.golf-card img { display: block; transition: transform .8s ease; }
.golf-card:hover img { transform: scale(1.04); }
.golf-ext {
  position: absolute;
  top: 16px; right: 18px;
  color: rgba(255, 255, 255, 0.95);
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.55));
  z-index: 2;
  transition: transform .25s ease, color .25s ease;
}
.golf-card:hover .golf-ext {
  transform: translate(2px, -2px);
  color: var(--sun);
}
.golf-ext svg { width: 20px; height: 20px; stroke-width: 2; }
.golf-card img { width: 100%; height: 100%; object-fit: cover; }
.golf-card figcaption {
  position: absolute;
  left: 18px; bottom: 16px;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,0.45);
}
.golf-card figcaption strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 2px;
  color: #fff;
}
.golf-card figcaption span {
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
}
.golf-card-1 { grid-column: 1 / span 2; grid-row: 1; }
.golf-card-2 { grid-column: 1; grid-row: 2; }
.golf-card-3 { grid-column: 2; grid-row: 2; }

.golf-badge {
  grid-column: 1 / span 2; grid-row: 3;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 16px 22px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.88);
  font-size: 13.5px;
  line-height: 1.4;
  text-align: center;
}
.golf-badge svg {
  width: 28px; height: 28px;
  color: var(--sun);
}

@media (max-width: 900px) {
  .golf-grid { grid-template-columns: 1fr; }
  .golf-cards { grid-template-rows: 220px 160px auto; }
}
@media (max-width: 560px) {
  .golf-stats { grid-template-columns: 1fr 1fr; }
  .golf-cards {
    grid-template-columns: 1fr;
    grid-template-rows: 200px 160px 160px auto;
  }
  .golf-card-1 { grid-column: 1; grid-row: 1; }
  .golf-card-2 { grid-column: 1; grid-row: 2; }
  .golf-card-3 { grid-column: 1; grid-row: 3; }
  .golf-badge { grid-column: 1; grid-row: 4; }
}

/* ===== PRACTICAL ===== */
.practical {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  color: var(--ink);
}
.practical-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.p-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  box-shadow: 0 2px 10px rgba(30, 26, 22, 0.03);
}
.p-card:hover {
  border-color: rgba(200, 85, 61, 0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.p-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(200, 85, 61, 0.08);
  color: var(--terracotta);
  display: grid; place-items: center;
  margin-bottom: 22px;
  transition: background .3s ease, color .3s ease;
}
.p-card:hover .p-icon {
  background: var(--terracotta);
  color: #fff;
}
.p-icon svg { width: 26px; height: 26px; }
.p-card h4 { color: var(--ink); margin-bottom: 14px; }
.p-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-card li {
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 14.5px;
}
.p-card li:last-child { border-bottom: 0; }
.p-card p { color: var(--ink-soft); margin: 0; font-size: 14.5px; }
.p-card-accent {
  background: linear-gradient(160deg, rgba(232,163,61,.18), rgba(200,85,61,.14));
  border-color: rgba(232,163,61,.4);
}
.p-card-accent .p-icon {
  background: rgba(255, 255, 255, 0.7);
  color: var(--terracotta);
}

/* Full-width banner card spanning the practical grid */
.p-card-banner {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  padding: 28px 32px;
  background: linear-gradient(120deg, rgba(232,163,61,.14), rgba(200,85,61,.10));
  border-color: rgba(232,163,61,.4);
}
.p-card-banner .p-icon { margin-bottom: 0; width: 60px; height: 60px; }
.p-card-banner .p-icon svg { width: 30px; height: 30px; }
.p-card-banner h4 { margin-bottom: 4px; font-size: 1.2rem; }
.p-card-banner p { font-size: 15px; max-width: 80ch; }

@media (max-width: 720px) {
  .p-card-banner {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 24px 22px;
  }
}

/* ===== QUOTE ===== */
.quote {
  background: var(--cream);
  text-align: center;
}
.quote figure {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.quote blockquote {
  margin: 0;
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.3;
  color: var(--ink);
  font-weight: 400;
}
.quote blockquote em { color: var(--terracotta); }
.quote figcaption {
  margin-top: 28px;
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ===== CTA ===== */
.cta {
  position: relative;
  background: var(--cream);
  padding: clamp(80px, 10vw, 140px) 0;
}
.cta-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.cta-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow);
  transform: translateY(0);
  transition: transform .5s ease;
}
.cta-photo:hover { transform: translateY(-6px); }
.cta-photo img { width: 100%; height: 100%; object-fit: cover; }
.cta-photo-left  { transform: translateY(-16px); }
.cta-photo-right { transform: translateY(16px); }
.cta-photo-left:hover  { transform: translateY(-22px); }
.cta-photo-right:hover { transform: translateY(10px); }

.cta-content {
  text-align: center;
  padding: 0 8px;
}
.cta-content .eyebrow { color: var(--terracotta); }
.cta-content h2 { color: var(--ink); margin-bottom: 1rem; }
.cta-content h2 .italic { color: var(--terracotta); }
.cta-sub {
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 44ch;
  margin: 0 auto 2.4rem;
}
.cta-foot {
  margin-top: 1.6rem;
  font-size: 14px;
  color: var(--muted);
}
.cta-foot a {
  color: var(--terracotta);
  border-bottom: 1px solid rgba(200, 85, 61, 0.35);
  padding-bottom: 1px;
  white-space: nowrap;
}
.cta-foot-sep {
  margin: 0 8px;
  color: rgba(30, 26, 22, 0.25);
}

@media (max-width: 900px) {
  .cta-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "content content"
      "left right";
    gap: 28px;
  }
  .cta-content { grid-area: content; }
  .cta-photo-left  { grid-area: left;  transform: none; }
  .cta-photo-right { grid-area: right; transform: none; }
  .cta-photo { aspect-ratio: 4/5; }
}
@media (max-width: 560px) {
  .cta-grid { grid-template-columns: 1fr; grid-template-areas: "content" "left" "right"; }
  .cta-photo { aspect-ratio: 16/10; }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  color: rgba(251, 246, 238, 0.7);
  padding: 56px 0 36px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 36px;
  align-items: start;
}
.footer .logo { color: var(--cream); }
.footer-tag {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(251,246,238,.6);
}
.footer-nav {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 14.5px;
}
.footer-nav a { color: rgba(251,246,238,.8); transition: color .25s; }
.footer-nav a:hover { color: var(--sun); }
.footer-meta { text-align: right; font-size: 13px; color: rgba(251,246,238,.5); }

/* ===== MODAL ===== */
.modal {
  position: fixed; inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}
.modal[hidden] { display: none; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(20, 18, 14, 0.6);
  backdrop-filter: blur(8px);
}
.modal-panel {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: modal-in .35s cubic-bezier(.2,.8,.2,1);
}
@keyframes modal-in {
  from { transform: translateY(20px) scale(.96); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.modal-close {
  position: absolute; top: 14px; right: 18px;
  background: none; border: 0;
  font-size: 30px; cursor: pointer;
  color: var(--muted);
  line-height: 1;
}
.modal-close:hover { color: var(--ink); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav.menu-open {
    background: rgba(251, 246, 238, 0.97);
    backdrop-filter: saturate(1.4) blur(14px);
    -webkit-backdrop-filter: saturate(1.4) blur(14px);
  }
  .nav.menu-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 18px var(--pad) 24px;
    color: var(--ink);
    background: rgba(251, 246, 238, 0.98);
    backdrop-filter: saturate(1.4) blur(14px);
    -webkit-backdrop-filter: saturate(1.4) blur(14px);
    border-top: 1px solid var(--border);
    box-shadow: 0 12px 28px rgba(30, 26, 22, 0.12);
    gap: 0;
  }
  .nav.menu-open .nav-links > a {
    color: var(--ink);
    padding: 14px 4px;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
    font-weight: 500;
  }
  .nav.menu-open .nav-links > a:last-child { border-bottom: 0; }
  .nav.menu-open .nav-links .lang-switch {
    margin: 14px 0 4px;
    align-self: flex-start;
    background: var(--cream);
    border-color: var(--border);
  }
  .nav.menu-open .nav-links .lang-switch button { color: var(--ink-soft); }
  .nav.menu-open .nav-links .lang-switch button.is-active { background: var(--terracotta); color: #fff; }
  .nav.menu-open .nav-links .nav-book {
    align-self: stretch;
    text-align: center;
    margin-top: 8px;
    padding: 14px 22px;
    border-bottom: 0;
  }
  .intro-grid,
  .surroundings-grid {
    grid-template-columns: 1fr;
  }
  .intro-media { aspect-ratio: 4/3; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card-tall .feature-img { aspect-ratio: 4/3; }
  .masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }
  .m-wide { grid-column: span 2; }
  .practical-grid { grid-template-columns: 1fr 1fr; }
  .loc-list { grid-template-columns: 1fr; }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-meta { text-align: center; }
  .footer-nav { justify-content: center; }
}

@media (max-width: 640px) {
  /* Gallery becomes a horizontal swipeable slideshow on mobile */
  .masonry {
    display: flex;
    grid-template-columns: none;
    grid-auto-rows: auto;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 20px;
    gap: 12px;
    padding: 4px 20px 16px;
    margin: 0 calc(var(--pad) * -1);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .masonry::-webkit-scrollbar { display: none; }
  .masonry .m-item,
  .masonry .m-item.m-tall,
  .masonry .m-item.m-wide {
    flex: 0 0 84%;
    grid-row: auto;
    grid-column: auto;
    aspect-ratio: 4/5;
    scroll-snap-align: center;
  }
  .masonry .m-item:first-child { scroll-snap-align: start; }
  .masonry .m-item:last-child  { scroll-snap-align: end; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero-meta { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .practical-grid { grid-template-columns: 1fr; }
  .modal-panel { padding: 36px 26px; }
}

/* ===== Floating booking button ===== */
.fab-book {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 40;
  background: var(--terracotta);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 14px 32px rgba(200, 85, 61, 0.4), 0 2px 6px rgba(0, 0, 0, 0.08);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
  text-decoration: none;
  border: 0;
}
.fab-book:hover {
  background: var(--terracotta-dark);
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(200, 85, 61, 0.5), 0 2px 6px rgba(0, 0, 0, 0.08);
}
.fab-book svg { width: 18px; height: 18px; }

/* Hide while booking modal is open (avoid duplicate CTA) */
.modal:not([hidden]) ~ .fab-book,
body:has(.modal:not([hidden])) .fab-book {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

@media (max-width: 560px) {
  .fab-book {
    bottom: 16px;
    right: 16px;
    padding: 12px 14px;
  }
  .fab-book .fab-label { display: none; }
  .fab-book svg { width: 22px; height: 22px; }
}

/* ===== Amenities row ===== */
.amenities {
  list-style: none;
  max-width: var(--container);
  margin: 0 auto clamp(40px, 5vw, 64px);
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 12px;
}
.amenities li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 8px 4px;
  transition: transform .25s ease;
}
.amenities li:hover { transform: translateY(-3px); }
.am-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(200, 85, 61, 0.08);
  color: var(--terracotta);
  display: grid; place-items: center;
  transition: background .25s ease, color .25s ease;
}
.amenities li:hover .am-icon {
  background: var(--terracotta);
  color: #fff;
}
.am-icon svg { width: 26px; height: 26px; }
.am-text {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.3;
}
.am-text strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: 14.5px;
}

@media (max-width: 1100px) {
  .amenities { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 760px) {
  .amenities { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 420px) {
  .amenities { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .amenities { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ===== Booking modal ===== */
.modal-lg {
  padding: 0;
  align-items: stretch;
}
.modal-lg .modal-panel {
  max-width: 1180px;
  width: 100%;
  padding: 0;
  border-radius: var(--radius-lg);
  text-align: left;
  max-height: 94vh;
  overflow: hidden;
  display: flex;
}
.booking-panel { padding: 0; }
.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  width: 100%;
  max-height: 94vh;
}
.booking-left,
.booking-right {
  padding: 32px 34px 24px;
  overflow-y: auto;
  min-width: 0;
}
.booking-left {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.booking-title {
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  margin: 6px 0 6px;
}
.booking-lead {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0 0 18px;
}

.booking-calendar {
  display: flex;
  justify-content: center;
  margin: 0 0 14px;
}
.booking-calendar .easepick-wrapper {
  --primary-color: var(--terracotta);
  --secondary-color: var(--ink);
  --color: var(--ink);
  --bg-color: transparent;
  --border-color: var(--border);
  --day-name-color: var(--muted);
  --day-color: var(--ink);
  --day-color-hover: var(--terracotta);
  --range-color: rgba(200, 85, 61, 0.15);
  --footer-bg-color: var(--cream);
  --locked-color: var(--muted);
  --box-shadow: none;
}

.booking-legend {
  list-style: none;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 18px 0 0;
  padding: 0;
  font-size: 12.5px;
  color: var(--ink-soft);
}
.booking-legend li { display: inline-flex; align-items: center; gap: 8px; }
.lg-dot {
  width: 10px; height: 10px; border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
}
.lg-blocked { background: var(--cream-2); border-color: var(--border); position: relative; }
.lg-blocked::after {
  content: '';
  position: absolute; inset: -2px;
  border-radius: 999px;
  background: linear-gradient(45deg, transparent 45%, var(--muted) 45%, var(--muted) 55%, transparent 55%);
}
.lg-selected { background: var(--terracotta); border-color: var(--terracotta); }

/* Summary card */
.booking-summary {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 24px;
}
.booking-summary .bs-empty,
.booking-summary .bs-loading,
.booking-summary .bs-error,
.booking-summary .bs-content { display: none; }
.booking-summary[data-state="empty"]   .bs-empty   { display: block; }
.booking-summary[data-state="loading"] .bs-loading { display: block; }
.booking-summary[data-state="error"]   .bs-error   { display: block; color: var(--terracotta); }
.booking-summary[data-state="ready"]   .bs-content { display: block; }
.bs-empty p { margin: 0; color: var(--ink-soft); font-size: 14.5px; }
.bs-loading { color: var(--muted); font-size: 14px; font-style: italic; }

.bs-period {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.bs-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.bs-period strong {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 17px;
  color: var(--ink);
  display: block;
}
.bs-time {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
  font-style: italic;
}
.bs-arrow { color: var(--terracotta); font-size: 18px; }
.bs-breakdown {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}
.bs-breakdown li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
  font-size: 14px;
  color: var(--ink-soft);
}
.bs-breakdown li em {
  font-style: italic;
  color: var(--muted);
  margin-left: 4px;
  font-size: 12.5px;
}
.bs-breakdown li strong { color: var(--ink); font-weight: 500; }
.bs-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  color: var(--ink-soft);
}
.bs-row strong { color: var(--ink); font-weight: 500; }
.bs-nights {
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
  margin-bottom: 14px;
  font-size: 15px;
}
.bs-nights strong {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 16px;
}
.bs-price-rows {
  margin-top: 8px;
}
.bs-price-rows .bs-row { color: var(--ink-soft); }
.bs-quote-note {
  margin: 8px 0 0;
  padding: 14px 16px;
  background: rgba(232, 163, 61, 0.10);
  border-left: 3px solid var(--sun);
  border-radius: 4px;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.bs-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.bs-total span { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.bs-total strong {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--terracotta);
}

/* Form */
.booking-form { display: flex; flex-direction: column; gap: 14px; }
.bf-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bf-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  font-family: var(--ff-sans);
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.booking-form textarea { resize: vertical; min-height: 80px; font-family: inherit; }
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(200, 85, 61, 0.12);
}
.bf-error {
  color: var(--terracotta);
  font-size: 13.5px;
  min-height: 0;
}
.bf-error:empty { display: none; }

/* Reizigersregistratie (RD 933/2021) */
.bf-reg {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line, rgba(0,0,0,.1));
  border-radius: 12px;
  background: rgba(0,0,0,.015);
}
.bf-reg-head {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink, #1e1a16);
}
.bf-reg-note {
  margin: -6px 0 0;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}
.bf-consent {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  cursor: pointer;
}
.bf-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  flex-shrink: 0;
  accent-color: var(--terracotta);
}
.bf-sig { display: flex; flex-direction: column; gap: 6px; }
.bf-sig-label { font-size: 13px; font-weight: 500; color: var(--ink, #1e1a16); }
.bf-sig-pad {
  position: relative;
  border: 1px dashed var(--line, rgba(0,0,0,.28));
  border-radius: 10px;
  background: #fff;
  touch-action: none;
}
.bf-sig-pad canvas { display: block; width: 100%; height: 150px; border-radius: 10px; cursor: crosshair; }
.bf-sig-hint {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #b7afa6; font-size: 13px; pointer-events: none;
}
.bf-sig-clear {
  align-self: flex-start;
  background: none; border: none; padding: 0;
  color: var(--terracotta); font-size: 13px; font-weight: 600; cursor: pointer;
}
.bf-disclaimer {
  margin: 4px 0 0;
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
}
.booking-form .btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

@media (max-width: 1000px) {
  .modal-lg { padding: 0; }
  .modal-lg .modal-panel {
    max-height: 100dvh;
    height: 100dvh;
    max-width: 100%;
    width: 100%;
    border-radius: 0;
    overflow-y: auto;
  }
  .booking-grid {
    grid-template-columns: 1fr;
    max-height: none;
  }
  .booking-left,
  .booking-right {
    padding: 24px 20px;
    overflow-y: visible;
  }
  .booking-left {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .booking-title { font-size: 1.5rem; }
  .booking-calendar { margin: 0 -4px 10px; }
  .bf-row-2 { grid-template-columns: 1fr; }
  .modal-lg .modal-close {
    top: 14px; right: 14px;
    background: rgba(255,255,255,0.85);
    border-radius: 999px;
    width: 36px; height: 36px;
    display: grid; place-items: center;
    backdrop-filter: blur(8px);
  }
}

/* ===== Lightbox ===== */
.m-item { cursor: zoom-in; }
.m-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,.35));
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.m-item:hover::after { opacity: 1; }

.lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(15, 12, 10, 0.94);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: clamp(20px, 4vw, 60px);
  animation: lb-in .3s ease;
}
.lightbox[hidden] { display: none; }
@keyframes lb-in { from { opacity: 0; } to { opacity: 1; } }

.lb-stage {
  grid-column: 2;
  margin: 0;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 0;
}
.lb-stage img {
  max-width: 100%;
  max-height: calc(100vh - 160px);
  width: auto; height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
  animation: lb-img-in .35s cubic-bezier(.2,.8,.2,1);
}
@keyframes lb-img-in {
  from { opacity: 0; transform: scale(.96); }
  to   { opacity: 1; transform: none; }
}
.lb-stage figcaption {
  color: rgba(251,246,238,.85);
  font-size: 14px;
  letter-spacing: .04em;
  text-align: center;
  font-family: var(--ff-sans);
}

.lb-close {
  position: absolute;
  top: 20px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background .25s, transform .25s;
  display: grid; place-items: center;
}
.lb-close:hover { background: rgba(255,255,255,0.18); transform: rotate(90deg); }

.lb-nav {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .25s, transform .25s;
  flex-shrink: 0;
}
.lb-nav:hover { background: var(--terracotta); border-color: var(--terracotta); }
.lb-nav svg { width: 24px; height: 24px; }
.lb-prev { grid-column: 1; }
.lb-next { grid-column: 3; }

.lb-counter {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(251,246,238,.6);
  font-family: var(--ff-sans);
}

@media (max-width: 640px) {
  .lightbox { padding: 16px; gap: 8px; }
  .lb-nav { width: 44px; height: 44px; }
  .lb-close { top: 12px; right: 12px; width: 42px; height: 42px; font-size: 24px; }
  .lb-stage img { max-height: calc(100vh - 140px); }
}

/* ===== Thanks / boeking-aangevraagd ===== */
.page-thanks {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 60%, var(--cream) 100%);
}
.nav-static {
  position: relative;
  background: rgba(251, 246, 238, 0.85);
  backdrop-filter: saturate(1.4) blur(14px);
  box-shadow: 0 1px 0 rgba(30, 26, 22, .06);
}
.thanks {
  min-height: calc(100vh - 220px);
  display: grid;
  place-items: center;
  padding: clamp(40px, 8vw, 96px) var(--pad);
}
.thanks-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 64px);
  max-width: 640px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow);
}
.thanks-icon {
  width: 72px; height: 72px;
  margin: 0 auto 22px;
  display: grid; place-items: center;
  color: var(--terracotta);
  background: rgba(200, 85, 61, 0.08);
  border-radius: 999px;
}
.thanks-icon svg { width: 40px; height: 40px; }
.thanks h1 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.1;
  margin: 0 0 14px;
}
.thanks-lead {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 44ch;
  margin: 0 auto 24px;
}
.thanks-summary {
  margin: 24px 0;
  padding: 18px 20px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: left;
}
.thanks-summary ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.thanks-summary li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.thanks-summary li:last-child { border-bottom: 0; }
.thanks-summary span {
  color: var(--muted);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.thanks-summary strong {
  color: var(--ink);
  font-weight: 500;
  font-family: var(--ff-display);
}
.thanks-price-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.thanks-price-rows li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--border);
}
.thanks-price-rows li:last-child { border-bottom: 0; }
.thanks-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0 4px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.thanks-total span {
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.thanks-total strong {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--terracotta);
}
.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 24px 0 14px;
}
.thanks-foot {
  margin: 16px 0 0;
  font-size: 13.5px;
  color: var(--muted);
}
.thanks-foot a {
  color: var(--terracotta);
  white-space: nowrap;
  border-bottom: 1px solid rgba(200, 85, 61, 0.3);
}

/* ===== Reveal on scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2,.8,.2,1);
}
.reveal.in-view { opacity: 1; transform: none; }
.hero.reveal { opacity: 1; transform: none; } /* hero always visible */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ===== Reviews sectie (Google Places API) ===== */
.reviews {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  padding: clamp(56px, 8vw, 100px) 0;
}
.reviews .section-head { margin-bottom: clamp(28px, 4vw, 48px); }
.reviews-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.reviews-stars {
  font-size: 22px;
  color: var(--sun);
  letter-spacing: 2px;
  line-height: 1;
}
.reviews-score {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.reviews-meta {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.reviews-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 960px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: 0 2px 10px rgba(30, 26, 22, 0.03);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(200, 85, 61, 0.3);
}
.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(200, 85, 61, 0.12);
  display: grid;
  place-items: center;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--terracotta);
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-avatar-fallback { line-height: 1; }
.review-meta { display: flex; flex-direction: column; min-width: 0; }
.review-meta strong {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 220px;
}
.review-when {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.review-stars {
  font-size: 16px;
  color: var(--sun);
  letter-spacing: 2px;
  line-height: 1;
}
.review-text {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reviews-link {
  text-align: center;
  margin: clamp(24px, 4vw, 40px) auto 0;
  font-size: 14.5px;
}
.reviews-link a {
  color: var(--terracotta);
  border-bottom: 1px solid rgba(200, 85, 61, 0.35);
  padding-bottom: 2px;
  transition: color .25s ease;
}
.reviews-link a:hover { color: var(--terracotta-dark); }

/* ===== FAQ sectie ===== */
.faq {
  background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
  padding: clamp(36px, 5vw, 64px) 0;
}
.faq .section-head { margin-bottom: clamp(24px, 3vw, 40px); }
.faq-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
  box-shadow: 0 2px 10px rgba(30, 26, 22, 0.03);
}
.faq-item:hover {
  border-color: rgba(200, 85, 61, 0.3);
  box-shadow: var(--shadow);
}
.faq-item[open] {
  border-color: rgba(200, 85, 61, 0.45);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.005em;
  color: var(--ink);
  line-height: 1.3;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 300;
  font-family: var(--ff-sans);
  color: var(--terracotta);
  background: rgba(200, 85, 61, 0.09);
  border-radius: 999px;
  transition: transform .35s ease, background .35s ease, color .35s ease;
  line-height: 1;
}
.faq-item:hover summary::after { background: rgba(200, 85, 61, 0.18); }
.faq-item[open] summary::after {
  transform: rotate(45deg);
  background: var(--terracotta);
  color: #fff;
}
.faq-item p {
  padding: 4px 26px 24px;
  margin: 0;
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.faq-item p em {
  font-style: italic;
  font-family: var(--ff-display);
  color: var(--terracotta);
}
.faq-item p strong {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 760px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .faq-item summary {
    padding: 18px 20px;
    font-size: 16.5px;
    gap: 14px;
  }
  .faq-item summary::after {
    width: 30px; height: 30px;
    font-size: 20px;
  }
  .faq-item p {
    padding: 2px 20px 20px;
    font-size: 14.5px;
  }
}

/* ===== Footer adres ===== */
.footer-address {
  font-style: normal;
  font-size: 13.5px;
  line-height: 1.6;
  margin-top: 10px;
  color: rgba(251, 246, 238, 0.65);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-address a {
  color: rgba(251, 246, 238, 0.85);
  border-bottom: 1px solid rgba(232, 163, 61, 0.35);
  padding-bottom: 1px;
  transition: color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.footer-address a:hover {
  color: var(--sun);
  border-color: var(--sun);
}
.footer-address-contact {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0 8px;
  align-items: baseline;
}
.footer-address-contact > span {
  color: rgba(251, 246, 238, 0.35);
}

/* ===== Surroundings map ===== */
.surroundings-map {
  max-width: var(--container);
  margin: clamp(40px, 6vw, 72px) auto 0;
  padding: 0 var(--pad);
}
.surroundings-map-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.surroundings-map-head .eyebrow { margin: 0; }
.surroundings-map-addr {
  margin: 0;
  font-family: var(--ff-sans);
  font-size: 14.5px;
  color: var(--ink-soft);
  font-style: normal;
  font-weight: 500;
}
.surroundings-map iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  filter: saturate(0.92) contrast(0.98);
}
@media (max-width: 760px) {
  .surroundings-map iframe { height: 280px; }
}

/* ===== Reviews ===== */
.reviews { padding: var(--section-gap) var(--page-pad); background: var(--cream-2); }
.reviews-score { margin-top: 20px; }
.reviews-score-inner {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 28px;
}
.reviews-score-num {
  font-family: var(--ff-sans);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  letter-spacing: -.04em;
}
.reviews-score-detail { display: flex; flex-direction: column; gap: 4px; }
.reviews-score-stars {
  font-size: 1.5rem;
  color: var(--terracotta);
  letter-spacing: .08em;
}
.reviews-score-count {
  font-size: .9rem;
  font-family: var(--ff-body);
  color: var(--ink-soft);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: .9rem; color: var(--ink); }
.review-date { font-size: .8rem; color: var(--muted); }
.review-rating { font-size: .85rem; color: var(--terracotta); letter-spacing: .05em; }
.review-text { font-size: .9375rem; color: var(--ink-soft); line-height: 1.65; }

/* ===== Dynamic amenities (checkmark style) ===== */
.amenities.is-dynamic li .am-icon {
  background: color-mix(in oklch, var(--terracotta) 12%, transparent);
}
.am-check {
  display: inline-block;
  width: 18px;
  height: 18px;
  stroke: var(--terracotta);
}

.unsplash-credit {
  text-align: center;
  font-size: 0.68rem;
  color: var(--ink);
  opacity: 0.28;
  padding: 6px 0 10px;
  margin: 0;
}
.unsplash-credit a { color: inherit; text-decoration: none; }

/* iOS: voorkom auto-zoom bij focus op invoervelden — vereist >=16px lettergrootte op mobiel */
@media (max-width: 768px) {
  input:not([type="checkbox"]):not([type="radio"]):not([type="range"]),
  textarea,
  select {
    font-size: 16px !important;
  }
}

/* Fix: velden binnen het 2-koloms grid (registratiekaart) mogen krimpen — geen grid-blowout/overflow */
.booking-form .bf-row-2 { min-width: 0; }
.booking-form .bf-row-2 > * { min-width: 0; }
.booking-form input,
.booking-form select,
.booking-form textarea { box-sizing: border-box; width: 100%; max-width: 100%; }
.bf-sig-pad, .bf-sig-pad canvas { max-width: 100%; box-sizing: border-box; }
