/* === LiefCatootje — Handgemaakt met Liefde === */

:root {
    --coral: #D85A30;
    --coral-light: #e8784f;
    --coral-diep: #B8471F;
    --amber: #EF9F27;
    --cream: #FFF9F5;
    --cream-warm: #FDF0E9;
    /* Warm bruin in plaats van bijna-zwart. Het oude #2C1810 leest als
       zwart en maakt Fraunces hard; dit houdt de tekst in de huisstijl. */
    --brown: #4A3327;
    --brown-light: #8A7365;
    --kop: #3F281B;
    --white: #FFFFFF;
    --gray-light: #F6F0EB;
    --lijn: #EFE4DA;
    --shadow: 0 1px 3px rgba(74, 51, 39, 0.04);
    --shadow-hover: 0 8px 24px rgba(74, 51, 39, 0.10);
    --radius: 16px;
    --radius-sm: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--brown);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Fraunces', Georgia, serif;
    /* 600 maakte Fraunces bonkig; op 400-500 komt de letter tot z'n recht.
       SOFT en WONK zijn assen van deze variabele letter: iets rondere
       vormen, een tikje eigenzinniger. */
    font-weight: 400;
    font-variation-settings: 'SOFT' 40, 'WONK' 1;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: var(--kop);
}
h3, h4 { font-weight: 500; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

a { color: var(--coral); text-decoration: none; }
a:hover { color: var(--coral-light); }

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

/* === Header === */
.site-header {
    background: var(--white);
    border-bottom: 1px solid rgba(44, 24, 16, 0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brown);
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 1.3rem;
}

.logo:hover { opacity: 0.8; }

.logo-img { height: 50px; width: auto; }

.footer-logo { height: 30px; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.main-nav a {
    color: var(--brown-light);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.main-nav a:hover,
.main-nav a.active { color: var(--coral); }

.nav-cta {
    background: var(--coral);
    color: var(--white) !important;
    padding: 0.45rem 1.15rem;
    border-radius: 999px;
    font-weight: 500;
    transition: background 0.18s;
}

.nav-cta:hover { background: var(--coral-diep) !important; }

/* Hamburger */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brown);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.62rem 1.4rem;
    border-radius: 999px;
    font-family: inherit;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--coral);
    color: var(--white);
}

/* Geen zwevende knop met slagschaduw: dat is een effect zonder betekenis.
   Een rustige verdieping van de kleur zegt genoeg. */
.btn-primary:hover {
    background: var(--coral-diep);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--coral);
    border: 1px solid var(--coral);
}

.btn-secondary:hover {
    background: var(--coral);
    color: var(--white);
}

.btn-large {
    padding: 0.8rem 1.8rem;
    font-size: 0.98rem;
}

/* === Hero ===
   Gesplitst: tekst links, de creaties zelf rechts. De rechterhelft stond
   leeg, en dat is zonde als je iets tastbaars te laten zien hebt. */
.hero {
    background: var(--cream-warm);
    border-bottom: 1px solid var(--lijn);
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 3rem;
    align-items: center;
    min-height: 26rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.hero-content { max-width: 30rem; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.28rem 0.85rem;
    border-radius: 999px;
    background: rgba(216, 90, 48, 0.09);
    color: var(--coral-diep);
    font-size: 0.78rem;
    font-weight: 500;
    margin-bottom: 1.15rem;
}

.hero h1 {
    font-size: clamp(2.1rem, 4.6vw, 3.3rem);
    margin-bottom: 1.1rem;
}

/* De cursief is het accent van de hele pagina — daarom als enige in koraal */
.hero h1 em {
    color: var(--coral);
    font-style: italic;
    font-variation-settings: 'SOFT' 60, 'WONK' 1;
}

.hero p {
    font-size: 1.02rem;
    color: var(--brown-light);
    margin-bottom: 1.7rem;
    max-width: 27rem;
}

.hero-actions {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

/* Beeldkolom: één grote, twee kleinere ernaast */
.hero-beeld {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.7rem;
    height: 22rem;
}
.hero-foto {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    background: #FBE6DC;
    transition: box-shadow 0.25s;
}
.hero-foto:first-child { grid-row: span 2; }
.hero-foto img {
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 0.6rem;
    transition: transform 0.4s ease;
}
.hero-foto:hover img { transform: scale(1.04); }
.hero-foto:hover { box-shadow: var(--shadow-hover); }

/* De naam verschijnt pas bij hover; op aanraakschermen staat hij altijd */
.hero-foto-naam {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 1.6rem 0.75rem 0.6rem;
    background: linear-gradient(transparent, rgba(74, 51, 39, 0.55));
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.25s;
}
.hero-foto:hover .hero-foto-naam, .hero-foto:focus-visible .hero-foto-naam { opacity: 1; }
@media (hover: none) { .hero-foto-naam { opacity: 1; } }

@media (max-width: 900px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: 0;
    }
    .hero-content { max-width: none; }
    .hero-beeld { height: 15rem; }
}
@media (max-width: 560px) {
    .hero-beeld { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; height: 11rem; }
    .hero-foto:first-child { grid-row: span 1; }
    .hero-foto:nth-child(3) { display: none; }
}

/* === Sections === */
.section {
    padding: 3.5rem 0;
}

.section-warm {
    background: var(--cream-warm);
}

.section-title {
    font-size: 1.65rem;
    margin-bottom: 1.4rem;
    text-align: center;
}

.section-cta {
    text-align: center;
    margin-top: 2rem;
}

.page-header {
    background: var(--cream-warm);
    padding: 2.5rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--brown-light);
    font-size: 1.05rem;
}

/* === Creaties Grid === */
/* Kleinere kaarten: bij 260px passen er maar drie op een rij en wordt elke
   foto zo'n 350px groot. Dat oogt als een fotoalbum, niet als een overzicht. */
.creaties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
    gap: 1.15rem;
}

.creatie-card {
    background: var(--white);
    border: 1px solid var(--lijn);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow 0.25s, border-color 0.25s;
    color: var(--brown);
}

.creatie-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: #E4D3C6;
    color: var(--brown);
}
.creatie-card img { transition: transform 0.5s ease; }
.creatie-card:hover img { transform: scale(1.03); }

.creatie-image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--cream-warm);
}

/* contain in plaats van cover: bij cover valt er altijd een stuk van de
   creatie buiten beeld — precies het onderwerp waar het om gaat. De foto's
   hebben een lichte achtergrond, dus de ruimte eromheen valt niet op. */
.creatie-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.55rem;
}

.creatie-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    color: var(--coral);
    background: var(--cream-warm);
}

.creatie-placeholder.large {
    min-height: 300px;
    font-size: 5rem;
}

.creatie-info {
    padding: 1rem;
}

.creatie-info { padding: 0.7rem 0.8rem 0.85rem; }
.creatie-info h3 {
    font-size: 0.93rem;
    margin-bottom: 0.4rem;
}

.creatie-categorie {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--brown-light);
    background: var(--gray-light);
    padding: 0.12rem 0.55rem;
    border-radius: 999px;
    margin-right: 0.35rem;
}

.creatie-prijs {
    display: inline-block;
    font-weight: 600;
    color: var(--coral);
    font-size: 0.95rem;
}

.creatie-status {
    display: inline-block;
    font-size: 0.75rem;
    padding: 0.12rem 0.55rem;
    border-radius: 999px;
}

.status-beschikbaar { background: #E8F5E9; color: #2E7D32; }
.status-op_verzoek { background: #FFF3E0; color: #E65100; }
.status-verkocht { background: var(--gray-light); color: var(--brown-light); }

/* === Filter Bar === */
.filter-bar {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.filter-tag {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    background: var(--white);
    color: var(--brown-light);
    border: 1px solid rgba(44, 24, 16, 0.1);
    transition: all 0.2s;
}

.filter-tag:hover,
.filter-tag.active {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
}

/* === Nu Bezig === */
.nu-bezig-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.nu-bezig-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.nu-bezig-card.horizontal {
    display: grid;
    grid-template-columns: 160px 1fr;
}

.nu-bezig-info {
    padding: 1rem;
}

.nu-bezig-info h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.voortgang-bar {
    height: 8px;
    background: var(--gray-light);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.3rem;
}

.voortgang-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--coral), var(--amber));
    border-radius: 4px;
    transition: width 0.5s ease;
}

.voortgang-tekst {
    font-size: 0.8rem;
    color: var(--brown-light);
}

/* === Detail === */
.back-link {
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.back-link::before { content: "\2190 "; }

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.detail-info h1 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.detail-prijs {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--coral);
    margin: 1rem 0;
}

.detail-beschrijving {
    margin: 1.5rem 0;
    line-height: 1.7;
    color: var(--brown-light);
}

.detail-info .btn {
    margin-top: 0.5rem;
    margin-right: 0.5rem;
}

.detail-img {
    width: 100%;
    max-height: 60vh;
    object-fit: contain;
    border-radius: var(--radius);
    display: none;
}

.detail-img.active {
    display: block;
}

.image-thumbs {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scrollbar-width: thin;
}

.image-thumb {
    flex: 0 0 auto;
    width: 68px;
    height: 68px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    background: none;
    cursor: pointer;
    overflow: hidden;
    opacity: 0.65;
    transition: opacity 0.2s ease, border-color 0.2s ease;
}

.image-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-thumb:hover,
.image-thumb:focus-visible {
    opacity: 1;
}

.image-thumb.active {
    opacity: 1;
    border-color: var(--coral);
}

/* === About === */
.about-layout {
    display: grid;
    /* Een portretje naast de tekst, niet een halve pagina beeld: het is een
       kennismaking, geen fotoreportage. */
    grid-template-columns: 13rem minmax(0, 1fr);
    gap: 2.25rem;
    align-items: start;
}

.about-image { max-width: 13rem; }
/* Het beeld is zelf een labelkaartje, met eigen rand en crème doek. Een
   extra kader eromheen zou een lijst om een lijst worden. */
.about-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 10px 28px rgba(74, 51, 39, 0.09);
}

.about-text h2 { font-size: 1.55rem; margin-bottom: 1rem; }

@media (max-width: 760px) {
    .about-layout { grid-template-columns: 1fr; gap: 1.5rem; }
    .about-image { max-width: 11rem; }
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--brown-light);
    line-height: 1.7;
}

.about-text .btn {
    margin-top: 0.5rem;
}

/* === Contact === */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    color: var(--brown);
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: var(--brown);
}

.contact-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-card h3 {
    margin-bottom: 0.25rem;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--brown-light);
}

.contact-info h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.bestellen-stappen {
    padding-left: 1.5rem;
}

.bestellen-stappen li {
    margin-bottom: 0.75rem;
    line-height: 1.5;
    color: var(--brown-light);
}

/* === Newsletter === */
.newsletter-section {
    background: var(--white);
}

.newsletter-box {
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-box h2 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.newsletter-box p {
    color: var(--brown-light);
    margin-bottom: 1.25rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    padding: 0.7rem 1rem;
    border: 1px solid rgba(44, 24, 16, 0.15);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    flex: 1;
    min-width: 160px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--coral);
}

/* === Contact Form === */
.contact-form-section h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.contact-form .form-group {
    margin-bottom: 0.75rem;
    display: flex;
    flex-direction: column;
}

form.contact-form label {
    display: block !important;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

form.contact-form input[type="text"],
form.contact-form input[type="email"],
form.contact-form input[type="tel"],
form.contact-form textarea {
    display: block !important;
    width: 100% !important;
    padding: 0.6rem 0.8rem;
    border: 1px solid rgba(44, 24, 16, 0.15);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    box-sizing: border-box;
}

form.contact-form input:focus,
form.contact-form textarea:focus {
    outline: none;
    border-color: var(--coral);
}

form.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row-public {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.bestellen-info {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(44, 24, 16, 0.08);
}

.bestellen-info h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* === CTA Block === */
.section-cta-block {
    text-align: center;
    background: linear-gradient(135deg, var(--coral), var(--coral-light));
    color: var(--white);
    padding: 3rem 0;
}

.section-cta-block h2 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.section-cta-block p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.section-cta-block .btn-primary {
    background: var(--white);
    color: var(--coral);
}

.section-cta-block .btn-primary:hover {
    background: var(--cream);
}

/* === Footer === */
.site-footer {
    background: var(--brown);
    color: var(--cream);
    padding: 2.5rem 0 1.5rem;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1.5rem;
}

.footer-brand .logo-icon,
.footer-brand .logo-text {
    color: var(--cream);
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
}

.footer-brand p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--cream);
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-links a:hover { opacity: 1; }

.footer-copy {
    font-size: 0.8rem;
    opacity: 0.5;
    border-top: 1px solid rgba(255, 248, 245, 0.1);
    padding-top: 1rem;
}

/* === Empty State === */
.empty-state {
    text-align: center;
    color: var(--brown-light);
    padding: 3rem;
    grid-column: 1 / -1;
}

/* === Mobile === */
@media (max-width: 768px) {
    .menu-toggle { display: flex; }

    .main-nav {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem 1.25rem;
        gap: 0.5rem;
        box-shadow: var(--shadow);
    }

    .main-nav.open { display: flex; }

    .main-nav a {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--gray-light);
    }

    .nav-cta {
        text-align: center;
        margin-top: 0.5rem;
    }

    .hero { padding: 2.5rem 0; }
    .hero h1 { font-size: 2rem; }

    .detail-layout,
    .about-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .nu-bezig-card.horizontal {
        grid-template-columns: 120px 1fr;
    }

    .footer-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .creaties-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .creatie-info { padding: 0.75rem; }
    .creatie-info h3 { font-size: 0.95rem; }

    .hero-actions { flex-direction: column; }
    .hero-actions .btn { text-align: center; }
}


/* === "Nu bezig" op de homepage ===
   Deze projecten hebben (nog) geen foto. Een kaart die alleen uit tekst en
   een voortgangsbalk bestaat leest prima, zolang hij niet doet alsof er een
   afbeelding hoort te staan. */
.nu-bezig-card {
    background: var(--white);
    border: 1px solid var(--lijn);
    border-radius: var(--radius);
    padding: 1.1rem 1.15rem 1.2rem;
}
.nu-bezig-card .nu-bezig-image { display: none; }
.nu-bezig-info { padding: 0; }
.nu-bezig-info h3 { font-size: 1rem; margin-bottom: 0.7rem; }
.voortgang-bar {
    height: 5px;
    border-radius: 999px;
    background: var(--gray-light);
    overflow: hidden;
    margin-bottom: 0.45rem;
}
.voortgang-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--coral), var(--amber));
}
.voortgang-tekst { font-size: 0.78rem; color: var(--brown-light); }


/* Voettekst-logo is de ingang naar het beheer. Bewust onopvallend: het is
   geen functie voor bezoekers. */
.footer-logo-link { display: inline-block; }
.footer-logo-link:hover { opacity: 0.75; }

/* === Nu bezig: een project als tijdlijn ===
   De voortgangsbalk is niet alleen een cijfer maar een verhaal. Op elk
   percentage waar Marieke foto's heeft toegevoegd staat een stip; klikken
   laat zien hoe het er toen uitzag. */

.nu-bezig-lijst { display: flex; flex-direction: column; gap: 1.75rem; }

.project {
    background: var(--white);
    border: 1px solid var(--lijn);
    border-radius: var(--radius);
    padding: 1.5rem 1.6rem 1.6rem;
}

.project-kop {
    display: flex; align-items: baseline; justify-content: space-between;
    gap: 1rem; flex-wrap: wrap; margin-bottom: 0.4rem;
}
.project-kop h2 { font-size: 1.25rem; }
.project-status {
    font-size: 0.8rem; color: var(--coral); font-weight: 500;
    background: rgba(216, 90, 48, 0.09); padding: 0.15rem 0.7rem; border-radius: 999px;
}
.project-status.af { color: #4A7A52; background: #ECF4ED; }
.project-status.besteld { color: var(--brown-light); background: var(--gray-light); }

.project-tekst { color: var(--brown-light); margin-bottom: 1.4rem; }

/* De balk zelf */
.tijdlijn { padding: 1.6rem 0 0.4rem; }
.tijdlijn-baan {
    position: relative;
    height: 6px; border-radius: 999px;
    background: var(--gray-light);
    margin: 0 0.6rem;
}
.tijdlijn-vulling {
    height: 100%; border-radius: 999px;
    background: linear-gradient(90deg, var(--coral), var(--amber));
}

.tijdlijn-stip {
    position: absolute; top: 50%;
    transform: translate(-50%, -50%);
    width: 15px; height: 15px; padding: 0;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: var(--coral);
    cursor: pointer;
    box-shadow: 0 0 0 1px var(--lijn);
    transition: transform 0.18s, box-shadow 0.18s;
}
.tijdlijn-stip:hover { transform: translate(-50%, -50%) scale(1.25); }
.tijdlijn-stip.actief {
    transform: translate(-50%, -50%) scale(1.3);
    box-shadow: 0 0 0 4px rgba(216, 90, 48, 0.18);
}
/* Het percentage boven de stip */
.tijdlijn-stip span {
    position: absolute; bottom: 140%; left: 50%; transform: translateX(-50%);
    font-size: 0.7rem; font-weight: 500; color: var(--brown-light);
    white-space: nowrap;
}
.tijdlijn-stip.actief span { color: var(--coral); }

/* De stappen eronder */
.stappen { margin-top: 1.1rem; }
.stap-kop {
    display: flex; align-items: baseline; gap: 0.6rem;
    margin-bottom: 0.6rem; font-size: 0.85rem;
}
.stap-kop strong { color: var(--coral); }
.stap-kop span { color: var(--brown-light); }

.stap-fotos { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.stap-fotos img {
    width: 122px; height: 122px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--lijn);
    transition: transform 0.3s;
}
.stap-fotos a:hover img { transform: scale(1.03); }

/* Met JavaScript tonen we één stap tegelijk; zonder JavaScript staan ze
   allemaal onder elkaar en werkt de pagina nog steeds. */
.project.met-keuze .stap { display: none; }
.project.met-keuze .stap.actief { display: block; }
.project.met-keuze .stap + .stap { margin-top: 0; }
.project:not(.met-keuze) .stap + .stap { margin-top: 1.2rem; }

@media (max-width: 560px) {
    .project { padding: 1.15rem 1.1rem 1.3rem; }
    .stap-fotos img { width: 96px; height: 96px; }
}
