/*
Theme Name: Paklijst-vakantie.nl
Theme URI: https://paklijst-vakantie.nl
Author: Paklijst-vakantie.nl
Author URI: https://paklijst-vakantie.nl
Description: Warm, redactioneel reismagazine-thema voor paklijst-vakantie.nl. Afvinkbare paklijsten in de sfeer van het gouden uur, met mega-menu's voor type vakantie en bestemming conform het zoekwoordenonderzoek. Inclusief interactieve checklist, blog, categoriepagina's en alle SEO-teksten.
Version: 1.8.2
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: paklijst-vakantie
Tags: travel, blog, custom-menu, featured-images, translation-ready, two-columns
*/

/* ============================================================
   paklijst-vakantie.nl — Designsysteem
   Redactioneel reismagazine in de sfeer van het gouden uur
   ============================================================ */


:root {
  /* Kleuren */
  --ink: #16243A;          /* middernachtblauw */
  --ink-80: #3a4759;
  --paper: #FBF6EC;        /* zandpapier */
  --paper-2: #F6EEDD;      /* iets dieper zand */
  --amber: #EE7B30;        /* zonsondergang */
  --amber-deep: #B85318;   /* witte tekst op amber */
  --lagune: #2E8B8B;       /* teal — decoratief */
  --lagune-deep: #246F6F;  /* tekstlinks, teal-knoppen */
  --sky: #CFE6E6;          /* zacht sectievlak */
  --sky-deep: #B6D7D7;
  --sun: #F4C145;          /* zonnegeel — highlights */
  --line: #E2D9C7;         /* randen */
  --line-soft: #EDE5D5;
  --muted: #6B6357;        /* gedempt mono-label */

  /* Typografie */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;
  --font-mono: 'Spline Sans Mono', ui-monospace, monospace;

  /* Maten */
  --container: 1180px;
  --container-narrow: 720px;

  /* Radii */
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 20px;
  --r-pill: 999px;

  /* Schaduwen — lang en zacht */
  --shadow-soft: 0 14px 40px -18px rgba(22,36,58,0.28);
  --shadow-lift: 0 26px 60px -22px rgba(22,36,58,0.34);
  --shadow-amber: 0 18px 40px -16px rgba(238,123,48,0.45);

  /* Motie */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --dur: 320ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--lagune-deep); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }

/* Papierkorrel-overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Typografie ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.05; letter-spacing: -0.01em; text-wrap: balance; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); }
p { text-wrap: pretty; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.35rem); line-height: 1.55; color: var(--ink-80); }

.mono {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lagune-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--amber);
  display: inline-block;
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: var(--container-narrow); margin: 0 auto; }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section-tight { padding: clamp(40px, 5vw, 64px) 0; }
.sky-bg { background: var(--sky); }
.ink-bg { background: var(--ink); color: var(--paper); }
.center { text-align: center; }
.stack-sm > * + * { margin-top: 12px; }
.stack > * + * { margin-top: 20px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 24px;
  border-radius: var(--r-pill);
  transition: transform 120ms var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  text-decoration: none !important;
  min-height: 48px;
  line-height: 1;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-amber { background: var(--amber); color: var(--ink); box-shadow: var(--shadow-amber); }
.btn-amber:hover { background: #f3893f; box-shadow: 0 22px 46px -16px rgba(238,123,48,0.6); }
.btn-teal { background: var(--lagune-deep); color: var(--paper); }
.btn-teal:hover { background: #1f6060; }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: #20324f; }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(22,36,58,0.03); }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { background: #fff; }
.btn-sm { padding: 10px 18px; min-height: 40px; font-size: 0.92rem; }

/* ---------- Chips ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 11px 18px;
  border-radius: var(--r-pill);
  background: var(--paper);
  border: 1.5px solid var(--line);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 200ms var(--ease);
  cursor: pointer;
  text-decoration: none !important;
}
.chip:hover { border-color: var(--lagune); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.chip.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.chip svg { width: 18px; height: 18px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,246,236,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 78px;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none !important; flex-shrink: 0; }
.logo-mark { width: 46px; height: 46px; flex-shrink: 0; }
.logo-word { line-height: 1; }
.logo-word .wm { font-family: var(--font-display); font-weight: 600; font-size: 1.6rem; color: var(--ink); display: block; }
.logo-word .sub { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.34em; color: var(--lagune-deep); display: block; margin-top: 2px; }

.main-nav { display: flex; align-items: center; gap: 26px; margin-left: 8px; }
.main-nav a { color: var(--ink); font-weight: 500; font-size: 0.98rem; text-decoration: none !important; position: relative; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--amber); transition: width 220ms var(--ease); }
.main-nav a:hover::after, .main-nav a.is-current::after { width: 100%; }

.header-right { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.header-search {
  display: flex; align-items: center; gap: 8px;
  background: var(--paper-2);
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  padding: 9px 16px;
  min-width: 210px;
  transition: border-color 200ms var(--ease);
}
.header-search:focus-within { border-color: var(--lagune); }
.header-search svg { width: 17px; height: 17px; flex-shrink: 0; color: var(--muted); }
.header-search input { border: none; background: none; outline: none; font-family: var(--font-body); font-size: 0.92rem; color: var(--ink); width: 100%; }
.header-search input::placeholder { color: var(--muted); }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: var(--r-sm); align-items: center; justify-content: center; }
.nav-toggle svg { width: 26px; height: 26px; }

/* Mobile sheet */
.mobile-sheet {
  position: fixed; inset: 0; z-index: 200;
  background: var(--paper);
  transform: translateX(100%);
  transition: transform var(--dur) var(--ease);
  display: flex; flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}
.mobile-sheet.is-open { transform: translateX(0); }
.mobile-sheet-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.mobile-sheet nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-sheet nav a { font-family: var(--font-display); font-size: 1.7rem; color: var(--ink); padding: 12px 0; border-bottom: 1px solid var(--line-soft); text-decoration: none !important; }
.sheet-close { width: 46px; height: 46px; }
.sheet-close svg { width: 26px; height: 26px; }

/* ---------- Bagagelabel-kaart ---------- */
.tag-card {
  position: relative;
  display: block;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  padding: 26px 24px 22px;
  text-decoration: none !important;
  color: var(--ink);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  overflow: hidden;
}
/* geponst gaatje + touwtje */
.tag-card::before {
  content: "";
  position: absolute;
  top: 18px; left: 18px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: inset 0 0 0 3px var(--paper);
  z-index: 2;
}
.tag-card .tag-string {
  position: absolute;
  top: 24px; left: 24px;
  width: 60px; height: 2px;
  background: var(--lagune);
  transform: rotate(34deg);
  transform-origin: left;
  opacity: 0.5;
  border-radius: 2px;
}
.tag-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: var(--lagune); }
.tag-card .tag-icon {
  width: 54px; height: 54px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  margin-left: 30px;
}
.tag-card .tag-icon svg { width: 28px; height: 28px; }
.tag-card h3 { font-size: 1.45rem; margin-bottom: 6px; }
.tag-card .tag-count { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.tag-card .tag-desc { color: var(--ink-80); font-size: 0.96rem; margin-top: 8px; }
.tag-icon.ic-amber { background: rgba(238,123,48,0.14); color: var(--amber-deep); }
.tag-icon.ic-teal { background: rgba(46,139,139,0.15); color: var(--lagune-deep); }
.tag-icon.ic-sun { background: rgba(244,193,69,0.22); color: #8a6a12; }
.tag-icon.ic-sky { background: var(--sky); color: var(--lagune-deep); }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }

/* ---------- Blogkaart ---------- */
.post-card {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  text-decoration: none !important;
  color: var(--ink);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.post-card .post-img { aspect-ratio: 3/2; overflow: hidden; position: relative; }
.post-card .post-img > .ph { width: 100%; height: 100%; transition: transform 600ms var(--ease); }
.post-card:hover .post-img > .ph { transform: scale(1.04); }
.post-card .post-body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.badge {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  background: var(--sky);
  color: var(--lagune-deep);
}
.badge.amber { background: rgba(238,123,48,0.16); color: var(--amber-deep); }
.badge.sun { background: rgba(244,193,69,0.28); color: #8a6a12; }
.post-card h3 { font-size: 1.4rem; }
.post-meta { margin-top: auto; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; }

/* ---------- Placeholder beeld (gouden uur) ---------- */
.ph {
  background:
    radial-gradient(120% 120% at 75% 18%, rgba(244,193,69,0.55), transparent 55%),
    linear-gradient(160deg, #f7b15a 0%, var(--amber) 42%, #c95f2a 100%);
  position: relative;
}
.ph.teal {
  background:
    radial-gradient(120% 120% at 70% 20%, rgba(207,230,230,0.7), transparent 60%),
    linear-gradient(160deg, #4aa3a3 0%, var(--lagune) 55%, #1f5e5e 100%);
}
.ph.sky { background: linear-gradient(160deg, #e6f2f2 0%, var(--sky) 60%, var(--sky-deep) 100%); }
.ph .ph-label {
  position: absolute; left: 14px; bottom: 12px;
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.82);
}
.ph-sun { position: absolute; right: 16%; top: 22%; width: 46px; height: 46px; border-radius: 50%; background: radial-gradient(circle, #fff 0%, var(--sun) 60%, transparent 75%); opacity: 0.9; }

/* ---------- CTA-band (gratis paklijst) ---------- */
.cta-band {
  background:
    radial-gradient(120% 140% at 85% 0%, rgba(244,193,69,0.6), transparent 55%),
    linear-gradient(120deg, var(--amber) 0%, #d8642a 70%, #b85318 100%);
  border-radius: var(--r-lg);
  padding: clamp(40px, 6vw, 72px);
  position: relative;
  overflow: hidden;
  color: var(--ink);
}
.cta-band h2 { color: var(--ink); }
.cta-band .cta-inner { position: relative; z-index: 2; max-width: 640px; }
.cta-band p { color: rgba(22,36,58,0.82); font-size: 1.1rem; }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.cta-sun-deco { position: absolute; right: -60px; bottom: -90px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle at 50% 35%, rgba(255,255,255,0.55), transparent 60%); pointer-events: none; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 0.86rem; font-family: var(--font-body); padding: 22px 0; }
.breadcrumb a { color: var(--lagune-deep); }
.breadcrumb span { color: var(--muted); }
.breadcrumb .sep { color: var(--line); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--paper); padding: clamp(56px,7vw,88px) 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 36px; }
.site-footer h4 { font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sun); margin-bottom: 18px; }
.site-footer ul { display: flex; flex-direction: column; gap: 11px; }
.site-footer a { color: rgba(251,246,236,0.78); font-size: 0.95rem; }
.site-footer a:hover { color: var(--paper); }
.footer-brand p { color: rgba(251,246,236,0.7); margin-top: 16px; max-width: 280px; font-size: 0.96rem; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; margin-top: 56px; padding-top: 28px; border-top: 1px solid rgba(251,246,236,0.14); }
.footer-bottom .mono { color: rgba(251,246,236,0.6); }
.footer-logo .wm { color: var(--paper); }
.footer-logo .sub { color: var(--sun); }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; text-align: left; padding: 22px 4px; font-family: var(--font-display); font-size: 1.18rem; font-weight: 600; color: var(--ink); }
.faq-q .faq-ic { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: rgba(46,139,139,0.13); display: flex; align-items: center; justify-content: center; transition: transform var(--dur) var(--ease), background var(--dur); }
.faq-q .faq-ic svg { width: 16px; height: 16px; color: var(--lagune-deep); }
.faq-item.is-open .faq-ic { transform: rotate(45deg); background: var(--amber); }
.faq-item.is-open .faq-ic svg { color: var(--ink); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--dur) var(--ease); }
.faq-a-inner { padding: 0 4px 24px; color: var(--ink-80); max-width: 760px; }

/* ---------- Trust strip ---------- */
.trust-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(20px,4vw,56px); }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item svg { width: 26px; height: 26px; color: var(--lagune-deep); flex-shrink: 0; }
.trust-item .t-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; }
.trust-item .t-lbl { font-size: 0.9rem; color: var(--ink-80); }

/* ---------- Inlaad-animatie ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); }
  .reveal.in { opacity: 1; transform: none; transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
  .stagger > * { opacity: 0; transform: translateY(20px); }
  .stagger.in > * { opacity: 1; transform: none; transition: opacity 650ms var(--ease), transform 650ms var(--ease); }
  .stagger.in > *:nth-child(2) { transition-delay: 90ms; }
  .stagger.in > *:nth-child(3) { transition-delay: 180ms; }
  .stagger.in > *:nth-child(4) { transition-delay: 270ms; }
  .stagger.in > *:nth-child(5) { transition-delay: 360ms; }
}

/* ---------- Cookiebanner ---------- */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 300;
  background: var(--ink); color: var(--paper);
  border-radius: var(--r);
  padding: 22px 24px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px;
  box-shadow: var(--shadow-lift);
  max-width: 860px; margin: 0 auto;
  transform: translateY(140%); transition: transform 420ms var(--ease);
}
.cookie-banner.in { transform: none; }
.cookie-banner p { font-size: 0.92rem; color: rgba(251,246,236,0.85); flex: 1; min-width: 240px; }
.cookie-banner p a { color: var(--sun); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Interactieve paklijst ---------- */
.checklist-wrap { display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: start; }
.checklist-aside { position: sticky; top: 98px; }
.ring-card {
  background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--r-lg);
  padding: 28px; text-align: center;
}
.ring-vis { position: relative; width: 150px; height: 150px; margin: 0 auto 14px; }
.ring-vis svg { width: 150px; height: 150px; transform: rotate(-90deg); }
.ring-track { fill: none; stroke: var(--line); stroke-width: 12; }
.ring-fill { fill: none; stroke: var(--amber); stroke-width: 12; stroke-linecap: round; stroke-dasharray: 326.7; transition: stroke-dashoffset 600ms var(--ease); }
.ring-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; pointer-events: none; }
.ring-center .rc-pct { font-family: var(--font-display); font-size: 2.1rem; font-weight: 600; line-height: 1; }
.ring-center .rc-lbl { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.checklist-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.checklist-actions .btn { width: 100%; }
.checklist-tools { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 8px; }
.tool-btn { display: inline-flex; align-items: center; gap: 7px; padding: 9px 15px; border-radius: var(--r-pill); border: 1.5px solid var(--line); background: var(--paper); font-size: 0.86rem; font-weight: 600; color: var(--ink); transition: all 180ms var(--ease); }
.tool-btn:hover { border-color: var(--lagune); }
.tool-btn.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.tool-btn svg { width: 15px; height: 15px; }

.pl-section { margin-bottom: 14px; }
.pl-section-head { display: flex; align-items: center; gap: 12px; padding: 18px 4px 12px; }
.pl-section-head .pl-sec-ic { width: 34px; height: 34px; border-radius: var(--r-sm); background: var(--sky); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pl-section-head .pl-sec-ic svg { width: 19px; height: 19px; color: var(--lagune-deep); }
.pl-section-head h3 { font-size: 1.3rem; }
.pl-section-head .pl-sec-meta { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-left: auto; }

.pl-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  border: 1.5px solid var(--line-soft);
  border-radius: var(--r-sm);
  background: var(--paper);
  margin-bottom: 8px;
  cursor: pointer;
  transition: border-color 180ms var(--ease), background 180ms var(--ease);
  outline: none;
}
.pl-item:hover { border-color: var(--line); background: #fff; }
.pl-item:focus-visible { border-color: var(--lagune); box-shadow: 0 0 0 3px rgba(46,139,139,0.22); }
.pl-check {
  width: 26px; height: 26px; flex-shrink: 0;
  border-radius: 7px;
  border: 2px solid var(--line);
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  transition: background 200ms var(--ease), border-color 200ms var(--ease);
}
.pl-check svg { width: 16px; height: 16px; color: var(--ink); opacity: 0; transform: scale(0.4); transition: opacity 160ms var(--ease), transform 200ms var(--ease); }
.pl-item.done .pl-check { background: var(--amber); border-color: var(--amber); }
.pl-item.done .pl-check svg { opacity: 1; transform: scale(1); }
.pl-check.pop { animation: checkpop 360ms var(--ease); }
@keyframes checkpop { 0%{transform:scale(1);} 40%{transform:scale(1.22);} 70%{transform:scale(0.92);} 100%{transform:scale(1);} }
.pl-label { flex: 1; font-size: 1.02rem; transition: color 200ms, text-decoration-color 200ms; }
.pl-item.done .pl-label { color: var(--muted); text-decoration: line-through; text-decoration-color: var(--amber); }
.pl-remove {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  font-size: 1.3rem; color: var(--muted); line-height: 1;
  display: flex; align-items: center; justify-content: center;
  background: transparent; border: none; cursor: pointer; padding: 0;
  opacity: 0.45; transition: opacity 160ms var(--ease), background 160ms var(--ease), color 160ms var(--ease);
}
.pl-item:hover .pl-remove, .pl-item:focus-within .pl-remove { opacity: 1; }
.pl-remove:hover, .pl-remove:focus-visible { background: rgba(184,83,24,0.12); color: var(--amber-deep); opacity: 1; outline: none; }

.pl-sec-remove {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  font-size: 1.2rem; line-height: 1; color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  background: transparent; border: none; cursor: pointer; padding: 0; margin-left: 10px;
  opacity: 0.4; transition: opacity 160ms var(--ease), background 160ms var(--ease), color 160ms var(--ease);
}
.pl-section-head:hover .pl-sec-remove { opacity: 1; }
.pl-sec-remove:hover, .pl-sec-remove:focus-visible { background: rgba(184,83,24,0.12); color: var(--amber-deep); opacity: 1; outline: none; }
.pl-section-head .pl-sec-meta + .pl-sec-remove { margin-left: 10px; }

/* Maatwerk-blok: eigen item / eigen sectie / herstel */
.pl-customize { margin-top: 10px; display: flex; flex-direction: column; gap: 12px; }
.add-item-form { display: flex; gap: 10px; flex-wrap: wrap; }
.add-item-form input[type="text"] { flex: 1 1 220px; border: 1.5px solid var(--line); border-radius: var(--r-pill); padding: 12px 18px; font-family: var(--font-body); font-size: 0.96rem; background: var(--paper); outline: none; }
.add-item-form input:focus, .add-section-form input:focus { border-color: var(--lagune); }
[data-add-section] {
  border: 1.5px solid var(--line); border-radius: var(--r-pill);
  padding: 12px 40px 12px 18px; font-family: var(--font-body); font-size: 0.92rem;
  background: var(--paper) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23556' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 16px center;
  color: var(--ink); cursor: pointer; outline: none; max-width: 220px; -webkit-appearance: none; appearance: none;
}
[data-add-section]:focus { border-color: var(--lagune); }
.pl-customize-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px dashed var(--line-soft); }
.add-section-form { display: flex; gap: 10px; flex: 1 1 320px; }
.add-section-form input[type="text"] { flex: 1; border: 1.5px solid var(--line); border-radius: var(--r-pill); padding: 11px 18px; font-family: var(--font-body); font-size: 0.92rem; background: var(--paper); outline: none; }
[data-reset-list] { white-space: nowrap; }

.pl-toast {
  position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 140%);
  background: var(--ink); color: var(--paper); padding: 14px 24px; border-radius: var(--r-pill);
  font-weight: 600; font-size: 0.95rem; z-index: 400; box-shadow: var(--shadow-lift);
  transition: transform 360ms var(--ease); max-width: 90vw; text-align: center;
}
.pl-toast.in { transform: translate(-50%, 0); }

@media (max-width: 860px) {
  .checklist-wrap { grid-template-columns: 1fr; }
  .checklist-aside { position: static; }
  .ring-card { max-width: 420px; margin: 0 auto; }
  .checklist-actions { flex-direction: row; flex-wrap: wrap; }
  .checklist-actions .btn { width: auto; flex: 1; min-width: 140px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .main-nav, .header-search { display: none; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-3.keep-2, .grid-4.keep-2 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .grid-3.keep-2, .grid-4.keep-2 { grid-template-columns: 1fr; }
}

/* ============================================================
   Mega-menu (header) — conform menustructuur-documentatie
   ============================================================ */
.has-mega { position: static; display: inline-flex; align-items: center; }
/* Dropdown-knoppen exact gelijk aan de directe links: zelfde grootte, gewicht en kleur. */
.main-nav .menu-link {
  display: inline-flex; align-items: center; gap: 5px;
  background: none; border: 0; padding: 0; margin: 0;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  position: relative;
}
.main-nav .menu-link::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--amber); transition: width 220ms var(--ease); }
.has-mega:hover .menu-link::after, .has-mega.is-open .menu-link::after { width: calc(100% - 19px); }
.main-nav .menu-link .caret { width: 14px; height: 14px; transition: transform 220ms var(--ease); }
.has-mega.is-open .menu-link .caret { transform: rotate(180deg); }
.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: rgba(251,246,236,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 220ms var(--ease), transform 220ms var(--ease), visibility 220ms;
  z-index: 90;
}
.has-mega.is-open .mega { opacity: 1; visibility: visible; transform: none; }
.mega-inner { max-width: var(--container); margin: 0 auto; padding: 34px 24px 38px; display: grid; gap: 30px; }
.mega-inner.cols-2 { grid-template-columns: 1fr 1fr; }
.mega-inner.cols-werelddeel { grid-template-columns: repeat(3, 1fr); }
.mega-col h4 { font-family: var(--font-mono); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--lagune-deep); margin-bottom: 14px; }
.mega-list { display: flex; flex-direction: column; gap: 2px; }
.mega-list a { display: flex; align-items: center; gap: 10px; padding: 8px 12px; border-radius: var(--r-sm); color: var(--ink); font-weight: 500; font-size: 0.98rem; text-decoration: none !important; transition: background 160ms var(--ease), color 160ms var(--ease); }
.mega-list a:hover { background: var(--paper-2); color: var(--lagune-deep); }
.mega-list a .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); flex-shrink: 0; opacity: 0.7; }
.mega-foot { grid-column: 1 / -1; margin-top: 6px; padding-top: 18px; border-top: 1px solid var(--line); }
.mega-foot a { font-weight: 600; color: var(--lagune-deep); }
.mega-foot a:hover { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 1100px) { .mega-inner.cols-werelddeel { grid-template-columns: repeat(2, 1fr); } }

/* Mobiel: uitklapbare sublijsten in het paneel */
.mobile-sub { display: none; flex-direction: column; gap: 0; padding: 4px 0 10px 6px; }
.mobile-sub.is-open { display: flex; }
.mobile-sub a { font-family: var(--font-body) !important; font-size: 1.02rem !important; padding: 8px 0 !important; border-bottom: none !important; color: var(--ink-80) !important; }
.mobile-acc { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.mobile-acc .caret { width: 18px; height: 18px; transition: transform 220ms var(--ease); }
.mobile-acc[aria-expanded="true"] .caret { transform: rotate(180deg); }

/* ============================================================
   Homepagina
   ============================================================ */
.hero { position: relative; padding: clamp(40px,6vw,80px) 0 clamp(56px,7vw,96px); background: radial-gradient(120% 90% at 88% -10%, rgba(244,193,69,0.42), transparent 55%), linear-gradient(180deg, rgba(238,123,48,0.10), transparent 60%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-copy h1 { margin: 16px 0 22px; }
.hero-choose { margin-top: 36px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-visual { position: relative; }
.hero-photo { aspect-ratio: 4/5; border-radius: var(--r-lg); box-shadow: var(--shadow-lift); }
.hero-tag { position: absolute; left: -28px; bottom: 34px; background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--r); padding: 18px 22px 18px 30px; box-shadow: var(--shadow-soft); min-width: 178px; }
.hero-tag-hole { position: absolute; top: 14px; left: 12px; width: 11px; height: 11px; border-radius: 50%; border: 2px solid var(--ink); }
.hero-tag-pct { font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; line-height: 1; margin: 6px 0 10px; }
.hero-tag-bar { height: 8px; border-radius: 99px; background: var(--line); overflow: hidden; }
.hero-tag-bar span { display: block; height: 100%; background: var(--amber); border-radius: 99px; }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.sec-head h2 { margin-top: 10px; }
.link-arrow { font-weight: 600; color: var(--lagune-deep); white-space: nowrap; }
.dest-tabs { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0 28px; }
.land-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.voorwie { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; background: var(--paper-2); border: 1.5px solid var(--line); border-radius: var(--r-lg); padding: clamp(28px,4vw,52px); }
.voorwie-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.who-card { display: flex; flex-direction: column; gap: 14px; background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--r); padding: 22px; text-decoration: none !important; color: var(--ink); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.who-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.who-card .tag-icon { margin: 0; }
.who-card strong { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; display: block; }
.who-card .mono { display: block; margin-top: 2px; }
.steps { counter-reset: step; }
.step { border-top: 2px solid rgba(251,246,236,0.18); padding-top: 22px; }
.step .step-num { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.1em; color: var(--sun); display: block; margin-bottom: 14px; }
.step h3 { color: var(--paper); margin-bottom: 10px; }
.step p { color: rgba(251,246,236,0.78); }
/* SEO-tekstblok homepagina */
.prose { max-width: 760px; }
.prose > * + * { margin-top: 18px; }
.prose h2 { margin-top: 8px; }
.prose h3 { font-size: 1.25rem; }
.basis-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 8px; }
.basis-card { background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--r); padding: 22px 24px; }
.basis-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.basis-card ul { display: flex; flex-direction: column; gap: 8px; }
.basis-card li { position: relative; padding-left: 22px; color: var(--ink-80); font-size: 0.98rem; }
.basis-card li::before { content: ""; position: absolute; left: 0; top: 9px; width: 9px; height: 9px; border-radius: 2px; background: var(--amber); }
@media (max-width: 860px) {
  .hero-grid, .voorwie { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 420px; }
  .hero-tag { left: auto; right: 16px; }
  .basis-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) { .voorwie-cards { grid-template-columns: 1fr; } }

/* ============================================================
   Categorie/hub-pagina's (vakantietypes, bestemmingen, festivals)
   ============================================================ */
.filter-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 32px; }
.filter-search { display: flex; align-items: center; gap: 10px; background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--r-pill); padding: 13px 20px; flex: 1; min-width: 280px; }
.filter-search:focus-within { border-color: var(--lagune); }
.filter-search svg { width: 18px; height: 18px; color: var(--muted); flex-shrink: 0; }
.filter-search input { border: none; background: none; outline: none; font-family: var(--font-body); font-size: 0.96rem; width: 100%; color: var(--ink); }
.filter-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.hub-who { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; background: var(--paper-2); border: 1.5px solid var(--line); border-radius: var(--r-lg); padding: 32px 36px; }
.hub-who-links { display: flex; flex-wrap: wrap; gap: 12px; }
.dest-group { margin-top: 40px; }
.dest-group-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 20px; }
.dest-group-head h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.dest-group-head .mono { color: var(--muted); }

/* ============================================================
   Interactieve paklijst-detailpagina
   ============================================================ */
.pl-intro { display: grid; grid-template-columns: 1.5fr 1fr; gap: 44px; align-items: center; }
.pl-intro h1 { margin: 12px 0 18px; }
.tip { background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--r); padding: 24px 26px; }
.tip h3 { margin-bottom: 8px; }
.tip p { color: var(--ink-80); }
@media (max-width: 860px){ .pl-intro { grid-template-columns: 1fr; } .pl-intro-side { order: -1; } }

/* ============================================================
   Bestemmingsdashboard (klimaat, live weer, feiten, links)
   ============================================================ */
.dash-head { max-width: 640px; }
.dash-head h2 { margin: 8px 0 10px; }
.dash-card { background: #fff; border: 1.5px solid var(--line-soft); border-radius: var(--r); padding: 22px 24px; }
.dash-card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 8px; flex-wrap: wrap; }
.dash-card-head h3 { font-size: 1.18rem; }
.dash-pill { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--amber-deep); background: rgba(238,123,48,0.1); padding: 5px 12px; border-radius: var(--r-pill); }

/* Live weer: 3 kaarten boven de grafiek */
.dash-live-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; }
.wx-card { display: flex; align-items: center; gap: 14px; background: #fff; border: 1.5px solid var(--line-soft); border-radius: var(--r-sm); padding: 16px 18px; }
.wx-ic { width: 38px; height: 38px; flex-shrink: 0; color: var(--amber-deep); }
.wx-ic svg { width: 100%; height: 100%; }
.wx-body { display: flex; flex-direction: column; min-width: 0; }
.wx-place { font-size: 0.95rem; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wx-label { font-size: 0.78rem; color: var(--muted); }
.wx-temp { margin-left: auto; font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--ink); line-height: 1; }
.live-note { display: flex; align-items: center; gap: 8px; margin-top: 10px; font-size: 0.74rem; color: var(--muted); }

.dash-climate { margin-top: 18px; }
.clim-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-top: 6px; }
.clim-chart { width: 100%; height: auto; display: block; overflow: visible; }
.clim-chart text { font-family: var(--font-mono); }
.clim-t { font-size: 9px; fill: #D2641C; font-weight: 600; }
.clim-t-min { fill: #2E8B8B; }
.clim-p { font-size: 7.5px; fill: var(--muted); }
.clim-m { font-size: 9.5px; fill: var(--muted); font-weight: 600; letter-spacing: .02em; }
.clim-m.is-best { fill: var(--amber-deep); }
.clim-ax { font-size: 8px; fill: var(--muted); }
.clim-zero { stroke: var(--muted); stroke-width: 1; stroke-dasharray: 2 4; opacity: .45; }
.clim-legend { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 12px; font-size: 0.78rem; color: var(--ink-80); }
.clim-legend > span { display: inline-flex; align-items: center; gap: 6px; }
.lg { width: 14px; height: 4px; border-radius: 2px; display: inline-block; }
.lg-max { background: #D2641C; }
.lg-min { background: #2E8B8B; }
.lg-pre { background: rgba(46,139,139,0.55); }
.clim-src { margin-left: auto; font-family: var(--font-mono); font-size: 0.64rem; color: var(--muted); }

.live-dot { width: 9px; height: 9px; flex-shrink: 0; border-radius: 50%; background: #2E8B8B; animation: livepulse 2s infinite; }
@keyframes livepulse { 0%{box-shadow:0 0 0 0 rgba(46,139,139,0.45);} 70%{box-shadow:0 0 0 7px rgba(46,139,139,0);} 100%{box-shadow:0 0 0 0 rgba(46,139,139,0);} }
@media (prefers-reduced-motion: reduce){ .live-dot { animation: none; } }

.dash-facts { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 14px; margin-top: 22px; }
.fact { display: flex; gap: 13px; align-items: flex-start; background: var(--paper); border: 1.5px solid var(--line-soft); border-radius: var(--r-sm); padding: 15px 16px; }
.fact-ic { width: 32px; height: 32px; flex-shrink: 0; border-radius: 9px; background: var(--sky); display: flex; align-items: center; justify-content: center; color: var(--lagune-deep); }
.fact-ic svg { width: 18px; height: 18px; }
.fact-body { display: flex; flex-direction: column; min-width: 0; }
.fact-key { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.fact-val { font-size: 0.95rem; font-weight: 600; margin-top: 3px; line-height: 1.25; }
.fact-sub { font-size: 0.75rem; color: var(--muted); margin-top: 3px; }

.dash-tip { display: flex; gap: 16px; align-items: flex-start; margin-top: 22px; background: rgba(244,193,69,0.13); border: 1.5px solid rgba(238,123,48,0.25); border-radius: var(--r); padding: 20px 22px; }
.dash-tip-ic { width: 40px; height: 40px; flex-shrink: 0; border-radius: 50%; background: var(--sun); display: flex; align-items: center; justify-content: center; color: var(--ink); }
.dash-tip-ic svg { width: 22px; height: 22px; }
.dash-tip strong { display: block; margin-bottom: 4px; }
.dash-tip p { color: var(--ink-80); }

.dash-links { margin-top: 30px; }
.dash-links h3 { margin-bottom: 16px; }
.link-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
.link-card { display: flex; align-items: center; gap: 14px; background: #fff; border: 1.5px solid var(--line-soft); border-radius: var(--r-sm); padding: 16px 18px; color: var(--ink); text-decoration: none; transition: border-color 180ms var(--ease), transform 180ms var(--ease), box-shadow 180ms var(--ease); }
.link-card:hover { border-color: var(--lagune); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.link-card strong { color: var(--ink); }
.link-card:hover strong { color: var(--lagune-deep); }
.link-ic { width: 38px; height: 38px; flex-shrink: 0; border-radius: 10px; background: var(--sky); display: flex; align-items: center; justify-content: center; color: var(--lagune-deep); }
.link-ic svg { width: 20px; height: 20px; }
.link-body { display: flex; flex-direction: column; min-width: 0; }
.link-body strong { font-size: 0.98rem; }
.link-body span { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }
.link-arrow { width: 18px; height: 18px; margin-left: auto; color: var(--muted); flex-shrink: 0; }
.dash-disclaimer { margin-top: 14px; font-size: 0.76rem; color: var(--muted); }

@media (max-width: 720px) {
  .dash-live-row { grid-template-columns: 1fr; }
  /* Grafiek leesbaar houden: horizontaal scrollen i.p.v. onleesbaar pletten. */
  .clim-chart { min-width: 560px; }
  .clim-scroll { margin: 6px -4px 0; padding: 0 4px; }
}

@media print {
  .site-header, .mobile-sheet, .checklist-aside, .checklist-tools, .pl-customize, .pl-stickybar, .dash, .cookie-banner, .cta-band, .site-footer, .breadcrumb, .header-right, .mega { display: none !important; }
  .pl-remove, .pl-sec-remove { display: none !important; }
  body { background: #fff; } body::before { display: none; }
  .pl-item { break-inside: avoid; }
}

/* ============================================================
   Gratis paklijst
   ============================================================ */
.gp-hero { background: radial-gradient(110% 80% at 90% -5%, rgba(244,193,69,0.4), transparent 55%), linear-gradient(180deg, rgba(238,123,48,0.08), transparent 55%); padding: clamp(28px,4vw,56px) 0 clamp(48px,6vw,80px); }
.gp-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.gp-form { margin-top: 30px; background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px,3vw,34px); box-shadow: var(--shadow-soft); }
.gp-form-label { display: block; margin-bottom: 12px; }
.gp-choices { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 22px; }
.gp-choices .chip { padding: 9px 15px; font-size: 0.9rem; }
.field { display: block; margin-bottom: 18px; }
.field > span { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 7px; }
.field input { width: 100%; border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: 13px 16px; font-family: var(--font-body); font-size: 1rem; background: var(--paper-2); outline: none; color: var(--ink); }
.field input:focus { border-color: var(--lagune); background: var(--paper); }
.check-line { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 20px; font-size: 0.88rem; color: var(--ink-80); }
.check-line input { width: 20px; height: 20px; margin-top: 2px; flex-shrink: 0; accent-color: var(--amber); }
.gp-fineprint { font-size: 0.82rem; color: var(--muted); margin-top: 14px; }
.gp-done { margin-top: 30px; background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--r-lg); padding: 40px 32px; text-align: center; box-shadow: var(--shadow-soft); }
.sent-ic { width: 64px; height: 64px; border-radius: 50%; background: var(--amber); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.sent-ic svg { width: 30px; height: 30px; color: var(--ink); }
.gp-done h2 { font-size: 1.7rem; margin-bottom: 12px; }
.gp-done p { color: var(--ink-80); max-width: 400px; margin: 0 auto; }
.gp-preview { position: relative; display: flex; justify-content: center; }
.pdf-mock { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 30px 30px 24px; width: 100%; max-width: 380px; box-shadow: var(--shadow-lift); transform: rotate(-2deg); }
.pdf-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid var(--line); margin-bottom: 18px; }
.pdf-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 14px; }
.pdf-bar { height: 8px; border-radius: 99px; background: var(--line); overflow: hidden; margin-bottom: 20px; }
.pdf-bar span { display: block; height: 100%; background: var(--amber); border-radius: 99px; }
.pdf-line { display: flex; align-items: center; gap: 12px; padding: 9px 0; font-size: 0.95rem; border-bottom: 1px solid var(--line-soft); }
.pdf-box { width: 20px; height: 20px; border-radius: 5px; background: var(--amber); flex-shrink: 0; position: relative; }
.pdf-box::after { content: ""; position: absolute; inset: 0; background: no-repeat center/12px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316243A' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); }
.pdf-box.empty { background: transparent; border: 2px solid var(--line); }
.pdf-box.empty::after { display: none; }
.pdf-line.done { color: var(--muted); text-decoration: line-through; text-decoration-color: var(--amber); }
.pdf-foot { margin-top: 18px; text-align: center; }
.gp-badge { position: absolute; top: -14px; right: 6%; background: var(--lagune-deep); color: var(--paper); padding: 8px 16px; border-radius: var(--r-pill); transform: rotate(4deg); box-shadow: var(--shadow-soft); }
.gp-badge .mono { color: var(--paper); }
.gp-proof { display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: center; background: var(--paper-2); border: 1.5px solid var(--line); border-radius: var(--r-lg); padding: 36px 40px; }
.proof-stat { text-align: center; padding-right: 36px; border-right: 1px solid var(--line); }
.ps-num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; display: block; line-height: 1; }
.ps-lbl { font-size: 0.9rem; color: var(--ink-80); display: block; margin-top: 8px; max-width: 140px; margin-left: auto; margin-right: auto; }
.proof-quote { font-family: var(--font-display); font-size: 1.3rem; font-style: italic; line-height: 1.4; color: var(--ink); }
.pq-author { display: block; margin-top: 14px; font-style: normal; }
@media (max-width: 860px){ .gp-grid { grid-template-columns: 1fr; } .gp-preview { order: -1; } .gp-proof { grid-template-columns: 1fr; gap: 24px; text-align: center; } .proof-stat { border-right: none; border-bottom: 1px solid var(--line); padding-right: 0; padding-bottom: 24px; } }

/* ============================================================
   Blogindex
   ============================================================ */
.feature-post { display: grid; grid-template-columns: 1.15fr 1fr; gap: 0; margin-top: 36px; border: 1.5px solid var(--line); border-radius: var(--r-lg); overflow: hidden; text-decoration: none !important; color: var(--ink); background: var(--paper); transition: box-shadow var(--dur) var(--ease); }
.feature-post:hover { box-shadow: var(--shadow-lift); }
.feature-img { min-height: 360px; position: relative; overflow: hidden; }
.feature-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.feature-body { padding: clamp(28px,3.5vw,48px); display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.feature-body h2 { font-size: clamp(1.8rem,3vw,2.6rem); }
.feature-body p { color: var(--ink-80); }
.news-form { display: flex; gap: 12px; margin-top: 26px; max-width: 460px; flex-wrap: wrap; }
.news-form input { flex: 1; min-width: 200px; border: 1.5px solid rgba(22,36,58,0.25); border-radius: var(--r-pill); padding: 14px 20px; font-family: var(--font-body); font-size: 1rem; background: rgba(251,246,236,0.7); outline: none; }
.news-form input:focus { border-color: var(--ink); background: var(--paper); }
.post-card .post-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 760px){ .feature-post { grid-template-columns: 1fr; } .feature-img { min-height: 220px; } }

/* ============================================================
   Blogartikel (single)
   ============================================================ */
.article-head { padding: 8px 0 28px; }
.article-meta { display: flex; align-items: center; gap: 14px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.author-dot { width: 46px; height: 46px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, var(--sun), var(--amber)); flex-shrink: 0; }
.article-meta strong { font-family: var(--font-display); font-size: 1.1rem; }
.article-hero { aspect-ratio: 16/8; border-radius: var(--r-lg); margin-bottom: 12px; position: relative; box-shadow: var(--shadow-soft); overflow: hidden; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.article-layout { display: grid; grid-template-columns: 200px minmax(0,1fr); gap: 48px; align-items: start; max-width: 980px; margin: 0 auto; padding-top: 40px; padding-bottom: 24px; }
.toc { position: sticky; top: 98px; }
.toc .mono { display: block; margin-bottom: 14px; }
.toc nav { display: flex; flex-direction: column; gap: 11px; border-left: 2px solid var(--line); padding-left: 16px; }
.toc nav a { color: var(--ink-80); font-size: 0.92rem; }
.toc nav a:hover { color: var(--lagune-deep); }
.article-body { font-size: 1.14rem; line-height: 1.75; }
.article-body > * + * { margin-top: 22px; }
.article-body h2 { font-size: clamp(1.6rem,2.6vw,2.1rem); margin-top: 44px; scroll-margin-top: 100px; }
.article-body h3 { margin-top: 32px; }
.article-body p { color: #2a3850; }
.article-body ul, .article-body ol { padding-left: 22px; color: #2a3850; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li + li { margin-top: 8px; }
.article-body img { border-radius: var(--r); margin: 12px 0; }
.article-body a { color: var(--lagune-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(36,111,111,0.4); }
.article-body blockquote, .pullquote { font-family: var(--font-display); font-size: clamp(1.5rem,2.6vw,2rem); font-weight: 500; font-style: italic; line-height: 1.25; color: var(--amber-deep); border-left: 4px solid var(--amber); padding: 8px 0 8px 26px; margin: 36px 0; }
.article-img { aspect-ratio: 16/8; border-radius: var(--r); margin: 36px 0; position: relative; }
.share-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line); }
.share-btns { display: flex; gap: 10px; }
.share-btn { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--ink); transition: all 180ms var(--ease); }
.share-btn:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.share-btn svg { width: 19px; height: 19px; }
@media (max-width: 820px){ .article-layout { grid-template-columns: 1fr; gap: 8px; } .toc { position: static; margin-bottom: 8px; } .toc nav { flex-direction: row; flex-wrap: wrap; border-left: none; padding-left: 0; gap: 8px; } .toc nav a { background: var(--paper-2); border: 1px solid var(--line); padding: 6px 12px; border-radius: var(--r-pill); font-size: 0.84rem; } }

/* ============================================================
   Over ons
   ============================================================ */
.about-hero { display: grid; grid-template-columns: 1.3fr 1fr; gap: 52px; align-items: center; }
.about-hero h1 { margin-top: 12px; }
.team-card { background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--r); overflow: hidden; }
.team-photo { aspect-ratio: 5/4; }
.team-info { padding: 22px 24px 26px; }
.team-info strong { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; display: block; }
.team-info .mono { display: block; margin: 4px 0 12px; color: var(--lagune-deep); }
.team-info p { color: var(--ink-80); font-size: 0.98rem; }
.method-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 36px; }
.method-card { background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--r); padding: 26px 24px; }
.method-num { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.1em; color: var(--amber-deep); display: block; margin-bottom: 14px; }
.method-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.method-card p { color: var(--ink-80); font-size: 0.96rem; }
.steps .step-num.word { text-transform: none; font-size: 1rem; }
@media (max-width: 860px){ .about-hero { grid-template-columns: 1fr; } .about-hero-visual { max-width: 380px; } .method-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px){ .method-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-aside h1 { margin-top: 12px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; margin: 32px 0; }
.ci-item { display: flex; gap: 14px; align-items: flex-start; }
.ci-ic { width: 44px; height: 44px; border-radius: var(--r-sm); background: rgba(46,139,139,0.13); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-ic svg { width: 21px; height: 21px; color: var(--lagune-deep); }
.ci-item strong { display: block; font-family: var(--font-display); font-size: 1.1rem; }
.ci-item a, .ci-item span { color: var(--ink-80); }
.ci-item a { color: var(--lagune-deep); }
.contact-socials a { font-weight: 600; }
.contact-photo { aspect-ratio: 16/9; border-radius: var(--r); position: relative; margin-top: 8px; }
.contact-form-wrap { background: var(--paper-2); border: 1.5px solid var(--line); border-radius: var(--r-lg); padding: clamp(28px,3.5vw,42px); }
.contact-form h2, .contact-sent h2 { font-size: 1.7rem; margin-bottom: 22px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .field input, .contact-form .field select, .contact-form .field textarea { width: 100%; border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: 13px 16px; font-family: var(--font-body); font-size: 1rem; background: var(--paper); outline: none; color: var(--ink); transition: border-color 180ms var(--ease); }
.contact-form .field input:focus, .contact-form .field select:focus, .contact-form .field textarea:focus { border-color: var(--lagune); }
.contact-form .field textarea { resize: vertical; }
.contact-sent { text-align: center; padding: 30px 10px; }
.contact-sent p { color: var(--ink-80); max-width: 380px; margin: 0 auto; }
@media (max-width: 860px){ .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 480px){ .field-row { grid-template-columns: 1fr; } }

/* ============================================================
   404
   ============================================================ */
.error-hero { text-align: center; max-width: 620px; margin: 0 auto; padding: clamp(48px,8vw,96px) 0; }
.error-hero .err-code { font-family: var(--font-display); font-size: clamp(4rem,12vw,7rem); font-weight: 600; color: var(--amber); line-height: 1; }
.error-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* ============================================================
   WordPress-specifiek
   ============================================================ */
.screen-reader-text { position: absolute !important; clip: rect(1px,1px,1px,1px); width: 1px; height: 1px; overflow: hidden; }
.alignwide { max-width: 1000px; margin-left: auto; margin-right: auto; }
.alignfull { max-width: 100%; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-family: var(--font-mono); font-size: 0.72rem; color: var(--muted); margin-top: 8px; text-align: center; }
.sticky, .gallery-caption, .bypostauthor { display: block; }
.page-content { max-width: 760px; margin: 0 auto; }
.page-content > * + * { margin-top: 20px; }
.pagination { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 48px; }
.pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 14px; border-radius: var(--r-pill); border: 1.5px solid var(--line); background: var(--paper); color: var(--ink); font-weight: 600; text-decoration: none !important; }
.pagination .page-numbers.current { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.pagination .page-numbers:hover { border-color: var(--lagune); }
.admin-bar .site-header { top: 32px; }
.admin-bar .checklist-aside, .admin-bar .toc { top: 130px; }
@media (max-width: 782px){ .admin-bar .site-header { top: 46px; } }

/* ============================================================
   Geanimeerde scènes (paklijst-intro, vervangt het lege vlak)
   ============================================================ */
.pl-scene { position: relative; width: 100%; aspect-ratio: 4/3; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-soft); }
.pl-scene .ph-label { position: absolute; left: 14px; bottom: 12px; z-index: 6; font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.9); }
.pl-scene .sc-sun { position: absolute; border-radius: 50%; }
.pl-scene .sc-cloud { position: absolute; height: 20px; width: 70px; background: rgba(255,255,255,0.92); border-radius: 99px; }
.pl-scene .sc-cloud::before { content: ""; position: absolute; width: 32px; height: 32px; background: inherit; border-radius: 50%; top: -13px; left: 12px; }
.pl-scene .sc-cloud::after { content: ""; position: absolute; width: 24px; height: 24px; background: inherit; border-radius: 50%; top: -9px; left: 38px; }

/* — Zon (standaard) — */
.pl-scene--zon { background: radial-gradient(120% 120% at 75% 18%, rgba(244,193,69,0.75), transparent 55%), linear-gradient(160deg, #f7b15a 0%, var(--amber) 60%, #c95f2a 100%); }
.pl-scene--zon .sc-sun { right: 16%; top: 16%; width: 70px; height: 70px; background: radial-gradient(circle, #fff 0%, var(--sun) 62%, rgba(244,193,69,0) 74%); }
.pl-scene--zon .sc-cloud-1 { top: 30%; left: -90px; }
.pl-scene--zon .sc-cloud-2 { top: 55%; left: -140px; transform: scale(0.8); opacity: 0.85; }

/* — Sneeuw (wintersport) — */
.pl-scene--sneeuw { background: linear-gradient(170deg, #cfe6ef 0%, #a9d2dd 45%, #7fb6c4 100%); }
.pl-scene--sneeuw .sc-sun { right: 18%; top: 14%; width: 56px; height: 56px; background: radial-gradient(circle, #fff 0%, #fde6b8 60%, rgba(253,230,184,0) 75%); }
.pl-scene--sneeuw .sc-mountains { position: absolute; bottom: 0; left: 0; width: 100%; height: 58%; }
.pl-scene--sneeuw .flake { position: absolute; top: -8px; width: 6px; height: 6px; border-radius: 50%; background: #fff; opacity: 0.9; }

/* — Kamp (kamperen) — */
.pl-scene--kamp { background: linear-gradient(175deg, #2a3d63 0%, #3d5a7a 38%, #c98a5a 100%); }
.pl-scene--kamp .sc-sun { right: 16%; bottom: 30%; width: 60px; height: 60px; background: radial-gradient(circle, #ffe6b0 0%, #f4a259 60%, rgba(244,162,89,0) 75%); }
.pl-scene--kamp .star { position: absolute; width: 3px; height: 3px; border-radius: 50%; background: #fff; opacity: 0.85; }
.pl-scene--kamp .sc-tent { position: absolute; bottom: 14%; left: 50%; transform: translateX(-50%); width: 46%; height: auto; }
.pl-scene--kamp .sc-fire { position: absolute; bottom: 14%; left: 30%; width: 16px; height: 22px; border-radius: 50% 50% 45% 45%; background: radial-gradient(circle at 50% 70%, #ffd34d, #ff8a3d 55%, #ff5a2c 80%); filter: blur(0.4px); transform-origin: 50% 100%; }
.pl-scene--kamp .ground { position: absolute; bottom: 0; left: 0; width: 100%; height: 16%; background: #1f2f4a; }

/* — Vliegtuig (vliegvakantie) — */
.pl-scene--vliegtuig { background: linear-gradient(170deg, #b9e6f5 0%, #8fd0ea 40%, #5fb6dd 100%); }
.pl-scene--vliegtuig .sc-sun { right: 14%; top: 16%; width: 58px; height: 58px; background: radial-gradient(circle, #fff 0%, var(--sun) 62%, rgba(244,193,69,0) 76%); }
.pl-scene--vliegtuig .sc-cloud-1 { top: 26%; left: -90px; }
.pl-scene--vliegtuig .sc-cloud-2 { top: 62%; left: -160px; transform: scale(0.75); opacity: 0.85; }
.pl-scene--vliegtuig .sc-plane { position: absolute; top: 42%; left: -70px; width: 64px; color: #16243a; }

/* — Weekend (weekendje weg / stedentrip) — */
.pl-scene--weekend { background: radial-gradient(120% 120% at 80% 20%, rgba(244,193,69,0.5), transparent 55%), linear-gradient(170deg, #f3d9a6 0%, #e9b97a 55%, #cf8f63 100%); }
.pl-scene--weekend .sc-sun { right: 16%; top: 16%; width: 60px; height: 60px; background: radial-gradient(circle, #fff 0%, var(--sun) 60%, rgba(244,193,69,0) 74%); }
.pl-scene--weekend .sc-city { position: absolute; bottom: 0; left: 0; width: 100%; height: 52%; }
.pl-scene--weekend .sc-cloud-1 { top: 24%; left: -80px; }

@media (prefers-reduced-motion: no-preference) {
  .pl-scene--zon .sc-sun, .pl-scene--weekend .sc-sun, .pl-scene--vliegtuig .sc-sun { animation: scPulse 4.5s var(--ease) infinite; }
  .pl-scene .sc-cloud-1 { animation: scDrift 26s linear infinite; }
  .pl-scene .sc-cloud-2 { animation: scDrift 38s linear infinite; }
  .pl-scene--sneeuw .flake { animation: scFall linear infinite; }
  .pl-scene--kamp .star { animation: scTwinkle 3s ease-in-out infinite; }
  .pl-scene--kamp .sc-fire { animation: scFlicker 1.1s ease-in-out infinite; }
  .pl-scene--vliegtuig .sc-plane { animation: scFly 12s linear infinite; }
}
@keyframes scPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.08); opacity: 0.92; } }
@keyframes scDrift { from { transform: translateX(0); } to { transform: translateX(140vw); } }
@keyframes scFall { 0% { transform: translateY(-10px) translateX(0); opacity: 0; } 10% { opacity: 0.9; } 100% { transform: translateY(360px) translateX(18px); opacity: 0.3; } }
@keyframes scTwinkle { 0%,100% { opacity: 0.25; } 50% { opacity: 0.95; } }
@keyframes scFlicker { 0%,100% { transform: scaleY(1) scaleX(1); opacity: 1; } 45% { transform: scaleY(1.18) scaleX(0.92); opacity: 0.85; } 70% { transform: scaleY(0.94) scaleX(1.05); } }
@keyframes scFly { 0% { transform: translateX(0) translateY(0); } 50% { transform: translateX(50vw) translateY(-10px); } 100% { transform: translateX(120vw) translateY(0); } }

/* — Strand (zonvakantie / zomervakantie) — */
.pl-scene--strand { background: linear-gradient(170deg, #ffe3a8 0%, #ffc06a 45%, #ff9a52 100%); }
.pl-scene--strand .sc-sun { right: 18%; top: 16%; width: 64px; height: 64px; background: radial-gradient(circle, #fff 0%, var(--sun) 60%, rgba(244,193,69,0) 74%); }
.pl-scene--strand .sc-cloud-1 { top: 22%; left: -80px; }
.pl-scene--strand .sea { position: absolute; bottom: 0; left: 0; width: 100%; height: 30%; background: linear-gradient(180deg, #5fc7d6, #2e8b8b); overflow: hidden; }
.pl-scene--strand .wave { position: absolute; left: -50%; width: 200%; height: 8px; background: repeating-linear-gradient(90deg, rgba(255,255,255,0.55) 0 14px, transparent 14px 42px); border-radius: 99px; }
.pl-scene--strand .w1 { top: 7px; }
.pl-scene--strand .w2 { top: 20px; opacity: 0.6; }
.pl-scene--strand .sc-parasol { position: absolute; bottom: 30%; left: 14%; width: 56px; height: auto; }

/* — Weg (autovakantie) — */
.pl-scene--weg { background: linear-gradient(170deg, #cfeaf3 0%, #9ad4ea 45%, #bfe0c8 100%); }
.pl-scene--weg .sc-sun { right: 16%; top: 14%; width: 54px; height: 54px; background: radial-gradient(circle, #fff 0%, var(--sun) 60%, rgba(244,193,69,0) 75%); }
.pl-scene--weg .sc-cloud-1 { top: 22%; left: -80px; }
.pl-scene--weg .sc-roadwrap { position: absolute; bottom: 0; left: 0; width: 100%; height: 60%; }
.pl-scene--weg .sc-car { position: absolute; bottom: 6%; left: 50%; transform: translateX(-50%); width: 88px; height: auto; }

@media (prefers-reduced-motion: no-preference) {
  .pl-scene--strand .w1 { animation: scWave 5s ease-in-out infinite; }
  .pl-scene--strand .w2 { animation: scWave 7s ease-in-out infinite reverse; }
  .pl-scene--weg .sc-car { animation: scBob 2.4s ease-in-out infinite; }
}
@keyframes scWave { 0%,100% { transform: translateX(0); } 50% { transform: translateX(22px); } }
@keyframes scBob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-3px); } }

/* ============================================================
   Correcties: menu, intro, kaarten, scènes (v1.3)
   ============================================================ */

/* Hoofdmenu: links en dropdown-triggers identiek, geen tekst-underline */
.main-nav a, .main-nav .menu-link { text-decoration: none; }
.main-nav a:hover, .main-nav .menu-link:hover { text-decoration: none; }

/* Mobiel menu: accordeon-items even groot als de directe links */
.mobile-item { display: block; }
.mobile-sheet .mobile-acc {
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 600;
  color: var(--ink); padding: 12px 0; border-bottom: 1px solid var(--line-soft);
}
.mobile-sheet .mobile-acc .caret { width: 22px; height: 22px; }

/* Intro: lead en vervolgalinea even groot (geen springende lettergroottes) */
.pl-intro-copy p, .hub-head p { font-size: 1.15rem; line-height: 1.62; color: var(--ink-80); }
.pl-intro-copy p.lead, .hub-head p.lead { font-size: 1.15rem; }

/* Bagagelabel-kaart: het "gaatje met touwtje" weg, icoon netjes uitlijnen */
.tag-card::before { display: none !important; }
.tag-card .tag-string { display: none !important; }
.tag-card .tag-icon { margin-left: 0 !important; }
.tag-card { padding-top: 24px; }

/* — Scène: Fiets (fietsvakantie) — */
.pl-scene--fiets { background: linear-gradient(170deg, #bfe3f0 0%, #9ad4ea 42%, #c4e3cb 100%); }
.pl-scene--fiets .sc-sun { right: 16%; top: 16%; width: 56px; height: 56px; background: radial-gradient(circle, #fff 0%, var(--sun) 60%, rgba(244,193,69,0) 75%); }
.pl-scene--fiets .sc-cloud-1 { top: 24%; left: -80px; }
.pl-scene--fiets .ground-green { position: absolute; bottom: 0; left: 0; width: 100%; height: 26%; background: #8ac291; }
.pl-scene--fiets .sc-bike { position: absolute; bottom: 18%; left: 50%; transform: translateX(-50%); width: 120px; height: auto; }

/* — Scène: Berg (wandelvakantie / huttentocht) — */
.pl-scene--berg { background: linear-gradient(170deg, #cfe6ef 0%, #a9d2dd 45%, #cfe0c4 100%); }
.pl-scene--berg .sc-sun { right: 18%; top: 15%; width: 58px; height: 58px; background: radial-gradient(circle, #fff 0%, #fde6b8 60%, rgba(253,230,184,0) 76%); }
.pl-scene--berg .sc-cloud-1 { top: 24%; left: -90px; }
.pl-scene--berg .sc-bergen { position: absolute; bottom: 0; left: 0; width: 100%; height: 62%; }

@media (prefers-reduced-motion: no-preference) {
  .pl-scene--fiets .sc-bike { animation: scBob 2.6s ease-in-out infinite; }
}

/* Deel-balk op de paklijst-detailpagina */
.pl-share { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; padding: 18px 0 4px; }
.pl-share .mono { color: var(--muted); }

/* ============================================================
   Onderwerp-specifieke scènes (v1.4) — elke animatie klopt
   ============================================================ */
.pl-scene .sea { position: absolute; bottom: 0; left: 0; width: 100%; height: 30%; background: linear-gradient(180deg, #5fc7d6, #2e8b8b); overflow: hidden; }
.pl-scene .sea.calm { background: linear-gradient(180deg, #bfe3df, #7fc6bf); height: 26%; }
.pl-scene .wave { position: absolute; left: -50%; width: 200%; height: 8px; background: repeating-linear-gradient(90deg, rgba(255,255,255,0.5) 0 14px, transparent 14px 42px); border-radius: 99px; }
.pl-scene .w1 { top: 7px; }
.pl-scene .w2 { top: 19px; opacity: 0.6; }
.pl-scene .ground-green { position: absolute; bottom: 0; left: 0; width: 100%; height: 26%; background: #8ac291; }
.pl-scene .seabed { position: absolute; bottom: 0; left: 0; width: 100%; height: 18%; background: linear-gradient(180deg, #3e7d86, #2a5e66); }

/* Motor */
.pl-scene--motor { background: linear-gradient(170deg, #cfeaf3 0%, #9ad4ea 45%, #bfe0c8 100%); }
.pl-scene--motor .sc-sun { right: 16%; top: 14%; width: 54px; height: 54px; background: radial-gradient(circle, #fff 0%, var(--sun) 60%, rgba(244,193,69,0) 75%); }
.pl-scene--motor .sc-cloud-1 { top: 22%; left: -80px; }
.pl-scene--motor .sc-roadwrap { position: absolute; bottom: 0; left: 0; width: 100%; height: 60%; }
.pl-scene--motor .sc-moto { position: absolute; bottom: 7%; left: 50%; transform: translateX(-50%); width: 98px; height: auto; }

/* Zeil */
.pl-scene--zeil { background: linear-gradient(170deg, #bfe6f5 0%, #8fd0ea 42%, #5fb6dd 100%); }
.pl-scene--zeil .sc-sun { right: 16%; top: 15%; width: 56px; height: 56px; background: radial-gradient(circle, #fff 0%, var(--sun) 60%, rgba(244,193,69,0) 75%); }
.pl-scene--zeil .sc-cloud-1 { top: 20%; left: -80px; }
.pl-scene--zeil .sc-boat { position: absolute; bottom: 24%; left: 50%; transform: translateX(-50%); width: 78px; height: auto; }

/* Trein */
.pl-scene--trein { background: linear-gradient(170deg, #cfeaf3 0%, #9ad4ea 48%, #cfe6d0 100%); }
.pl-scene--trein .sc-sun { right: 15%; top: 14%; width: 54px; height: 54px; background: radial-gradient(circle, #fff 0%, var(--sun) 60%, rgba(244,193,69,0) 75%); }
.pl-scene--trein .sc-cloud-1 { top: 20%; left: -80px; }
.pl-scene--trein .sc-hills { position: absolute; bottom: 0; left: 0; width: 100%; height: 58%; }
.pl-scene--trein .sc-train { position: absolute; bottom: 9%; left: 50%; transform: translateX(-50%); width: 160px; height: auto; }

/* Cruiseschip */
.pl-scene--schip { background: linear-gradient(170deg, #bfe6f5 0%, #8fd0ea 42%, #5fb6dd 100%); }
.pl-scene--schip .sc-sun { right: 14%; top: 14%; width: 56px; height: 56px; background: radial-gradient(circle, #fff 0%, var(--sun) 60%, rgba(244,193,69,0) 75%); }
.pl-scene--schip .sc-cloud-1 { top: 18%; left: -90px; }
.pl-scene--schip .sc-ship { position: absolute; bottom: 22%; left: 50%; transform: translateX(-50%); width: 150px; height: auto; }

/* Onderwater (duiken) */
.pl-scene--onderwater { background: linear-gradient(180deg, #2e7d8c 0%, #1f5e72 60%, #16465c 100%); }
.pl-scene--onderwater .sc-rays { position: absolute; inset: 0; width: 100%; height: 100%; }
.pl-scene--onderwater .sc-coral { position: absolute; bottom: 0; left: 0; width: 100%; height: 30%; }
.pl-scene--onderwater .sc-fish { position: absolute; top: 40%; left: 44%; width: 54px; height: auto; }
.pl-scene--onderwater .bub { position: absolute; bottom: 18%; width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.6); }

/* Bos (survival) */
.pl-scene--bos { background: linear-gradient(170deg, #cfe6d6 0%, #9fc7a6 50%, #d9c79a 100%); }
.pl-scene--bos .sc-sun { right: 18%; top: 16%; width: 52px; height: 52px; background: radial-gradient(circle, #fff 0%, #ffd98a 60%, rgba(255,217,138,0) 76%); }
.pl-scene--bos .sc-forest { position: absolute; bottom: 0; left: 0; width: 100%; height: 60%; }
.pl-scene--bos .sc-camptent { position: absolute; bottom: 18%; left: 14%; width: 62px; height: auto; }

/* Wereld (rondreis) */
.pl-scene--wereld { background: linear-gradient(170deg, #1c2c4a 0%, #2a3d63 55%, #3d5a7a 100%); }
.pl-scene--wereld .sc-globe { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 64%; height: auto; }
.pl-scene--wereld .wstar { position: absolute; width: 3px; height: 3px; border-radius: 50%; background: #fff; opacity: 0.85; }
.pl-scene--wereld .sc-orbit { transform-box: view-box; transform-origin: 50px 52px; }

/* Rugzak (backpacken) */
.pl-scene--rugzak { background: linear-gradient(170deg, #cfe6ef 0%, #a9d2dd 45%, #cfe0c4 100%); }
.pl-scene--rugzak .sc-sun { right: 16%; top: 15%; width: 56px; height: 56px; background: radial-gradient(circle, #fff 0%, var(--sun) 60%, rgba(244,193,69,0) 75%); }
.pl-scene--rugzak .sc-cloud-1 { top: 20%; left: -80px; }
.pl-scene--rugzak .sc-pack { position: absolute; bottom: 16%; left: 50%; transform: translateX(-50%); width: 84px; height: auto; }

/* Wellness */
.pl-scene--wellness { background: linear-gradient(170deg, #f3e1e6 0%, #e9c7d0 45%, #cfe0dc 100%); }
.pl-scene--wellness .sc-sun { right: 18%; top: 16%; width: 52px; height: 52px; background: radial-gradient(circle, #fff 0%, #ffe3c2 60%, rgba(255,227,194,0) 78%); }
.pl-scene--wellness .sc-lotus { position: absolute; bottom: 24%; left: 50%; transform: translateX(-50%); width: 96px; height: auto; }
.pl-scene--wellness .sc-steam { position: absolute; bottom: 34%; left: 50%; transform: translateX(-50%); width: 64px; height: 64px; }

@media (prefers-reduced-motion: no-preference) {
  .pl-scene .sc-sun { animation: scPulse 4.6s var(--ease) infinite; }
  .pl-scene--motor .sc-moto, .pl-scene--zeil .sc-boat, .pl-scene--schip .sc-ship, .pl-scene--rugzak .sc-pack { animation: scBob 2.7s ease-in-out infinite; }
  .pl-scene--trein .sc-train { animation: scBob 3.2s ease-in-out infinite; }
  .pl-scene--zeil .w1, .pl-scene--schip .w1 { animation: scWave 5s ease-in-out infinite; }
  .pl-scene--zeil .w2, .pl-scene--schip .w2 { animation: scWave 7s ease-in-out infinite reverse; }
  .pl-scene--onderwater .sc-fish { animation: scFishSwim 9s ease-in-out infinite; }
  .pl-scene--onderwater .bub { animation: scRise linear infinite; }
  .pl-scene--wereld .sc-orbit { animation: scOrbit 9s linear infinite; }
  .pl-scene--wereld .wstar { animation: scTwinkle 3s ease-in-out infinite; }
  .pl-scene--wellness .sc-steam .st1 { animation: scSteam 4s ease-in-out infinite; }
  .pl-scene--wellness .sc-steam .st2 { animation: scSteam 5s ease-in-out infinite 0.6s; }
  .pl-scene--wellness .sc-steam .st3 { animation: scSteam 4.5s ease-in-out infinite 1.1s; }
}
@keyframes scRise { 0% { transform: translateY(0); opacity: 0; } 15% { opacity: 0.7; } 100% { transform: translateY(-120px); opacity: 0; } }
@keyframes scOrbit { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes scFishSwim { 0% { transform: translateX(0) scaleX(1); } 49% { transform: translateX(40px) scaleX(1); } 50% { transform: translateX(40px) scaleX(-1); } 99% { transform: translateX(0) scaleX(-1); } 100% { transform: translateX(0) scaleX(1); } }
@keyframes scSteam { 0% { opacity: 0; transform: translateY(6px); } 30% { opacity: 0.55; } 100% { opacity: 0; transform: translateY(-14px); } }

/* Hero-checklist illustratie (homepagina) */
.hero-checklist { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-lift); padding: 28px 28px 24px; }
.hero-checklist .hc-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--line); margin-bottom: 16px; }
.hero-checklist .hc-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 14px; }
.hero-checklist .hc-bar { height: 8px; border-radius: 99px; background: var(--line); overflow: hidden; margin-bottom: 18px; }
.hero-checklist .hc-bar span { display: block; height: 100%; background: var(--amber); border-radius: 99px; }
.hero-checklist .hc-line { display: flex; align-items: center; gap: 12px; padding: 9px 0; font-size: 0.98rem; border-bottom: 1px solid var(--line-soft); }
.hero-checklist .hc-line:last-child { border-bottom: none; }
.hero-checklist .hc-box { width: 22px; height: 22px; border-radius: 6px; background: var(--amber); flex-shrink: 0; position: relative; }
.hero-checklist .hc-box::after { content: ""; position: absolute; inset: 0; background: no-repeat center/13px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316243A' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); }
.hero-checklist .hc-box.empty { background: transparent; border: 2px solid var(--line); }
.hero-checklist .hc-box.empty::after { display: none; }
.hero-checklist .hc-line.done { color: var(--muted); text-decoration: line-through; text-decoration-color: var(--amber); }

/* Deel-sectie (opvallend) op de paklijst-detailpagina */
.pl-share { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; background: var(--paper-2); border: 1.5px solid var(--line); border-radius: var(--r-lg); padding: 22px 28px; margin-top: 8px; }
.pl-share-text strong { display: block; font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; margin-top: 6px; color: var(--ink); }
.pl-share-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.share-pill { display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; border-radius: var(--r-pill); border: 1.5px solid var(--line); background: var(--paper); color: var(--ink); font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: transform 160ms var(--ease), box-shadow 160ms var(--ease), background 160ms var(--ease), border-color 160ms var(--ease); text-decoration: none !important; }
.share-pill:hover { border-color: var(--lagune); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.share-pill svg { width: 18px; height: 18px; }
.share-pill.wa { background: #25D366; border-color: #25D366; color: #fff; }
.share-pill.wa:hover { background: #1ebe5b; border-color: #1ebe5b; }
@media (max-width: 560px) { .pl-share { flex-direction: column; align-items: flex-start; } }

/* Uitgebreide cookiemelding met categorieën */
.cookie-banner { flex-direction: column; align-items: stretch; }
.cookie-main { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.cookie-main p { flex: 1; min-width: 240px; margin: 0; }
.cookie-prefs { display: none; flex-direction: column; gap: 16px; margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(251,246,236,0.18); }
.cookie-banner.show-prefs .cookie-prefs { display: flex; }
.cookie-opt { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.cookie-opt-text strong { display: block; color: var(--paper); font-family: var(--font-body); font-size: 0.98rem; }
.cookie-opt-text small { display: block; color: rgba(251,246,236,0.68); font-size: 0.82rem; margin-top: 2px; max-width: 560px; }
.cookie-switch { position: relative; width: 46px; height: 26px; flex-shrink: 0; }
.cookie-switch input { position: absolute; inset: 0; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.cookie-knob { position: absolute; inset: 0; background: rgba(251,246,236,0.25); border-radius: 99px; transition: background 200ms var(--ease); pointer-events: none; }
.cookie-knob::after { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; transition: transform 200ms var(--ease); }
.cookie-switch input:checked + .cookie-knob { background: var(--amber); }
.cookie-switch input:checked + .cookie-knob::after { transform: translateX(20px); }
.cookie-switch.is-locked { opacity: 0.6; }
.cookie-prefs > .btn { align-self: flex-start; }

/* ============================================================
   Scène-SVG's (v1.5) — één illustratie per scène, animatie in de SVG
   ============================================================ */
.pl-scene-svg { display: block; width: 100%; height: 100%; }
@media (prefers-reduced-motion: no-preference) {
  .pl-scene-svg .s-cloud { animation: svSlide 30s linear infinite; }
  .pl-scene-svg .s-cloud-2 { animation: svSlide 44s linear infinite; }
  .pl-scene-svg .s-sun { transform-box: fill-box; transform-origin: center; animation: svPulse 5s ease-in-out infinite; }
  .pl-scene-svg .s-wheel { transform-box: fill-box; transform-origin: center; animation: svSpin 1.9s linear infinite; }
  .pl-scene-svg .s-bob { animation: svBob 3s ease-in-out infinite; }
  .pl-scene-svg .s-wave { animation: svWave 4.5s ease-in-out infinite; }
  .pl-scene-svg .s-wave-2 { animation: svWave 6.5s ease-in-out infinite reverse; }
  .pl-scene-svg .s-bub { transform-box: fill-box; animation: svRise linear infinite; }
  .pl-scene-svg .s-fish { animation: svFish 10s ease-in-out infinite; }
  .pl-scene-svg .s-steam { animation: svSteam 4.5s ease-in-out infinite; }
  .pl-scene-svg .s-steam-2 { animation: svSteam 5.5s ease-in-out infinite 0.7s; }
  .pl-scene-svg .s-steam-3 { animation: svSteam 5s ease-in-out infinite 1.2s; }
  .pl-scene-svg .s-orbit { transform-box: view-box; transform-origin: 200px 150px; animation: svOrbit 11s linear infinite; }
  .pl-scene-svg .s-twinkle { animation: svTwinkle 3.2s ease-in-out infinite; }
  .pl-scene-svg .s-snow { transform-box: fill-box; animation: svFall linear infinite; }
  .pl-scene-svg .s-flame { transform-box: fill-box; transform-origin: 50% 100%; animation: svFlame 1.1s ease-in-out infinite; }
}
@keyframes svSlide { from { transform: translateX(-110px); } to { transform: translateX(470px); } }
@keyframes svPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.07); } }
@keyframes svSpin { to { transform: rotate(360deg); } }
@keyframes svBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes svWave { 0%,100% { transform: translateX(0); } 50% { transform: translateX(12px); } }
@keyframes svRise { 0% { transform: translateY(0); opacity: 0; } 20% { opacity: 0.7; } 100% { transform: translateY(-150px); opacity: 0; } }
@keyframes svFish { 0% { transform: translateX(0); } 50% { transform: translateX(70px); } 100% { transform: translateX(0); } }
@keyframes svSteam { 0% { opacity: 0; transform: translateY(10px); } 40% { opacity: 0.55; } 100% { opacity: 0; transform: translateY(-20px); } }
@keyframes svOrbit { to { transform: rotate(360deg); } }
@keyframes svTwinkle { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }
@keyframes svFall { 0% { transform: translateY(0); opacity: 0; } 10% { opacity: 0.95; } 100% { transform: translateY(320px); opacity: 0.4; } }
@keyframes svFlame { 0%,100% { transform: scaleY(1) scaleX(1); } 45% { transform: scaleY(1.18) scaleX(0.9); } 70% { transform: scaleY(0.94) scaleX(1.05); } }

/* Cookiemelding: meer ademruimte */
.cookie-banner { padding: 26px 30px; max-width: 900px; }
.cookie-main { gap: 16px 28px; }
.cookie-main p { line-height: 1.55; margin: 0; }
.cookie-actions { gap: 10px; }
@media (max-width: 680px) { .cookie-main { flex-direction: column; align-items: flex-start; } }

/* Gratis-paklijst-tool */
.gp-tool { margin-top: 30px; background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px,3vw,34px); box-shadow: var(--shadow-soft); }
.gp-tool-label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 8px; }
#pv-pick { width: 100%; border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: 13px 16px; font-family: var(--font-body); font-size: 1rem; background: var(--paper-2); color: var(--ink); outline: none; }
#pv-pick:focus { border-color: var(--lagune); background: var(--paper); }
.gp-tool-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.gp-tool-actions .btn { flex: 1 1 auto; }
#pv-recipient { width: 100%; margin-top: 12px; border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: 12px 16px; font-family: var(--font-body); font-size: 1rem; background: var(--paper-2); color: var(--ink); outline: none; }
#pv-recipient:focus { border-color: var(--lagune); background: var(--paper); }

/* ============================================================
   SEO/UX-ronde (v1.6): menu-tablet, sticky balk, cookie-reopen
   ============================================================ */
/* Tablet: maak ruimte voor 5 menu-items + CTA vlak vóór het hamburger-breakpoint */
@media (max-width: 1100px) and (min-width: 941px) {
  .header-search { display: none; }
  .main-nav { gap: 18px; margin-left: 0; }
  .main-nav a, .main-nav .menu-link { font-size: 0.9rem; }
}

/* Sticky actiebalk op mobiel (paklijst-detailpagina) */
.pl-stickybar, .pl-sticky-space { display: none; }
@media (max-width: 760px) {
  .pl-sticky-space { display: block; height: 72px; }
  .pl-stickybar { display: flex; gap: 10px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 120; background: rgba(251,246,236,0.97); backdrop-filter: blur(8px); border-top: 1px solid var(--line); padding: 10px 14px; box-shadow: 0 -8px 24px -16px rgba(22,36,58,0.4); }
  .pl-stickybar .btn { flex: 1; min-height: 46px; }
}

/* Cookievoorkeuren opnieuw openen vanuit de footer */
.link-reset { background: none; border: 0; padding: 0; font: inherit; color: inherit; cursor: pointer; text-decoration: underline; text-underline-offset: 2px; }
.link-reset:hover { color: var(--paper); }
