/* ───── 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: #ffffff;
  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: #ffffff;
  }
}
.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-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 var(--gold); color: var(--gold); }
.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 {
  margin: 34px 0 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;
  bottom: 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-top: 1px solid var(--line);
  padding: 6px 0 max(6px, env(safe-area-inset-bottom));
  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);
}

/* ───── FLOATING LANG PILL (mobile only) ───── */
.mobile-lang-pill {
  display: none;
  position: fixed;
  top: 14px;
  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;
}

/* ───── 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-bottom: max(72px, calc(62px + env(safe-area-inset-bottom)));
  }
  .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;
  }
}



