@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400&family=Montserrat:wght@300;400;500&display=swap');

:root {
    --cream: #f7f1ea;
    --ivory: #fcf9f5;
    --beige: #eaded2;
    --sand: #d8c3ae;
    --taupe: #9d826b;
    --gold: #b38b5b;
    --brown: #765f4d;
    --dark: #3b322c;
    --white: #fffdfa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    color: var(--dark);
    background: var(--ivory);
    line-height: 1.75;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font: inherit;
}

.container {
    width: min(1180px, 90%);
    margin: 0 auto;
}


/* ==================================================
   HEADER
================================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 9999;

    width: 100%;

    background: rgba(252, 249, 245, 0.97);
    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(59, 50, 44, 0.08);
}

.nav-wrapper {
    min-height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* Oude afbeeldinglogo's niet meer in header */

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-wrapper .logo {
    display: none;
}

.logo-wrapper::after,
.header-brand {
    content: "NURUI";

    font-family: "Cormorant Garamond", serif;

    font-size: 29px;
    font-weight: 500;

    letter-spacing: 7px;

    color: #756050;

    white-space: nowrap;
}


/* NAVIGATIE */

.nav {
    display: flex;
    align-items: center;

    gap: 29px;

    margin-left: auto;
}

.nav a {
    position: relative;

    font-size: 9px;
    font-weight: 400;

    letter-spacing: 1.6px;

    text-transform: uppercase;

    white-space: nowrap;
}

.nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: width .25s ease;
}

.nav a:hover::after {
    width: 100%;
}


/* ==================================================
   BUTTONS
================================================== */

.btn,
.laser-primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 15px 27px;

    background: var(--gold);
    color: white;

    border: 1px solid var(--gold);

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 1.8px;

    text-transform: uppercase;

    cursor: pointer;

    transition: .25s ease;
}

.btn:hover,
.laser-primary-button:hover {
    background: transparent;
    color: var(--gold);
}

.btn-small {
    padding: 12px 19px;

    white-space: nowrap;
}


/* ==================================================
   MOBIEL MENU
================================================== */

.menu-toggle {
    display: none;

    width: 34px;

    padding: 4px;

    background: transparent;
    border: 0;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    height: 1px;

    margin: 6px 0;

    background: var(--dark);
}

.mobile-nav {
    display: none;
}


/* ==================================================
   ALGEMENE TYPOGRAFIE
================================================== */

.eyebrow,
.laser-kicker {
    margin-bottom: 18px;

    color: var(--gold);

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 3.3px;

    text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
    font-family: "Cormorant Garamond", serif;
}

.text-link {
    display: inline-block;

    padding-bottom: 4px;

    border-bottom: 1px solid currentColor;

    font-size: 9px;
    font-weight: 400;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* ==================================================
   INDEX — HERO
================================================== */

.hero {
    min-height: calc(100vh - 76px);

    position: relative;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(42, 33, 28, .73),
            rgba(42, 33, 28, .42) 48%,
            rgba(42, 33, 28, .08)
        ),
        url("hero-nurui.png");

    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 760px;

    padding: 100px 0;

    color: white;
}

.hero .eyebrow {
    color: #e4c18f;
}

.hero h1 {
    font-size: clamp(65px, 8vw, 108px);
    font-weight: 400;

    line-height: .9;

    letter-spacing: -1px;
}

.hero h1 span {
    display: block;

    color: #dfb679;

    font-style: italic;
}

.hero-text {
    max-width: 560px;

    margin-top: 28px;

    font-size: 13px;
    line-height: 1.9;

    color: rgba(255,255,255,.92);
}

.hero-buttons {
    display: flex;
    align-items: center;

    gap: 28px;

    margin-top: 35px;
}


/* ==================================================
   INDEX — INTRO
================================================== */

.intro {
    padding: 120px 0;

    background: var(--ivory);
}

.intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.intro h2,
.section-heading h2,
.about h2,
.booking h2 {
    font-size: clamp(50px, 6vw, 78px);
    font-weight: 400;

    line-height: .98;
}

.intro h2 span,
.section-heading h2 span,
.about h2 span,
.booking h2 span {
    display: block;

    color: var(--gold);

    font-style: italic;
}

.intro-text {
    max-width: 520px;
}

.intro-text p {
    font-size: 13px;

    line-height: 1.95;
}

.intro-text p + p {
    margin-top: 18px;
}


/* ==================================================
   INDEX — TREATMENTS
================================================== */

.treatments {
    padding: 120px 0;

    background: var(--beige);
}

.section-heading {
    max-width: 700px;

    margin-bottom: 60px;
}

.section-heading > p:last-child {
    margin-top: 20px;

    font-size: 13px;
}

.cards {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.service-card {
    min-height: 440px;

    padding: 34px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: var(--white);
    color: var(--dark);

    border: 1px solid rgba(59,50,44,.06);

    transition: .3s ease;
}

.service-card-link {
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 20px 45px rgba(59,50,44,.08);
}

.service-number {
    font-family: "Cormorant Garamond", serif;

    font-size: 50px;

    color: rgba(179,139,91,.5);
}

.service-label {
    margin-bottom: 10px;

    color: var(--gold);

    font-size: 9px;

    letter-spacing: 2.5px;
}

.service-card h3 {
    margin-bottom: 17px;

    font-size: 38px;
    font-weight: 400;

    line-height: 1.05;
}

.service-card p {
    font-size: 12px;

    line-height: 1.85;
}

.card-link {
    display: inline-block;

    margin-top: 25px;

    color: var(--gold);

    font-size: 9px;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.coming-badge {
    display: inline-block;

    margin-bottom: 13px;

    padding: 6px 10px;

    border: 1px solid rgba(179,139,91,.5);

    color: var(--gold);

    font-size: 8px;

    letter-spacing: 2px;
}


/* ==================================================
   INDEX — QUOTE
================================================== */

.quote-section {
    padding: 125px 0;

    background: var(--dark);

    color: white;

    text-align: center;
}

.quote-inner {
    max-width: 850px;
}

.quote-mark {
    display: block;

    height: 60px;

    color: var(--gold);

    font-family: "Cormorant Garamond", serif;

    font-size: 100px;

    line-height: .8;
}

.quote-section h2 {
    font-size: clamp(45px, 6vw, 72px);
    font-weight: 400;

    line-height: 1;
}

.quote-section > p,
.quote-inner > p {
    margin-top: 25px;

    color: #d8b88e;

    font-size: 9px;

    letter-spacing: 4px;
}


/* ==================================================
   INDEX — ABOUT
================================================== */

.about {
    padding: 120px 0;

    background: var(--ivory);
}

.about-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;
}

.about-image-placeholder {
    min-height: 560px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 35px;

    background:
        linear-gradient(
            rgba(59,50,44,.08),
            rgba(59,50,44,.30)
        ),
        url("hero-nurui.png");

    background-size: cover;
    background-position: center;

    color: white;
}

.about-image-placeholder span {
    font-family: "Cormorant Garamond", serif;

    font-size: 48px;

    letter-spacing: 7px;
}

.about-image-placeholder small {
    font-size: 9px;

    letter-spacing: 3px;
}

.about-content > p:not(.eyebrow) {
    margin-bottom: 16px;

    font-size: 13px;

    line-height: 1.9;
}


/* ==================================================
   INDEX — BOOKING
================================================== */

.booking {
    padding: 115px 0;

    background:
        linear-gradient(
            135deg,
            #a98c70,
            #715b49
        );

    color: white;

    text-align: center;
}

.booking-inner {
    max-width: 750px;
}

.booking .eyebrow {
    color: #efd2aa;
}

.booking h2 span {
    color: #efd2aa;
}

.booking-inner > p:not(.eyebrow) {
    margin: 25px auto 35px;

    font-size: 13px;
}

.btn-light {
    background: white;

    border-color: white;

    color: var(--dark);
}

.btn-light:hover {
    color: white;

    border-color: white;
}


/* ==================================================
   LASER — HERO
================================================== */

.laser-luxury-hero {
    min-height: calc(92vh - 76px);

    position: relative;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(39,31,26,.79),
            rgba(39,31,26,.46) 50%,
            rgba(39,31,26,.12)
        ),
        url("hero-nurui.png");

    background-size: cover;
    background-position: center;
}

.laser-luxury-overlay {
    position: absolute;
    inset: 0;
}

.laser-luxury-hero-content {
    position: relative;
    z-index: 2;

    max-width: 760px;

    padding: 110px 0;

    color: white;
}

.laser-luxury-hero .laser-kicker {
    color: #e2bb86;
}

.laser-luxury-hero h1 {
    font-size: clamp(68px, 9vw, 116px);
    font-weight: 400;

    line-height: .86;
}

.laser-luxury-hero h1 span {
    display: block;

    margin-top: 7px;

    color: #dfb477;

    font-style: italic;
}

.laser-hero-copy {
    max-width: 520px;

    margin: 30px 0 34px;

    font-size: 14px;

    line-height: 1.9;
}


/* ==================================================
   LASER — STORY
================================================== */

.laser-story {
    padding: 125px 0;

    background: var(--ivory);
}

.laser-story-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 110px;

    align-items: center;
}

.laser-story h2,
.laser-centered-heading h2,
.laser-zones-heading h2,
.laser-process h2,
.laser-faq-luxury h2,
.laser-final-booking h2 {
    font-size: clamp(50px, 6vw, 80px);
    font-weight: 400;

    line-height: .96;
}

.laser-story h2 span,
.laser-centered-heading h2 span,
.laser-zones-heading h2 span,
.laser-process h2 span,
.laser-faq-luxury h2 span,
.laser-final-booking h2 span {
    display: block;

    color: var(--gold);

    font-style: italic;
}

.laser-story-text p {
    margin-bottom: 18px;

    font-size: 13px;

    line-height: 1.95;
}


/* ==================================================
   LASER — BENEFITS
================================================== */

.laser-benefits-luxury {
    padding: 120px 0;

    background: #eee2d6;
}

.laser-centered-heading {
    max-width: 720px;

    margin: 0 auto 65px;

    text-align: center;
}

.laser-benefit-row {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.laser-benefit-row article {
    min-height: 300px;

    padding: 36px 30px;

    background: var(--white);

    border-top: 1px solid var(--gold);
}

.laser-benefit-row article > span {
    display: block;

    margin-bottom: 60px;

    color: rgba(179,139,91,.65);

    font-family: "Cormorant Garamond", serif;

    font-size: 35px;
}

.laser-benefit-row h3 {
    margin-bottom: 13px;

    font-size: 29px;
    font-weight: 400;
}

.laser-benefit-row p {
    font-size: 12px;

    line-height: 1.85;
}


/* ==================================================
   LASER — ZONES
================================================== */

.laser-zones-section {
    padding: 125px 0;

    background: var(--ivory);
}

.laser-zones-heading {
    display: grid;

    grid-template-columns: 1fr .7fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 60px;
}

.laser-zones-heading > p {
    max-width: 430px;

    padding-bottom: 8px;

    font-size: 13px;

    line-height: 1.9;
}

.laser-zones-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid rgba(59,50,44,.15);
    border-left: 1px solid rgba(59,50,44,.15);
}

.laser-zone {
    min-height: 145px;

    padding: 24px;

    border-right: 1px solid rgba(59,50,44,.15);
    border-bottom: 1px solid rgba(59,50,44,.15);
}

.laser-zone span {
    display: block;

    margin-bottom: 25px;

    color: var(--gold);

    font-size: 9px;

    letter-spacing: 2px;
}

.laser-zone h3 {
    font-size: 27px;
    font-weight: 400;
}

.laser-zone-button {
    margin-top: 45px;

    text-align: center;
}


/* ==================================================
   LASER — PROCESS
================================================== */

.laser-process {
    padding: 120px 0;

    background: var(--beige);
}

.laser-process-grid {
    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 100px;
}

.laser-process-list > div {
    padding: 24px 0;

    border-top: 1px solid rgba(59,50,44,.16);
}

.laser-process-list > div:last-child {
    border-bottom: 1px solid rgba(59,50,44,.16);
}

.laser-process-list h3 {
    margin-bottom: 8px;

    font-size: 26px;
    font-weight: 400;
}

.laser-process-list p {
    max-width: 500px;

    font-size: 12px;

    line-height: 1.85;
}


/* ==================================================
   LASER — FAQ
================================================== */

.laser-faq-luxury {
    padding: 120px 0;

    background: var(--ivory);
}

.laser-faq-grid {
    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 100px;
}

.laser-faq-items details {
    padding: 23px 0;

    border-top: 1px solid rgba(59,50,44,.16);
}

.laser-faq-items details:last-child {
    border-bottom: 1px solid rgba(59,50,44,.16);
}

.laser-faq-items summary {
    cursor: pointer;

    list-style: none;

    font-family: "Cormorant Garamond", serif;

    font-size: 23px;
}

.laser-faq-items summary::-webkit-details-marker {
    display: none;
}

.laser-faq-items summary::after {
    content: "+";

    float: right;

    color: var(--gold);
}

.laser-faq-items details[open] summary::after {
    content: "−";
}

.laser-faq-items details p {
    max-width: 550px;

    padding-top: 14px;

    font-size: 12px;

    line-height: 1.85;
}


/* ==================================================
   LASER — FINAL BOOKING
================================================== */

.laser-final-booking {
    padding: 125px 0;

    background:
        linear-gradient(
            135deg,
            #9e8168,
            #675244
        );

    color: white;

    text-align: center;
}

.laser-final-content {
    max-width: 760px;
}

.laser-final-booking .laser-kicker {
    color: #efd0a5;
}

.laser-final-booking h2 span {
    color: #efd0a5;
}

.laser-final-content > p:not(.laser-kicker) {
    max-width: 550px;

    margin: 25px auto 35px;

    font-size: 13px;

    line-height: 1.9;
}

.laser-light-button {
    display: inline-flex;

    padding: 15px 28px;

    background: white;

    color: var(--dark);

    border: 1px solid white;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 1.8px;

    text-transform: uppercase;

    transition: .25s;
}

.laser-light-button:hover {
    background: transparent;

    color: white;
}


/* ==================================================
   FOOTER
================================================== */

.contact,
.nurui-footer {
    padding: 80px 0 0;

    background: #f1e8df;
}

.contact-grid {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 70px;

    padding-bottom: 60px;
}

.footer-brand {
    font-family: "Cormorant Garamond", serif;

    font-size: 37px;

    letter-spacing: 8px;
}

.footer-tagline {
    margin-top: 10px;

    font-size: 9px;

    letter-spacing: 2.5px;
}

.footer-small {
    margin-top: 7px;

    color: var(--gold);

    font-size: 8px;

    letter-spacing: 2.5px;
}

.contact-grid h4 {
    margin-bottom: 18px;

    font-size: 23px;
    font-weight: 400;
}

.contact-grid a,
.contact-grid p {
    display: block;

    margin-bottom: 9px;

    font-size: 11px;

    line-height: 1.8;
}

.footer-bottom {
    padding: 22px 0;

    border-top: 1px solid rgba(59,50,44,.1);

    font-size: 9px;

    letter-spacing: .7px;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {

    .nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .header-book {
        margin-left: auto;
    }

    .intro-grid,
    .about-grid,
    .laser-story-grid,
    .laser-process-grid,
    .laser-faq-grid,
    .laser-zones-heading {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .cards,
    .laser-benefit-row {
        grid-template-columns: 1fr;
    }

    .laser-zones-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

}


/* ==================================================
   TELEFOON
================================================== */

@media (max-width: 600px) {

    .container {
        width: 88%;
    }

    .nav-wrapper {
        min-height: 68px;

        gap: 15px;
    }

    .header-brand,
    .logo-wrapper::after {
        font-size: 24px;

        letter-spacing: 5px;
    }

    .header .btn-small {
        padding: 10px 12px;

        font-size: 7px;

        letter-spacing: 1px;
    }

    .menu-toggle {
        width: 29px;
    }

    .hero {
        min-height: 78vh;

        background-position: 62% center;
    }

    .hero-content {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 53px;
    }

    .hero-text {
        font-size: 12px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: flex-start;
    }

    .intro,
    .treatments,
    .quote-section,
    .about,
    .booking,
    .laser-story,
    .laser-benefits-luxury,
    .laser-zones-section,
    .laser-process,
    .laser-faq-luxury,
    .laser-final-booking {
        padding: 80px 0;
    }

    .intro h2,
    .section-heading h2,
    .about h2,
    .booking h2,
    .laser-story h2,
    .laser-centered-heading h2,
    .laser-zones-heading h2,
    .laser-process h2,
    .laser-faq-luxury h2,
    .laser-final-booking h2 {
        font-size: 47px;
    }

    .service-card {
        min-height: 340px;
    }

    .quote-section h2 {
        font-size: 43px;
    }

    .about-image-placeholder {
        min-height: 400px;
    }


    /* LASER */

    .laser-luxury-hero {
        min-height: 75vh;

        background-position: 60% center;
    }

    .laser-luxury-hero-content {
        padding: 85px 0;
    }

    .laser-luxury-hero h1 {
        font-size: 57px;
    }

    .laser-hero-copy {
        font-size: 12px;
    }

    .laser-benefit-row article {
        min-height: auto;
    }

    .laser-benefit-row article > span {
        margin-bottom: 35px;
    }

    .laser-zones-grid {
        grid-template-columns: 1fr 1fr;
    }

    .laser-zone {
        min-height: 125px;

        padding: 20px 16px;
    }

    .laser-zone h3 {
        font-size: 23px;
    }

}


/* ==================================================
   ZEER KLEINE TELEFOONS
================================================== */

@media (max-width: 390px) {

    .header .btn-small {
        display: none;
    }

    .laser-zones-grid {
        grid-template-columns: 1fr;
    }

}
/* =========================================
   WERKEND MOBIEL MENU
========================================= */

@media (max-width: 900px) {

    .mobile-nav {
        display: none;

        position: absolute;
        top: 100%;
        left: 0;

        width: 100%;

        padding: 25px 6% 30px;

        background: #fcf9f5;

        border-top: 1px solid rgba(59, 50, 44, 0.08);
        border-bottom: 1px solid rgba(59, 50, 44, 0.08);

        box-shadow: 0 15px 30px rgba(59, 50, 44, 0.08);
    }


    .mobile-nav.active {
        display: flex;

        flex-direction: column;

        gap: 0;
    }


    .mobile-nav > a {
        display: flex;

        justify-content: space-between;
        align-items: center;

        padding: 15px 0;

        border-bottom: 1px solid rgba(59, 50, 44, 0.08);

        font-size: 10px;
        font-weight: 400;

        letter-spacing: 1.7px;

        text-transform: uppercase;
    }


    .mobile-nav a small {
        color: #b38b5b;

        font-size: 7px;

        letter-spacing: 1px;
    }


    .mobile-nav .mobile-book {
        justify-content: center;

        margin-top: 18px;
        padding: 14px 20px;

        background: #b38b5b;
        color: white;

        border-bottom: none;
    }


    /* Hamburger verandert naar kruisje */

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }


    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }


    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }


    .menu-toggle span {
        transition: 0.25s ease;
    }

}