/* ── Design tokens ───────────────────────────────────── */
:root {
    --retro-groen:   #4A6741;
    --retro-geel:    #E8C547;
    --creme-wit:     #FAF6EF;
    --tekst-donker:  #2C2416;
    --accent-bruin:  #7A5C3E;

    --font-serif:    'Lora', Georgia, serif;
    --font-sans:     'Outfit', system-ui, sans-serif;

    --radius-sm:     6px;
    --radius-md:     12px;
    --radius-lg:     20px;
    --shadow-soft:   0 2px 12px rgba(44, 36, 22, 0.08);
    --shadow-card:   0 4px 24px rgba(44, 36, 22, 0.10);
    --max-width:     960px;
}

/* ── Reset & base ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--tekst-donker);
    background-color: var(--creme-wit);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.25;
}

a { color: var(--retro-groen); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--accent-bruin); }

img { max-width: 100%; height: auto; display: block; }

/* ── Layout helpers ───────────────────────────────────── */
.container {
    width: min(100% - 2rem, var(--max-width));
    margin-inline: auto;
}

section {
    padding-block: 4rem;
}

section:nth-child(even) {
    background-color: #fff;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-bruin);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    margin-bottom: 0.75rem;
}

.section-intro {
    max-width: 60ch;
    color: #5a4f3f;
    margin-bottom: 2.5rem;
}

/* ── Header & hero ──────────────────────────────────── */
.site-header {
    background: var(--retro-groen);
    color: var(--creme-wit);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-soft);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--creme-wit);
    text-decoration: none;
    letter-spacing: -0.01em;
}

.logo span {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.75;
    margin-top: 0.15rem;
}

.site-nav {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    flex-wrap: wrap;
}

.site-nav a {
    color: var(--creme-wit);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.site-nav a:hover { opacity: 1; color: var(--retro-geel); }

.hero {
    background: linear-gradient(135deg, var(--retro-groen) 0%, #3d5636 100%);
    color: var(--creme-wit);
    padding: 5rem 0 4.5rem;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: var(--retro-geel);
    color: var(--tekst-donker);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.hero h1 {
    font-size: clamp(2rem, 6vw, 3.2rem);
    margin-bottom: 1rem;
    max-width: 18ch;
    margin-inline: auto;
}

.hero p {
    font-size: 1.1rem;
    max-width: 48ch;
    margin-inline: auto;
    opacity: 0.9;
    font-weight: 300;
}

.hero-cta {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.6rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
    background: var(--retro-geel);
    color: var(--tekst-donker);
}

.btn-primary:hover {
    background: #f0d060;
    color: var(--tekst-donker);
}

.btn-outline {
    background: transparent;
    color: var(--creme-wit);
    border-color: rgba(250, 246, 239, 0.5);
}

.btn-outline:hover {
    border-color: var(--creme-wit);
    color: var(--creme-wit);
}

/* ── Homepage ─────────────────────────────────────────── */
.home-page {
    padding-block: 2rem 4rem;
}

.home-hero {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.home-hero__image {
    flex: 0 0 260px;
    max-width: 100%;
}

.home-hero__image img {
    width: 100%;
    max-height: 340px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.home-hero__content {
    flex: 1;
    min-width: 260px;
}

.home-hero__content h1 {
    font-size: clamp(1.75rem, 4vw, 2.4rem);
    color: var(--retro-groen);
    margin-bottom: 0.75rem;
}

.home-greeting {
    font-weight: 600;
    color: var(--accent-bruin);
    margin-bottom: 0.5rem;
}

.home-lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--accent-bruin);
    margin-bottom: 1rem;
}

.home-section {
    margin-bottom: 2.5rem;
    max-width: 72ch;
}

.home-section h2 {
    font-size: 1.5rem;
    color: var(--retro-groen);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--retro-geel);
}

.home-section--alt {
    max-width: none;
}

.home-section__intro {
    margin-bottom: 1.5rem;
    color: #5a4f3f;
}

.home-features {
    list-style: none;
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.home-features li {
    background: #fff;
    border: 1px solid rgba(122, 92, 62, 0.15);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.home-features strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--tekst-donker);
    margin-bottom: 0.5rem;
}

.home-features p {
    font-size: 0.98rem;
    color: #5a4f3f;
    margin-bottom: 0.75rem;
}

.home-features a {
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

.home-features a:hover {
    text-decoration: underline;
}

.home-closing {
    margin-top: 1.25rem;
    font-size: 1.05rem;
}

.home-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.home-cta .btn-outline {
    color: var(--retro-groen);
    border-color: var(--retro-groen);
}

.home-cta .btn-outline:hover {
    background: rgba(74, 103, 65, 0.08);
    color: var(--retro-groen);
    border-color: var(--retro-groen);
}

@media (max-width: 700px) {
    .home-hero {
        padding: 1.5rem;
    }
    .home-hero__image {
        flex: 1 1 100%;
    }
}

/* ── Feature pages (Wat ik voor je doe) ───────────────── */
.feature-page {
    padding-block: 2rem 4rem;
    max-width: 900px;
}

.feature-back {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
}

.feature-back:hover {
    color: var(--retro-groen);
}

.feature-header {
    margin-bottom: 2.5rem;
}

.feature-header h1 {
    font-size: clamp(1.75rem, 4vw, 2.4rem);
    color: var(--retro-groen);
    margin-bottom: 0.75rem;
}

.feature-intro {
    font-size: 1.1rem;
    color: #5a4f3f;
    max-width: 65ch;
    line-height: 1.7;
}

.feature-block {
    margin-bottom: 2.5rem;
}

.feature-block h2 {
    font-size: 1.35rem;
    color: var(--retro-groen);
    margin-bottom: 1rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--retro-geel);
}

.feature-block__intro {
    color: #5a4f3f;
    margin-bottom: 1.25rem;
}

.feature-cards {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.feature-cards--3 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card {
    background: #fff;
    border: 1px solid rgba(122, 92, 62, 0.15);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.feature-card h2,
.feature-card h3 {
    font-size: 1.15rem;
    color: var(--tekst-donker);
    margin-bottom: 0.5rem;
}

.feature-card__meta {
    font-size: 0.85rem;
    color: var(--accent-bruin);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-card--plan {
    grid-column: 1 / -1;
}

.feature-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent-bruin);
    margin-bottom: 0.5rem;
}

.feature-badge {
    display: inline-block;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.feature-badge--blue { background: #17a2b8; }
.feature-badge--green { background: #28a745; }
.feature-badge--orange { background: #fd7e14; }

.feature-list {
    margin: 0;
    padding-left: 1.25rem;
    color: #5a4f3f;
}

.feature-list li {
    margin-bottom: 0.35rem;
}

.feature-list--inline {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.feature-list--inline li::before {
    content: "✓ ";
    color: var(--retro-groen);
    font-weight: bold;
}

.feature-steps {
    margin: 1rem 0 0;
    padding-left: 1.25rem;
    color: #5a4f3f;
}

.feature-steps li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.feature-card__link {
    margin-top: 1rem;
    display: inline-block;
}

.feature-back--secondary {
    margin-left: 1rem;
    font-size: 0.92em;
    opacity: 0.85;
}

.stappenplan-detail__steps {
    margin-bottom: 2rem;
}

/* ── Onderhoudskalender ─────────────────────────────── */
.kalender-page {
    max-width: 920px;
    margin: 40px auto;
    padding: 0 20px 40px;
}

.kalender-page__header {
    text-align: center;
    margin-bottom: 2rem;
}

.kalender-page__header h1 {
    color: #333;
    margin-bottom: 0.75rem;
}

.kalender-page__header p {
    color: #666;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

.kalender-notice {
    background: #fff8e6;
    border: 1px solid #f0d78c;
    border-radius: 8px;
    padding: 14px 18px;
    margin-bottom: 1.5rem;
    color: #6b5a2e;
    font-size: 0.95em;
}

.kalender-block {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(42, 51, 46, 0.08);
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-top: 4px solid #ccc;
}

.kalender-block--wekelijks { border-top-color: #17a2b8; }
.kalender-block--dagelijks { border-top-color: #6f42c1; }
.kalender-block--maandelijks { border-top-color: #28a745; }
.kalender-block--jaarlijks { border-top-color: #fd7e14; }

.kalender-block__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #fafafa;
    border-bottom: 1px solid #eee;
}

.kalender-block__header h2 {
    margin: 0 0 0.35rem;
    font-size: 1.35rem;
    color: #333;
}

.kalender-block__header p {
    margin: 0;
    color: #666;
    font-size: 0.92rem;
    line-height: 1.5;
    max-width: 520px;
}

.kalender-block__progress {
    flex-shrink: 0;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: #e9ecef;
    color: #495057;
}

.kalender-block__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.kalender-task {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    flex-wrap: wrap;
}

.kalender-task:last-child {
    border-bottom: none;
}

.kalender-task:hover {
    background: #fcfcfc;
}

.kalender-task--done .kalender-task__title {
    text-decoration: line-through;
    color: #999;
}

.kalender-task__check {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    flex: 1;
    min-width: 200px;
}

.kalender-task__check input {
    width: 20px;
    height: 20px;
    accent-color: var(--retro-groen);
    flex-shrink: 0;
}

.kalender-task__title {
    font-size: 1.05rem;
    font-weight: 500;
    color: #333;
}

.kalender-task__plan {
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
}

.kalender-task__plan:hover {
    color: var(--accent-bruin);
}

.kalender-add {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--retro-groen);
    margin-top: 0.5rem;
}

.kalender-add h3 {
    margin: 0 0 0.35rem;
    color: #333;
}

.kalender-add__hint {
    margin: 0 0 1rem;
    color: #666;
    font-size: 0.92rem;
}

.kalender-add__form {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.kalender-add__form input,
.kalender-add__form select {
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
    font-family: inherit;
}

.kalender-add__form input {
    flex: 1;
    min-width: 200px;
}

.kalender-page__footer {
    margin-top: 1.5rem;
    color: #777;
    font-size: 0.9em;
    text-align: center;
}

.kalender-page__section-title {
    margin: 2.5rem 0 1.25rem;
    font-size: 1.35rem;
    color: #333;
    text-align: center;
}

/* Week calendar module */
.kalender-week {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(42, 51, 46, 0.1);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #ebe6dc;
}

.kalender-week__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.kalender-week__header h2 {
    margin: 0 0 0.35rem;
    font-size: 1.4rem;
    color: #333;
}

.kalender-week__header p {
    margin: 0;
    color: #666;
    font-size: 0.92rem;
    max-width: 520px;
    line-height: 1.5;
}

.kalender-week__legend {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: #666;
}

.kalender-week__dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 0.35rem;
}

.kalender-week__dot--daily { background: #6f42c1; }
.kalender-week__dot--weekly { background: #17a2b8; }

.kalender-week__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.65rem;
}

.kalender-week__day {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 0.75rem 0.6rem;
    min-height: 120px;
}

.kalender-week__day--weekend {
    background: #f5f8f4;
}

.kalender-week__dayname {
    margin: 0 0 0.65rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #555;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e0e0e0;
}

.kalender-week__tasks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.kalender-week__chip {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.25rem;
    padding: 0.35rem 0.45rem;
    border-radius: 6px;
    font-size: 0.72rem;
    line-height: 1.35;
    border-left: 3px solid #ccc;
    background: #fff;
    cursor: pointer;
}

.kalender-week__chip-check,
.kalender-week__plan-check {
    display: flex;
    align-items: flex-start;
    gap: 0.35rem;
    flex: 1;
    cursor: pointer;
    margin: 0;
}

.kalender-week__chip-check input,
.kalender-week__plan-check input {
    margin: 0.1rem 0 0;
    flex-shrink: 0;
    cursor: pointer;
}

.kalender-week__chip--daily {
    border-left-color: #6f42c1;
    background: #f8f5fc;
}

.kalender-week__chip--weekly {
    border-left-color: #17a2b8;
    background: #f0f9fb;
}

.kalender-week__chip--done {
    opacity: 0.55;
    text-decoration: line-through;
}

.kalender-week__chip-title {
    flex: 1;
    color: #333;
}

.kalender-week__chip-link {
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    flex-shrink: 0;
}

.kalender-week__empty {
    font-size: 0.75rem;
    color: #aaa;
    font-style: italic;
    text-align: center;
    padding: 0.5rem 0;
}

.kalender-week__planning {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px dashed #ddd;
}

.kalender-week__plan-block h3 {
    margin: 0 0 0.65rem;
    font-size: 0.95rem;
    color: #333;
}

.kalender-week__plan-block ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.kalender-week__plan-block--monthly h3 { color: #28a745; }
.kalender-week__plan-block--yearly h3 { color: #fd7e14; }

.kalender-week__plan-item {
    font-size: 0.85rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.kalender-week__plan-check span {
    flex: 1;
}

.kalender-week__plan-item--done {
    text-decoration: line-through;
    color: #999;
}

.kalender-week__plan-item a {
    font-weight: 700;
    text-decoration: none;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .kalender-week__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .kalender-week__grid {
        grid-template-columns: 1fr;
    }
    .kalender-week__planning {
        grid-template-columns: 1fr;
    }
    .kalender-block__header {
        flex-direction: column;
    }
    .kalender-task {
        flex-direction: column;
        align-items: flex-start;
    }
}

.feature-cta-box {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    text-align: center;
}

.feature-cta-box h2 {
    border: none;
    padding: 0;
}

.feature-cta-box p {
    color: #5a4f3f;
    margin-bottom: 1.25rem;
    max-width: 50ch;
    margin-inline: auto;
}

.feature-cta-box .btn-primary {
    color: var(--tekst-donker);
}

.feature-module-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.feature-module-card {
    display: block;
    background: #fff;
    border: 1px solid rgba(122, 92, 62, 0.15);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.2s;
}

.feature-module-card:hover {
    box-shadow: var(--shadow-card);
    color: inherit;
}

.feature-module-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.feature-module-card > div {
    padding: 1.25rem;
}

.feature-module-card h3 {
    font-size: 1.1rem;
    color: var(--tekst-donker);
    margin-bottom: 0.5rem;
}

.feature-module-card p {
    font-size: 0.95rem;
    color: #5a4f3f;
    margin-bottom: 0.75rem;
}

.feature-link {
    color: var(--retro-groen);
    font-weight: 600;
    font-size: 0.9rem;
}

.feature-empty {
    color: #777;
    font-style: italic;
}

.feature-verdict {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.75rem;
}

.feature-verdict--werkt { background: #28a745; }
.feature-verdict--werkt-niet { background: #dc3545; }
.feature-verdict--deels { background: #fd7e14; }

.feature-claim {
    color: #666;
    margin-bottom: 0.75rem;
}

.feature-tip {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    font-size: 0.95rem;
    color: #5a4f3f;
}

/* ── Educational modules (accordions) ─────────────────── */
.modules-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.module {
    background: #fff;
    border: 1px solid rgba(122, 92, 62, 0.15);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.module summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    cursor: pointer;
    list-style: none;
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    user-select: none;
    transition: background 0.2s;
}

.module summary::-webkit-details-marker { display: none; }

.module summary::after {
    content: '+';
    margin-left: auto;
    font-family: var(--font-sans);
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--accent-bruin);
    transition: transform 0.25s;
}

.module[open] summary::after {
    content: '−';
}

.module summary:hover { background: rgba(232, 197, 71, 0.12); }

.module.is-complete summary {
    border-left: 4px solid var(--retro-groen);
}

.module-number {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    background: var(--retro-groen);
    color: var(--creme-wit);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
}

.module-body {
    padding: 0 1.25rem 1.25rem 4.25rem;
    border-top: 1px solid rgba(122, 92, 62, 0.1);
}

.module-body p { margin-bottom: 0.75rem; color: #4a4035; }
.module-body ul { padding-left: 1.25rem; color: #4a4035; }
.module-body li { margin-bottom: 0.35rem; }

.module-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(74, 103, 65, 0.1);
    color: var(--retro-groen);
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
}

.module-complete-btn {
    margin-top: 0.75rem;
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
    background: transparent;
    color: var(--retro-groen);
    border: 1px solid rgba(74, 103, 65, 0.4);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: var(--font-sans);
    transition: background 0.2s;
}

.module-complete-btn:hover { background: rgba(74, 103, 65, 0.08); }
.module-complete-btn.is-done {
    background: rgba(74, 103, 65, 0.12);
    border-color: var(--retro-groen);
}

/* ── Video blog ───────────────────────────────────────── */
.video-grid {
    display: grid;
    gap: 2.5rem;
}

.video-card {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .video-card {
        grid-template-columns: 1fr 280px;
        align-items: start;
    }
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #ddd;
    box-shadow: var(--shadow-card);
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-meta h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.video-meta p {
    font-size: 0.95rem;
    color: #5a4f3f;
    margin-bottom: 1rem;
}

.video-date {
    font-size: 0.8rem;
    color: var(--accent-bruin);
    margin-bottom: 0.75rem;
}

.affiliate-box {
    background: #fff;
    border: 2px dashed rgba(122, 92, 62, 0.35);
    border-radius: var(--radius-md);
    padding: 1rem;
}

.affiliate-box-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-bruin);
    margin-bottom: 0.5rem;
}

.affiliate-box h4 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.affiliate-box p {
    font-size: 0.85rem;
    color: #5a4f3f;
    margin-bottom: 0.75rem;
}

.affiliate-link {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--retro-groen);
    text-decoration: none;
    border-bottom: 1px solid var(--retro-geel);
}

.affiliate-link:hover { color: var(--accent-bruin); }

/* ── Weekly checklist ─────────────────────────────────── */
.checklist-wrapper {
    background: #fff;
    border: 1px solid rgba(122, 92, 62, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-card);
}

.checklist-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--retro-geel);
}

.checklist-header h3 {
    font-size: 1.3rem;
}

.checklist-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-sm {
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
    background: transparent;
    color: var(--accent-bruin);
    border: 1px solid rgba(122, 92, 62, 0.4);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: var(--font-sans);
    transition: background 0.2s;
}

.btn-sm:hover { background: rgba(232, 197, 71, 0.2); }

.checklist-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 600px) {
    .checklist-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.checklist-day h4 {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--retro-groen);
    margin-bottom: 0.6rem;
}

.checklist-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.checklist-items label {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    cursor: pointer;
    font-size: 0.95rem;
    padding: 0.35rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: background 0.15s;
}

.checklist-items label:hover { background: rgba(232, 197, 71, 0.1); }

.checklist-items input[type="checkbox"] {
    margin-top: 0.25rem;
    accent-color: var(--retro-groen);
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.checklist-items input:checked + span {
    text-decoration: line-through;
    opacity: 0.55;
}

/* ── Footer ───────────────────────────────────────────── */
.site-footer {
    background: var(--tekst-donker);
    color: rgba(250, 246, 239, 0.7);
    padding: 2.5rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.site-footer strong {
    color: var(--creme-wit);
    font-family: var(--font-serif);
}

.footer-tagline {
    margin-top: 0.5rem;
    font-size: 0.8rem;
}

/* ── Print styles (checklist) ─────────────────────────── */
@media print {
    .site-header,
    .site-nav,
    .hero,
    .hero-cta,
    .checklist-actions,
    .site-footer,
    #modules,
    #videos {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
        font-size: 11pt;
    }

    #checklist {
        padding: 0;
    }

    .checklist-wrapper {
        box-shadow: none;
        border: 1px solid #ccc;
        padding: 1rem;
    }

    .checklist-grid {
        grid-template-columns: 1fr 1fr;
    }

    .checklist-items input[type="checkbox"] {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}

/* Styling voor de Inlog Modals */
.modal { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(42, 51, 46, 0.8); backdrop-filter: blur(3px); }
.modal-content { background-color: var(--creme-wit); margin: 10vh auto; padding: 40px; border-radius: 8px; max-width: 400px; border-top: 6px solid var(--retro-groen); position: relative; }
.close { position: absolute; right: 20px; top: 15px; font-size: 28px; font-weight: bold; cursor: pointer; color: var(--tekst-donker); }
.modal form label { display: block; margin-top: 15px; font-weight: 600; }
.modal form input { width: 100%; padding: 12px; margin-top: 5px; border: 1px solid var(--lijn-kleur); border-radius: 4px; font-family: 'Outfit', sans-serif; box-sizing: border-box; }
.error-msg { color: #d9534f; margin-top: 10px; font-size: 0.95rem; font-weight: 600; }
.modal a { color: var(--accent-bruin); font-weight: bold; }

/* ── Cookie consent ───────────────────────────────────── */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    padding: 1rem;
    background: rgba(42, 51, 46, 0.96);
    color: var(--creme-wit);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
}

.cookie-consent__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-consent__text {
    margin: 0;
    flex: 1;
    min-width: 240px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-consent__actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-consent__accept {
    background: var(--retro-groen);
    color: #fff;
    border: none;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
}

.cookie-consent__decline {
    background: transparent;
    color: var(--creme-wit);
    border: 1px solid rgba(250, 246, 239, 0.5);
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

/* ── Site images & commercial banners ─────────────── */
.site-image-slot {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.site-image-slot--top {
    margin-top: 0;
}

.site-image-slot--footer,
.site-image-slot--bottom {
    margin-bottom: 0;
}

.site-promo {
    position: relative;
    margin: 0;
    padding: 0;
    border-radius: var(--radius-sm, 8px);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(42, 51, 46, 0.08);
    border: 1px solid var(--lijn-kleur, #e8e4dc);
}

.site-promo img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: cover;
}

.site-promo-link {
    display: block;
    line-height: 0;
}

.site-promo-link:hover img {
    opacity: 0.92;
}

.site-promo figcaption {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    border-top: 1px solid var(--lijn-kleur, #e8e4dc);
}

.site-promo--context {
    border-left: 4px solid var(--retro-groen);
}

.site-promo--commercial {
    border-left: 4px solid var(--accent-bruin);
    background: linear-gradient(180deg, #fff 0%, #faf8f4 100%);
}

.site-promo-label {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 1;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.35rem 0.65rem;
    border-radius: 4px;
    background: var(--accent-bruin);
    color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.site-promo--placeholder {
    border-style: dashed;
    opacity: 0.95;
}

.site-promo--placeholder figcaption {
    font-style: italic;
    font-size: 0.85rem;
}

main > .site-image-slot--footer {
    max-width: var(--max-width, 1100px);
    margin-left: auto;
    margin-right: auto;
    padding: 0 1.25rem 2rem;
}

@media (min-width: 768px) {
    .site-image-slot--mid {
        max-width: 85%;
        margin-left: auto;
        margin-right: auto;
    }
}

input {
    padding: 10px;
    margin: 5px 0;
    width: 200px;
    display: block;
    border: 1px solid #ccc;
}
