*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --bg: #f6efe5;
    --surface: #fbf7f0;
    --surface-2: #efe4d6;
    --ink: #2b2723;
    --muted: #746b63;
    --sage: #b8c1ae;
    --sand: #e8dac8;
    --blush: #d3a38f;
    --line: rgba(43, 39, 35, 0.12);
    --shadow: 0 18px 50px rgba(43, 39, 35, 0.08);
}

html{
    scroll-behavior: smooth;
    scroll-padding-top: 3.5em;
    font-size: 16px;
}

body{
    font-family: "Roboto Flex", sans-serif;
    background:
            radial-gradient(circle at top left, rgba(211, 163, 143, 0.18), transparent 28%),
            radial-gradient(circle at bottom right, rgba(184, 193, 174, 0.2), transparent 26%),
            linear-gradient(180deg, #fbf7f0 0%, #f3ebdf 100%);
    color: var(--ink);
    line-height: 1.6;
}

ul{
    list-style: none;
}

a{
    color: inherit;
    text-decoration: none;
}

img{
    max-width: 100%;
    display: block;
}

h1, h2, h3{
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    line-height: 1.05;
}

h1{
    font-size: clamp(3.6rem, 8vw, 7.4rem);
    letter-spacing: -0.04em;
}

h2{
    font-size: clamp(2rem, 4vw, 3.6rem);
    text-align: center;
    margin-bottom: 1.2rem;
}

h3{
    font-size: 1.55rem;
}

section{
    padding: 10rem 1.5rem;
}

.container{
    width: min(1180px, 88vw);
    margin: 0 auto;
}

.eyebrow{
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.74rem;
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.section-heading{
    max-width: 820px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

/* ------------------------------------------------------------ HEADER */
.site-header{
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(251, 247, 240, 0.78);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(43, 39, 35, 0.08);
}

.topbar{
    background: rgba(211, 163, 143, 0.12);
    border-bottom: 1px solid rgba(43, 39, 35, 0.06);
    font-size: 0.88rem;
    padding: .5rem 0;
}

.topbar__inner{
    color: var(--muted);
}

.splice{
    margin-left: auto;
    display: none;
}

.socials{
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.socials li a{
    font-size: .85rem;
}

.socials i{
    font-size: 1rem;
}

.socials li:nth-child(3){
    margin-left: auto;
}

.brand{
    font-family: "Instrument Serif", serif;
    font-size: 1.7rem;
    letter-spacing: 0.02em;
    /*padding: 4rem 2rem 0;*/
    display: block;
}

.button.mobile-hidden{
    display: none;
}

.nav{
    justify-content: space-between;
}

.nav{
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mobile-nav{
    display: none;
    align-items: center;
    gap: .5rem;
}

.icon-btn{
    background: transparent;
    border: none;
    cursor: pointer;
    font: inherit;
    color: inherit;
    padding: .35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-btn i{
    font-size: 2rem;
}

.nav-close{
    display: none;
}

/* BUTTONS */
.button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.4rem;
    border-radius: 999px;
    background: var(--sage);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 400;
    border: 1px solid transparent;
    box-shadow: var(--shadow);
    transition: 0.25s ease;
    cursor: pointer;
}

.button:hover{
    transform: translateY(-1px);
}

.button--small{
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

.button--ghost{
    background: transparent;
    color: var(--ink);
    border-color: var(--line);
    box-shadow: none;
}

.button--dark{
    background: var(--ink);
}

.button--light{
    background: rgba(251, 247, 240, 0.92);
    color: var(--ink);
    box-shadow: none;
}


/* ------------------------------------------------------------ HERO */
.hero{
    padding: 4.5rem 1.5rem 2rem;
}

.hero__frame{
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 0;
    min-height: 760px;
    background: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(251,247,240,0.95));
    border: 1px solid rgba(43, 39, 35, 0.08);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero__image{
    /*position: relative;*/
    background-size: cover;
    /*background-repeat: no-repeat;*/
    background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.12)),
            url("../images/DSC1533.jpg") center;
    min-height: 760px;
}


.hero__content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 4rem 4rem 3rem;
    background:
            radial-gradient(circle at top right, rgba(211,163,143,0.18), transparent 34%),
            linear-gradient(180deg, rgba(251,247,240,0.98), rgba(242,234,222,0.95));
}

.hero__content h2{
    text-align: left;
    margin-bottom: 1rem;
    font-size: clamp(1.6rem, 2.8vw, 2.8rem);
}

.hero__text{
    max-width: 500px;
    color: var(--muted);
    font-size: 1.06rem;
    margin-bottom: 2rem;
}

.hero__actions{
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* METHOD */
.mission{
    background: rgba(251,247,240,0.72);
}

.method-grid{
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2rem;
    align-items: center;
}

.method-images{
    position: relative;
    min-height: 520px;
}

.method-image{
    position: absolute;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}

.method-image--large{
    width: 72%;
    height: 78%;
    left: 0;
    top: 0;
    background-image: url("../images/behandeling01.jpg");
}

.method-image--small{
    width: 42%;
    height: 38%;
    right: 10%;
    bottom: 8%;
    background-image: url("/images/afbeelding02.jpg");
}

.method-text{
    display: grid;
    gap: 1rem;
}

.method-item{
    padding: 1.3rem 1.4rem;
    background: rgba(255,255,255,0.76);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.method-item h3{
    margin-bottom: 0.45rem;
}

.method-item p{
    color: var(--muted);
}

/* TESTIMONIALS */
.testimonials{
    background: rgba(235, 223, 206, 0.38);
}

.testimonial-row{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card{
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.testimonial-card p{
    color: var(--muted);
    margin-bottom: 0.9rem;
    font-size: 1rem;
}


/* ------------------------------------------------------------ TREATMENTS */
.packages{
    background: rgba(251,247,240,0.9);
}

.package-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    position: relative;
}

.package-card{
    min-height: 480px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    background-size: cover;
    background-position: center;
}

.package-card__overlay{
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 0.75rem;
    padding: 1.5rem;
    color: #fff;
    background: linear-gradient(180deg, rgba(43,39,35,0.05), rgba(43,39,35,0.58));
    z-index: 1;
}

.package-card__overlay p{
    opacity: 0.9;
}

.package-card-treatment{
    position: absolute;
    inset: 0;
    object-fit: cover;
    height: 100%;
    width: 100%;
    z-index: 0;
}



/* ------------------------------------------------------------ TREATMENT MODEL */
.modal{
    position: fixed;
    z-index: 9999;          /* tijdelijk extreem hoog om overlap uit te sluiten */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: red;
    padding: 1rem;
    width: 400px;
    /*height: 300px;*/
}

.modal-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    display: none;          /* standaard verborgen */
    z-index: 9999;
}

.modal-overlay.is-open{
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal{
    background: #fff;
    padding: 1.5rem;
    width: min(90vw, 500px);
    border-radius: 12px;
}

.modal p{
    white-space: pre-line;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.modal-close{
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}

.modal-close i{
    font-size: 1.4rem;
}

#modalDescription{
    font-size: .9rem;
}

.treatment-info-btn{
    border: none;
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    background-color: transparent;
    cursor: pointer;
    color: #f3f3f3;
    font-size: 1.4rem;
}


/* ------------------------------------------------------------ ABOUT */
.about{
    background: rgba(242, 234, 222, 0.7);
}

.about__grid{
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2rem;
    align-items: center;
}

.about__visual{
    position: relative;
    min-height: 560px;
}

.about__main{
    position: absolute;
    left: 0;
    top: 0;
    width: 76%;
    height: 88%;
    background: url("../images/marcella01.jpg") center/cover;
    box-shadow: var(--shadow);
}

.about__accent{
    position: absolute;
    right: 8%;
    bottom: 4%;
    width: 38%;
    height: 54%;
    background: url("../images/marcella_gras_profile.png") center/cover;
    box-shadow: var(--shadow);
}

.about__content{
    background: rgba(255,255,255,0.82);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.about__content .lead{
    font-size: 1.05rem;
    color: var(--muted);
    margin-bottom: 1.2rem;
}

.about__text p{
    color: var(--muted);
    margin-bottom: 1rem;
}

/* ------------------------------------------------------------ JOURNAL */
.journal{
    background: rgba(251,247,240,0.88);
}

.journal-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.journal-card{
    background: rgba(255,255,255,0.82);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: var(--shadow);
}

.journal-card__image{
    height: 210px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    margin-bottom: 1rem;
}

.journal-card__image--1{
    background-image: url("../images/DSC2067_1.jpg");
}

.journal-card__image--2{
    background-image: url("../images/DSC1734.jpg");
}

.journal-card__image--3{
    background-image: url("../images/DSC1988.jpg");
}

.journal-card p{
    color: var(--muted);
    margin-top: 0.5rem;
}


/* ------------------------------------------------------------ MONTHLY ACTION */

.action-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    align-items: stretch;
    align-content: space-around;
}

/* ===== KAARTEN ===== */

.action-banner {
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 35px;
    padding: 50px 35px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(94,70,54,0.15);
    transition: all 0.6s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1.2s ease forwards;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.action-banner:nth-child(2){
    animation-delay: 0.4s;
}


@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.action-banner:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(94,70,54,0.25);
}

/* ===== ICON ===== */

.card-icon {
    width: 65px;
    opacity: 0.6;
    margin: 0 auto 1.5rem;
}

/* ===== TEKST ===== */

.action-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.action-banner p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

.action-content{
    margin-bottom: 2rem;
}

p.reduction {
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--muted);
    margin-bottom: 25px;
}

/* ------------------------------------------------------------ COUNTDOWN */
.countdown {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 0.75rem;
    opacity: 0.7;
    font-weight: 500;
}

.countdown::before{
    content: "";
    display: block;
    width: 120px;
    height: 20px;
    background-color: #dacdab;
    position: absolute;
    top: -1px;
    right: -6px;
    z-index: -1;
    /*border-radius: 0 35px 35px 0;*/
    transform: skew(-16deg);
}



/* ------------------------------------------------------------ FAQ */
.faq-section {
    background-color: rgba(251, 247, 240, 0.9);
}

.faq-section .container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    flex-direction: row-reverse;
    align-items: flex-start;
    padding: 2rem;
}

.faq-left {
    flex: 1 1 35%;
}

.faq-left h2 {
    margin-bottom: 0;
    text-align: start;
}

.faq-left p {
    text-align: start;
}

.faq-right {
    flex: 1 1 60%;
}

.faq-item {
    border-bottom: 1px solid #e7dbd0;
    padding: 15px 0;
    cursor: pointer;
}

.faq-question {
    font-weight: bold;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.2rem;
    transition: transform 0.3s;
    color: var(--muted);
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    color: #555;
    margin-top: 5px;
    font-size: 0.9rem;
    font-style: italic;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    margin-top: 10px;
}



/* ------------------------------------------------------------ CONTACT */
.contact{
    background:
        radial-gradient(circle at right top, rgba(211,163,143,0.15), transparent 30%),
        linear-gradient(180deg, rgba(242,234,222,0.8), rgba(251,247,240,0.95));
}

.contact__box{
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    background: rgba(255,255,255,0.78);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.contact__text p{
    color: var(--muted);
    font-size: 1.05rem;
}

.form{
    display: grid;
    gap: 1rem;
}

.form input,
.form textarea{
    width: 100%;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.88);
    border-radius: 16px;
    padding: 1rem 1.1rem;
    font: inherit;
    outline: none;
    color: var(--ink);
}

.form input:focus,
.form textarea:focus{
    border-color: var(--sage);
}


/* ------------------------------------------------------------ FOOTER */
footer {
    padding: 60px 0 15px;
}

.footer-wrapper{
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    border-bottom: 1px solid var(--muted);
    padding-bottom: 4rem;
}

.footer-column {
    flex: 1 1 250px;
}

.footer-column h3 {
    color: initial;
    font-size: 1.4rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    /*font-weight: 400;*/
}

.footer-column p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    margin-top: 40px;
    padding-top: 20px;
    /*color: var(--blush-800);*/
}

.footer-legal a{
    color: var(--muted);
    border-bottom: 1px dotted var(--muted);
    display: inline-block;
}

.socials-footer i{
    font-size: 1.1rem;
    color: var(--muted);
    margin-right: 5px;
}

.email{
    display: inline-block;
    margin-top: .5rem;
    color: var(--muted);
}

.email-icon{
    color: var(--muted);
}

.footer-bottom{
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.flat-icon a{
    color: var(--muted);
}




/* -------------------------------------------------------------- MAKE AN APPOINTMENT */
.make-appointment{
    padding: 2rem 0 4rem;
}
.make-appointment .container{
    display: flex;
    justify-content: center;
    gap: 4rem;
}
.make-appointment .container > div{
    flex: 1;
}
.make-appointment-info{
    width: 50%;
    font-family: var(--ff-body), serif;
}
.make-appointment-info h3{
    font-size: 2.2rem;
    margin-bottom: 0;
}
.make-appointment-form{
    margin-top: 2.4rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.make-appointment-form label{
    display: block;
    font-weight: normal;
    margin-bottom: .6rem;
}
.make-appointment-form input,
.make-appointment-form textarea{
    width: 100%;
    padding: .8rem;
    border: none;
    border-bottom: 1px solid var(--muted);
    background-color: transparent;
    outline: none;
    letter-spacing: 1px;
    resize: none;
}
.btn-make-appointment{
    color: var(--clr-rose);
    border: none;
    font-size: 1.2rem;
}
.full-width{
    grid-column: span 1;
}
.make-appointment-img{
    display: none;
}

.form-control{
    padding: .75rem 1.5rem;
    border: 1px solid var(--muted);
    border-radius: var(--b-radius-xs);
    font-family: var(--ff-body), serif;
    background-color: transparent;
    font-size: 1rem;
    width: 100%;
}

.appointment-treatment{
    width: 100%;
}

/* RESPONSIVE */
@media (max-width: 980px){
    .nav{
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 1rem 0;
    }

    .hero__frame,
    .method-grid,
    .about__grid,
    .contact__box{
        grid-template-columns: 1fr;
    }

    .hero__image{
        min-height: 520px;
        order: -1;
    }

    .testimonial-row,
    .package-grid,
    .journal-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px){
    .section{
        padding: 4rem 1rem;
    }

    .hero{
        padding-top: 2rem;
    }

    .hero__content{
        padding: 2rem 1.25rem;
    }

    .hero__frame{
        min-height: auto;
    }

    .hero__image{
        min-height: 420px;
    }

    .method-images,
    .about__visual{
        min-height: 420px;
    }

    .testimonial-row,
    .package-grid,
    .journal-grid{
        grid-template-columns: 1fr;
    }

    .hero__actions{
        flex-direction: column;
    }

    .hero__actions .button{
        width: 100%;
    }

    .package-card{
        min-height: 380px;
    }

    h1{
        font-size: clamp(3rem, 16vw, 5rem);
    }

    .footer-bottom{
        flex-direction: column;
        gap: 1rem;
    }
}


@media (min-width: 768px){

    .nav-list {
        display: flex;
        gap: 1.4rem;
        color: var(--muted);
        font-size: 0.95rem;
    }

    .button.mobile-hidden{
        display: block;
    }

    .action-wrapper {
        flex-direction: row;
    }
}

@media (max-width: 980px){

    .mobile-nav{
        display: flex;
        z-index: 1001;
    }

    .nav-list{
        position: fixed;
        top: 0;
        right: 0;
        width: min(82vw, 320px);
        height: 100vh;
        padding: 12rem 3.5rem 1.5rem;
        background: rgba(251, 247, 240, 0.98);
        box-shadow: -20px 0 50px rgba(43, 39, 35, 0.12);
        display: flex;
        flex-direction: column;
        gap: 1.4rem;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        z-index: 1000;
    }

    .nav-list li{
        transform: translateX(150px);
        opacity: 0;
        /*animation: slideIn 0.35s ease forwards;*/
    }

    .nav-list.open li{
        animation: slideIn 1s  ease forwards;

    }

    .nav-list.open li:nth-child(1){
        animation-delay: 0.25s;
    }

    .nav-list.open li:nth-child(2){
        animation-delay: 0.30s;
    }

    .nav-list.open li:nth-child(3){
        animation-delay: 0.35s;
    }

    .nav-list.open li:nth-child(4){
        animation-delay: 0.40s;
    }

    .nav-list.open li:nth-child(5){
        animation-delay: 0.45s;
    }

    .nav-list.open li:nth-child(6){
        animation-delay: 0.50s;
    }

    .nav-list.open li:nth-child(7){
        animation-delay: 0.55s;
    }

    @keyframes slideIn {
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    .nav-list.open{
        transform: translateX(0);
    }

    .nav-list a{
        font-size: 1.05rem;
    }

    .mobile-nav.open .toggle-menu{
        display: none;
    }

    .mobile-nav.open .nav-close{
        display: inline-flex;
    }

}