/* ============================================================
   Triptiq Sailing — Homepage sketch
   Custom build for TimeFuser. No frameworks.
   ============================================================ */

:root {
  /* Palette */
  --navy:        #123A5C;
  --navy-deep:   #0C2942;
  --navy-soft:   #1E5A87;
  --teal:        #2277A8;
  --teal-light:  #4AA3CE;
  --coral:       #EC5E3C;
  --coral-dark:  #cf4d2c;
  --gold:        #C8912E;
  --sand:        #E3EDF5;
  --cream:       #F1F7FB;
  --ink:         #102A3D;
  --ink-soft:    #3B5A6E;
  --line:        rgba(18,58,92,.14);
  --white:       #ffffff;

  /* Type */
  --display: 'Fraunces', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 4px 18px rgba(6,26,40,.08);
  --shadow-md: 0 18px 50px rgba(6,26,40,.16);
  --shadow-lg: 0 30px 80px rgba(6,26,40,.22);
  --ease: cubic-bezier(.4,.01,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
select, input { font-family: inherit; font-size: 1rem; }

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

/* ---------- Typography ---------- */
.section__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--navy);
}
.eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .9rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 600; font-size: .98rem;
  padding: .9rem 1.6rem; border-radius: 100px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn--sm { padding: .62rem 1.15rem; font-size: .9rem; }
.btn--lg { padding: 1.05rem 2.1rem; font-size: 1.05rem; }
.btn--primary { background: var(--coral); color: #fff; box-shadow: 0 8px 22px rgba(237,106,74,.35); }
.btn--primary:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(237,106,74,.45); }
.btn--ghost { border: 1.5px solid var(--line); color: var(--navy); }
.btn--ghost:hover { border-color: var(--navy); background: var(--navy); color: #fff; }
.btn--ghost-light { border: 1.5px solid rgba(255,255,255,.5); color: #fff; }
.btn--ghost-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  padding: 1.1rem 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.scrolled {
  background: rgba(251,248,242,.92);
  backdrop-filter: blur(12px);
  padding: .65rem 0;
  box-shadow: 0 2px 20px rgba(6,26,40,.08);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.brand { display: inline-flex; align-items: center; gap: .55rem; color: #fff; transition: color .4s var(--ease); }
.scrolled .brand { color: var(--navy); }
.brand__mark { display: grid; place-items: center; color: var(--coral); }
.brand__text { font-family: var(--display); font-weight: 600; font-size: 1.4rem; line-height: 1; letter-spacing: -.01em; }
.brand__sub { font-family: var(--sans); font-weight: 600; font-size: .58rem; letter-spacing: .35em; display: block; opacity: .7; margin-top: 2px; }
.brand--light { color: #fff; }

.nav { display: flex; gap: 2rem; }
.nav a {
  position: relative; font-weight: 500; font-size: .98rem; color: rgba(255,255,255,.92);
  transition: color .3s var(--ease);
}
.scrolled .nav a { color: var(--ink); }
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--coral); transition: width .3s var(--ease);
}
.nav a:hover { color: var(--coral); }
.nav a:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 1rem; }
.lang { display: flex; gap: 2px; padding: 3px; border-radius: 100px; background: rgba(255,255,255,.16); }
.scrolled .lang { background: rgba(17,39,51,.07); }
.lang__btn { font-size: .78rem; font-weight: 600; color: #fff; padding: .25rem .6rem; border-radius: 100px; transition: .25s var(--ease); }
.scrolled .lang__btn { color: var(--ink-soft); }
.lang__btn.is-active { background: #fff; color: var(--navy); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s var(--ease); }
.scrolled .nav-toggle span { background: var(--navy); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding: 7rem 0 4rem; overflow: hidden; color: #fff;
}
.hero__media {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,26,40,.2), rgba(6,26,40,.5)),
    url('https://images.unsplash.com/photo-1540946485063-a40da27545f8?auto=format&fit=crop&w=2000&q=80') center 50%/cover no-repeat,
    var(--navy-deep);
  transform: scale(1.06);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(6,26,40,.78) 0%, rgba(6,26,40,.45) 45%, rgba(6,26,40,.15) 100%);
}
.hero__content { position: relative; z-index: 2; max-width: 760px; }
.hero__eyebrow {
  font-size: .8rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.4rem;
}
.hero__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2.8rem, 7vw, 5.4rem); line-height: 1.02; letter-spacing: -.02em;
  margin-bottom: 1.4rem;
}
.hero__title em { font-style: italic; color: var(--gold); }
.hero__lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); max-width: 560px; color: rgba(255,255,255,.9); margin-bottom: 2.2rem; }

/* Searchbar */
.searchbar {
  display: flex; align-items: flex-end; gap: .5rem;
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  padding: .7rem; border-radius: var(--radius); box-shadow: var(--shadow-md);
  max-width: 820px;
}
.searchbar__field { flex: 1; display: flex; flex-direction: column; gap: .35rem; padding: .35rem .9rem; border-right: 1px solid var(--line); min-width: 0; }
.searchbar__field:last-of-type { border-right: none; }
.searchbar__field label { font-size: .72rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); }
.searchbar__field select, .searchbar__field input {
  border: none; background: none; color: var(--navy); font-weight: 600; padding: .15rem 0; width: 100%; outline: none; cursor: pointer;
}
.searchbar__submit { align-self: stretch; padding-inline: 1.5rem; }

.hero__trust { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; margin-top: 1.8rem; font-size: .92rem; color: rgba(255,255,255,.85); }
.hero__trust strong { color: #fff; }
.hero__trust .dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.4); }

.hero__scroll { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.5); border-radius: 100px; z-index: 2; }
.hero__scroll span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; border-radius: 4px; background: #fff; transform: translateX(-50%); animation: scrollDot 1.8s var(--ease) infinite; }
@keyframes scrollDot { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 80%{opacity:0;transform:translate(-50%,14px)} 100%{opacity:0} }

/* ============================================================
   SECTIONS shared
   ============================================================ */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section__head { max-width: 640px; margin-bottom: 3rem; }
.section__head--row { display: flex; align-items: flex-end; justify-content: space-between; max-width: none; gap: 2rem; flex-wrap: wrap; }
.section__intro { font-size: 1.1rem; color: var(--ink-soft); margin-top: .8rem; }
.link-arrow { font-weight: 600; color: var(--teal); white-space: nowrap; transition: gap .25s; }
.link-arrow:hover { color: var(--coral); }

/* ============================================================
   PRODUCTS
   ============================================================ */
.products { background: var(--cream); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.product-card {
  position: relative; min-height: 340px; border-radius: var(--radius); overflow: hidden;
  display: flex; align-items: flex-end; color: #fff; isolation: isolate;
  box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.product-card::before {
  content: ''; position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center;
  transition: transform .7s var(--ease);
}
.product-card::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(6,26,40,0) 25%, rgba(6,26,40,.4) 55%, rgba(6,26,40,.9) 100%);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-card:hover::before { transform: scale(1.08); }

.product-card[data-img="bareboat"]::before  { background-image: url('https://images.unsplash.com/photo-1500627964684-141351970a7f?auto=format&fit=crop&w=900&q=80'); }
.product-card[data-img="flotilla"]::before  { background-image: url('https://images.unsplash.com/photo-1534008897995-27a23e859048?auto=format&fit=crop&w=900&q=80'); }
.product-card[data-img="skippered"]::before { background-image: url('https://images.unsplash.com/photo-1567899378494-47b22a2ae96a?auto=format&fit=crop&w=900&q=80'); }
.product-card[data-img="course"]::before    { background-image: url('https://images.unsplash.com/photo-1493558103817-58b2924bce98?auto=format&fit=crop&w=900&q=80'); }
.product-card[data-img="cabin"]::before      { background-image: url('https://images.unsplash.com/photo-1505881502353-a1986add3762?auto=format&fit=crop&w=900&q=80'); }

.product-card__body { padding: 1.6rem; }
.product-card__body h3 { font-family: var(--display); font-weight: 500; font-size: 1.6rem; margin-bottom: .15rem; }
.product-card__tag { font-size: .85rem; font-weight: 600; color: var(--gold); letter-spacing: .02em; margin-bottom: .6rem; }
.product-card__body p { font-size: .95rem; color: rgba(255,255,255,.85); max-height: 0; opacity: 0; overflow: hidden; transition: max-height .45s var(--ease), opacity .35s var(--ease), margin .35s var(--ease); }
.product-card:hover .product-card__body p { max-height: 120px; opacity: 1; margin-bottom: .8rem; }
.product-card__cta { font-size: .9rem; font-weight: 600; color: #fff; opacity: .9; }
.product-card:hover .product-card__cta { color: var(--gold); }

.product-card__badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 1;
  background: var(--coral); color: #fff; font-size: .72rem; font-weight: 700;
  letter-spacing: .04em; padding: .35rem .7rem; border-radius: 100px;
}

.product-card--help {
  background: linear-gradient(150deg, var(--navy), var(--navy-soft)); color: #fff; min-height: 340px;
  align-items: center; text-align: center;
}
.product-card--help::before, .product-card--help::after { display: none; }
.product-card--help h3 { font-family: var(--display); font-size: 1.5rem; margin-bottom: .6rem; }
.product-card--help p { color: rgba(255,255,255,.82); margin-bottom: 1.3rem; font-size: .98rem; }

/* ============================================================
   DESTINATIONS / MAP
   ============================================================ */
.destinations { background: linear-gradient(180deg, var(--cream), var(--sand)); }
.map-panel { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md); overflow: hidden; }
.map-tabs { display: flex; gap: .4rem; padding: 1rem 1rem 0; flex-wrap: wrap; }
.map-tab {
  font-weight: 600; font-size: .95rem; color: var(--ink-soft);
  padding: .6rem 1.2rem; border-radius: 100px; transition: .25s var(--ease);
}
.map-tab:hover { color: var(--navy); background: var(--sand); }
.map-tab.is-active { background: var(--navy); color: #fff; }
.map { height: 520px; width: 100%; background: #aadaff; }
.map-hint { padding: .85rem 1.2rem; font-size: .85rem; color: var(--ink-soft); text-align: center; border-top: 1px solid var(--line); }

/* Leaflet popup theming */
.leaflet-popup-content-wrapper { border-radius: 14px; box-shadow: var(--shadow-md); }
.leaflet-popup-content { margin: .9rem 1.1rem; font-family: var(--sans); }
.map-pop__type { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); }
.map-pop__title { font-family: var(--display); font-size: 1.2rem; font-weight: 600; color: var(--navy); margin: .1rem 0 .35rem; }
.map-pop__txt { font-size: .9rem; color: var(--ink-soft); margin-bottom: .6rem; }
.map-pop__link { font-weight: 700; color: var(--coral); font-size: .9rem; }

/* ============================================================
   FEATURED TRIPS
   ============================================================ */
.featured { background: var(--cream); }
.featured-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; gap: 1.4rem; }
.trip-card {
  position: relative; border-radius: var(--radius); overflow: hidden; isolation: isolate;
  display: flex; align-items: flex-end; color: #fff; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.trip-card--lg { grid-row: span 2; grid-column: span 2; }
.trip-card::before {
  content: ''; position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; transition: transform .7s var(--ease);
}
.trip-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.trip-card:hover::before { transform: scale(1.08); }
.trip-card__overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(6,26,40,0) 35%, rgba(6,26,40,.85) 100%); }
.trip-card[data-img="thailand"]::before  { background-image: url('https://images.unsplash.com/photo-1552465011-b4e21bf6e79a?auto=format&fit=crop&w=1100&q=80'); }
.trip-card[data-img="croatia"]::before   { background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=700&q=80'); }
.trip-card[data-img="greece"]::before    { background-image: url('https://images.unsplash.com/photo-1533105079780-92b9be482077?auto=format&fit=crop&w=700&q=80'); }
.trip-card[data-img="caribbean"]::before { background-image: url('https://images.unsplash.com/photo-1559128010-7c1ad6e1b6a5?auto=format&fit=crop&w=700&q=80'); }
.trip-card__content { padding: 1.5rem; width: 100%; }
.trip-card__type { font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); }
.trip-card__content h3 { font-family: var(--display); font-weight: 500; font-size: 1.5rem; margin: .3rem 0; }
.trip-card--lg .trip-card__content h3 { font-size: 2rem; }
.trip-card__content > p { font-size: .95rem; color: rgba(255,255,255,.85); margin-bottom: .7rem; max-width: 380px; }
.trip-card__meta { display: flex; gap: 1.2rem; font-size: .9rem; font-weight: 600; }
.trip-card__meta span:last-child { color: var(--gold); }

/* ============================================================
   EXPERIENCE / STATS
   ============================================================ */
.experience { background: var(--navy); color: #fff; }
.experience .section__title, .experience .eyebrow { color: #fff; }
.experience .eyebrow { color: var(--gold); }
.experience__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 4rem; align-items: center; }
.experience__text p { color: rgba(255,255,255,.82); margin: 1.1rem 0; font-size: 1.05rem; }
.experience__text .btn { margin-top: 1rem; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.stat {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 1.8rem 1.5rem; text-align: center;
}
.stat__num { font-family: var(--display); font-weight: 500; font-size: clamp(2.2rem, 4vw, 3rem); color: var(--gold); display: block; line-height: 1; }
.stat__label { font-size: .92rem; color: rgba(255,255,255,.75); margin-top: .5rem; display: block; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--cream); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review { background: #fff; border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.review__stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 1rem; }
.review p { font-family: var(--display); font-size: 1.15rem; font-style: italic; color: var(--navy); line-height: 1.45; margin-bottom: 1.2rem; }
.review footer { font-size: .9rem; font-weight: 600; color: var(--ink-soft); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; padding: clamp(4rem, 8vw, 6.5rem) 0; color: #fff; text-align: center; overflow: hidden; }
.cta-band__media {
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(6,26,40,.7), rgba(6,26,40,.7)),
    url('https://images.unsplash.com/photo-1514282401047-d79a71a590e8?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat,
    var(--navy);
}
.cta-band__inner { position: relative; max-width: 640px; margin-inline: auto; }
.cta-band h2 { font-family: var(--display); font-weight: 500; font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 1rem; }
.cta-band p { font-size: 1.15rem; color: rgba(255,255,255,.9); margin-bottom: 2rem; }
.cta-band__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { position: relative; overflow: hidden; background: var(--navy-deep); color: rgba(255,255,255,.75); padding-top: clamp(4.5rem, 7vw, 6rem); }
.footer__waves { position: absolute; top: 0; left: 0; right: 0; height: clamp(40px, 5vw, 58px); z-index: 0; pointer-events: none; }
.footer__waves svg { width: 100%; height: 100%; display: block; }
.footer__waves path { fill: none; stroke-width: 1.4px; vector-effect: non-scaling-stroke; }
.footer__waves path:nth-child(1) { stroke: rgba(255,255,255,.16); }
.footer__waves path:nth-child(2) { stroke: rgba(58,167,194,.32); }
.footer__waves path:nth-child(3) { stroke: rgba(255,255,255,.08); }
.footer__watermark {
  position: absolute; right: -3%; bottom: -14%; z-index: 0; pointer-events: none;
  width: min(440px, 46%); color: #fff; opacity: .05; line-height: 0;
  transform: rotate(-8deg); transform-origin: bottom right;
}
.footer__watermark svg { width: 100%; height: auto; display: block; }
.footer .container { position: relative; z-index: 1; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer__tag { margin: 1.1rem 0 1.3rem; font-size: .95rem; max-width: 280px; }
.footer__social { display: flex; gap: .6rem; }
.footer__social a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.08); font-size: .8rem; font-weight: 700; color: #fff; transition: .25s var(--ease); }
.footer__social a:hover { background: var(--coral); }
.footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 1.1rem; font-weight: 600; }
.footer__col a { display: block; padding: .35rem 0; font-size: .95rem; transition: color .2s; }
.footer__col a:hover { color: var(--gold); }
.footer__contact p { font-size: .9rem; margin: .5rem 0 1.2rem; }
.newsletter label { font-size: .85rem; display: block; margin-bottom: .5rem; }
.newsletter__row { display: flex; gap: .5rem; }
.newsletter input { flex: 1; padding: .65rem .9rem; border-radius: 100px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); color: #fff; outline: none; }
.newsletter input::placeholder { color: rgba(255,255,255,.5); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,.1); font-size: .88rem; flex-wrap: wrap; gap: 1rem; }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a:hover { color: #fff; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .trip-card--lg { grid-column: span 2; }
  .experience__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav, .header__actions .btn, .lang { display: none; }
  .nav-toggle { display: flex; }
  .nav.is-open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); padding: 1rem 1.25rem; box-shadow: var(--shadow-md);
  }
  .nav.is-open a { color: var(--ink); padding: .9rem 0; border-bottom: 1px solid var(--line); }
  .searchbar { flex-direction: column; align-items: stretch; }
  .searchbar__field { border-right: none; border-bottom: 1px solid var(--line); }
  .searchbar__submit { width: 100%; padding: 1rem; }
  .product-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .trip-card--lg { grid-column: span 1; grid-row: span 1; }
  .review-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .section__head--row { align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   DE-AI REDESIGN (overrides) — real content, denser, less generic
   Loaded last so these rules win.
   ============================================================ */

/* Tighter vertical rhythm everywhere */
.section { padding: clamp(2.75rem, 5vw, 4.5rem) 0; }
.section__head { margin-bottom: clamp(1.6rem, 3vw, 2.2rem); max-width: 680px; }
.section__title { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }

/* ---------- Topbar ---------- */
.topbar { background: var(--navy-deep); color: rgba(255,255,255,.78); font-size: .85rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 40px; gap: 1rem; }
.topbar__left { display: flex; align-items: center; gap: 1.3rem; }
.topbar__phone { display: inline-flex; align-items: center; gap: .45rem; color: #fff; font-weight: 700; }
.topbar__phone:hover { color: var(--gold); }
.topbar__note { color: rgba(255,255,255,.6); }
.topbar__right { display: flex; align-items: center; gap: .7rem; }
.topbar__trust { font-size: .72rem; font-weight: 700; letter-spacing: .08em; color: #fff; border: 1px solid rgba(255,255,255,.3); border-radius: 4px; padding: .15rem .45rem; }
.topbar__link { color: var(--gold); font-weight: 600; }
.topbar__link:hover { color: #fff; }
@media (max-width: 760px) { .topbar__note, .topbar__link { display: none; } }

/* ---------- Header: solid, sticky, in-flow (no transparent overlay) ---------- */
.site-header { position: sticky; inset: 0 0 auto 0; background: #fff; border-bottom: 1px solid var(--line); box-shadow: none; padding: .55rem 0; backdrop-filter: none; }
.site-header.scrolled { background: #fff; padding: .55rem 0; box-shadow: 0 2px 14px rgba(6,26,40,.07); }
.site-header .brand, .scrolled .brand { color: var(--navy); }
.brand__text { letter-spacing: .02em; }
.site-header .nav a, .scrolled .nav a { color: var(--ink); font-size: .95rem; font-weight: 600; }
.site-header .nav a:hover { color: var(--coral); }
.nav { gap: 1.5rem; }
.scrolled .nav-toggle span, .nav-toggle span { background: var(--navy); }

/* ---------- Hero: shorter, content-forward ---------- */
.hero { min-height: auto; padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem); align-items: stretch; }
.hero__media { transform: none; animation: none; }
.hero__overlay { background: linear-gradient(100deg, rgba(6,26,40,.82) 0%, rgba(6,26,40,.55) 50%, rgba(6,26,40,.32) 100%); }
.hero__content { max-width: 880px; }
.hero__eyebrow { color: var(--gold); margin-bottom: 1rem; letter-spacing: .14em; }
.hero__title { font-size: clamp(2.1rem, 4.6vw, 3.6rem); line-height: 1.06; margin-bottom: 1rem; }
.hero__title span { color: var(--gold); font-style: italic; }
.hero__lead { font-size: clamp(1rem, 1.4vw, 1.15rem); max-width: 600px; margin-bottom: 1.6rem; }
.hero__scroll { display: none; }

/* Search wizard with product tabs */
.searchwiz { background: rgba(255,255,255,.97); border-radius: var(--radius); box-shadow: var(--shadow-md); max-width: 880px; overflow: hidden; }
.searchwiz__tabs { display: flex; gap: 0; border-bottom: 1px solid var(--line); }
.searchwiz__tab { flex: 1; padding: .85rem 1rem; font-weight: 700; font-size: .92rem; color: var(--ink-soft); border-bottom: 3px solid transparent; transition: .2s; }
.searchwiz__tab:hover { color: var(--navy); background: var(--cream); }
.searchwiz__tab.is-active { color: var(--navy); border-bottom-color: var(--coral); }
.searchwiz__bar { display: grid; grid-template-columns: 1.3fr 1fr 1fr auto; gap: .5rem; align-items: end; padding: .9rem; }
.searchwiz__field { display: flex; flex-direction: column; gap: .3rem; padding: 0 .6rem; border-right: 1px solid var(--line); }
.searchwiz__field:nth-child(3) { border-right: none; }
.searchwiz__field label { font-size: .7rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); }
.searchwiz__field select, .searchwiz__field input { border: none; background: none; color: var(--navy); font-weight: 600; padding: .25rem 0; outline: none; cursor: pointer; width: 100%; }
.searchwiz__submit { padding-inline: 1.4rem; align-self: stretch; }

/* Zoekwizard als zwevende sectie onder de hero (bootje in de hero blijft vrij) */
.searchsection { position: relative; z-index: 5; margin-bottom: clamp(1rem, 3vw, 2.5rem); }
.searchsection .searchwiz { margin: -4.5rem auto 0; }
@media (max-width: 640px) { .searchsection .searchwiz { margin-top: -2.75rem; } }

.hero__trustrow { list-style: none; display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 1.4rem; padding: 0; font-size: .9rem; color: rgba(255,255,255,.82); }
.hero__trustrow li { position: relative; padding-left: 1.4rem; }
.hero__trustrow li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.hero__trustrow strong { color: #fff; }

@media (max-width: 720px) {
  .searchwiz__bar { grid-template-columns: 1fr; }
  .searchwiz__field { border-right: none; border-bottom: 1px solid var(--line); padding-bottom: .5rem; }
  .searchwiz__tab { font-size: .82rem; padding: .7rem .3rem; }
}

/* ---------- Producten: editorial numbered rows with photo reveal ---------- */
.prodlist { border-top: 1px solid var(--line); }
.prodrow {
  position: relative; display: grid;
  grid-template-columns: auto auto 1fr auto; gap: 1.8rem; align-items: center;
  padding: 1.9rem 1.4rem; border-bottom: 1px solid var(--line);
  transition: background .35s ease, box-shadow .35s ease, transform .35s ease;
}
.prodrow::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: -1px; width: 3px;
  background: var(--coral); transform: scaleY(0); transform-origin: bottom;
  transition: transform .35s ease; border-radius: 3px;
}
.prodrow:hover { background: #fff; box-shadow: 0 18px 44px -22px rgba(11,42,63,.4); border-bottom-color: transparent; }
.prodrow:hover::before { transform: scaleY(1); }

/* big editorial index number */
.prodrow__num {
  font-family: var(--display); font-weight: 400; font-size: 2.5rem; line-height: 1;
  color: var(--line); font-feature-settings: "tnum"; min-width: 2.4ch; text-align: center;
  transition: color .35s ease;
}
.prodrow:hover .prodrow__num { color: var(--coral); }

/* photo thumbnail */
.prodrow__thumb {
  width: 116px; height: 84px; border-radius: 14px; overflow: hidden;
  box-shadow: 0 8px 20px -12px rgba(11,42,63,.5); flex-shrink: 0;
  position: relative; background: var(--sand);
}
.prodrow__img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transform: scale(1.02); transition: transform .6s cubic-bezier(.2,.7,.3,1), filter .35s ease;
  filter: saturate(.92);
}
.prodrow:hover .prodrow__img { transform: scale(1.12); filter: saturate(1.05); }

.prodrow__body h3 { font-family: var(--display); font-weight: 600; font-size: 1.7rem; color: var(--navy); display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; }
.prodrow__tag { font-family: var(--sans); font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #fff; background: var(--coral); padding: .2rem .55rem; border-radius: 100px; }
.prodrow__body p { color: var(--ink); font-size: 1.02rem; line-height: 1.55; margin: .45rem 0 .6rem; max-width: 62ch; }
.prodrow__meta { font-size: .88rem; font-weight: 700; color: var(--teal); letter-spacing: .01em; }

/* arrow chip */
.prodrow__go {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; color: var(--navy);
  border: 1px solid var(--line); background: #fff;
  transition: background .35s ease, color .35s ease, border-color .35s ease, transform .35s ease;
}
.prodrow__go svg { width: 20px; height: 20px; }
.prodrow:hover .prodrow__go { background: var(--coral); border-color: var(--coral); color: #fff; transform: translateX(4px); }

@media (max-width: 760px) {
  .prodrow { grid-template-columns: auto 1fr auto; gap: 1rem 1.1rem; padding: 1.4rem .4rem; }
  .prodrow__num { font-size: 1.7rem; min-width: auto; }
  .prodrow__thumb { display: none; }
  .prodrow__go { width: 40px; height: 40px; }
  .prodrow__go svg { width: 17px; height: 17px; }
}
@media (prefers-reduced-motion: reduce) {
  .prodrow, .prodrow__img, .prodrow__go, .prodrow__num, .prodrow::before { transition: none; }
}

/* ---------- Producten: bold immersive product cards ---------- */
.section__head--center { max-width: 720px; margin-inline: auto; text-align: center; }
.prodfeature { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.6rem; }
.pfcard {
  position: relative; display: block; min-height: 360px; border-radius: var(--radius);
  overflow: hidden; color: #fff; box-shadow: var(--shadow-md); isolation: isolate;
}
.pfcard__img {
  position: absolute; inset: 0; z-index: -2; background-image: var(--pf);
  background-size: cover; background-position: center; transform: scale(1.04);
  transition: transform .7s cubic-bezier(.2,.7,.3,1);
}
.pfcard::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(12,41,66,.12) 0%, rgba(12,41,66,.35) 45%, rgba(10,32,52,.9) 100%);
}
.pfcard:hover .pfcard__img { transform: scale(1.11); }
.pfcard__body { position: absolute; left: 0; right: 0; bottom: 0; padding: clamp(1.5rem, 2.4vw, 2.2rem); display: flex; flex-direction: column; }
.pfcard__kicker { font-family: var(--sans); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.pfcard__title { font-family: var(--display); font-weight: 600; font-size: clamp(1.9rem, 3vw, 2.5rem); line-height: 1; margin-bottom: .6rem; }
.pfcard__desc { font-size: 1rem; line-height: 1.55; color: rgba(255,255,255,.9); max-width: 46ch; margin-bottom: 1.1rem; }
.pfcard__go { display: inline-flex; align-items: center; gap: .55rem; font-weight: 700; font-size: .95rem; color: #fff; }
.pfcard__go svg { width: 20px; height: 20px; transition: transform .35s var(--ease); }
.pfcard:hover .pfcard__go svg { transform: translateX(5px); }
.pfcard__go { position: relative; }
.pfcard__go::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -3px; height: 2px; background: var(--coral); transition: right .35s var(--ease); }
.pfcard:hover .pfcard__go::after { right: 0; }
@media (max-width: 760px) {
  .prodfeature { grid-template-columns: 1fr; }
  .pfcard { min-height: 300px; }
}
@media (prefers-reduced-motion: reduce) { .pfcard__img, .pfcard__go svg, .pfcard__go::after { transition: none; } }

/* ---------- Aanbiedingen ---------- */
.aanbod { background: var(--cream); }
.aanbod__cats { display: flex; flex-wrap: wrap; gap: .4rem; }
.aanbod__cat { font-size: .85rem; font-weight: 600; color: var(--ink-soft); padding: .45rem .9rem; border-radius: 100px; border: 1px solid var(--line); }
.aanbod__cat.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }
.deal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.deal { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.deal:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.deal__media { position: relative; aspect-ratio: 16/10; background-size: cover; background-position: center; }
.deal__disc { position: absolute; top: .7rem; left: .7rem; background: var(--coral); color: #fff; font-weight: 800; font-size: .9rem; padding: .3rem .6rem; border-radius: 8px; box-shadow: var(--shadow-sm); }
.deal__type { position: absolute; top: .7rem; right: .7rem; background: rgba(255,255,255,.92); color: var(--navy); font-weight: 700; font-size: .72rem; padding: .25rem .6rem; border-radius: 100px; }
.deal__body { padding: 1.1rem 1.2rem 1.2rem; }
.deal__loc { font-size: .82rem; font-weight: 700; color: var(--teal); margin-bottom: .15rem; }
.deal__body h3 { font-family: var(--display); font-weight: 600; font-size: 1.2rem; color: var(--navy); line-height: 1.15; }
.deal__body h3 span { font-family: var(--sans); font-size: .82rem; font-weight: 600; color: var(--ink-soft); }
.deal__note { font-size: .9rem; color: var(--ink-soft); margin: .4rem 0 .9rem; }
.deal__foot { display: flex; align-items: flex-end; justify-content: space-between; gap: .5rem; }
.deal__price { font-family: var(--display); font-weight: 600; font-size: 1.3rem; color: var(--navy); display: flex; flex-direction: column; line-height: 1.1; }
.deal__price small { font-family: var(--sans); font-size: .72rem; font-weight: 600; color: var(--ink-soft); }
.deal__cta { font-weight: 700; font-size: .9rem; color: #fff; background: var(--coral); padding: .55rem 1rem; border-radius: 100px; }
.deal__cta:hover { background: var(--coral-dark); }
.aanbod__foot { margin-top: 1.6rem; font-size: .88rem; color: var(--ink-soft); }
.aanbod__foot a { color: var(--teal); font-weight: 700; }
@media (max-width: 1024px) { .deal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .deal-grid { grid-template-columns: 1fr; } .section__head--row { gap: 1rem; } }

/* ---------- Extra's / services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.svc { padding: 1.4rem 1.3rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.svc__ic { width: 44px; height: 44px; border-radius: 11px; background: rgba(30,122,140,.1); color: var(--teal); display: grid; place-items: center; }
.svc__ic svg { width: 24px; height: 24px; }
.svc h3 { font-family: var(--display); font-weight: 600; font-size: 1.12rem; color: var(--navy); margin: .8rem 0 .35rem; }
.svc p { font-size: .9rem; color: var(--ink-soft); }
@media (max-width: 860px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .svc-grid { grid-template-columns: 1fr; } }

/* ---------- Over-strip ---------- */
.overstrip { background: var(--sand); }
.overstrip__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; align-items: center; }
.overstrip__text p { color: var(--ink-soft); margin: .9rem 0; }
.overstrip__actions { display: flex; align-items: center; gap: 1.2rem; margin-top: 1.2rem; flex-wrap: wrap; }
.overstrip__phone { color: var(--ink-soft); }
.overstrip__phone strong { color: var(--navy); }
.overstrip__facts { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding: 0; }
.overstrip__facts li { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.2rem; text-align: center; }
.overstrip__facts strong { display: block; font-family: var(--display); font-weight: 600; font-size: 1.7rem; color: var(--navy); line-height: 1.05; }
.overstrip__facts span { font-size: .85rem; color: var(--ink-soft); }
@media (max-width: 860px) { .overstrip__grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ---------- Footer badges ---------- */
.footer__badges { display: flex; gap: .5rem; }
.footer__badges span { font-size: .72rem; font-weight: 700; letter-spacing: .08em; color: rgba(255,255,255,.85); border: 1px solid rgba(255,255,255,.25); border-radius: 4px; padding: .2rem .5rem; }

/* Active nav item (shared header) */
.site-header .nav a.is-active { color: var(--coral); }
.site-header .nav a.is-active::after { width: 100%; }

/* SVG icons inside emoji-sized containers (offerte options, values, prodcards) */
.opt-card__ic { color: var(--teal); display: inline-grid; place-items: center; }
.opt-card__ic svg, .value__ic svg, .prodcard__ic svg, .cinfo__ic svg { width: 26px; height: 26px; }
.cinfo__ic svg { width: 20px; height: 20px; }
/* Drop the decorative emoji on chips for a cleaner, less-AI look */
.chip::before { content: none; }
.prodcard__ic { color: var(--teal); }

/* ============================================================
   Map enhancements — glowing brand trace line + popup carousel
   ============================================================ */
.map-panel { position: relative; }
/* Moving border beam — a thin glowing arc travels along a 2px edge ring */
@property --beam-angle { syntax: '<angle>'; inherits: false; initial-value: 0deg; }
.map-beam {
  position: absolute; inset: 0; border-radius: var(--radius); padding: 2px;
  pointer-events: none; z-index: 650;
  background: conic-gradient(from var(--beam-angle) at 50% 50%,
    transparent 0deg, transparent 314deg,
    rgba(237,106,74,.05) 318deg, var(--coral) 340deg, #ffdcb4 350deg, var(--coral) 358deg, transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  filter: drop-shadow(0 0 4px rgba(237,106,74,.65));
  animation: mapBeamRotate 6s linear infinite;
}
@keyframes mapBeamRotate { to { --beam-angle: 360deg; } }
@media (prefers-reduced-motion: reduce) { .map-beam { animation: none; background: none; } }

/* Popup photo carousel (3 photos in a loop) */
.map-pop__carousel { position: relative; width: 100%; aspect-ratio: 16/10; border-radius: 10px; overflow: hidden; margin-bottom: .7rem; background: var(--sand); }
.map-pop__slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity .7s var(--ease); }
.map-pop__slide.is-active { opacity: 1; }
.map-pop__dots { position: absolute; left: 0; right: 0; bottom: .5rem; display: flex; gap: .3rem; justify-content: center; z-index: 2; }
.map-pop__dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.55); box-shadow: 0 1px 3px rgba(6,26,40,.45); transition: background .3s var(--ease), width .3s var(--ease); }
.map-pop__dot.is-active { background: #fff; width: 16px; border-radius: 4px; }

/* ============================================================
   Full-screen video hero
   ============================================================ */
.hero { min-height: 100svh; align-items: flex-start; padding: clamp(7rem, 18vh, 12rem) 0 2.5rem; text-align: center; }
.hero__content { margin-inline: auto; max-width: 840px; }
.hero__lead { margin-inline: auto; }
.hero__trustrow { justify-content: center; }
.hero__media { z-index: 0; }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.hero__overlay { z-index: 2; }
.hero__content { z-index: 3; }

/* ============================================================
   Aanbiedingen — redesigned deal cards
   ============================================================ */
.deal { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.deal:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.deal__media { position: relative; aspect-ratio: 3/2; background-size: cover; background-position: center; }
.deal__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,26,40,.28), transparent 45%); }
.deal__badge { position: absolute; top: .8rem; left: .8rem; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: .02rem; line-height: 1; background: var(--coral); color: #fff; border-radius: 12px; padding: .5rem .6rem; box-shadow: 0 6px 16px rgba(237,106,74,.4); font-size: .6rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.deal__badge strong { font-family: var(--display); font-size: 1.2rem; font-weight: 600; letter-spacing: 0; }
.deal__tag { position: absolute; top: .8rem; right: .8rem; z-index: 1; background: rgba(255,255,255,.93); color: var(--navy); font-size: .72rem; font-weight: 700; padding: .3rem .7rem; border-radius: 100px; }
.deal__body { padding: 1.2rem 1.3rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
.deal__loc { font-size: .76rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--teal); }
.deal__name { font-family: var(--display); font-weight: 600; font-size: 1.3rem; color: var(--navy); line-height: 1.12; margin: .25rem 0 .15rem; }
.deal__spec { font-size: .85rem; color: var(--ink-soft); font-weight: 600; }
.deal__note { font-size: .92rem; color: var(--ink-soft); margin: .55rem 0 1rem; }
.deal__foot { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: .6rem; padding-top: .9rem; border-top: 1px solid var(--line); }
.deal__price { display: flex; flex-direction: column; line-height: 1.05; }
.deal__price small { font-size: .68rem; font-weight: 700; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .05em; }
.deal__price strong { font-family: var(--display); font-weight: 600; font-size: 1.5rem; color: var(--navy); }
.deal__price span { font-size: .76rem; color: var(--ink-soft); font-weight: 600; }
.deal__cta { background: var(--navy); color: #fff; font-weight: 700; font-size: .9rem; padding: .62rem 1.15rem; border-radius: 100px; transition: background .25s var(--ease), transform .25s var(--ease); white-space: nowrap; }
.deal__cta:hover { background: var(--coral); transform: translateY(-1px); }

/* Aanbieding: was-prijs doorgestreept + nu-prijs uitgelicht */
.deal__was { font-size: .8rem; font-weight: 600; color: var(--ink-soft); text-decoration: line-through; text-decoration-color: var(--coral); text-decoration-thickness: 2px; }
.deal__now { display: flex; align-items: baseline; gap: .3rem; }
.deal__now strong { font-family: var(--display); font-weight: 600; font-size: 1.55rem; color: var(--coral-dark); line-height: 1; }
.deal__now span { font-size: .72rem; font-weight: 700; color: var(--ink-soft); }

/* Bareboat-kaart: onderscheidend, met knop naar het externe boekingsplatform */
.deal--boek { outline: 2px solid rgba(34,119,168,.3); outline-offset: -2px; }
.deal__foot--boek { border-top: none; padding-top: .4rem; }
.deal__cta--wide { width: 100%; text-align: center; justify-content: center; background: var(--navy-soft); }
.deal__cta--wide:hover { background: var(--coral); }

/* ============================================================
   Service cards clickable + info modal
   ============================================================ */
.svc { text-align: left; cursor: pointer; width: 100%; font: inherit; color: inherit; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); }
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(30,122,140,.45); }
.svc p { flex: 1; }
.svc__more { margin-top: .9rem; font-size: .85rem; font-weight: 700; color: var(--teal); }
.svc:hover .svc__more { color: var(--coral); }

.modal { position: fixed; inset: 0; z-index: 2000; display: none; }
.modal.is-open { display: block; }
.modal__overlay { position: absolute; inset: 0; background: rgba(6,26,40,.55); backdrop-filter: blur(3px); animation: modalFade .25s ease; }
.modal__panel { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: min(520px, calc(100% - 2.5rem)); max-height: 88vh; overflow: auto; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: clamp(1.6rem, 3vw, 2.4rem); animation: modalPop .3s var(--ease); }
.modal__close { position: absolute; top: 1rem; right: 1rem; width: 36px; height: 36px; border-radius: 50%; background: var(--cream); color: var(--ink); display: grid; place-items: center; transition: background .2s, color .2s; }
.modal__close:hover { background: var(--navy); color: #fff; }
.modal__ic { width: 54px; height: 54px; border-radius: 14px; background: rgba(30,122,140,.12); color: var(--teal); display: grid; place-items: center; }
.modal__ic svg { width: 28px; height: 28px; }
.modal__title { font-family: var(--display); font-weight: 600; font-size: 1.6rem; color: var(--navy); margin: 1rem 0 .6rem; }
.modal__body p { color: var(--ink-soft); }
.modal__list { list-style: none; margin: 1rem 0 0; display: grid; gap: .7rem; padding: 0; }
.modal__list li { position: relative; padding-left: 1.6rem; color: var(--ink); font-size: .95rem; }
.modal__list li::before { content: ''; position: absolute; left: 0; top: .5em; width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }
.modal__foot { display: flex; gap: .8rem; margin-top: 1.6rem; flex-wrap: wrap; }
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalPop { from { opacity: 0; transform: translate(-50%,-46%) scale(.97); } to { opacity: 1; transform: translate(-50%,-50%) scale(1); } }
@media (prefers-reduced-motion: reduce) { .modal__overlay, .modal__panel { animation: none; } }

/* Shared-partial wrappers must not box the sticky header — let it stick to the page */
#site-header-root, #site-footer-root { display: contents; }

/* ============================================================
   Premium interactive deal cards — 3D tilt, cursor glare, zoom
   ============================================================ */
.deal {
  position: relative;
  transform: perspective(1000px) rotateX(var(--rx,0deg)) rotateY(var(--ry,0deg)) translateY(var(--ty,0));
  transform-style: preserve-3d;
  transition: transform .5s var(--ease), box-shadow .4s var(--ease);
  will-change: transform;
}
.deal.is-tilting { transition: transform .1s linear, box-shadow .4s var(--ease); }
.deal:hover { transform: perspective(1000px) rotateX(var(--rx,0deg)) rotateY(var(--ry,0deg)) translateY(var(--ty,-6px)); box-shadow: var(--shadow-lg); }

.deal__img { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; transition: transform .7s var(--ease); }
.deal:hover .deal__img { transform: scale(1.07); }
.deal__media::after { z-index: 1; }
.deal__badge, .deal__tag { z-index: 2; }

.deal__glare {
  position: absolute; inset: 0; z-index: 4; border-radius: inherit; pointer-events: none;
  opacity: 0; transition: opacity .4s var(--ease);
  background: radial-gradient(220px circle at var(--mx,50%) var(--my,0%), rgba(255,255,255,.5), rgba(255,255,255,0) 55%);
  mix-blend-mode: soft-light;
}
.deal:hover .deal__glare { opacity: 1; }

.deal__cta i { font-style: normal; display: inline-block; margin-left: .15rem; transition: transform .25s var(--ease); }
.deal:hover .deal__cta i { transform: translateX(4px); }

/* subtle continuous sheen sweep across the discount badge */
.deal__badge { overflow: hidden; }
.deal__badge::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.55) 50%, transparent 65%);
  transform: translateX(-130%); animation: badgeShine 5s ease-in-out infinite;
}
@keyframes badgeShine { 0%, 62% { transform: translateX(-130%); } 82%, 100% { transform: translateX(130%); } }

@media (prefers-reduced-motion: reduce) {
  .deal, .deal:hover { transform: none; }
  .deal__badge::after { animation: none; }
}

/* ============================================================
   Floating WhatsApp contact button (bottom-left)
   ============================================================ */
.wa-fab {
  position: fixed; left: 20px; bottom: 20px; z-index: 1500;
  display: inline-flex; align-items: center; text-decoration: none;
  background: #25D366; color: #fff; border-radius: 100px;
  box-shadow: 0 10px 28px rgba(37,211,102,.45), 0 4px 12px rgba(6,26,40,.25);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.wa-fab:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(37,211,102,.55), 0 6px 14px rgba(6,26,40,.3); }
.wa-fab::after { content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: waPulse 2.6s ease-out infinite; }
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
.wa-fab__ic { flex: none; width: 58px; height: 58px; display: grid; place-items: center; }
.wa-fab__ic svg { width: 30px; height: 30px; }
.wa-fab__label { max-width: 0; overflow: hidden; white-space: nowrap; opacity: 0; font-weight: 700; font-size: .95rem; transition: max-width .35s var(--ease), opacity .3s var(--ease), padding .35s var(--ease); }
.wa-fab:hover .wa-fab__label { max-width: 220px; opacity: 1; padding-right: 1.3rem; }
@media (prefers-reduced-motion: reduce) { .wa-fab::after { animation: none; } }
@media (max-width: 560px) { .wa-fab { left: 16px; bottom: 16px; } .wa-fab__ic { width: 54px; height: 54px; } }

/* ============================================================
   Header — transparent over the hero, solid white sticky on scroll
   (same pattern as satterhoveniers.nl)
   ============================================================ */
.site-header { position: fixed; background: transparent; border-bottom: none; box-shadow: none; padding: 1.1rem 0; transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease); }
.site-header.scrolled { background: #fff; box-shadow: 0 4px 22px rgba(6,26,40,.1); backdrop-filter: none; padding: .55rem 0; }
.header__inner { position: relative; background: transparent; border-radius: 0; box-shadow: none; padding: 0; min-height: 0; overflow: visible; }

/* brand: white over the hero, navy when solid; boat icon stays coral */
.site-header .brand { flex-direction: row; align-items: center; gap: .55rem; width: auto; padding: 0; background: none; box-shadow: none; color: #fff; }
.site-header.scrolled .brand { color: var(--navy); }
.site-header .brand__mark { color: var(--coral); }
.site-header .brand__mark svg { width: 26px; height: 26px; }
.site-header .brand__text { font-size: 1.4rem; text-align: left; letter-spacing: -.01em; }
.site-header .brand__sub { color: inherit; opacity: .7; letter-spacing: .35em; margin-top: 2px; }

/* nav: white over the hero, ink when solid */
.site-header .nav a { color: rgba(255,255,255,.95); }
.site-header.scrolled .nav a { color: var(--ink); }
.site-header .nav a:hover { color: var(--gold); }
.site-header.scrolled .nav a:hover { color: var(--coral); }
.nav-toggle span { background: #fff; }
.scrolled .nav-toggle span { background: var(--navy); }

/* pages without a dark hero (e.g. offerte) start in the solid white state */
body:not(.has-hero) .site-header { background: #fff; box-shadow: 0 4px 22px rgba(6,26,40,.1); }
body:not(.has-hero) .site-header .brand { color: var(--navy); }
body:not(.has-hero) .site-header .nav a { color: var(--ink); }
body:not(.has-hero) .site-header .nav a:hover { color: var(--coral); }
body:not(.has-hero) .nav-toggle span { background: var(--navy); }
body:not(.has-hero) { padding-top: 84px; }

.subhero { padding-top: 6.5rem; }
