  :root {
    --bg: #FAF8F4;
    --bg-tint: #F4EFE5;
    --ink: #1F1B16;
    --ink-soft: #3A332C;
    --muted: #5E544A;
    --rule: #E8E2D6;
    --rule-strong: #D6CDBC;
    --accent: #5D4E37;
    --accent-hover: #463922;
    --serif: "Cormorant Garamond", "EB Garamond", Georgia, "Times New Roman", serif;
    --sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
    --maxw: 1180px;
    --textw: 640px;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  }

  body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 18px;
    line-height: 1.65;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    background-image:
      radial-gradient(1200px 600px at 80% -10%, rgba(93,78,55,0.04), transparent 60%),
      radial-gradient(900px 500px at -10% 120%, rgba(93,78,55,0.035), transparent 60%);
    background-attachment: fixed;
  }

  /* --- Layout helpers --- */
  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
  @media (max-width: 720px) { .wrap { padding: 0 24px; } }

  section { padding: 120px 0; border-top: 1px solid var(--rule); }
  section:first-of-type { border-top: 0; }
  @media (max-width: 720px) { section { padding: 72px 0; } }

  .eyebrow {
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 36px 0;
  }
  .eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--rule-strong);
  }

  h1, h2, h3 {
    font-family: var(--serif);
    font-weight: 500;
    color: var(--ink);
    margin: 0;
    letter-spacing: -0.005em;
    text-wrap: pretty;
  }
  h2 {
    font-size: clamp(34px, 4.2vw, 52px);
    line-height: 1.12;
    margin-bottom: 28px;
  }
  h3 {
    font-size: 24px;
    line-height: 1.25;
    font-weight: 500;
  }
  p { margin: 0 0 18px 0; max-width: var(--textw); }
  p:last-child { margin-bottom: 0; }

  /* --- Header --- */
  header.site {
    position: sticky;
    top: 0;
    z-index: 50;
    background: color-mix(in oklab, var(--bg) 88%, transparent);
    backdrop-filter: saturate(120%) blur(8px);
    -webkit-backdrop-filter: saturate(120%) blur(8px);
    border-bottom: 1px solid transparent;
    transition: border-color 200ms ease, background 200ms ease;
  }
  header.site.scrolled { border-bottom-color: var(--rule); }
  header.site .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 22px;
    padding-bottom: 22px;
  }
  .wordmark {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--ink);
    text-decoration: none;
  }
  .wordmark em {
    font-style: italic;
    font-weight: 400;
    color: var(--ink);
  }
  nav.head { display: flex; gap: 28px; align-items: center; }
  nav.head a {
    font-family: var(--sans);
    font-size: 14px;
    color: var(--ink-soft);
    text-decoration: none;
    letter-spacing: 0.02em;
    padding: 12px 0;
    display: inline-block;
    transition: color 160ms ease;
  }
  nav.head a:hover { color: var(--accent); }
  @media (max-width: 720px) {
    nav.head a[href^="tel:"] { display: none; }
  }

  /* --- Hero --- */
  .hero {
    padding: 180px 0 160px;
    border-top: 0;
    position: relative;
  }
  @media (max-width: 720px) { .hero { padding: 96px 0 88px; } }
  .hero h1 {
    font-family: var(--serif);
    font-size: clamp(44px, 7vw, 88px);
    line-height: 1.05;
    letter-spacing: -0.015em;
    font-weight: 400;
    max-width: 900px;
    margin: 0 0 36px 0;
  }
  .hero h1 em { font-style: italic; font-weight: 400; }
  .hero .subline {
    font-size: 22px;
    line-height: 1.5;
    color: var(--ink-soft);
    max-width: 560px;
    margin: 0 0 56px 0;
    font-weight: 400;
  }
  @media (max-width: 720px) { .hero .subline { font-size: 19px; margin-bottom: 40px; } }
  .hero-label {
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
    margin: 0 0 26px 0;
  }
  .hero-cta {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
  }
  .hero-cta-secondary {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--ink-soft);
    text-decoration: none;
    border-bottom: 1px solid var(--rule-strong);
    padding-bottom: 2px;
    transition: color 160ms ease, border-color 160ms ease;
  }
  .hero-cta-secondary:hover { color: var(--accent); border-bottom-color: var(--accent); }
  .hero-points {
    list-style: none;
    margin: 40px 0 0 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.65;
    color: var(--muted);
    letter-spacing: 0.01em;
  }
  .hero-points li { max-width: 560px; }
  .hero-points li::before {
    content: "\00B7";
    margin-right: 10px;
    color: var(--rule-strong);
  }
  @media (max-width: 720px) {
    .hero-label { margin-bottom: 20px; }
    .hero-cta { gap: 20px; }
    .hero-points { font-size: 13px; margin-top: 32px; }
  }

  /* --- Hero inline speler --- */
  .hero-player {
    max-width: 560px;
    border: 1px solid var(--rule-strong);
    background: rgba(31, 27, 22, 0.02);
    padding: 18px 22px 16px;
    margin: 0 0 40px 0;
  }
  .hero-player-eyebrow {
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
    margin: 0 0 14px 0;
  }
  .hero-player-row { display: flex; align-items: center; gap: 18px; }
  .hero-player-row .player-col { flex: 1 1 auto; min-width: 0; gap: 6px; }
  .hero-player-row .waveform { height: 44px; padding: 8px 0; }
  .hero-player-row noscript audio { width: 100%; }
  .hero-player-meta {
    font-size: 12px;
    line-height: 1.55;
    letter-spacing: 0.02em;
    color: var(--muted);
    margin: 14px 0 0 0;
    max-width: none;
  }
  .hero-player-more { margin: 10px 0 0 0; font-size: 13px; }
  .hero-player-more a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid var(--rule-strong);
    padding-bottom: 1px;
    transition: color 160ms ease, border-color 160ms ease;
  }
  .hero-player-more a:hover { color: var(--ink); border-bottom-color: var(--accent); }
  @media (max-width: 720px) {
    .hero-player { padding: 14px 16px 12px; margin-bottom: 32px; }
    .hero-player-row { gap: 14px; }
    .hero-player-meta { font-size: 11px; }
  }
  @media (max-width: 400px) {
    /* 56 balkjes + gaps moeten ook op 320px-schermen binnen de rij passen */
    .hero-player-row .waveform { gap: 1px; }
  }

  /* --- Buttons --- */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 18px 28px;
    border-radius: 0;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: var(--bg);
    text-decoration: none;
    cursor: pointer;
    transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
  }
  .btn:hover { background: var(--accent); border-color: var(--accent); color: var(--bg); }
  .btn .arrow {
    width: 14px; height: 1px; background: currentColor; position: relative;
    transition: width 200ms ease;
  }
  .btn .arrow::after {
    content: ""; position: absolute; right: 0; top: -3px;
    width: 7px; height: 7px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
  }
  .btn:hover .arrow { width: 22px; }

  .btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
  }
  .btn-ghost:hover { background: var(--ink); color: var(--bg); }

  /* --- Wat we maken --- */
  .prose-large p {
    font-family: var(--serif);
    font-size: clamp(22px, 2.4vw, 28px);
    line-height: 1.4;
    color: var(--ink);
    font-weight: 400;
    max-width: 760px;
  }
  .prose-large p + p { margin-top: 22px; }
  .prose-large p.tail {
    font-family: var(--sans);
    font-size: 16px;
    color: var(--muted);
    margin-top: 36px;
    line-height: 1.6;
  }

  /* --- Examples grid --- */
  .examples-intro {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: end;
    margin-bottom: 72px;
  }
  @media (max-width: 860px) { .examples-intro { grid-template-columns: 1fr; gap: 32px; } }
  .examples-intro p { font-size: 18px; color: var(--ink-soft); max-width: none; }
  .examples-meta {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: right;
  }
  @media (max-width: 860px) { .examples-meta { text-align: left; } }

  .examples {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--rule);
  }
  .example {
    border-bottom: 1px solid var(--rule);
  }
  .example-details {
    transition: background 200ms ease;
  }
  .example-details[open] {
    background: rgba(31, 27, 22, 0.02);
  }
  .example-summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    min-height: 56px;
    transition: background 160ms ease;
  }
  .example-summary::-webkit-details-marker { display: none; }
  .example-summary:hover { background: rgba(31, 27, 22, 0.02); }
  .example-details[open] > .example-summary { padding-bottom: 12px; }
  @media (max-width: 720px) {
    .example-summary { gap: 12px; padding: 18px 0; min-height: 64px; }
  }
  .summary-title {
    font-family: var(--serif);
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 500;
    line-height: 1.25;
    color: var(--ink);
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .summary-title em { font-style: italic; font-weight: 400; color: var(--ink-soft); }
  @media (max-width: 720px) {
    .summary-title { font-size: 17px; }
  }
  .summary-badge {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: lowercase;
    color: var(--muted);
    flex: 0 0 auto;
    white-space: nowrap;
  }
  @media (max-width: 720px) {
    .summary-badge { display: none; }
  }
  .summary-chevron {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    transition: transform 150ms ease-out;
    flex: 0 0 auto;
  }
  .example-details[open] .summary-chevron { transform: rotate(180deg); }
  .summary-chevron svg { width: 12px; height: 12px; }

  .example-body {
    padding: 8px 0 36px 0;
  }
  @media (max-width: 720px) {
    .example-body { padding: 4px 0 28px 0; }
  }

  .play-btn {
    width: 44px; height: 44px;
    border-radius: 999px;
    border: 1px solid var(--ink);
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 200ms ease;
    flex: 0 0 auto;
    padding: 0;
  }
  .play-btn:hover { background: var(--ink); color: var(--bg); }
  .play-btn.is-playing { background: var(--accent); border-color: var(--accent); color: var(--bg); }
  .play-btn svg { width: 12px; height: 12px; }

  .example-body .intro-label {
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    color: var(--muted);
    margin: 0 0 10px 0;
    line-height: 1.4;
  }
  .example-body .persona {
    font-size: 16px;
    color: var(--ink-soft);
    line-height: 1.65;
    margin: 0 0 16px 0;
    max-width: 640px;
  }
  .example-body .loved {
    font-family: var(--serif);
    font-style: italic;
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.55;
    margin: 0 0 22px 0;
    max-width: 600px;
    padding-left: 16px;
    border-left: 1px solid var(--rule-strong);
  }
  .example-body .loved-label {
    display: block;
    font-family: var(--sans);
    font-style: normal;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
  }
  .example-body .example-divider {
    border: none;
    height: 1px;
    background: var(--rule);
    margin: 24px 0 20px 0;
  }
  .example-body .result-label {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 8px 0;
  }
  .example-body .result-meta {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--ink-soft);
    letter-spacing: 0.06em;
    line-height: 1.7;
    margin: 0 0 12px 0;
  }
  .example-body .why-note {
    font-family: var(--sans);
    font-size: 13px;
    font-style: italic;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 24px 0;
    max-width: 600px;
  }

  /* Waveform player column */
  .player-col { display: flex; flex-direction: column; gap: 10px; }
  .waveform {
    height: 56px;
    min-height: 44px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 2px;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  .waveform .bar {
    flex: 1 1 1px;
    min-width: 1px;
    background: var(--rule-strong);
    border-radius: 1px;
    transition: background 80ms linear;
  }
  .waveform .bar.played { background: var(--ink); }
  .player-col .waveform .bar.playing { background: var(--accent); }
  .time-row {
    display: flex;
    justify-content: space-between;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.05em;
  }

  /* --- Hoe het werkt --- */
  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
    margin-top: 56px;
  }
  @media (max-width: 860px) { .steps { grid-template-columns: 1fr; gap: 40px; } }
  .step .num {
    font-family: var(--serif);
    font-size: 56px;
    font-weight: 400;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 24px;
    font-feature-settings: "lnum";
  }
  .step h3 {
    font-family: var(--serif);
    font-size: 26px;
    margin-bottom: 14px;
  }
  .step p {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.6;
  }
  .hoe-cta { margin-top: 56px; }
  @media (max-width: 860px) { .hoe-cta { margin-top: 40px; } }

  .lede {
    font-family: var(--serif);
    font-size: clamp(24px, 3.4vw, 40px);
    line-height: 1.3;
    font-weight: 400;
    color: var(--ink);
    max-width: 800px;
    margin: 0 0 24px 0;
  }
  .lede em { font-style: italic; }

  /* --- Pricing --- */
  .pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-top: 36px;
  }
  @media (max-width: 860px) { .pricing-grid { grid-template-columns: 1fr; gap: 36px; } }
  .pricing-grid p {
    font-size: 18px;
    color: var(--ink-soft);
  }
  .pricing-callout {
    border-left: 1px solid var(--rule-strong);
    padding-left: 28px;
  }
  .pricing-callout dt {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  .pricing-callout dd {
    font-family: var(--serif);
    font-size: 22px;
    margin: 0 0 18px 0;
    color: var(--ink);
  }
  .pricing-callout dd .ex-btw {
    font-family: var(--sans);
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.04em;
    margin-left: 6px;
    vertical-align: middle;
  }

  /* --- Peer & family quotes (scaffolding) --- */
  .peer-quote, .family-quote {
    padding: 80px 0;
    border-top: 1px solid var(--rule);
  }
  @media (max-width: 720px) {
    .peer-quote, .family-quote { padding: 56px 0; }
  }
  .peer-quote blockquote,
  .family-quote blockquote {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(20px, 2.4vw, 26px);
    line-height: 1.5;
    color: var(--ink);
    max-width: 720px;
    margin: 0 0 16px 0;
  }
  .peer-quote cite,
  .family-quote cite {
    font-family: var(--sans);
    font-style: normal;
    font-size: 14px;
    color: var(--muted);
    letter-spacing: 0.02em;
  }
  .quotes .quote {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(18px, 2.2vw, 24px);
    line-height: 1.5;
    color: var(--ink);
    max-width: 720px;
    margin: 0 0 28px 0;
    padding-left: 20px;
    border-left: 2px solid var(--rule-strong);
  }

  /* --- Why this works --- */
  .why p {
    font-family: var(--serif);
    font-size: clamp(19px, 2.2vw, 22px);
    line-height: 1.5;
    color: var(--ink);
    max-width: 720px;
  }
  .why p + p { margin-top: 22px; }
  .why p.disclosure {
    font-family: var(--sans);
    font-size: 14px;
    color: var(--muted);
    margin-top: 36px;
    line-height: 1.65;
    border-top: 1px solid var(--rule);
    padding-top: 24px;
    max-width: 560px;
  }

  /* --- Vragen (FAQ) --- */
  .faq {
    display: flex;
    flex-direction: column;
    gap: 36px;
    max-width: 720px;
    margin-top: 48px;
  }
  @media (max-width: 720px) { .faq { gap: 28px; margin-top: 36px; } }
  .faq-item h3 {
    font-family: var(--serif);
    font-size: clamp(20px, 2.2vw, 24px);
    font-weight: 500;
    line-height: 1.3;
    color: var(--ink);
    margin: 0 0 10px 0;
    letter-spacing: -0.005em;
  }
  .faq-item p {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0;
  }
  .faq-item + .faq-item {
    border-top: 1px solid var(--rule);
    padding-top: 36px;
  }
  @media (max-width: 720px) {
    .faq-item + .faq-item { padding-top: 28px; }
  }

  /* --- Wie hierachter zit --- */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
  }
  @media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } }
  .about-grid .label {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .about-grid h3 {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 500;
    margin: 0 0 6px 0;
  }
  .about-grid .role {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 24px;
  }
  .wie-zakelijk {
    font-size: 14px;
    color: var(--muted);
    letter-spacing: 0.01em;
  }
  .wie-zakelijk a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid var(--rule-strong);
    transition: color 160ms ease, border-color 160ms ease;
  }
  .wie-zakelijk a:hover { color: var(--ink); border-bottom-color: var(--accent); }
  .about-grid p {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.65;
  }

  /* --- Beginnen / closing --- */
  .closing {
    background: var(--bg-tint);
    margin: 0;
    padding: 140px 0;
    border-top: 1px solid var(--rule);
  }
  @media (max-width: 720px) { .closing { padding: 80px 0; } }
  .closing h2 { margin-bottom: 18px; }
  .closing .lede { color: var(--ink-soft); }
  .closing .actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 28px;
    margin-top: 40px;
  }
  .closing .alt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
    max-width: 600px;
  }
  @media (max-width: 720px) {
    .closing .alt { grid-template-columns: 1fr; }
  }
  .closing .alt-option {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px 22px;
    border: 1px solid var(--rule-strong);
    background: transparent;
    text-decoration: none;
    transition: background 160ms ease, border-color 160ms ease;
  }
  .closing .alt-option:hover {
    background: var(--bg);
    border-color: var(--accent);
  }
  .closing .alt-label {
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .closing .alt-value {
    font-family: var(--serif);
    font-size: 19px;
    color: var(--ink);
    transition: color 160ms ease;
    word-break: break-word;
  }
  .closing .alt-option:hover .alt-value { color: var(--accent); }
  .closing .returning {
    margin-top: 14px;
    font-size: 14px;
    color: var(--muted);
  }

  /* --- Footer --- */
  footer.site {
    border-top: 1px solid var(--rule);
    padding: 60px 0 80px;
    background: var(--bg);
  }
  footer.site .wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    flex-wrap: wrap;
  }
  footer.site .left { font-size: 14px; color: var(--muted); line-height: 1.7; }
  footer.site .left .wordmark { display: block; margin-bottom: 18px; font-size: 18px; color: var(--ink); }
  footer.site .left a:not(.wordmark) {
    color: var(--muted);
    text-decoration: none;
    transition: color 160ms ease;
  }
  footer.site .left a:not(.wordmark):hover { color: var(--accent); }
  footer.site .legal {
    font-size: 13px;
    color: var(--muted);
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
  }
  footer.site .legal a {
    color: var(--muted);
    text-decoration: none;
    transition: color 160ms ease;
  }
  footer.site .legal a:hover { color: var(--accent); }
  footer.site .legal .sep { color: var(--rule-strong); }

  /* --- Reveal-on-scroll --- */
  .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 700ms ease-out, transform 700ms ease-out;
    will-change: opacity, transform;
  }
  .reveal.in { opacity: 1; transform: none; }

  .glyph-rule {
    width: 28px;
    height: 1px;
    background: var(--rule-strong);
    margin: 0 0 28px 0;
  }

  :focus { outline: none; }
  :focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 2px;
  }
  .btn:focus-visible { outline-offset: 4px; }
  .play-btn:focus-visible { outline-offset: 4px; }
  .waveform:focus-visible { outline-offset: 6px; }
  .closing .alt-option:focus-visible { outline-offset: 4px; }

  /* ============ #case ============ */
  .case {
    padding: 6rem 0;
    background: var(--bg-soft, #faf6f0);
  }

  .case-header {
    text-align: center;
    margin-bottom: 2.5rem;
  }

  .case-eyebrow {
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted, #8a7e6e);
    margin: 0 0 0.5rem;
  }

  .case-header h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.25rem);
    margin: 0;
  }

  .case-audio {
    max-width: 640px;
    margin: 0 auto 3.5rem;
    text-align: center;
  }

  .case-audio audio {
    width: 100%;
    border-radius: 8px;
  }

  .case-audio-meta {
    font-size: 0.875rem;
    color: var(--text-muted, #8a7e6e);
    margin: 0.6rem 0 0;
    letter-spacing: 0.02em;
  }

  .case-combined {
    max-width: 960px;
    margin: 0 auto 3.5rem;
    display: grid;
    gap: 0;
  }

  .case-combined-head,
  .case-combined-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1.4fr;
    gap: 1.25rem;
    align-items: start;
    padding: 0.85rem 0;
  }

  .case-combined-head {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted, #8a7e6e);
    font-weight: 600;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    align-items: center;
  }

  .case-combined-row + .case-combined-row {
    border-top: 1px solid rgba(0,0,0,0.05);
  }

  .case-combined-fact {
    margin: 0;
    font-style: italic;
    color: var(--text-soft, #4a4036);
    line-height: 1.5;
  }

  .case-combined-lyric {
    margin: 0;
    font-style: italic;
    font-size: 0.94rem;
    line-height: 1.55;
    color: var(--text-muted, #8a7e6e);
  }

  .case-combined-decision {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }

  .case-combined-headline {
    margin: 0;
    font-weight: 600;
    color: var(--text, inherit);
    line-height: 1.4;
  }

  .case-combined-why {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.55;
    color: var(--text-muted, #8a7e6e);
  }

  .case-frame {
    text-align: center;
    font-family: var(--font-serif, Georgia, serif);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-soft, #4a4036);
    max-width: 540px;
    margin: 0 auto 2rem;
  }

  .case-reassurance {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-muted, #8a7e6e);
    max-width: 480px;
    margin: 0 auto;
  }

  @media (max-width: 720px) {
    .case {
      padding: 4rem 0;
    }
    .case-audio {
      margin-bottom: 2.5rem;
    }
    .case-combined-head {
      display: none;
    }
    .case-combined-row {
      grid-template-columns: 1fr;
      gap: 0.4rem;
      padding: 1rem 0 1rem 1rem;
      border-left: 2px solid var(--accent, #c9a87a);
    }
    .case-combined-row + .case-combined-row {
      border-top: none;
    }
    .case-combined-lyric:empty {
      display: none;
    }
  }

  /* Verbetering 2: visuele hiërarchie Case-tabel op kleine telefoons */
  @media (max-width: 600px) {
    .case-combined-row {
      gap: 0;
      padding: 0.9rem 0 0.9rem 0.875rem;
    }
    .case-combined-fact {
      font-size: 0.8rem;
      color: var(--muted);
      font-style: normal;
      margin-bottom: 0;
      letter-spacing: 0.01em;
    }
    .case-combined-lyric {
      color: var(--ink);
      font-size: 0.95rem;
    }
  }

  /* Verbetering 1: Sticky CTA-balk — mobiel only */
  .mobile-cta-bar {
    display: none;
  }

  @media (max-width: 767px) {
    .mobile-cta-bar {
      display: flex;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 200;
      background: #ffffff;
      box-shadow: 0 -1px 0 var(--rule), 0 -4px 20px rgba(0,0,0,0.06);
      padding: 10px 16px;
      padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
      gap: 10px;
      align-items: stretch;
      transform: translateY(110%);
      pointer-events: none;
      transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
    }
    .mobile-cta-bar.is-visible {
      transform: translateY(0);
      pointer-events: auto;
    }
    body.mobile-cta-active {
      padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
    }
    .mobile-cta-plan {
      flex: 1 1 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 20px;
      background: var(--ink);
      color: var(--bg);
      font-family: var(--sans);
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.01em;
      text-decoration: none;
      white-space: nowrap;
      transition: background 180ms ease;
    }
    .mobile-cta-plan:active { background: var(--accent-hover); }
    .mobile-cta-call {
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      gap: 7px;
      min-height: 44px;
      min-width: 44px;
      padding: 0 12px;
      border: 1px solid var(--rule-strong);
      color: var(--ink-soft);
      text-decoration: none;
      font-family: var(--sans);
      font-size: 13px;
      letter-spacing: 0.01em;
      white-space: nowrap;
      transition: color 160ms ease, border-color 160ms ease;
    }
    .mobile-cta-call:active { color: var(--accent); border-color: var(--accent); }
    .mobile-cta-call svg { flex-shrink: 0; color: var(--muted); }
  }

  /* --- Legal pages (voorwaarden, privacy, avg) --- */
  .legal-doc {
    padding: 96px 0 120px;
    border-top: 0;
  }
  @media (max-width: 720px) { .legal-doc { padding: 64px 0 80px; } }
  .legal-doc .wrap > .eyebrow { margin-bottom: 24px; }
  .legal-doc h1 {
    font-family: var(--serif);
    font-size: clamp(36px, 4.6vw, 56px);
    line-height: 1.1;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.005em;
    margin: 0 0 16px 0;
    max-width: 780px;
    text-wrap: pretty;
  }
  .legal-doc .meta {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin: 0 0 56px 0;
    text-transform: none;
  }
  .legal-doc h2 {
    font-family: var(--serif);
    font-size: clamp(22px, 2.4vw, 28px);
    line-height: 1.3;
    font-weight: 500;
    color: var(--ink);
    margin: 56px 0 14px 0;
    letter-spacing: -0.005em;
  }
  @media (max-width: 720px) { .legal-doc h2 { margin-top: 40px; } }
  .legal-doc p,
  .legal-doc ul {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-soft);
    max-width: 720px;
    margin: 0 0 14px 0;
  }
  .legal-doc ul {
    padding-left: 20px;
  }
  .legal-doc ul li { margin-bottom: 6px; }
  .legal-doc p + h2 { margin-top: 56px; }
  .legal-doc strong { color: var(--ink); font-weight: 600; }
  .legal-doc a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid var(--rule-strong);
    transition: color 160ms ease, border-color 160ms ease;
  }
  .legal-doc a:hover { color: var(--accent-hover); border-color: var(--accent); }

  /* ============ Regio-teaser (gated) ============ */
  .regio-teaser {
    background: var(--bg-tint);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .regio-teaser[hidden] { display: none; }
  .regio-teaser .wrap {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .regio-teaser p {
    margin: 0;
    max-width: none;
    text-align: center;
    font-size: 14px;
    line-height: 1.55;
    color: var(--ink-soft);
    letter-spacing: 0.01em;
  }
  .regio-teaser a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid var(--rule-strong);
    padding-bottom: 1px;
    white-space: nowrap;
    transition: color 160ms ease, border-color 160ms ease;
  }
  .regio-teaser a:hover { color: var(--accent-hover); border-bottom-color: var(--accent); }

  /* ============ Regio-exclusiviteit (gated) ============ */
  .regio {
    background: var(--bg);
    padding: 200px 0;
    text-align: center;
  }
  .regio[hidden] { display: none; }
  .regio-inner {
    max-width: 560px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .regio-eyebrow {
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
    margin: 0 0 22px 0;
  }
  .regio-title {
    font-family: var(--serif);
    font-size: clamp(30px, 3.4vw, 40px);
    line-height: 1.15;
    font-weight: 500;
    color: var(--ink);
    margin: 0 0 32px 0;
  }
  .regio-body {
    font-size: 19px;
    line-height: 1.7;
    color: var(--ink-soft);
    max-width: none;
    margin: 0;
  }
  .regio-close {
    font-family: var(--serif);
    font-style: italic;
    font-size: 18px;
    line-height: 1.6;
    color: var(--muted);
    max-width: none;
    margin: 40px 0 0 0;
  }
  .regio-contact {
    font-size: 14px;
    color: var(--muted);
    letter-spacing: 0.02em;
    max-width: none;
    margin: 28px 0 0 0;
  }
  .regio-contact a {
    color: var(--ink-soft);
    text-decoration: none;
    border-bottom: 1px solid var(--rule-strong);
    padding-bottom: 1px;
    transition: color 160ms ease, border-color 160ms ease;
  }
  .regio-contact a:hover { color: var(--accent); border-bottom-color: var(--accent); }
  .regio-sep { color: var(--rule-strong); margin: 0 12px; }
  @media (max-width: 720px) {
    .regio { padding: 120px 0; }
    .regio-body { font-size: 17px; }
    .regio-contact { line-height: 2; }
  }

  /* ============ Garantie ============ */
  .garantie { background: var(--bg-tint); }
  .garantie-body {
    font-size: 19px;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 620px;
    margin: 28px 0 0 0;
  }
  .garantie-points {
    list-style: none;
    margin: 48px 0 0 0;
    padding: 0;
    max-width: 720px;
  }
  .garantie-points li {
    position: relative;
    padding: 22px 0 22px 32px;
    border-top: 1px solid var(--rule);
  }
  .garantie-points li:first-child { border-top: 0; }
  .garantie-points li::before {
    content: "\25B8";
    position: absolute;
    left: 0;
    top: 22px;
    color: var(--accent);
    line-height: 1.5;
  }
  .garantie-q {
    display: block;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.5;
  }
  .garantie-a {
    display: block;
    color: var(--ink-soft);
    line-height: 1.5;
    margin-top: 2px;
  }
  .garantie-link {
    margin: 44px 0 0 0;
    font-size: 14px;
    letter-spacing: 0.01em;
  }
  .garantie-link a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid var(--rule-strong);
    padding-bottom: 1px;
    transition: color 160ms ease, border-color 160ms ease;
  }
  .garantie-link a:hover { color: var(--accent-hover); border-bottom-color: var(--accent); }
  @media (max-width: 720px) {
    .garantie-body { font-size: 17px; }
    .garantie-points { margin-top: 36px; }
  }
