/**
 * hwyc-front.css — HW Yachtcharter frontpage
 * Vereist: base.css (variabelen)
 * Laad ALLEEN op de frontpage (page-front-v2.php)
 */

/* ══════════════════════════════════════════════
   LANDING HEADER — two-column (kayaking-patroon)
   ══════════════════════════════════════════════ */

/* ════════════════════════════════════════════
   LOGO-SPRITE VARIANTEN
   ════════════════════════════════════════════ */

/* Groot logo voor de linkerkolom */
.hwyc-logo-sprite--lg {
  background-size: 120px 1380px;
  background-position: 0 -958px;
  width:  120px;
  height: 80px;
  margin: 0;
}
@media (max-width: 991px) {
  .hwyc-logo-sprite--lg {
    background-size: 78px 897px;
    background-position: 0 -623px;
    width:  78px;
    height: 52px;
  }
}

/* ════════════════════════════════════════════
   HEADER — two-column flex container
   Kolom L: logo | Kolom R: utility + nav
   ════════════════════════════════════════════ */

/* Hoogte-variabelen — één plek aanpassen */
:root {
  --lp-utility-h: 48px;
  --lp-nav-h:     70px;
}

.lp-header {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 16px rgba(0,0,0,.18);
  border-top: 4px solid var(--brand-red);
}

/* ── Linker kolom: logo ── */
.lp-logo-col {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 180px;
  background: #0c1525;
  border-right: 1px solid rgba(255,255,255,.08);
  padding: 0 20px;
  /* Expliciete hoogte = utility + nav, krimpt mee bij scroll */
  height: calc(var(--lp-utility-h) + var(--lp-nav-h));
  overflow: hidden;
  transition: height .3s ease;
  will-change: height;
}
.lp-header--scrolled .lp-logo-col {
  height: var(--lp-nav-h); /* zelfde hoogte als de witte nav */
}

.lp-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Groot logo: zichtbaar standaard */
.lp-logo-main {
  display: block;
  filter: brightness(10);
  transition: opacity .3s ease;
}
/* Klein logo: verborgen standaard, verschijnt bij scroll */
.lp-logo-fixed {
  display: none;
  filter: brightness(10);
}
.lp-header--scrolled .lp-logo-main  { display: none; }
.lp-header--scrolled .lp-logo-fixed { display: block; }

/* ── Rechter kolom: utility + nav gestapeld ── */
.lp-main-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* ── Rij 1: Utility bar ── */
.lp-utility {
  background: #0c1525;
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  height: var(--lp-utility-h);
  transition: height .3s ease, opacity .3s ease, border-bottom-width .3s ease;
  will-change: height, opacity;
  /* Eigen stacking context boven de witte nav balk zodat
     het dropdown-menu niet achter de nav-links verdwijnt */
  position: relative;
  z-index: 2;
}

/* Dropdown-menu expliciete stijl — voorkomt dat Bootstrap-thema
   kleuren overschrijft en tekst onleesbaar maakt */
.lp-utility .hwyc-topbar-language-menu {
  background: #0c1525 !important;
  border: 1px solid rgba(255,255,255,.2) !important;
  z-index: 1100 !important;
  min-width: 90px;
}
.lp-utility .hwyc-topbar-language-menu .dropdown-item {
  color: rgba(255,255,255,.8) !important;
}
.lp-utility .hwyc-topbar-language-menu .dropdown-item:hover,
.lp-utility .hwyc-topbar-language-menu .dropdown-item.active {
  background: rgba(255,255,255,.1) !important;
  color: #fff !important;
}
.lp-header--scrolled .lp-utility {
  height: 0;
  opacity: 0;
  border-bottom-width: 0; /* border valt buiten overflow:hidden — expliciet op 0 zetten */
}

.lp-utility__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 44px;
  gap: 16px;
}

.lp-utility__left {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  overflow: hidden;
}

.lp-utility__link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  white-space: nowrap;
  transition: color .3s ease;
}
.lp-utility__link:hover { color: var(--fv2-gold); }
.lp-utility__link svg  { color: var(--fv2-gold); flex-shrink: 0; }

.lp-utility__hours {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  white-space: nowrap;
}
.lp-utility__hours svg { color: rgba(255,255,255,.3); flex-shrink: 0; }

.lp-utility__sep {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

.lp-utility__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Pill-vorm taalwisselaar in utility bar — Bootstrap overschrijft border-radius zonder !important */
.lp-utility__right .hwyc-topbar-language-toggle {
  border-radius: 999px !important;
  font-size: .7rem !important;
  padding: .28rem .8rem !important;
}

/* Advies-knop: geen radius (vierkant, zelfde als accommodatiecombi) */
.lp-utility__right .hwyc-topbar-book-button {
  font-size: .7rem !important;
  padding: .28rem .9rem !important;
  white-space: nowrap;
}

.lp-utility__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 3px;
  color: rgba(255,255,255,.5);
  transition: all .3s ease;
}
.lp-utility__social:hover {
  color: var(--fv2-gold);
  border-color: var(--fv2-gold);
}

/* Mobiel: utility verbergen */
@media (max-width: 767px) {
  :root {
    --lp-nav-h: 52px;
  }
  .lp-utility { display: none; }

  /* Logo kolom: compact, naadloos in de nav bar */
  .lp-logo-col {
    width: 64px;
    padding: 10px 12px;
    height: var(--lp-nav-h);
    border-right: 1px solid rgba(255,255,255,.06);
  }
  .lp-logo-col .hwyc-logo-sprite--lg {
    background-size: 44px 506px;
    background-position: 0 -350px;
    width: 44px;
    height: 29px;
  }

  /* Nav inner: minder zijwaartse padding op smal scherm */
  .lp-nav__inner {
    padding: 0 12px;
    gap: 8px;
  }

  /* Hamburger: iets smaller passend bij de compacte balk */
  .lp-hamburger {
    width: 36px;
    height: 36px;
    padding: 7px;
  }

  /* Mobile drawer: volledige schermbreedte */
  .lp-mob {
    width: 100vw;
    left: -100vw;
  }
  .lp-mob:not([hidden]) { left: 0; }
}

/* Tablet (768–991px): dropdown dezelfde stijl als desktop */
@media (min-width: 768px) and (max-width: 991px) {
  .lp-utility .hwyc-topbar-language-menu {
    background: #0c1525 !important;
    border: 1px solid rgba(255,255,255,.2) !important;
    z-index: 1100 !important;
  }
  .lp-utility .hwyc-topbar-language-menu .dropdown-item {
    color: rgba(255,255,255,.8) !important;
  }
  .lp-utility .hwyc-topbar-language-menu .dropdown-item:hover,
  .lp-utility .hwyc-topbar-language-menu .dropdown-item.active {
    background: rgba(255,255,255,.1) !important;
    color: #fff !important;
  }
}

/* ── Rij 2: Witte nav balk ── */
.lp-nav {
  flex: 1;
  background: #fff;
  position: relative; /* positioning context voor mega menu */
}

.lp-nav__inner {
  height: var(--lp-nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  gap: 16px;
}

/* Desktop menu */
.lp-nav__menu-wrap {
  flex: 1;
  display: none;
  min-width: 0;
}
@media (min-width: 992px) {
  .lp-nav__menu-wrap { display: block; }
}

.lp-nav__menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  height: var(--lp-nav-h);
  width: 100%;
}

/* Elk item krijgt gelijke breedte */
.lp-nav__menu > li {
  flex: 1;
  display: flex;
  position: relative;
  /* Verticale streep rechts — niet op het laatste item */
  border-right: 1px solid rgba(26,46,74,.1);
}
.lp-nav__menu > li:last-child {
  border-right: none;
}

/* Nav-links: gecentreerd, volle breedte */
.lp-nav__menu a.lp-menu-link,
.lp-nav__menu > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  height: var(--lp-nav-h);
  padding: 0 8px;
  font-family: var(--fv2-font);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #1a2e4a;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  transition: all .3s ease;
  white-space: nowrap;
}
.lp-nav__menu a.lp-menu-link:hover,
.lp-nav__menu > li > a:hover,
.lp-nav__menu > li.current-menu-item > a,
.lp-nav__menu > li.current-menu-ancestor > a {
  color: #0c1525;
  border-bottom-color: var(--fv2-gold);
  background: rgba(197,165,109,.05);
}

/* Chevron */
.lp-menu-link__chevron { flex-shrink:0; opacity:.35; transition:transform .25s ease; }
.menu-item-has-children:hover .lp-menu-link__chevron { transform:rotate(180deg); opacity:.65; }

/* Dropdown */
/* Gewone items: position relative voor normale dropdown */
.lp-nav__menu .menu-item-has-children { position: relative; }

/* Mega menu items: position static zodat .lp-mega relatief aan .lp-nav uitlijnt */
.lp-nav__menu .lp-has-mega { position: static; }

/* ── Standaard dropdown (items zonder mega) ── */
.lp-nav__menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border-top: 2px solid var(--fv2-gold);
  border: 1px solid rgba(0,0,0,.07);
  border-top: 2px solid var(--fv2-gold);
  box-shadow: -4px 3px 0 rgba(0,0,0,.12);
  list-style: none;
  padding: 8px 0;
  z-index: 200;
}
.lp-nav__menu .menu-item-has-children:not(.lp-has-mega):hover > .sub-menu,
.lp-nav__menu .menu-item-has-children:not(.lp-has-mega):focus-within > .sub-menu { display: block; }
.lp-nav__menu .sub-menu a {
  display: block;
  padding: 10px 20px;
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #1a2e4a;
  text-decoration: none;
  white-space: nowrap;
  transition: all .3s ease;
}
.lp-nav__menu .sub-menu a:hover {
  color: var(--fv2-gold);
  background: rgba(197,165,109,.06);
  padding-left: 24px;
}

/* ══════════════════════════════════════════════
   MEGA MENU — dark navy achtergrond, lichte voorgrond
   ══════════════════════════════════════════════ */

.lp-mega {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #0c1525;
  border-top: 2px solid var(--fv2-gold);
  box-shadow: 0 12px 40px rgba(9,15,26,.45);
  z-index: 500;
}
/* Desktop met muis: hover opent mega menu */
@media (hover: hover) {
  .lp-nav__menu .lp-has-mega:hover > .lp-mega,
  .lp-nav__menu .lp-has-mega:focus-within > .lp-mega { display: block; }
}

/* Touch/tablet: JS-class opent mega menu (hover werkt niet op touch) */
@media (hover: none) {
  .lp-nav__menu .lp-has-mega.lp-mega--active > .lp-mega { display: block; }
}

.lp-mega__inner {
  display: flex;
  gap: 0;
  padding: 0;
  max-width: 100%;
}

/* ── Kolommen ── */
.lp-mega__col {
  padding: 28px 24px;
  flex-shrink: 0;
}
.lp-mega__col--links {
  min-width: 220px;
  border-right: 1px solid rgba(255,255,255,.07);
}
.lp-mega__col--cards {
  flex: 1;
}

/* Kolomlabel */
.lp-mega__col-label {
  font-family: var(--fv2-font);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fv2-gold);
  margin: 0 0 4px;
}
.lp-mega__col-sublabel {
  font-family: var(--fv2-font);
  font-size: .68rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  margin: 0 0 12px;
  letter-spacing: .02em;
}

/* ── Sub-menu links (kolom 1) ── */
.lp-mega__sub-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.lp-mega__sub-list .menu-item { display: block; }

.lp-mega__sub-link {
  display: block;
  padding: 8px 10px 8px 12px;
  font-family: var(--fv2-font);
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  border-left: 2px solid transparent;
  border-radius: 0 4px 4px 0;
  transition: all .2s ease;
  white-space: nowrap;
}
.lp-mega__sub-link:hover,
.lp-mega__sub-link[aria-current="page"] {
  color: #fff;
  background: rgba(255,255,255,.06);
  border-left-color: var(--fv2-gold);
  padding-left: 16px;
}

/* Sub-sub niveau (genesteld) */
.lp-mega__sub-sub {
  list-style: none;
  padding: 0 0 4px 16px;
  margin: 0;
}
.lp-mega__sub-sub a {
  display: block;
  padding: 5px 8px;
  font-size: .73rem;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .2s;
}
.lp-mega__sub-sub a:hover { color: var(--fv2-gold); }

/* Eigen lp-mega__link klasse (WP-children fallback) */
.lp-mega__link {
  display: block;
  padding: 8px 12px;
  font-family: var(--fv2-font);
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: all .2s ease;
}
.lp-mega__link:hover {
  color: #fff;
  background: rgba(255,255,255,.06);
  border-left-color: var(--fv2-gold);
  padding-left: 16px;
}

/* ── Automatische bootkaarten (kolom 2) ── */
.lp-mega__cards {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap; /* 3 kaarten naast elkaar */
}

.lp-mega__card {
  display: flex;
  flex-direction: column;
  width: 160px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  text-decoration: none;
  transition: all .3s ease;
  background: rgba(255,255,255,.04);
}
.lp-mega__card:hover {
  border-color: var(--fv2-gold);
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}

.lp-mega__card-img-wrap {
  height: 100px;
  overflow: hidden;
  background: rgba(255,255,255,.05);
}
.lp-mega__card-img-wrap--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.2);
}
.lp-mega__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
.lp-mega__card:hover .lp-mega__card-img { transform: scale(1.04); }

.lp-mega__card-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 12px 12px;
}
.lp-mega__card-title {
  font-family: var(--fv2-font);
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.lp-mega__card-pers {
  font-weight: 500;
  color: var(--fv2-gold);
  font-size: .75rem;
}
.lp-mega__card-meta {
  font-size: .7rem;
  color: rgba(255,255,255,.45);
}
.lp-mega__card-price {
  font-size: .72rem;
  font-weight: 600;
  color: var(--fv2-gold);
}
.lp-mega__card-cta {
  margin-top: 6px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--fv2-gold);
}

/* Acties rechts in nav */
.lp-nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto; /* duwt altijd naar rechts, ook als menu-wrap hidden is */
}

.lp-nav__lang-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: 1.5px solid rgba(26,46,74,.18);
  border-radius: 4px;
  color: #1a2e4a;
  font-family: var(--fv2-font);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 5px 8px;
  cursor: pointer;
  transition: all .3s ease;
}
.lp-nav__lang-btn:hover { border-color: var(--fv2-gold); color: #0c1525; }

.lp-nav__lang-menu {
  min-width: 76px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 5px;
  box-shadow: -4px 3px 0 rgba(0,0,0,.1);
}
.lp-nav__lang-menu .dropdown-item {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #1a2e4a;
  padding: 7px 12px;
}
.lp-nav__lang-menu .dropdown-item:hover,
.lp-nav__lang-menu .dropdown-item.active {
  background: rgba(197,165,109,.1);
  color: #0c1525;
}

.lp-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--fv2-green);
  color: #fff;
  font-family: var(--fv2-font);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-decoration: none;
  border-radius: 4px;
  white-space: nowrap;
  transition: all .3s ease;
}
.lp-nav__cta:hover { background: var(--fv2-green-hov); color: #fff; }
.lp-nav__cta:focus-visible { outline: 2px solid var(--fv2-gold); outline-offset: 3px; }

/* Hamburger */
.lp-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 8px;
  background: transparent;
  border: 1.5px solid rgba(26,46,74,.18);
  border-radius: 4px;
  cursor: pointer;
  transition: all .3s ease;
}
.lp-hamburger:hover { border-color: var(--fv2-gold); }

.lp-hamburger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: #1a2e4a;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}

/* ════════════════════════════════════════════
   MOBILE DRAWER — schuift van links (kayaking patroon)
   ════════════════════════════════════════════ */

.lp-mob {
  position: fixed;
  top: 0;
  left: -320px;
  bottom: 0;
  width: 320px;
  background: #0c1525;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transition: left .3s linear; /* exact kayaking timing */
}
.lp-mob:not([hidden]) { left: 0; }

.lp-mob__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
}
.lp-mob__logo .hwyc-logo-sprite { filter: brightness(10); }

.lp-mob__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 4px;
  color: rgba(255,255,255,.7);
  cursor: pointer;
  transition: all .3s ease;
}
.lp-mob__close:hover { color: #fff; border-color: rgba(255,255,255,.4); }

.lp-mob__nav { flex: 1; }

/* Mega menu in mobile drawer — inline uitklappen, niet absoluut */
.lp-mob .lp-has-mega > .lp-mega {
  display: none;
  position: static;
  background: rgba(0,0,0,.2);
  box-shadow: none;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: none;
}
.lp-mob .lp-has-mega.is-open > .lp-mega {
  display: block;
}
/* Links-kolom en kaarten-kolom vertikaal stapelen in drawer */
.lp-mob .lp-mega__inner {
  flex-direction: column;
  padding: 12px 16px;
  gap: 16px;
}
.lp-mob .lp-mega__col {
  padding: 0;
  border-right: none;
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding-bottom: 14px;
}
.lp-mob .lp-mega__col:last-child { border-bottom: none; padding-bottom: 0; }
/* Kaarten in drawer: horizontaal scroll */
.lp-mob .lp-mega__cards {
  overflow-x: auto;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.lp-mob .lp-mega__cards::-webkit-scrollbar { display: none; }
.lp-mob .lp-mega__card { flex-shrink: 0; }

.lp-mob__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.lp-mob__list .menu-item {
  border-bottom: 1px solid rgba(255,255,255,.05);
  position: relative;
}
.lp-mob__list a.lp-menu-link {
  display: flex;
  align-items: center;
  padding: 17px 54px 17px 20px; /* ruimte voor expand-knop rechts */
  font-family: var(--fv2-font);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  min-height: 52px;
  transition: all .3s ease;
}
.lp-mob__list a.lp-menu-link:hover { color: #fff; background: rgba(255,255,255,.04); }
.lp-mob__list a.lp-menu-link[aria-current="page"] { color: var(--fv2-gold); }

/* Submenu */
.lp-mob__list .sub-menu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  background: rgba(0,0,0,.2);
}
.lp-mob__list .menu-item.is-open > .sub-menu { display: block; }
.lp-mob__list .sub-menu a {
  display: block;
  padding: 13px 20px 13px 32px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: all .3s ease;
}
.lp-mob__list .sub-menu a:hover { color: var(--fv2-gold); background: rgba(255,255,255,.03); }

/* Expand-toggle voor submenus */
.lp-sub-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 4px;
  color: rgba(255,255,255,.45);
  cursor: pointer;
  transition: all .3s ease;
}
.lp-sub-toggle:hover { color: #fff; border-color: rgba(255,255,255,.3); }
.menu-item.is-open > .lp-sub-toggle {
  transform: translateY(-50%) rotate(180deg);
  color: var(--fv2-gold);
  border-color: var(--fv2-gold);
}

/* Footer van drawer */
.lp-mob__foot {
  flex-shrink: 0;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-mob__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  background: var(--fv2-green);
  color: #fff;
  font-family: var(--fv2-font);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-decoration: none;
  border-radius: 4px;
  transition: all .3s ease;
  min-height: 48px;
}
.lp-mob__cta:hover { background: var(--fv2-green-hov); color: #fff; }

.lp-mob__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: color .3s ease;
}
.lp-mob__phone:hover { color: var(--fv2-gold); }

.lp-mob__langs {
  display: flex;
  gap: 8px;
}
.lp-mob__lang-link {
  padding: 6px 12px;
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 4px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: all .3s ease;
}
.lp-mob__lang-link.is-active,
.lp-mob__lang-link:hover {
  color: #fff;
  border-color: var(--fv2-gold);
  background: rgba(197,165,109,.12);
}

/* Overlay */
.lp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.lp-overlay--visible { opacity: 1; pointer-events: auto; }
body.lp-menu-open   { overflow: hidden; }

/* ══════════════════════════════════════════════
   RESET / BASE — scoped tot .fv2-page
   ══════════════════════════════════════════════ */

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

.fv2-page {
  font-family: var(--fv2-font);
  color: var(--fv2-navy);
  overflow-x: hidden;
}

.fv2-page a { color: inherit; text-decoration: none; }
.fv2-page img { max-width: 100%; height: auto; display: block; }

/* ── Container ── */
.fv2-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ══════════════════════════════════════════════
   KNOPPEN
   fv2-additions wint voor primaire kleur (groen)
   ══════════════════════════════════════════════ */

.fv2-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--fv2-font);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .15s, transform .1s;
  text-decoration: none;
}
.fv2-btn:active { transform: scale(.98); }

/* Primary — groen (fv2-additions versie) */
.fv2-btn--primary,
.fv2-btn.fv2-btn--primary { background: var(--fv2-green); color: #fff; }
.fv2-btn--primary:hover,
.fv2-btn.fv2-btn--primary:hover { background: var(--fv2-green-hov); color: #fff; }

/* Outline */
.fv2-btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.45);
}
.fv2-btn--outline:hover { border-color: #fff; background: rgba(255,255,255,.07); color: #fff; }

/* Phone — ghost goud (fv2-additions) */
.fv2-btn--phone {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  border: 1.5px solid rgba(197,165,109,.5);
  border-radius: 999px;
}
.fv2-btn--phone:hover {
  background: rgba(197,165,109,.12);
  border-color: var(--fv2-gold);
  color: #fff;
}

/* WhatsApp */
.fv2-btn--whatsapp,
.fv2-btn.fv2-btn--whatsapp { background: #25d366; color: #fff; border: none; }
.fv2-btn--whatsapp:hover,
.fv2-btn.fv2-btn--whatsapp:hover { background: #1aad54; color: #fff; }

/* Aliassen (fv2-additions) */
.fv2-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--fv2-font);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  background: var(--fv2-green);
  color: #fff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, transform .1s;
}
.fv2-btn-primary:hover,
.fv2-btn-primary:focus-visible { background: var(--fv2-green-hov); color: #fff; }
.fv2-btn-primary:active { transform: scale(.98); }

.fv2-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--fv2-font);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.45);
  cursor: pointer;
  text-decoration: none;
  transition: border-color .15s, background .15s;
}
.fv2-btn-outline:hover,
.fv2-btn-outline:focus-visible { border-color: #fff; background: rgba(255,255,255,.07); color: #fff; }

.fv2-btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  font-family: var(--fv2-font);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--fv2-green);
  color: #fff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s;
}
.fv2-btn-sm:hover { background: var(--fv2-green-hov); color: #fff; }

/* Trust pills (fv2-additions) */
.fv2-trust-pill {
  font-size: .68rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  background: rgba(197,165,109,.1);
  border: 1px solid rgba(197,165,109,.3);
  padding: 4px 11px;
  letter-spacing: .04em;
  backdrop-filter: blur(4px);
}

/* ══════════════════════════════════════════════
   SECTION GEMEENSCHAPPELIJK
   fv2-additions wint voor padding en typografie
   ══════════════════════════════════════════════ */

/* Padding (fv2-additions wint van front-v2) */
.fv2-section          { padding: 88px 0; }
.fv2-section--sm      { padding: 40px 0; }
.fv2-search-section   { padding: 64px 0; }
.fv2-lastminute       { padding: 72px 0; }
.fv2-lead             { padding: 80px 0; }

.fv2-section--dark {
  background: var(--fv2-navy);
  color: #fff;
}
.fv2-section--light  { background: var(--fv2-off-white); }
.fv2-section--navy {
  background: var(--fv2-navy);
  color: #fff;
}
.fv2-section--navy .fv2-section__title { color: #fff; }
.fv2-section--navy .fv2-section__sub   { color: rgba(255,255,255,.6); }

/* Section label — goud met sierlijntje (fv2-additions wint) */
.fv2-section__label {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fv2-gold);
  display: block;
  margin-bottom: 10px;
}
.fv2-section__label::after {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--fv2-gold);
  margin: 8px 0 0;
  opacity: .6;
}
.fv2-section--dark  .fv2-section__label,
.fv2-section--navy  .fv2-section__label,
.fv2-lastminute     .fv2-section__label,
.fv2-lead           .fv2-section__label { color: var(--fv2-gold); }
.fv2-section--dark  .fv2-section__label::after,
.fv2-section--navy  .fv2-section__label::after,
.fv2-lastminute     .fv2-section__label::after,
.fv2-lead           .fv2-section__label::after { background: var(--fv2-gold); opacity: .45; }

/* Section titles — groter, meer serif, editoriaal (fv2-additions wint) */
.fv2-section__title {
  font-family: var(--fv2-serif);
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.18;
  color: var(--fv2-navy);
  margin: 0 0 16px;
}
.fv2-section--dark .fv2-section__title,
.fv2-section--navy .fv2-section__title { color: #fff; }

.fv2-section__sub {
  font-size: 1rem;
  color: var(--fv2-text-muted);
  max-width: 520px;
  line-height: 1.72;
  margin: 0 0 36px;
}
.fv2-section--dark .fv2-section__sub,
.fv2-section--navy .fv2-section__sub { color: rgba(255,255,255,.62); }

/* ══════════════════════════════════════════════
   1. HERO
   ══════════════════════════════════════════════ */

.fv2-hero {
  position: relative;
  /* Exacte viewport-hoogte min de header (utility + nav) zodat hero
     naadloos de rest van het scherm vult zonder te scrollen */
  min-height: calc(100svh - var(--lp-utility-h) - var(--lp-nav-h));
  min-height: calc(100vh  - var(--lp-utility-h) - var(--lp-nav-h));
  display: flex;
  align-items: center;
  background: var(--fv2-navy);
  overflow: hidden;
}

@media (max-width: 767px) {
  /* Mobiel: utility bar is verborgen */
  .fv2-hero {
    min-height: calc(100svh - var(--lp-nav-h));
    min-height: calc(100vh  - var(--lp-nav-h));
  }
}

/* Fallback achtergrond patroon (fv2-additions) */
.fv2-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 10a7 7 0 1 1 0 14 7 7 0 0 1 0-14zm0 14v26M26 36H14a26 26 0 0 0 52 0H54' stroke='%23c5a56d' stroke-opacity='.05' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"),
    linear-gradient(155deg, #090f1a 0%, #0c1a2e 50%, #111d2e 100%);
  background-size: 80px 80px, cover;
}

.fv2-hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Poster-afbeelding: zichtbaar tot iframe ready is */
.fv2-yt-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
  transition: opacity .8s ease;
  pointer-events: none;
}

/* YouTube iframe: covers hero ongeacht verhouding */
.fv2-yt-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Minimale afmetingen voor cover-effect bij 16:9 */
  width: 100vw;
  height: 56.25vw;   /* 100/16*9 */
  min-height: 100%;
  min-width: 177.78vh; /* 100/9*16 */
  border: none;
  opacity: 0;
  transition: opacity .8s ease;
  pointer-events: none;
}
.fv2-yt-iframe--ready {
  opacity: .35;
}

/* Zelf-gehoste MP4 achtergrondvideo */
/* Video achtergrond */
.fv2-hero__mp4 {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: .4;
  pointer-events: none;
}
.fv2-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,18,30,.65) 0%,
    rgba(15,27,42,.45) 60%,
    rgba(15,27,42,.20) 100%
  );
  z-index: 1;
}

.fv2-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 40px 0 48px;
}
/* Zorg dat de hero body de volle breedte benut */
.fv2-hero__body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 40px 0 48px;
}
/* WordPress admin-bar (+32px) verlagen de beschikbare hoogte */
.admin-bar .fv2-hero {
  min-height: calc(100svh - var(--lp-utility-h) - var(--lp-nav-h) - 32px);
  min-height: calc(100vh  - var(--lp-utility-h) - var(--lp-nav-h) - 32px);
}
@media (max-width: 782px) {
  .admin-bar .fv2-hero {
    min-height: calc(100svh - var(--lp-nav-h) - 46px);
    min-height: calc(100vh  - var(--lp-nav-h) - 46px);
  }
}

/* Eyebrow — goud (fv2-additions wint) */
.fv2-hero__eyebrow {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fv2-gold);
  display: block;
  margin-bottom: 14px;
}
.fv2-hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--fv2-gold);
  vertical-align: middle;
  margin-right: 10px;
  opacity: .7;
}

/* H1 — editoriaal (fv2-additions wint) */
.fv2-hero__title {
  font-family: var(--fv2-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -.03em;
  margin: 0 0 24px;
  max-width: 720px;
}
.fv2-hero__title em {
  font-style: normal;
  color: var(--fv2-gold); /* fv2-additions wint */
}

.fv2-hero__seo-line {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .35rem .75rem;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  margin-bottom: 1rem;
}

.fv2-hero__emotion-line {
  display: block;
}

.fv2-hero__sub {
  font-size: clamp(.9rem, 2vw, 1.05rem);
  color: rgba(255,255,255,.72);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 0 36px;
}

.fv2-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.fv2-hero__search {
  margin-top: 48px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  padding: 20px 24px;
  max-width: 640px;
}
.fv2-hero__search-title {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 12px;
  display: block;
}

/* ══════════════════════════════════════════════
   HERO BOOKING BAR (in-hero compact form)
   ══════════════════════════════════════════════ */

/* ══════════════════════════════════════════════
   PREMIUM VAKANTIEPLANNER — Mobile First
   ══════════════════════════════════════════════ */
.fv2-planner { margin-top: 28px; position: relative; z-index: 2; }

/* "PLAN UW VAARVAKANTIE" */
.fv2-planner__eyebrow {
  font-size: .6rem; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: var(--fv2-gold);
  margin: 0 0 14px;
}

/* ── De balk: één gecombineerde container ────── */
.fv2-planner__bar {
  display: flex;
  flex-direction: column;
  background: rgba(10,18,32,.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 14px;
  overflow: visible;               /* visible zodat het gasten-panel niet geclipped wordt */
}
/* Border-radius op de eerste en laatste selector in de gestapelde mobile layout */
.fv2-planner__period  { border-radius: 13px 13px 0 0; }
.fv2-planner__cta     { border-radius: 0 0 13px 13px; }

/* ── Selector (direct flex-kind van de balk) ──── */
.fv2-planner__sel {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 22px; min-height: 64px;
  background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,.09);
  text-align: left; cursor: pointer; position: relative;
  transition: background .15s;
}
.fv2-planner__sel:hover,
.fv2-planner__sel:focus-visible { background: rgba(255,255,255,.06); outline: none; }

/* Periode en gasten krijgen flex:1 direct als .fv2-planner__sel */
.fv2-planner__period { border-radius: 13px 13px 0 0; }
.fv2-planner__guests { border-radius: 0; }

.fv2-planner__sel-icon { flex-shrink: 0; color: var(--fv2-gold); }
.fv2-planner__sel-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.fv2-planner__sel-label {
  font-size: .55rem; font-weight: 800; letter-spacing: .13em;
  text-transform: uppercase; color: rgba(255,255,255,.45); line-height: 1;
}
.fv2-planner__sel-value {
  font-family: var(--fv2-font); font-size: 1.05rem; font-weight: 700;
  color: #fff; line-height: 1.2; white-space: nowrap;
}
.fv2-planner__sel-chev { flex-shrink: 0; color: rgba(255,255,255,.3); transition: transform .2s ease; }
.fv2-planner__guests[aria-expanded="true"] .fv2-planner__sel-chev { transform: rotate(180deg); }

/* Separator (desktop: verticale lijn) */
.fv2-planner__sep { display: none; }

/* Flatpickr input gestyled als plain tekst */
.fv2-planner__date-input {
  background: transparent !important; border: none !important;
  padding: 0 !important; margin: 0 !important; box-shadow: none !important;
  font-family: var(--fv2-font); font-size: .95rem; font-weight: 700;
  color: #fff !important; line-height: 1.2; cursor: pointer;
  width: 100%; min-width: 0; overflow: visible;
}
.fv2-planner__date-input::placeholder { color: rgba(255,255,255,.4) !important; font-weight: 400; }
.fv2-planner__date-input:focus { outline: none !important; }
/* flatpickr-wrapper mag de flex-layout niet verstoren */
.fv2-planner__period .flatpickr-wrapper { display: contents; }

/* Kalender: zorg dat de breedte niet door een parent wordt geclipped */
.flatpickr-calendar.multiMonth { max-width: none !important; }

/* ── Mobiel fullscreen kalender overlay — 1:1 zelfde als zoeken-nieuw ── */
.fv2-cal-overlay { display:none; position:fixed; inset:0; z-index:2100; background:var(--bg-surface,#fff); flex-direction:column; }
.fv2-cal-overlay.open { display:flex; }
.fv2-cal-overlay__head { position:sticky; top:0; z-index:10; flex-shrink:0; display:flex; align-items:center; justify-content:space-between; padding:16px 20px; background:var(--brand-blue-dark,#0b1220); border-bottom:3px solid var(--brand-red,#c0392b); }
.fv2-cal-overlay__title { font-family:var(--font-base); font-size:.82rem; font-weight:800; color:#fff; letter-spacing:.06em; text-transform:uppercase; }
.fv2-cal-overlay__close { width:34px; height:34px; border:1.5px solid rgba(255,255,255,.25); background:rgba(255,255,255,.08); border-radius:999px; cursor:pointer; display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.75); transition:all .15s; }
.fv2-cal-overlay__close:hover { background:rgba(255,255,255,.18); border-color:rgba(255,255,255,.5); color:#fff; }
.fv2-cal-body { flex:1; overflow-y:auto; padding-bottom:90px; background:#f5f6f8; }
.fv2-cal-month-block { background:#fff; margin:12px 12px 0; border:1px solid rgba(15,27,42,.07); box-shadow:0 1px 4px rgba(15,27,42,.05); }
.fv2-cal-month-block:last-child { margin-bottom:12px; }
.fv2-cal-month-label { font-family:var(--font-base); font-size:.82rem; font-weight:800; color:var(--brand-blue-dark); padding:14px 16px 8px; text-transform:uppercase; letter-spacing:.07em; border-bottom:1px solid rgba(15,27,42,.06); }
.fv2-cal-month-block .flatpickr-calendar.inline { box-shadow:none !important; border:none !important; border-radius:0 !important; background:transparent !important; width:100% !important; max-width:100% !important; padding:8px 12px 12px !important; }
.fv2-cal-month-block .flatpickr-months { display:none !important; }
.fv2-cal-month-block .flatpickr-rContainer,
.fv2-cal-month-block .flatpickr-weekdays,
.fv2-cal-month-block .flatpickr-weekdaycontainer,
.fv2-cal-month-block .flatpickr-days,
.fv2-cal-month-block .dayContainer { width:100% !important; min-width:0 !important; max-width:none !important; }
.fv2-cal-month-block .flatpickr-weekday { font-size:.68rem !important; font-weight:800 !important; color:rgba(15,27,42,.4) !important; letter-spacing:.04em !important; }
.fv2-cal-month-block .flatpickr-day { max-width:calc(100% / 7) !important; min-width:0 !important; flex-basis:calc(100% / 7) !important; height:44px !important; line-height:44px !important; font-size:.9rem !important; font-weight:600 !important; border-radius:0 !important; color:var(--brand-blue-dark) !important; }
.fv2-cal-month-block .flatpickr-day.flatpickr-disabled { color:rgba(15,27,42,.2) !important; text-decoration:line-through !important; }
.fv2-cal-month-block .flatpickr-day.today:not(.selected) { border-bottom:2px solid var(--brand-blue-dark) !important; font-weight:800 !important; }
.fv2-cal-month-block .flatpickr-day.startRange,
.fv2-cal-month-block .flatpickr-day.endRange { background:var(--brand-blue-dark) !important; border-color:var(--brand-blue-dark) !important; border-radius:0 !important; color:#fff !important; font-weight:800 !important; }
.fv2-cal-month-block .flatpickr-day.inRange { background:rgba(15,27,42,.08) !important; border-color:transparent !important; box-shadow:none !important; color:var(--brand-blue-dark) !important; }
.fv2-cal-overlay__foot { position:fixed; bottom:0; left:0; right:0; z-index:2101; padding:12px 16px; background:#fff; border-top:1px solid rgba(15,27,42,.08); box-shadow:0 -4px 20px rgba(15,27,42,.10); }
.fv2-cal-sel-info { font-size:.75rem; font-weight:700; letter-spacing:.04em; text-transform:uppercase; color:rgba(15,27,42,.45); min-height:1em; margin-bottom:8px; }
.fv2-cal-confirm { width:100%; background:#155f38; color:#fff; border:none; padding:15px; font-family:var(--font-base); font-size:.88rem; font-weight:800; letter-spacing:.06em; text-transform:uppercase; cursor:pointer; display:flex; align-items:center; justify-content:center; gap:9px; transition:background .15s; }
.fv2-cal-confirm:disabled { background:#b8c5bf; cursor:default; }
.fv2-cal-confirm:not(:disabled):hover { background:#0f4429; }

/* ── Gezelschap panel ────────────────────────── */
.fv2-planner__gpanel {
  display: none;
  position: absolute; bottom: calc(100% + 8px); top: auto;
  left: 0; right: 0;               /* mobiel: volledige breedte van de selector */
  background: #fff; border-radius: 12px;
  box-shadow: 0 -8px 32px rgba(0,0,0,.25);
  padding: 20px 22px; z-index: 600;
  text-align: left;
}
.fv2-planner__gpanel.open { display: block; }
/* Desktop: vaste breedte, rechts uitlijnen */
@media (min-width: 576px) {
  .fv2-planner__gpanel { left: auto; right: 0; min-width: 270px; }
}

.fv2-planner__grow {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; border-bottom: 1px solid rgba(15,27,42,.07);
}
.fv2-planner__grow:first-child { padding-top: 0; }
.fv2-planner__grow:last-child  { border-bottom: none; padding-bottom: 0; }
.fv2-planner__grow-lbl { font-size: .92rem; font-weight: 700; color: var(--fv2-navy); }
.fv2-planner__grow-sub { font-size: .72rem; color: #888; margin-top: 3px; }

.fv2-planner__stepper { display: flex; align-items: center; gap: 12px; }
.fv2-planner__step {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(15,27,42,.2);
  background: transparent; font-size: 1.1rem; font-weight: 700;
  color: var(--fv2-navy); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .15s, background .15s;
}
.fv2-planner__step:hover:not(:disabled) { border-color: var(--fv2-navy); background: rgba(15,27,42,.06); }
.fv2-planner__step:disabled { opacity: .25; cursor: default; }
.fv2-planner__step-val { min-width: 24px; text-align: center; font-weight: 700; font-size: 1.05rem; color: var(--fv2-navy); }

/* ── CTA-knop (onderkant balk, mobiel) ────────── */
.fv2-planner__cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; min-height: 58px; padding: 18px 24px;
  background: var(--fv2-green); color: #fff; border: none;
  font-family: var(--fv2-font); font-size: .95rem; font-weight: 800;
  letter-spacing: .02em; cursor: pointer; transition: background .2s;
}
.fv2-planner__cta:hover { background: var(--fv2-green-hov); }
.fv2-planner__cta:focus-visible { outline: 2px solid var(--fv2-gold); outline-offset: -3px; }
.fv2-planner__cta-arrow { transition: transform .2s; flex-shrink: 0; }
.fv2-planner__cta:hover .fv2-planner__cta-arrow { transform: translateX(5px); }

/* ── Trust bar ───────────────────────────────── */
.fv2-planner__trust {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px 12px;
  margin-top: 14px; font-size: .69rem; font-weight: 600;
  color: rgba(255,255,255,.4); line-height: 1.4;
}
.fv2-planner__trust-sep { opacity: .3; }

/* ══════════════════════════════════════════════
   ≥576px — één horizontale balk (alles inline)
   ══════════════════════════════════════════════ */
@media (min-width: 576px) {
  .fv2-planner__bar {
    display: flex; flex-direction: row; align-items: stretch;
    overflow: visible;
  }
  .fv2-planner__sel { min-height: 72px; padding: 20px 18px; border-bottom: none; border-radius: 0; }
  /* Periode krijgt alle resterende ruimte */
  .fv2-planner__period { flex: 1; border-radius: 13px 0 0 13px; }
  /* Gasten: vaste breedte zodat de kolom nooit meegroeit */
  .fv2-planner__guests { flex: 0 0 148px; border-radius: 0; }
  .fv2-planner__sep {
    display: block; width: 1px; flex-shrink: 0;
    background: rgba(255,255,255,.1); align-self: stretch; margin: 16px 0;
  }
  .fv2-planner__cta {
    flex: 0 0 34%; border-radius: 0 13px 13px 0;
    padding: 20px 20px; min-height: 0; font-size: .88rem;
  }
}

/* ≥768px — iets meer ruimte */
@media (min-width: 768px) {
  .fv2-planner__sel { padding: 22px 22px; min-height: 76px; }
  .fv2-planner__guests { flex-basis: 160px; }
  .fv2-planner__cta { padding: 22px 28px; font-size: .95rem; flex-basis: 36%; }
  .fv2-planner__sep { margin: 20px 0; }
}

/* Multi-clip video cross-fade */
.fv2-hero__mp4--active { opacity: .4; transition: opacity .8s ease; }
.fv2-hero__mp4--next   { opacity: 0;  transition: opacity .8s ease; }

/* ══════════════════════════════════════════════ */

.fv2-hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.4);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: fv2-bounce 2s ease-in-out infinite;
}
@keyframes fv2-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Hero: grote primaire knop ── */
.fv2-btn--hero {
  padding: 16px 32px;
  font-size: .9rem;
  min-height: 52px;
}

/* ── Ghost knop in hero ── */
.fv2-hero-ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.35);
  color: rgba(255,255,255,.85);
  padding: 15px 24px;
  font-size: .85rem;
  font-weight: 600;
  border-radius: 4px;
  transition: border-color .2s, color .2s, background .2s;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
}
.fv2-hero-ghost:hover {
  border-color: rgba(255,255,255,.7);
  color: #fff;
  background: rgba(255,255,255,.06);
}
.fv2-hero-ghost:focus-visible {
  outline: 2px solid var(--fv2-gold);
  outline-offset: 3px;
}

/* ── Social proof mikrotekst ── */
.fv2-hero__proof {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.45);
  font-size: .72rem;
  margin: 14px 0 0;
  letter-spacing: .02em;
}
.fv2-hero__proof svg { color: var(--fv2-gold); flex-shrink: 0; }

/* ── Trust badges ── */
.fv2-hero__trust {
  display: flex;
  flex-wrap: wrap; /* desktop: badges naast elkaar, mobiel: meerdere rijen */
  gap: 8px;
  margin-top: 20px;
  padding-bottom: 4px;
}
.fv2-hero__trust::-webkit-scrollbar { display: none; }

.fv2-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  color: rgba(255,255,255,.80);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 5px 10px;
  border-radius: 20px;
  transition: background .2s;
}
.fv2-hero__badge i {
  color: var(--fv2-gold);
  font-size: .72rem;
}

/* ── Hero overlay: links donker voor leesbaarheid ── */
.fv2-hero__overlay {
  background:
    linear-gradient(90deg, rgba(9,15,26,.90) 0%, rgba(9,15,26,.60) 45%, rgba(9,15,26,.18) 100%),
    linear-gradient(0deg, rgba(9,15,26,.55) 0%, transparent 45%);
}

/* ── Hero: ruimte voor booking bridge op desktop ── */
@media (min-width: 992px) {
  .fv2-hero { padding-bottom: 80px; }
  .fv2-hero__scroll { bottom: 90px; }
}

/* ── Entrance animaties ── */
@keyframes fv2FadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: no-preference) {
  .fv2-hero__eyebrow { animation: fv2FadeUp .6s ease .05s both; }
  .fv2-hero__title   { animation: fv2FadeUp .7s ease .15s both; }
  .fv2-hero__sub     { animation: fv2FadeUp .6s ease .30s both; }
  .fv2-hero__actions { animation: fv2FadeUp .6s ease .42s both; }
  .fv2-hero__proof   { animation: fv2FadeUp .5s ease .52s both; }
  .fv2-hero__trust   { animation: fv2FadeUp .6s ease .60s both; }
}

/* ══════════════════════════════════════════════
   BOOKING BRIDGE
   Zweeft over de onderkant van de hero op desktop.
   Op mobiel: gewone kaart direct onder de hero.
   ══════════════════════════════════════════════ */

.fv2-booking-bridge {
  position: relative;
  z-index: 10;
}

.fv2-booking-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(9,15,26,.18), 0 2px 8px rgba(9,15,26,.10);
  padding: 20px 20px 16px;
}

.fv2-booking-card__label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fv2-navy);
  opacity: .45;
  margin-bottom: 14px;
}

.fv2-booking-bar {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fv2-booking-bar__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fv2-booking-bar__lbl {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fv2-navy);
  opacity: .5;
}

.fv2-booking-bar__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.fv2-booking-bar__icon {
  position: absolute;
  left: 11px;
  color: var(--fv2-navy);
  opacity: .35;
  pointer-events: none;
}

.fv2-booking-bar__date {
  width: 100%;
  padding: 10px 12px 10px 34px;
  border: 1.5px solid rgba(15,27,42,.15);
  border-radius: 8px;
  font-family: var(--fv2-font);
  font-size: .85rem;
  color: var(--fv2-navy);
  background: #f8f9fb;
  transition: border-color .2s;
  -webkit-appearance: none;
  min-height: 44px;
}
.fv2-booking-bar__date:focus {
  outline: none;
  border-color: var(--fv2-gold);
  background: #fff;
}
.fv2-booking-bar__date::-webkit-calendar-picker-indicator {
  opacity: .3;
  cursor: pointer;
}

.fv2-booking-bar__sep {
  display: none; /* alleen zichtbaar op desktop */
  color: var(--fv2-navy);
  opacity: .25;
  font-size: .9rem;
  align-self: flex-end;
  padding-bottom: 10px;
}

/* Personen stepper */
.fv2-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  background: #f8f9fb;
  border: 1.5px solid rgba(15,27,42,.15);
  border-radius: 8px;
  overflow: hidden;
  min-height: 44px;
}
.fv2-stepper__btn {
  width: 40px;
  height: 44px;
  border: none;
  background: transparent;
  color: var(--fv2-navy);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s;
  flex-shrink: 0;
}
.fv2-stepper__btn:hover   { background: rgba(15,27,42,.07); }
.fv2-stepper__btn:disabled{ opacity: .3; cursor: default; }
.fv2-stepper__btn:focus-visible {
  outline: 2px solid var(--fv2-gold);
  outline-offset: -2px;
}
.fv2-stepper__display {
  flex: 1;
  text-align: center;
  font-size: .9rem;
  font-weight: 700;
  color: var(--fv2-navy);
  user-select: none;
}

/* Submit knop */
.fv2-booking-bar__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  background: var(--fv2-green);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--fv2-font);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .02em;
  cursor: pointer;
  transition: background .2s, transform .1s;
  min-height: 50px;
}
.fv2-booking-bar__submit:hover { background: var(--fv2-green-hov); }
.fv2-booking-bar__submit:active { transform: scale(.99); }
.fv2-booking-bar__submit:focus-visible {
  outline: 2px solid var(--fv2-gold);
  outline-offset: 3px;
}

.fv2-booking-card__micro {
  font-size: .68rem;
  color: var(--fv2-navy);
  opacity: .4;
  text-align: center;
  margin: 10px 0 0;
  letter-spacing: .01em;
}

/* ── Desktop: horizontale bar die over hero zweeft ── */
@media (min-width: 992px) {
  .fv2-booking-bridge { margin-top: -56px; }

  .fv2-booking-card {
    padding: 20px 28px 16px;
  }

  .fv2-booking-bar {
    flex-direction: row;
    align-items: flex-end;
    gap: 8px;
  }

  .fv2-booking-bar__field {
    flex: 1;
    min-width: 0;
  }

  .fv2-booking-bar__field--persons { max-width: 160px; }

  .fv2-booking-bar__sep {
    display: flex;
    flex-shrink: 0;
    align-self: flex-end;
    padding-bottom: 12px;
  }

  .fv2-booking-bar__submit {
    flex-shrink: 0;
    width: auto;
    padding: 11px 24px;
    align-self: flex-end;
    white-space: nowrap;
  }

  .fv2-booking-card__micro { text-align: left; }

  @media (prefers-reduced-motion: no-preference) {
    .fv2-booking-bridge { animation: fv2FadeUp .7s ease .75s both; }
  }
}

/* ── Tablet tussenmaat ── */
@media (min-width: 576px) and (max-width: 991px) {
  .fv2-booking-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .fv2-booking-bar__sep { display: none; }
  .fv2-booking-bar__field--persons { grid-column: 1 / -1; }
  .fv2-booking-bar__submit { grid-column: 1 / -1; }
}

/* ══════════════════════════════════════════════
   2. TRUST BAR
   ══════════════════════════════════════════════ */

.fv2-trustbar {
  background: #0c1220; /* fv2-additions wint */
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 14px 0;
}
/* Ruimte voor de zwevende booking bridge op desktop */
@media (min-width: 992px) {
  .fv2-trustbar { padding-top: 72px; }
}
.fv2-trustbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.fv2-trustbar__item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.72);
  white-space: nowrap;
}
.fv2-trustbar__item svg { color: var(--fv2-gold); flex-shrink: 0; } /* fv2-additions wint */
.fv2-trustbar__sep {
  width: 1px;
  height: 14px;
  background: rgba(197,165,109,.25); /* fv2-additions wint */
  flex-shrink: 0;
}
@media(max-width:480px){
  .fv2-trustbar__sep { display: none; }
  .fv2-trustbar__item { font-size: .65rem; }
}

/* ══════════════════════════════════════════════
   3. STATISTIEKEN SECTIE (fv2-additions)
   ══════════════════════════════════════════════ */

.fv2-stats {
  background: var(--fv2-ivory);
  padding: 56px 0;
  border-bottom: 1px solid rgba(197,165,109,.2);
}
.fv2-stat {
  padding: 16px 24px;
  text-align: center;
  position: relative;
}
.fv2-stat--border::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(197,165,109,.3);
}
@media(max-width:575px){
  .fv2-stat--border::before {
    left: 20%;
    top: 0;
    width: 60%;
    height: 1px;
  }
}
.fv2-stat__number {
  display: block;
  font-family: var(--fv2-serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--fv2-navy);
  line-height: 1;
  letter-spacing: -.02em;
}
.fv2-stat__label {
  display: block;
  margin-top: 8px;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fv2-gold);
}

/* ══════════════════════════════════════════════
   4. BARRIÈRE / FEARBUSTERS
   fv2-additions wint voor kleuren (goud ipv groen)
   ══════════════════════════════════════════════ */

.fv2-barrier { background: var(--fv2-ivory); } /* fv2-additions wint */
.fv2-barrier__lead {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--fv2-text-muted);
  font-style: italic;
  margin-bottom: 8px;
}
.fv2-barrier__answer {
  font-family: var(--fv2-serif);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--fv2-navy);
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.3;
}
.fv2-barrier__answer span { color: var(--fv2-gold); } /* fv2-additions wint */

.fv2-fearbusters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.fv2-fearbuster {
  background: var(--fv2-cream);
  border: 1px solid rgba(197,165,109,.2);
  border-top: 2px solid var(--fv2-gold); /* fv2-additions wint */
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
}
@media(hover:hover){
  .fv2-fearbuster:hover {
    box-shadow: 0 8px 32px rgba(12,26,46,.1);
    transform: translateY(-2px);
  }
}
.fv2-fearbuster__icon {
  width: 40px;
  height: 40px;
  background: rgba(197,165,109,.12); /* fv2-additions wint */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--fv2-gold); /* fv2-additions wint */
}
.fv2-fearbuster__title {
  font-weight: 800;
  font-size: 1rem;
  margin: 0 0 8px;
  color: var(--fv2-navy);
}
.fv2-fearbuster__text {
  font-size: .85rem;
  color: var(--fv2-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ══════════════════════════════════════════════
   5. ZOEKFORMULIER SECTIE
   ══════════════════════════════════════════════ */

.fv2-search-section {
  background: var(--fv2-navy);
  padding: 64px 0;
}
.fv2-search-section .fv2-section__title { color: #fff; }

/* ══════════════════════════════════════════════
   6. VLOOT / FLEET KAARTEN
   fv2-additions wint voor kleuren en hover
   ══════════════════════════════════════════════ */

.fv2-fleet__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
  background: transparent;
}
@media(min-width:1200px){
  .fv2-fleet__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}
.fv2-fleet__cta {
  text-align: center;
  margin-top: 40px;
}

.fv2-yacht-card {
  background: var(--fv2-cream);
  border: 1px solid rgba(197,165,109,.2);
  box-shadow: 0 2px 16px rgba(12,26,46,.07);
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
@media(hover:hover){
  .fv2-yacht-card:hover {
    box-shadow: 0 12px 48px rgba(12,26,46,.14);
    transform: translateY(-4px);
  }
}

.fv2-yacht-card__img {
  position: relative;
  overflow: hidden;
  height: 260px; /* fv2-additions wint */
}
.fv2-yacht-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
@media(hover:hover){
  .fv2-yacht-card:hover .fv2-yacht-card__img img { transform: scale(1.05); }
}
.fv2-yacht-card__img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, var(--fv2-navy-mid), var(--fv2-navy));
}

/* Badge — navy + goud (fv2-additions wint) */
.fv2-yacht-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(12,26,46,.75);
  color: var(--fv2-gold);
  border: 1px solid rgba(197,165,109,.4);
  backdrop-filter: blur(4px);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 9px;
}

.fv2-yacht-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fv2-yacht-card__name {
  font-family: var(--fv2-serif);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
}
.fv2-yacht-card__name a { color: var(--fv2-navy); }
.fv2-yacht-card__name a:hover { color: var(--fv2-gold); } /* fv2-additions */
.fv2-yacht-card__meta {
  font-size: .68rem;
  color: var(--fv2-gold);
  font-weight: 600;
  letter-spacing: .08em;
}

.fv2-yacht-card__specs {
  display: flex;
  gap: 0;
  border: 1px solid rgba(197,165,109,.2);
}
.fv2-yacht-card__spec {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 4px;
  border-right: 1px solid rgba(197,165,109,.2);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--fv2-text-muted);
}
.fv2-yacht-card__spec:last-child { border-right: none; }
.fv2-yacht-card__spec strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--fv2-navy);
  display: block;
  margin-bottom: 2px;
}

.fv2-yacht-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(197,165,109,.2);
  margin-top: auto;
  gap: 10px;
}
.fv2-yacht-card__price-label {
  font-size: .62rem;
  color: var(--fv2-text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  display: block;
  margin-bottom: 2px;
}
.fv2-yacht-card__price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--fv2-navy);
  line-height: 1;
}

/* ══════════════════════════════════════════════
   7. FRIESLAND BELEVENIS / EXPERIENCE
   ══════════════════════════════════════════════ */

.fv2-experience { background: var(--fv2-navy); color: #fff; }
.fv2-experience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 40px;
}
@media(max-width:640px){
  .fv2-experience__grid { grid-template-columns: 1fr; }
  .fv2-experience__photo--large { grid-row: auto; }
}
.fv2-experience__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.fv2-experience__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.fv2-experience__photo:hover img { transform: scale(1.04); }
.fv2-experience__photo--large { grid-row: span 2; }
/* Caption — rijkere overlay (fv2-additions wint) */
.fv2-experience__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(10,18,30,.85));
  padding: 20px 16px 14px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
}

/* Route pills — goud (fv2-additions wint) */
.fv2-routes {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.fv2-route-pill {
  border: 1px solid rgba(197,165,109,.2);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background .15s, border-color .15s;
  cursor: pointer;
}
.fv2-route-pill:hover {
  background: rgba(197,165,109,.08);
  border-color: rgba(197,165,109,.4);
}
.fv2-route-pill__icon  { color: var(--fv2-gold); flex-shrink: 0; }
.fv2-route-pill__name  { font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.9); }
.fv2-route-pill__days  { font-size: .68rem; color: var(--fv2-gold); letter-spacing: .06em; }

/* ══════════════════════════════════════════════
   8. REVIEWS / SOCIAL PROOF
   fv2-additions wint voor kleuren
   ══════════════════════════════════════════════ */

.fv2-proof { background: var(--fv2-ivory); } /* fv2-additions wint */
.fv2-rating-big {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.fv2-rating-big__score {
  font-family: var(--fv2-serif);
  font-size: 4rem;
  font-weight: 700;
  color: var(--fv2-navy);
  line-height: 1;
}
.fv2-rating-big__stars { color: var(--fv2-gold); font-size: 1.3rem; letter-spacing: 2px; } /* fv2-additions wint */
.fv2-rating-big__label { font-size: .8rem; color: var(--fv2-text-muted); }

.fv2-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.fv2-review {
  background: var(--fv2-cream);
  border: 1px solid rgba(197,165,109,.2);
  border-left: 2px solid var(--fv2-gold); /* fv2-additions wint */
  padding: 24px;
}
/* Grote aanhalingstekens (fv2-additions) */
.fv2-review::before {
  content: '\201C';
  font-family: var(--fv2-serif);
  font-size: 4rem;
  color: var(--fv2-gold);
  opacity: .25;
  line-height: .6;
  display: block;
  margin-bottom: 8px;
}
.fv2-review__text {
  font-size: .9rem;
  line-height: 1.65;
  color: var(--fv2-text); /* fv2-additions: niet italic */
  margin: 0 0 16px;
}
.fv2-review__author {
  font-size: .78rem;
  font-weight: 800;
  color: var(--fv2-navy);
  letter-spacing: .04em;
}
.fv2-review__date { font-size: .7rem; color: rgba(15,27,42,.4); }
.fv2-review__stars {
  color: var(--fv2-gold);
  font-size: .85rem;
  letter-spacing: 1px;
  flex-shrink: 0;
}

/* Trust badges (fv2-additions) */
.fv2-trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--fv2-border);
}
.fv2-trust-badges__sep {
  width: 1px; height: 18px;
  background: var(--fv2-border);
  flex-shrink: 0;
}
.fv2-trust-badges__item {
  font-size: .72rem;
  font-weight: 800;
  color: rgba(15,27,42,.45);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════
   9. LAST MINUTE
   ══════════════════════════════════════════════ */

.fv2-lastminute { background: var(--fv2-navy); color: #fff; }
.fv2-lastminute .fv2-section__title { color: #fff; }
.fv2-lastminute .fv2-section__sub   { color: rgba(255,255,255,.6); }
.fv2-lastminute__empty {
  text-align: center;
  padding: 32px 0 16px;
  color: rgba(255,255,255,.55);
  font-size: .95rem;
}

/* ══════════════════════════════════════════════
   10. LEAD CAPTURE FORMULIER
   fv2-additions wint voor achtergrond + stijl
   ══════════════════════════════════════════════ */

/* ══════════════════════════════════════════════
   ADVIES SECTIE — vaaradviseur kaart
   ══════════════════════════════════════════════ */

.fv2-advies { padding: 80px 0; }

.fv2-advies__grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 767px) {
  .fv2-advies__grid { grid-template-columns: 1fr; gap: 32px; }
  .fv2-advies__photo-col { display: flex; justify-content: center; }
}

.fv2-advies__photo-wrap {
  position: relative;
  display: inline-block;
}
.fv2-advies__photo {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 8px;
  display: block;
  box-shadow: -4px 3px 0 rgba(0,0,0,.12);
}
.fv2-advies__badge {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--fv2-navy);
  color: var(--fv2-gold);
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}

.fv2-advies__heading {
  font-family: var(--fv2-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--fv2-navy);
  margin: 8px 0 16px;
  line-height: 1.2;
}
.fv2-advies__intro {
  font-size: .95rem;
  color: var(--fv2-text-muted);
  line-height: 1.65;
  margin: 0 0 20px;
  max-width: 520px;
}
.fv2-advies__trust {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fv2-advies__trust li {
  font-size: .85rem;
  color: var(--fv2-navy);
  padding-left: 20px;
  position: relative;
}
.fv2-advies__trust li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--fv2-green);
  font-weight: 700;
}

.fv2-advies__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.fv2-advies__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  border-radius: 5px;
  font-family: var(--fv2-font);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .3s ease;
  min-height: 44px;
}
.fv2-advies__btn--primary {
  background: var(--fv2-green);
  color: #fff;
}
.fv2-advies__btn--primary:hover { background: var(--fv2-green-hov); color: #fff; }

.fv2-advies__btn--whatsapp {
  background: #25d366;
  color: #fff;
}
.fv2-advies__btn--whatsapp:hover { background: #1ebe5d; color: #fff; }

.fv2-advies__btn--secondary {
  background: transparent;
  color: var(--fv2-navy);
  border: 1.5px solid rgba(26,46,74,.2);
}
.fv2-advies__btn--secondary:hover {
  border-color: var(--fv2-navy);
  background: rgba(26,46,74,.05);
}

.fv2-advies__hours {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
  color: var(--fv2-text-muted);
  margin: 0;
}
.fv2-advies__hours svg { flex-shrink: 0; }

/* ══════════════════════════════════════════════ */

.fv2-lead {
  background: #0a1220; /* fv2-additions wint */
  border-top: 1px solid rgba(255,255,255,.08);
}
.fv2-lead__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.fv2-lead__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  text-align: left;
}
.fv2-lead__input {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(197,165,109,.25);
  color: #fff;
  padding: 13px 16px;
  font-family: var(--fv2-font);
  font-size: .9rem;
  width: 100%;
  outline: none;
  transition: border-color .15s;
  border-radius: 0;
}
.fv2-lead__input:focus { border-color: var(--fv2-gold); }
.fv2-lead__input::placeholder { color: rgba(255,255,255,.3); }
.fv2-lead textarea.fv2-lead__input { resize: vertical; min-height: 90px; }
.fv2-lead__submit {
  background: var(--fv2-green);
  color: #fff;
  border: none;
  padding: 14px;
  font-family: var(--fv2-font);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .15s;
  width: 100%;
}
.fv2-lead__submit:hover { background: var(--fv2-green-hov); }
.fv2-lead__privacy {
  font-size: .7rem;
  color: rgba(255,255,255,.35);
  text-align: center;
  margin-top: 8px;
}
.fv2-lead__status {
  min-height: 1.4em;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  text-align: center;
  margin-top: 8px;
}

/* ══════════════════════════════════════════════
   11. STICKY BAR (scroll header)
   ══════════════════════════════════════════════ */

.fv2-sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--fv2-navy);
  border-bottom: 3px solid var(--fv2-red);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
  transform: translateY(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  padding: 10px 0;
}
.fv2-sticky-bar.visible { transform: translateY(0); }
.fv2-sticky-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.fv2-sticky-bar__logo img { height: 40px; }
.fv2-sticky-bar__tagline {
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  font-weight: 600;
  display: none;
}
@media(min-width:640px){ .fv2-sticky-bar__tagline { display: block; } }

/* ══════════════════════════════════════════════
   12. RESPONSIVE
   ══════════════════════════════════════════════ */

@media(max-width:767px){
  .fv2-section          { padding: 48px 0; }
  .fv2-hero__content    { padding-top: 80px; padding-bottom: 64px; }
  .fv2-hero__actions    { flex-direction: column; align-items: flex-start; }
  .fv2-hero__search     { padding: 16px; margin-top: 32px; }
  .fv2-fleet__grid      { grid-template-columns: 1fr; }
  .fv2-fearbusters      { grid-template-columns: 1fr; }
  .fv2-experience__grid { grid-template-columns: 1fr; }
  .fv2-reviews-grid     { grid-template-columns: 1fr; }
  .fv2-routes           { grid-template-columns: 1fr; }
  .fv2-stat             { padding: 16px; }
  .fv2-stat + .fv2-stat { border-left: none; border-top: 1px solid rgba(197,165,109,.2); }
}

/* ══════════════════════════════════════════════
   13. TOEGANKELIJKHEID
   ══════════════════════════════════════════════ */

@media(prefers-reduced-motion: reduce) {
  .fv2-hero__scroll,
  .fv2-yacht-card,
  .fv2-fearbuster,
  .fv2-btn, .fv2-btn-primary, .fv2-btn-outline, .fv2-btn-sm,
  .fv2-yacht-card__img img,
  .fv2-experience__photo img,
  .fv2-route-pill { transition: none !important; animation: none !important; transform: none !important; }
}

/* ══════════════════════════════════════════════
   BACK-TO-TOP KNOP
   ══════════════════════════════════════════════ */
.hwyc-back-top {
  position: fixed;
  bottom: 88px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-blue-dark, #1a2e4a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 4px 12px rgba(15,27,42,.25);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .2s, transform .2s, background .2s;
  pointer-events: none;
  z-index: 900;
}
.hwyc-back-top.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.hwyc-back-top:hover { background: var(--brand-red, #b70c12); }

@media (min-width: 992px) {
  .hwyc-back-top { bottom: 24px; }
}

/* Cookie consent LCP-fix: verborgen tijdens window.load (klasse wordt na 1,5s verwijderd)
   footer-cco.php's eigen inline style (hideBanner/showBanner) neemt daarna het over */
.fv2-cookie-pending #hwyc-cookie-consent {
  display: none !important;
}
