/* =========================================================================
   SPIEGELMODEL — Stylesheet
   In lijn met de huisstijl van Jouw Keuzepunt
   ========================================================================= */

:root {
    /* PALETTE */
    --cream: #f5efe6;                  /* warme cr\u00e8me achtergrond */
    --cream-deep: #ece4d5;             /* iets dieper accent */
    --paper: #ffffff;                  /* witte kaarten */
    
    --ink: #1d2b35;                    /* hoofdtekst, donker petrol */
    --ink-soft: #4a5862;
    --ink-muted: #7c8892;
    --ink-whisper: #b3b9be;
    
    --petrol: #2e6b7e;                 /* petrolblauw — primair */
    --petrol-deep: #1d4e60;
    --petrol-soft: #6a9aae;
    --petrol-whisper: #d8e5eb;
    
    --framboos: #d63a5e;               /* framboos — uit logo */
    --framboos-deep: #b22a4a;
    --framboos-soft: #f0a3b4;
    --framboos-whisper: #fbe4ea;
    
    --terra: #c14a3a;                  /* rood voor 'wegbewegend' */
    --terra-soft: #e89888;
    --terra-whisper: #f7ddd6;
    
    --leaf: #4a8a5c;                   /* groen voor 'toenaderend' */
    --leaf-soft: #8cc097;
    --leaf-whisper: #dbedde;
    
    --clay: #b88940;                   /* klei/oker — voor Waardenkompas */
    --clay-deep: #8e6826;
    --clay-soft: #d6b27c;
    --clay-whisper: #f1e4cb;
    
    --line: #e0d5c2;
    --line-soft: #ede5d6;
    
    /* TYPOGRAFIE */
    --font-display: 'Lora', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* TIMING */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================================================
   RESET & BASE
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--ink);
    line-height: 1.6;
    font-weight: 400;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
}

/* =========================================================================
   SITE HEADER
   ========================================================================= */
.site-header {
    background: var(--paper);
    border-bottom: 1px solid var(--line-soft);
    position: sticky;
    top: 0;
    z-index: 50;
}

.site-header-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--ink);
}

.site-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.site-brand-text {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.3rem;
    color: var(--ink);
    letter-spacing: -0.005em;
}

.site-nav {
    display: flex;
    gap: 28px;
}

.site-nav a {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.2s var(--ease);
}

.site-nav a:hover {
    color: var(--petrol);
}

/* =========================================================================
   MAIN
   ========================================================================= */
.site-main {
    max-width: 980px;
    margin: 0 auto;
    padding: 64px 24px 80px;
}

/* =========================================================================
   INTRO
   ========================================================================= */
.intro {
    max-width: 680px;
    margin: 0 auto 64px;
    text-align: center;
}

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--petrol);
    margin-bottom: 16px;
}

.intro h1 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 16px;
    letter-spacing: -0.015em;
}

.lede {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 1.25rem;
    color: var(--ink-soft);
    line-height: 1.45;
    margin-bottom: 32px;
    max-width: 36ch;
    margin-left: auto;
    margin-right: auto;
}

.intro-body {
    text-align: left;
    max-width: 560px;
    margin: 0 auto;
    color: var(--ink-soft);
    line-height: 1.7;
}

.intro-body p {
    margin-bottom: 14px;
}

.intro-body p:last-child {
    margin-bottom: 0;
}

.intro-body em {
    color: var(--ink);
    font-style: italic;
    font-weight: 500;
}

.intro-meta {
    font-size: 0.92rem;
    color: var(--ink-muted);
    padding-top: 16px;
    border-top: 1px solid var(--line);
    margin-top: 20px !important;
}

/* =========================================================================
   WERKBLAD
   ========================================================================= */
.worksheet {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.row-label {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--ink-muted);
    text-align: center;
    margin: 16px 0 -8px;
    letter-spacing: 0.005em;
}

/* KAARTEN */
.card {
    background: var(--paper);
    border-radius: 8px;
    padding: 22px 24px 24px;
    border-top: 3px solid var(--petrol);
    box-shadow:
        0 1px 2px rgba(29, 43, 53, 0.04),
        0 2px 8px rgba(29, 43, 53, 0.04);
    transition: box-shadow 0.3s var(--ease);
}

.card:focus-within {
    box-shadow:
        0 1px 2px rgba(29, 43, 53, 0.04),
        0 6px 20px rgba(29, 43, 53, 0.08);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.card-icon {
    font-size: 1.1rem;
    line-height: 1;
}

.card-arrow {
    font-size: 1.3rem;
    line-height: 1;
    font-weight: 500;
}

.card h2 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--petrol);
    margin: 0;
    flex: 1;
}

.card-q {
    color: var(--ink-soft);
    font-size: 0.94rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.card-q-second {
    margin-top: 16px;
}

/* INPUTS in kaarten */
.card input[type="text"],
.card textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 5px;
    font-size: 0.98rem;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--cream);
    transition: all 0.2s var(--ease);
    line-height: 1.5;
}

.card input[type="text"]::placeholder,
.card textarea::placeholder {
    color: var(--ink-whisper);
    font-style: italic;
}

.card input[type="text"]:focus,
.card textarea:focus {
    outline: none;
    border-color: var(--petrol);
    background: var(--paper);
    box-shadow: 0 0 0 3px var(--petrol-whisper);
}

.card textarea {
    resize: vertical;
    min-height: 70px;
}

/* KAART-VARIANTEN */
.card-situation {
    border-top-color: var(--framboos);
}
.card-situation h2 {
    color: var(--framboos-deep);
}

.card-part {
    border-top-color: var(--petrol);
}

.card-body {
    border-top-color: var(--framboos-soft);
}
.card-body h2 {
    color: var(--framboos-deep);
}

.card-left {
    border-top-color: var(--terra);
    background: linear-gradient(180deg, var(--terra-whisper) 0%, var(--paper) 50%);
}
.card-left h2 {
    color: var(--terra);
}
.card-left .card-arrow {
    color: var(--terra);
}
.card-left textarea:focus {
    border-color: var(--terra);
    box-shadow: 0 0 0 3px var(--terra-whisper);
}

.card-right {
    border-top-color: var(--leaf);
    background: linear-gradient(180deg, var(--leaf-whisper) 0%, var(--paper) 50%);
}
.card-right h2 {
    color: var(--leaf);
}
.card-right .card-arrow {
    color: var(--leaf);
}
.card-right textarea:focus {
    border-color: var(--leaf);
    box-shadow: 0 0 0 3px var(--leaf-whisper);
}

.card-hooks {
    border-top-color: var(--terra);
}
.card-hooks h2 {
    color: var(--terra);
}

.card-helpers {
    border-top-color: var(--leaf);
}
.card-helpers h2 {
    color: var(--leaf);
}

/* =========================================================================
   ACTIES
   ========================================================================= */
.actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s var(--ease);
    text-decoration: none;
}

.btn-primary {
    background: var(--petrol);
    color: var(--paper);
    box-shadow: 0 1px 3px rgba(46, 107, 126, 0.25);
}

.btn-primary:hover {
    background: var(--petrol-deep);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(46, 107, 126, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--ink-soft);
    border: 1px solid var(--line);
}

.btn-ghost:hover {
    color: var(--ink);
    background: var(--cream-deep);
    border-color: var(--ink-muted);
}

/* =========================================================================
   UITLEG (uitklap)
   ========================================================================= */
.explainer {
    max-width: 720px;
    margin: 96px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.explainer-block {
    background: var(--paper);
    border-radius: 6px;
    border: 1px solid var(--line-soft);
    overflow: hidden;
    transition: box-shadow 0.2s var(--ease);
}

.explainer-block[open] {
    box-shadow:
        0 1px 3px rgba(29, 43, 53, 0.05),
        0 4px 12px rgba(29, 43, 53, 0.05);
}

.explainer-block summary {
    padding: 18px 22px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: var(--ink);
    transition: background 0.2s var(--ease);
}

.explainer-block summary::-webkit-details-marker {
    display: none;
}

.explainer-block summary:hover {
    background: var(--cream);
}

.summary-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: -0.005em;
}

.summary-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--petrol-whisper);
    color: var(--petrol);
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 400;
    transition: transform 0.3s var(--ease), background 0.2s var(--ease);
    flex: 0 0 auto;
}

.explainer-block[open] .summary-icon {
    transform: rotate(45deg);
    background: var(--petrol);
    color: var(--paper);
}

.explainer-body {
    padding: 0 22px 22px;
    color: var(--ink-soft);
    line-height: 1.7;
    animation: explainerOpen 0.3s var(--ease-out);
}

.explainer-body p {
    margin-bottom: 12px;
}

.explainer-body p:last-child {
    margin-bottom: 0;
}

.explainer-body ol {
    margin: 12px 0 12px 22px;
}

.explainer-body ol li {
    margin-bottom: 10px;
    padding-left: 4px;
}

.explainer-body strong {
    color: var(--ink);
    font-weight: 600;
}

.explainer-body em {
    font-style: italic;
    color: var(--ink);
}

@keyframes explainerOpen {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================================================
   BRON
   ========================================================================= */
.source {
    max-width: 680px;
    margin: 80px auto 0;
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}

.source-eyebrow {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--petrol);
    margin-bottom: 14px;
}

.source p {
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 12px;
}

.source p:last-of-type {
    margin-bottom: 0;
}

.source strong {
    color: var(--ink);
    font-weight: 600;
}

.source em {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--ink);
    font-weight: 500;
}

.source-links {
    margin-top: 20px !important;
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.source-links a {
    color: var(--petrol);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: gap 0.2s var(--ease);
}

.source-links a:hover {
    color: var(--petrol-deep);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
    background: var(--paper);
    border-top: 1px solid var(--line-soft);
    margin-top: 96px;
}

.site-footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 28px 24px;
    text-align: center;
    color: var(--ink-muted);
    font-size: 0.88rem;
}

.site-footer a {
    color: var(--petrol);
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* =========================================================================
   UITLEG-PAGINA
   ========================================================================= */
.uitleg-main {
    max-width: 820px;
}

/* Actieve nav-link */
.site-nav a.is-current {
    color: var(--petrol);
    font-weight: 500;
}

/* INTRO van uitleg-pagina */
.uitleg-intro {
    max-width: 680px;
    margin: 0 auto 72px;
    text-align: center;
}

.uitleg-intro h1 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 16px;
    letter-spacing: -0.015em;
}

/* DE ZES SECTIES */
.uitleg-sections {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.uitleg-section {
    background: var(--paper);
    border-radius: 8px;
    padding: 36px 40px 40px;
    border-top: 3px solid var(--petrol);
    box-shadow:
        0 1px 2px rgba(29, 43, 53, 0.04),
        0 2px 8px rgba(29, 43, 53, 0.04);
}

/* Nummer-kop voor elke sectie */
.uitleg-section-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line-soft);
}

.uitleg-num {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--petrol);
    font-variant-numeric: tabular-nums;
    flex: 0 0 auto;
}

.uitleg-icon {
    width: 44px;
    height: 44px;
    background: var(--petrol-whisper);
    color: var(--petrol);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.uitleg-icon svg {
    width: 22px;
    height: 22px;
}

.uitleg-section h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.5rem, 3vw, 1.85rem);
    line-height: 1.2;
    color: var(--ink);
    margin: 0;
    letter-spacing: -0.01em;
    flex: 1;
}

/* INHOUD per sectie */
.uitleg-section-body {
    color: var(--ink-soft);
    line-height: 1.75;
}

.uitleg-section-body p {
    margin-bottom: 16px;
}

.uitleg-section-body p:last-child {
    margin-bottom: 0;
}

.uitleg-section-body em {
    font-style: italic;
    color: var(--ink);
}

.uitleg-section-body strong {
    color: var(--ink);
    font-weight: 600;
}

.uitleg-lead {
    font-family: var(--font-display);
    font-size: 1.18rem;
    line-height: 1.55;
    color: var(--ink);
    font-style: italic;
    font-weight: 400;
    margin-bottom: 20px !important;
}

.uitleg-after {
    margin-top: 20px;
}

/* CALLOUT — petrol */
.uitleg-callout {
    background: var(--petrol-whisper);
    border-left: 3px solid var(--petrol);
    border-radius: 0 5px 5px 0;
    padding: 16px 20px;
    margin: 20px 0;
}

.uitleg-callout p {
    margin: 0;
    color: var(--ink);
    font-size: 0.98rem;
}

/* QUOTE — framboos */
.uitleg-quote {
    background: var(--framboos-whisper);
    border-left: 3px solid var(--framboos);
    border-radius: 0 5px 5px 0;
    padding: 20px 24px;
    margin: 24px 0;
}

.uitleg-quote p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--ink);
    line-height: 1.5;
    margin: 0;
}

.uitleg-quote-source {
    font-family: var(--font-body) !important;
    font-style: normal !important;
    font-size: 0.85rem !important;
    color: var(--framboos-deep) !important;
    margin-top: 12px !important;
    letter-spacing: 0.01em;
}

.uitleg-quote-source em {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
}

/* Prominente bronvermelding bij een hele sectie */
.source-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--framboos-whisper);
    border-left: 3px solid var(--framboos);
    border-radius: 0 6px 6px 0;
    padding: 14px 18px;
    margin-bottom: 24px;
}

.source-box-icon {
    color: var(--framboos-deep);
    flex: 0 0 auto;
    margin-top: 2px;
}

.source-box p {
    margin: 0 !important;
    color: var(--ink) !important;
    font-size: 0.95rem !important;
    line-height: 1.55;
}

.source-box em {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--ink);
    font-weight: 500;
}

/* Bron-noot onderaan een sectie */
.uitleg-source-note {
    margin-top: 20px !important;
    padding-top: 16px;
    border-top: 1px dashed var(--line);
    font-size: 0.88rem !important;
    color: var(--ink-muted) !important;
    font-style: italic;
}

.uitleg-source-note em {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--ink-soft);
}

/* CAST GRID — drie delen-types */
.cast-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.cast-card {
    background: var(--cream);
    border-radius: 6px;
    padding: 20px;
    border-top: 3px solid var(--ink-muted);
}

.cast-card h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.15rem;
    margin-bottom: 4px;
    color: var(--ink);
}

.cast-role {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.92rem;
    color: var(--ink-muted);
    margin-bottom: 14px !important;
}

.cast-card p {
    font-size: 0.92rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.cast-card p:last-child {
    margin-bottom: 0;
}

.cast-manager { border-top-color: var(--petrol); }
.cast-firefighter { border-top-color: var(--terra); }
.cast-exile { border-top-color: var(--framboos); }

/* ZELF-LIST */
.zelf-list {
    list-style: none;
    margin: 20px 0;
    padding: 20px 24px;
    background: var(--cream);
    border-radius: 6px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 24px;
}

.zelf-list li {
    color: var(--ink);
    font-size: 0.98rem;
    line-height: 1.5;
}

.zelf-list strong {
    font-weight: 500;
    color: var(--petrol);
}

.zelf-en {
    color: var(--ink-muted);
    font-style: italic;
    font-family: var(--font-display);
    font-size: 0.92rem;
}

/* TWEE WEGEN — paths-grid */
.paths-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
}

.path-card {
    background: var(--cream);
    border-radius: 6px;
    padding: 20px;
    border-top: 3px solid var(--ink-muted);
}

.path-card h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.2rem;
    margin: 6px 0 10px;
    color: var(--ink);
}

.path-arrow {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    display: inline-block;
}

.path-card p {
    font-size: 0.95rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.path-examples {
    color: var(--ink-muted);
    font-size: 0.9rem !important;
    margin-bottom: 0 !important;
}

.path-left {
    border-top-color: var(--terra);
    background: linear-gradient(180deg, var(--terra-whisper) 0%, var(--cream) 60%);
}
.path-left h3, .path-left .path-arrow { color: var(--terra); }

.path-right {
    border-top-color: var(--leaf);
    background: linear-gradient(180deg, var(--leaf-whisper) 0%, var(--cream) 60%);
}
.path-right h3, .path-right .path-arrow { color: var(--leaf); }

/* RESOLUTIE-blok bij Zelf-leiderschap */
.zelf-resolution {
    background: var(--petrol-whisper);
    border-radius: 6px;
    padding: 20px 24px;
    margin: 24px 0 16px;
}

.zelf-resolution h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--ink);
}

.zelf-resolution ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.zelf-resolution li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: var(--ink-soft);
    line-height: 1.6;
}

.zelf-resolution li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--petrol);
    font-weight: 500;
}

.zelf-resolution li:last-child {
    margin-bottom: 0;
}

/* CTA onderaan */
.uitleg-cta {
    text-align: center;
    margin-top: 80px;
    padding: 48px 32px;
    background: linear-gradient(180deg, var(--cream-deep) 0%, var(--cream) 100%);
    border-radius: 10px;
    border: 1px solid var(--line-soft);
}

.uitleg-cta-eyebrow {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--framboos);
    margin-bottom: 12px;
}

.uitleg-cta h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.7rem, 3.5vw, 2.2rem);
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.uitleg-cta p {
    color: var(--ink-soft);
    margin-bottom: 24px;
    max-width: 38ch;
    margin-left: auto;
    margin-right: auto;
}

.uitleg-cta .btn {
    padding: 14px 30px;
}

/* RESPONSIVE voor uitleg-pagina */
@media (max-width: 760px) {
    .uitleg-section {
        padding: 24px 22px 28px;
    }
    
    .uitleg-section-head {
        gap: 12px;
    }
    
    .uitleg-icon {
        width: 38px;
        height: 38px;
    }
    
    .uitleg-icon svg {
        width: 20px;
        height: 20px;
    }

    .cast-grid {
        grid-template-columns: 1fr;
    }

    .zelf-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .paths-grid {
        grid-template-columns: 1fr;
    }

    .uitleg-sections {
        gap: 36px;
    }

    .uitleg-cta {
        padding: 32px 20px;
        margin-top: 56px;
    }
}


@media (max-width: 760px) {
    .row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .site-main {
        padding: 40px 16px 60px;
    }

    .site-header-inner {
        padding: 14px 16px;
    }

    .site-nav {
        gap: 16px;
    }

    .site-nav a {
        font-size: 0.88rem;
    }

    .intro {
        margin-bottom: 40px;
    }

    .explainer {
        margin-top: 64px;
    }

    .source {
        margin-top: 56px;
    }
}

@media (max-width: 480px) {
    .site-brand-text {
        display: none;
    }

    .site-nav {
        gap: 12px;
    }
}

/* =========================================================================
   HOME — drie oefeningen-kaarten
   ========================================================================= */
.home-main {
    max-width: 980px;
}

.home-intro {
    max-width: 680px;
    margin: 0 auto 56px;
    text-align: center;
}

.home-intro h1 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2.2rem, 5vw, 3rem);
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 16px;
    letter-spacing: -0.015em;
}

.exercises {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-bottom: 56px;
}

@media (min-width: 980px) {
    .exercises {
        grid-template-columns: repeat(3, 1fr);
    }
}

.exercise-card {
    display: flex;
    flex-direction: column;
    background: var(--paper);
    border-radius: 8px;
    padding: 28px 24px 24px;
    border-top: 3px solid var(--petrol);
    box-shadow:
        0 1px 2px rgba(29, 43, 53, 0.04),
        0 2px 8px rgba(29, 43, 53, 0.04);
    text-decoration: none;
    color: inherit;
    transition: all 0.25s var(--ease);
    cursor: pointer;
}

.exercise-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 1px 2px rgba(29, 43, 53, 0.04),
        0 8px 24px rgba(29, 43, 53, 0.1);
}

.exercise-spiegelmodel { border-top-color: var(--petrol); }
.exercise-naarbinnen { border-top-color: var(--leaf); }
.exercise-uturn { border-top-color: var(--framboos); }

.exercise-icon {
    width: 56px;
    height: 56px;
    background: var(--petrol-whisper);
    color: var(--petrol);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s var(--ease);
}

.exercise-spiegelmodel .exercise-icon { background: var(--petrol-whisper); color: var(--petrol); }
.exercise-naarbinnen .exercise-icon { background: var(--leaf-whisper); color: var(--leaf); }
.exercise-uturn .exercise-icon { background: var(--framboos-whisper); color: var(--framboos); }

.exercise-card:hover .exercise-icon {
    transform: scale(1.05);
}

.exercise-card-body {
    flex: 1;
    margin-bottom: 18px;
}

.exercise-meta {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 10px;
}

.exercise-card h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: -0.005em;
}

.exercise-desc {
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.6;
}

.exercise-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--petrol);
    font-size: 0.92rem;
    font-weight: 500;
    transition: gap 0.25s var(--ease);
}

.exercise-spiegelmodel .exercise-cta { color: var(--petrol); }
.exercise-naarbinnen .exercise-cta { color: var(--leaf); }
.exercise-uturn .exercise-cta { color: var(--framboos); }

.exercise-card:hover .exercise-cta {
    gap: 10px;
}

.home-uitleg-link {
    text-align: center;
    margin: 64px auto 56px;
    padding: 32px;
    background: var(--cream-deep);
    border-radius: 8px;
    max-width: 600px;
}

.home-uitleg-link p:first-child {
    color: var(--ink-muted);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--petrol);
    font-weight: 500;
    text-decoration: none;
    transition: gap 0.25s var(--ease);
}

.text-link:hover {
    gap: 12px;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* =========================================================================
   NAAR BINNEN — meditatie-oefening
   ========================================================================= */
.meditation-main {
    max-width: 680px;
}

section.meditation-screen {
    display: none !important;
}

section.meditation-screen.active {
    display: block !important;
    animation: meditationFade 0.5s var(--ease-out);
}

@keyframes meditationFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.meditation-intro {
    text-align: center;
}

.meditation-intro h1 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 16px;
    letter-spacing: -0.015em;
}

.meditation-intro .intro-body {
    text-align: center;
    margin-bottom: 32px;
}

.meditation-options {
    margin: 32px 0;
}

.toggle-row {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 12px 20px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
    user-select: none;
}

.toggle-row input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 20px;
    background: var(--line);
    border-radius: 999px;
    transition: background 0.2s var(--ease);
    flex: 0 0 auto;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: var(--paper);
    border-radius: 50%;
    transition: transform 0.2s var(--ease);
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.toggle-row input:checked ~ .toggle-switch {
    background: var(--leaf);
}

.toggle-row input:checked ~ .toggle-switch::after {
    transform: translateX(16px);
}

.toggle-label {
    font-size: 0.95rem;
    color: var(--ink);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.02rem;
}

.meditation-progress {
    margin-bottom: 32px;
}

.progress-step {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 10px;
    text-align: center;
}

.progress-track {
    height: 3px;
    background: var(--line);
    border-radius: 999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--leaf);
    border-radius: 999px;
    transition: width 0.5s var(--ease-out);
}

.step-card {
    background: var(--paper);
    border-radius: 10px;
    padding: 40px 36px 32px;
    border-top: 3px solid var(--leaf);
    box-shadow:
        0 1px 2px rgba(29, 43, 53, 0.04),
        0 4px 16px rgba(29, 43, 53, 0.06);
    margin-bottom: 24px;
}

.step-card.fade-in {
    animation: stepFade 0.5s var(--ease-out);
}

@keyframes stepFade {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-eyebrow {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--leaf);
    margin-bottom: 12px;
}

.step-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.step-body {
    color: var(--ink-soft);
    line-height: 1.75;
    font-size: 1.02rem;
}

.step-body p {
    margin-bottom: 14px;
}

.step-body p:last-child {
    margin-bottom: 0;
}

.step-body em {
    color: var(--ink);
    font-style: italic;
}

.step-input {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line-soft);
}

.step-input label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--ink);
}

.step-input textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 5px;
    font-size: 0.98rem;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.5;
    resize: vertical;
}

.step-input textarea:focus {
    outline: none;
    border-color: var(--leaf);
    background: var(--paper);
    box-shadow: 0 0 0 3px var(--leaf-whisper);
}

.step-timer {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--line-soft);
}

.timer-button {
    width: 36px;
    height: 36px;
    background: var(--leaf-whisper);
    border: none;
    color: var(--leaf);
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex: 0 0 auto;
    transition: background 0.2s var(--ease);
}

.timer-button:hover {
    background: var(--leaf);
    color: var(--paper);
}

.timer-track {
    flex: 1;
    height: 4px;
    background: var(--line);
    border-radius: 999px;
    overflow: hidden;
}

.timer-fill {
    height: 100%;
    background: var(--leaf-soft);
    border-radius: 999px;
    transition: width 1s linear;
}

.timer-text {
    font-variant-numeric: tabular-nums;
    font-size: 0.92rem;
    color: var(--ink-muted);
    min-width: 36px;
    text-align: right;
}

.step-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.meditation-end {
    text-align: center;
    padding: 32px 0;
}

.end-emblem {
    display: flex;
    justify-content: center;
    color: var(--leaf);
    margin-bottom: 24px;
}

.meditation-end h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.end-lede {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--ink-soft);
    line-height: 1.5;
    margin-bottom: 32px;
}

.end-reflection {
    background: var(--leaf-whisper);
    border-left: 3px solid var(--leaf);
    border-radius: 0 6px 6px 0;
    padding: 20px 24px;
    margin: 24px auto 32px;
    max-width: 500px;
    text-align: left;
}

.end-reflection-label {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--leaf);
    margin-bottom: 10px;
}

.end-reflection-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--ink);
    line-height: 1.5;
    margin: 0;
}

.end-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.end-actions .btn {
    text-decoration: none;
}

/* =========================================================================
   U-TURN — kort werkblad
   ========================================================================= */
.uturn-intro {
    max-width: 680px;
    margin: 0 auto 56px;
    text-align: center;
}

.uturn-intro h1 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2.2rem, 5vw, 3rem);
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 16px;
    letter-spacing: -0.015em;
}

.uturn-worksheet {
    max-width: 680px;
    margin: 0 auto;
}

.uturn-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--framboos);
    color: var(--paper);
    border-radius: 50%;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1;
    flex: 0 0 auto;
}

.card-uturn-1, .card-uturn-2, .card-uturn-3, .card-uturn-4 {
    border-top-color: var(--framboos);
}

.card-uturn-1 h2, .card-uturn-2 h2, .card-uturn-3 h2, .card-uturn-4 h2 {
    color: var(--framboos-deep);
}

.card-uturn-1 textarea:focus,
.card-uturn-2 textarea:focus,
.card-uturn-3 textarea:focus,
.card-uturn-4 textarea:focus {
    border-color: var(--framboos);
    box-shadow: 0 0 0 3px var(--framboos-whisper);
}

.uturn-closing {
    max-width: 600px;
    margin: 64px auto 0;
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}

.closing-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--ink);
    line-height: 1.5;
    margin-bottom: 16px;
}

.uturn-closing p:last-child {
    color: var(--ink-soft);
}

.uturn-closing a {
    color: var(--framboos-deep);
    font-weight: 500;
}

/* =========================================================================
   BALANCE-CARDS (sectie 07 uitleg)
   ========================================================================= */
.balance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
}

.balance-card {
    background: var(--cream);
    border-radius: 6px;
    padding: 20px 22px;
    border-top: 3px solid var(--petrol);
}

.balance-card:first-child { border-top-color: var(--framboos); }
.balance-card:last-child { border-top-color: var(--leaf); }

.balance-card h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--ink);
}

.balance-card:first-child h3 { color: var(--framboos-deep); }
.balance-card:last-child h3 { color: var(--leaf); }

.balance-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.balance-risk {
    font-size: 0.88rem !important;
    color: var(--ink-muted);
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed var(--line);
    margin-bottom: 0 !important;
}

.balance-risk strong {
    color: var(--ink-soft);
    font-weight: 500;
}

/* =========================================================================
   HERKENNINGSVRAGEN per type deel (sectie 03 uitleg)
   ========================================================================= */
.recognition {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line-soft);
}

.recognition-intro {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--ink-soft);
    margin-bottom: 16px !important;
    line-height: 1.5;
}

.recognition-block {
    background: var(--cream);
    border-radius: 6px;
    border: 1px solid var(--line-soft);
    overflow: hidden;
    margin-bottom: 10px;
    transition: box-shadow 0.2s var(--ease);
}

.recognition-block:last-child {
    margin-bottom: 0;
}

.recognition-block[open] {
    box-shadow: 0 1px 3px rgba(29, 43, 53, 0.05), 0 4px 12px rgba(29, 43, 53, 0.05);
}

.recognition-block summary {
    padding: 16px 20px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: var(--ink);
    transition: background 0.2s var(--ease);
}

.recognition-block summary::-webkit-details-marker {
    display: none;
}

.recognition-block summary:hover {
    background: var(--cream-deep);
}

.recognition-block summary .summary-text {
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: 0;
}

.recognition-block summary .summary-text strong {
    font-weight: 600;
    color: var(--petrol);
}

.recognition-block .summary-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--petrol-whisper);
    color: var(--petrol);
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 400;
    transition: transform 0.3s var(--ease), background 0.2s var(--ease);
    flex: 0 0 auto;
}

.recognition-block[open] .summary-icon {
    transform: rotate(45deg);
    background: var(--petrol);
    color: var(--paper);
}

.recognition-body {
    padding: 4px 20px 20px;
    color: var(--ink-soft);
    line-height: 1.7;
    animation: explainerOpen 0.3s var(--ease-out);
}

.recognition-body p {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.recognition-body ul {
    list-style: none;
    margin: 12px 0;
    padding: 0;
}

.recognition-body ul li {
    position: relative;
    padding: 6px 0 6px 22px;
    color: var(--ink);
    font-size: 0.95rem;
    line-height: 1.55;
    border-bottom: 1px dashed var(--line-soft);
}

.recognition-body ul li:last-child {
    border-bottom: none;
}

.recognition-body ul li::before {
    content: '?';
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--petrol);
    font-weight: 600;
    font-size: 0.85rem;
    width: 16px;
    height: 16px;
    background: var(--petrol-whisper);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.recognition-names {
    margin-top: 14px !important;
    padding: 12px 14px;
    background: var(--paper);
    border-radius: 4px;
    font-size: 0.92rem !important;
    color: var(--ink-soft);
    margin-bottom: 0 !important;
}

.recognition-names strong {
    color: var(--ink);
    font-weight: 600;
}


@media (max-width: 760px) {
    .exercises {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .balance-grid {
        grid-template-columns: 1fr;
    }

    .step-card {
        padding: 28px 22px 24px;
    }

    .step-nav {
        flex-direction: row;
    }

    .step-nav .btn {
        flex: 0 1 auto;
        padding: 12px 16px;
    }

    .end-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .end-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================================================
   WAARDENKOMPAS — klei/oker thema
   ========================================================================= */

/* Home-kaart variant */
.exercise-kompas { border-top-color: var(--clay); }
.exercise-kompas .exercise-icon { background: var(--clay-whisper); color: var(--clay); }
.exercise-kompas .exercise-cta { color: var(--clay); }

/* WERKBLAD */
.kompas-intro {
    max-width: 720px;
    margin: 0 auto 56px;
    text-align: center;
}

.kompas-intro h1 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2.2rem, 5vw, 3rem);
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 16px;
    letter-spacing: -0.015em;
}

.kompas-worksheet {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* DOMEIN-KAARTEN */
.domain-card {
    background: var(--paper);
    border-radius: 8px;
    padding: 24px 28px 28px;
    border-top: 3px solid var(--clay);
    box-shadow:
        0 1px 2px rgba(29, 43, 53, 0.04),
        0 2px 8px rgba(29, 43, 53, 0.04);
    transition: box-shadow 0.3s var(--ease);
}

.domain-card:focus-within {
    box-shadow:
        0 1px 2px rgba(29, 43, 53, 0.04),
        0 6px 20px rgba(29, 43, 53, 0.08);
}

.domain-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line-soft);
}

.domain-icon {
    width: 44px;
    height: 44px;
    background: var(--clay-whisper);
    color: var(--clay);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.domain-titles {
    flex: 1;
}

.domain-num {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 2px;
}

.domain-card h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.2;
    color: var(--ink);
    margin: 0;
    letter-spacing: -0.005em;
}

/* VRAGEN BINNEN DOMEIN-KAART */
.domain-q {
    margin-bottom: 18px;
}

.domain-q:last-child {
    margin-bottom: 0;
}

.domain-q label {
    display: block;
    color: var(--ink);
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 8px;
    line-height: 1.5;
}

.domain-q input[type="text"],
.domain-q textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--line);
    border-radius: 5px;
    font-size: 0.96rem;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--cream);
    transition: all 0.2s var(--ease);
    line-height: 1.5;
}

.domain-q input[type="text"]::placeholder,
.domain-q textarea::placeholder {
    color: var(--ink-whisper);
    font-style: italic;
}

.domain-q input[type="text"]:focus,
.domain-q textarea:focus {
    outline: none;
    border-color: var(--clay);
    background: var(--paper);
    box-shadow: 0 0 0 3px var(--clay-whisper);
}

.domain-q textarea {
    resize: vertical;
    min-height: 60px;
}

/* SCHAAL-SLIDER (1-10) */
.scale-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 6px 0;
}

.scale-slider {
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: var(--line);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.scale-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--paper);
    border: 2px solid var(--clay);
    cursor: grab;
    transition: all 0.2s var(--ease);
    box-shadow: 0 2px 8px rgba(184, 137, 64, 0.25);
}

.scale-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    border-color: var(--clay-deep);
}

.scale-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--paper);
    border: 2px solid var(--clay);
    cursor: grab;
}

.scale-value {
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    color: var(--clay-deep);
    background: var(--clay-whisper);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.88rem;
    min-width: 36px;
    text-align: center;
}

/* KOMPAS-PRIMARY KNOP (klei in plaats van petrol) */
.btn-kompas {
    background: var(--clay);
    color: var(--paper);
    box-shadow: 0 1px 3px rgba(184, 137, 64, 0.25);
}

.btn-kompas:hover {
    background: var(--clay-deep);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(184, 137, 64, 0.3);
}

/* AFSLUITING */
.kompas-closing {
    max-width: 640px;
    margin: 64px auto 0;
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}

.kompas-closing .closing-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.18rem;
    color: var(--ink);
    line-height: 1.5;
    margin-bottom: 16px;
}

.kompas-closing p:last-child {
    color: var(--ink-soft);
}

.kompas-closing a {
    color: var(--clay-deep);
    font-weight: 500;
}

/* RESPONSIVE voor kompas */
@media (max-width: 640px) {
    .domain-card {
        padding: 20px 20px 22px;
    }

    .domain-header {
        gap: 12px;
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .domain-icon {
        width: 38px;
        height: 38px;
    }

    .domain-card h2 {
        font-size: 1.2rem;
    }
}

/* PRINT: kompas */
@media print {
    .kompas-closing,
    .kompas-intro .intro-body,
    .kompas-intro .intro-meta {
        display: none !important;
    }

    .kompas-intro {
        margin-bottom: 20px;
        text-align: left;
    }

    .kompas-intro h1 {
        font-size: 22pt;
    }

    .kompas-worksheet {
        gap: 12px;
    }

    .domain-card {
        background: white !important;
        border: 1px solid #999 !important;
        border-top: 2px solid #b88940 !important;
        box-shadow: none !important;
        padding: 12px 14px;
        page-break-inside: avoid;
    }

    .domain-q input[type="text"],
    .domain-q textarea {
        background: transparent !important;
        border: none !important;
        border-bottom: 1px dotted #999 !important;
        border-radius: 0 !important;
        padding: 4px 0 !important;
        font-size: 11pt;
        font-family: var(--font-display);
        font-style: italic;
        color: black;
        min-height: auto !important;
    }

    .domain-q textarea {
        min-height: 30px !important;
    }

    .scale-row {
        padding: 0;
    }
}

/* =========================================================================
   LAVENDEL — voor Padoefening
   ========================================================================= */
:root {
    --lavender: #8b7aa8;
    --lavender-deep: #6b5b8a;
    --lavender-soft: #b8a8d0;
    --lavender-whisper: #ebe4f3;
}

/* Home-kaart variant */
.exercise-pad { border-top-color: var(--lavender); }
.exercise-pad .exercise-icon { background: var(--lavender-whisper); color: var(--lavender); }
.exercise-pad .exercise-cta { color: var(--lavender); }

/* =========================================================================
   PADOEFENING — pagina
   ========================================================================= */
.pad-main {
    max-width: 720px;
}

.pad-intro {
    max-width: 680px;
    margin: 0 auto 40px;
    text-align: center;
}

.pad-intro h1 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2.2rem, 5vw, 3rem);
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 16px;
    letter-spacing: -0.015em;
}

/* AUDIO-KAART */
.pad-audio {
    margin-bottom: 40px;
}

.audio-card {
    background: var(--paper);
    border-radius: 10px;
    padding: 28px 32px;
    border-top: 3px solid var(--lavender);
    box-shadow:
        0 1px 2px rgba(29, 43, 53, 0.04),
        0 4px 16px rgba(29, 43, 53, 0.06);
}

.audio-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.audio-icon {
    width: 44px;
    height: 44px;
    background: var(--lavender-whisper);
    color: var(--lavender);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.audio-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 2px;
}

.audio-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--ink);
    margin: 0;
    letter-spacing: -0.005em;
}

#pad-audio {
    width: 100%;
    margin-bottom: 16px;
    border-radius: 6px;
}

.audio-hint {
    color: var(--ink-soft);
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

/* TEKST-TOGGLE (lezen als alternatief) */
.pad-text {
    margin-bottom: 56px;
}

.pad-text-toggle {
    background: var(--cream);
    border-radius: 8px;
    border: 1px solid var(--line-soft);
    overflow: hidden;
    transition: box-shadow 0.2s var(--ease);
}

.pad-text-toggle[open] {
    background: var(--paper);
    box-shadow: 0 1px 3px rgba(29, 43, 53, 0.05), 0 4px 12px rgba(29, 43, 53, 0.05);
}

.pad-text-toggle summary {
    padding: 18px 24px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: var(--ink);
    transition: background 0.2s var(--ease);
}

.pad-text-toggle summary::-webkit-details-marker {
    display: none;
}

.pad-text-toggle summary:hover {
    background: var(--cream-deep);
}

.pad-text-toggle[open] summary:hover {
    background: var(--cream);
}

.pad-text-toggle summary .summary-text {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--ink);
}

.pad-text-toggle summary .summary-icon {
    width: 24px;
    height: 24px;
    background: var(--lavender-whisper);
    color: var(--lavender);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 400;
    transition: transform 0.3s var(--ease), background 0.2s var(--ease);
    flex: 0 0 auto;
}

.pad-text-toggle[open] summary .summary-icon {
    transform: rotate(45deg);
    background: var(--lavender);
    color: var(--paper);
}

.pad-text-body {
    padding: 8px 28px 28px;
    animation: explainerOpen 0.3s var(--ease-out);
}

.pad-step {
    padding: 18px 0;
    border-bottom: 1px dashed var(--line);
}

.pad-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pad-step:first-child {
    padding-top: 8px;
}

.pad-step-num {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--lavender);
    margin-bottom: 10px;
}

.pad-step p:not(.pad-step-num) {
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 10px;
}

.pad-step p:last-child {
    margin-bottom: 0;
}

.pad-step em {
    color: var(--ink);
    font-style: italic;
}

/* AFSLUITING */
.pad-closing {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}

.pad-closing .closing-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.18rem;
    color: var(--ink);
    line-height: 1.5;
    margin-bottom: 16px;
}

.pad-closing p:last-child {
    color: var(--ink-soft);
}

.pad-closing a {
    color: var(--lavender-deep);
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 640px) {
    .audio-card {
        padding: 22px 22px 24px;
    }

    .audio-header {
        gap: 12px;
        margin-bottom: 16px;
    }

    .audio-icon {
        width: 38px;
        height: 38px;
    }

    .audio-title {
        font-size: 1.08rem;
    }

    .pad-text-body {
        padding: 6px 20px 22px;
    }
}

/* =========================================================================
   PRINT — keuzekaart als PDF
   ========================================================================= */
@media print {
    body {
        background: white;
        font-size: 11pt;
        color: black;
    }

    .site-header,
    .site-footer,
    .no-print,
    .actions,
    .explainer,
    .source-links {
        display: none !important;
    }

    .site-main {
        padding: 0;
        max-width: 100%;
    }

    .intro {
        margin-bottom: 24px;
        text-align: left;
    }

    .intro h1 {
        font-size: 24pt;
        margin-bottom: 8px;
    }

    .lede {
        font-size: 13pt;
        margin: 0 0 16px;
        max-width: 100%;
    }

    .intro-body,
    .intro-meta {
        display: none;
    }

    .eyebrow {
        font-size: 9pt;
        margin-bottom: 8px;
    }

    .worksheet {
        gap: 12px;
    }

    .row {
        gap: 12px;
        page-break-inside: avoid;
    }

    .card {
        background: white !important;
        border: 1px solid #999 !important;
        border-top: 2px solid !important;
        box-shadow: none !important;
        padding: 14px 16px;
        page-break-inside: avoid;
    }

    .card-situation { border-top-color: #d63a5e !important; }
    .card-part { border-top-color: #2e6b7e !important; }
    .card-body { border-top-color: #f0a3b4 !important; }
    .card-left { border-top-color: #c14a3a !important; background: white !important; }
    .card-right { border-top-color: #4a8a5c !important; background: white !important; }
    .card-hooks { border-top-color: #c14a3a !important; }
    .card-helpers { border-top-color: #4a8a5c !important; }

    .card input[type="text"],
    .card textarea {
        background: transparent !important;
        border: none !important;
        border-bottom: 1px dotted #999 !important;
        border-radius: 0 !important;
        padding: 4px 0 !important;
        font-size: 11pt;
        font-family: var(--font-display);
        font-style: italic;
        color: black;
        min-height: auto !important;
    }

    .card textarea {
        min-height: 30px !important;
    }

    .row-label {
        margin: 8px 0 4px;
        font-size: 10pt;
    }

    .source {
        margin-top: 24px;
        padding-top: 16px;
        text-align: left;
        font-size: 9pt;
    }
}
