/* =====================================================================
   Vliegseintje — designsysteem (implementatie van Website-Plan §4).
   Tokens = CSS custom properties; daarna componenten. Self-hosted fonts.
   ===================================================================== */

/* ---------- Fonts (self-hosted, AVG — geen externe call) ---------- */
@font-face { font-family: "Inter"; font-style: normal; font-weight: 400;
  font-display: swap; src: url("/static/fonts/inter-400.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 500;
  font-display: swap; src: url("/static/fonts/inter-500.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 600;
  font-display: swap; src: url("/static/fonts/inter-600.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 600;
  font-display: swap; src: url("/static/fonts/poppins-600.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 700;
  font-display: swap; src: url("/static/fonts/poppins-700.woff2") format("woff2"); }

/* ---------- Tokens (§4.1–§4.3) ---------- */
:root {
  /* Kleuren */
  --color-primary: #2563EB;
  --color-primary-hover: #1D4FD7;
  --color-primary-soft: #E8F0FE;
  --color-accent: #FFB703;
  --color-accent-hover: #E9A100;
  --color-ink: #102A43;
  --color-body: #334E68;
  --color-muted: #5C748D;   /* AA: 4.84:1 op wit, 4.54:1 op surface (was #627D98 = 4.0:1, te laag) */
  --color-bg: #FFFFFF;
  --color-surface: #F5F8FC;
  --color-border: #E3E9F2;
  --color-success: #20A779;
  --color-success-soft: #E6F6EF;
  --color-warning: #F59E0B;
  --color-danger: #E5484D;
  --color-danger-soft: #FDECEA;

  /* Typografie */
  --font-head: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing-schaal */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px;

  /* Radii */
  --r-input: 10px; --r-card: 16px; --r-avatar: 12px; --r-pill: 999px;

  /* Schaduw */
  --shadow-card: 0 1px 2px rgba(16,42,67,.06), 0 4px 16px rgba(16,42,67,.06);
  --shadow-lift: 0 2px 4px rgba(16,42,67,.06), 0 12px 32px rgba(16,42,67,.10);

  --container: 1200px;

  /* Easing — sterke custom curves (Emil Kowalski: ingebouwde CSS-easings missen punch) */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);

  /* Vloeiende type-schaal (clamp, ratio ~1.25) — schaalt mee met de viewport */
  --fs-display: clamp(2.5rem, 1.45rem + 4.6vw, 4rem);   /* 40 → 64 */
  --fs-h1: clamp(2rem, 1.55rem + 2.0vw, 2.75rem);        /* 32 → 44 */
  --fs-h2: clamp(1.6rem, 1.32rem + 1.25vw, 2.1rem);      /* 26 → 34 */
  --fs-h3: clamp(1.2rem, 1.07rem + .55vw, 1.4rem);       /* 19 → 22 */
  --fs-lead: clamp(1.075rem, .99rem + .42vw, 1.25rem);   /* 17 → 20 */
}

/* ---------- Reset / basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-body);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--color-ink); margin: 0 0 var(--s-3); line-height: 1.15; letter-spacing: -.01em; }
h1 { font-size: var(--fs-h1); font-weight: 700; letter-spacing: -.025em; }
h2 { font-size: var(--fs-h2); font-weight: 600; letter-spacing: -.02em; }
h3 { font-size: var(--fs-h3); font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; }
p { margin: 0 0 var(--s-4); }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
strong { color: var(--color-ink); font-weight: 600; }
hr.soft { border: none; border-top: 1px solid var(--color-border); margin: var(--s-5) 0; }

/* Toegankelijkheid: zichtbare focus + skip-link */
:focus-visible { outline: 3px solid color-mix(in srgb, var(--color-primary) 45%, white); outline-offset: 2px; border-radius: 4px; }
.skip-link {
  position: absolute; left: var(--s-4); top: -60px; z-index: 100;
  background: var(--color-primary); color: #fff; padding: 10px 16px; border-radius: var(--r-input);
  transition: top .15s var(--ease);
}
.skip-link:focus { top: var(--s-4); text-decoration: none; }

/* ---------- Layout helpers ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--s-5); }
.section { padding: var(--s-8) 0; }
.section--tight { padding: var(--s-7) 0; }
.section--surface { background: var(--color-surface); }
.section__head { max-width: 680px; margin: 0 0 var(--s-6); }
.section__head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section .sub, .lead { color: var(--color-muted); }
.lead { font-size: var(--fs-lead); }
.muted { color: var(--color-muted); }
.center { text-align: center; }
.stack > * + * { margin-top: var(--s-4); }
.eyebrow {
  font-family: var(--font-head); font-weight: 600; font-size: 13px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--color-primary); margin: 0 0 var(--s-2);
}

.grid { display: grid; gap: var(--s-5); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Brand / logo ---------- */
.brand { display: inline-flex; align-items: center; gap: var(--s-2); font-family: var(--font-head);
  font-weight: 700; font-size: 19px; color: var(--color-ink); }
.brand:hover { text-decoration: none; }
.brand__mark { width: 30px; height: 30px; flex: none; }

/* ---------- Navbar ---------- */
/* Let op: GEEN backdrop-filter — dat zou de header de containing block maken voor het
   fixed mobiele menu (.nav__panel), waardoor dat menu inklapt. */
.nav { position: sticky; top: 0; z-index: 40; background: var(--color-bg);
  border-bottom: 1px solid var(--color-border); }
.nav__inner { display: flex; align-items: center; gap: var(--s-5); height: 68px; }
.nav__links { display: flex; align-items: center; gap: var(--s-5); }
.nav__spacer { flex: 1; }
.navlink { color: var(--color-body); font-weight: 500; font-size: 15px; }
.navlink:hover { color: var(--color-primary); text-decoration: none; }
.nav__actions { display: flex; align-items: center; gap: var(--s-3); }
.nav__toggle, .nav__close { display: none; }
.nav__panel { display: none; }   /* alleen zichtbaar in de mobiele media-query */

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  cursor: pointer; border: 1px solid transparent; padding: 11px 20px; border-radius: var(--r-input);
  font-family: var(--font-body); font-weight: 600; font-size: 16px; line-height: 1;
  background: var(--color-primary); color: #fff; transition: background .16s var(--ease-out), transform .14s var(--ease-out), box-shadow .16s var(--ease-out); }
.btn:hover { background: var(--color-primary-hover); text-decoration: none; color: #fff; }
.btn:active { transform: scale(.97); }   /* tactiele press-feedback (Emil) */
.btn.secondary { background: var(--color-primary-soft); color: var(--color-primary-hover); }
.btn.secondary:hover { background: #dbe7fd; color: var(--color-primary-hover); }
.btn.ghost { background: transparent; color: var(--color-body); border-color: var(--color-border); }
.btn.ghost:hover { background: var(--color-surface); color: var(--color-ink); }
.btn.accent { background: var(--color-accent); color: var(--color-ink); }
.btn.accent:hover { background: var(--color-accent-hover); color: var(--color-ink); }
.btn.danger { background: #fff; color: var(--color-danger); border-color: #f3c7c6; }
.btn.danger:hover { background: var(--color-danger-soft); }
.btn.block { display: flex; width: 100%; }
.btn.lg { padding: 14px 26px; font-size: 17px; }
.btn.sm { padding: 8px 14px; font-size: 14px; }
.cta-row { display: flex; flex-wrap: wrap; gap: var(--s-3); }

/* ---------- Cards / surfaces ---------- */
.card { background: var(--color-bg); border: 1px solid var(--color-border);
  border-radius: var(--r-card); padding: var(--s-5); box-shadow: var(--shadow-card); }
.card h3 { margin-bottom: var(--s-2); }
.card--pad-lg { padding: var(--s-6); }
.feature { }
.feature__icon { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-avatar); background: var(--color-primary-soft); color: var(--color-primary);
  margin-bottom: var(--s-3); }
.feature__icon.accent { background: #FFF4D6; color: var(--color-accent-hover); }
.feature__icon svg { width: 24px; height: 24px; }

/* Genummerde stappen */
.step__num { width: 38px; height: 38px; border-radius: var(--r-pill); display: inline-flex;
  align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700;
  background: var(--color-primary); color: #fff; margin-bottom: var(--s-3); }

/* ---------- Badges / pills ---------- */
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 11px; border-radius: var(--r-pill);
  font-size: 13px; font-weight: 600; line-height: 1.4; }
.badge.free { background: var(--color-primary-soft); color: var(--color-primary-hover); }
.badge.premium { background: #FFF4D6; color: #8A5A00; }   /* AA: 5.4:1 (was amber #E9A100 = 2.0:1) */
.badge.success { background: var(--color-success-soft); color: #0B6B48; }   /* AA: 5.9:1 (was #20A779 = 2.7:1) */
.badge.neutral { background: var(--color-surface); color: var(--color-muted); }
.tag { display: inline-block; padding: 3px 10px; border-radius: var(--r-pill); font-size: 12px;
  font-weight: 500; background: var(--color-surface); color: var(--color-muted); border: 1px solid var(--color-border); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: var(--s-8) 0 var(--s-7); }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 70% at 88% 6%, rgba(255,183,3,.14), transparent 60%),
    radial-gradient(55% 60% at 6% 0%, rgba(37,99,235,.10), transparent 55%); }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--s-7); align-items: center; }
.hero h1 { font-size: var(--fs-display); line-height: 1.0; letter-spacing: -.038em; }
.hero .lead { max-width: 34ch; margin-bottom: var(--s-5); }
.hero__trust { margin-top: var(--s-4); font-size: 14px; color: var(--color-muted); display: flex;
  align-items: center; gap: var(--s-2); flex-wrap: wrap; }

/* ---------- DealCard (voorbeeld-alert) ---------- */
.deal-card { background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--r-card);
  box-shadow: var(--shadow-card); padding: var(--s-4) var(--s-5); }
.deal-card__top { display: flex; align-items: center; gap: var(--s-2); margin-bottom: var(--s-2); }
.deal-card__route { font-family: var(--font-head); font-weight: 600; font-size: 18px; color: var(--color-ink); }
.deal-card__price { margin-left: auto; font-family: var(--font-head); font-weight: 700; font-size: 20px; color: var(--color-ink); }
.deal-card__meta { color: var(--color-muted); font-size: 14px; margin: 0; }
.deal-card__foot { display: flex; align-items: center; justify-content: space-between; gap: var(--s-3);
  margin-top: var(--s-3); }
.hero__phone { background: linear-gradient(180deg, #fff, var(--color-surface)); border: 1px solid var(--color-border);
  border-radius: 24px; box-shadow: var(--shadow-lift); padding: var(--s-5); }
.chat-line { display: flex; align-items: center; gap: var(--s-2); color: var(--color-muted);
  font-size: 13px; margin-bottom: var(--s-3); }

/* De "ping" — amber notificatiestip die licht pulseert */
.ping { position: relative; display: inline-block; width: 10px; height: 10px; }
.ping__dot { position: absolute; inset: 0; border-radius: 50%; background: var(--color-accent); }
.ping__ring { position: absolute; inset: 0; border-radius: 50%; background: var(--color-accent);
  opacity: .55; animation: ping 2s var(--ease) infinite; }
@keyframes ping { 0% { transform: scale(1); opacity: .55; } 70%,100% { transform: scale(2.4); opacity: 0; } }

/* ---------- Plan-kaarten (Free/Premium) ---------- */
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-5); align-items: start; }
.plan-card { background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--r-card);
  padding: var(--s-6); box-shadow: var(--shadow-card); position: relative; }
.plan-card.featured { border-color: var(--color-accent); box-shadow: 0 0 0 1px var(--color-accent), var(--shadow-lift); }
.plan-card__flag { position: absolute; top: -12px; right: var(--s-5); }
.plan-card .price { font-family: var(--font-head); font-weight: 700; font-size: 38px; color: var(--color-ink);
  margin: var(--s-3) 0; }
.plan-card .price small { font-size: 15px; font-weight: 500; color: var(--color-muted); }
.price { font-family: var(--font-head); font-weight: 700; }
.ticks { list-style: none; padding: 0; margin: var(--s-4) 0; }
.ticks li { padding: 7px 0 7px 30px; position: relative; color: var(--color-body); }
.ticks li::before { content: ""; position: absolute; left: 0; top: 11px; width: 18px; height: 18px;
  background: var(--color-success-soft); border-radius: 50%; }
.ticks li::after { content: ""; position: absolute; left: 6px; top: 14px; width: 6px; height: 9px;
  border: solid var(--color-success); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.ticks li.off { color: var(--color-muted); }
.ticks li.off::before { background: var(--color-surface); }
.ticks li.off::after { display: none; }

/* ---------- Vergelijkingstabel ---------- */
.compare { width: 100%; border-collapse: collapse; background: var(--color-bg);
  border: 1px solid var(--color-border); border-radius: var(--r-card); overflow: hidden; }
.compare th, .compare td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--color-border); }
.compare thead th { font-family: var(--font-head); background: var(--color-surface); }
.compare td.col { text-align: center; }
.compare tr:last-child td { border-bottom: none; }

/* ---------- Forms ---------- */
form .field { margin-bottom: var(--s-4); }
label { display: block; font-weight: 600; color: var(--color-ink); margin-bottom: 6px; font-size: 14px; }
input[type=text], input[type=email], input[type=number], input[type=tel], select, textarea {
  width: 100%; padding: 11px 13px; border: 1px solid var(--color-border); border-radius: var(--r-input);
  font-family: var(--font-body); font-size: 16px; background: #fff; color: var(--color-ink); transition: border-color .15s var(--ease), box-shadow .15s var(--ease); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-soft); }
textarea { min-height: 120px; resize: vertical; }
.help { color: var(--color-muted); font-size: 13px; margin-top: 5px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.checkrow { display: flex; flex-wrap: wrap; gap: var(--s-2); }
.checkrow label { font-weight: 500; border: 1px solid var(--color-border); border-radius: var(--r-pill);
  padding: 8px 15px; cursor: pointer; background: #fff; margin: 0; user-select: none; }
.checkrow input { display: none; }
.checkrow label:has(input:checked) { border-color: var(--color-primary); background: var(--color-primary-soft);
  color: var(--color-primary-hover); }

/* ---------- Flash / alerts ---------- */
.flash { padding: 13px 16px; border-radius: var(--r-input); margin: var(--s-4) 0; font-weight: 500;
  border: 1px solid transparent; }
.flash.ok { background: var(--color-success-soft); color: #0b6b48; border-color: #bfe7d6; }
.flash.err { background: var(--color-danger-soft); color: #b42318; border-color: #f3c7c6; }
.flash.info { background: var(--color-primary-soft); color: var(--color-primary-hover); border-color: #cfe0fc; }
.flash.warn { background: #FEF4E2; color: #92400e; border-color: #fbe0b6; }

/* ---------- Deals (dashboard-lijst — namen behouden) ---------- */
.deal-group { margin-bottom: var(--s-5); }
.deal-group h4 { margin: 0 0 var(--s-3); color: var(--color-muted); font-size: 13px; text-transform: uppercase; letter-spacing: .05em; }
.deal { display: flex; align-items: center; gap: var(--s-4); padding: 14px 18px; border: 1px solid var(--color-border);
  border-radius: var(--r-input); background: #fff; margin-bottom: var(--s-2); box-shadow: var(--shadow-card); }
.deal .price-tag { font-family: var(--font-head); font-weight: 700; font-size: 18px; min-width: 92px; color: var(--color-ink); }
.deal .route { font-weight: 600; color: var(--color-ink); }
.deal .when { color: var(--color-muted); font-size: 14px; margin-left: auto; }

/* ---------- Empty state ---------- */
.empty { text-align: center; padding: var(--s-7) var(--s-5); border: 1px dashed var(--color-border);
  border-radius: var(--r-card); background: var(--color-surface); }
.empty__icon { width: 56px; height: 56px; margin: 0 auto var(--s-4); display: flex; align-items: center;
  justify-content: center; border-radius: var(--r-pill); background: var(--color-primary-soft); color: var(--color-primary); }

/* ---------- Accordion (FAQ — no-JS via <details>) ---------- */
.accordion { border: 1px solid var(--color-border); border-radius: var(--r-card); overflow: hidden; background: #fff; }
.accordion details { border-bottom: 1px solid var(--color-border); }
.accordion details:last-child { border-bottom: none; }
.accordion summary { list-style: none; cursor: pointer; padding: 18px 20px; font-family: var(--font-head);
  font-weight: 600; color: var(--color-ink); display: flex; align-items: center; justify-content: space-between; gap: var(--s-3); }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; font-size: 22px; color: var(--color-muted); font-weight: 400; line-height: 1; }
.accordion details[open] summary::after { content: "−"; }
.accordion .acc__body { padding: 0 20px 18px; color: var(--color-body); }
.accordion .acc__body p:last-child { margin-bottom: 0; }

/* ---------- App-shell (ingelogd) ---------- */
.app-shell { display: grid; grid-template-columns: 232px 1fr; gap: var(--s-6); align-items: start;
  padding: var(--s-6) 0; }
.app-side { position: sticky; top: 84px; }
.app-side .side-link { display: flex; align-items: center; gap: var(--s-3); padding: 10px 14px;
  border-radius: var(--r-input); color: var(--color-body); font-weight: 500; }
.app-side .side-link:hover { background: var(--color-surface); text-decoration: none; color: var(--color-ink); }
.app-side .side-link.active { background: var(--color-primary-soft); color: var(--color-primary-hover); }
.app-side .side-link svg { width: 19px; height: 19px; flex: none; }

/* ---------- Blog ---------- */
.blog-card { display: flex; flex-direction: column; height: 100%; }
.blog-card .tag-row { margin-bottom: var(--s-3); display: flex; gap: var(--s-2); flex-wrap: wrap; }
.blog-card h3 a { color: var(--color-ink); }
.blog-card .meta { color: var(--color-muted); font-size: 14px; margin-top: auto; }
.prose { max-width: 720px; }
.prose h2 { font-size: 26px; margin-top: var(--s-6); }
.prose h3 { font-size: 20px; margin-top: var(--s-5); }
.prose p, .prose li { color: var(--color-body); }
.prose ul, .prose ol { padding-left: var(--s-5); margin: 0 0 var(--s-4); }
.prose li { margin-bottom: 6px; }
.prose a { text-decoration: underline; }
/* Blockquote = nette getinte "note"-callout (o.a. de juridische Concept-meldingen),
   geen losse accent-rand-tab. */
.prose blockquote { margin: var(--s-5) 0; padding: var(--s-4) var(--s-5); border-radius: var(--r-input);
  background: #FFF8E8; border: 1px solid #F2E3B8; color: var(--color-body); }
.prose blockquote p:last-child { margin-bottom: 0; }

/* ---------- Bestemmingen ---------- */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
.dest-card { position: relative; }
.dest-card .city { font-family: var(--font-head); font-weight: 600; font-size: 18px; color: var(--color-ink); }
.dest-card .country { color: var(--color-muted); font-size: 14px; }
.dest-card .pricelabel { font-family: var(--font-head); font-weight: 700; color: var(--color-ink); font-size: 20px; }
.filters { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-bottom: var(--s-5); }

/* ---------- CTA-band ---------- */
.cta-band { background: var(--color-primary); color: #fff; border-radius: var(--r-card); padding: var(--s-7);
  text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); }
.cta-band .btn.accent { box-shadow: var(--shadow-lift); }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-ink); color: #cdd9e6; margin-top: var(--s-8); padding: var(--s-8) 0 var(--s-6); }
.site-footer a { color: #cdd9e6; }
.site-footer a:hover { color: #fff; }
.footer__cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--s-6); }
.footer__brand .brand { color: #fff; }
.footer__brand .brand__mark { filter: none; }
.footer h5 { font-family: var(--font-head); color: #fff; font-size: 14px; letter-spacing: .04em;
  text-transform: uppercase; margin: 0 0 var(--s-3); }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; font-size: 15px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: var(--s-7); padding-top: var(--s-5);
  display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: space-between; align-items: center;
  font-size: 14px; color: #9fb3c8; }

/* ---------- Type-utilities / responsive schaal ---------- */
.display { font-family: var(--font-head); font-weight: 700; }
@media (max-width: 980px) {
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .app-shell { grid-template-columns: 1fr; }
  .app-side { position: static; display: flex; gap: var(--s-2); overflow-x: auto; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__phone { max-width: 420px; }
}
@media (max-width: 760px) {
  .container { padding: 0 var(--s-4); }
  .hero { padding: var(--s-6) 0; }
  .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  /* Mobiel nav-drawer */
  .nav__links, .nav__actions { display: none; }
  .nav__toggle { display: inline-flex; }
  #navtoggle:checked ~ .nav__panel { display: block; }
  .nav__panel { display: none; position: fixed; inset: 68px 0 0; background: var(--color-bg);
    border-top: 1px solid var(--color-border); padding: var(--s-5); z-index: 39; overflow-y: auto; }
  .nav__panel .nav__links, .nav__panel .nav__actions { display: flex; flex-direction: column;
    align-items: stretch; gap: var(--s-3); }
  .nav__panel .navlink { padding: 10px 0; font-size: 18px; border-bottom: 1px solid var(--color-border); }
  .nav__panel .btn { width: 100%; }
}
.nav__toggle { background: none; border: 1px solid var(--color-border); border-radius: var(--r-input);
  width: 42px; height: 42px; cursor: pointer; align-items: center; justify-content: center; }
.nav__toggle svg { width: 22px; height: 22px; color: var(--color-ink); }
/* Zichtbare toetsenbord-focus op de hamburger (de checkbox zelf staat off-screen). */
#navtoggle:focus-visible ~ .nav__toggle { outline: 3px solid color-mix(in srgb, var(--color-primary) 45%, white);
  outline-offset: 2px; }

/* ---------- Motion-respect ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .ping__ring { display: none; }
  /* Geen beweging: toon alles meteen, schrap hover-lift (Emil: behoud opacity/kleur, schrap transform) */
  .reveal, .reveal-group > * { animation: none !important; opacity: 1 !important; transform: none !important; }
  .card-lift:hover, .deal-card:hover, .dest-card:hover, .blog-card:hover { transform: none !important; }
}

/* =====================================================================
   Refresh-laag: diepte, motion en layout-diversificatie.
   (taste-skill: richting · impeccable: productie · emil-design-eng: craft)
   ===================================================================== */

/* .reveal / .reveal-group blijven als opt-in haakjes bestaan, maar verbergen niets:
   een opacity:0-entrance kan content verborgen laten als de animatieklok niet draait
   (achtergrondtab, headless render). Motion zit daarom in interacties (press, hover-lift,
   ping), die nooit content verbergen. */

/* Hover-lift voor kaarten — alleen op echte hover-apparaten (Emil). */
@media (hover: hover) and (pointer: fine) {
  .card-lift, .deal-card, .dest-card, .blog-card {
    transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out); }
  .card-lift:hover, .deal-card:hover, .dest-card:hover, .blog-card:hover {
    transform: translateY(-3px); box-shadow: var(--shadow-lift); }
}

/* Hero: gelaagde diepte achter de DealCard-stapel. */
.hero__stack { position: relative; }
.hero__stack::before, .hero__stack::after { content: ""; position: absolute; inset: 0;
  border-radius: 24px; border: 1px solid var(--color-border); background: var(--color-bg);
  box-shadow: var(--shadow-card); z-index: -1; }
.hero__stack::before { transform: rotate(-2.5deg) translateY(12px) scale(.96); opacity: .5; }
.hero__stack::after { transform: rotate(1.6deg) translateY(7px) scale(.985); opacity: .8; }

/* "Hoe het werkt" als genummerde flow i.p.v. drie identieke kaarten. */
.steps-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-6); }
.steps-flow .step { padding-top: var(--s-4); border-top: 2px solid var(--color-border); }
.steps-flow .step .num { font-family: var(--font-head); font-weight: 700; font-size: 14px;
  letter-spacing: .06em; color: var(--color-primary); }
.steps-flow .step.is-amber { border-top-color: var(--color-accent); }
.steps-flow .step.is-amber .num { color: var(--color-accent-hover); }
.steps-flow .step h3 { margin: var(--s-3) 0 var(--s-2); }
@media (max-width: 760px) { .steps-flow { grid-template-columns: 1fr; gap: var(--s-5); } }

/* Waardeproposities: verdeeld raster zonder kaart-chroom (groeperen met lijnen). */
.vprops { display: grid; grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--color-border); border-radius: var(--r-card); overflow: hidden; }
.vprops .vprop { padding: var(--s-6);
  border-right: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.vprops .vprop:nth-child(2n) { border-right: none; }
.vprops .vprop:nth-last-child(-n+2) { border-bottom: none; }
.vprops .vprop h3 { font-size: 18px; margin: var(--s-3) 0 6px; }
@media (max-width: 760px) {
  .vprops { grid-template-columns: 1fr; }
  .vprops .vprop { border-right: none; }
  .vprops .vprop:last-child { border-bottom: none; }
}

/* DealCard-signatuur: subtiele perforatie-hint (boarding pass) boven de metaregel. */
.deal-card.signature .deal-card__meta { border-top: 1px dashed var(--color-border);
  margin-top: var(--s-3); padding-top: var(--s-3); }

/* =====================================================================
   /preferences — vriendelijke, klikbare invoer (zoek-en-kies, chips).
   ===================================================================== */
.field-block { margin-bottom: var(--s-7); }
.field-label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 17px;
  color: var(--color-ink); margin-bottom: 4px; }
.field-help { color: var(--color-muted); font-size: 14px; margin: 0 0 var(--s-3); }

/* Gekozen-chips (luchthavens) */
.chips { display: flex; flex-wrap: wrap; gap: var(--s-2); }
.chips:not(:empty) { margin-bottom: var(--s-2); }
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 6px 6px 6px 12px;
  border-radius: var(--r-pill); background: var(--color-primary-soft); color: var(--color-primary-hover);
  font-size: 14px; font-weight: 500; }
.chip-x { border: none; background: none; cursor: pointer; color: var(--color-primary-hover);
  font-size: 17px; line-height: 1; padding: 0 4px; border-radius: 50%; }
.chip-x:hover { background: rgba(37,99,235,.12); }

/* Zoek-en-kies dropdown */
.picker-input-wrap { position: relative; }
.picker-list { position: absolute; top: calc(100% + 4px); left: 0; right: 0; z-index: 30;
  background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--r-input);
  box-shadow: var(--shadow-lift); max-height: 280px; overflow-y: auto; padding: 4px; }
.picker-item { display: flex; align-items: baseline; gap: 8px; width: 100%; text-align: left;
  padding: 10px 12px; border: none; background: none; cursor: pointer; border-radius: 8px;
  font-size: 15px; color: var(--color-body); }
.picker-item:hover, .picker-item.is-active { background: var(--color-primary-soft); }
.picker-item strong { color: var(--color-ink); font-weight: 600; }
.picker-item .picker-city { color: var(--color-muted); font-size: 13px; }
.picker-item .picker-code { margin-left: auto; color: var(--color-muted); font-size: 12px;
  font-weight: 600; letter-spacing: .03em; }
.picker-note { color: var(--color-muted); font-size: 13px; margin: 8px 0 0; }

/* Prijs-invoer met € ervoor */
.euro-input { display: inline-flex; align-items: center; border: 1px solid var(--color-border);
  border-radius: var(--r-input); padding-left: 14px; max-width: 220px; transition: border-color .15s var(--ease-out), box-shadow .15s var(--ease-out); }
.euro-input:focus-within { border-color: var(--color-primary); box-shadow: 0 0 0 3px var(--color-primary-soft); }
.euro-sign { color: var(--color-muted); font-weight: 600; }
.euro-input input { border: none; box-shadow: none !important; padding: 11px 12px; width: 140px; }

/* Nachten-chips + eigen aantal */
.day-chips { display: flex; flex-wrap: wrap; gap: var(--s-2); }
.day-chip, .country-chip { padding: 9px 14px; border: 1px solid var(--color-border); border-radius: var(--r-pill);
  background: #fff; cursor: pointer; font-weight: 500; font-size: 14px; color: var(--color-body);
  transition: border-color .12s var(--ease-out), background .12s var(--ease-out); }
.day-chip:hover, .country-chip:hover { border-color: var(--color-muted); }
.day-chip.is-on, .country-chip.is-on { background: var(--color-primary-soft);
  border-color: var(--color-primary); color: var(--color-primary-hover); }
.day-custom { display: flex; gap: var(--s-2); align-items: center; margin-top: var(--s-3); }
.day-custom-input { max-width: 150px; }

/* Keuze-kaarten (wanneer bericht) */
.choice-cards { display: grid; gap: var(--s-3); }
.choice-card { display: flex; gap: var(--s-3); align-items: flex-start; border: 1px solid var(--color-border);
  border-radius: var(--r-card); padding: 14px 16px; cursor: pointer; transition: border-color .12s var(--ease-out), background .12s var(--ease-out); }
.choice-card input { margin-top: 4px; flex: none; }
.choice-card:has(input:checked) { border-color: var(--color-primary); background: var(--color-primary-soft); }
.choice-body { display: flex; flex-direction: column; gap: 3px; }
.choice-title { font-family: var(--font-head); font-weight: 600; color: var(--color-ink); }
.choice-desc { color: var(--color-muted); font-size: 14px; }

/* Segmented control (bestemmingsfilter) */
.seg { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-bottom: var(--s-3); }
.seg-item { border: 1px solid var(--color-border); border-radius: var(--r-pill); padding: 8px 14px;
  cursor: pointer; font-size: 14px; font-weight: 500; color: var(--color-body); }
.seg-item input { display: none; }
.seg-item:has(input:checked) { border-color: var(--color-primary); background: var(--color-primary-soft);
  color: var(--color-primary-hover); }
.country-grid { display: flex; flex-wrap: wrap; gap: var(--s-2); }
