/* ═══════════════════════════════════════════════════════════════
   SHE.FEM — Fonts (self-hosted, latin + latin-ext)
   Inter (sans) · Playfair Display (serif)
   ═══════════════════════════════════════════════════════════════ */
@font-face {
  font-family: 'Inter'; font-style: normal; font-weight: 400 700; font-display: swap;
  src: url('fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter'; font-style: normal; font-weight: 400 700; font-display: swap;
  src: url('fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display'; font-style: normal; font-weight: 400 700; font-display: swap;
  src: url('fonts/playfair-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Playfair Display'; font-style: normal; font-weight: 400 700; font-display: swap;
  src: url('fonts/playfair-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display'; font-style: italic; font-weight: 400 600; font-display: swap;
  src: url('fonts/playfair-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Playfair Display'; font-style: italic; font-weight: 400 600; font-display: swap;
  src: url('fonts/playfair-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ═══════════════════════════════════════════════════════════════
   SHE.FEM — Landingspagina
   Definitief Kleursysteem v1 · Playfair Display + Inter
   Mobile-first. Twee stijlvarianten via [data-variant] op <html>.
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Layered palette */
  --mist:      #F8F3EF;
  --blush:     #F1E6E1;
  --mauve:     #E2C6D0;
  --soft-plum: #BE8EAF;
  --plum:      #8E5F6F;
  --deep-plum: #5E3345;
  --aubergine: #351D27;
  --gold:      #D4AF6A;
  --soft-gold: #E9D4AE;

  --ink:       #351D27;
  --ink-soft:  #6E5460;
  --ink-mute:  #9A828B;
  --on-dark:   #F3E9EC;
  --on-dark-soft: rgba(243, 233, 236, 0.72);

  --line:      rgba(53, 29, 39, 0.12);
  --line-dark: rgba(243, 233, 236, 0.18);

  /* Type */
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --maxw: 1180px;
  --readw: 680px;
  --sp-section: clamp(72px, 11vw, 132px);
  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-2xl: 30px;

  --shadow-sm: 0 2px 10px rgba(53, 29, 39, 0.05);
  --shadow-md: 0 14px 40px rgba(53, 29, 39, 0.10);
  --shadow-lg: 0 30px 80px rgba(53, 29, 39, 0.16);
  --shadow-glow: 0 8px 30px rgba(212, 175, 106, 0.40);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--mist);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--plum); outline-offset: 3px; border-radius: 4px; }

/* ── Typography ───────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; color: var(--ink); margin: 0; line-height: 1.12; letter-spacing: -0.01em; }
.display { font-size: clamp(2.6rem, 6.4vw, 4.6rem); font-weight: 600; line-height: 1.05; }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
em, .it { font-style: italic; }
.serif-em { font-family: var(--serif); font-style: italic; font-weight: 500; }
p { margin: 0 0 1.1em; text-wrap: pretty; }
.lead { font-size: clamp(1.12rem, 1.8vw, 1.32rem); line-height: 1.62; color: var(--ink-soft); }
/* Adem onder een sectiekop. De marge stond op 0, waardoor de introtekst
   tegen de kop plakte — vooral op mobiel, waar koppen over meerdere regels
   afbreken. h2 wordt op deze site uitsluitend voor sectiekoppen gebruikt
   (kaarten gebruiken h3, de footer h4, de hero .display), dus dit raakt
   alleen de sectie-intro's. Werkt ongeacht of de kop wordt gevolgd door een
   .lead, een gewone <p> of een <div> met tekst. */
h2 { margin-bottom: clamp(18px, 2vw, 24px); }
.eyebrow {
  font-family: var(--sans); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--plum);
  margin: 0 0 18px; display: inline-block;
}
.eyebrow.gold { color: #B8923F; }

/* ── Layout primitives ────────────────────────────────────────── */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--sp-section) 0; }
.section.tight { padding: clamp(48px, 7vw, 88px) 0; }
.center { text-align: center; }
.readable { max-width: var(--readw); }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Section backgrounds (layer rhythm) */
.bg-mist  { background: var(--mist); }
.bg-blush { background: var(--blush); }
.bg-mauve { background: var(--mauve); }
.bg-plum      { background: var(--plum);      color: var(--on-dark); }
.bg-deepplum  { background: var(--deep-plum); color: var(--on-dark); }
.bg-aubergine { background: var(--aubergine); color: var(--on-dark); }
.bg-plum h1, .bg-plum h2, .bg-plum h3,
.bg-deepplum h1, .bg-deepplum h2, .bg-deepplum h3,
.bg-aubergine h1, .bg-aubergine h2, .bg-aubergine h3 { color: #fff; }
.bg-plum .lead, .bg-deepplum .lead, .bg-aubergine .lead { color: var(--on-dark-soft); }
.bg-grad-mist-blush { background: linear-gradient(180deg, var(--mist) 0%, var(--blush) 100%); }
.bg-grad-blush-mauve { background: linear-gradient(180deg, var(--blush) 0%, var(--mauve) 100%); }

/* Soft gold hairline */
.rule-gold { width: 56px; height: 2px; background: var(--gold); border: 0; margin: 0 0 22px; }
.center .rule-gold { margin-left: auto; margin-right: auto; }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 1rem; font-weight: 600;
  padding: 16px 28px; border-radius: var(--radius-lg);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform 0.24s var(--ease), background 0.24s var(--ease), box-shadow 0.24s var(--ease), color 0.24s var(--ease);
  text-align: center;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary { background: var(--deep-plum); color: var(--mist); }
.btn-primary:hover { background: var(--aubergine); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold); color: var(--aubergine); }
.btn-gold:hover { background: var(--soft-gold); transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--plum); color: var(--deep-plum); background: rgba(142,95,111,0.05); }
.btn-on-dark { background: var(--soft-gold); color: var(--aubergine); }
.btn-on-dark:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn-block { width: 100%; justify-content: center; }
.micro { font-size: 0.85rem; color: var(--ink-mute); margin-top: 12px; }
.bg-aubergine .micro, .bg-deepplum .micro, .bg-plum .micro { color: var(--on-dark-soft); }

/* ── Header ───────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 14px 24px;
  background: rgba(248, 243, 239, 0.0);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(248, 243, 239, 0.82);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-lock { display: flex; flex-direction: column; gap: 3px; line-height: 1; }
.payoff-mini { font-family: var(--sans); font-size: 0.58rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
[data-variant="a"] .site-header:not(.scrolled) .payoff-mini { color: var(--soft-gold); }
/* Officieel logo (merkteken + wordmark + payoff) als één SVG-lockup.
   Op mobiel verdwijnt de nav achter de hamburger → ruimte voor iets groter. */
.brand img { height: 42px; width: auto; display: block; }
@media (max-width: 760px) { .brand img { height: 44px; } }
@media (max-width: 420px) { .brand img { height: 38px; } }
.brand .mark { width: 30px; height: 30px; }
.brand .wordmark { font-family: var(--serif); font-weight: 600; font-size: 1.2rem; letter-spacing: 0.14em; color: var(--aubergine); }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-size: 0.94rem; font-weight: 500; color: var(--ink-soft); transition: color 0.2s; }
.nav a:hover { color: var(--deep-plum); }
.nav-cta { display: inline-flex; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; color: var(--ink); }
/* header over dark hero (variant A only): light text until scrolled */
[data-variant="a"] .site-header:not(.scrolled) .wordmark { color: #fff; }
[data-variant="a"] .site-header:not(.scrolled) .nav a { color: rgba(255,255,255,0.86); }
[data-variant="a"] .site-header:not(.scrolled) .nav a:hover { color: #fff; }
[data-variant="a"] .site-header:not(.scrolled) .brand .mark .ring { stroke: #fff; }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero { position: relative; isolation: isolate; }
.hero-media { position: relative; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; pointer-events: none; }
.hero-content { position: relative; }
.hero .display { margin-bottom: 22px; }
.hero .lead { max-width: 34ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 30px; }

/* Variant A — full-bleed photo, overlay, text bottom-left, light */
[data-variant="a"] .hero { min-height: 92vh; display: flex; flex-direction: column; justify-content: flex-end; padding-top: 104px; }
[data-variant="a"] .hero .wrap { position: static; }
[data-variant="a"] .hero-media { position: absolute; inset: 0; z-index: 0; }
[data-variant="a"] .hero-overlay {
  background:
    linear-gradient(90deg, rgba(53,29,39,0.58) 0%, rgba(53,29,39,0.22) 46%, rgba(53,29,39,0) 78%),
    linear-gradient(180deg, rgba(53,29,39,0.34) 0%, rgba(53,29,39,0.10) 38%, rgba(53,29,39,0.60) 100%);
}
[data-variant="a"] .hero-content { position: relative; z-index: 2; padding: 0 0 clamp(56px, 9vh, 110px); max-width: 760px; }
[data-variant="a"] .hero .display { color: #fff; }
[data-variant="a"] .hero .lead { color: rgba(255,255,255,0.9); }
[data-variant="a"] .hero .eyebrow { color: var(--soft-gold); }
[data-variant="a"] .hero .micro { color: rgba(255,255,255,0.8); }
[data-variant="a"] .hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.5); }
[data-variant="a"] .hero .btn-ghost:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,0.12); }

/* Variant B — split: text left on mist, photo right in rounded card, dark text */
[data-variant="b"] .hero { background: linear-gradient(180deg, var(--mist) 0%, var(--blush) 100%); padding-top: 116px; }
[data-variant="b"] .hero .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; min-height: 80vh; }
[data-variant="b"] .hero-content { padding: 40px 0; }
[data-variant="b"] .hero-media {
  border-radius: var(--radius-2xl); box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5; align-self: center;
}
[data-variant="b"] .hero-overlay { display: none; }
[data-variant="b"] .hero .display { color: var(--aubergine); }

/* ── Feature grid (Wat is SHE.FEM) ────────────────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.feature {
  background: var(--mist); border: 1px solid var(--line); border-radius: var(--radius-xl);
  padding: 32px 28px; transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), background 0.28s var(--ease);
}
.bg-blush .feature { background: #fff; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature .ico {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  background: var(--blush); color: var(--deep-plum); margin-bottom: 20px;
}
.bg-blush .feature .ico { background: var(--mist); }
.feature .ico svg { width: 25px; height: 25px; stroke-width: 1.5; }
.feature h3 { font-size: 1.28rem; margin-bottom: 9px; }
.feature p { color: var(--ink-soft); font-size: 0.98rem; margin: 0; line-height: 1.6; }

/* ── Editorial split (recognition, founder) ───────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media img { width: 100%; border-radius: var(--radius-xl); box-shadow: var(--shadow-md); aspect-ratio: 4/5; object-fit: cover; }
.split-body .eyebrow { margin-top: 0; }
.founder-quote {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 2.3vw, 1.7rem);
  line-height: 1.4; color: var(--deep-plum); border-left: 3px solid var(--gold);
  padding-left: 24px; margin: 26px 0 0;
}
.bg-deepplum .founder-quote, .bg-aubergine .founder-quote { color: var(--soft-gold); border-color: var(--soft-gold); }

/* ── De reis (vervangt platform preview) ──────────────────────── */
.reis-head { max-width: 780px; margin-bottom: 54px; }
.reis-row { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.reis-media img { width: 100%; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; }
.reis-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.reis-steps li { display: flex; gap: 22px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--line-dark); }
.reis-steps li:first-child { padding-top: 0; }
.reis-steps li:last-child { border-bottom: none; padding-bottom: 0; }
.reis-num { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; color: var(--soft-gold); line-height: 1; flex-shrink: 0; min-width: 46px; }
.reis-ico { width: 48px; height: 48px; border-radius: 50%; background: rgba(233,212,174,0.14); color: var(--soft-gold); display: grid; place-items: center; flex-shrink: 0; }
.reis-ico svg { width: 23px; height: 23px; stroke-width: 1.5; }
.reis-steps b { font-family: var(--serif); font-weight: 600; font-size: 1.34rem; color: #fff; display: block; margin-bottom: 5px; }
.reis-steps span { color: var(--on-dark-soft); font-size: 1rem; line-height: 1.6; }
.reis-foot { color: var(--soft-gold); max-width: 760px; margin: 52px auto 0; font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 2.6vw, 1.95rem); line-height: 1.38; text-align: center; }

/* ── Forms ────────────────────────────────────────────────────── */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-2xl);
  padding: clamp(28px, 4vw, 48px); box-shadow: var(--shadow-md);
}
.bg-aubergine .form-card, .bg-deepplum .form-card { background: var(--mist); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; color: var(--ink-soft); }
.field label .opt { color: var(--ink-mute); font-weight: 500; }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-lg);
  background: var(--mist); transition: border-color 0.2s, box-shadow 0.2s; width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--plum); box-shadow: 0 0 0 3px rgba(142,95,111,0.16);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); }
.form-foot { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.form-note { font-size: 0.82rem; color: var(--ink-mute); }
.form-success { display: none; text-align: center; padding: 18px 0; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 16px; margin-top: 2px; }
.chk { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 0.95rem; color: var(--ink-soft); font-weight: 500; }
.chk input { width: auto; accent-color: var(--plum); flex-shrink: 0; }
@media (max-width: 560px) { .check-grid { grid-template-columns: 1fr; } }.form-success .ico {
  width: 64px; height: 64px; border-radius: 50%; background: var(--blush); color: var(--deep-plum);
  display: grid; place-items: center; margin: 0 auto 20px;
}
.form-success .ico svg { width: 30px; height: 30px; stroke-width: 1.5; }
form.sent .form-body { display: none; }
form.sent .form-success { display: block; animation: rise 0.5s var(--ease) both; }

/* ── Exclusivity band ─────────────────────────────────────────── */
.perks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.perk { text-align: center; padding: 8px; }
.perk .num { font-family: var(--serif); font-size: 2.6rem; font-weight: 600; color: var(--soft-gold); line-height: 1; display: block; margin-bottom: 14px; }
.perk h3 { color: #fff; font-size: 1.18rem; margin-bottom: 8px; }
.perk p { color: var(--on-dark-soft); font-size: 0.96rem; margin: 0; }

/* ── Professionals (compact) ──────────────────────────────────── */
.pro-band { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; }
.pro-band .pro-text { max-width: 620px; }
.pro-band .pro-text p { margin: 0; }

/* ── Social / follow ──────────────────────────────────────────── */
.socials { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 30px; }
.social-chip {
  display: inline-flex; align-items: center; gap: 10px; padding: 13px 22px;
  border: 1.5px solid var(--line); border-radius: 999px; font-weight: 600; font-size: 0.96rem;
  transition: all 0.24s var(--ease); background: #fff;
}
.social-chip:hover { border-color: var(--plum); color: var(--deep-plum); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.social-chip svg { width: 19px; height: 19px; stroke-width: 1.5; color: var(--plum); }

/* ── Footer ───────────────────────────────────────────────────── */
.site-footer { background: var(--aubergine); color: var(--on-dark); padding: 72px 0 36px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .wordmark { color: #fff; font-size: 1.4rem; }
.footer-brand img { height: 52px; width: auto; display: block; margin-bottom: 18px; }
.footer-brand p { color: var(--on-dark-soft); font-size: 0.96rem; max-width: 320px; }
.footer-col h4 { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--soft-gold); margin-bottom: 16px; font-weight: 700; }
.footer-col a, .footer-col p { display: block; color: var(--on-dark-soft); font-size: 0.96rem; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bot { display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between; align-items: center; padding-top: 26px; border-top: 1px solid var(--line-dark); }
.footer-bot p { color: var(--on-dark-soft); font-size: 0.86rem; margin: 0; }
.payoff { font-family: var(--sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: var(--soft-gold); }

/* ── Scroll reveal ────────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
}
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 920px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .perks { gap: 28px; }
}
@media (max-width: 760px) {
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 20px;
    position: absolute; top: 100%; right: 16px; left: 16px; padding: 22px 24px;
    background: rgba(248,243,239,0.97); backdrop-filter: blur(12px);
    border-radius: var(--radius-xl); box-shadow: var(--shadow-md);
  }
  .nav.open a { color: var(--ink); }
  .nav-toggle { display: inline-flex; }
  [data-variant="b"] .hero .wrap { grid-template-columns: 1fr; }
  [data-variant="b"] .hero-media { order: -1; aspect-ratio: 16/11; max-height: 50vh; }
  .split, .split.reverse .split-media, .reis-row { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: -1; }
  .split-media { order: 0; }
  .reis-media { order: -1; }
  .reis-row { gap: 36px; }
  .form-grid { grid-template-columns: 1fr; }
  .perks { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .pro-band { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 460px) {
  .feature-grid { grid-template-columns: 1fr; }
  body { font-size: 16px; }
}

/* ═══════════════════════════════════════════════════
   Editorial herindeling
   ═══════════════════════════════════════════════════ */

/* Wat — bredere intro */
.readable-wide { max-width: 920px; }

/* De realiteit (#waarom) — twee uitgelijnde rijen + aangesloten quote-band */
#waarom { padding-bottom: 0; }
.why-row { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: clamp(32px, 5vw, 72px); align-items: stretch; }
.why-row.alt { grid-template-columns: 0.96fr 1.04fr; }
.why-row + .why-row { margin-top: clamp(30px, 4.5vw, 60px); }
.why-text { align-self: center; }
.why-text .eyebrow { margin-top: 0; }
.why-text p { margin-bottom: 0; }
.why-media { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); min-height: clamp(260px, 30vw, 400px); }
.why-media img { width: 100%; height: 100%; object-fit: cover; }
.why-quoteband { background: var(--mauve); margin-top: clamp(54px, 8vw, 100px); padding: clamp(52px, 7vw, 88px) 0; }
.why-quoteband .wrap { text-align: center; }
.why-quote-big { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(1.5rem, 2.7vw, 2.05rem); line-height: 1.42; color: var(--deep-plum); max-width: 900px; margin: 0 auto; }
.why-quote-big::before { content: ''; display: block; width: 48px; height: 2px; background: var(--gold); margin: 0 auto 26px; }

/* Feature-kaarten — foto met SHE.FEM-kleurfilter, leesbare tekst */
.bg-blush .feature { background: var(--aubergine); border: 0; padding: 0; }
.feature { position: relative; overflow: hidden; isolation: isolate; min-height: clamp(300px, 26vw, 360px); display: flex; }
.feat-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; z-index: 0; filter: grayscale(0.55) saturate(1.05) brightness(0.9); transition: transform 0.5s var(--ease); }
.feature:hover .feat-bg { transform: scale(1.05); }
.feature::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(165deg, rgba(94,51,69,0.52) 0%, rgba(53,29,39,0.6) 100%); mix-blend-mode: multiply; }
.feature::before { content: ''; position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgba(24,12,18,0.82) 0%, rgba(28,15,21,0.42) 42%, rgba(30,16,22,0.08) 100%); }
.feat-body { position: relative; z-index: 3; padding: 30px 28px; margin-top: 0; color: #fff; }
.bg-blush .feature .ico { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--gold); color: var(--aubergine); margin-bottom: 16px; box-shadow: 0 6px 18px rgba(24,12,18,0.35); }
.bg-blush .feature .ico svg { width: 25px; height: 25px; stroke-width: 1.6; }
.feature h3 { font-size: 1.28rem; margin-bottom: 8px; color: #fff; }
.feature p { color: rgba(255,255,255,0.88); font-size: 0.98rem; margin: 0; line-height: 1.58; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* De reis — inleiding breed onder de titel; daarna foto links, stappen rechts (origineel) */
.reis-head { max-width: 1040px; margin-bottom: clamp(40px, 5vw, 60px); display: block; }
.reis-head h2 { max-width: 760px; }
.reis-head .lead { margin: 18px 0 0; max-width: 1040px; }

/* Over Femke — zelfde ritme als ‘De realiteit’ (why-rows + aangesloten quote-band) */
#femke { padding-bottom: 0; }

/* Founder — afsluitzin loopt door als laatste regel van de brief */
.founder-close { margin-top: .55em; font-style: italic; line-height: 1.6; }
.founder-close-link { color: inherit; text-decoration: none; font-weight: 600; border-bottom: 1.5px solid var(--gold); padding-bottom: 1px; transition: color .2s ease, border-color .2s ease; }
.founder-close-link:hover { color: var(--plum); border-color: var(--plum); }
.founder-sign { margin-top: 26px; display: flex; flex-direction: column; gap: 1px; }
.founder-sign-warm { font-family: var(--serif); font-style: italic; font-size: 1.02rem; color: var(--plum); }
.founder-sign-name { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(1.7rem, 2.4vw, 2.1rem); line-height: 1.1; color: var(--deep-plum); }
.founder-sign-role { margin-top: 5px; font-family: var(--sans); font-size: .72rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }

/* Mid-page CTA's */
.cta-inline { display: flex; justify-content: center; margin-top: clamp(40px, 5vw, 56px); }
.cta-founder { margin-top: 24px; }

/* Exclusiviteit — perk-titel in een subtiel kleurvlak */
#exclusief .perks { gap: 22px; }
#exclusief .perk { background: rgba(255,255,255,0.045); border: 1px solid var(--line-dark); border-radius: var(--radius-xl); padding: 34px 26px 30px; }
#exclusief .perk .num { margin-bottom: 18px; }
#exclusief .perk h3 { display: inline-block; background: rgba(190,142,175,0.24); color: #fff; padding: 7px 18px; border-radius: 999px; font-size: 1.04rem; margin-bottom: 16px; }

/* Sfeerbeeld-band */
.imageband { height: clamp(220px, 32vw, 400px); overflow: hidden; background: var(--blush); }
.imageband img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 860px) {
  .femke-row, .femke-row.alt { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .why-row, .why-row.alt { grid-template-columns: 1fr; }
  .why-media { min-height: 0; aspect-ratio: 16 / 11; }
}

/* ═══════════════════════════════════════════════════════════════
   PRINT / PDF — getrouwe browser-render van de bewerkte pagina
   ═══════════════════════════════════════════════════════════════ */
@media print {
  @page { size: 1180px 1640px; margin: 0; }
  html, body { background: #fff !important; margin: 0 !important; }
  * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  * { animation: none !important; transition: none !important; }
  .site-header { position: static !important; }
  /* forceer het desktop-uiterlijk, ongeacht papierbreedte */
  [data-variant="b"] .hero .wrap { grid-template-columns: 1fr 1fr !important; min-height: 0 !important; align-items: center !important; gap: 56px !important; }
  [data-variant="b"] .hero { padding-top: 40px !important; }
  [data-variant="b"] .hero-media { aspect-ratio: 4 / 5 !important; max-height: none !important; }
  .why-row { grid-template-columns: 1.04fr 0.96fr !important; }
  .why-row.alt { grid-template-columns: 0.96fr 1.04fr !important; }
  .reis-row { grid-template-columns: 0.92fr 1.08fr !important; }
  .femke-row, .femke-row.alt { grid-template-columns: 1fr 1fr !important; }
  /* houd blokken heel over paginagrenzen */
  .feature, .why-row, .reis-row, .femke-row, .perk, .why-quoteband, .imageband, .feature-grid > * { break-inside: avoid; }
  img { break-inside: avoid; }
}

/* ═══════════════════════════════════════════════════════════════
   Cookie consent bar
   ═══════════════════════════════════════════════════════════════ */
.cookiebar {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200;
  max-width: 560px; margin: 0 auto;
  background: var(--aubergine); color: var(--on-dark);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
  padding: 22px 24px; display: none;
}
.cookiebar.show { display: block; animation: rise 0.4s var(--ease) both; }
.cookiebar p { font-size: 0.92rem; color: var(--on-dark-soft); margin: 0 0 16px; line-height: 1.55; }
.cookiebar a { color: var(--soft-gold); text-decoration: underline; text-underline-offset: 2px; }
.cookiebar .cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookiebar .btn { padding: 12px 22px; font-size: 0.94rem; }
.cookiebar .btn-decline { background: transparent; color: var(--on-dark); border-color: var(--line-dark); }
.cookiebar .btn-decline:hover { border-color: var(--soft-gold); color: #fff; background: rgba(255,255,255,0.06); }
@media (max-width: 460px) { .cookiebar .btn { flex: 1; justify-content: center; } }
