@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Playfair+Display:ital,wght@0,500;0,600;1,500&display=swap');


/* =========================
   BASIC
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #FCF9FD;
    color: #3F3045;

    font-family: 'DM Sans', sans-serif;

    line-height: 1.6;
}


/* =========================
   NAVIGATION
========================= */

header {
    background: rgba(252, 249, 253, 0.96);

    position: sticky;
    top: 0;

    z-index: 1000;

    border-bottom: 1px solid #E8DFEC;

    backdrop-filter: blur(10px);
}

nav {
    max-width: 1200px;

    margin: auto;

    padding: 22px 30px;

    display: flex;

    justify-content: space-between;

    align-items: center;
}

.logo {
    font-size: 15px;

    font-weight: 600;

    letter-spacing: 3px;

    color: #3F3045;
}

.nav-links {
    display: flex;

    gap: 30px;
}

.nav-links a {
    color: #765A7F;

    text-decoration: none;

    font-size: 13px;

    transition: 0.3s;
}

.nav-links a:hover {
    color: #A88BB8;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 88vh;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 80px 25px;

    background:
        radial-gradient(
            circle at 15% 20%,
            #E9DDF2 0%,
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 80%,
            #F1E8F5 0%,
            transparent 30%
        ),
        #FCF9FD;

    position: relative;

    overflow: hidden;
}


/* subtle decorative circles */

.hero::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border: 1px solid #DCCBE5;

    border-radius: 50%;

    top: 15%;
    left: 8%;

    opacity: 0.5;
}

.hero::after {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    border: 1px solid #DCCBE5;

    border-radius: 50%;

    bottom: 15%;
    right: 10%;

    opacity: 0.5;
}

.hero-content {
    max-width: 800px;

    position: relative;

    z-index: 2;
}

.small-title {
    color: #A88BB8;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 4px;

    margin-bottom: 25px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;

    font-size: clamp(60px, 9vw, 105px);

    font-weight: 500;

    line-height: 0.95;

    letter-spacing: -3px;

    margin-bottom: 25px;

    color: #3F3045;
}

.tagline {
    font-family: 'Playfair Display', serif;

    font-size: 24px;

    font-style: italic;

    color: #765A7F;

    margin-bottom: 20px;
}

.hero-description {
    max-width: 520px;

    margin: auto;

    color: #7B6C80;

    font-size: 15px;

    margin-bottom: 35px;
}


/* =========================
   BUTTON
========================= */

.button {
    display: inline-block;

    background: #A88BB8;

    color: white;

    padding: 14px 30px;

    border-radius: 30px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 500;

    transition: 0.3s;

    box-shadow:
        0 8px 20px rgba(168, 139, 184, 0.25);
}

.button:hover {
    background: #8E6D9B;

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(168, 139, 184, 0.3);
}


/* =========================
   SECTIONS
========================= */

section {
    max-width: 1150px;

    margin: auto;

    padding: 110px 30px;
}

.section-label {
    color: #A88BB8;

    font-size: 10px;

    letter-spacing: 4px;

    font-weight: 600;

    margin-bottom: 10px;
}

h2 {
    font-family: 'Playfair Display', serif;

    font-size: clamp(42px, 5vw, 65px);

    font-weight: 500;

    line-height: 1.05;

    margin-bottom: 50px;

    color: #3F3045;
}


/* =========================
   SERVICES
========================= */

.services {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.service {
    background: #FFFFFF;

    padding: 40px;

    border: 1px solid #E8DFEC;

    border-radius: 18px;

    transition: all 0.3s ease;

    position: relative;

    overflow: hidden;
}


/* small purple detail */

.service::before {
    content: "";

    position: absolute;

    width: 5px;
    height: 45px;

    background: #A88BB8;

    left: 0;
    top: 40px;

    border-radius: 0 5px 5px 0;
}

.service:hover {
    transform: translateY(-5px);

    border-color: #D4C0DD;

    box-shadow:
        0 15px 40px rgba(93, 70, 101, 0.08);
}

.service h3 {
    font-family: 'Playfair Display', serif;

    font-size: 27px;

    font-weight: 500;

    color: #5D4665;

    margin-bottom: 8px;
}

.service p {
    color: #7B6C80;

    font-size: 14px;
}


/* =========================
   HOW IT WORKS
========================= */
/* =========================
   GALLERY
========================= */

.gallery {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    grid-auto-rows: 280px;

    gap: 18px;
}

.gallery-item {
    position: relative;

    overflow: hidden;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #E9DDF2,
            #F4EDF7
        );

    border: 1px solid #E1D4E7;

    transition: all 0.4s ease;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* larger first image */

.gallery-large {
    grid-row: span 2;
}


/* wider final image */

.gallery-wide {
    grid-column: span 2;
}


/* placeholder content */

.gallery-placeholder {
    text-align: center;

    color: #765A7F;

    transition: 0.4s;
}

.gallery-placeholder span {
    display: block;

    font-size: 11px;

    letter-spacing: 3px;

    color: #A88BB8;

    margin-bottom: 10px;
}

.gallery-placeholder p {
    font-family: 'Playfair Display', serif;

    font-size: 25px;

    color: #5D4665;
}


/* hover effect */

.gallery-item:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 45px rgba(93, 70, 101, 0.12);
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.05);
}


/* mobile */

@media (max-width: 700px) {

    .gallery {
        grid-template-columns: 1fr;

        grid-auto-rows: 260px;
    }

    .gallery-large,
    .gallery-wide {
        grid-row: auto;

        grid-column: auto;
    }
}


/* =========================
   ABOUT
========================= */
/* =========================
   ABOUT
========================= */

#about {
    background: #FFFFFF;
}

.about-layout {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: start;
}

.about-heading h2 {
    margin-bottom: 0;
}

.about-content {
    padding-top: 10px;
}

.about-lead {
    font-family: 'Playfair Display', serif;

    font-size: 27px;

    line-height: 1.5;

    color: #5D4665;

    margin-bottom: 25px;
}

.about-content p:not(.about-lead) {
    font-size: 14px;

    color: #7B6C80;

    line-height: 1.8;

    margin-bottom: 20px;

    max-width: 500px;
}


/* =========================
   CONTACT
========================= */

/* =========================
   CONTACT
========================= */

#contact {
    max-width: 100%;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #E9DDF2,
            #F4EDF7
        );

    position: relative;

    overflow: hidden;

    padding: 120px 30px;
}


/* decorative circles */

#contact::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    border: 1px solid rgba(168, 139, 184, 0.25);

    left: -120px;
    top: -100px;
}

#contact::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    border: 1px solid rgba(168, 139, 184, 0.25);

    right: -80px;
    bottom: -80px;
}


.contact-content {
    position: relative;

    z-index: 2;

    max-width: 700px;

    margin: auto;
}

#contact .section-label {
    color: #765A7F;
}

#contact h2 {
    margin-bottom: 20px;
}

.contact-text {
    max-width: 500px;

    margin: 0 auto 30px;

    color: #6E5C73;

    font-size: 15px;
}

.contact-button {
    background: #3F3045;

    color: white;

    box-shadow:
        0 10px 25px rgba(63, 48, 69, 0.18);
}

.contact-button:hover {
    background: #5D4665;
}

.contact-note {
    margin-top: 20px;

    color: #8A7890;

    font-size: 12px;
}


/* =========================
   FOOTER
========================= */

footer {
    background: #3F3045;

    color: #D8CCDC;

    text-align: center;

    padding: 25px;

    font-size: 12px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .nav-links {
        display: none;
    }

    .hero {
        min-height: 80vh;

        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 60px;

        letter-spacing: -2px;
    }

    .hero::before {
        width: 100px;
        height: 100px;

        left: -30px;
    }

    .hero::after {
        width: 80px;
        height: 80px;

        right: -20px;
    }

    .services {
        grid-template-columns: 1fr;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    section {
        padding: 80px 20px;
    }

    h2 {
        font-size: 45px;
    }

    .about-text {
        font-size: 23px;
    }
}/* =========================
   HOW IT WORKS
========================= */

#how-it-works {
    background: #FCF9FD;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step {
    position: relative;

    background: #FFFFFF;

    padding: 35px 25px;

    border: 1px solid #E8DFEC;

    border-radius: 20px;

    min-height: 280px;

    transition: 0.3s;
}

.step:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(93, 70, 101, 0.08);

    border-color: #D4C0DD;
}

.step-number {
    position: absolute;

    top: 20px;
    right: 22px;

    font-size: 10px;

    letter-spacing: 2px;

    color: #C8B6CE;
}

.step-icon {
    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: #F4EDF7;

    color: #A88BB8;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 18px;

    margin-bottom: 25px;
}

.step h3 {
    font-family: 'Playfair Display', serif;

    font-size: 23px;

    font-weight: 500;

    color: #5D4665;

    line-height: 1.2;

    margin-bottom: 12px;
}

.step p {
    font-size: 13px;

    color: #7B6C80;

    line-height: 1.7;
}


/* =========================
   HOW IT WORKS - MOBILE
========================= */

@media (max-width: 700px) {

    .steps {
        grid-template-columns: 1fr;
    }

    .step {
        min-height: auto;
    }

}/* =========================
   FAQ
========================= */

#faq {
    background: #FFFFFF;
}

.faq-list {
    max-width: 800px;

    margin: 0 auto;
}

.faq-item {
    border-top: 1px solid #E8DFEC;

    padding: 22px 0;
}

.faq-item:last-child {
    border-bottom: 1px solid #E8DFEC;
}

.faq-item summary {
    cursor: pointer;

    list-style: none;

    font-family: 'Playfair Display', serif;

    font-size: 21px;

    color: #5D4665;

    padding-right: 35px;

    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";

    position: absolute;

    right: 5px;
    top: 0;

    color: #A88BB8;

    font-family: 'DM Sans', sans-serif;

    font-size: 22px;

    transition: 0.3s;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    color: #7B6C80;

    font-size: 14px;

    line-height: 1.8;

    max-width: 650px;

    padding-top: 15px;
}/* =========================
   MOBILE MENU BUTTON
========================= */

.menu-toggle {
    display: none;

    background: none;

    border: none;

    color: #5D4665;

    font-size: 26px;

    cursor: pointer;
}


/* =========================
   MOBILE NAVIGATION
========================= */

@media (max-width: 700px) {

    nav {
        position: relative;
    }

    .menu-toggle {
        display: block;

        z-index: 1001;
    }

    .nav-links {
        display: none;

        position: absolute;

        top: 100%;

        left: 0;

        width: 100%;

        background: #FCF9FD;

        border-bottom: 1px solid #E8DFEC;

        padding: 20px 25px;

        flex-direction: column;

        gap: 0;

        box-shadow:
            0 10px 25px rgba(63, 48, 69, 0.08);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 14px 0;

        border-bottom: 1px solid #F0EAF2;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }
}