/* ===== variables.css ===== */
:root {
  --ink: #16313f;
  --ink2: #264a5b;
  --gold: #C2A373;
  --gold-hover: #b39260;
  --stone: #4d6f80;
  --mist: #9fb2bb;
  --sand: #ece5da;
  --paper: #fbfaf8;
  --line: rgba(22, 49, 63, 0.14);
  --font-serif: 'Marcellus', serif;
  --font-italic: 'Cormorant Garamond', serif;
  --font-sans: 'Jost', system-ui, sans-serif;
  --nav-height: 72px;
}

/* ===== base.css ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  background: var(--paper);
  color: var(--ink);
}
main {
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
button {
  font-family: inherit;
  cursor: pointer;
}
ul, ol {
  padding: 0;
  margin: 0;
  list-style: none;
}
::selection {
  background: var(--ink);
  color: #fff;
}
:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
@keyframes dvFade {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes dvKen {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1.16);
  }
}
@keyframes dvCue {
  0% {
    transform: translateY(0);
    opacity: 0.9;
  }
  50% {
    transform: translateY(8px);
    opacity: 0.4;
  }
  100% {
    transform: translateY(0);
    opacity: 0.9;
  }
}
.vy-section {
  scroll-margin-top: 88px;
}
.vy-desk {
  display: flex;
}
.vy-mob {
  display: none;
}
@media (max-width: 880px) {
  .vy-desk {
    display: none !important;
  }
  .vy-mob {
    display: flex !important;
  }
}

/* ===== utilities.css ===== */
.vy-link-underline {
  position: relative;
  text-decoration: none;
}
.vy-link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.vy-link-underline:hover::after {
  transform: scaleX(1);
}
.vy-nav-a {
  opacity: 0.8;
  transition: opacity 0.3s;
  text-decoration: none;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.vy-nav-a:hover {
  opacity: 1;
}
.vy-card {
  border-radius: 3px;
  overflow: hidden;
  text-decoration: none;
  display: block;
}
.vy-card-img {
  transition: transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vy-card:hover .vy-card-img {
  transform: scale(1.05);
}

/* ===== components.css ===== */
/* ───── ADVERTENTIEPAKKETTEN (Basis/Premium/Partner grid + domeinverkoop CTA) ───── */
.ad-buy-section {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
  width: 100%;
  text-align: center;
}
.ad-buy-badge {
  display: inline-block;
  background-color: #d4af37;
  color: #16313f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.ad-buy-title {
  font-family: 'Marcellus', serif;
  font-size: 30px;
  font-weight: 400;
  color: #ece5da;
  margin: 0 0 16px;
  line-height: 1.3;
}
.ad-buy-intro {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 20px;
}
.btn-buy-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ff8c00;
  color: #16313f;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 18px 42px;
  border-radius: 8px;
  border: 2px solid #ff8c00;
  text-decoration: none;
  transition: transform 300ms ease-in-out, background-color 300ms ease-in-out, border-color 300ms ease-in-out, box-shadow 300ms ease-in-out;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(255,140,0,0.25);
  margin-bottom: 12px;
}
@media (hover: hover) and (pointer: fine) {
  .btn-buy-now:hover {
    background-color: #ff7700;
    border-color: #ff7700;
    transform: scale(1.05);
    box-shadow: 0 10px 26px rgba(0,0,0,0.3);
    color: #16313f;
  }
}
.btn-buy-now:focus {
  outline: 2px solid #d4af37;
  outline-offset: 4px;
}
.ad-buy-trust {
  font-size: 13.5px;
  color: #d4af37;
  margin-bottom: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.ad-buy-micro {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}
.ad-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 24px;
  width: 100%;
  align-items: stretch;
  margin-bottom: 8px;
}
@media (max-width: 860px) {
  .ad-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
  .ad-buy-title {
    font-size: 24px;
  }
}
.ad-pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(236, 229, 218, 0.05);
  border: 1px solid rgba(236, 229, 218, 0.18);
  border-radius: 4px;
  padding: 32px 24px 28px;
  text-align: left;
}
.ad-pricing-card--featured {
  background: rgba(236, 229, 218, 0.1);
  border-color: #d4af37;
}
.ad-pricing-badge {
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #d4af37;
  color: #16313f;
  font-family: "Jost", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 7px 18px;
  border-radius: 2px;
  white-space: nowrap;
  border: 1px solid #ffffff;
  box-shadow: 0 4px 12px rgba(212,175,55,0.35);
}
.ad-pricing-badge svg {
  width: 15px;
  height: 15px;
}
.ad-pricing-name {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 20px;
  color: #ece5da;
  margin: 4px 0 8px;
}
.ad-pricing-price {
  font-family: "Marcellus", serif;
  font-size: 30px;
  color: #ffffff;
  margin: 0 0 20px;
}
.ad-pricing-price span {
  font-family: "Jost", sans-serif;
  font-size: 13px;
  color: #9fb2bb;
  margin-left: 4px;
}
.ad-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ad-pricing-features li {
  font-size: 14px;
  line-height: 1.5;
  color: #c9d4d8;
  padding-left: 22px;
  position: relative;
}
.ad-pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border-left: 2px solid #d4af37;
  border-bottom: 2px solid #d4af37;
  transform: rotate(-45deg);
}
.ad-pricing-cta {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.ad-pricing-card[data-glow] {
  --spotlight-size: 260px;
}
.ad-pricing-card[data-glow]::before,
.ad-pricing-card[data-glow]::after {
  pointer-events: none;
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid transparent;
  border-radius: 4px;
  background-repeat: no-repeat;
  mask: linear-gradient(transparent, transparent), linear-gradient(white, white);
  mask-clip: padding-box, border-box;
  mask-composite: intersect;
  opacity: 0;
  transition: opacity 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .ad-pricing-card[data-glow]:hover::before,
  .ad-pricing-card[data-glow]:hover::after {
    opacity: 1;
  }
}
.ad-pricing-card[data-glow]::before {
  background-image: radial-gradient(
    var(--spotlight-size) var(--spotlight-size) at
    calc(var(--x, -500) * 1px) calc(var(--y, -500) * 1px),
    rgba(var(--glow-rgb), 0.9), transparent 100%
  );
  filter: brightness(1.6);
}
.ad-pricing-card[data-glow]::after {
  background-image: radial-gradient(
    calc(var(--spotlight-size) * 0.6) calc(var(--spotlight-size) * 0.6) at
    calc(var(--x, -500) * 1px) calc(var(--y, -500) * 1px),
    rgba(255,255,255,0.8), transparent 100%
  );
}
.ad-pricing-card > [data-glow] {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  border-radius: 4px;
  filter: blur(20px);
  transition: opacity 0.2s ease;
  background-image: radial-gradient(
    calc(var(--spotlight-size) * 0.5) calc(var(--spotlight-size) * 0.5) at
    calc(var(--x, -500) * 1px) calc(var(--y, -500) * 1px),
    rgba(var(--glow-rgb), 0.5), transparent 100%
  );
}
@media (hover: hover) and (pointer: fine) {
  .ad-pricing-card[data-glow]:hover > [data-glow] {
    opacity: 0.9;
  }
}
.ad-pricing-grid .ad-pricing-card:nth-child(1) { --glow-rgb: 205,127,50; }
.ad-pricing-grid .ad-pricing-card:nth-child(2) { --glow-rgb: 192,192,192; }
.ad-pricing-grid .ad-pricing-card:nth-child(3) { --glow-rgb: 212,175,55; }

/* Tooltip (desktop hover, domain-sale button) + touch modal (mobile tap preview) */
.vy-tooltip {
  position: absolute;
  z-index: 10000;
  background: #ffffff;
  color: #16313f;
  border: 1.5px solid #ece5da;
  border-radius: 6px;
  padding: 24px;
  width: 320px;
  box-shadow: 0 16px 40px rgba(22,49,63,0.22);
  pointer-events: none;
  display: none;
  text-align: left;
  box-sizing: border-box;
  line-height: 1.5;
}
.vy-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 33, 43, 0.6);
  backdrop-filter: blur(4px);
  z-index: 999999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.vy-modal-overlay.show {
  display: block;
  opacity: 1;
}
.vy-modal {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 100%;
  max-width: 480px;
  background: #ffffff;
  border-radius: 16px 16px 0 0;
  padding: 30px 24px 24px;
  z-index: 1000000;
  box-shadow: 0 -8px 30px rgba(15, 33, 43, 0.25);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
  max-height: 85vh;
  overflow-y: auto;
}
.vy-modal.show {
  transform: translate(-50%, 0);
}
.vy-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: #5f7e8d;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}
.vy-modal-select-btn {
  display: block;
  width: 100%;
  background: #16313f;
  color: #ffffff;
  text-align: center;
  padding: 14px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 24px;
  box-sizing: border-box;
}
.vy-modal-select-btn:hover {
  background: #204557;
}

/* ───── ACCOMMODATIETYPE CARDS (sights-grid, gelinkt naar Expedia) ───── */
.sights-grid a.card-stack {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(22,49,63,0.1);
  border-radius: 6px;
  padding: 28px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.sights-grid a.card-stack:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(22,49,63,0.1);
}
.sights-grid a.card-stack:hover .card-stack-title {
  color: #d4af37;
}

/* ───── GLOW EFFECT (dynamische spotlight-rand op hover/beweging) ───── */
.card-stack[data-glow] {
  --spotlight-size: 260px;
  --glow-rgb: 212,175,55;
}
.card-stack[data-glow]::before,
.card-stack[data-glow]::after {
  pointer-events: none;
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid transparent;
  border-radius: 6px;
  background-attachment: fixed;
  background-repeat: no-repeat;
  mask: linear-gradient(transparent, transparent), linear-gradient(white, white);
  mask-clip: padding-box, border-box;
  mask-composite: intersect;
}
.card-stack[data-glow]::before {
  background-image: radial-gradient(
    var(--spotlight-size) var(--spotlight-size) at
    calc(var(--x, -500) * 1px) calc(var(--y, -500) * 1px),
    rgba(var(--glow-rgb), 0.9), transparent 100%
  );
  filter: brightness(1.5);
}
.card-stack[data-glow]::after {
  background-image: radial-gradient(
    calc(var(--spotlight-size) * 0.6) calc(var(--spotlight-size) * 0.6) at
    calc(var(--x, -500) * 1px) calc(var(--y, -500) * 1px),
    rgba(255,255,255,0.7), transparent 100%
  );
}
.card-stack > [data-glow] {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  border-radius: 6px;
  overflow: hidden;
  filter: blur(20px);
  background-image: radial-gradient(
    calc(var(--spotlight-size) * 0.5) calc(var(--spotlight-size) * 0.5) at
    calc(var(--x, -500) * 1px) calc(var(--y, -500) * 1px),
    rgba(var(--glow-rgb), 0.45), transparent 100%
  );
  z-index: 0;
}
.card-stack[data-glow] > *:not([data-glow]) {
  position: relative;
  z-index: 1;
}

/* ───── STAY BOOKING CTA (sitewide) ───── */
.stay-cta-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  background: linear-gradient(120deg, #0f1a22 0%, #1d3a49 50%, #16313f 100%);
  border-top: 2px solid #d4af37;
  border-bottom: 1px solid rgba(212,175,55,0.25);
  padding: 24px clamp(18px, 4vw, 52px);
  text-align: center;
  position: relative;
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}
.stay-cta-bar-icon {
  color: #d4af37;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 0 6px rgba(212,175,55,0.55));
}
.stay-cta-bar-text {
  margin: 0;
  font-size: 16px;
  color: #ece5da;
  letter-spacing: 0.01em;
}
.stay-cta-bar-text strong {
  color: #f2c94c;
  font-family: 'Marcellus', serif;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.03em;
}
.stay-cta-bar-disclosure {
  font-size: 12px;
  color: rgba(236,229,218,0.6);
}
.stay-cta-bar-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, #f2d778, #d4af37 55%, #c9a227);
  color: #16313f;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(212,175,55,0.45), 0 0 0 0 rgba(212,175,55,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: stayCtaPulse 2.6s ease-in-out infinite;
}
.stay-cta-bar-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 30px rgba(212,175,55,0.6);
  animation-play-state: paused;
}
@keyframes stayCtaPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(212,175,55,0.45), 0 0 0 0 rgba(212,175,55,0.35); }
  50% { box-shadow: 0 4px 24px rgba(212,175,55,0.6), 0 0 0 9px rgba(212,175,55,0); }
}
@media (prefers-reduced-motion: reduce) {
  .stay-cta-bar-btn { animation: none; }
}
@media (max-width: 600px) {
  .stay-cta-bar-icon { display: none; }
}
.stay-cta-section {
  background: #16313f;
  color: #ffffff;
  padding: 70px 20px;
  text-align: center;
}
.stay-cta-wrap {
  max-width: 640px;
  margin: 0 auto;
}
.stay-cta-heading {
  font-family: 'Marcellus', serif;
  font-size: 28px;
  font-weight: 400;
  color: #ece5da;
  margin: 0 0 16px;
}
.stay-cta-text {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  margin: 0 0 32px;
}
.stay-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d4af37;
  color: #16313f;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 38px;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.stay-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}
.stay-cta-disclosure {
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  margin: 18px 0 0;
  line-height: 1.6;
}
@media (max-width: 600px) {
  .stay-cta-heading { font-size: 22px; }
  .stay-cta-bar { flex-direction: column; gap: 10px; }
}

/* ───── SKIP LINK ───── */
.skip-link {
  position: fixed;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 4px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 12px;
}
/* ───── HEADER ───── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 clamp(18px, 4vw, 52px);
  height: var(--nav-height);
  background: rgba(251, 250, 248, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-logo {
  text-decoration: none;
  display: flex; flex-direction: row; align-items: center; line-height: 1; gap: 12px;
}
.site-logo-text { display: flex; flex-direction: column; gap: 3px; } .site-logo-top {
  font-family: var(--font-serif);
  font-size: 19px;
  letter-spacing: 0.18em;
  color: var(--ink);
}
.site-logo-bot {
  font-size: 9.5px;
  letter-spacing: 0.42em;
  color: var(--stone);
  text-transform: uppercase;
}
/* ───── HEADER NAV ───── */
.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}
/* ───── LANGUAGE SWITCHER – DESKTOP GLOBE DROPDOWN ───── */
.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
}
.lang-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  cursor: pointer;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: inherit;
  transition: opacity 0.2s;
  white-space: nowrap;
  opacity: 0.65;
}
.lang-trigger:hover {
  opacity: 1;
}
.lang-trigger-globe {
  width: 14px;
  height: 14px;
  opacity: 0.6;
  flex-shrink: 0;
}
.lang-trigger-code {
  font-weight: 500;
  font-size: 13px;
}
.lang-trigger-chevron {
  width: 10px;
  height: 10px;
  opacity: 0.5;
  transition: transform 0.22s;
  flex-shrink: 0;
}
.lang-switcher.open .lang-trigger-chevron {
  transform: rotate(180deg);
}
.lang-switcher.open .lang-trigger {
  opacity: 1;
}
.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(22, 49, 63, 0.16), 0 2px 8px rgba(22, 49, 63, 0.06);
  padding: 6px;
  min-width: 148px;
  z-index: 999;
  animation: dvFade 0.18s both;
}
.lang-dropdown.open {
  display: block;
}
.lang-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink2);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: inherit;
  transition: background 0.16s, color 0.16s;
}
.lang-dropdown-item:hover {
  background: var(--sand);
  color: var(--ink);
}
.lang-dropdown-item.active {
  background: var(--ink);
  color: #fff;
  font-weight: 600;
}
.lang-dropdown-flag {
  display: none;
}
.lang-dropdown-label {
  flex: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
}
.lang-dropdown-name {
  font-size: 11px;
  opacity: 0.65;
  letter-spacing: 0.04em;
  text-transform: none;
  display: inline;
  margin-left: 4px;
}

/* ───── BUTTONS ───── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary { background: var(--gold); color: #fff; border: 1px solid var(--gold); }
.btn-primary:hover { background: var(--gold-hover); }
.btn-outline { background: transparent; border: 1px solid #7d6238; color: #7d6238; }
.btn-outline-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
}
.btn-outline-light:hover {
  border-color: #fff;
}
.btn-light {
  background: #fff;
  color: var(--ink);
}
/* ───── CARDS ───── */
.card-link {
  text-decoration: none;
  display: block;
}
.card-overlay {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  background: #000;
  display: block;
}
.card-overlay-img {
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.card-overlay-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-stack-img {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 3px;
}
.card-stack-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 33, 43, 0) 40%, rgba(15, 33, 43, 0.82) 100%);
  pointer-events: none;
}
.card-overlay-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 24px 26px;
  color: #fff;
}
.card-num {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 18px;
  color: var(--mist);
}
.card-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 23px;
  margin: 4px 0 0;
  line-height: 1.1;
}
.card-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 9px 0 0;
}
.card-stacked {
  display: block;
  text-decoration: none;
}
.card-stacked-img {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 3px;
}
.card-stacked-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 22px;
  margin: 18px 0 0;
  color: var(--ink);
}
.card-stacked-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink2);
  margin: 9px 0 0;
}
/* ───── FORM ───── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.form-input {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 3px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s;
}
.form-input:focus {
  border-color: var(--ink);
  outline: 2px solid var(--stone);
  outline-offset: 1px;
}
.form-input.has-error {
  border-color: #c00;
}
.form-error {
  color: #c00;
  font-size: 12px;
  margin-top: 2px;
  display: none;
}
.form-error.show {
  display: block;
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
/* ───── COOKIE CONSENT ───── */
.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 160;
  display: flex;
  justify-content: center;
  padding: 16px;
}
.cookie-card {
  max-width: 1180px;
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(22, 49, 63, 0.22);
  padding: clamp(20px, 3vw, 30px);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  animation: dvFade 0.4s both;
}
.cookie-text-wrap {
  max-width: 640px;
}
.cookie-title {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--ink);
}
.cookie-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink2);
  margin: 8px 0 0;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.cookie-btn {
  border-radius: 2px;
  padding: 13px 22px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--line);
  background: none;
  color: var(--ink);
  font-family: inherit;
}
.cookie-btn-accept {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.cookie-btn-accept:hover {
  background: var(--ink2);
}
.cookie-btn-essential {
  border-color: var(--ink);
}
/* ───── BACK TO TOP ───── */
.back-top-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(251, 250, 248, 0.9);
  backdrop-filter: blur(8px);
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  box-shadow: 0 8px 30px rgba(22, 49, 63, 0.14);
  display: none;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.3s;
}
/* ───── CONFETTI (form sent) ───── */
.confetti-box {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 40px;
  text-align: center;
}
.confetti-title {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--ink);
}
.confetti-text {
  font-size: 15px;
  color: var(--ink2);
  margin: 12px 0 0;
  line-height: 1.6;
}
/* ───── SOCIAL CONTACT ROW ───── */
.contact-row-card {
  margin: 20px 0 0;
  padding: 24px 28px;
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.contact-row-company {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink);
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.contact-row {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-row-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink2);
}
.contact-row-value {
  text-decoration: none;
  font-size: 16px;
  color: var(--ink2);
  line-height: 1.6;
  font-style: normal;
}
.contact-row-link {
  text-decoration: none;
  font-size: 18px;
  color: var(--ink);
}

/* ───── MOBILE BOTTOM DOCK ───── */
.mobile-dock {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 122;
  background: rgba(251,250,248,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: max(6px, env(safe-area-inset-top)) 0 6px;
  justify-content: space-around;
  align-items: stretch;
}
.dock-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--stone);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 4px;
  border-radius: 10px;
  flex: 1;
  transition: color 0.16s, background 0.16s;
}
.dock-item svg {
  flex-shrink: 0;
}
.dock-item:hover,
.dock-item.active {
  color: var(--ink);
  background: rgba(22,49,63,0.05);
}
.dock-more-btn {
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

/* ───── MOBILE DOCK "MORE" OVERFLOW SHEET ───── */
.dock-more-sheet {
  display: none;
  position: fixed;
  top: 80px;
  left: 10px;
  right: 10px;
  z-index: 123;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(22,49,63,0.16);
  padding: 6px;
  animation: dvFade 0.18s both;
}
.dock-more-sheet.open {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
.dock-more-item {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  font-size: 11px;
  border-radius: 8px;
}
.dock-more-item svg {
  width: 18px;
  height: 18px;
}

/* ───── FLOATING LANG PILL (mobile only) ───── */
.mobile-lang-pill {
  display: none;
  position: fixed;
  top: max(86px, calc(76px + env(safe-area-inset-top)));
  right: 14px;
  z-index: 121;
  background: rgba(251,250,248,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px 6px 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(22,49,63,0.12);
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.mobile-lang-pill:hover {
  background: rgba(22,49,63,0.06);
}
.mobile-lang-pill-globe {
  width: 14px;
  height: 14px;
  opacity: 0.6;
  flex-shrink: 0;
}
.mobile-lang-pill-chevron {
  width: 9px;
  height: 9px;
  opacity: 0.45;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.mobile-lang-pill.open .mobile-lang-pill-chevron {
  transform: rotate(180deg);
}

/* ───── FLOATING LANG DROPDOWN (mobile) ───── */
.mobile-lang-dropdown {
  display: none;
  position: fixed;
  top: 80px;
  left: 14px;
  right: 14px;
  z-index: 121;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(22,49,63,0.16);
  padding: 6px;
  animation: dvFade 0.18s both;
}
.mobile-lang-dropdown.open {
  display: block;
}
.mobile-lang-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink2);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  transition: background 0.15s, color 0.15s;
}
.mobile-lang-dropdown-item:hover {
  background: var(--sand);
  color: var(--ink);
}
.mobile-lang-dropdown-item.active {
  background: var(--ink);
  color: #fff;
  font-weight: 600;
}
.mobile-lang-dropdown-flag {
  display: none;
}
.mobile-lang-dropdown-name {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.65;
  letter-spacing: 0.04em;
  text-transform: none;
  display: inline;
  margin-left: 6px;
}

/* ───── OLD HAMBURGER REMOVED ── keep class stub to avoid 404 ───── */
.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(251,250,248,0.9);
  backdrop-filter: blur(8px);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
  position: relative;
  z-index: 130;
}
.menu-btn:hover {
  background: rgba(22,49,63,0.06);
  border-color: var(--stone);
}
.menu-btn-bar {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1), opacity 0.2s;
  transform-origin: center;
}
.menu-btn-bar:nth-child(1) { margin-bottom: 4px; }
.menu-btn-bar:nth-child(3) { margin-top: 4px; }
.menu-btn.is-open .menu-btn-bar:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
  margin-bottom: 0;
}
.menu-btn.is-open .menu-btn-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-btn.is-open .menu-btn-bar:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
  margin-top: 0;
}

/* ───── MOBILE DRAWER ───── */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 88vw);
  z-index: 125;
  background: #fff;
  box-shadow: -12px 0 60px rgba(22,49,63,0.18);
  display: flex;
  flex-direction: column;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
}
.mobile-nav.is-open {
  transform: translateX(0);
}
.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  padding-top: var(--nav-height);
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 24px 0 0;
  flex: 1;
}
.mobile-nav-links a {
  display: flex;
  align-items: center;
  padding: 16px 28px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink2);
  border-bottom: 1px solid var(--line);
  transition: color 0.18s, background 0.18s, padding-left 0.18s;
  font-family: var(--font-sans);
}
.mobile-nav-links a:first-child {
  border-top: 1px solid var(--line);
}
.mobile-nav-links a:hover {
  color: var(--ink);
  background: var(--sand);
  padding-left: 36px;
}
.mobile-nav-links a.active {
  color: var(--ink);
  font-weight: 600;
}
.mobile-nav-lang {
  padding: 24px 28px 32px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.mobile-nav-lang-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 12px;
}
.mobile-nav-lang-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mobile-nav-lang-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink2);
  font-family: var(--font-sans);
  transition: border-color 0.18s, background 0.18s, color 0.18s;
}
.mobile-nav-lang-pill:hover {
  border-color: var(--stone);
  background: var(--sand);
  color: var(--ink);
}
.mobile-nav-lang-pill.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.mobile-nav-lang-flag {
  font-size: 14px;
  line-height: 1;
}

/* ───── MOBILE DRAWER BACKDROP ───── */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 124;
  background: rgba(22,49,63,0.4);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s;
}
.mobile-nav-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ───── VOUTE-TICKER OVERRIDE ─────
   voute-ticker.js (extern, voutedigital.com) zet body.vgt-active en injecteert
   zelf translateY(-65px/-170px) !important op deze elementen, waardoor de
   mobiele dock/cookiebar/back-top/lang-pill volledig van het scherm
   verdwijnen. Hun regel heeft dezelfde specificity + !important en staat
   later in de cascade, dus wint op source-order. "html" ervoor tilt onze
   specificity net hoger zodat we altijd winnen, ongeacht laadvolgorde. */
html body.vgt-active .mobile-dock,
html body.vgt-active #cookieBar,
html body.vgt-active .back-top-btn,
html body.vgt-active .mobile-lang-pill,
html body.vgt-active .mobile-lang-dropdown {
  transform: none !important;
}

/* ───── RESPONSIVE COMPONENTS ───── */
@media (max-width: 1024px) {
  .site-header {
    padding: 0 14px;
  }
  .site-logo-text { display: flex; flex-direction: column; gap: 3px; } .site-logo-top {
    font-size: 16px;
  }
  .site-logo-bot {
    font-size: 8px;
  }
  /* Verberg desktop nav + lang-switcher op mobiel */
  .header-nav.vy-desk,
  .lang-switcher {
    display: none !important;
  }
  /* Toon bottom dock en floating lang pill */
  .mobile-dock {
    display: flex;
  }
  .mobile-lang-pill {
    display: flex;
  }
  /* Ruimte voor dock */
  body {
    padding-top: max(72px, calc(62px + env(safe-area-inset-top)));
  }
  .btn {
    padding: 14px 22px;
    font-size: 11px;
  }
  .cookie-card {
    flex-direction: row;
    align-items: center;
    padding: 12px 14px;
    gap: 12px;
  }
  .cookie-text-wrap {
    flex: 1;
    min-width: 0;
  }
  .cookie-title {
    font-size: 14px;
  }
  .cookie-text {
    display: none;
  }
  .cookie-actions {
    flex-direction: column;
    gap: 6px;
    width: auto;
    flex-shrink: 0;
  }
  .cookie-btn {
    padding: 9px 14px;
    font-size: 10px;
    white-space: nowrap;
    text-align: center;
  }
  .back-top-btn {
    width: 40px;
    height: 40px;
    right: 14px;
    bottom: max(82px, calc(72px + env(safe-area-inset-bottom)));
    font-size: 15px;
  }
  .cookie-bar {
    bottom: max(70px, calc(60px + env(safe-area-inset-bottom)));
  }
}
@media (max-width: 640px) {
  .skip-link {
    font-size: 11px;
    padding: 10px 14px;
  }
  .lang-link {
    padding: 5px 8px;
    font-size: 9px;
    letter-spacing: 0.08em;
  }
  .btn {
    padding: 12px 18px;
    font-size: 10.5px;
    width: 100%;
    justify-content: center;
  }
  .cookie-card {
    padding: 16px;
  }
  .cookie-title {
    font-size: 17px;
  }
  .cookie-text {
    font-size: 13px;
  }
  .cookie-actions {
    flex-direction: column;
    gap: 8px;
  }
  .cookie-btn {
    width: 100%;
  }
  .card-overlay-img {
    aspect-ratio: 3 / 4;
  }
  .card-title {
    font-size: 19px;
  }
  .card-desc {
    font-size: 12.5px;
  }
  .card-stacked-title {
    font-size: 18px;
  }
  .form-input {
    padding: 12px 14px;
    font-size: 14px;
  }
  .form-textarea {
    min-height: 100px;
  }
}
@media (max-width: 480px) {
  .site-header {
    padding: 0 10px;
    gap: 8px;
  }
  .site-logo-text { display: flex; flex-direction: column; gap: 3px; } .site-logo-top {
    font-size: 14px;
    letter-spacing: 0.12em;
  }
  .site-logo-bot {
    font-size: 7px;
    letter-spacing: 0.3em;
  }
  .btn {
    padding: 10px 16px;
    font-size: 10px;
  }
  .card-overlay-content {
    padding: 16px;
  }
  .card-num {
    font-size: 15px;
  }
  .card-title {
    font-size: 17px;
  }
  .card-stacked-title {
    font-size: 16px;
    margin-top: 12px;
  }
}
@media (min-width: 1025px) and (max-width: 1320px) {
  .header-nav {
    gap: clamp(10px, 1.2vw, 20px);
  }
  .vy-nav-a {
    font-size: 11px;
    letter-spacing: 0.10em;
  }
}

/* ===== sections.css ===== */
/* ───── PAGE HERO ───── */
.page-hero {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  color: #fff;
  padding: clamp(140px, 18vh, 220px) clamp(18px, 6vw, 80px) clamp(64px, 10vh, 120px);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(22, 49, 63, 0.82);
  z-index: 0;
}
.page-hero-wrap {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: dvFade 1s both;
}
.page-hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 20px;
}
.page-hero-heading {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(38px, 6vw, 80px);
  line-height: 1.05;
  margin: 0;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
.page-hero-intro {
  font-size: clamp(19px, 2.4vw, 28px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 24px 0 0;
  max-width: 700px;
}
/* ───── PAGE HERO VIDEO VARIANT ───── */
.page-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero--video::before {
  z-index: 1;
  background: linear-gradient(180deg, rgba(22, 49, 63, 0.55) 0%, rgba(22, 49, 63, 0.35) 45%, rgba(22, 49, 63, 0.68) 100%);
}
.page-hero--video .page-hero-wrap {
  z-index: 2;
}

/* ───── HERO ───── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 33, 43, 0.5) 0%, rgba(15, 33, 43, 0.12) 32%, rgba(15, 33, 43, 0.18) 60%, rgba(15, 33, 43, 0.8) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  color: #fff;
  padding: 0 clamp(18px, 6vw, 80px) clamp(80px, 12vh, 130px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: dvFade 1s both;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 22px;
}
.hero-title {
  font-family: var(--font-serif);
  font-weight: 400;
  margin: 0;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
  max-width: min(1100px, 90vw);
}
.hero-subtitle {
  max-width: 620px;
  margin: 26px auto 0;
  font-size: clamp(15px, 1.7vw, 20px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 300;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 38px;
}
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 2;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.85;
}
.hero-scroll-arrow {
  animation: dvCue 1.8s infinite;
}
/* ───── INTRO / WELCOME ───── */
.intro {
  padding: clamp(64px, 12vh, 130px) clamp(18px, 6vw, 80px);
  max-width: 1280px;
  margin: 0 auto;
}
.intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.intro-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}
.intro-img {
  width: 100%;
  height: clamp(420px, 62vh, 680px);
  object-fit: cover;
  border-radius: 3px;
}
.intro-badge {
  position: absolute;
  left: -1px;
  bottom: 24px;
  background: var(--paper);
  padding: 18px 26px 16px;
  max-width: 230px;
}
.intro-badge-num {
  font-family: var(--font-serif);
  font-size: 34px;
  color: var(--ink);
  display: block;
  line-height: 1;
}
.intro-badge-text {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
}
.intro-eyebrow {
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--stone);
}
.intro-heading {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.06;
  margin: 18px 0 0;
  color: var(--ink);
}
.intro-text {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.8;
  color: var(--ink2);
  margin: 26px 0 0;
  max-width: 54ch;
}
.intro-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin: 36px 0 0;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.intro-stat-num {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 38px);
  color: var(--ink);
  line-height: 1;
}
.intro-stat-label {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 7px;
  max-width: 15ch;
}
/* ───── HISTORY ───── */
.history {
  background: var(--ink) url("../images/yerseke-haven-oosterschelde-zeeland.webp") center/cover no-repeat;
  background-attachment: fixed;
  position: relative;
  color: #fff;
  padding: clamp(64px, 12vh, 130px) clamp(18px, 6vw, 80px);
}
.history::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(22, 49, 63, 0.90);
  z-index: 0;
}
.history-wrap {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}
.history-content {
  max-width: 760px;
}
.history-eyebrow {
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--mist);
}
.history-heading {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(30px, 4.6vw, 60px);
  line-height: 1.05;
  margin: 18px 0 0;
  color: #fff;
}
.history-intro {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
  margin: 24px 0 0;
}
.history-timeline {
  list-style: none;
  margin: clamp(40px, 7vh, 72px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.history-tl-item {
  padding: 30px 32px 36px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}
.history-tl-item:first-child {
  padding-left: 0;
}
.history-tl-item:last-child {
  border-right: none;
  padding-right: 0;
}
.history-tl-year {
  font-family: var(--font-italic);
  font-size: 30px;
  color: var(--mist);
  font-style: italic;
}
.history-tl-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 19px;
  margin: 12px 0 0;
  color: #fff;
}
.history-tl-text {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.66);
  margin: 10px 0 0;
}
/* ───── FULL-BLEED QUOTE ───── */
.quote-band {
  position: relative;
  height: clamp(320px, 55vh, 560px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quote-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quote-shade {
  position: absolute;
  inset: 0;
  background: rgba(15, 33, 43, 0.32);
}
.quote-text {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: clamp(24px, 3.4vw, 44px);
  text-align: center;
  max-width: 18ch;
  line-height: 1.25;
  margin: 0;
  padding: 0 24px;
}
/* ───── SIGHTS ───── */
.sights {
  padding: clamp(64px, 12vh, 130px) clamp(18px, 6vw, 80px);
  max-width: 1320px;
  margin: 0 auto;
}
.sights-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(36px, 6vh, 64px);
}
.sights-header-text {
  max-width: 640px;
}
.sights-eyebrow {
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--stone);
}
.sights-heading {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.06;
  margin: 16px 0 0;
  color: var(--ink);
}
.sights-intro {
  max-width: 360px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink2);
  margin: 0;
}
.sights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(18px, 2vw, 30px);
}
/* ───── VISIT ───── */
.visit {
  background: var(--sand);
  padding: clamp(64px, 12vh, 130px) clamp(18px, 6vw, 80px);
}
.visit-wrap {
  max-width: 1280px;
  margin: 0 auto;
}
.visit-header {
  max-width: 640px;
}
.visit-eyebrow {
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--stone);
}
.visit-heading {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.06;
  margin: 16px 0 0;
  color: var(--ink);
}
.visit-intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink2);
  margin: 20px 0 0;
}
.visit-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: clamp(40px, 7vh, 64px) 0 0;
}
.visit-info-card {
  padding-top: 26px;
  border-top: 2px solid var(--ink);
}
.visit-info-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 22px;
  margin: 0;
  color: var(--ink);
}
.visit-info-text {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--ink2);
  margin: 14px 0 0;
}
a.visit-info-card {
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
a.visit-info-card:hover,
a.visit-info-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(22, 49, 63, 0.12);
}
.visit-hours {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.visit-hours li {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink2);
  display: flex;
  gap: 10px;
}
.visit-bottom {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(24px, 3vw, 44px);
  margin: clamp(40px, 7vh, 64px) 0 0;
  align-items: stretch;
}
.visit-map {
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}
.visit-tour-card {
  background: var(--ink);
  color: #fff;
  border-radius: 3px;
  padding: clamp(30px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.visit-tour-eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mist);
}
.visit-tour-cta {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
  margin: 14px 0 0;
}
.visit-tour-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 16px 0 0;
}
/* ───── FOOD ───── */
.food {
  padding: clamp(64px, 12vh, 130px) clamp(18px, 6vw, 80px);
  max-width: 1320px;
  margin: 0 auto;
}
.food-header {
  max-width: 640px;
  margin-bottom: clamp(36px, 6vh, 60px);
}
.food-eyebrow {
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--stone);
}
.food-heading {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.06;
  margin: 16px 0 0;
  color: var(--ink);
}
.food-intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink2);
  margin: 20px 0 0;
}
.food-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 2.5vw, 36px);
}
/* ───── FAQ ───── */
.faq {
  background: var(--paper);
  padding: clamp(64px, 12vh, 130px) clamp(18px, 6vw, 80px);
}
.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.faq-eyebrow {
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--stone);
  margin: 0 0 16px;
}
.faq-heading {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 44px);
  color: var(--ink);
  margin: 0 0 clamp(40px, 6vh, 64px);
  line-height: 1.1;
}
.faq-list {
  margin: 0;
  padding: 0;
}
.faq-item {
  border-top: 1px solid var(--ink);
  padding: 28px 0;
}
.faq-item:last-child {
  border-bottom: 1px solid var(--ink);
}
.faq-question {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 20px;
  color: var(--ink);
  margin: 0 0 12px;
}
.faq-answer {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink2);
  margin: 0;
}
/* ───── HISTORY PROSE ───── */
.history-prose {
  background: var(--paper);
  padding: clamp(64px, 12vh, 120px) clamp(18px, 6vw, 80px);
}
.history-prose-wrap {
  max-width: 780px;
  margin: 0 auto;
}
.history-prose-section {
  padding-bottom: clamp(36px, 5vh, 52px);
}
.history-prose-section:last-child {
  padding-bottom: 0;
}
.history-prose-h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 32px);
  color: var(--ink);
  margin: 0 0 18px;
  padding-top: clamp(36px, 5vh, 52px);
  border-top: 1px solid var(--line);
  line-height: 1.15;
}
.history-prose-section:first-child .history-prose-h2 {
  padding-top: 0;
  border-top: none;
}
.history-prose-p {
  font-size: 15.5px;
  line-height: 1.82;
  color: var(--ink2);
  margin: 0;
}
.history-prose-byline {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 clamp(18px, 6vw, 80px);
  font-size: 12.5px;
  letter-spacing: 0.05em;
  color: var(--stone);
  text-align: center;
}
/* ───── ANSWER-FIRST LEAD (AEO/GEO) ───── */
.answer-lead {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--sand);
  border-left: 3px solid var(--gold);
  padding: 18px 22px;
  margin: 0 0 20px;
  border-radius: 0 4px 4px 0;
}
/* ───── FEITENTABEL ───── */
.fact-table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 8px 0 0; }
.fact-table th { text-align: left; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone); padding: 0 16px 14px 0; border-bottom: 1px solid var(--ink); }
.fact-table td { padding: 14px 16px 14px 0; border-bottom: 1px solid var(--line); color: var(--ink2); vertical-align: top; line-height: 1.55; }
.fact-table td:first-child { color: var(--ink); font-weight: 500; }
.fact-table-wrap { overflow-x: auto; }
/* ───── BEGRIPPENLIJST ───── */
.term-list { margin: 8px 0 0; padding: 0; }
.term-list dt { font-family: var(--font-serif); font-weight: 400; font-size: 17px; color: var(--ink); margin: 18px 0 4px; }
.term-list dt:first-child { margin-top: 0; }
.term-list dd { margin: 0; font-size: 14.5px; line-height: 1.7; color: var(--ink2); }
/* ───── BRONNENBLOK ───── */
.source-block { border-top: 1px solid var(--line); margin-top: clamp(36px, 5vh, 52px); padding-top: 24px; }
.source-block-title { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone); margin: 0 0 12px; }
.source-block-list { list-style: none; margin: 0 0 16px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.source-block-list a { font-size: 14px; color: var(--ink2); }
.source-block-updated { font-size: 12.5px; color: var(--stone); margin: 0; }
@media (max-width: 600px) {
  .fact-table th:nth-child(3), .fact-table td:nth-child(3) { display: none; }
}
/* ───── DO'S & DON'TS LIST ───── */
.dodont-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.dodont-list li {
  position: relative;
  padding-left: 36px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink2);
}
.dodont-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px 15px;
  border-radius: 50%;
}
.dodont-list li strong {
  color: var(--ink);
  font-weight: 500;
}
.dodont-list--do li::before {
  background-color: rgba(74,124,89,0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a7c59' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.dodont-list--dont li::before {
  background-color: rgba(163,68,61,0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a3443d' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
}
.dodont-list--tip li::before {
  background-color: rgba(22,49,63,0.08);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316313f' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='12' y1='16' x2='12' y2='11'/%3E%3Cline x1='12' y1='8' x2='12.01' y2='8'/%3E%3C/svg%3E");
}
.dodont-cta {
  text-align: center;
  padding-top: clamp(36px, 5vh, 52px);
  border-top: 1px solid var(--line);
}
/* ───── SIGHTS DETAIL ───── */
.sights-detail { background: var(--paper); padding: clamp(64px, 12vh, 120px) clamp(18px, 6vw, 80px); }
.sights-detail-wrap { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: clamp(52px, 8vh, 80px); }
.sights-detail-eyebrow { font-size: 12px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--stone); margin: 0 0 16px; }
.sights-detail-h2 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(24px, 3vw, 38px); color: var(--ink); margin: 0 0 20px; line-height: 1.1; }
.sights-detail-intro { font-size: 15.5px; line-height: 1.8; color: var(--ink2); margin: 0 0 clamp(32px, 5vh, 48px); }
.bastions-list { margin: 0; padding: 0; list-style: none; }
.bastion-item { display: grid; grid-template-columns: 1fr 2fr; gap: 12px 24px; padding: 20px 0; border-top: 1px solid var(--line); }
.bastion-item:last-child { border-bottom: 1px solid var(--line); }
.bastion-name { font-family: var(--font-serif); font-size: 17px; font-weight: 400; color: var(--ink); }
.bastion-desc { font-size: 14.5px; line-height: 1.7; color: var(--ink2); }
.sights-hours-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.sights-hours-table th { text-align: left; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone); padding: 0 16px 14px 0; border-bottom: 1px solid var(--ink); }
.sights-hours-table td { padding: 16px 16px 16px 0; border-bottom: 1px solid var(--line); color: var(--ink2); vertical-align: top; line-height: 1.55; }
.sights-hours-table td:first-child { color: var(--ink); font-size: 14.5px; }
@media (max-width: 600px) {
  .bastion-item { grid-template-columns: 1fr; gap: 6px; }
  .sights-hours-table th:nth-child(2), .sights-hours-table td:nth-child(2) { display: none; }
}
/* ───── VISIT ROUTE ───── */
.visit-route { background: var(--paper); padding: clamp(64px, 12vh, 120px) clamp(18px, 6vw, 80px); border-top: 1px solid var(--line); }
.visit-route-wrap { max-width: 860px; margin: 0 auto; }
.visit-route-eyebrow { font-size: 12px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--stone); margin: 0 0 16px; }
.visit-route-h2 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(24px, 3vw, 38px); color: var(--ink); margin: 0 0 12px; line-height: 1.1; }
.visit-route-intro { font-size: 15.5px; line-height: 1.8; color: var(--ink2); margin: 0 0 clamp(32px, 5vh, 48px); }
.route-steps { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 0; }
.route-step { display: grid; grid-template-columns: 36px 1fr; gap: 0 24px; padding: 22px 0; border-top: 1px solid var(--line); }
.route-step:last-child { border-bottom: 1px solid var(--line); }
.route-step-num { font-family: var(--font-serif); font-size: 13px; color: var(--stone); padding-top: 3px; }
.route-step-name { font-family: var(--font-serif); font-size: 17px; font-weight: 400; color: var(--ink); margin: 0 0 6px; }
.route-step-desc { font-size: 14.5px; line-height: 1.7; color: var(--ink2); margin: 0; }
.route-meta { display: flex; gap: 32px; margin-top: clamp(28px, 4vh, 40px); padding-top: 20px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.route-meta-item { font-size: 13px; color: var(--ink2); }
.route-meta-label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone); display: block; margin-bottom: 4px; }
@media (max-width: 480px) {
  .route-step { grid-template-columns: 28px 1fr; gap: 0 16px; }
  .route-meta { gap: 20px; }
}

/* ───── FOOD DETAIL ───── */
.food-detail { background: var(--sand); padding: clamp(64px, 12vh, 120px) clamp(18px, 6vw, 80px); }
.food-detail-wrap { max-width: 860px; margin: 0 auto; }
.food-detail-eyebrow { font-size: 12px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--stone); margin: 0 0 16px; }
.food-detail-h2 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(24px, 3vw, 38px); color: var(--ink); margin: 0 0 12px; line-height: 1.1; }
.food-detail-intro { font-size: 15.5px; line-height: 1.8; color: var(--ink2); margin: 0 0 clamp(32px, 5vh, 48px); }
.restaurant-list { margin: 0; padding: 0; list-style: none; }
.restaurant-item { display: flex; gap: 20px; align-items: flex-start; padding: 22px 0; border-top: 1px solid var(--line); }
.restaurant-item:last-child { border-bottom: 1px solid var(--line); }
.restaurant-price { flex-shrink: 0; width: 44px; padding-top: 3px; font-family: var(--font-serif); font-size: 15px; color: var(--stone); }
.restaurant-info { flex: 1; }
.restaurant-name { font-family: var(--font-serif); font-size: 18px; font-weight: 400; color: var(--ink); margin: 0 0 4px; }
.restaurant-cuisine { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone); margin: 0 0 8px; }
.restaurant-desc { font-size: 14.5px; line-height: 1.7; color: var(--ink2); margin: 0; }
@media (max-width: 480px) {
  .restaurant-item { gap: 12px; }
  .restaurant-price { width: 36px; }
}

/* ───── STAY ───── */
.stay {
  background: var(--ink);
  color: #fff;
  padding: clamp(64px, 12vh, 130px) clamp(18px, 6vw, 80px);
}
.stay-wrap {
  max-width: 1320px;
  margin: 0 auto;
}
.stay-header {
  max-width: 640px;
  margin-bottom: clamp(36px, 6vh, 60px);
}
.stay-eyebrow {
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--mist);
}
.stay-heading {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.06;
  margin: 16px 0 0;
  color: #fff;
}
.stay-intro {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 20px 0 0;
}
.stay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 2.5vw, 36px);
}
.stay-grid .card-stacked-title {
  color: #fff;
}
.stay-grid .card-stacked-desc {
  color: rgba(255, 255, 255, 0.72);
}
/* ───── STAY DETAIL ───── */
.stay-detail { background: var(--sand); padding: clamp(64px, 12vh, 120px) clamp(18px, 6vw, 80px); }
.stay-detail-wrap { max-width: 860px; margin: 0 auto; }
.stay-detail-eyebrow { font-size: 12px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--stone); margin: 0 0 16px; }
.stay-detail-h2 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(24px, 3vw, 38px); color: var(--ink); margin: 0 0 12px; line-height: 1.1; }
.stay-detail-intro { font-size: 15.5px; line-height: 1.8; color: var(--ink2); margin: 0 0 clamp(32px, 5vh, 48px); }
.hotel-list { margin: 0; padding: 0; list-style: none; }
.hotel-item { display: flex; gap: 20px; align-items: flex-start; padding: 22px 0; border-top: 1px solid var(--line); }
.hotel-item:last-child { border-bottom: 1px solid var(--line); }
.hotel-price { flex-shrink: 0; width: 44px; padding-top: 3px; font-family: var(--font-serif); font-size: 15px; color: var(--stone); }
.hotel-info { flex: 1; }
.hotel-name { font-family: var(--font-serif); font-size: 18px; font-weight: 400; color: var(--ink); margin: 0 0 4px; }
.hotel-type { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone); margin: 0 0 8px; }
.hotel-desc { font-size: 14.5px; line-height: 1.7; color: var(--ink2); margin: 0; }
@media (max-width: 480px) {
  .hotel-item { gap: 12px; }
  .hotel-price { width: 36px; }
}

/* ───── GALLERY ───── */
.gallery {
  padding: clamp(64px, 12vh, 130px) clamp(18px, 6vw, 80px);
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto clamp(36px, 6vh, 60px);
}
.gallery-eyebrow {
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--stone);
}
.gallery-heading {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.06;
  margin: 16px 0 0;
  color: var(--ink);
}
.gallery-intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink2);
  margin: 18px 0 0;
}
.gallery-masonry {
  columns: 3 280px;
  column-gap: clamp(12px, 1.4vw, 20px);
}
.gallery-figure {
  margin: 0 0 clamp(12px, 1.4vw, 20px);
  break-inside: avoid;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.gallery-img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.96);
  transition: filter 0.3s, transform 0.4s;
}
.gallery-figure:hover .gallery-img {
  filter: saturate(1);
  transform: scale(1.02);
}
.gallery-figure figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 16px 14px;
  background: linear-gradient(to top, rgba(12,24,32,0.82) 0%, transparent 100%);
  color: #fff;
  font-size: 12.5px;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.gallery-figure:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}
/* ───── CONTACT ───── */
.contact {
  background: var(--sand);
  padding: clamp(64px, 12vh, 130px) clamp(18px, 6vw, 80px);
}
.contact-wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(40px, 6vw, 80px);
}
.contact-eyebrow {
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--stone);
}
.contact-heading {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.07;
  margin: 16px 0 0;
  color: var(--ink);
}
.contact-intro {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink2);
  margin: 20px 0 0;
  max-width: 46ch;
}
/* ───── FOOTER ───── */
.site-footer {
  background: var(--ink);
  color: #fff;
  padding: clamp(56px, 9vh, 96px) clamp(18px, 6vw, 80px) 40px;
}
.footer-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(28px, 3vw, 48px);
}
.footer-top {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 40px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-brand-top {
  font-family: var(--font-serif);
  font-size: 24px;
  letter-spacing: 0.18em;
}
.footer-brand-bot {
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--mist);
}
.footer-tagline {
  max-width: 42ch;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}
.footer-col-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
  margin: 0 0 16px;
  font-weight: 400;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 14px;
}
.footer-links a,
.footer-links li {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.footer-links li.address {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}
.footer-bottom {
  max-width: 1320px;
  margin: clamp(36px, 6vh, 56px) auto 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  align-items: center;
}
.footer-meta {
  display: flex;
  gap: 18px;
  align-items: center;
}
.footer-meta button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 0;
  font-family: inherit;
}
.footer-meta a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

/* ───── RESPONSIVE ───── */
@media (max-width: 880px) {
  .hero-title {
    font-size: clamp(36px, 8vw, 60px);
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .intro-img {
    height: clamp(300px, 45vh, 480px);
  }
  .intro-badge {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: -40px;
    max-width: 100%;
  }
  .history-tl-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding: 24px 0;
  }
  .history-tl-item:last-child {
    border-bottom: none;
  }
  .gallery-masonry {
    columns: 2 180px;
  }
}
@media (max-width: 640px) {
  .hero {
    min-height: 100svh;
    height: 100svh;
  }
  .hero-content {
    padding: 0 16px clamp(30px, 5vh, 50px);
  }
  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 0.3em;
    margin-bottom: 14px;
  }
  .hero-title {
    font-size: clamp(30px, 10vw, 44px);
  }
  .hero-subtitle {
    font-size: 14px;
    margin-top: 16px;
  }
  .hero-actions {
    margin-top: 24px;
  }
  .hero-scroll {
    display: none;
  }
  .gallery-masonry {
    columns: 1;
  }
  .visit-bottom {
    grid-template-columns: 1fr;
  }
  .visit-map iframe {
    min-height: 260px;
  }
}
@media (max-width: 480px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }
  .intro-stats {
    flex-direction: column;
    gap: 18px;
  }
  .intro-stat-label {
    max-width: none;
  }
  .sights-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .sights-grid {
    grid-template-columns: 1fr;
  }
  .food-grid {
    grid-template-columns: 1fr;
  }
  .stay-grid {
    grid-template-columns: 1fr;
  }
  .visit-info-grid {
    grid-template-columns: 1fr;
  }
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .quote-band {
    height: clamp(240px, 40vh, 360px);
  }
  .quote-text {
    font-size: 20px;
    max-width: 14ch;
  }
}
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-column: 1 / -1;
  }
}
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-meta {
    flex-wrap: wrap;
    gap: 10px 16px;
  }
}

/* ───── VISIT / TOUR IMAGES ───── */
.visit-info-img,
.visit-tour-img {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 3px;
}
.visit-info-img img,
.visit-tour-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ───── EVENTS SEARCH & FILTER ───── */
.events-section {
  padding: clamp(64px, 12vh, 120px) clamp(18px, 6vw, 80px) clamp(40px, 6vh, 64px);
  max-width: 860px;
  margin: 0 auto;
}
.events-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
  justify-content: space-between;
  margin: 28px 0 clamp(28px, 4vh, 40px);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.events-search-input {
  flex: 1 1 240px;
  max-width: 360px;
}
.events-toggle {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--ink2);
  cursor: pointer;
  white-space: nowrap;
}
.events-toggle input {
  width: 16px;
  height: 16px;
  accent-color: var(--ink);
  cursor: pointer;
}
.events-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.event-card {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.events-list .event-card:first-child {
  border-top: none;
  padding-top: 0;
}
.event-card-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--sand);
  border-radius: 3px;
  padding: 12px 4px;
  height: fit-content;
}
.event-card-day {
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1;
  color: var(--ink);
}
.event-card-month {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 4px;
}
.event-card-year {
  font-size: 11px;
  color: var(--stone);
}
.event-card-eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 8px;
}
.event-card-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 21px;
  color: var(--ink);
  margin: 0 0 10px;
}
.event-card-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 3px;
  margin-bottom: 14px;
  display: block;
}
.event-card-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink2);
  margin: 0 0 14px;
}
.events-empty {
  text-align: center;
  padding: 40px 0;
  color: var(--stone);
  font-size: 14.5px;
}
@media (max-width: 480px) {
  .event-card { grid-template-columns: 56px 1fr; gap: 16px; }
  .event-card-day { font-size: 19px; }
}

/* ───── HISTORY GALLERY ───── */
.history-gallery-grid figure {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 3px;
  margin: 0;
}
.history-gallery-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== legal.css ===== */
/* ───── LEGAL PAGES ───── */
.legal-section {
  padding: 180px clamp(18px, 6vw, 80px) 80px;
  max-width: 820px;
  margin: 0 auto;
}
.legal-section h1 {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.legal-section .legal-date {
  font-size: 13px;
  color: var(--stone);
  margin-bottom: 40px;
  letter-spacing: 0.04em;
}
.legal-section h2 {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  color: var(--ink);
  margin-top: 40px;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.legal-section h3 {
  font-family: var(--ff-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-top: 28px;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.legal-section p {
  font-family: var(--ff-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--stone);
  margin-bottom: 16px;
}
.legal-section ul {
  margin: 0 0 16px 20px;
  padding: 0;
}
.legal-section li {
  font-family: var(--ff-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--stone);
  margin-bottom: 6px;
}
.legal-section a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-section a:hover {
  color: var(--accent);
}
@media (max-width: 880px) {
  .legal-section {
    padding: 140px 18px 60px;
  }
}
@media (max-width: 640px) {
  .legal-section {
    padding: 120px 14px 40px;
  }
  .legal-section h1 {
    font-size: 24px;
  }
  .legal-section h2 {
    font-size: 18px;
  }
  .legal-section h3 {
    font-size: 14px;
  }
  .legal-section p,
  .legal-section li {
    font-size: 14px;
  }
}
