/* THE PURE MAN — Intensive · shared stylesheet (tokens, schemes, components, sections) */
/* ==========================================================================
   TOKENS — colors
   ========================================================================== */
:root {
  --color-white: #ffffff;
  --color-neutral-lightest: #f2f2f2;
  --color-neutral-lighter: #dadada;
  --color-neutral-light: #b6b6b5;
  --color-neutral: #858585;
  --color-neutral-dark: #545454;
  --color-neutral-darker: #242423;
  --color-neutral-darkest: #0c0c0b; /* primary surface */

  --color-black: #040404;
  --color-black-dark: #030303;
  --color-black-darkest: #010101;

  --color-laser-light: #d9c299;
  --color-laser: #c9a96e;       /* primary gold accent */
  --color-laser-dark: #a08758;
  --color-laser-darker: #50432c;

  --color-pesto: #8a6d2f;       /* light-scheme accent */

  --color-white-rock-lightest: #fdfdfc;
  --color-white-rock-lighter: #fcfbf9;
  --color-white-rock-light: #f4f1ea;

  --color-heath: #5c1020;       /* oxblood */

  --color-white-5:  color-mix(in srgb, var(--color-white), transparent 95%);
  --color-white-10: color-mix(in srgb, var(--color-white), transparent 90%);
  --color-white-15: color-mix(in srgb, var(--color-white), transparent 85%);
  --color-white-20: color-mix(in srgb, var(--color-white), transparent 80%);
  --color-white-40: color-mix(in srgb, var(--color-white), transparent 60%);
  --color-white-60: color-mix(in srgb, var(--color-white), transparent 40%);

  --color-ink-10: color-mix(in srgb, var(--color-neutral-darkest), transparent 90%);
  --color-ink-15: color-mix(in srgb, var(--color-neutral-darkest), transparent 85%);
  --color-ink-40: color-mix(in srgb, var(--color-neutral-darkest), transparent 60%);
  --color-ink-60: color-mix(in srgb, var(--color-neutral-darkest), transparent 40%);

  --accent: var(--color-laser);

  /* ---- typography ---- */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --weight-display: 500;
  --weight-display-bold: 600;
  --weight-body: 400;
  --weight-body-medium: 500;
  --weight-body-semibold: 600;
  --weight-body-bold: 700;

  --text-h1: 3rem;
  --text-h2: 2.75rem;
  --text-h3: 2rem;
  --text-h4: 1.5rem;
  --text-h5: 1.25rem;
  --text-h6: 1.125rem;
  --text-large: 1.125rem;
  --text-medium: 1rem;
  --text-regular: 0.875rem;
  --text-small: 0.75rem;
  --text-tiny: 0.625rem;

  --leading-display: 1.1;
  --leading-heading: 1.2;
  --leading-body: 1.6;
  --tracking-display: 0.01em;
  --tracking-eyebrow: 0.18em;

  /* ---- spacing / radii / motion ---- */
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-14: 3.5rem;
  --space-16: 4rem;
  --space-18: 4.5rem;
  --space-20: 5rem;

  --section-y-lg: 7rem;
  --gutter: 5%;

  --container-md: 35rem;
  --container-lg: 48rem;
  --container-xl: 64rem;
  --container-xxl: 80rem;

  --radius-button: 6.25rem;
  --radius-badge: 6.25rem;
  --radius-input: 0.75rem;
  --radius-card: 0.5rem;
  --radius-image: 0.5rem;

  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-base: 200ms;
  --dur-slow: 400ms;
}
:root { --space-14: 3.5rem; }

@media (min-width: 992px) {
  :root {
    --text-h1: 5.25rem;
    --text-h2: 3.75rem;
    --text-h3: 3rem;
    --text-h4: 2.5rem;
    --text-h5: 2rem;
    --text-h6: 1.625rem;
    --text-large: 1.625rem;
    --text-medium: 1.25rem;
    --text-regular: 1.125rem;
    --text-small: 1rem;
    --text-tiny: 0.75rem;
  }
}

/* ==========================================================================
   SCHEMES — paint a section by applying one class
   ========================================================================== */
.scheme-1 {
  --scheme-background: var(--color-neutral-darkest);
  --scheme-foreground: var(--color-neutral-darker);
  --scheme-text: var(--color-white);
  --scheme-text-muted: var(--color-white-60);
  --scheme-border: var(--color-white-20);
  --scheme-accent: var(--color-laser);
  --scheme-btn-bg: var(--color-white);
  --scheme-btn-text: var(--color-neutral-darkest);
  --scheme-btn-bg-hover: var(--color-neutral-lighter);
  background-color: var(--scheme-background);
  color: var(--scheme-text);
}
.scheme-2 {
  --scheme-background: var(--color-white-rock-lighter);
  --scheme-foreground: var(--color-white-rock-lightest);
  --scheme-text: var(--color-neutral-darkest);
  --scheme-text-muted: var(--color-ink-60);
  --scheme-border: var(--color-ink-15);
  --scheme-accent: var(--color-pesto);
  --scheme-btn-bg: var(--color-neutral-darkest);
  --scheme-btn-text: var(--color-white);
  --scheme-btn-bg-hover: var(--color-black-dark);
  background-color: var(--scheme-background);
  color: var(--scheme-text);
}
.scheme-3 {
  --scheme-background: var(--color-black-darkest);
  --scheme-foreground: var(--color-black-darkest);
  --scheme-text: var(--color-white);
  --scheme-text-muted: var(--color-white-60);
  --scheme-border: var(--color-white-20);
  --scheme-accent: var(--color-laser);
  --scheme-btn-bg: var(--color-white);
  --scheme-btn-text: var(--color-neutral-darkest);
  --scheme-btn-bg-hover: var(--color-neutral-lighter);
  background-color: var(--scheme-background);
  color: var(--scheme-text);
}

/* ==========================================================================
   BASE
   ========================================================================== */
html, body { margin: 0; padding: 0; }
*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: hidden; }  /* safety net: never allow sideways scroll */
/* [hidden] must win over display:flex/grid utility rules on the same element. */
[hidden] { display: none !important; }
/* Native smooth scroll for anchor jumps (offset so the fixed nav doesn't cover the target). */
html { scroll-padding-top: 90px; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  background: var(--color-neutral-darkest);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: var(--weight-body);
  line-height: var(--leading-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* guard against any element bleeding past the viewport on mobile */
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--weight-display);
  line-height: var(--leading-heading);
  letter-spacing: var(--tracking-display);
  margin: 0;
}
a { color: inherit; }
::selection { background: var(--color-laser); color: var(--color-neutral-darkest); }

.section { padding: var(--section-y-lg) var(--gutter); }
.container { margin: 0 auto; max-width: var(--container-xxl); width: 100%; }

/* ---- Kicker / Rule motif ---- */
.kicker { display: inline-flex; align-items: center; gap: 14px; }
.kicker.center { justify-content: center; }
.kicker .rule { display: inline-block; width: 30px; height: 1px; background: var(--scheme-accent, var(--accent)); opacity: 0.7; }
.kicker > span {
  font-family: var(--font-body); font-weight: 600; font-size: 12px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--scheme-accent, var(--accent));
}

/* ---- Eyebrow ---- */
.eyebrow {
  font-family: var(--font-body); font-weight: var(--weight-body-semibold);
  font-size: var(--text-small); letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase; color: var(--scheme-accent, var(--accent)); margin: 0;
}

/* ---- Button ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: var(--weight-body-semibold);
  line-height: 1; white-space: nowrap; text-transform: uppercase; letter-spacing: 0.16em;
  border-radius: var(--radius-button); border: 1px solid transparent; cursor: pointer;
  padding: 0.72rem 1.6rem; font-size: 13px; text-decoration: none;
  transition: background-color var(--dur-base) var(--ease-in-out),
              border-color var(--dur-base) var(--ease-in-out),
              color var(--dur-base) var(--ease-in-out);
}
.btn--sm { padding: 0.58rem 1.2rem; font-size: 12px; }
.btn--lg { padding: 0.85rem 2rem; font-size: 14px; }
/* Primary CTA — gold outline on faintly-tinted glass; fills gold on hover. */
.btn--primary {
  background: color-mix(in srgb, var(--color-laser), transparent 90%);
  color: var(--color-laser);
  border-color: var(--color-laser);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.btn--primary:hover {
  background: var(--color-laser);
  color: var(--color-neutral-darkest);
  border-color: var(--color-laser);
}
/* On light (off-white) sections the bright gold loses contrast — use the deeper pesto gold. */
.scheme-2 .btn--primary {
  background: color-mix(in srgb, var(--color-pesto), transparent 90%);
  color: var(--color-pesto);
  border-color: var(--color-pesto);
}
.scheme-2 .btn--primary:hover {
  background: var(--color-pesto);
  color: var(--color-white);
  border-color: var(--color-pesto);
}
.btn--secondary {
  background: transparent; color: var(--scheme-text, var(--color-white));
  border-color: var(--scheme-border, var(--color-white-15));
  backdrop-filter: blur(10px);
}
.btn--secondary:hover { background: var(--color-white-10); }
.btn .material-symbols-rounded { font-size: 18px; }

/* ---- Badge ---- */
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-body); font-weight: var(--weight-body-semibold);
  font-size: var(--text-small); letter-spacing: 0.04em; line-height: 1;
  padding: 0.35rem 0.8rem; border-radius: var(--radius-badge);
  border: 1px solid transparent; white-space: nowrap;
}
.badge--default { background: transparent; color: var(--scheme-text); border-color: var(--scheme-border); }
.badge--accent { background: transparent; color: var(--color-laser); border-color: var(--color-laser-darker); }
.badge--solid { background: var(--color-laser); color: var(--color-neutral-darkest); border-color: var(--color-laser); }

/* ---- Input (underline) ---- */
.input {
  width: 100%; font-family: var(--font-body); font-size: var(--text-regular);
  color: var(--scheme-text, var(--color-white)); background: transparent;
  border: 0; outline: none; padding: 0.65rem 0;
  border-bottom: 1px solid var(--scheme-border, var(--color-white-15));
  border-radius: 0; transition: border-color var(--dur-base) var(--ease-in-out);
}
.input::placeholder { color: var(--scheme-text-muted); }
.input:focus { border-color: var(--scheme-accent); }
textarea.input { resize: vertical; min-height: 2.6rem; line-height: 1.5; }
select.input {
  appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 1.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 2px center;
}
select.input:invalid { color: var(--scheme-text-muted); }
select.input option { color: #111; }

/* ---- Placeholder editorial image tile ---- */
.ph-img {
  position: relative; width: 100%; border-radius: var(--radius-image);
  overflow: hidden; display: grid; place-items: center;
}
.ph-img--dark {
  background: radial-gradient(120% 100% at 50% 0%, #1a1a18 0%, #0c0c0b 70%);
  border: 1px solid var(--color-white-10);
}
.ph-img--light {
  background: var(--color-white-rock-light);
  border: 1px solid var(--color-ink-10);
}
.ph-img img:not(.ph-photo) { width: 34%; max-width: 160px; }
.ph-img--dark img:not(.ph-photo) { opacity: 0.18; }
.ph-img--light img:not(.ph-photo) { opacity: 0.32; }
.ph-img .ph-label {
  position: absolute; bottom: 14px; left: 16px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
}
.ph-img--dark .ph-label { color: var(--color-white-40); }
.ph-img--light .ph-label { color: var(--color-ink-40); }

/* ==========================================================================
   NAVBAR — floating bubble
   ========================================================================== */
.nav-wrap {
  position: fixed; top: 18px; left: 0; right: 0; z-index: 60;
  max-width: var(--container-xxl); margin: 0 auto;
  display: flex; justify-content: center; padding: 0 var(--gutter); pointer-events: none;
}
.nav-bubble {
  pointer-events: auto; display: flex; align-items: center; gap: 18px;
  width: 100%; padding: 9px 9px 9px 22px;
  border-radius: var(--radius-button);
  background: color-mix(in srgb, var(--color-neutral-darkest), transparent 58%);
  backdrop-filter: blur(22px) saturate(140%); -webkit-backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid var(--color-white-10);
  box-shadow: 0 14px 40px rgba(0,0,0,0.28);
}
.nav-brand { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; margin-right: auto; }
.nav-brand img { height: 30px; width: 30px; object-fit: contain; }
.nav-brand span { font-weight: 600; font-size: 15px; color: var(--color-white); letter-spacing: 0.08em; white-space: nowrap; }
.nav-links { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-link {
  position: relative; color: var(--color-white-60); text-decoration: none;
  font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  white-space: nowrap; transition: color var(--dur-base) var(--ease-in-out);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -5px; height: 1px;
  background: var(--color-laser); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-base) var(--ease-in-out);
}
.nav-link:hover { color: var(--color-white); }
.nav-link:hover::after { transform: scaleX(1); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-media {
  position: absolute; inset: 0; overflow: hidden;
  background: radial-gradient(135% 125% at 72% 6%, #20201c 0%, #121211 45%, #0c0c0b 70%);
}
.hero-media .watermark {
  position: absolute; right: -7%; top: 50%; transform: translateY(-50%);
  width: 58%; max-width: 760px; opacity: 0.07; pointer-events: none;
}
.hero-scrim { position: absolute; inset: 0; pointer-events: none; }
.hero-scrim--v { background: linear-gradient(180deg, rgba(12,12,11,0.5) 0%, rgba(12,12,11,0.04) 28%, rgba(12,12,11,0.55) 72%, rgba(12,12,11,0.95) 100%); }
.hero-scrim--h { background: linear-gradient(90deg, rgba(12,12,11,0.82) 0%, rgba(12,12,11,0.2) 50%, rgba(12,12,11,0) 70%); }
.hero-scrim--glow { mix-blend-mode: screen; background: radial-gradient(115% 95% at 12% 115%, rgba(92,16,32,0.6) 0%, rgba(92,16,32,0.22) 34%, rgba(92,16,32,0) 62%); }
.hero-inner {
  position: relative; z-index: 2; width: 100%; max-width: var(--container-xxl);
  margin: 0 auto; padding: 0 var(--gutter) clamp(4rem, 12vh, 9rem);
}
.hero-content { max-width: 52rem; }
.hero h1 {
  font-size: var(--text-h1); font-weight: 500; line-height: 1.04; color: var(--color-white);
  margin: 0; padding-bottom: 0.1em; letter-spacing: 0.005em; text-wrap: balance;
}
.hero p {
  font-size: var(--text-medium); color: var(--color-white-60);
  margin-top: 26px; max-width: 33rem; line-height: 1.65;
}
.hero-actions { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.scroll-hint {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--color-white-40); pointer-events: none;
}
.scroll-hint span { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; }

/* ==========================================================================
   GENERIC SECTION HEADERS / GRIDS
   ========================================================================== */
.heading-h2 { font-size: var(--text-h2); font-weight: 500; line-height: 1.1; }
.lead { font-size: var(--text-medium); color: var(--scheme-text-muted); line-height: 1.7; }
.section-head { max-width: var(--container-lg); margin-bottom: var(--space-16); }

.possibility-grid, .framework-grid, .timeline-grid,
.guides-grid, .offer-grid, .compare-grid, .testimonials-grid, .sessions-grid {
  display: grid;
}
.possibility-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-10); text-align: left; }
.shift { border-top: 1px solid var(--scheme-border); padding-top: 22px; }
.shift .from { text-decoration: line-through; text-decoration-color: var(--scheme-accent); color: var(--scheme-text-muted); font-size: var(--text-regular); }
.shift .to { font-family: var(--font-display); font-size: var(--text-h5); font-weight: 600; line-height: 1.2; margin-top: 12px; }

.framework-grid { grid-template-columns: repeat(4, 1fr); gap: var(--space-12); }
.pillar { border-top: 1px solid var(--scheme-border); padding-top: 24px; }
.pillar-num { font-family: var(--font-display); font-size: clamp(2.6rem, 4vw, 3.6rem); font-weight: 500; color: var(--scheme-accent); line-height: 1; margin-bottom: 22px; }
.pillar h3 { font-size: var(--text-h5); font-weight: 600; margin-bottom: 12px; }
.pillar p { color: var(--scheme-text-muted); line-height: 1.6; margin: 0; }

.timeline { position: relative; }
.timeline-line { position: absolute; top: 7px; left: 0; right: 0; height: 3px; background: var(--scheme-border); }
.timeline-grid { position: relative; grid-template-columns: repeat(6, 1fr); gap: var(--space-6); }
.tl-node { width: 16px; height: 16px; border-radius: 50%; background: var(--scheme-accent); box-shadow: 0 0 0 7px var(--scheme-background); margin-bottom: 24px; position: relative; z-index: 2; }
.tl-num { font-size: 12px; letter-spacing: 0.14em; color: var(--scheme-accent); margin-bottom: 8px; }
.tl-step h3 { font-size: var(--text-h6); font-weight: 600; margin-bottom: 10px; }
.tl-step p { color: var(--scheme-text-muted); line-height: 1.6; font-size: var(--text-regular); margin: 0; }

.guides-grid { grid-template-columns: 1fr 1fr; gap: var(--space-12); }
.guide h3 { margin-top: 22px; margin-bottom: 0; font-size: var(--text-h5); font-weight: 600; }
.guide .role { color: var(--scheme-accent); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; margin-top: 8px; }
.guide p { color: var(--scheme-text-muted); line-height: 1.7; margin-top: 14px; margin-bottom: 0; }

.testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-12); }
.testimonial { display: flex; flex-direction: column; align-items: center; text-align: center; }
.testimonial .quote-mark { color: var(--color-laser); font-family: var(--font-display); font-size: 64px; line-height: 0.7; height: 36px; }
.testimonial blockquote { font-family: var(--font-display); font-size: var(--text-h6); font-weight: 500; line-height: 1.4; margin: 0 0 28px; }
.testimonial .t-name { font-weight: 600; margin: 0; }
.testimonial .t-role { color: var(--color-white-60); font-size: var(--text-regular); margin: 4px 0 0; }

.compare-grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
.compare-card { border-radius: var(--radius-card); padding: var(--space-8); }
.compare-card--yes { border: 1px solid color-mix(in srgb, var(--scheme-accent), transparent 55%); }
.compare-card--no { border: 1px solid var(--scheme-border); }
.compare-card h3 { font-size: var(--text-h5); font-weight: 600; margin-bottom: 24px; }
.compare-card--yes h3 { color: var(--scheme-accent); }
.compare-card--no h3 { color: var(--scheme-text-muted); }
.compare-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.compare-card li { display: flex; gap: 14px; align-items: center; font-size: var(--text-medium); }
.compare-card--no li { color: var(--scheme-text-muted); }
.icon-check { stroke: var(--scheme-accent); }
.icon-cross { stroke: var(--scheme-text-muted); }

.offer-grid { grid-template-columns: 1.1fr 0.9fr; gap: var(--space-20); align-items: center; }
.offer-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.offer-list li { display: flex; gap: 14px; align-items: flex-start; font-size: var(--text-medium); }
.offer-list svg { flex-shrink: 0; margin-top: 2px; stroke: var(--scheme-accent); }
.offer-card { border: 1px solid var(--scheme-border); border-radius: var(--radius-card); padding: var(--space-10); background: var(--scheme-foreground); }
.offer-card .label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--scheme-accent); margin-bottom: 16px; }
.offer-card .price { font-family: var(--font-display); font-size: var(--text-h3); font-weight: 600; line-height: 1.1; margin-bottom: 14px; }
.offer-card p { color: var(--scheme-text-muted); line-height: 1.6; margin: 0 0 28px; }
.offer-card .fine { font-size: var(--text-tiny); color: var(--scheme-text-muted); margin-top: 14px; text-align: center; }

.sessions-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: var(--space-16); flex-wrap: wrap; }
.sessions-grid { grid-template-columns: 1.4fr 1fr; gap: var(--space-8); align-items: start; }
.session-feature { text-decoration: none; color: inherit; border: 1px solid var(--scheme-border); border-radius: var(--radius-card); padding: var(--space-6); display: block; }
.session-feature .sf-row { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 20px; }
.session-feature .sf-date { font-family: var(--font-display); font-size: var(--text-h4); font-weight: 600; }
.session-feature .sf-where { color: var(--scheme-text-muted); margin-top: 4px; }
.session-list { display: flex; flex-direction: column; }
.session-row { text-decoration: none; color: inherit; display: flex; justify-content: space-between; align-items: center; padding: var(--space-5) 0; border-top: 1px solid var(--scheme-border); }
.session-row:first-child { border-top: none; }
.session-row .sr-date { font-weight: 600; font-size: var(--text-medium); }
.session-row .sr-city { color: var(--scheme-text-muted); font-size: var(--text-regular); }
.session-row .sr-right { display: flex; align-items: center; gap: 16px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: var(--container-xl); border-bottom: 1px solid var(--scheme-border); }
.faq-item { border-top: 1px solid var(--scheme-border); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: clamp(16px, 3vw, 32px);
  padding: 28px 0; text-align: left; color: var(--scheme-text);
}
.faq-q .roman { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--scheme-accent); width: 36px; flex-shrink: 0; line-height: 1; }
.faq-q .q-text { flex: 1; font-family: var(--font-display); font-size: clamp(1.3rem, 2.4vw, 1.9rem); font-weight: 500; line-height: 1.25; }
.faq-q .plus { flex-shrink: 0; position: relative; width: 18px; height: 18px; color: var(--scheme-accent); }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: currentColor; }
.faq-q .plus::before { top: 50%; left: 0; width: 18px; height: 1.5px; transform: translateY(-50%); }
.faq-q .plus::after { left: 50%; top: 0; width: 1.5px; height: 18px; transform: translateX(-50%) scaleY(1); transition: transform var(--dur-base) var(--ease-in-out); }
.faq-item[aria-expanded="true"] .plus::after { transform: translateX(-50%) scaleY(0); }
.faq-a-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--dur-slow) var(--ease-in-out); }
.faq-item[aria-expanded="true"] .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a { margin: 0; padding: 0 clamp(52px, 6vw, 68px) 30px; max-width: 44rem; color: var(--scheme-text-muted); font-size: var(--text-medium); line-height: 1.75; }

/* ==========================================================================
   FINAL CTA + FOOTER
   ========================================================================== */
.final-cta { max-width: var(--container-md); margin: 0 auto; text-align: center; }
.final-cta h2 { font-size: var(--text-h1); font-weight: 500; line-height: 1.05; margin-bottom: 20px; }
.final-cta p { font-size: var(--text-medium); color: var(--scheme-text-muted); margin-bottom: 36px; }

.footer { padding: var(--space-18) var(--gutter) var(--space-10); border-top: 1px solid var(--scheme-border); }
.footer-top { display: grid; grid-template-columns: 1fr 0.6fr; gap: 8vw; padding-bottom: var(--space-16); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.footer-brand img { height: 40px; width: 40px; }
.footer-brand span { font-weight: 600; font-size: 18px; color: var(--color-white); letter-spacing: 0.16em; }
.footer-links { display: flex; gap: 24px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.footer-links a { color: var(--color-white-60); text-decoration: none; font-weight: 500; font-size: 15px; }
.footer-links a:hover { color: var(--color-white); }
.footer-sub form { display: grid; grid-template-columns: 1fr max-content; gap: 12px; align-items: end; }
.footer-sub .fine { font-size: var(--text-tiny); color: var(--color-white-40); margin-top: 12px; }
.footer-divider { height: 1px; background: var(--scheme-border); }
.footer-legal { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; flex-wrap: wrap; gap: 12px; }
.footer-legal span { font-size: var(--text-small); color: var(--color-white-40); }

/* ==========================================================================
   APPLY DIALOG
   ========================================================================== */
.dialog-overlay {
  position: fixed; inset: 0; z-index: 200; background: rgba(4,4,4,0.72);
  backdrop-filter: blur(6px); display: none; place-items: center; padding: 24px;
}
.dialog-overlay.open { display: grid; }
.dialog {
  width: min(520px, 100%); border-radius: var(--radius-card);
  border: 1px solid var(--scheme-border); padding: clamp(2rem, 5vw, 3rem); position: relative;
}
.dialog-close {
  position: absolute; top: 18px; right: 18px; background: none; border: none;
  cursor: pointer; color: var(--color-white-60); display: flex;
}
.dialog .eyebrow { margin-bottom: 14px; }
.dialog h3 { font-size: var(--text-h4); font-weight: 500; line-height: 1.1; margin-bottom: 10px; }
.dialog .dialog-sub { color: var(--color-white-60); line-height: 1.6; margin-bottom: 28px; }
.dialog form { display: flex; flex-direction: column; gap: 22px; }
.dialog .consent { font-size: var(--text-tiny); color: var(--color-white-40); margin-top: 16px; text-align: center; }
.dialog-sent { text-align: center; padding: 1rem 0; }
.dialog-sent img { width: 72px; opacity: 0.9; margin-bottom: 20px; }
.dialog-sent h3 { font-size: var(--text-h4); font-weight: 500; margin-bottom: 12px; }
.dialog-sent p { color: var(--color-white-60); line-height: 1.6; max-width: 26rem; margin: 0 auto; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
/* Tablet and down */
@media (max-width: 980px) {
  .section { padding: var(--space-16) var(--gutter); }          /* 7rem -> 4rem */
  .framework-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-grid { grid-template-columns: repeat(3, 1fr); row-gap: var(--space-12); }
  .timeline-line { display: none; }
  .offer-grid { grid-template-columns: 1fr; gap: var(--space-12); }
  .sessions-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: var(--space-12); }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .possibility-grid, .guides-grid, .compare-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .section-head { margin-bottom: var(--space-10); }
}

/* Phones */
@media (max-width: 640px) {
  .section { padding: var(--space-12) var(--gutter); }          /* 3rem */
  /* trim the largest display sizes so long Dutch words still fit */
  :root { --text-h1: 2.7rem; --text-h2: 2.15rem; --text-h3: 1.8rem; }

  /* nav: keep just the mark, give the CTA room. Drop the desktop container-widening
     here (it caused horizontal overflow on phones) — simple full-width bar instead. */
  .nav-wrap { max-width: none; margin: 0; padding: 0 14px; }
  .nav-bubble { gap: 10px; padding: 7px 7px 7px 16px; }
  .nav-brand span { display: none; }
  .nav-bubble .btn { font-size: 11px; letter-spacing: 0.07em; padding: 0.5rem 0.85rem; }

  /* hero: full-width, thumb-friendly CTAs */
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn { width: 100%; }
  .hero-inner { padding-bottom: clamp(3rem, 14vh, 6rem); }
  .hero p { margin-top: 20px; }

  /* sessions header CTA + featured card breathe */
  .sessions-head { gap: 16px; }
  .sessions-head > .btn { width: 100%; }
  .themed-card { min-height: 340px; }

  /* footer: stack the legal line */
  .footer-legal { flex-direction: column; align-items: flex-start; }
  .footer-sub form { grid-template-columns: 1fr; }
  .footer-sub form .btn { width: 100%; }
}

@media (max-width: 560px) {
  .framework-grid, .timeline-grid { grid-template-columns: 1fr; }
  /* roomier dialog so the calendar isn't cramped */
  .dialog-overlay { padding: 14px; }
  .dialog { padding: 1.6rem 1.25rem; }
}

/* ==========================================================================
   EVENT LANDER (event.html)
   ========================================================================== */
.meta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.meta-chip {
  display: inline-flex; align-items: center; gap: 9px; padding: 9px 16px;
  border-radius: var(--radius-button); border: 1px solid var(--color-white-20);
  background: color-mix(in srgb, var(--color-neutral-darkest), transparent 35%);
  backdrop-filter: blur(8px); font-size: var(--text-regular); color: var(--color-white); white-space: nowrap;
}
.meta-chip .material-symbols-rounded { font-size: 18px; opacity: 0.7; }

.ev-details { display: grid; grid-template-columns: 1.3fr 1fr; gap: var(--space-16); align-items: start; }
.ev-incl { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-10) var(--space-8); }
.ev-incl .material-symbols-rounded { font-size: 36px; color: var(--scheme-text); opacity: 0.92; }
.ev-incl h3 { font-size: var(--text-h6); font-weight: 600; margin: 16px 0 8px; }
.ev-incl p { color: var(--scheme-text-muted); line-height: 1.6; margin: 0; font-size: var(--text-regular); }

.praktisch {
  border-radius: var(--radius-card); padding: var(--space-8);
  background: var(--scheme-foreground); border: 1px solid transparent;
  position: sticky; top: 100px;
}
.praktisch h3 { font-family: var(--font-display); font-size: var(--text-h5); font-weight: 600; margin-bottom: 22px; }
.praktisch dl { margin: 0; display: flex; flex-direction: column; }
.praktisch .row { display: flex; justify-content: space-between; gap: 18px; padding: 13px 0; border-top: 1px solid var(--scheme-border); }
.praktisch .row:first-child { border-top: none; }
.praktisch dt { color: var(--scheme-text-muted); font-size: var(--text-regular); margin: 0; }
.praktisch dd { margin: 0; font-weight: 600; text-align: right; font-size: var(--text-regular); white-space: nowrap; }
.praktisch .fine { font-size: var(--text-tiny); color: var(--scheme-text-muted); margin-top: 12px; text-align: center; }

.ev-agenda { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
.agenda-block { border-top: 2px solid var(--color-laser); padding-top: 22px; }
.agenda-block .hour { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-laser); margin-bottom: 12px; }
.agenda-block h3 { font-size: var(--text-h5); font-weight: 600; margin-bottom: 12px; }
.agenda-block p { color: var(--color-white-60); line-height: 1.6; margin: 0; }

.ev-other { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.other-card { text-decoration: none; color: inherit; border: 1px solid var(--scheme-border); border-radius: var(--radius-card); padding: var(--space-6); display: flex; flex-direction: column; gap: 14px; }
.other-card .oc-row { display: flex; justify-content: space-between; align-items: center; }
.other-card .oc-date { font-weight: 600; font-size: var(--text-medium); }
.other-card .oc-city { color: var(--scheme-text-muted); font-size: var(--text-regular); }

.dialog .event-label { margin-bottom: 24px; }

@media (max-width: 980px) {
  .ev-details { grid-template-columns: 1fr; }
  .praktisch { position: static; }
  .ev-agenda, .ev-other { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .ev-incl { grid-template-columns: 1fr; }
}

/* ==========================================================================
   APPLY FLOW — date picker, prep-call slots
   ========================================================================== */
.pm-datebox { margin-bottom: 24px; }
.pm-date-current {
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  border: 1px solid var(--scheme-border); border-radius: var(--radius-input); padding: 14px 16px;
}
.pm-date-label { font-weight: 600; font-size: var(--text-regular); }
.pm-date-meta { color: var(--color-white-60); font-size: var(--text-small); margin-top: 3px; }
.pm-date-toggle {
  background: none; border: none; cursor: pointer; white-space: nowrap;
  color: var(--color-laser); font-family: var(--font-body); font-weight: 600;
  font-size: var(--text-small); letter-spacing: 0.04em; text-decoration: underline;
  text-underline-offset: 3px; flex-shrink: 0;
}
.pm-date-options { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.pm-date-option {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  width: 100%; text-align: left; cursor: pointer;
  background: none; color: var(--color-white); font-family: var(--font-body); font-size: var(--text-regular);
  border: 1px solid var(--color-white-15); border-radius: var(--radius-input); padding: 12px 14px;
  transition: border-color var(--dur-base) var(--ease-in-out), background-color var(--dur-base) var(--ease-in-out);
}
.pm-date-option:hover { border-color: var(--color-white-40); }
.pm-date-option[aria-selected="true"] { border-color: var(--color-laser); background: color-mix(in srgb, var(--color-laser), transparent 90%); }
.pm-date-spots { color: var(--color-white-40); font-size: var(--text-small); white-space: nowrap; }

.pm-back {
  background: none; border: none; cursor: pointer; padding: 0; margin-bottom: 18px;
  color: var(--color-white-60); font-family: var(--font-body); font-size: var(--text-small);
  font-weight: 500; letter-spacing: 0.04em;
}
.pm-back:hover { color: var(--color-white); }
.pm-slots { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pm-slot {
  cursor: pointer; text-align: center; background: none; color: var(--color-white);
  font-family: var(--font-body); font-size: var(--text-regular); font-weight: 500;
  border: 1px solid var(--color-white-15); border-radius: var(--radius-input); padding: 12px 10px;
  transition: border-color var(--dur-base) var(--ease-in-out), background-color var(--dur-base) var(--ease-in-out);
}
.pm-slot:hover { border-color: var(--color-white-40); }
.pm-slot.sel { border-color: var(--color-laser); background: var(--color-laser); color: var(--color-neutral-darkest); }
@media (max-width: 460px) { .pm-slots { grid-template-columns: 1fr; } }

/* ==========================================================================
   APPLY FLOW — host picker + mini-calendar (step 2)
   ========================================================================== */
.pm-hostpick { margin-bottom: 18px; }
.pm-hostpick-label { font-size: var(--text-small); color: var(--color-white-60); margin-bottom: 10px; }
.pm-hosts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pm-host {
  display: flex; flex-direction: column; gap: 4px; text-align: left; cursor: pointer;
  background: none; color: var(--color-white); font-family: var(--font-body);
  border: 1px solid var(--color-white-15); border-radius: var(--radius-input); padding: 14px 16px;
  transition: border-color var(--dur-base) var(--ease-in-out), background-color var(--dur-base) var(--ease-in-out);
}
.pm-host:hover { border-color: var(--color-white-40); }
.pm-host.sel { border-color: var(--color-laser); background: color-mix(in srgb, var(--color-laser), transparent 90%); }
.pm-host-name { font-weight: 600; font-size: var(--text-regular); }
.pm-host-role { font-size: var(--text-tiny); letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-white-40); }

.pm-with {
  border: 1px solid var(--color-laser-darker); border-radius: var(--radius-input);
  padding: 12px 16px; margin-bottom: 18px; font-size: var(--text-regular); color: var(--color-white-60);
}
.pm-with b { color: var(--color-white); font-weight: 600; }

.pm-cal { border: 1px solid var(--color-white-15); border-radius: var(--radius-input); padding: 14px; }
.pm-cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.pm-cal-month { font-family: var(--font-display); font-size: var(--text-h6); font-weight: 600; }
.pm-cal-nav {
  width: 32px; height: 32px; border-radius: 50%; cursor: pointer;
  background: none; color: var(--color-white); border: 1px solid var(--color-white-15);
  font-size: 18px; line-height: 1; display: flex; align-items: center; justify-content: center;
  transition: border-color var(--dur-base) var(--ease-in-out), color var(--dur-base) var(--ease-in-out);
}
.pm-cal-nav:hover:not(:disabled) { border-color: var(--color-laser); color: var(--color-laser); }
.pm-cal-nav:disabled { opacity: 0.3; cursor: not-allowed; }
.pm-cal-dow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 6px; }
.pm-cal-dow span { text-align: center; font-size: var(--text-tiny); letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-white-40); }
.pm-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.pm-cal-pad { aspect-ratio: 1; }
.pm-cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center; cursor: pointer;
  background: none; color: var(--color-white); font-family: var(--font-body); font-size: var(--text-regular);
  border: 1px solid transparent; border-radius: 8px;
  transition: border-color var(--dur-base) var(--ease-in-out), background-color var(--dur-base) var(--ease-in-out);
}
.pm-cal-day:hover:not(:disabled):not(.sel) { border-color: var(--color-white-40); }
.pm-cal-day:disabled { color: var(--color-white-15); cursor: not-allowed; }
.pm-cal-day.sel { background: var(--color-laser); color: var(--color-neutral-darkest); font-weight: 600; }

.pm-times { margin-top: 16px; }
.pm-times-label { font-size: var(--text-small); color: var(--color-white-60); margin-bottom: 10px; }
.pm-times-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pm-slot {
  cursor: pointer; text-align: center; background: none; color: var(--color-white);
  font-family: var(--font-body); font-size: var(--text-regular); font-weight: 500;
  border: 1px solid var(--color-white-15); border-radius: var(--radius-input); padding: 12px 10px;
  transition: border-color var(--dur-base) var(--ease-in-out), background-color var(--dur-base) var(--ease-in-out);
}
.pm-slot:hover { border-color: var(--color-white-40); }
.pm-slot.sel { border-color: var(--color-laser); background: var(--color-laser); color: var(--color-neutral-darkest); }
@media (max-width: 460px) { .pm-times-grid, .pm-hosts { grid-template-columns: 1fr; } }

/* ---- Hero meta line (one quiet line under the CTAs, replaces the chips) ---- */
.hero-meta-line {
  margin: 22px 0 0; font-size: 0.64rem; color: var(--color-white-60);
  letter-spacing: 0.02em; line-height: 1.5;
}
.hero-meta-line .hl { color: var(--color-laser); font-weight: 600; }
.hero-meta-link {
  color: var(--color-white); text-decoration: none;
  border-bottom: 1px solid var(--color-white-15); padding-bottom: 1px;
  transition: border-color var(--dur-base) var(--ease-in-out);
}
.hero-meta-link:hover { border-color: var(--color-laser); }

/* ==========================================================================
   REAL IMAGERY — drop-in photos with graceful fallback
   A .ph-photo / .hero-photo <img> sits on top of the placeholder; on load
   error it removes itself (onerror="this.remove()"), revealing the dark
   placeholder beneath. So a missing file degrades to the polished empty state.
   ========================================================================== */
.hero-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
/* Always-visible still behind the video; the video sits on top at opacity 0 until it
   actually plays, so a blocked autoplay never shows iOS's "tap to play" button. */
.hero-still {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; pointer-events: none;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1; pointer-events: none;
  opacity: 0; transition: opacity 0.5s var(--ease-in-out, ease);
}
.hero-video.is-playing { opacity: 1; }
/* Belt-and-braces: also hide the native overlay where the browser honours it. */
.hero-video::-webkit-media-controls-start-playback-button,
.hero-video::-webkit-media-controls-play-button,
.hero-video::-webkit-media-controls-panel,
.hero-video::-webkit-media-controls {
  display: none !important; -webkit-appearance: none !important; opacity: 0 !important;
}
.ph-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; border-radius: inherit;
}
/* When a real portrait fills a placeholder tile, drop the laurel watermark
   and dim its caption so the photo reads cleanly. */
.ph-img:has(.ph-photo) > img:not(.ph-photo) { display: none; }
.ph-img:has(.ph-photo) .ph-label {
  color: #fff; z-index: 1;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

/* ==========================================================================
   FEATURED SESSION — designed "poster" card (no photo)
   Gold hairline, eyebrow, ghosted theme word, serif title, gold date.
   ========================================================================== */
.themed-card {
  position: relative; overflow: hidden; text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  min-height: clamp(380px, 38vw, 480px);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  background: linear-gradient(158deg, #15140f 0%, #0b0b0a 60%, #090908 100%);
  border: 1px solid var(--scheme-border); border-radius: var(--radius-card);
  transition: border-color var(--dur-base) var(--ease-in-out);
}
.themed-card:hover { border-color: color-mix(in srgb, var(--color-laser), transparent 45%); }
.tc-rule { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--color-laser); }
.tc-top {
  position: relative; z-index: 2; display: flex; justify-content: space-between;
  align-items: flex-start; gap: 14px; flex-wrap: wrap;
}
.tc-eyebrow {
  font-family: var(--font-body); font-weight: 600; font-size: var(--text-small);
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-laser);
}
.tc-watermark {
  position: absolute; left: -0.05em; top: 50%; transform: translateY(-56%);
  z-index: 0; pointer-events: none; white-space: nowrap;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  font-size: clamp(4.5rem, 15vw, 11rem); line-height: 0.85; letter-spacing: -0.01em;
  color: var(--color-white); opacity: 0.05;
}
.tc-body { position: relative; z-index: 2; margin-top: auto; }
.tc-title {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  font-size: clamp(2.3rem, 5vw, 3.6rem); line-height: 1; letter-spacing: 0.03em;
  color: var(--color-white-rock-light);
}
.tc-date {
  margin-top: 14px; font-family: var(--font-body); font-weight: 600;
  font-size: var(--text-small); letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--color-laser);
}
.tc-foot {
  position: relative; z-index: 2; margin-top: clamp(1.4rem, 3vw, 2rem);
  padding-top: 16px; border-top: 1px solid var(--color-white-10);
  display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
}
.tc-where { font-size: var(--text-small); color: var(--color-white-40); }
.tc-cta {
  font-size: var(--text-small); font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--color-white);
  transition: color var(--dur-base) var(--ease-in-out);
}
.themed-card:hover .tc-cta { color: var(--color-laser); }

/* ==========================================================================
   SCROLL ANIMATION — reveal language (progressive + accessible)
   Active only under <html class="anim-ready"> (set in <head> unless the user
   prefers reduced motion; a JS failsafe removes it if anim.js never runs, so
   content is never permanently hidden). Smooth scroll + scrubbed signature
   beats are layered on by anim.js when GSAP/Lenis are available.
   ========================================================================== */
html.anim-ready :is(.section .container > *:not([data-rv-skip]), .hero-content > *, .final-cta > *, .footer-top > *) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
html.anim-ready :is(.section .container > *:not([data-rv-skip]), .hero-content > *, .final-cta > *, .footer-top > *).is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html.anim-ready :is(.section .container > *:not([data-rv-skip]), .hero-content > *, .final-cta > *, .footer-top > *) {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
}

/* ==========================================================================
   VISUAL STORYTELLING PASS — premium composition, hierarchy, brand cohesion
   ========================================================================== */

/* --- Facilitators: editorial grade + drop the redundant overlay caption --- */
.guide .ph-photo { filter: grayscale(0.18) contrast(1.05) saturate(0.9) brightness(0.97); }
.guide .ph-img .ph-label { display: none; }
.guide .ph-img { box-shadow: inset 0 -90px 90px -55px rgba(0,0,0,0.55); }
.guide h3 { letter-spacing: 0.01em; }

/* --- Comparison: the right column pulls forward, the wrong one recedes ----- */
.compare-card--yes {
  background: color-mix(in srgb, var(--scheme-accent), transparent 93%);
  border-color: color-mix(in srgb, var(--scheme-accent), transparent 30%);
}
.compare-card--no { opacity: 0.72; }

/* --- Mirror: depth behind the pain + a gold hairline under the heading ----- */
.mirror { position: relative; overflow: hidden; }
.mirror-mark {
  position: absolute; left: 50%; top: 54%; transform: translate(-50%, -50%);
  width: min(48vw, 540px); opacity: 0.05; pointer-events: none; z-index: 0;
}
.mirror .container { position: relative; z-index: 1; }

/* --- Possibility: the transformation arrow between "from" and "to" --------- */
.shift-arrow { display: block; color: var(--scheme-accent); margin: 16px 0 6px; opacity: 0.85; }
.shift-arrow svg { display: block; }

/* --- Agenda: a more deliberate hour label --------------------------------- */
.agenda-block .hour { font-size: var(--text-small); font-weight: 600; letter-spacing: 0.22em; }

/* --- Offer: the investment card becomes the dark "prize" on the light band - */
.offer-card.scheme-1 {
  background: rgba(18, 18, 16, 0.55);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 80px -34px rgba(0,0,0,0.65);
}
.offer-card .oc-mark { width: 42px; opacity: 0.9; display: block; margin-bottom: 24px; }
.offer-card.scheme-1 .price { color: var(--color-laser); }
/* keep the CTA gold (laser) inside the dark card, overriding the light-scheme pesto rule */
.scheme-1 .btn--primary {
  background: color-mix(in srgb, var(--color-laser), transparent 90%);
  color: var(--color-laser); border-color: var(--color-laser);
}
.scheme-1 .btn--primary:hover { background: var(--color-laser); color: var(--color-neutral-darkest); border-color: var(--color-laser); }

/* --- Final CTA: a deliberate brand close ---------------------------------- */
.final-cta .fc-mark { width: 48px; opacity: 0.9; display: block; margin: 0 auto 26px; }
.final-cta .kicker { margin-bottom: 22px; }

/* ==========================================================================
   BOLD VISUAL PASS — monumental type, cinematic spacing, ghost typography
   ========================================================================== */
@media (min-width: 992px) {
  :root {
    --text-h1: 6rem;     /* hero / final CTA — monumental */
    --text-h2: 5rem;     /* section headers — was 3.75rem */
    --text-h3: 3.25rem;
  }
  .section { padding: 9.5rem var(--gutter); }   /* far more breathing room */
  .section-head { margin-bottom: var(--space-20); }
}

/* Giant editorial "ghost" word behind key sections (the themed-card motif, page-wide) */
.has-ghost { position: relative; overflow: hidden; }
.has-ghost > *:not(.ghost) { position: relative; z-index: 1; }
.ghost {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  z-index: 0; pointer-events: none; white-space: nowrap;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  font-size: clamp(7rem, 25vw, 28rem); line-height: 0.78; letter-spacing: -0.02em;
  color: var(--scheme-text); opacity: 0.06;
}

/* Amplify the numeral motif */
.pillar-num { font-size: clamp(3.4rem, 6vw, 5.5rem); margin-bottom: 28px; }
.tc-watermark { opacity: 0.07; }

/* A touch more air under the kicker on big headers */
@media (min-width: 992px) { .heading-h2 { letter-spacing: 0.005em; } }

/* ==========================================================================
   STRUCTURAL PASS — before/after table, qualification table, framework list
   ========================================================================== */

/* Possibility — "Nu → Na de Intensive" comparison table with a centre line */
.vsnaar { position: relative; max-width: 640px; margin: 0 auto; text-align: left; }
.vsnaar::before { content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px;
  background: color-mix(in srgb, var(--scheme-accent), transparent 45%); transform: translateX(-50%); }
.vsnaar-head, .vsnaar-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 3.5rem); align-items: center; }
.vsnaar-head { padding-bottom: 14px; }
.vsnaar-head span { font-size: var(--text-small); letter-spacing: 0.18em; text-transform: uppercase; }
.vsnaar-head span:first-child { text-align: right; color: var(--scheme-text-muted); }
.vsnaar-head span:last-child { text-align: left; color: var(--scheme-accent); }
.vsnaar-row { padding: 20px 0; border-top: 1px solid var(--scheme-border); }
.vn-from { text-align: right; color: var(--scheme-text-muted); font-size: var(--text-medium);
  text-decoration: line-through; text-decoration-color: color-mix(in srgb, var(--scheme-text-muted), transparent 55%); }
.vn-to { text-align: left; font-family: var(--font-display); font-size: var(--text-h5); font-weight: 600; line-height: 1.15; }
@media (max-width: 560px) { .vsnaar-head, .vsnaar-row { gap: 1.1rem; } .vn-to { font-size: 1.3rem; } }

/* Comparison — clean qualification table (no boxes, centre line) */
.qualify { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 7vw, 6rem); }
.qualify::before { content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: var(--scheme-border); transform: translateX(-50%); }
.qualify-col h3 { font-size: var(--text-h5); font-weight: 600; margin-bottom: 30px; }
.qualify-col--yes h3 { color: var(--scheme-accent); }
.qualify-col--no h3 { color: var(--scheme-text-muted); }
.qualify-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.qualify-col li { display: flex; gap: 14px; align-items: center; font-size: var(--text-medium); }
.qualify-col--no li { color: var(--scheme-text-muted); }
.qualify .icon-check { stroke: var(--scheme-accent); flex-shrink: 0; }
.qualify .icon-cross { stroke: var(--scheme-text-muted); flex-shrink: 0; }
@media (max-width: 860px) { .qualify { grid-template-columns: 1fr; gap: var(--space-12); } .qualify::before { display: none; } }

/* Framework — numeral beside name, no subtext, clean list */
.framework-grid { grid-template-columns: 1fr; gap: 0; }
.framework-grid .pillar { display: flex; align-items: baseline; gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(20px, 3vw, 32px) 0; border-top: 1px solid var(--scheme-border); }
.framework-grid .pillar:last-child { border-bottom: 1px solid var(--scheme-border); }
.framework-grid .pillar-num { font-family: var(--font-display); font-weight: 500; color: var(--scheme-accent);
  line-height: 1; font-size: clamp(2.4rem, 5vw, 3.6rem); width: 2.4ch; flex-shrink: 0; margin: 0; }
.framework-grid .pillar h3 { font-size: var(--text-h3); font-weight: 500; margin: 0; }

/* ghost word system retired (kept out of the DOM); neutralise any stragglers */
.ghost { display: none !important; }

/* ==========================================================================
   FRAMEWORK FLOW — Presence -> Profit progression
   ========================================================================== */
.flow { display: flex; align-items: flex-start; gap: clamp(0.75rem, 2vw, 2rem); }
.flow-step { flex: 1 1 0; min-width: 0; }
.flow-step .pillar-num { display: block; font-family: var(--font-display); font-weight: 500;
  color: var(--scheme-accent); line-height: 1; font-size: clamp(2.2rem, 4vw, 3.4rem); margin: 0 0 18px; }
.flow-step h3 { font-size: var(--text-h5); font-weight: 600; margin-bottom: 12px; }
.flow-step p { color: var(--scheme-text-muted); line-height: 1.55; font-size: var(--text-regular); margin: 0; }
.flow-arrow { flex-shrink: 0; color: var(--scheme-accent); opacity: 0.6; margin-top: clamp(0.9rem, 1.6vw, 1.4rem); }
.flow-arrow svg { display: block; }
@media (max-width: 760px) {
  .flow { flex-direction: column; align-items: stretch; gap: 0; }
  .flow-step { display: flex; align-items: baseline; gap: 1.2rem; flex-wrap: wrap; padding: 22px 0; border-top: 1px solid var(--scheme-border); }
  .flow-step:last-child { border-bottom: 1px solid var(--scheme-border); }
  .flow-step .pillar-num { margin: 0; width: 2ch; font-size: 2rem; }
  .flow-step h3 { margin: 0; }
  .flow-step p { flex-basis: 100%; margin-top: 6px; padding-left: calc(2ch + 1.2rem); }
  .flow-arrow { display: none; }
}

/* ==========================================================================
   VERTICAL TIMELINE — centre rail that fills on scroll, nodes activate
   ========================================================================== */
.vtl { position: relative; max-width: var(--container-xl); margin: 0 auto; }
.vtl-rail { position: absolute; top: 0; bottom: 0; left: 22px; width: 3px; background: var(--scheme-border); }
.vtl-rail-fill { position: absolute; top: 0; left: 0; width: 100%; height: 0; background: var(--scheme-accent); }
.vtl-item { position: relative; padding-left: 60px; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.vtl-item:last-child { margin-bottom: 0; }
.vtl-node { position: absolute; left: 22px; top: 26px; transform: translateX(-50%); width: 17px; height: 17px;
  border-radius: 50%; background: var(--scheme-background); border: 2px solid var(--scheme-border); z-index: 2;
  transition: background-color 0.35s var(--ease-out), border-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out); }
.vtl-node.active { background: var(--scheme-accent); border-color: var(--scheme-accent);
  box-shadow: 0 0 0 6px var(--scheme-background), 0 0 18px color-mix(in srgb, var(--scheme-accent), transparent 50%); }
.vtl-card { border: 1px solid var(--scheme-border); border-radius: var(--radius-card);
  padding: clamp(1.4rem, 3vw, 2.2rem); background: var(--scheme-background); }
.vtl-num { font-family: var(--font-body); font-weight: 600; font-size: var(--text-small);
  letter-spacing: 0.18em; color: var(--scheme-accent); margin-bottom: 10px; }
.vtl-card h3 { font-size: var(--text-h4); font-weight: 500; margin-bottom: 12px; }
.vtl-card p { color: var(--scheme-text-muted); line-height: 1.65; margin: 0; }
@media (min-width: 768px) {
  .vtl-rail { left: 50%; transform: translateX(-50%); }
  .vtl-item { padding-left: 0; display: grid; grid-template-columns: 1fr 1fr; column-gap: clamp(3.5rem, 9vw, 7rem); align-items: center; }
  .vtl-item:nth-child(even) .vtl-card { grid-column: 2; }
  .vtl-item:nth-child(odd) .vtl-card { grid-column: 1; }
  .vtl-node { left: 50%; top: 50%; transform: translate(-50%, -50%); }
}

/* ==========================================================================
   TESTIMONIALS SLIDER
   ========================================================================== */
.tslider { position: relative; max-width: var(--container-md); margin: 0 auto; padding: 0 clamp(0, 6vw, 56px); }
.tslider-viewport { overflow: hidden; }
.tslider-track { display: flex; transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1); }
.tslide { flex: 0 0 100%; min-width: 0; text-align: center; padding: 6px clamp(0.5rem, 3vw, 2rem); display: flex; flex-direction: column; align-items: center; }
.tslide-avatar { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; filter: grayscale(0.2) contrast(1.03); }
.tslide blockquote { font-family: var(--font-display); font-weight: 500; font-size: var(--text-h5); line-height: 1.4; margin: 26px 0 22px; max-width: 32rem; }
.tslide-name { display: block; font-weight: 600; }
.tslide-role { display: block; color: var(--scheme-text-muted); font-size: var(--text-regular); margin-top: 4px; }
.tslider-arrow { position: absolute; top: 42px; width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  background: none; color: var(--scheme-text); border: 1px solid var(--scheme-border);
  display: flex; align-items: center; justify-content: center; z-index: 2;
  transition: border-color var(--dur-base) var(--ease-in-out), color var(--dur-base) var(--ease-in-out); }
.tslider-arrow:hover { border-color: var(--scheme-accent); color: var(--scheme-accent); }
.tslider-prev { left: 0; }
.tslider-next { right: 0; }
.tslider-dots { display: flex; gap: 9px; justify-content: center; margin-top: 30px; }
.tslider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--scheme-border); cursor: pointer; border: none; padding: 0;
  transition: background-color var(--dur-base) var(--ease-in-out), transform var(--dur-base) var(--ease-in-out); }
.tslider-dot.active { background: var(--scheme-accent); transform: scale(1.25); }
@media (max-width: 600px) {
  .tslider { padding: 0; }
  .tslider-arrow { top: auto; bottom: -4px; width: 40px; height: 40px; }
  .tslider-prev { left: 18px; } .tslider-next { right: 18px; }
  .tslider-dots { margin-top: 26px; }
}

/* ==========================================================================
   ROUND 2 — mirror lead, bordeaux session card, cream offer card, 3-up slider
   ========================================================================== */

/* Mirror — a lead statement + short support instead of a wall of text */
.mirror-lead { font-weight: 600; color: var(--scheme-text); max-width: 42rem; margin: 0 auto 20px; }
.mirror-body { color: var(--scheme-text-muted); max-width: 42rem; margin: 0 auto; }
/* Mirror: the cost line as a bordeaux accent, set off with a hairline */
.mirror-cost {
  font-family: var(--font-display); font-weight: 600; font-size: var(--text-h4); line-height: 1.25;
  color: var(--color-heath); max-width: 42rem; margin: 26px auto 0; padding-top: 22px;
  border-top: 1px solid color-mix(in srgb, var(--color-heath), transparent 65%);
}
/* Eigenaarschap: struck-through excuses that resolve into a gold punchline */
.excuses { list-style: none; margin: 0; padding: 0; max-width: 27rem; display: flex; flex-direction: column; gap: 13px; }
.excuses li {
  font-family: var(--font-display); font-size: var(--text-h5); line-height: 1.2; color: var(--scheme-text-muted);
  text-decoration: line-through; text-decoration-color: var(--color-heath); text-decoration-thickness: 2px; text-underline-offset: 2px;
}
.eig-punch {
  font-family: var(--font-display); font-weight: 600; font-size: var(--text-h3); line-height: 1.15;
  color: var(--color-laser); max-width: 40rem; margin: 34px 0 0;
}

/* Sessions featured card — venue photo under a bordeaux gradient */
.themed-card {
  background:
    linear-gradient(150deg, rgba(92, 16, 32, 0.78) 0%, rgba(40, 10, 16, 0.84) 40%, rgba(12, 12, 11, 0.94) 100%),
    url("assets/venue.jpg") center / cover no-repeat,
    #0c0c0b;
}

/* Offer card — cream "prize" (the Offer section is dark now, so invert for contrast) */
.offer-card.scheme-2 { box-shadow: 0 34px 80px -34px rgba(0, 0, 0, 0.6);
  border: 1px solid color-mix(in srgb, var(--color-pesto), transparent 55%); }
.offer-card.scheme-2 .price { color: var(--color-pesto); }

/* Testimonials — 3 per view (slide one at a time), each in a card */
.tslide { flex: 0 0 100%; min-width: 0; padding: 6px 10px; display: block; text-align: left; }
.tslide-card { height: 100%; display: flex; flex-direction: column; align-items: center; text-align: center;
  border: none; border-radius: var(--radius-card); padding: clamp(1.6rem, 3vw, 2.4rem); }
.tslide-card .tslide-avatar { width: 64px; height: 64px; }
.tslide-card blockquote { font-family: var(--font-display); font-weight: 500; font-size: var(--text-medium);
  line-height: 1.45; margin: 20px 0 18px; max-width: none; }
@media (min-width: 600px) { .tslide { flex-basis: 50%; } }
@media (min-width: 900px) { .tslide { flex-basis: 33.3333%; } }

/* wider track so 3-up testimonial cards have room (was container-md) */
.tslider { max-width: var(--container-xl); }
.tslide-card blockquote { font-size: var(--text-regular); }
