/* GoBalkan — modern strak: Inter + Adriatic palette */

:root {
  /* Adriatic Navy — hoofdachtergrond, nav, hero */
  --navy-deep: #001f3f;
  --navy: #0a2540;
  /* Balkan Gold — accenten, knoppen, borders */
  --gold: #c9a96e;
  --gold-metallic: #d4af37;
  --gold-light: #dcc9a0;
  /* Stone White — basis, kaarten, velden */
  --stone: #f8f1e9;
  --stone-alt: #f5f0e6;
  /* Regio’s: zelfde basis als main-surface / section--white */
  --section-regios-bg: var(--stone-alt);
  --section-about-bg: #faf6f0;
  --white: #ffffff;
  /* Dalmatian Olive — secundair, hover, natuur */
  --olive: #4a7043;
  --olive-muted: #556b2f;
  /* Hoog contrast op stone-achtergrond (WCAG-vriendelijker) */
  --text: #121820;
  --text-muted: #3d4652;
  --max-width: 1240px;
  --section-pad-y: clamp(3.5rem, 8vw, 6rem);
  --radius: 6px;
  --radius-sm: 4px;
  --shadow: 0 1px 2px rgba(10, 37, 64, 0.06), 0 8px 24px rgba(10, 37, 64, 0.08);
  --shadow-sm: 0 1px 3px rgba(10, 37, 64, 0.08);
  /* Eén moderne sans: strak, UI-vriendelijk */
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

.page-home {
  min-height: 100%;
  min-height: 100dvh;
}

/* Main boven footer (z-index). Geen achtergrond op #main-content — anders bedekt die ook de spacer en zie je de footer nooit. */
#main-content {
  position: relative;
  z-index: 2;
  isolation: isolate;
}

/* Alle “pagina”-inhoud met effen achtergrond; spacer blijft transparant → footer erachter zichtbaar */
.main-surface {
  position: relative;
  background-color: var(--stone-alt);
  box-shadow: 0 56px 120px -64px rgba(0, 31, 63, 0.5);
}

/* Scrollruimte: transparant zodat vaste footer erachter zichtbaar wordt (sectie schuift er ‘vanaf’ weg) */
.footer-reveal-spacer {
  flex: 0 0 auto;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  pointer-events: none;
}

body {
  margin: 0;
  min-height: 100%;
  min-height: 100dvh;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--stone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

/* Koppen: zelfde Inter, strakker en contrasterend */
h1,
h2,
.logo,
.section-intro h2,
.section-heading,
.range-section-head h2,
.about-block h2,
.card-body h3,
.showcase-card__body h3,
.dest-showcase h3,
.dest-card-body h3,
.affiliate-block h3,
.affiliate-item h2,
.city-hero h1,
.not-found h1,
.footer-brand strong,
.form-section h1 {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.03em;
}

h1 {
  font-weight: 700;
  letter-spacing: -0.035em;
}

h2 {
  font-weight: 600;
  letter-spacing: -0.025em;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold-metallic);
  color: var(--navy-deep);
  padding: 0.5rem 1rem;
  z-index: 1000;
  font-family: var(--font-sans);
  font-weight: 600;
}

.skip-link:focus {
  left: 0;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

/* ——— Header: semi-transparant + blur (content schemert door) ——— */
.site-header {
  background: rgba(0, 31, 63, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--white);
  position: relative;
  z-index: 10;
  box-shadow: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  padding: 1.125rem 0;
  min-height: 4rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.035em;
  transition: opacity 0.2s ease;
}

.logo:hover,
.logo:focus-visible {
  opacity: 0.92;
}

.logo:focus-visible {
  outline: 2px solid var(--gold-metallic);
  outline-offset: 4px;
  border-radius: 2px;
}

.logo span {
  color: var(--gold-metallic);
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 1.35rem;
}

.site-nav__link {
  position: relative;
  display: inline-block;
  padding: 0.5rem 0.4rem 0.55rem;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.site-nav__link:hover {
  color: var(--white);
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after {
  opacity: 1;
}

.site-nav__link:focus-visible {
  color: var(--white);
  outline: none;
}

.site-nav__link:focus-visible::after {
  background: var(--gold-metallic);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: var(--gold-metallic);
  background: transparent;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--stone);
}

.site-nav.is-open {
  display: block;
}

.site-nav__cta-wrap {
  list-style: none;
  margin: 0 0 0 0.5rem;
  padding-left: 1.15rem;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 9999px;
  color: var(--white) !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none !important;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.45) inset,
    0 -1px 0 rgba(0, 0, 0, 0.06) inset,
    0 4px 16px rgba(0, 0, 0, 0.08);
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.25s ease,
    box-shadow 0.3s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: rgba(255, 255, 255, 0.32);
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--navy-deep) !important;
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 8px 24px rgba(0, 0, 0, 0.15);
}

.nav-cta:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

/* ——— Hero: hoogte = viewport minus header op subpagina’s; op home staat header in de hero ——— */
.hero {
  --hero-parallax-y: 0px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  text-align: left;
  color: var(--stone);
  isolation: isolate;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
  min-height: calc(100vh - 6rem);
  min-height: calc(100svh - 6rem);
  min-height: calc(100dvh - 6rem);
  padding-top: max(1.5rem, calc(env(safe-area-inset-top, 0px) + 1rem));
  padding-bottom: max(2.5rem, calc(env(safe-area-inset-bottom, 0px) + 1.5rem));
  /* Horizontale marge: op smalle schermen geen vaste 5cm; schaalt tot 5cm op brede viewports */
  padding-left: calc(
    max(clamp(1rem, 4vw, 2.75rem), env(safe-area-inset-left, 0px)) + clamp(0rem, 10vw, 5cm)
  );
  padding-right: max(clamp(1rem, 4vw, 2.5rem), env(safe-area-inset-right, 0px));
}

/* Homepage: navigatie bovenop de hero (DOM in .hero); volledige viewport + extra top-padding voor de balk */
.hero.hero--has-header {
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  padding-top: max(6rem, calc(env(safe-area-inset-top, 0px) + 4.75rem));
}

@media (max-width: 640px) {
  .hero.hero--has-header {
    padding-top: max(5rem, calc(env(safe-area-inset-top, 0px) + 3.35rem));
    padding-bottom: max(1.75rem, calc(env(safe-area-inset-bottom, 0px) + 1rem));
  }

  .hero {
    padding-left: calc(
      max(clamp(0.875rem, 3.5vw, 1.25rem), env(safe-area-inset-left, 0px)) + clamp(0rem, 6vw, 2.5rem)
    );
    padding-right: max(clamp(0.875rem, 3.5vw, 1.25rem), env(safe-area-inset-right, 0px));
  }

  .hero-copy {
    min-height: min(36vh, 16rem);
  }

  .hero-title__accent {
    font-size: clamp(1.7rem, 7.5vw, 2.85rem);
  }

  .hero-title__line {
    font-size: clamp(0.7rem, 2.8vw, 0.875rem);
  }
}

.hero.hero--has-header .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 15;
  background: transparent;
  box-shadow: none;
  border-bottom: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Homepage: main als kolom zodat hero min-height viewport betrouwbaar vult */
.page-home #main-content {
  display: flex;
  flex-direction: column;
}

.page-home .main-surface > .hero:first-child {
  min-height: calc(100vh - 6rem);
  min-height: calc(100svh - 6rem);
  min-height: calc(100dvh - 6rem);
  flex-shrink: 0;
}

.page-home .main-surface > .hero.hero--has-header:first-child {
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
}

/* Twee lagen: nieuwe foto schuift van links over de vorige */
.hero-bg-stack {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--navy-deep);
}

.hero-bg-plane {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-color: var(--navy-deep);
  transform: translateX(0);
  transition: transform 0.58s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Parallax op wrapper; foto zit in .hero-bg-plane__zoom met langzame zoom (Ken Burns) per slide */
.hero-bg-plane__inner {
  position: absolute;
  left: 0;
  right: 0;
  top: -24%;
  width: 100%;
  height: 148%;
  background-color: var(--navy-deep);
  transform: translate3d(0, var(--hero-parallax-y, 0px), 0);
  will-change: transform;
}

.hero-bg-plane__zoom {
  position: absolute;
  inset: 0;
  background-color: var(--navy-deep);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transform-origin: center center;
  animation: hero-bg-ken-burns 10s linear forwards;
}

@keyframes hero-bg-ken-burns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

.hero-bg-plane--a {
  z-index: 1;
}

/* Achterste laag wacht rechts buiten beeld; nieuwe foto schuift links over de voorste */
.hero-bg-plane--b {
  z-index: 0;
  transform: translateX(100%);
}

.hero--reduced-motion .hero-bg-plane {
  transition: none !important;
}

.hero--reduced-motion .hero-bg-plane__inner {
  transform: none !important;
}

.hero--reduced-motion .hero-bg-plane__zoom {
  animation: none !important;
  transform: none !important;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    165deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.5) 38%,
    rgba(0, 0, 0, 0.85) 100%
  );
}

/* Scroll-icoon — rustig, gecentreerd onderaan de hero */
.hero-scroll {
  position: absolute;
  bottom: max(1.35rem, env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  border-radius: 50%;
  transition:
    color 0.35s ease,
    transform 0.4s ease;
}

.hero-scroll__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 31, 63, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: border-color 0.35s ease, background 0.35s ease;
}

.hero-scroll:hover .hero-scroll__ring,
.hero-scroll:focus-visible .hero-scroll__ring {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(0, 31, 63, 0.28);
}

.hero-scroll__glyph {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: hero-scroll-glyph-nudge 4.5s ease-in-out infinite;
}

.hero-scroll__chev--2 {
  opacity: 0.45;
}

@keyframes hero-scroll-glyph-nudge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(2px);
  }
}

.hero-scroll:hover {
  color: rgba(255, 255, 255, 0.95);
  transform: translate(-50%, -1px);
}

.hero-scroll:focus-visible {
  color: #fff;
  transform: translate(-50%, -1px);
  outline: 2px solid rgba(212, 175, 55, 0.55);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll__glyph {
    animation: none;
  }

  .hero-scroll {
    transform: translateX(-50%);
  }

  .hero-scroll:hover,
  .hero-scroll:focus-visible {
    transform: translateX(-50%);
  }
}

/* Hoofdcontent + rechter menu naast elkaar */
.hero-layout {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.25rem, 3vw, 3rem);
  width: 100%;
  box-sizing: border-box;
}

/* Links in de hero; breedte begrensd */
.hero-wrap {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  max-width: var(--max-width);
  margin-left: 0;
  margin-right: auto;
}

/* Rechter verticale menu: vaste kolombreedte zodat labels + strepen netjes onder elkaar uitlijnen */
.hero-side-nav {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: min(62vw, 22rem);
  gap: 1.75rem;
  padding: 0;
  margin: 0;
}

.hero-side-nav__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  width: 100%;
  box-sizing: border-box;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-sans);
  font-size: clamp(0.8125rem, 1.1vw, 0.9375rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translate(0, 0);
  transition: transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Geselecteerde bestemming: naar links en omhoog */
.hero-side-nav__item.is-active {
  transform: translate(-15px, -5px);
}

.hero-side-nav__item.is-active .hero-side-nav__label {
  letter-spacing: 0.14em;
}

.hero-side-nav__item.is-active .hero-side-nav__rule {
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.35);
}

.hero-side-nav__item:hover:not(.is-active),
.hero-side-nav__item:focus-visible:not(.is-active) {
  color: #fff;
  transform: translate(-15px, -5px);
}

.hero-side-nav__item.is-active:hover,
.hero-side-nav__item.is-active:focus-visible {
  color: #fff;
  transform: translate(-15px, -5px);
}

.hero-side-nav__item:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 0.35rem;
}

@media (prefers-reduced-motion: reduce) {
  .hero-side-nav__item {
    transition: none;
  }

  .hero-side-nav__item:hover,
  .hero-side-nav__item:focus-visible {
    transform: none;
  }
}

.hero-side-nav__label {
  display: block;
  width: 100%;
  text-align: left;
  line-height: 1.25;
}

/* Streep: zelfde linkerrand als het label; steekt naar rechts */
.hero-side-nav__rule {
  display: block;
  align-self: flex-start;
  width: calc(100% + clamp(4rem, 38vw, 24rem));
  min-width: 100%;
  height: 2px;
  background: #fff;
  transform-origin: left center;
}


@media (max-width: 900px) {
  .hero-layout {
    flex-direction: column;
    align-items: stretch;
    gap: clamp(1.35rem, 4vw, 2.25rem);
  }

  .hero-side-nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 1rem 1.5rem;
    width: 100%;
    max-width: 100%;
  }

  .hero-side-nav__item {
    width: auto;
    flex: 0 1 auto;
    min-width: 7rem;
    max-width: min(48vw, 12rem);
  }

  .hero-side-nav__rule {
    width: calc(100% + min(50vw, 14rem));
    max-width: none;
  }
}

/* Smalle mobiel: bestemmingen-rail horizontaal scrollen, geen afgekapte labels */
@media (max-width: 560px) {
  .hero-side-nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0.65rem 1.1rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.4rem;
    margin-inline: calc(-1 * min(0.5rem, 2vw));
    padding-inline: min(0.5rem, 2vw);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .hero-side-nav__item {
    flex: 0 0 auto;
    min-width: auto;
    max-width: none;
    font-size: clamp(0.7rem, 2.9vw, 0.8125rem);
  }

  .hero-side-nav__rule {
    width: min(11rem, 42vw);
    max-width: 100%;
  }

  .hero-side-nav__item.is-active,
  .hero-side-nav__item:hover:not(.is-active),
  .hero-side-nav__item:focus-visible:not(.is-active),
  .hero-side-nav__item.is-active:hover,
  .hero-side-nav__item.is-active:focus-visible {
    transform: translate(-4px, -2px);
  }
}

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 42rem;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.hero-copy {
  position: relative;
  width: 100%;
  min-height: min(44vh, 26rem);
}

.hero-panel {
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-panel[hidden] {
  display: none !important;
}

/* Actieve slide vult het blok; CTA’s staan onderaan op vaste hoogte t.o.v. de hero-tekstkolom */
.hero-panel.is-active {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 1;
}

.hero[data-hero-interacted="true"] .hero-panel.is-active {
  animation: hero-panel-reveal 0.45s ease forwards;
}

@keyframes hero-panel-reveal {
  from {
    opacity: 0;
    transform: translateY(0.75rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero--reduced-motion .hero-panel.is-active {
  animation: none !important;
}

/* Hoofdtitel — twee regels voor hiërarchie; zelfde kolombreedte als lead/CTA; parallax via --hero-text-y-* op .hero */
.hero-title {
  margin: 0 0 1.1rem;
  max-width: 38rem;
  width: 100%;
  font-family: var(--font-sans);
  font-weight: 700;
  text-wrap: balance;
  text-align: left;
  line-height: 1.08;
  transform: translate3d(0, var(--hero-text-y-title, 0px), 0);
}

.hero-title__line {
  display: block;
  font-size: clamp(0.8125rem, 1.85vw, 0.9375rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.6rem;
}

.hero-title__accent {
  display: block;
  font-size: clamp(2.15rem, 6.8vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--white);
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.45);
}

/* Dikgedrukte lead + rustige subtitel */
.hero-lead {
  margin: 0 0 0.85rem;
  max-width: 38rem;
  width: 100%;
  transform: translate3d(0, var(--hero-text-y-lead, 0px), 0);
  font-family: var(--font-sans);
  font-size: clamp(1.02rem, 1.65vw, 1.2rem);
  line-height: 1.55;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.94);
  letter-spacing: -0.01em;
}

.hero-lead strong {
  font-weight: 700;
  color: var(--white);
}

.hero-subtitle {
  flex: 1 1 auto;
  margin: 0;
  max-width: 38rem;
  width: 100%;
  transform: translate3d(0, var(--hero-text-y-subtitle, 0px), 0);
  font-family: var(--font-sans);
  font-size: clamp(0.9375rem, 1.25vw, 1.0625rem);
  line-height: 1.62;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.01em;
}

/* Twee CTA’s: gelijke breedte, onderaan de tekstkolom uitgelijnd */
.hero-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
  align-items: stretch;
  justify-items: stretch;
  width: 100%;
  max-width: 38rem;
  margin-top: auto;
  padding-top: 1.85rem;
  box-sizing: border-box;
  transform: translate3d(0, var(--hero-text-y-cta, 0px), 0);
}

.hero-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.125rem;
  padding: 0.8rem 1rem;
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  box-sizing: border-box;
  overflow: hidden;
  transition:
    transform 0.38s cubic-bezier(0.34, 1.45, 0.64, 1),
    box-shadow 0.35s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.2s ease,
    filter 0.25s ease;
}

.hero-btn--primary {
  background: linear-gradient(165deg, var(--gold-light) 0%, var(--gold-metallic) 45%, #c9a03a 100%);
  color: var(--navy-deep);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.hero-btn--primary:hover,
.hero-btn--primary:focus-visible {
  transform: translateY(-4px);
  filter: brightness(1.05);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
    0 0 40px rgba(212, 175, 55, 0.35);
  color: var(--navy-deep);
}

.hero-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-btn--ghost:hover,
.hero-btn--ghost:focus-visible {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--white);
  color: var(--white);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.hero-btn:focus-visible {
  outline: 2px solid var(--gold-metallic);
  outline-offset: 3px;
}

.hero-btn--ghost:focus-visible {
  outline-color: var(--white);
}

@media (prefers-reduced-motion: reduce) {
  .hero-btn {
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  }

  .hero-btn:hover,
  .hero-btn:focus-visible {
    transform: none;
  }
}

@media (max-width: 520px) {
  .hero-cta {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding-top: 1.35rem;
  }

  .hero-lead {
    font-size: clamp(0.95rem, 3.8vw, 1.1rem);
  }

  .hero-subtitle {
    font-size: clamp(0.875rem, 3.2vw, 1rem);
  }
}

@media (max-width: 380px) {
  .hero-btn {
    max-width: none;
  }
}

/* ——— Secties algemeen (alleen publieke site: admin gebruikt <section> in dashboard en krijgt anders dubbele verticale padding) ——— */
body:not(.admin-page) section:not(.hero):not(.range-about--fullscreen):not(.over-ons-hero):not(.over-ons-stack):not(.bestemmingen-hero):not(.city-hero):not(.city-affiliate-sector):not(.contact-hero):not(.contact-parallax) {
  padding: 3rem 0;
}

.section--white {
  background: var(--stone-alt);
  border-top: 1px solid rgba(74, 112, 67, 0.08);
  border-bottom: 1px solid rgba(74, 112, 67, 0.06);
}

.section-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
}

.section-intro h2 {
  margin: 0 0 0.65rem;
  color: var(--navy-deep);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.section-intro p {
  margin: 0;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.65;
}

/* ——— Cards grid ——— */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 37, 64, 0.08);
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.card:hover {
  border-color: rgba(10, 37, 64, 0.12);
  box-shadow: var(--shadow);
}

.card-visual {
  height: 152px;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e8d5a8;
  font-size: 0.75rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201, 169, 110, 0.35);
}

.card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--stone);
}

.card-body h3 {
  margin: 0 0 0.5rem;
  color: var(--navy-deep);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.card-body p {
  margin: 0 0 1rem;
  flex: 1;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
}

.card-link {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy-deep);
  text-decoration: none;
  transition: color 0.2s;
}

.card-link:hover,
.card-link:focus-visible {
  color: var(--olive);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ——— Bestemmingen ——— */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.dest-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  border: 1px solid rgba(10, 37, 64, 0.08);
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.dest-card:hover,
.dest-card:focus-visible {
  border-color: var(--gold-metallic);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.dest-card-visual {
  height: 132px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  border-bottom: 2px solid var(--gold-metallic);
}

.dest-card-body {
  padding: 1.25rem;
  background: var(--stone);
}

.dest-card-body h3 {
  margin: 0 0 0.35rem;
  color: var(--navy-deep);
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
}

.dest-card-body span {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--olive-muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.dest-card:hover .dest-card-body span,
.dest-card:focus-visible .dest-card-body span {
  color: var(--gold-metallic);
}

/* ——— Affiliate placeholders ——— */
.affiliate-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.affiliate-block {
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(10, 37, 64, 0.08);
  border-left: 3px solid var(--gold-metallic);
  box-shadow: var(--shadow-sm);
  transition: border-left-color 0.15s ease, box-shadow 0.15s ease;
}

.affiliate-block:hover {
  border-left-color: var(--olive);
  box-shadow: var(--shadow);
}

.affiliate-block h3 {
  margin: 0 0 0.5rem;
  color: var(--navy-deep);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.affiliate-block p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
}

.btn {
  display: inline-block;
  padding: 0.625rem 1.125rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: var(--navy-deep);
  color: var(--white);
  border-color: var(--navy-deep);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.btn-gold {
  background: var(--gold-metallic);
  color: var(--navy-deep);
  border-color: var(--gold-metallic);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* ——— Over ons ——— */
.about-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-block h2 {
  color: var(--navy);
  margin-top: 0;
}

.about-block p {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}

.about-block p + p {
  margin-top: 1rem;
}

/* ——— Formulieren ——— */
.form-section {
  background: var(--stone-alt);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-layout .form-stack + div p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

.contact-layout .form-stack + div strong {
  color: var(--navy-deep);
}

@media (max-width: 800px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.form-stack label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 0.4rem;
}

.form-stack input,
.form-stack textarea,
.form-stack select {
  width: 100%;
  padding: 0.75rem 0.95rem;
  border: 1px solid rgba(10, 37, 64, 0.22);
  border-radius: var(--radius);
  font-size: 1.0625rem;
  line-height: 1.5;
  font-family: var(--font-sans);
  margin-bottom: 1rem;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-stack .form-hint {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: -0.35rem 0 1rem;
  line-height: 1.45;
}

.form-stack .form-hint code {
  font-size: 0.8em;
}

.form-stack textarea {
  min-height: 140px;
  resize: vertical;
}

.form-stack input:hover,
.form-stack textarea:hover,
.form-stack select:hover {
  border-color: rgba(74, 112, 67, 0.35);
}

.form-stack input:focus-visible,
.form-stack textarea:focus-visible,
.form-stack select:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 1px;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(74, 112, 67, 0.12);
}

.form-error {
  background: #fdf2f2;
  color: #822727;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.55;
  border-left: 4px solid #c53030;
}

.form-success {
  background: #f0fdf4;
  color: #22543d;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.55;
  border-left: 4px solid var(--olive);
}

/* ——— Stad detail ——— (zelfde parallax-variabelen als homepage hero: --hero-parallax-y, --hero-text-y-title) */
.city-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--stone);
  isolation: isolate;
}

.city-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--navy-deep);
  background-size: cover;
  background-position: center;
  transform: translate3d(0, var(--hero-parallax-y, 0px), 0);
}

.city-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    165deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 31, 63, 0.62) 45%,
    rgba(0, 0, 0, 0.82) 100%
  );
  pointer-events: none;
}

.city-hero--fullscreen {
  --hero-parallax-y: 0px;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  box-sizing: border-box;
}

.city-hero--fullscreen .city-hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  padding: max(6rem, calc(env(safe-area-inset-top, 0px) + 4.75rem)) clamp(1rem, 4vw, 2rem)
    max(2.5rem, env(safe-area-inset-bottom, 0px));
  text-align: center;
}

.city-hero--fullscreen .city-hero__inner {
  width: 100%;
  max-width: 42rem;
  margin-inline: auto;
}

.city-hero h1,
.city-hero__title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--stone);
  letter-spacing: -0.04em;
  font-weight: 700;
  line-height: 1.08;
  transform: translate3d(0, var(--hero-text-y-title, 0px), 0);
}

.city-hero__lead {
  margin: 1rem 0 0;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.58;
  color: rgba(248, 241, 233, 0.92);
  font-weight: 500;
  transform: translate3d(0, calc(var(--hero-text-y-title, 0px) * 0.65), 0);
}

.city-hero__actions {
  margin: 1.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.city-hero .btn--hero-back {
  font-size: 0.9rem;
}

.page-steden-detail #main-content {
  display: flex;
  flex-direction: column;
}

.page-steden-detail .main-surface {
  overflow: visible;
}

@media (max-width: 640px) {
  .city-hero--fullscreen .city-hero__content {
    padding-top: max(5rem, calc(env(safe-area-inset-top, 0px) + 3.35rem));
    padding-bottom: max(1.75rem, calc(env(safe-area-inset-bottom, 0px) + 1rem));
  }
}

.city-sights {
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
  border-top: 1px solid rgba(10, 37, 64, 0.08);
}

.city-sights__head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.city-sights__sub {
  margin: 0.35rem 0 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.city-sights__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1.35rem;
}

.city-sights__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(10, 37, 64, 0.09);
  box-shadow: 0 4px 20px rgba(0, 31, 63, 0.05);
}

.city-sights__img-wrap {
  aspect-ratio: 16 / 10;
  background: rgba(0, 31, 63, 0.06);
}

.city-sights__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.city-sights__body {
  padding: 1.15rem 1.2rem 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.city-sights__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
}

.city-sights__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
}

@media (prefers-reduced-motion: reduce) {
  .city-hero__bg,
  .city-hero h1,
  .city-hero__title,
  .city-hero__lead {
    transform: none;
  }
}

.city-intro {
  padding: 2rem 0;
  background: var(--stone-alt);
}

/* Ankers voor hub-links (#sector-vluchten, …) — offset t.o.v. vaste header */
.city-category__anchor {
  display: block;
  height: 0;
  scroll-margin-top: 5.5rem;
}

.city-category__head-only {
  padding: 2rem 0 0.5rem;
}

.page-steden-detail .city-category__head-only {
  padding-bottom: clamp(0.75rem, 2vw, 1.15rem);
}

/* Globale .section-heading heeft max-width: 20ch — op de stedengids oogt dat te smal en “links geplakt” */
.page-steden-detail .city-category__head-only .section-heading {
  max-width: min(42rem, 100%);
}

.affiliate-sections--nested {
  padding-top: 0.25rem;
}

.affiliate-sections--nested > .affiliate-item:first-of-type {
  padding-top: 1.25rem;
}

.affiliate-sections--standalone {
  padding-top: 0;
}

.city-empty-hint {
  padding: 2rem 0 3rem;
}

.city-more-section {
  padding-top: 2.5rem;
}

/* Stedengids: aparte sectie per categorie (verblijf, vluchten, auto, tours) */
.city-affiliate-sector {
  padding: clamp(2.35rem, 5vw, 3.5rem) 0;
  border-top: 1px solid rgba(74, 112, 67, 0.09);
}

.city-affiliate-sector--tone-a {
  background: var(--white);
}

.city-affiliate-sector--tone-b {
  background: var(--stone-alt);
}

.city-affiliate-sector__inner {
  max-width: 38rem;
}

.city-affiliate-sector .section-label {
  margin-bottom: 0.4rem;
}

.city-affiliate-sector__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-sans);
  font-size: clamp(1.45rem, 3.2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--navy-deep);
}

.city-affiliate-sector__intro {
  margin: 0 0 1.35rem;
  font-size: 1.0625rem;
  line-height: 1.68;
  color: var(--text-muted);
}

.city-affiliate-sector__action {
  margin: 0;
}

.affiliate-sections__subhead {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
}

.affiliate-sections__subhead .section-heading {
  margin-bottom: 0.35rem;
}

.city-intro .lead {
  max-width: 42rem;
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  font-family: var(--font-sans);
}

.affiliate-sections {
  padding: 2rem 0 4rem;
}

.affiliate-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
  gap: 1.5rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(10, 37, 64, 0.1);
}

.affiliate-item:first-child {
  padding-top: 0;
}

.affiliate-item:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .affiliate-item {
    grid-template-columns: 1fr;
  }
}

.affiliate-item h2 {
  margin: 0 0 0.75rem;
  color: var(--navy-deep);
  font-size: 1.1875rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.affiliate-item .desc {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.affiliate-item .thumb {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
  min-height: 180px;
  border: 1px solid rgba(201, 169, 110, 0.25);
}

.affiliate-item .thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.affiliate-item .thumb-placeholder {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e8d5a8;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.45;
  text-align: center;
  padding: 1rem;
}

.not-found {
  text-align: center;
  padding: 4rem 1rem;
}

.not-found h1 {
  color: var(--navy-deep);
}

.not-found p {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ——— Footer: blijft stil (fixed); secties erboven schuiven omhoog → eerst onderkant footer zichtbaar, dan naar boven ——— */
.site-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  color: #ece6de;
  padding: 0;
  padding-bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  margin: 0;
  border-top: none;
  background-color: var(--navy-deep);
  box-sizing: border-box;
}

/* Groter dan viewport (140%) + scale tussen ~0,71 en 1 → altijd fullscreen, geen kaders */
.site-footer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 140%;
  height: 140%;
  z-index: 0;
  background:
    url("../images/footer.jpg") center center / cover no-repeat;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(var(--footer-bg-scale, 1));
  transform-origin: center center;
  will-change: transform;
}

.site-footer::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 140%;
  height: 140%;
  z-index: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.55) 32%,
    rgba(0, 0, 0, 0.2) 62%,
    transparent 100%
  );
  pointer-events: none;
  transform: translate(-50%, -50%) scale(var(--footer-bg-scale, 1));
  transform-origin: center center;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .site-footer::before,
  .site-footer::after {
    transform: translate(-50%, -50%);
    will-change: auto;
  }
}

.site-footer > .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, 1fr);
  gap: 2.5rem 2rem;
  padding-top: 3.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.footer-logo span {
  color: var(--gold-metallic);
}

.footer-brand p {
  margin: 0;
  max-width: 22rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(236, 230, 222, 0.92);
}

.footer-heading {
  margin: 0 0 1rem;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.9375rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-contact {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(236, 230, 222, 0.9);
}

.footer-contact a {
  color: var(--gold-light);
}

.footer-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  padding: 1.25rem 0 1.5rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(236, 230, 222, 0.7);
}

.footer-credit {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(236, 230, 222, 0.55);
  letter-spacing: 0.02em;
}

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

/* ——— Range-inspired homepage (editorial luxury) ——— */
.section-label {
  margin: 0 0 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-metallic);
}

.section-label--dark {
  color: var(--gold-light);
}

.section-heading {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4.5vw, 2.85rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--navy-deep);
  letter-spacing: -0.035em;
  max-width: 20ch;
}

.range-section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto var(--section-pad-y);
}

.range-section-head .section-label {
  margin-bottom: 0.65rem;
}

.range-section-head .section-heading {
  margin-left: auto;
  margin-right: auto;
  max-width: none;
}

.range-section-head__sub {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-muted);
}

section.section-spacious {
  padding-top: var(--section-pad-y);
  padding-bottom: var(--section-pad-y);
}

/* Welkom + marquee als één full-screen blok */
.intro-marquee-stack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  padding: 0;
  scroll-margin-top: 1.25rem;
  background: linear-gradient(
    180deg,
    rgba(0, 31, 63, 0.06) 0%,
    var(--stone-alt) 22%,
    var(--stone) 100%
  );
  border-top: 1px solid rgba(0, 31, 63, 0.07);
  border-bottom: 1px solid rgba(0, 31, 63, 0.06);
  overflow: clip;
}

.intro-marquee-stack__welcome {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: clamp(1.75rem, 6vw, 3.5rem) 0;
}

.intro-marquee-stack__marquee {
  flex-shrink: 0;
  padding-bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
}

/* Welkom — overgang vanaf hero, goud + navy, editorial */
.range-intro {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(0, 31, 63, 0.06) 0%,
    var(--stone-alt) 18%,
    var(--stone) 100%
  );
  border-top: 1px solid rgba(0, 31, 63, 0.07);
  border-bottom: 1px solid rgba(0, 31, 63, 0.05);
  overflow: clip;
}

.intro-marquee-stack .range-intro {
  background: transparent;
  border: none;
  overflow: visible;
  width: 100%;
}

.range-intro__inner {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  margin: 0 auto;
  padding-top: 0.25rem;
  text-align: center;
}

/* Welkom: afbeelding links, copy rechts uitgelijnd */
.range-intro__inner--split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.25rem);
  align-items: center;
  max-width: var(--max-width);
  text-align: initial;
}

.range-intro__visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.range-intro__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.range-intro__copy {
  text-align: left;
  min-width: 0;
}

.intro-marquee-stack .range-intro__copy .range-intro__label {
  text-align: left;
}

.intro-marquee-stack .range-intro__copy .range-intro__title {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.intro-marquee-stack .range-intro__copy .range-intro__title::after {
  margin-left: 0;
  margin-right: auto;
}

.intro-marquee-stack .range-intro__copy .range-intro__lead {
  margin-left: 0;
  margin-right: auto;
}

.range-intro__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-top: clamp(1.35rem, 3vw, 2rem);
}

.range-intro__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.25s ease;
}

.range-intro__cta--primary {
  background: linear-gradient(165deg, var(--gold-light) 0%, var(--gold-metallic) 50%, #c9a03a 100%);
  color: var(--navy-deep);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 14px rgba(0, 31, 63, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.range-intro__cta--primary:hover,
.range-intro__cta--primary:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 8px 24px rgba(0, 31, 63, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  color: var(--navy-deep);
}

.range-intro__cta--secondary {
  background: transparent;
  color: var(--navy-deep);
  border-color: rgba(10, 37, 64, 0.45);
}

.range-intro__cta--secondary:hover,
.range-intro__cta--secondary:focus-visible {
  transform: translateY(-2px);
  background: rgba(10, 37, 64, 0.06);
  border-color: var(--navy-deep);
  color: var(--navy-deep);
}

.range-intro__cta:focus-visible {
  outline: 2px solid var(--gold-metallic);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .range-intro__cta:hover,
  .range-intro__cta:focus-visible {
    transform: none;
  }
}

@media (max-width: 820px) {
  .range-intro__inner--split {
    grid-template-columns: 1fr;
    gap: clamp(1.25rem, 4vw, 2rem);
  }

  .range-intro__visual {
    max-width: 28rem;
    margin: 0 auto;
    width: 100%;
  }

  .range-intro__img {
    aspect-ratio: 16 / 10;
  }

  .range-intro__copy {
    text-align: left;
  }

  .intro-marquee-stack .range-intro__copy .range-intro__label,
  .intro-marquee-stack .range-intro__copy .range-intro__title {
    text-align: left;
  }

  .intro-marquee-stack .range-intro__copy .range-intro__title {
    margin-left: 0;
    margin-right: auto;
  }

  .intro-marquee-stack .range-intro__copy .range-intro__title::after {
    margin-left: 0;
    margin-right: auto;
  }

  .intro-marquee-stack .range-intro__copy .range-intro__lead {
    margin-left: 0;
    margin-right: auto;
  }
}

.range-intro__label {
  margin-bottom: 1rem;
  letter-spacing: 0.22em;
}

.range-intro__title {
  margin: 0 auto 1.35rem;
  max-width: 22ch;
  font-size: clamp(1.95rem, 4.8vw, 3rem);
  line-height: 1.08;
  text-wrap: balance;
  color: var(--navy-deep);
  letter-spacing: -0.04em;
}

.range-intro__title::after {
  content: "";
  display: block;
  width: 3rem;
  height: 2px;
  margin: 1.5rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold-metallic), transparent);
  border-radius: 1px;
  opacity: 0.85;
}

.range-intro__lead {
  margin: 0 auto;
  max-width: 38rem;
  font-size: clamp(1.0625rem, 1.35vw, 1.1875rem);
  line-height: 1.78;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.01em;
}

@media (max-width: 520px) {
  .range-intro__title {
    max-width: none;
  }

  .range-intro__title::after {
    margin-top: 1.25rem;
  }
}

/* USP-marquee — geen achtergrond; loopt over page (stone) */
.usp-marquee {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: clamp(0.85rem, 2.2vw, 1.15rem) 0;
  overflow: hidden;
}

.usp-marquee__track {
  display: flex;
  width: max-content;
  user-select: none;
  -webkit-user-select: none;
  will-change: transform;
  animation-name: usp-marquee-scroll;
  animation-duration: 52s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: normal;
}

@keyframes usp-marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.usp-marquee__list {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0 clamp(1.75rem, 4vw, 3rem);
  list-style: none;
  font-family: var(--font-sans);
  font-size: clamp(0.8125rem, 1.35vw, 0.9375rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.usp-marquee__list li {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.usp-marquee__list li + li::before {
  content: "·";
  margin: 0 clamp(0.85rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--gold-metallic);
  opacity: 0.65;
}

@media (prefers-reduced-motion: reduce) {
  .usp-marquee__track .usp-marquee__list:nth-child(2) {
    display: none;
  }

  .usp-marquee__track {
    animation: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0.65rem;
    column-gap: 0;
    padding: 0.15rem 0.5rem;
  }

  .usp-marquee__list {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 0.75rem;
    max-width: 46rem;
    font-size: clamp(0.8rem, 1.2vw, 0.9rem);
  }

  .usp-marquee__list li {
    white-space: normal;
    text-align: center;
  }

  .usp-marquee__list li + li::before {
    margin: 0 0.45rem;
  }
}

/* Fullscreen portfolio-scroll: verticale scroll “locked” → horizontaal door 3 panelen */
.portfolio-scroll {
  position: relative;
  margin: 0;
  padding: 0;
  scroll-margin-top: 5rem;
}

.portfolio-scroll__spacer {
  position: relative;
}

.portfolio-scroll__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  min-height: 28rem;
  overflow: hidden;
  background: var(--navy-deep);
}

.portfolio-scroll__stack {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.portfolio-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: var(--navy-deep);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.portfolio-slide__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 31, 63, 0.35) 0%,
    rgba(0, 20, 40, 0.55) 45%,
    rgba(0, 12, 24, 0.82) 100%
  );
  pointer-events: none;
}

.portfolio-slide__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  padding: clamp(1.75rem, 5vw, 3.5rem);
  padding-bottom: clamp(4.5rem, 12vh, 7rem);
}

.portfolio-slide__copy {
  max-width: 36rem;
  text-align: center;
}

.portfolio-slide__label {
  margin-bottom: 0.65rem;
  opacity: 0.95;
}

.portfolio-slide__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-sans);
  font-size: clamp(1.65rem, 4.2vw, 2.65rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--stone);
  text-wrap: balance;
}

.portfolio-slide__sub {
  margin: 0 auto 1.5rem;
  max-width: 28rem;
  font-size: clamp(0.98rem, 1.35vw, 1.1rem);
  line-height: 1.55;
  color: rgba(248, 241, 233, 0.88);
}

.glass-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.88rem 1.65rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--stone);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.glass-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(212, 175, 55, 0.55);
  color: #fff;
}

.glass-btn:focus-visible {
  outline: 2px solid var(--gold-metallic);
  outline-offset: 3px;
}

.portfolio-scroll__progress {
  position: absolute;
  bottom: clamp(1.25rem, 4vh, 2rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.portfolio-scroll__progress-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  transition: background 0.2s ease, transform 0.2s ease, width 0.25s ease;
}

.portfolio-scroll__progress-dot.is-active {
  width: 1.35rem;
  background: var(--gold-metallic);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.35);
}

.portfolio-scroll__hint {
  position: absolute;
  bottom: clamp(3.25rem, 9vh, 4.5rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  margin: 0;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(248, 241, 233, 0.55);
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.portfolio-scroll__hint.is-hidden {
  opacity: 0;
}

@media (max-width: 520px) {
  .portfolio-slide__inner {
    padding-bottom: clamp(5rem, 14vh, 6.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-scroll__spacer {
    height: auto !important;
  }

  .portfolio-scroll__sticky {
    position: relative;
    height: auto;
    min-height: 0;
  }

  .portfolio-scroll__stack {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .portfolio-slide {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 85vh;
    min-height: 85dvh;
    transform: none !important;
    will-change: auto;
  }

  .portfolio-scroll__hint {
    display: none;
  }

  .portfolio-scroll__progress {
    display: none;
  }
}

/* ——— Pagina Contact: hero + scroll-parallax ——— */
.page-contact .main-surface {
  overflow: visible;
}

.contact-hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  padding: max(6rem, calc(env(safe-area-inset-top, 0px) + 4.75rem)) clamp(1rem, 4vw, 2rem)
    max(2.5rem, env(safe-area-inset-bottom, 0px));
  overflow: hidden;
  isolation: isolate;
}

.contact-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--navy-deep);
  transform: translate3d(0, var(--hero-parallax-y, 0px), 0);
}

.contact-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    165deg,
    rgba(0, 0, 0, 0.68) 0%,
    rgba(0, 31, 63, 0.58) 48%,
    rgba(0, 0, 0, 0.88) 100%
  );
}

.contact-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 40rem;
  text-align: center;
}

.contact-hero--has-header .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 15;
  background: transparent;
  box-shadow: none;
  border-bottom: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.contact-hero__eyebrow {
  margin-bottom: 0.65rem;
}

.contact-hero__title {
  margin: 0 0 1rem;
  font-family: var(--font-sans);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: var(--stone);
  transform: translate3d(0, var(--hero-text-y-title, 0px), 0);
}

.contact-hero__lead {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.58;
  color: rgba(248, 241, 233, 0.9);
  font-weight: 500;
  transform: translate3d(0, calc(var(--hero-text-y-title, 0px) * 0.7), 0);
}

.contact-hero__scroll {
  position: absolute;
  bottom: max(1.15rem, env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
}

.contact-hero__scroll-btn.hero-scroll {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  pointer-events: auto;
}

.contact-hero__scroll-btn.hero-scroll:hover,
.contact-hero__scroll-btn.hero-scroll:focus-visible {
  transform: translateY(-1px);
}

.contact-hero__scroll-caption {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(248, 241, 233, 0.55);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .contact-hero__bg,
  .contact-hero__title,
  .contact-hero__lead {
    transform: none;
  }

  .contact-hero__scroll-btn.hero-scroll:hover,
  .contact-hero__scroll-btn.hero-scroll:focus-visible {
    transform: none;
  }
}

.contact-parallax {
  position: relative;
  margin: 0;
  padding: 0;
  scroll-margin-top: 5rem;
}

.contact-parallax__spacer {
  position: relative;
}

.contact-parallax__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  min-height: 28rem;
  overflow: hidden;
  background: var(--navy-deep);
}

.contact-parallax__stack {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.contact-parallax__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-sizing: border-box;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.contact-parallax__slide--info {
  background-color: var(--navy-deep);
}

.contact-parallax__slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--contact-parallax-bg);
  background-size: cover;
  background-position: center;
  transform: translate3d(0, var(--contact-bg-y, 0px), 0) scale(var(--contact-bg-scale, 1.06));
  will-change: transform;
}

.contact-parallax__slide--info .contact-parallax__panel-inner {
  position: relative;
  z-index: 2;
}

.contact-parallax__slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(212, 175, 55, 0.07) 0%, transparent 55%),
    linear-gradient(180deg, rgba(0, 12, 28, 0.45) 0%, rgba(0, 31, 63, 0.82) 45%, rgba(0, 6, 14, 0.92) 100%);
  pointer-events: none;
}

.contact-parallax__slide--form {
  background: linear-gradient(180deg, #fffcfa 0%, var(--stone-alt) 42%, #f3ebe1 100%);
  box-shadow: -18px 0 56px rgba(0, 31, 63, 0.14);
}

.contact-parallax__panel-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  height: 100%;
  width: 100%;
  max-width: min(100%, 76rem);
  margin-inline: auto;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  padding-top: max(clamp(1.25rem, 4vw, 2.5rem), env(safe-area-inset-top, 0px));
  padding-bottom: max(clamp(4.5rem, 11vh, 6rem), env(safe-area-inset-bottom, 0px));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}

.contact-parallax__panel-inner--intro {
  justify-content: space-between;
  align-items: center;
}

.contact-parallax__lux {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
  padding-block: clamp(1rem, 4vh, 2.5rem);
}

.contact-parallax__lux-eyebrow {
  margin: 0 0 1.35rem;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.75);
}

.contact-parallax__lux-rule {
  width: min(5rem, 28vw);
  height: 1px;
  margin: 0 auto 1.75rem;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.55) 20%,
    rgba(248, 241, 233, 0.35) 50%,
    rgba(212, 175, 55, 0.55) 80%,
    transparent
  );
}

.contact-parallax__lux-title {
  margin: 0 0 1.25rem;
  font-family: var(--font-sans);
  font-size: clamp(2rem, 5.2vw, 3.35rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: rgba(255, 252, 250, 0.98);
  text-wrap: balance;
}

.contact-parallax__lux-title-dot {
  color: var(--gold-metallic);
  font-weight: 400;
}

.contact-parallax__lux-sub {
  margin: 0 auto 1.75rem;
  max-width: 28rem;
  font-size: clamp(0.9375rem, 1.35vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: rgba(248, 241, 233, 0.58);
}

.contact-parallax__lux-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-parallax__lux-pills li {
  margin: 0;
  padding: 0.4rem 0.95rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248, 241, 233, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.12);
}

.contact-parallax__lux-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.contact-parallax__lux-footer-line {
  display: block;
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.55), rgba(255, 255, 255, 0.06));
}

.contact-parallax__lux-footer-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(248, 241, 233, 0.35);
}

.contact-parallax__panel-inner--form {
  align-items: center;
  justify-content: center;
  max-width: none;
  padding-top: max(clamp(1.75rem, 5vw, 2.75rem), env(safe-area-inset-top, 0px));
}

.contact-parallax__panel-inner--form > * {
  width: 100%;
  max-width: min(100%, 44rem);
}

.contact-parallax__form-head {
  margin-bottom: 1.25rem;
  text-align: center;
}

.contact-parallax__form-label {
  margin: 0 0 0.35rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10, 37, 64, 0.55);
}

.contact-parallax__form-title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.45rem, 3.2vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy-deep);
  line-height: 1.15;
}

.contact-parallax__slide--form .form-success,
.contact-parallax__slide--form .form-error {
  margin-bottom: 1rem;
}

.contact-parallax__form-fields {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.contact-parallax__form-fields.form-stack label {
  color: var(--navy-deep);
}

.contact-parallax__form-fields.form-stack input,
.contact-parallax__form-fields.form-stack textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(10, 37, 64, 0.2);
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 1.15rem;
  box-shadow: none;
}

.contact-parallax__form-fields.form-stack input:hover,
.contact-parallax__form-fields.form-stack textarea:hover {
  border-bottom-color: rgba(74, 112, 67, 0.45);
}

.contact-parallax__form-fields.form-stack input:focus-visible,
.contact-parallax__form-fields.form-stack textarea:focus-visible {
  border-bottom-color: var(--gold-metallic);
  box-shadow: none;
  outline: none;
}

.contact-parallax__form-fields.form-stack textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-parallax__submit {
  margin-top: 0.35rem;
  align-self: center;
}

.contact-parallax__error-list {
  margin: 0;
  padding-left: 1.2rem;
  text-align: left;
}

.contact-parallax__panel-inner--form .contact-parallax__back {
  text-align: center;
}

.contact-parallax__back {
  margin: 1.25rem 0 0;
  font-size: 0.9375rem;
}

.contact-parallax__back a {
  color: var(--navy-deep);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--gold-metallic);
}

.contact-parallax__back a:hover {
  color: var(--olive);
}

.contact-parallax__progress {
  position: absolute;
  bottom: clamp(1.25rem, 4vh, 2rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.45rem;
  align-items: center;
  padding: 0.38rem 0.65rem;
  border-radius: 999px;
  background: rgba(0, 31, 63, 0.38);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact-parallax__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  transition: background 0.2s ease, transform 0.2s ease, width 0.25s ease, box-shadow 0.2s ease;
}

.contact-parallax__dot.is-active {
  width: 1.35rem;
  background: var(--gold-metallic);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.35);
}

.contact-parallax__scroll-hint {
  position: absolute;
  bottom: clamp(3.25rem, 9vh, 4.5rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  margin: 0;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(248, 241, 233, 0.5);
  transition: opacity 0.35s ease;
  pointer-events: none;
  mix-blend-mode: normal;
}

.contact-parallax__scroll-hint.is-hidden {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .contact-parallax__spacer {
    height: auto !important;
  }

  .contact-parallax__sticky {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .contact-parallax__stack {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .contact-parallax__slide {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: auto;
    transform: none !important;
    will-change: auto;
    pointer-events: auto !important;
  }

  .contact-parallax__slide-bg {
    transform: none !important;
    will-change: auto;
    --contact-bg-y: 0px;
    --contact-bg-scale: 1;
  }

  .contact-parallax__scroll-hint,
  .contact-parallax__lux-footer,
  .contact-parallax__progress {
    display: none;
  }
}

.range-empty {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.0625rem;
}

.link-learn {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-metallic);
  padding-bottom: 2px;
}

a.link-learn:hover,
a.link-learn:focus-visible {
  color: var(--olive-muted);
  border-bottom-color: var(--olive);
}

.link-learn--on-dark {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

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

.showcase-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(10, 37, 64, 0.08);
  overflow: hidden;
  min-height: 100%;
}

.showcase-card__media {
  min-height: 220px;
  flex: 1;
  background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 50%, #152a40 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.showcase-card__body {
  padding: 1.5rem 1.5rem 1.75rem;
  background: var(--white);
}

.showcase-card__body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-deep);
}

.showcase-card__body p {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* Iconische bestemmingen — horizontale strip op scroll (sticky) */
.dest-section {
  scroll-margin-top: 1.25rem;
  background: var(--section-regios-bg);
}

.dest-section.section--white {
  background: var(--section-regios-bg);
  border-top-color: rgba(74, 112, 67, 0.08);
  border-bottom-color: rgba(74, 112, 67, 0.06);
}

.dest-section.section-spacious {
  padding-top: 0;
  padding-bottom: clamp(0.5rem, 1.5vw, 1rem);
}

/* Lege staat (geen horizontale strip): gewone sectie-padding */
.dest-section.section-spacious:not(:has(.dest-scroll)) {
  padding-top: clamp(1.25rem, 3vw, 2rem);
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
}

.dest-section .range-section-head {
  margin-bottom: clamp(0.35rem, 1.5vw, 0.75rem);
}

.dest-section__intro {
  padding-bottom: 0;
}

/* Intro in sticky: compacte kop */
.dest-scroll .dest-section__intro {
  padding-top: 0;
  padding-bottom: clamp(0.35rem, 1.2vh, 0.65rem);
}

.dest-scroll {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

.dest-scroll__spacer {
  position: relative;
}

.dest-scroll__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  min-height: 26rem;
  overflow: hidden;
  background: var(--section-regios-bg);
}

.dest-scroll__sticky-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

/* Vaste homepage-header: kop niet onder de navigatie */
.page-home .dest-scroll__sticky-inner {
  padding-top: max(0.35rem, calc(env(safe-area-inset-top, 0px) + 3.75rem));
  box-sizing: border-box;
}

.dest-scroll__track-wrap {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  perspective: 1200px;
  perspective-origin: 50% 45%;
}

.dest-scroll__track {
  display: flex;
  flex-direction: row;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  align-items: center;
  align-self: stretch;
  will-change: transform;
  transform-style: preserve-3d;
}

.dest-scroll__slide {
  flex: 0 0 100vw;
  width: 100vw;
  height: 100%;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: clamp(0.2rem, 0.8vh, 0.45rem) clamp(0.3rem, 1.1vw, 0.55rem);
  padding-bottom: clamp(2.5rem, 6vh, 3rem);
  transform-style: preserve-3d;
  -webkit-font-smoothing: antialiased;
}

.dest-scroll .dest-showcase {
  width: min(97vw, 540px);
  max-width: 540px;
  height: 100%;
  max-height: min(72vh, 640px);
  min-height: min(320px, 52vh);
  aspect-ratio: auto;
  transform-origin: center center;
  backface-visibility: hidden;
  will-change: transform;
  transition: box-shadow 0.4s ease, border-color 0.35s ease, filter 0.35s ease;
}

.dest-scroll .dest-showcase:hover,
.dest-scroll .dest-showcase:focus-visible {
  filter: brightness(1.04);
  box-shadow:
    0 6px 28px rgba(0, 31, 63, 0.18),
    0 28px 72px -36px rgba(0, 20, 40, 0.42),
    0 0 0 1px rgba(212, 175, 55, 0.18);
}

.dest-scroll__progress {
  position: absolute;
  bottom: clamp(0.65rem, 2vh, 1.1rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.dest-scroll__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(10, 37, 64, 0.22);
  transition: background 0.2s ease, transform 0.2s ease, width 0.25s ease;
}

.dest-scroll__dot.is-active {
  width: 1.35rem;
  background: var(--gold-metallic);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.35);
}

.dest-scroll__hint {
  position: absolute;
  bottom: clamp(2rem, 4.5vh, 2.65rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  margin: 0;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(10, 37, 64, 0.4);
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.dest-scroll__hint.is-hidden {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .dest-scroll__spacer {
    height: auto !important;
  }

  .dest-scroll__sticky {
    position: relative;
    height: auto;
    min-height: 0;
  }

  .dest-scroll__sticky-inner {
    display: block;
  }

  .dest-scroll__track-wrap {
    display: block;
    overflow: visible;
  }

  .dest-scroll__track {
    flex-direction: column;
    width: 100% !important;
    height: auto;
    transform: none !important;
    gap: 0.85rem;
    padding: 0 1rem 1.5rem;
  }

  .dest-scroll__slide {
    flex: 0 0 auto;
    width: 100%;
    max-width: 28rem;
    margin: 0 auto;
    padding: 0;
    padding-bottom: 0;
    height: auto;
  }

  .dest-scroll .dest-showcase {
    max-width: 100%;
    height: auto;
    min-height: 420px;
    max-height: none;
    aspect-ratio: 10 / 12;
  }

  .dest-scroll__hint,
  .dest-scroll__progress {
    display: none;
  }
}

.dest-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.dest-showcase-grid--lux {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

.dest-showcase {
  position: relative;
  display: block;
  min-height: min(520px, 78vh);
  aspect-ratio: 3 / 4;
  max-height: 640px;
  text-decoration: none;
  color: var(--white);
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--navy-deep);
  box-shadow:
    0 4px 24px rgba(0, 31, 63, 0.12),
    0 24px 64px -32px rgba(0, 20, 40, 0.35);
  transition:
    transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 0.45s ease,
    border-color 0.35s ease;
}

.dest-showcase:hover,
.dest-showcase:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow:
    0 12px 40px rgba(0, 31, 63, 0.2),
    0 32px 80px -40px rgba(0, 20, 40, 0.45),
    0 0 0 1px rgba(212, 175, 55, 0.12);
}

.dest-showcase:focus-visible {
  outline: 2px solid var(--gold-metallic);
  outline-offset: 3px;
}

.dest-showcase__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.dest-showcase__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.001);
  transition: transform 0.65s cubic-bezier(0.33, 1, 0.68, 1);
}

.dest-showcase:hover .dest-showcase__img,
.dest-showcase:focus-visible .dest-showcase__img {
  transform: scale(1.07);
}

.dest-showcase__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 18, 36, 0.1) 0%,
    rgba(0, 18, 36, 0.35) 38%,
    rgba(0, 12, 28, 0.82) 100%
  );
  pointer-events: none;
}

.dest-showcase__panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(1.15rem, 3vw, 1.65rem);
  background: linear-gradient(
    180deg,
    rgba(0, 20, 40, 0.2) 0%,
    rgba(0, 18, 36, 0.72) 100%
  );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.25);
}

.dest-showcase__eyebrow {
  display: block;
  margin: 0 0 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.dest-showcase h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.dest-showcase__excerpt {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(248, 241, 233, 0.88);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

.dest-showcase__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-metallic);
  transition: color 0.2s ease, gap 0.25s ease;
}

.dest-showcase:hover .dest-showcase__cta,
.dest-showcase:focus-visible .dest-showcase__cta {
  color: var(--gold-light);
  gap: 0.65rem;
}

.dest-showcase__cta-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

.dest-showcase:hover .dest-showcase__cta-arrow,
.dest-showcase:focus-visible .dest-showcase__cta-arrow {
  transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
  .dest-showcase,
  .dest-showcase__img,
  .dest-showcase__cta,
  .dest-showcase__cta-arrow {
    transition: none;
  }

  .dest-showcase:hover,
  .dest-showcase:focus-visible {
    transform: none;
  }

  .dest-showcase:hover .dest-showcase__img,
  .dest-showcase:focus-visible .dest-showcase__img {
    transform: none;
  }

  .dest-showcase:hover .dest-showcase__cta-arrow,
  .dest-showcase:focus-visible .dest-showcase__cta-arrow {
    transform: none;
  }
}

@media (max-width: 520px) {
  .dest-showcase {
    min-height: 420px;
    max-height: none;
    aspect-ratio: 10 / 12;
  }
}

section.stats-strip {
  padding-top: var(--section-pad-y);
  padding-bottom: var(--section-pad-y);
}

.stats-strip {
  background: var(--white);
  border-top: 1px solid rgba(10, 37, 64, 0.08);
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
}

.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (max-width: 640px) {
  .stats-strip__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.stat-item__value {
  display: block;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy-deep);
  margin-bottom: 0.35rem;
}

.stat-item__label {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pillar-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(10, 37, 64, 0.1);
}

.pillar {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(10, 37, 64, 0.1);
}

.pillar:last-child {
  border-right: none;
}

@media (max-width: 800px) {
  .pillar-row {
    grid-template-columns: 1fr;
  }

  .pillar {
    border-right: none;
    border-bottom: 1px solid rgba(10, 37, 64, 0.1);
    padding: 2rem 1rem;
  }

  .pillar:last-child {
    border-bottom: none;
  }
}

.pillar__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
}

.pillar__text {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* Homepage: Over ons — full-screen typografie, geen foto (alleen CSS-gradient/decor) */
.range-about {
  position: relative;
  box-sizing: border-box;
  scroll-margin-top: 1.25rem;
}

.range-about--fullscreen {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  margin: 0;
  padding: 0;
  border: none;
  overflow: hidden;
}

.range-about--fullscreen.range-about--statement {
  background: linear-gradient(165deg, #001a3a 0%, var(--navy-deep) 42%, #0a1f38 100%);
  color: var(--stone);
}

.range-about-st__decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.range-about-st__decor::before {
  content: "";
  position: absolute;
  top: -25%;
  right: -10%;
  width: min(72vw, 52rem);
  height: min(72vw, 52rem);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(212, 175, 55, 0.14) 0%, transparent 58%);
}

.range-about-st__decor::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.35) 20%,
    rgba(212, 175, 55, 0.35) 80%,
    transparent
  );
}

.range-about-st__wrap {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  padding: clamp(2rem, 6vw, 4rem) clamp(1.25rem, 5vw, 2.5rem);
  padding-bottom: max(clamp(2rem, 6vw, 4rem), env(safe-area-inset-bottom, 0px));
}

.range-about-st__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 5vw, 3.5rem);
  align-items: start;
  width: min(100%, 68rem);
  margin-inline: auto;
}

.range-about-st__head {
  margin: 0;
  padding: 0.35rem 0 0;
  border-left: 3px solid var(--gold-metallic);
  padding-left: clamp(1rem, 2.5vw, 1.35rem);
}

.range-about-st__eyebrow {
  margin-bottom: 0.5rem;
}

.range-about-st__title {
  margin: 0 0 1rem;
  font-family: var(--font-sans);
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--stone);
  max-width: 14ch;
}

.range-about-st__lead {
  margin: 0;
  font-size: clamp(0.98rem, 1.45vw, 1.1rem);
  line-height: 1.55;
  color: rgba(248, 241, 233, 0.78);
  font-weight: 500;
  max-width: 22rem;
}

.range-about-st__main {
  max-width: 40rem;
}

.range-about-st__body p {
  margin: 0 0 1.05rem;
  font-size: 1.02rem;
  line-height: 1.78;
  color: rgba(248, 241, 233, 0.82);
}

.range-about-st__body p:last-child {
  margin-bottom: 0;
}

.range-about-st__action {
  margin: clamp(1.5rem, 3vw, 2rem) 0 0;
}

@media (max-width: 900px) {
  .range-about-st__grid {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2rem);
  }

  .range-about-st__title {
    max-width: none;
  }

  .range-about-st__lead {
    max-width: none;
  }
}

/* ——— Pagina Over ons: hero + 3 sticky lagen + marquee ——— */
.page-over-ons .main-surface {
  overflow: visible;
}

.over-ons-hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  padding: max(6rem, calc(env(safe-area-inset-top, 0px) + 4.75rem)) clamp(1rem, 4vw, 2rem)
    max(2.5rem, env(safe-area-inset-bottom, 0px));
  overflow: hidden;
  isolation: isolate;
}

.over-ons-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--navy-deep);
  transform: translate3d(0, var(--hero-parallax-y, 0px), 0);
}

.over-ons-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    165deg,
    rgba(0, 0, 0, 0.68) 0%,
    rgba(0, 31, 63, 0.58) 48%,
    rgba(0, 0, 0, 0.88) 100%
  );
}

.over-ons-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 40rem;
  text-align: center;
}

.over-ons-hero--has-header .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 15;
  background: transparent;
  box-shadow: none;
  border-bottom: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.over-ons-hero__eyebrow {
  margin-bottom: 0.65rem;
}

.over-ons-hero__title {
  margin: 0 0 1rem;
  font-family: var(--font-sans);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: var(--stone);
  transform: translate3d(0, var(--hero-text-y-title, 0px), 0);
}

.over-ons-hero__lead {
  margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.55;
  color: rgba(248, 241, 233, 0.88);
  font-weight: 500;
  transform: translate3d(0, calc(var(--hero-text-y-title, 0px) * 0.7), 0);
}

.over-ons-hero__stats {
  list-style: none;
  margin: 0;
  padding: clamp(1.15rem, 3vw, 1.5rem) 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
}

.over-ons-hero__stat {
  margin: 0;
  padding: 0;
  text-align: center;
}

.over-ons-hero__stat-value {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(0.75rem, 2vw, 0.8125rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.35rem;
}

.over-ons-hero__stat-label {
  display: block;
  font-size: clamp(0.8125rem, 2.2vw, 0.9375rem);
  line-height: 1.45;
  color: rgba(248, 241, 233, 0.82);
}

@media (max-width: 520px) {
  .over-ons-hero__stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .over-ons-hero__bg,
  .over-ons-hero__title,
  .over-ons-hero__lead {
    transform: none;
  }
}

/* Sticky stapels: volgende sectie schuift visueel over de vorige */
.over-ons-stack {
  position: sticky;
  top: 0;
  box-sizing: border-box;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem) 0;
  padding-bottom: max(clamp(2rem, 5vw, 4rem), env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(74, 112, 67, 0.08);
  box-shadow: 0 -12px 40px rgba(0, 31, 63, 0.06);
}

.over-ons-stack--1 {
  z-index: 10;
  background: linear-gradient(180deg, var(--stone) 0%, #f0e9df 100%);
}

.over-ons-stack--2 {
  z-index: 11;
  background: linear-gradient(180deg, var(--stone-alt) 0%, #efe8dc 100%);
}

.over-ons-stack--3 {
  z-index: 12;
  background: linear-gradient(180deg, #fffcfa 0%, var(--white) 42%, #faf7f3 100%);
}

.over-ons-stack__inner {
  width: 100%;
  margin-inline: auto;
}

/* Over ons: scrub op scroll (JS zet --reveal-p 0…1, gelijktijdig met parallax) */
.over-ons-stack__reveal {
  --reveal-p: 0;
  --reveal-shift-x: 0px;
  --reveal-shift-y: 0px;
  opacity: var(--reveal-p);
  transform: translate3d(
    calc((1 - var(--reveal-p)) * var(--reveal-shift-x)),
    calc((1 - var(--reveal-p)) * var(--reveal-shift-y)),
    0
  );
  will-change: opacity, transform;
}

.over-ons-stack__reveal--from-left {
  --reveal-shift-x: -2.35rem;
  --reveal-shift-y: 0px;
}

.over-ons-stack__reveal--from-right {
  --reveal-shift-x: 2.35rem;
  --reveal-shift-y: 0px;
}

.over-ons-stack__reveal--fade-up {
  --reveal-shift-x: 0px;
  --reveal-shift-y: 1.15rem;
}

@media (prefers-reduced-motion: reduce) {
  .over-ons-stack__reveal {
    --reveal-p: 1 !important;
    opacity: 1;
    transform: none;
    will-change: auto;
  }
}

.over-ons-stack__inner--split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.25rem);
  align-items: center;
  max-width: min(100%, 72rem);
}

@media (min-width: 901px) {
  .over-ons-stack--reverse .over-ons-stack__media {
    order: 2;
  }

  .over-ons-stack--reverse .over-ons-stack__copy {
    order: 1;
  }
}

.over-ons-stack__inner--lux {
  max-width: min(100%, 72rem);
}

.over-ons-stack__lux-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: start;
}

.over-ons-stack__media {
  position: relative;
}

.over-ons-stack__watermark {
  position: absolute;
  top: -0.35rem;
  left: -0.15rem;
  z-index: 0;
  font-family: var(--font-sans);
  font-size: clamp(3.5rem, 12vw, 7rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
  color: rgba(212, 175, 55, 0.22);
  pointer-events: none;
  user-select: none;
}

.over-ons-stack__figure {
  position: relative;
  z-index: 1;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 24px 56px rgba(0, 31, 63, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.over-ons-stack__figure--tall {
  max-height: min(52vh, 28rem);
}

.over-ons-stack__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.over-ons-stack__figure:not(.over-ons-stack__figure--tall) .over-ons-stack__img {
  aspect-ratio: 4 / 5;
}

.over-ons-stack__figure--tall .over-ons-stack__img {
  width: 100%;
  height: min(52vh, 28rem);
  object-fit: cover;
}

.over-ons-stack__copy {
  position: relative;
  z-index: 1;
}

.over-ons-stack__header {
  margin-bottom: clamp(1rem, 2.5vw, 1.35rem);
}

.over-ons-stack .section-label {
  margin-bottom: 0.45rem;
}

.over-ons-stack__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-sans);
  font-size: clamp(1.55rem, 3.4vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.038em;
  line-height: 1.12;
  color: var(--navy-deep);
}

.over-ons-stack__rule {
  display: block;
  width: 3.5rem;
  height: 3px;
  margin-top: 0.85rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-metallic), rgba(212, 175, 55, 0.35));
}

.over-ons-stack__chips {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
}

.over-ons-stack__chips li {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(0, 31, 63, 0.06);
}

.over-ons-stack__steps {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  counter-reset: overstep;
}

.over-ons-stack__steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.over-ons-stack__steps li:last-child {
  margin-bottom: 0;
}

.over-ons-stack__step-num {
  flex: 0 0 auto;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--navy-deep);
  background: linear-gradient(145deg, var(--gold-light), var(--gold-metallic));
  border-radius: 50%;
  margin-top: 0.1rem;
}

.over-ons-stack__quote {
  margin: 0 0 1.25rem;
  padding: 1rem 1.15rem 1rem 1.25rem;
  border-left: 3px solid var(--gold-metallic);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: 0 4px 20px rgba(0, 31, 63, 0.05);
}

.over-ons-stack__quote p {
  margin: 0;
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--navy-deep);
}

.over-ons-stack__checks {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
}

.over-ons-stack__checks li {
  position: relative;
  padding-left: 1.65rem;
  margin-bottom: 0.65rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.over-ons-stack__checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-weight: 700;
  color: var(--olive);
  font-size: 0.95rem;
}

.over-ons-stack__checks li:last-child {
  margin-bottom: 0;
}

.over-ons-stack__highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.over-ons-stack__highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  background: rgba(0, 31, 63, 0.03);
  border-radius: var(--radius);
  border: 1px solid rgba(10, 37, 64, 0.08);
}

.over-ons-stack__highlight-icon {
  flex: 0 0 auto;
  color: var(--gold-metallic);
  font-size: 0.65rem;
  line-height: 1.6;
  margin-top: 0.2rem;
}

.over-ons-stack__highlight-text {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.over-ons-stack__prose p {
  margin: 0 0 1.1rem;
  font-size: 1.0625rem;
  line-height: 1.78;
  color: var(--text-muted);
}

.over-ons-stack__prose p:last-child {
  margin-bottom: 0;
}

.over-ons-stack__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(74, 112, 67, 0.12);
}

@media (max-width: 900px) {
  .over-ons-stack__inner--split,
  .over-ons-stack__lux-grid {
    grid-template-columns: 1fr;
    gap: clamp(1.35rem, 4vw, 2rem);
  }

  .over-ons-stack__figure--tall {
    max-height: none;
  }

  .over-ons-stack__figure--tall .over-ons-stack__img {
    max-height: 22rem;
    aspect-ratio: 16 / 10;
  }

  .over-ons-stack__media--compact {
    max-width: 28rem;
    margin-inline: auto;
  }

  .over-ons-stack--reverse .over-ons-stack__media {
    order: -1;
  }
}

@media (max-width: 640px) {
  .over-ons-stack__highlights {
    grid-template-columns: 1fr;
  }

  .over-ons-stack__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .over-ons-stack__actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

.over-ons-marquee {
  position: relative;
  z-index: 20;
  background: var(--stone-alt);
  border-top: 1px solid rgba(74, 112, 67, 0.08);
  margin-bottom: 0;
}

/* ——— Pagina Bestemmingen ——— */
.page-bestemmingen .main-surface {
  overflow: visible;
}

.bestemmingen-hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  padding: max(6rem, calc(env(safe-area-inset-top, 0px) + 4.75rem)) clamp(1rem, 4vw, 2rem)
    max(2.5rem, env(safe-area-inset-bottom, 0px));
  overflow: hidden;
  isolation: isolate;
}

.bestemmingen-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--navy-deep);
  transform: translate3d(0, var(--hero-parallax-y, 0px), 0);
}

.bestemmingen-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    165deg,
    rgba(0, 0, 0, 0.68) 0%,
    rgba(0, 31, 63, 0.58) 48%,
    rgba(0, 0, 0, 0.88) 100%
  );
}

.bestemmingen-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 40rem;
  text-align: center;
}

.bestemmingen-hero--has-header .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 15;
  background: transparent;
  box-shadow: none;
  border-bottom: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.bestemmingen-hero--has-header .site-header:has(.site-nav.is-open) {
  background: rgba(0, 31, 63, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bestemmingen-hero__eyebrow {
  margin-bottom: 0.65rem;
}

.bestemmingen-hero__title {
  margin: 0 0 1rem;
  font-family: var(--font-sans);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: var(--stone);
  transform: translate3d(0, var(--hero-text-y-title, 0px), 0);
}

.bestemmingen-hero__lead {
  margin: 0 0 1.1rem;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.58;
  color: rgba(248, 241, 233, 0.9);
  font-weight: 500;
  transform: translate3d(0, calc(var(--hero-text-y-title, 0px) * 0.7), 0);
}

.bestemmingen-hero__meta {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.95);
}

@media (prefers-reduced-motion: reduce) {
  .bestemmingen-hero__bg,
  .bestemmingen-hero__title,
  .bestemmingen-hero__lead {
    transform: none;
  }
}

.bestemmingen-main {
  padding-top: clamp(2.75rem, 6vw, 4rem);
  padding-bottom: clamp(2.75rem, 6vw, 4.5rem);
  background: linear-gradient(180deg, var(--stone-alt) 0%, rgba(255, 252, 250, 0.92) 38%, var(--white) 100%);
}

.bestemmingen-main__wrap {
  max-width: min(100%, 76rem);
  margin-inline: auto;
}

.bestemmingen-main__head {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
}

.bestemmingen-card--filtered-out {
  display: none !important;
}

.bestemmingen-toolbar {
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
  padding: clamp(1.15rem, 3vw, 1.5rem) clamp(1.1rem, 3vw, 1.5rem);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 16px;
  box-shadow:
    0 18px 48px rgba(0, 31, 63, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.7) inset;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.bestemmingen-toolbar__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: flex-end;
  margin-bottom: 1rem;
}

.bestemmingen-toolbar__search {
  flex: 1 1 14rem;
  min-width: 0;
}

.bestemmingen-toolbar__sort {
  flex: 0 1 12rem;
}

.bestemmingen-toolbar__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-deep);
  margin-bottom: 0.4rem;
}

.bestemmingen-toolbar__label--inline {
  display: inline-block;
  margin-right: 0.75rem;
  margin-bottom: 0.65rem;
  vertical-align: middle;
}

.bestemmingen-toolbar__input,
.bestemmingen-toolbar__select {
  width: 100%;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(10, 37, 64, 0.18);
  border-radius: 10px;
  font-size: 1rem;
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text);
}

.bestemmingen-toolbar__input:focus-visible,
.bestemmingen-toolbar__select:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 1px;
  border-color: rgba(74, 112, 67, 0.45);
}

.bestemmingen-toolbar__regions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
}

.bestemmingen-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.bestemmingen-chip {
  cursor: pointer;
  margin: 0;
}

.bestemmingen-chip input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.bestemmingen-chip span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-deep);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(10, 37, 64, 0.12);
  border-radius: 9999px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.bestemmingen-chip input:focus-visible + span {
  outline: 2px solid var(--olive);
  outline-offset: 2px;
}

.bestemmingen-chip input:checked + span {
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.12));
  border-color: rgba(212, 175, 55, 0.55);
  color: var(--navy-deep);
}

.bestemmingen-toolbar__count {
  margin: 0.85rem 0 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--olive);
}

.bestemmingen-no-results {
  margin: 0 0 1.5rem;
  padding: 1rem 1.15rem;
  text-align: center;
  font-size: 1rem;
  color: var(--text-muted);
  background: rgba(0, 31, 63, 0.04);
  border-radius: var(--radius);
  border: 1px dashed rgba(10, 37, 64, 0.15);
}

.bestemmingen-no-results__reset {
  display: inline;
  margin-left: 0.35rem;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  font-weight: 600;
  color: var(--olive);
  text-decoration: underline;
  cursor: pointer;
}

.bestemmingen-no-results__reset:hover {
  color: var(--navy-deep);
}

/* Hub-pagina: filters + kaarten per affiliate-blok */
.hub-blokken {
  padding: clamp(2.75rem, 6vw, 4rem) 0 clamp(2rem, 5vw, 3rem);
}

.hub-blokken__head {
  margin-bottom: clamp(1.85rem, 4.5vw, 2.85rem);
}

.hub-blokken__head .range-section-head__sub {
  margin-top: 0.65rem;
}

.hub-toolbar {
  margin-bottom: 1.5rem;
}

.hub-toolbar__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: flex-end;
}

.hub-toolbar__field {
  min-width: min(100%, 14rem);
}

.hub-toolbar__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 0.35rem;
}

.hub-toolbar__select {
  width: 100%;
  max-width: 20rem;
  padding: 0.5rem 0.35rem 0.4rem;
  border: none;
  border-radius: 0;
  border-bottom: 2px solid #0a0a0a;
  font: inherit;
  font-weight: 500;
  background: transparent;
  color: #0a0a0a;
  box-shadow: none;
  cursor: pointer;
}

.hub-toolbar__select:hover {
  background: rgba(0, 0, 0, 0.04);
}

.hub-toolbar__select:focus {
  outline: none;
  background: rgba(0, 0, 0, 0.06);
}

.hub-toolbar__select:focus-visible {
  outline: 2px solid #0a0a0a;
  outline-offset: 2px;
}

.hub-toolbar__count {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.hub-blokken-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 18.5rem), 1fr));
  gap: clamp(1.5rem, 3.5vw, 2.35rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 900px) {
  .hub-blokken-grid {
    grid-template-columns: repeat(auto-fill, minmax(22rem, 1fr));
  }
}

.hub-blok-card {
  display: flex;
  flex-direction: column;
  margin: 0;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow:
    0 16px 40px rgba(0, 31, 63, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset;
}

/* Productkaarten (verblijf / tours): premium kaart + hover */
.hub-product-card {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(10, 37, 64, 0.08);
  background: linear-gradient(165deg, #fff 0%, #f8fafc 48%, #f4f6f9 100%);
  box-shadow:
    0 4px 6px rgba(0, 31, 63, 0.03),
    0 18px 42px rgba(0, 31, 63, 0.07);
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease;
}

.hub-product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  z-index: 1;
}

.hub-product-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 8px 12px rgba(0, 31, 63, 0.04),
    0 28px 56px rgba(0, 31, 63, 0.12);
}

.hub-product-card > * {
  position: relative;
  z-index: 2;
}

.hub-blok-card[hidden] {
  display: none !important;
}

.hub-blok-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--stone-alt);
}

.hub-product-card .hub-blok-card__media {
  aspect-ratio: 4 / 3;
  border-radius: 0;
}

.hub-product-card .hub-blok-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(8, 21, 40, 0) 0%,
    rgba(8, 21, 40, 0.03) 45%,
    rgba(8, 21, 40, 0.5) 100%
  );
}

.hub-blok-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.hub-product-card:hover .hub-blok-card__media img {
  transform: scale(1.045);
}

.hub-blok-card__media-placeholder {
  width: 100%;
  height: 100%;
  min-height: 8rem;
  background: linear-gradient(135deg, var(--stone-alt), rgba(74, 112, 67, 0.12));
}

.hub-product-card .hub-blok-card__media-placeholder {
  background: linear-gradient(145deg, #e8ecf1 0%, #d4dde8 40%, rgba(74, 112, 67, 0.15) 100%);
}

.hub-blok-card__body {
  padding: 1.1rem 1.15rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}

.hub-product-card .hub-blok-card__body {
  padding: 1.25rem 1.35rem 1.5rem;
  gap: 0.6rem;
}

.hub-blok-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.65rem;
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.hub-product-card .hub-blok-card__meta {
  gap: 0.35rem 0.5rem;
  padding-bottom: 0.85rem;
  margin-bottom: 0.15rem;
  border-bottom: 1px solid rgba(10, 37, 64, 0.07);
}

.hub-product-card .hub-blok-card__meta > span:not(:first-child)::before {
  content: "·";
  margin-right: 0.45rem;
  font-weight: 800;
  color: rgba(10, 37, 64, 0.2);
}

.hub-blok-card__pill {
  display: inline-block;
  padding: 0.1rem 0 0.2rem;
  border-radius: 0;
  border-bottom: 2px solid #0a0a0a;
  background: transparent;
  color: #0a0a0a;
  font-weight: 600;
  font-size: 0.75rem;
}

.hub-product-card .hub-blok-card__pill {
  padding: 0.22rem 0.6rem;
  border: none;
  border-bottom: none;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2d4a28;
  background: linear-gradient(145deg, rgba(74, 112, 67, 0.16), rgba(74, 112, 67, 0.08));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.hub-tour-card.hub-product-card .hub-blok-card__pill {
  color: #1a3d52;
  background: linear-gradient(145deg, rgba(10, 37, 64, 0.1), rgba(10, 37, 64, 0.04));
}

.hub-blok-card__land {
  font-weight: 500;
}

.hub-blok-card__stad {
  font-weight: 600;
  color: var(--navy-deep);
}

.hub-product-card .hub-blok-card__stad {
  color: var(--olive);
}

.hub-blok-card__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--navy-deep);
}

.hub-product-card .hub-blok-card__title {
  font-size: 1.1875rem;
  line-height: 1.22;
  letter-spacing: -0.035em;
}

.hub-blok-card__excerpt {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
  flex: 1;
}

.hub-product-card .hub-blok-card__excerpt {
  font-size: 0.9rem;
  line-height: 1.58;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hub-blok-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.hub-product-card .hub-blok-card__actions {
  margin-top: 0.65rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(10, 37, 64, 0.06);
  gap: 0.55rem;
}

.hub-blok-card__cta,
.hub-blok-card__gids {
  text-align: center;
  justify-content: center;
}

.hub-product-card .hub-blok-card__cta {
  box-shadow: 0 2px 8px rgba(10, 37, 64, 0.12);
}

.hub-product-card .hub-blok-card__gids {
  border-width: 1.5px;
}

@media (min-width: 480px) {
  .hub-blok-card__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hub-blok-card__cta,
  .hub-blok-card__gids {
    flex: 1 1 auto;
    min-width: 8rem;
  }
}

.hub-appartement-card__price-badge {
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  left: auto;
  bottom: auto;
  padding: 0.4rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
  z-index: 2;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.97) 0%, rgba(252, 250, 245, 0.96) 100%);
  border: 1px solid rgba(212, 175, 55, 0.45);
  box-shadow:
    0 2px 8px rgba(0, 31, 63, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.hub-appartement-card__loc {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--olive);
}

.hub-product-card .hub-appartement-card__loc {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy-deep);
}

.hub-product-card .hub-appartement-card__loc::before {
  content: "";
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--olive);
  opacity: 0.85;
  flex-shrink: 0;
}

.hub-appartement-card__specs {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.hub-product-card .hub-appartement-card__specs {
  font-size: 0.78rem;
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
  background: rgba(10, 37, 64, 0.04);
  color: var(--text-muted);
  align-self: flex-start;
}

@media (prefers-reduced-motion: reduce) {
  .hub-product-card {
    transition: none;
  }

  .hub-product-card:hover {
    transform: none;
  }

  .hub-product-card:hover .hub-blok-card__media img {
    transform: none;
  }

  .hub-blok-card__media img {
    transition: none;
  }
}

.city-appartementen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 20rem), 1fr));
  gap: clamp(1.35rem, 3vw, 2rem);
  margin: 0 0 clamp(1.5rem, 3vw, 2.25rem);
  padding: 0;
  list-style: none;
}

/* Stedengids: flex zodat onvolledige rijen gecentreerd zijn (geen extra paneel/achtergrond) */
.page-steden-detail .city-appartementen-grid--detail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: clamp(1.5rem, 3.2vw, 2.35rem);
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
  padding: 0;
}

.page-steden-detail .city-appartementen-grid--detail > article {
  box-sizing: border-box;
  flex: 0 1 22rem;
  min-width: 0;
  max-width: min(100%, 24rem);
}

.page-steden-detail .city-category__head-only + .container.city-appartementen-grid--detail {
  margin-top: clamp(0.5rem, 1.8vw, 1rem);
}

.city-category__intro {
  margin: 0.5rem 0 0;
  max-width: 52rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.bestemmingen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 18.5rem), 1fr));
  gap: clamp(1.35rem, 3.2vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.bestemmingen-card {
  margin: 0;
}

.bestemmingen-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow:
    0 20px 50px rgba(0, 31, 63, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.bestemmingen-card__link:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow:
    0 28px 60px rgba(0, 31, 63, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.7) inset;
}

@media (prefers-reduced-motion: reduce) {
  .bestemmingen-card__link {
    transition: none;
  }

  .bestemmingen-card__link:hover {
    transform: none;
  }
}

.bestemmingen-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy-deep);
}

.bestemmingen-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 31, 63, 0.35) 100%);
  pointer-events: none;
}

.bestemmingen-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.45s ease;
}

.bestemmingen-card__link:hover .bestemmingen-card__img {
  transform: scale(1.06);
}

@media (prefers-reduced-motion: reduce) {
  .bestemmingen-card__img,
  .bestemmingen-card__link:hover .bestemmingen-card__img {
    transform: none;
    transition: none;
  }
}

.bestemmingen-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.15rem 1.2rem 1.25rem;
  gap: 0.45rem;
}

.bestemmingen-card__eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-metallic);
}

.bestemmingen-card__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--navy-deep);
}

.bestemmingen-card__excerpt {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
  flex: 1;
}

.bestemmingen-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.65rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--olive);
}

.bestemmingen-card__cta-arrow {
  transition: transform 0.25s ease;
}

.bestemmingen-card__link:hover .bestemmingen-card__cta-arrow {
  transform: translateX(4px);
}

.bestemmingen-empty {
  max-width: 36rem;
  margin-inline: auto;
  text-align: center;
  padding: 2rem 0;
}

.bestemmingen-empty p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.bestemmingen-marquee {
  position: relative;
  z-index: 2;
  background: var(--stone-alt);
  border-top: 1px solid rgba(74, 112, 67, 0.08);
  margin-bottom: 0;
}

.contact-layout--range {
  max-width: 900px;
  margin-inline: auto;
}

.contact-aside {
  padding-top: 0.25rem;
}

.contact-aside p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.contact-aside strong {
  color: var(--navy-deep);
  font-size: 1.0625rem;
}

.btn--wide {
  width: 100%;
  max-width: 280px;
  text-align: center;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.form-section h1 {
  color: var(--navy-deep);
  text-align: center;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.form-section .section-intro p {
  font-size: 1.0625rem;
  line-height: 1.65;
}

/* ——— Responsive nav ——— */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-basis: 100%;
    padding: 0.5rem 0 1rem;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }

  .site-nav__link {
    padding: 0.55rem 0.35rem 0.6rem;
  }

  .site-nav__link::after {
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    width: auto;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    transform: none;
  }

  .site-nav__cta-wrap {
    margin: 0.65rem 0 0;
    padding: 0.85rem 0 0;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav-cta {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
  }
}

/* ——— Admin (login + dashboard) ——— */
.admin-page {
  min-height: 100dvh;
  margin: 0;
  background: var(--stone);
  font-family: "Plus Jakarta Sans", var(--font-sans), system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.admin-page .form-stack label,
.admin-page .form-stack input,
.admin-page .form-stack textarea,
.admin-page .form-stack select,
.admin-page .form-stack button {
  font-family: inherit;
}

.admin-shell {
  box-sizing: border-box;
  min-height: 100dvh;
  width: 100%;
  padding: clamp(1.75rem, 5vw, 3rem) clamp(1rem, 4vw, 2rem);
  max-width: 28rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-shell--wide {
  max-width: min(100%, 56rem);
  align-items: flex-start;
  padding-top: clamp(2rem, 5vw, 3.5rem);
}

.admin-card {
  width: 100%;
  background: var(--white);
  padding: clamp(2rem, 4vw, 2.75rem);
  border-radius: 14px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 12px 40px rgba(0, 31, 63, 0.1);
  border: 1px solid rgba(10, 37, 64, 0.08);
}

.admin-card--wide {
  max-width: none;
}

.admin-card__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: -0.03em;
}

.admin-card__lead {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.admin-card__foot {
  margin: 1.5rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(10, 37, 64, 0.08);
}

.admin-dash-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
}

.admin-dash-head__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.admin-section__title {
  margin: 0 0 0.85rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy-deep);
}

.admin-empty {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
}

.admin-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.admin-list__item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem 1.15rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(10, 37, 64, 0.07);
}

.admin-list__item:last-child {
  border-bottom: none;
}

.admin-list__main {
  flex: 1 1 12rem;
  min-width: 0;
}

.admin-list__name {
  display: block;
  font-weight: 600;
  color: var(--text);
}

.admin-list__slug {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-family: ui-monospace, monospace;
}

.admin-list__link {
  flex: 0 0 auto;
  align-self: center;
}

.admin-shell--crud {
  max-width: min(100%, 52rem);
}

@media (min-width: 900px) {
  .admin-shell--crud {
    max-width: min(100%, 60rem);
  }
}

@media (min-width: 1200px) {
  .admin-shell--crud {
    max-width: min(100%, 68rem);
  }
}

.admin-top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 1.35rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
}

.admin-top-nav__link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--olive);
  text-decoration: none;
}

.admin-top-nav__link:hover {
  text-decoration: underline;
}

.admin-top-nav__link.is-active {
  color: var(--navy-deep);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.admin-flash {
  margin: 0 0 1.25rem;
  padding: 0.9rem 1.15rem;
  border-radius: 10px;
  font-size: 0.9375rem;
}

.admin-flash--ok {
  background: rgba(74, 112, 67, 0.12);
  color: #22543d;
  border: 1px solid rgba(74, 112, 67, 0.25);
}

.admin-flash--err {
  background: #fdf2f2;
  color: #822727;
  border: 1px solid rgba(194, 65, 65, 0.35);
}

.admin-section-intro {
  margin: 0 0 1.25rem;
  font-size: 0.9875rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 44rem;
}

.admin-section-intro--tight {
  margin-bottom: 0.85rem;
}

.admin-form-section-title {
  margin: 2rem 0 0.85rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(10, 37, 64, 0.1);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: -0.02em;
}

.admin-form-section-title:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.admin-table-wrap {
  overflow-x: auto;
  margin-top: 0.65rem;
  border: 1px solid rgba(10, 37, 64, 0.1);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 31, 63, 0.04);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.admin-table th,
.admin-table td {
  padding: 0.85rem 1.05rem;
  text-align: left;
  border-bottom: 1px solid rgba(10, 37, 64, 0.07);
  vertical-align: top;
}

.admin-table th {
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  color: var(--navy-deep);
  background: rgba(0, 31, 63, 0.04);
  white-space: nowrap;
}

.admin-table tbody tr:last-child td {
  border-bottom: none;
}

.admin-table__url {
  max-width: 14rem;
  word-break: break-all;
}

.admin-table__url a {
  color: var(--olive);
}

.admin-table__actions {
  white-space: nowrap;
}

.admin-table__actions-head {
  text-align: right;
}

.admin-table__actions--stack {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
  text-align: right;
}

.admin-inline-form {
  display: inline;
  margin: 0;
  padding: 0;
}

.admin-link-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  color: var(--olive);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.admin-link-btn:hover {
  color: var(--navy-deep);
}

.admin-link-btn--danger {
  color: #a32020;
}

.admin-link-btn--danger:hover {
  color: #6b1414;
}

.admin-pill {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(212, 175, 55, 0.18);
  color: var(--navy-deep);
  border-radius: 9999px;
}

.admin-code {
  font-size: 0.8125rem;
  background: rgba(0, 31, 63, 0.06);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}

.admin-muted {
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 0.35rem;
}

.admin-btn-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-top: 0.5rem;
}

.admin-crud-form textarea.admin-textarea {
  min-height: 200px;
}

.admin-error-list {
  margin: 0;
  padding-left: 1.2rem;
}

.admin-req {
  color: #a32020;
}

.admin-bericht-body {
  margin: 0;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(10, 37, 64, 0.12);
  background: rgba(255, 255, 255, 0.85);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
}

/* Admin: app-shell met zijmenu */
.admin-page--app {
  background: #dfe6ef;
  background-image: linear-gradient(165deg, #e8edf4 0%, #dfe6ef 40%, #d6dde8 100%);
}

.admin-app {
  display: flex;
  min-height: 100dvh;
  width: 100%;
  max-width: 100%;
}

.admin-sidebar {
  flex: 0 0 18rem;
  width: 18rem;
  min-height: 100dvh;
  background: linear-gradient(175deg, #0b1b30 0%, #081525 52%, #050d14 100%);
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  align-self: flex-start;
  z-index: 300;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 6px 0 32px rgba(0, 12, 28, 0.18);
}

@media (min-width: 1280px) {
  .admin-sidebar {
    flex: 0 0 19rem;
    width: 19rem;
  }
}

.admin-sidebar__brand {
  padding: 1.5rem 1.35rem 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-sidebar__logo {
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  text-decoration: none;
}

.admin-sidebar__logo span {
  font-weight: 600;
  color: var(--gold);
}

.admin-sidebar__label {
  display: block;
  margin: 1.15rem 1.35rem 0.45rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.admin-sidebar__label:first-of-type {
  margin-top: 0.65rem;
}

.admin-sidebar__nav {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 0 1.25rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

.admin-sidebar__link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1.35rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: background 0.15s ease, color 0.15s ease;
}

.admin-sidebar__link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.admin-sidebar__link.is-active {
  background: rgba(212, 175, 55, 0.12);
  color: #fff;
  border-left-color: var(--gold);
}

.admin-sidebar__icon {
  width: 1.25rem;
  text-align: center;
  opacity: 0.85;
  font-size: 0.875rem;
}

.admin-sidebar__foot {
  padding: 1.15rem 1.35rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.admin-sidebar__foot-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

.admin-sidebar__foot-link:hover {
  color: #fff;
}

.admin-sidebar__foot-link--muted {
  font-weight: 500;
  opacity: 0.85;
}

.admin-backdrop {
  display: none;
}

.admin-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: transparent;
}

.admin-topbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 3.75rem;
  padding: 0.875rem clamp(1rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 4px 20px rgba(0, 31, 63, 0.05);
}

.admin-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: rgba(10, 37, 64, 0.06);
  cursor: pointer;
}

.admin-menu-toggle__bar {
  display: block;
  height: 2px;
  width: 1.15rem;
  margin: 0 auto;
  background: var(--navy-deep);
  border-radius: 1px;
}

.admin-topbar__center {
  flex: 1;
  min-width: 0;
}

.admin-topbar__title {
  margin: 0;
  font-size: clamp(1.125rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.admin-topbar__user {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 31, 63, 0.05);
  max-width: 12rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-content {
  flex: 1;
  width: 100%;
  min-width: 0;
  padding: clamp(1.5rem, 4vw, 2.75rem) clamp(1.25rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
}

.admin-content-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  flex: 1;
}

.admin-lead {
  margin: 0 0 1.35rem;
  font-size: 1.0625rem;
  line-height: 1.62;
  color: var(--text-muted);
  max-width: min(100%, 52rem);
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-bottom: 1.5rem;
}

/* Formulieren in app: leesbare breedte; CRUD strakker, site-instellingen breder */
.admin-page--app .admin-crud-form {
  max-width: min(100%, 52rem);
}

.admin-page--app .admin-content-form {
  width: 100%;
  max-width: min(100%, 68rem);
}

.admin-page--app .form-stack label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 0.45rem;
}

.admin-page--app .form-stack input[type="text"],
.admin-page--app .form-stack input[type="url"],
.admin-page--app .form-stack input[type="email"],
.admin-page--app .form-stack input[type="password"],
.admin-page--app .form-stack input[type="number"],
.admin-page--app .form-stack select,
.admin-page--app .form-stack textarea {
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(10, 37, 64, 0.14);
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.admin-page--app .form-stack input:hover,
.admin-page--app .form-stack select:hover,
.admin-page--app .form-stack textarea:hover {
  border-color: rgba(10, 37, 64, 0.22);
}

.admin-page--app .form-stack input:focus-visible,
.admin-page--app .form-stack select:focus-visible,
.admin-page--app .form-stack textarea:focus-visible {
  border-color: rgba(212, 175, 55, 0.65);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
  outline: none;
}

.admin-page--app .form-stack .form-hint {
  margin-top: 0.4rem;
  font-size: 0.8125rem;
}

.admin-page--app .admin-crud-form .btn,
.admin-page--app .admin-content-form .btn {
  margin-top: 0.25rem;
}

.admin-section--flush {
  margin-top: 0;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 12rem), 1fr));
  gap: 1.15rem;
  margin-bottom: 1.5rem;
}

.admin-stats-grid--narrow {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 9rem), 1fr));
}

.admin-stat-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(10, 37, 64, 0.08);
  box-shadow: 0 4px 18px rgba(0, 31, 63, 0.06);
}

.admin-stat-card--muted {
  background: rgba(255, 255, 255, 0.92);
}

.admin-stat-card__label {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.admin-stat-card__value {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--navy-deep);
  line-height: 1.1;
}

.admin-stat-card__suffix {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.admin-stat-card__hint {
  margin: 0.4rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.admin-panel-hint {
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  border: 1px dashed rgba(10, 37, 64, 0.15);
}

.admin-two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.admin-panel {
  background: #fff;
  border-radius: 16px;
  padding: 1.35rem 1.5rem 1.5rem;
  border: 1px solid rgba(10, 37, 64, 0.08);
  box-shadow: 0 4px 20px rgba(0, 31, 63, 0.06);
}

.admin-panel__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-bottom: 0.85rem;
  min-width: 0;
}

.admin-panel__title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.admin-panel__head .admin-panel__title {
  margin: 0;
}

.admin-panel__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--olive);
}

.admin-panel__empty {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.admin-top-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.admin-top-list__item {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr) max-content;
  align-items: center;
  column-gap: 0.75rem;
  row-gap: 0.25rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(10, 37, 64, 0.07);
  font-size: 0.9375rem;
  min-width: 0;
}

.admin-top-list__item:last-child {
  border-bottom: none;
}

.admin-top-list__rank {
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8125rem;
  background: rgba(212, 175, 55, 0.2);
  color: var(--navy-deep);
  border-radius: 8px;
  justify-self: center;
}

.admin-top-list__name {
  min-width: 0;
  font-weight: 600;
  color: var(--navy-deep);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-top-list__count {
  font-weight: 700;
  color: var(--olive);
  white-space: nowrap;
  text-align: right;
  padding-left: 0.5rem;
  max-width: max-content;
}

.admin-type-bars {
  list-style: none;
  margin: 0;
  padding: 0;
}

.admin-type-bars__row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) max-content;
  gap: 0.5rem 0.85rem;
  align-items: center;
  margin-bottom: 0.65rem;
  font-size: 0.875rem;
  min-width: 0;
}

.admin-type-bars__row:last-child {
  margin-bottom: 0;
}

.admin-type-bars__label {
  font-weight: 500;
  color: var(--navy-deep);
  min-width: 0;
}

.admin-type-bars__track {
  height: 8px;
  border-radius: 999px;
  background: rgba(10, 37, 64, 0.08);
  overflow: hidden;
  min-width: 0;
}

.admin-type-bars__fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--olive), rgba(74, 112, 67, 0.65));
  min-width: 4px;
}

.admin-type-bars__num {
  font-weight: 700;
  color: var(--text-muted);
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  padding-left: 0.35rem;
  min-width: max-content;
}

.admin-table-wrap--flush {
  margin-top: 0;
}

.admin-quicklinks {
  margin-top: 0.5rem;
}

.admin-quicklinks__title {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.admin-quicklinks__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 15rem), 1fr));
  gap: 1rem;
}

.admin-quicklinks__card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.15rem 1.25rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(10, 37, 64, 0.1);
  text-decoration: none;
  color: var(--navy-deep);
  font-size: 0.875rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.admin-quicklinks__card:hover {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 6px 20px rgba(0, 31, 63, 0.08);
}

.admin-quicklinks__card strong {
  font-size: 0.9375rem;
  font-weight: 700;
}

.admin-quicklinks__card span {
  color: var(--text-muted);
  font-weight: 500;
}

/* ——— Admin dashboard (modern) ——— */
.admin-dash {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.admin-dash__hero {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem 2.25rem;
  padding: clamp(1.5rem, 3.5vw, 2.25rem) clamp(1.5rem, 3.5vw, 2.25rem);
  border-radius: 20px;
  background: linear-gradient(135deg, #fff 0%, #f2f6fb 45%, rgba(201, 169, 110, 0.14) 100%);
  border: 1px solid rgba(10, 37, 64, 0.07);
  box-shadow:
    0 4px 28px rgba(0, 31, 63, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.admin-dash__hero-main {
  flex: 1 1 16rem;
  min-width: 0;
}

.admin-dash__hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.65rem;
  padding: 0.35rem 0.75rem 0.35rem 0.45rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(10, 37, 64, 0.08);
  border-radius: 999px;
}

.admin-dash__hero-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.35), rgba(201, 169, 110, 0.15));
  color: var(--navy-deep);
}

.admin-dash__hero-badge-icon .admin-dash-icon-svg {
  width: 1rem;
  height: 1rem;
}

.admin-dash__hero-lead {
  margin: 0;
  max-width: 36rem;
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  line-height: 1.6;
  color: var(--text-muted);
}

.admin-dash__hero-meta {
  flex: 0 0 auto;
}

.admin-dash__hero-date {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-deep);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(10, 37, 64, 0.07);
  border-radius: 12px;
}

.admin-dash__hero-date .admin-dash-icon-svg {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  opacity: 0.75;
}

.admin-dash__section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.admin-dash__section-head {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.admin-dash__section-head--inline {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem 1rem;
}

.admin-dash__section-title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
}

.admin-dash__section-desc {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.admin-dash__section-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--olive);
  background: rgba(74, 112, 67, 0.1);
  border-radius: 999px;
}

.admin-dash__section-pill .admin-dash-icon-svg {
  width: 1rem;
  height: 1rem;
}

.admin-dash__two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  gap: 1.35rem;
  width: 100%;
  min-width: 0;
}

.admin-dash-hint {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px dashed rgba(10, 37, 64, 0.18);
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.admin-dash-hint__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: rgba(10, 37, 64, 0.05);
  color: var(--navy-deep);
}

.admin-dash-hint__icon .admin-dash-icon-svg {
  width: 1.25rem;
  height: 1.25rem;
}

.admin-dash-hint__text {
  min-width: 0;
  flex: 1;
  overflow-wrap: break-word;
  word-break: break-word;
}

.admin-dash-hint__text strong {
  color: var(--navy-deep);
  font-weight: 600;
}

.admin-dash-icon-svg {
  display: block;
  width: 1.35rem;
  height: 1.35rem;
}

/* KPI-kaarten */
.admin-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 14.5rem), 1fr));
  gap: 1.15rem;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

@media (min-width: 1100px) {
  .admin-kpi-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 15rem), 1fr));
    gap: 1.25rem;
  }
}

.admin-kpi-grid > .admin-kpi-card {
  min-width: 0;
}

.admin-kpi-card {
  --kpi-accent: var(--navy-deep);
  --kpi-tint: rgba(10, 37, 64, 0.06);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.35rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(10, 37, 64, 0.07);
  box-shadow: 0 2px 14px rgba(0, 31, 63, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .admin-kpi-card {
    transition: none;
  }
}

.admin-kpi-card:hover {
  border-color: rgba(10, 37, 64, 0.12);
  box-shadow: 0 8px 28px rgba(0, 31, 63, 0.08);
  transform: translateY(-2px);
}

.admin-kpi-card--dest {
  --kpi-accent: #2563eb;
  --kpi-tint: rgba(37, 99, 235, 0.1);
}

.admin-kpi-card--stay {
  --kpi-accent: #0d9488;
  --kpi-tint: rgba(13, 148, 136, 0.12);
}

.admin-kpi-card--tour {
  --kpi-accent: #b45309;
  --kpi-tint: rgba(212, 175, 55, 0.22);
}

.admin-kpi-card--aff {
  --kpi-accent: #7c3aed;
  --kpi-tint: rgba(124, 58, 237, 0.1);
}

.admin-kpi-card--msg {
  --kpi-accent: #c2410c;
  --kpi-tint: rgba(194, 65, 12, 0.1);
}

.admin-kpi-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--kpi-tint), rgba(255, 255, 255, 0.5));
  color: var(--kpi-accent);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.admin-kpi-card__icon .admin-dash-icon-svg {
  width: 1.35rem;
  height: 1.35rem;
}

.admin-kpi-card__body {
  min-width: 0;
  flex: 1;
}

.admin-kpi-card__label {
  margin: 0 0 0.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  overflow-wrap: break-word;
  word-break: break-word;
}

.admin-kpi-card__value {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--navy-deep);
  line-height: 1.1;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.admin-kpi-card__suffix {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.admin-kpi-card__hint {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--text-muted);
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Weergaven */
.admin-views-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr));
  gap: 1rem;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.admin-views-grid > .admin-view-card {
  min-width: 0;
}

.admin-view-card {
  position: relative;
  padding: 1.1rem 1.15rem 1.15rem;
  padding-left: 3.35rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, #fafbfd 100%);
  border: 1px solid rgba(10, 37, 64, 0.08);
  box-shadow: 0 2px 10px rgba(0, 31, 63, 0.04);
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.admin-view-card__icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  background: rgba(10, 37, 64, 0.06);
  color: var(--navy-deep);
}

.admin-view-card__icon .admin-dash-icon-svg {
  width: 1.1rem;
  height: 1.1rem;
}

.admin-view-card__label {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  overflow-wrap: break-word;
  word-break: break-word;
}

.admin-view-card__value {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy-deep);
  line-height: 1.1;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Dashboard panels — ruime binnenmarge (dubbele class = wint altijd t.o.v. .admin-panel) */
.admin-panel.admin-panel--dash {
  border-radius: 16px;
  padding: 2.25rem 2.5rem 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 31, 64, 0.05);
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

@media (min-width: 900px) {
  .admin-panel.admin-panel--dash {
    padding: 2.5rem 3rem 3rem;
  }
}

@media (max-width: 520px) {
  .admin-panel.admin-panel--dash {
    padding: 1.75rem 1.35rem 2rem;
  }
}

/* CRUD: hero + lijst + bewerk (dashboard-stijl) */
.admin-crud-page {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.admin-page-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin: 0 0 1.5rem;
  padding: 1.35rem 1.5rem 1.5rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
  border: 1px solid rgba(10, 37, 64, 0.08);
  box-shadow: 0 4px 18px rgba(0, 31, 63, 0.05);
}

.admin-page-hero__main {
  flex: 1 1 min(100%, 28rem);
  min-width: 0;
}

.admin-page-hero__eyebrow {
  display: inline-block;
  margin: 0 0 0.4rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
}

.admin-page-hero__lead {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 42rem;
}

.admin-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.65rem;
  flex-shrink: 0;
}

.admin-page-hero__actions .btn {
  white-space: nowrap;
}

.admin-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-deep);
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid rgba(10, 37, 64, 0.14);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 1px 2px rgba(0, 31, 63, 0.04);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.admin-btn-secondary:hover {
  background: #fff;
  border-color: rgba(74, 112, 67, 0.35);
  color: var(--olive);
}

.admin-panel--crud-list {
  margin-top: 0;
}

.admin-panel__head--crud .admin-panel__title {
  font-size: 1.125rem;
}

.admin-panel__subhead {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 48rem;
}

.admin-panel__subhead a {
  color: var(--olive);
  font-weight: 600;
  text-decoration: none;
}

.admin-panel__subhead a:hover {
  text-decoration: underline;
}

.admin-table-wrap--crud {
  margin-top: 0.25rem;
  border-radius: 12px;
  border: 1px solid rgba(10, 37, 64, 0.08);
  overflow: hidden;
  background: #fff;
}

.admin-table--crud {
  margin: 0;
}

.admin-table--crud th,
.admin-table--crud td {
  padding: 0.75rem 1rem;
  vertical-align: top;
}

.admin-table--crud thead th {
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(10, 37, 64, 0.04);
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
}

.admin-table--crud tbody tr {
  border-bottom: 1px solid rgba(10, 37, 64, 0.06);
}

.admin-table--crud tbody tr:last-child {
  border-bottom: none;
}

.admin-table--crud tbody tr:hover td {
  background: rgba(74, 112, 67, 0.04);
}

.admin-inline-link {
  display: inline;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--olive);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.admin-inline-link:hover {
  color: var(--navy-deep);
  border-bottom-color: rgba(10, 37, 64, 0.25);
}

.admin-pill--success {
  background: rgba(74, 112, 67, 0.18);
  color: #2d4a28;
}

.admin-pill--muted {
  background: rgba(10, 37, 64, 0.08);
  color: var(--text-muted);
  font-weight: 600;
}

.admin-edit-panel {
  max-width: min(100%, 52rem);
}

.admin-edit-panel .admin-form-section-title:first-of-type {
  margin-top: 0;
}

.admin-form-error {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(163, 32, 32, 0.25);
  background: rgba(163, 32, 32, 0.06);
}

/* Icooon + titel: CSS Grid (geen space-between dat titel naar rechts duwt) */
.admin-panel__head.admin-panel__head--dash,
.admin-panel__head--dash {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.75rem;
  width: 100%;
  min-width: 0;
}

.admin-panel__head.admin-panel__head--dash {
  margin-bottom: 1rem;
}

.admin-panel--contact .admin-panel__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.admin-panel--contact .admin-panel__head .admin-panel__head--dash {
  min-width: 0;
}

.admin-panel__head--dash .admin-panel__title {
  margin: 0;
  min-width: 0;
  max-width: 100%;
  line-height: 1.35;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

.admin-panel__head-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  border-radius: 11px;
  background: rgba(10, 37, 64, 0.05);
  color: var(--olive);
}

.admin-panel__head-icon .admin-dash-icon-svg {
  width: 1.15rem;
  height: 1.15rem;
}

.admin-panel__empty--dash {
  padding: 0.65rem 0 0.25rem;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.admin-panel__link--dash {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--olive);
  text-decoration: none;
  padding: 0.45rem 0.65rem;
  margin: 0;
  border-radius: 8px;
  flex-shrink: 0;
  transition: background 0.15s ease, color 0.15s ease;
}

.admin-panel__link--dash:hover {
  background: rgba(74, 112, 67, 0.1);
  color: var(--navy-deep);
}

.admin-panel__link-arrow {
  display: inline-flex;
}

.admin-panel__link-arrow .admin-dash-icon-svg {
  width: 1rem;
  height: 1rem;
  opacity: 0.85;
}

.admin-top-list--dash .admin-top-list__rank {
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.28), rgba(212, 175, 55, 0.12));
  border-radius: 10px;
}

.admin-top-list__unit {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: lowercase;
}

.admin-type-bars--dash .admin-type-bars__fill {
  background: linear-gradient(90deg, #6366f1, rgba(99, 102, 241, 0.55));
}

.admin-table-wrap--dash {
  border-radius: 12px;
  border: 1px solid rgba(10, 37, 64, 0.08);
  overflow: hidden;
  box-shadow: none;
  margin-top: 0.5rem;
  background: var(--white);
}

.admin-table--dash th,
.admin-table--dash td {
  padding: 1.15rem 1.5rem;
}

.admin-table--dash th:first-child,
.admin-table--dash td:first-child {
  padding-left: 1.75rem;
}

.admin-table--dash th:last-child,
.admin-table--dash td:last-child {
  padding-right: 1.75rem;
}

@media (min-width: 900px) {
  .admin-table--dash th,
  .admin-table--dash td {
    padding: 1.25rem 1.65rem;
  }

  .admin-table--dash th:first-child,
  .admin-table--dash td:first-child {
    padding-left: 2rem;
  }

  .admin-table--dash th:last-child,
  .admin-table--dash td:last-child {
    padding-right: 2rem;
  }
}

.admin-table--dash tbody tr {
  transition: background 0.12s ease;
}

.admin-table--dash tbody tr:hover {
  background: rgba(0, 31, 63, 0.03);
}

.admin-table__action-link {
  font-weight: 600;
  color: var(--olive);
  text-decoration: none;
}

.admin-table__action-link:hover {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

/* Quick links dashboard */
.admin-quicklinks--dash {
  margin-top: 0.25rem;
}

.admin-quicklinks__grid--dash {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 17rem), 1fr));
  gap: 0.9rem;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.admin-quicklinks__grid--dash > .admin-quicklinks__card--dash {
  min-width: 0;
}

.admin-quicklinks__card--dash {
  flex-direction: row;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1rem 1rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(10, 37, 64, 0.08);
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 31, 63, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .admin-quicklinks__card--dash {
    transition: none;
  }
}

.admin-quicklinks__card--dash:hover {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 10px 32px rgba(0, 31, 63, 0.1);
  transform: translateY(-2px);
}

.admin-quicklinks__icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 13px;
  color: #fff;
}

.admin-quicklinks__icon-wrap .admin-dash-icon-svg {
  width: 1.25rem;
  height: 1.25rem;
}

.admin-quicklinks__icon-wrap--dest {
  background: linear-gradient(145deg, #3b82f6, #1d4ed8);
}

.admin-quicklinks__icon-wrap--stay {
  background: linear-gradient(145deg, #14b8a6, #0d9488);
}

.admin-quicklinks__icon-wrap--tour {
  background: linear-gradient(145deg, #eab308, #b45309);
}

.admin-quicklinks__icon-wrap--list {
  background: linear-gradient(145deg, #64748b, #475569);
}

.admin-quicklinks__icon-wrap--settings {
  background: linear-gradient(145deg, var(--navy-deep), #1e3a5f);
}

.admin-quicklinks__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  flex: 1;
  text-align: left;
}

.admin-quicklinks__text strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy-deep);
  overflow-wrap: break-word;
  word-break: break-word;
}

.admin-quicklinks__text span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  overflow-wrap: break-word;
  word-break: break-word;
}

.admin-quicklinks__chev {
  flex-shrink: 0;
  display: flex;
  color: var(--text-muted);
  opacity: 0.65;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.admin-quicklinks__card--dash:hover .admin-quicklinks__chev {
  transform: translateX(3px);
  opacity: 1;
  color: var(--gold);
}

@media (prefers-reduced-motion: reduce) {
  .admin-quicklinks__card--dash:hover .admin-quicklinks__chev {
    transform: none;
  }
}

.admin-quicklinks__chev .admin-dash-icon-svg {
  width: 1.1rem;
  height: 1.1rem;
}

/* ——— Admin: pagina-inhoud & site-instellingen (commerciële editor-UI) ——— */
.admin-content-page {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 1.75rem);
}

/* Uitleg: Instellingen vs Pagina-inhoud */
.admin-site-guide {
  padding: clamp(1.1rem, 2.5vw, 1.35rem) clamp(1.15rem, 2.5vw, 1.5rem);
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(10, 37, 64, 0.1);
  box-shadow: 0 4px 18px rgba(0, 31, 63, 0.05);
}

.admin-site-guide__title {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
  line-height: 1.25;
}

.admin-site-guide__p {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 52rem;
}

.admin-site-guide__p:last-child {
  margin-bottom: 0;
}

.admin-site-guide__p--foot {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(10, 37, 64, 0.08);
  font-size: 0.8125rem;
}

.admin-site-guide__strong {
  color: var(--navy-deep);
  font-weight: 600;
}

.admin-site-guide__table-wrap {
  margin: 0.85rem 0 0.25rem;
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid rgba(10, 37, 64, 0.08);
  background: rgba(0, 31, 63, 0.02);
}

.admin-site-guide__table {
  width: 100%;
  min-width: min(100%, 36rem);
  border-collapse: collapse;
  font-size: 0.8125rem;
  line-height: 1.45;
}

.admin-site-guide__table th,
.admin-site-guide__table td {
  padding: 0.55rem 0.75rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(10, 37, 64, 0.07);
}

.admin-site-guide__table tr:last-child th,
.admin-site-guide__table tr:last-child td {
  border-bottom: none;
}

.admin-site-guide__table th {
  width: 11rem;
  font-weight: 700;
  color: var(--navy-deep);
  background: rgba(10, 37, 64, 0.04);
}

.admin-site-guide__table td {
  color: var(--text-muted);
}

.admin-site-guide__table code {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
}

.admin-content-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  padding: clamp(1.35rem, 3.5vw, 2rem) clamp(1.25rem, 3vw, 1.85rem);
  border-radius: 20px;
  background: linear-gradient(145deg, #fff 0%, #f6f8fc 45%, rgba(201, 169, 110, 0.1) 100%);
  border: 1px solid rgba(10, 37, 64, 0.08);
  box-shadow: 0 8px 32px rgba(0, 31, 63, 0.06);
}

.admin-content-hero__text {
  flex: 1 1 18rem;
  min-width: 0;
}

.admin-content-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.65rem;
  padding: 0.35rem 0.85rem 0.35rem 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(10, 37, 64, 0.08);
  border-radius: 999px;
}

.admin-content-hero__badge .admin-content-icon-svg {
  width: 1rem;
  height: 1rem;
  opacity: 0.85;
}

.admin-content-hero__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy-deep);
  line-height: 1.2;
}

.admin-content-hero__lead {
  margin: 0;
  max-width: 40rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.admin-content-hero__lead a {
  color: var(--olive);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.admin-content-hero__lead a:hover {
  color: var(--navy-deep);
}

.admin-content-hero__lead strong {
  color: var(--text);
  font-weight: 600;
}

.admin-content-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.admin-content-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.admin-content-btn--secondary {
  color: var(--navy-deep);
  background: #fff;
  border: 1px solid rgba(10, 37, 64, 0.14);
  box-shadow: 0 1px 2px rgba(0, 31, 63, 0.04);
}

.admin-content-btn--secondary:hover {
  border-color: rgba(212, 175, 55, 0.55);
  background: rgba(255, 255, 255, 0.95);
}

.admin-content-btn--ghost {
  color: var(--olive);
  background: transparent;
  border: 1px solid transparent;
}

.admin-content-btn--ghost:hover {
  background: rgba(74, 112, 67, 0.08);
}

.admin-flash--content {
  border-radius: 12px;
  padding: 0.9rem 1.15rem;
  font-weight: 500;
}

.admin-content-alert {
  border-radius: 12px;
  padding: 1rem 1.15rem;
}

.admin-content-alert__title {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #822727;
}

.admin-content-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.admin-content-card {
  padding: clamp(1.15rem, 2.5vw, 1.45rem) clamp(1.15rem, 2.5vw, 1.5rem);
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(10, 37, 64, 0.08);
  box-shadow: 0 4px 20px rgba(0, 31, 63, 0.04);
}

.admin-content-card__head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.admin-content-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  color: #fff;
}

.admin-content-card__icon .admin-content-icon-svg {
  width: 1.4rem;
  height: 1.4rem;
}

.admin-content-card__icon--seo {
  background: linear-gradient(145deg, #3b82f6, #1d4ed8);
}

.admin-content-card__icon--footer {
  background: linear-gradient(145deg, #64748b, #475569);
}

.admin-content-card__icon--nav {
  background: linear-gradient(145deg, #0d9488, #0f766e);
}

.admin-content-card__icon--dest {
  background: linear-gradient(145deg, #d97706, #b45309);
}

.admin-content-card__icon--about {
  background: linear-gradient(145deg, #8b5cf6, #6d28d9);
}

.admin-content-card__icon--contact {
  background: linear-gradient(145deg, #e11d48, #be123c);
}

.admin-content-card__icon--marquee {
  background: linear-gradient(145deg, #0891b2, #0e7490);
}

.admin-content-card__icon--slider {
  background: linear-gradient(145deg, #2563eb, #1d4ed8);
}

.admin-content-card__icon--portfolio {
  background: linear-gradient(145deg, #7c3aed, #5b21b6);
}

.admin-content-card__icon--intro {
  background: linear-gradient(145deg, #059669, #047857);
}

.admin-content-card__icon--pin {
  background: linear-gradient(145deg, #ea580c, #c2410c);
}

.admin-content-card__icon--quote {
  background: linear-gradient(145deg, #db2777, #be185d);
}

.admin-content-card__icon--hub {
  background: linear-gradient(145deg, var(--navy-deep), #152f52);
}

.admin-content-card__meta {
  min-width: 0;
  flex: 1;
}

.admin-content-card__title {
  margin: 0 0 0.35rem;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
  line-height: 1.25;
}

.admin-content-card__desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.admin-content-card__tip {
  margin: 0 0 1rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-muted);
  background: rgba(0, 31, 63, 0.035);
  border-radius: 10px;
  border-left: 3px solid rgba(212, 175, 55, 0.65);
}

.admin-content-card__tip strong {
  color: var(--navy-deep);
}

.admin-content-field {
  margin: 0;
}

.admin-content-field__label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  margin-bottom: 0.45rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy-deep);
}

.admin-content-field__key {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
}

.admin-content-badge {
  display: inline-block;
  padding: 0.15rem 0.45rem;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: rgba(212, 175, 55, 0.22);
  border-radius: 4px;
}

.admin-content-badge--soft {
  background: rgba(10, 37, 64, 0.08);
  font-weight: 700;
}

.admin-textarea--code {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.8125rem;
  line-height: 1.5;
  background: #fafbfc;
  border-color: rgba(10, 37, 64, 0.12);
  tab-size: 2;
}

.admin-textarea--code:focus {
  background: #fff;
  outline: 2px solid rgba(212, 175, 55, 0.45);
  outline-offset: 1px;
}

/* Admin: eenvoudige formulieren (geen JSON voor eindgebruikers) */
.admin-content-page--simple .admin-simple-field {
  margin-bottom: 1rem;
}

.admin-content-page--simple .admin-simple-field--full {
  width: 100%;
  max-width: 42rem;
}

.admin-content-page--simple .admin-simple-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 0.35rem;
}

.admin-content-page--simple .admin-simple-input {
  width: 100%;
  max-width: 42rem;
  padding: 0.5rem 0.65rem;
  border-radius: 10px;
  border: 1px solid rgba(10, 37, 64, 0.14);
  font: inherit;
  box-sizing: border-box;
}

.admin-content-page--simple .admin-simple-hint {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
  line-height: 1.55;
  max-width: 44rem;
}

.admin-content-page--simple .admin-simple-hint code {
  font-size: 0.78rem;
  padding: 0.1rem 0.3rem;
  border-radius: 4px;
  background: rgba(0, 31, 63, 0.06);
}

.admin-simple-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem 1.25rem;
}

@media (min-width: 720px) {
  .admin-simple-grid--two {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }
}

.admin-simple-panel {
  margin-bottom: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: rgba(0, 31, 63, 0.03);
  border: 1px solid rgba(10, 37, 64, 0.07);
}

.admin-simple-panel--flat {
  background: transparent;
  border: none;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 1.5rem;
}

.admin-simple-panel__title {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.admin-simple-details {
  margin-bottom: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(10, 37, 64, 0.1);
  padding: 0.5rem 1rem 1rem;
  background: #fff;
}

.admin-simple-details__summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy-deep);
  padding: 0.35rem 0;
  list-style: none;
}

.admin-simple-details__summary::-webkit-details-marker {
  display: none;
}

.admin-simple-details__body {
  padding-top: 0.5rem;
}

.admin-simple-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  cursor: pointer;
  line-height: 1.45;
}

.admin-content-card--advanced {
  padding: 1rem 1.15rem;
  list-style: none;
}

.admin-content-card__advanced-summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy-deep);
  font-size: 0.9375rem;
  list-style: none;
}

.admin-content-card__advanced-summary::-webkit-details-marker {
  display: none;
}

.admin-content-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-top: 0.25rem;
  padding: clamp(1.15rem, 3vw, 1.5rem) clamp(1.15rem, 3vw, 1.65rem);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(10, 37, 64, 0.04) 0%, rgba(212, 175, 55, 0.12) 100%);
  border: 1px solid rgba(10, 37, 64, 0.1);
  box-shadow: 0 8px 28px rgba(0, 31, 63, 0.07);
}

.admin-content-actions__copy {
  flex: 1 1 14rem;
  min-width: 0;
}

.admin-content-actions__title {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: -0.02em;
}

.admin-content-actions__hint {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.admin-content-actions__btn {
  flex-shrink: 0;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(201, 169, 110, 0.35);
}

/* Admin: afbeelding upload (sleep / kies) */
.admin-image-field {
  margin-bottom: 0.25rem;
}

.admin-image-field__dropzone {
  position: relative;
  border: 2px dashed rgba(10, 37, 64, 0.2);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 248, 252, 0.9));
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.admin-image-field__dropzone:hover,
.admin-image-field__dropzone:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.65);
  box-shadow: 0 4px 20px rgba(0, 31, 63, 0.06);
}

.admin-image-field__dropzone--active {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

.admin-image-field__native {
  position: absolute;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}

.admin-image-field__drop-inner {
  padding: 1.35rem 1rem;
  text-align: center;
}

.admin-image-field__dropzone:has(.admin-image-field__preview:not([hidden]) img[src]) .admin-image-field__drop-inner {
  display: none;
}

.admin-image-field__icon {
  display: block;
  margin: 0 auto 0.5rem;
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.85;
}

.admin-image-field__drop-title {
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy-deep);
}

.admin-image-field__browse {
  color: var(--olive);
  text-decoration: underline;
  text-underline-offset: 0.12em;
  cursor: pointer;
}

.admin-image-field__drop-meta {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.admin-image-field__preview {
  padding: 0.75rem;
  text-align: center;
}

.admin-image-field__preview img {
  max-width: 100%;
  max-height: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 31, 63, 0.1);
}

.admin-image-field__status {
  min-height: 1.35rem;
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  color: var(--olive);
}

.admin-image-field__status--err {
  color: #a32020;
  font-weight: 600;
}

.admin-image-field__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-top: 0.65rem;
}

.admin-image-field__path {
  flex: 1 1 12rem;
  min-width: 0;
  padding: 0.55rem 0.75rem;
  font-family: ui-monospace, monospace;
  font-size: 0.8125rem;
  border: 1px solid rgba(10, 37, 64, 0.15);
  border-radius: 8px;
  background: #fafbfc;
}

.admin-image-field .form-hint {
  margin-top: 0.45rem;
}

@media (max-width: 900px) {
  .admin-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100dvh;
    width: min(18.5rem, min(92vw, 22rem));
    transform: translateX(-100%);
    transition: transform 0.22s ease;
    box-shadow: none;
  }

  .admin-sidebar.is-open {
    transform: translateX(0);
    box-shadow: 12px 0 40px rgba(0, 0, 0, 0.25);
  }

  .admin-backdrop:not([hidden]) {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 250;
    background: rgba(10, 22, 40, 0.45);
    border: none;
    padding: 0;
    margin: 0;
  }

  .admin-menu-toggle {
    display: flex;
  }

  .admin-main {
    width: 100%;
  }

  .admin-topbar__user {
    display: none;
  }
}
