/* =========================================================
   CEE BEAUTY STUDIO
   Modern Luxury Website
   Responsive / Fluid Layout
========================================================= */


/* =========================================================
   BRAND VARIABLES
========================================================= */

:root {
    --ivory: #fbf7f2;
    --white: #fffdfb;
    --soft-cream: #f5ece5;
    --blush: #ead5c9;
    --blush-light: #f8eee8;

    --rose-gold: #bd7f64;
    --rose-dark: #8e5b48;
    --champagne: #cda184;

    --brown: #342721;
    --text: #5f514b;
    --muted: #82746d;

    --border: #e7d8cf;

    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif;
}


/* =========================================================
   RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    background: var(--ivory);
    color: var(--brown);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

section {
    scroll-margin-top: 86px;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

.eyebrow {
    margin-bottom: 14px;

    color: var(--rose-gold);

    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
}

.section-heading {
    width: min(100%, 760px);

    margin: 0 auto 48px;

    text-align: center;
}

.section-heading h2 {
    margin-bottom: 16px;

    font-family: var(--serif);
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.025em;

    color: var(--brown);
}

.section-heading > p:last-child {
    color: var(--muted);
}


/* =========================================================
   NAVIGATION
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 253, 251, 0.94);

    border-bottom: 1px solid rgba(231, 216, 207, 0.85);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.navbar {
    width: min(1380px, 100%);

    min-height: 82px;

    margin: 0 auto;

    padding-inline: clamp(24px, 5vw, 72px);

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: clamp(18px, 3vw, 40px);
}


/* Brand */

.brand {
    flex-shrink: 0;

    color: var(--brown);

    font-family: var(--serif);
    font-size: clamp(1.05rem, 1.5vw, 1.4rem);
    font-weight: 600;

    letter-spacing: 0.07em;

    white-space: nowrap;

    transition: color 0.3s ease;
}

.brand:hover {
    color: var(--rose-gold);
}


/* Links */

.nav-links {
    display: flex;
    align-items: center;

    gap: clamp(18px, 2.4vw, 34px);

    margin-left: auto;
}

.nav-links a {
    position: relative;

    color: var(--brown);

    font-size: 0.67rem;
    font-weight: 600;

    letter-spacing: 0.13em;

    text-transform: uppercase;

    transition: color 0.3s ease;
}

.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: var(--rose-gold);

    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--rose-gold);
}

.nav-links a:hover::after {
    width: 100%;
}


/* Book button */

.nav-button {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding-inline: 20px;

    background: var(--rose-gold);

    border: 1px solid var(--rose-gold);

    color: var(--white);

    font-size: 0.65rem;
    font-weight: 600;

    letter-spacing: 0.15em;

    text-transform: uppercase;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.nav-button:hover {
    background: var(--rose-dark);
    border-color: var(--rose-dark);

    transform: translateY(-2px);

    box-shadow:
        0 10px 22px rgba(142, 91, 72, 0.14);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: max(
        600px,
        calc(100vh - 82px)
    );

    padding:
        clamp(50px, 6vw, 80px)
        clamp(24px, 5vw, 72px)
        clamp(45px, 5vw, 70px);

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    align-items: center;

    gap: clamp(20px, 4vw, 65px);

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(205, 161, 132, 0.16),
            transparent 32%
        ),
        linear-gradient(
            120deg,
            #fffdfa 0%,
            #fbf3ed 48%,
            #f5e7de 100%
        );
}


/* Soft background glow */

.hero::before {
    content: "";

    position: absolute;

    width: clamp(350px, 42vw, 650px);
    height: clamp(350px, 42vw, 650px);

    top: 5%;
    right: -5%;

    border-radius: 50%;

    background:
        rgba(234, 213, 201, 0.28);

    filter: blur(100px);

    pointer-events: none;
}


/* Hero text */

.hero-content {
    position: relative;
    z-index: 2;

    width: min(100%, 650px);

    animation:
        heroTextIn 0.8s ease both;
}

.hero-eyebrow {
    margin-bottom: 20px;

    color: var(--rose-gold);

    font-size: 0.68rem;
    font-weight: 600;

    letter-spacing: 0.28em;

    text-transform: uppercase;
}


/* Hero heading */

.hero h1 {
    margin-bottom: 27px;

    font-family: var(--serif);

    font-size:
        clamp(
            3.3rem,
            5.6vw,
            6.5rem
        );

    font-weight: 500;

    line-height: 0.9;

    letter-spacing: -0.035em;

    color: var(--brown);
}

.hero h1 span {
    display: block;

    color: var(--rose-gold);

    font-style: italic;

    font-weight: 500;
}


/* Hero description */

.hero-description {
    width: min(100%, 550px);

    margin-bottom: 34px;

    color: var(--text);

    font-size: clamp(0.88rem, 1vw, 0.98rem);

    line-height: 1.8;
}


/* Hero buttons */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 11px;

    flex-wrap: wrap;
}


/* Hero artwork */

.hero-image {
    position: relative;
    z-index: 2;

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 0;

    animation:
        heroImageIn 1s ease 0.15s both;
}

.hero-image img {
    width:
        clamp(
            420px,
            43vw,
            760px
        );

    max-width: 100%;

    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(
            0 25px 35px
            rgba(91, 56, 44, 0.09)
        );

    animation:
        heroFloat 8s ease-in-out infinite;
}


/* =========================================================
   BUTTONS
========================================================= */

.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding-inline: clamp(20px, 2.2vw, 28px);

    font-size: 0.67rem;
    font-weight: 600;

    letter-spacing: 0.14em;

    text-transform: uppercase;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}

.button-primary {
    background: var(--rose-gold);

    border: 1px solid var(--rose-gold);

    color: var(--white);

    box-shadow:
        0 9px 22px rgba(189, 127, 100, 0.13);
}

.button-primary:hover {
    background: var(--rose-dark);

    border-color: var(--rose-dark);

    transform: translateY(-2px);

    box-shadow:
        0 13px 26px rgba(142, 91, 72, 0.15);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.55);

    border: 1px solid var(--rose-gold);

    color: var(--brown);
}

.button-secondary:hover {
    background: var(--brown);

    border-color: var(--brown);

    color: var(--white);

    transform: translateY(-2px);
}


/* =========================================================
   FEATURED PRODUCT
========================================================= */

.featured-product {
    position: relative;

    padding:
        clamp(70px, 7vw, 105px)
        clamp(24px, 5vw, 72px)
        clamp(75px, 7vw, 110px);

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #fffdfa 0%,
            #f9eee7 55%,
            #f2ded3 100%
        );

    border-top: 1px solid var(--border);
}


/* Product glow */

.featured-product::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: 50%;
    left: 3%;

    transform: translateY(-50%);

    border-radius: 50%;

    background:
        rgba(205, 161, 132, 0.10);

    filter: blur(90px);

    pointer-events: none;
}


.product-content {
    position: relative;
    z-index: 2;

    width: min(1250px, 100%);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);

    gap: clamp(40px, 6vw, 90px);

    align-items: center;
}


/* Product image */

.product-image {
    position: relative;

    min-width: 0;
    min-height: 480px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.product-image img {
    position: relative;
    z-index: 2;

    width:
        clamp(
            300px,
            30vw,
            430px
        );

    max-width: 92%;

    max-height: 560px;

    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(
            0 25px 28px
            rgba(74, 46, 37, 0.13)
        );

    animation:
        productFloat 7s ease-in-out infinite;
}


/* Product floor shadow */

.product-image::after {
    content: "";

    position: absolute;

    bottom: 50px;
    left: 50%;

    width: 190px;
    height: 28px;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        rgba(70, 45, 37, 0.10);

    filter: blur(16px);

    pointer-events: none;
}


/* NEW badge */

.product-badge {
    position: absolute;

    top: 30px;
    left: 50%;

    transform: translateX(-155px);

    z-index: 4;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--rose-gold);

    color: var(--white);

    font-size: 0.48rem;
    font-weight: 700;

    letter-spacing: 0.12em;

    box-shadow:
        0 10px 20px
        rgba(189, 127, 100, 0.18);
}


/* Product info */

.product-info {
    width: min(100%, 620px);
}

.product-label {
    margin-bottom: 16px;

    color: var(--rose-gold);

    font-size: 0.67rem;
    font-weight: 600;

    letter-spacing: 0.27em;

    text-transform: uppercase;
}

.product-info h2 {
    margin-bottom: 22px;

    font-family: var(--serif);

    font-size:
        clamp(
            3rem,
            5vw,
            5.1rem
        );

    font-weight: 500;

    line-height: 0.91;

    letter-spacing: -0.03em;

    color: var(--brown);
}

.product-info h2 span {
    display: block;

    color: var(--rose-gold);

    font-style: italic;
}

.product-description {
    width: min(100%, 540px);

    margin-bottom: 30px;

    color: var(--text);

    font-size: 0.94rem;

    line-height: 1.8;
}


/* Product feature cards */

.product-features {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 10px;

    margin-bottom: 30px;
}

.feature {
    min-height: 135px;

    padding: 18px;

    background:
        rgba(255, 255, 255, 0.62);

    border:
        1px solid
        rgba(189, 127, 100, 0.18);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-4px);

    border-color:
        rgba(189, 127, 100, 0.42);

    box-shadow:
        0 12px 25px
        rgba(91, 56, 44, 0.06);
}

.feature-icon {
    display: block;

    margin-bottom: 10px;

    color: var(--rose-gold);

    font-size: 1rem;
}

.feature strong {
    display: block;

    margin-bottom: 4px;

    color: var(--brown);

    font-size: 0.64rem;
    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.feature p {
    color: var(--muted);

    font-size: 0.73rem;

    line-height: 1.45;
}


/* Product price */

.product-price {
    display: flex;

    align-items: baseline;

    gap: 12px;

    margin-bottom: 22px;
}

.product-price span {
    color: var(--muted);

    font-size: 0.7rem;
    font-weight: 600;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}

.product-price strong {
    color: var(--brown);

    font-family: var(--serif);

    font-size: 2.3rem;
    font-weight: 600;
}


/* Product buttons */

.product-actions {
    display: flex;

    align-items: center;

    gap: 10px;

    flex-wrap: wrap;

    margin-bottom: 18px;
}

.delivery-note {
    color: var(--muted);

    font-size: 0.73rem;
}


/* =========================================================
   SERVICES
========================================================= */

.services {
    position: relative;

    padding:
        clamp(75px, 7vw, 105px)
        clamp(24px, 5vw, 72px)
        clamp(80px, 7vw, 110px);

    overflow: hidden;

    background: var(--white);
}

.services::after {
    content: "CEE";

    position: absolute;

    top: 4%;
    right: -2%;

    font-family: var(--serif);

    font-size: clamp(9rem, 15vw, 14rem);

    font-weight: 600;

    color:
        rgba(189, 127, 100, 0.035);

    pointer-events: none;
}

.service-grid {
    position: relative;
    z-index: 2;

    width: min(1200px, 100%);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}

.service-card {
    position: relative;

    padding:
        clamp(30px, 3vw, 42px)
        clamp(22px, 2.5vw, 32px)
        34px;

    background: var(--ivory);

    border: 1px solid var(--border);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.service-card:hover {
    transform: translateY(-7px);

    border-color: var(--rose-gold);

    box-shadow:
        0 18px 36px
        rgba(91, 56, 44, 0.07);
}

.service-number {
    margin-bottom: 18px;

    color: var(--rose-gold);

    font-size: 0.64rem;
    font-weight: 600;

    letter-spacing: 0.23em;
}

.service-card h3 {
    margin-bottom: 13px;

    font-family: var(--serif);

    font-size:
        clamp(
            1.75rem,
            2.4vw,
            2.05rem
        );

    font-weight: 500;

    line-height: 1;

    color: var(--brown);
}

.service-card p {
    min-height: 65px;

    margin-bottom: 18px;

    color: var(--text);

    font-size: 0.84rem;

    line-height: 1.65;
}

.service-card > span {
    display: block;

    margin-bottom: 20px;

    color: var(--rose-gold);

    font-size: 0.95rem;
    font-weight: 700;
}

.service-card > a {
    display: inline-block;

    padding-bottom: 5px;

    border-bottom:
        1px solid
        var(--rose-gold);

    color: var(--brown);

    font-size: 0.65rem;
    font-weight: 700;

    letter-spacing: 0.15em;

    text-transform: uppercase;

    transition: color 0.3s ease;
}

.service-card > a:hover {
    color: var(--rose-gold);
}


/* View all */

.services-link {
    position: relative;
    z-index: 2;

    margin-top: 38px;

    text-align: center;
}


/* =========================================================
   GALLERY
========================================================= */

.gallery {
    padding:
        clamp(75px, 7vw, 105px)
        clamp(24px, 5vw, 72px)
        clamp(80px, 7vw, 110px);

    background: var(--soft-cream);
}

.gallery-grid {
    width: min(1200px, 100%);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 16px;
}

.gallery-placeholder {
    position: relative;

    min-height:
        clamp(
            260px,
            32vw,
            390px
        );

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #ecd9ce,
            #f8efea
        );

    border: 1px solid var(--border);

    color: var(--rose-dark);

    font-family: var(--serif);

    font-size: 1.35rem;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.gallery-placeholder:hover {
    transform: scale(1.01);

    box-shadow:
        0 18px 36px
        rgba(91, 56, 44, 0.09);
}

.gallery-placeholder span {
    opacity: 0.68;
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    padding:
        clamp(75px, 7vw, 105px)
        clamp(24px, 5vw, 72px);

    background:
        linear-gradient(
            135deg,
            #fffdfa,
            #f9f0ea
        );
}

.about-layout {
    width: min(1150px, 100%);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: clamp(40px, 7vw, 90px);

    align-items: center;
}

.about-intro h2 {
    font-family: var(--serif);

    font-size:
        clamp(
            3rem,
            5.2vw,
            5.4rem
        );

    font-weight: 500;

    line-height: 0.9;

    letter-spacing: -0.03em;
}

.about-intro h2 span {
    color: var(--rose-gold);

    font-style: italic;
}

.about-text {
    width: min(100%, 620px);
}

.about-text p {
    margin-bottom: 20px;

    color: var(--text);

    font-size: 0.95rem;

    line-height: 1.85;
}


/* =========================================================
   BOOKING
========================================================= */

.booking {
    position: relative;

    padding:
        clamp(75px, 7vw, 105px)
        clamp(24px, 5vw, 72px);

    overflow: hidden;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #d8a992,
            #c88c74
        );

    color: var(--white);
}

.booking::before {
    content: "";

    position: absolute;

    width: 480px;
    height: 480px;

    top: -270px;
    right: -110px;

    border:
        1px solid
        rgba(255, 255, 255, 0.23);

    border-radius: 50%;
}

.booking-content {
    position: relative;
    z-index: 2;

    width: min(760px, 100%);

    margin: 0 auto;
}

.booking .eyebrow {
    color: rgba(255, 255, 255, 0.78);
}

.booking h2 {
    margin-bottom: 18px;

    font-family: var(--serif);

    font-size:
        clamp(
            3rem,
            5vw,
            5rem
        );

    font-weight: 500;

    line-height: 0.95;
}

.booking-content > p:not(.eyebrow) {
    width: min(100%, 620px);

    margin:
        0
        auto
        30px;

    color:
        rgba(255, 255, 255, 0.9);
}

.booking .button-primary {
    background: var(--white);

    border-color: var(--white);

    color: var(--brown);

    box-shadow: none;
}

.booking .button-primary:hover {
    background: var(--brown);

    border-color: var(--brown);

    color: var(--white);
}


/* =========================================================
   CONTACT
========================================================= */

.contact {
    padding:
        clamp(75px, 7vw, 105px)
        clamp(24px, 5vw, 72px);

    background: var(--white);
}

.contact-details {
    width: min(1100px, 100%);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}

.contact-item {
    padding: 26px 22px;

    border-top:
        1px solid
        var(--border);

    text-align: center;
}

.contact-label {
    display: block;

    margin-bottom: 10px;

    color: var(--rose-gold);

    font-family: var(--serif);

    font-size: 1.3rem;

    font-weight: 500;
}

.contact-item p {
    color: var(--text);

    font-size: 0.84rem;

    line-height: 1.7;
}

.contact-item a {
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--rose-gold);
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    padding:
        40px
        clamp(24px, 5vw, 72px);

    text-align: center;

    background: var(--cream);

    border-top:
        1px solid
        var(--border);
}

.footer-brand {
    margin-bottom: 5px;

    color: var(--brown);

    font-family: var(--serif);

    font-size: 1.55rem;

    font-weight: 600;
}

footer p {
    color: var(--muted);

    font-size: 0.8rem;
}

footer .copyright {
    margin-top: 9px;

    color: #9b8980;

    font-size: 0.7rem;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes heroTextIn {

    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroImageIn {

    from {
        opacity: 0;
        transform: translateX(35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes productFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}


/* =========================================================
   MEDIUM SCREENS / TABLETS
========================================================= */

@media (max-width: 1099px) {

    /* Navigation */

    .navbar {
        gap: 20px;
    }

    .nav-links {
        gap: 18px;
    }


    /* Hero */

    .hero {
        min-height: auto;

        grid-template-columns: 1fr;

        padding-top: 70px;

        text-align: center;
    }

    .hero-content {
        width: min(100%, 760px);

        margin: 0 auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        margin-top: -5px;
    }

    .hero-image img {
        width: min(680px, 88vw);
    }


    /* Product */

    .product-content {
        width: min(100%, 800px);

        grid-template-columns: 1fr;

        gap: 35px;

        text-align: center;
    }

    .product-image {
        min-height: 470px;
    }

    .product-image img {
        width: min(420px, 70vw);
    }

    .product-info {
        width: min(100%, 700px);

        margin: 0 auto;
    }

    .product-description {
        margin-left: auto;
        margin-right: auto;
    }

    .product-price,
    .product-actions {
        justify-content: center;
    }


    /* About */

    .about-layout {
        width: min(100%, 780px);

        grid-template-columns: 1fr;

        gap: 35px;

        text-align: center;
    }

    .about-text {
        margin: 0 auto;
    }


    /* Services */

    .service-grid {
        width: min(100%, 850px);

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    /* Contact */

    .contact-details {
        width: min(100%, 850px);

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   SMALL SCREENS / PHONES
========================================================= */

@media (max-width: 699px) {

    /* =========================
       GLOBAL
    ========================= */

    section {
        scroll-margin-top: 70px;
    }


    /* =========================
       NAVIGATION
    ========================= */

    .navbar {
        min-height: 70px;

        padding-inline: 18px;

        gap: 10px;
    }

    .brand {
        font-size: 1rem;
    }

    .nav-links {
        display: none;
    }

    .nav-button {
        min-height: 40px;

        padding-inline: 14px;

        font-size: 0.55rem;
    }


    /* =========================
       HERO
    ========================= */

    .hero {
        min-height: auto;

        padding:
            65px
            6%
            45px;

        gap: 5px;
    }

    .hero-eyebrow {
        margin-bottom: 14px;

        font-size: 0.57rem;

        letter-spacing: 0.2em;
    }

    .hero h1 {
        margin-bottom: 20px;

        font-size:
            clamp(
                3rem,
                14vw,
                4.3rem
            );
    }

    .hero-description {
        margin-bottom: 26px;

        font-size: 0.85rem;

        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;

        width: 100%;

        gap: 9px;
    }

    .hero-buttons .button {
        width: 100%;
    }

    .hero-image {
        margin-top: 12px;
    }

    .hero-image img {
        width: 112%;

        max-width: none;

        margin-left: -6%;
    }


    /* =========================
       PRODUCT
    ========================= */

    .featured-product {
        padding-top: 65px;
        padding-bottom: 75px;
    }

    .product-image {
        min-height: 350px;
    }

    .product-image img {
        width: min(330px, 88vw);
    }

    .product-image::after {
        bottom: 35px;
    }

    .product-badge {
        top: 5px;

        transform:
            translateX(-120px);

        width: 46px;
        height: 46px;
    }

    .product-info h2 {
        font-size:
            clamp(
                2.7rem,
                12vw,
                3.5rem
            );
    }

    .product-description {
        font-size: 0.86rem;
    }

    .product-features {
        grid-template-columns: 1fr;

        gap: 8px;

        text-align: left;
    }

    .feature {
        min-height: auto;

        display: grid;

        grid-template-columns: 35px 1fr;

        align-items: center;

        padding: 15px;
    }

    .feature-icon {
        margin-bottom: 0;
    }

    .product-price {
        justify-content: center;
    }

    .product-actions {
        flex-direction: column;

        width: 100%;
    }

    .product-actions .button {
        width: 100%;
    }

    .delivery-note {
        text-align: center;
    }


    /* =========================
       SERVICES
    ========================= */

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding:
            30px
            24px;
    }

    .service-card p {
        min-height: auto;
    }


    /* =========================
       GALLERY
    ========================= */

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-placeholder {
        min-height: 260px;
    }


    /* =========================
       ABOUT
    ========================= */

    .about-intro h2 {
        font-size:
            clamp(
                2.9rem,
                13vw,
                4rem
            );
    }


    /* =========================
       BOOKING
    ========================= */

    .booking {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .booking h2 {
        font-size:
            clamp(
                2.8rem,
                12vw,
                3.6rem
            );
    }


    /* =========================
       CONTACT
    ========================= */

    .contact-details {
        grid-template-columns: 1fr;
    }


    /* =========================
       FOOTER
    ========================= */

    footer {
        padding:
            36px
            6%;
    }
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    padding: 0;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    background: transparent;

    border: 1px solid var(--border);

    cursor: pointer;
}

.menu-toggle span {
    width: 18px;
    height: 1.5px;

    background: var(--brown);

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

@media (max-width: 699px) {

    .menu-toggle {
        display: flex;
    }

    .site-header {
        position: sticky;
    }

    .navbar {
        position: relative;
    }

    .nav-links {
        position: absolute;

        top: calc(100% + 1px);
        left: 0;

        width: 100%;

        padding: 22px 6% 28px;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        margin: 0;

        background:
            rgba(255, 253, 251, 0.98);

        border-bottom:
            1px solid
            var(--border);

        box-shadow:
            0 15px 30px
            rgba(52, 39, 33, 0.07);

        opacity: 0;

        visibility: hidden;

        transform: translateY(-10px);

        pointer-events: none;

        transition:
            opacity 0.3s ease,
            visibility 0.3s ease,
            transform 0.3s ease;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;

        padding: 13px 0;

        font-size: 0.68rem;

        border-bottom:
            1px solid
            rgba(231, 216, 207, 0.6);
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    .nav-links.active {
        opacity: 1;

        visibility: visible;

        transform: translateY(0);

        pointer-events: auto;
    }


    /* Animate hamburger into X */

    .menu-toggle.active span:nth-child(1) {
        transform:
            translateY(6.5px)
            rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform:
            translateY(-6.5px)
            rotate(-45deg);
    }
}

/* =========================================
   SHOP SECTION
========================================= */

.shop-section {
    padding: 100px clamp(24px, 6vw, 90px);
    background: var(--ivory);
}

.shop-section .section-heading {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.shop-section .section-heading h2 {
    margin-bottom: 18px;
}

.shop-product-card {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(35px, 6vw, 80px);
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: clamp(28px, 5vw, 60px);
    box-shadow: 0 20px 60px rgba(70, 45, 35, 0.07);
}

.shop-product-image {
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blush-light);
    border-radius: 22px;
    padding: 35px;
    overflow: hidden;
}

.shop-product-image img {
    width: 100%;
    max-width: 430px;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.shop-product-image:hover img {
    transform: scale(1.04);
}

.shop-product-info {
    padding: 10px 0;
}

.product-label {
    margin-bottom: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--rose-gold);
}

.shop-product-info h3 {
    margin-bottom: 6px;
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    color: var(--brown);
}

.product-size {
    margin-bottom: 22px;
    font-size: 0.95rem;
    color: var(--muted);
}

.product-description {
    max-width: 500px;
    margin-bottom: 25px;
    line-height: 1.8;
    color: var(--text);
}

.product-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.product-benefits span {
    padding: 9px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--blush-light);
    font-size: 0.82rem;
    color: var(--rose-dark);
}

.product-price {
    margin-bottom: 25px;
}

.product-price span {
    font-family: var(--serif);
    font-size: 2.3rem;
    font-weight: 600;
    color: var(--brown);
}

.product-purchase {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.quantity-selector {
    display: flex;
    align-items: center;
    height: 50px;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
}

.quantity-btn {
    width: 45px;
    height: 100%;
    border: none;
    background: transparent;
    color: var(--brown);
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.quantity-btn:hover {
    background: var(--blush-light);
}

.quantity-value {
    min-width: 40px;
    text-align: center;
    font-weight: 600;
    color: var(--brown);
}

.add-to-cart {
    min-height: 50px;
    cursor: pointer;
}

.delivery-note {
    margin-top: 18px;
    font-size: 0.82rem;
    color: var(--muted);
}

/* =========================================
   MOBILE SHOP
========================================= */

@media (max-width: 699px) {

    .shop-section {
        padding: 75px 20px;
    }

    .shop-product-card {
        grid-template-columns: 1fr;
        padding: 22px;
        border-radius: 22px;
    }

    .shop-product-image {
        min-height: 320px;
        padding: 25px;
    }

    .product-purchase {
        align-items: stretch;
    }

    .quantity-selector {
        width: 100%;
        justify-content: center;
    }

    .add-to-cart {
        width: 100%;
    }

}

/* =========================================
   SHOPPING CART
========================================= */

.cart-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border: 1px solid var(--border);
    border-radius: 50%;

    background: var(--white);
    color: var(--brown);

    font-size: 1.1rem;
    cursor: pointer;

    transition: all 0.25s ease;
}

.cart-button:hover {
    background: var(--blush-light);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -4px;

    min-width: 19px;
    height: 19px;

    padding: 0 5px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--rose-gold);
    color: var(--white);

    font-size: 0.68rem;
    font-weight: 700;
}

/* Overlay */

.cart-overlay {
    position: fixed;
    inset: 0;

    background: rgba(52, 39, 33, 0.35);

    opacity: 0;
    visibility: hidden;

    transition: all 0.3s ease;

    z-index: 1998;
}

/* Cart drawer */

.cart-drawer {
    position: fixed;

    top: 0;
    right: 0;

    width: min(430px, 100%);
    height: 100vh;

    display: flex;
    flex-direction: column;

    padding: 30px;

    background: var(--white);

    box-shadow: -20px 0 60px rgba(52, 39, 33, 0.12);

    transform: translateX(100%);

    transition: transform 0.35s ease;

    z-index: 1999;
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Cart header */

.cart-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    padding-bottom: 22px;

    border-bottom: 1px solid var(--border);
}

.cart-header h2 {
    margin: 4px 0 0;

    font-family: var(--serif);
    font-size: 2rem;
    color: var(--brown);
}

.cart-close {
    width: 40px;
    height: 40px;

    border: 1px solid var(--border);
    border-radius: 50%;

    background: transparent;

    font-size: 1.5rem;
    color: var(--brown);

    cursor: pointer;

    transition: background 0.2s ease;
}

.cart-close:hover {
    background: var(--blush-light);
}

/* Cart items */

.cart-items {
    flex: 1;

    overflow-y: auto;

    padding: 25px 0;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;

    color: var(--muted);
}

/* Individual cart item */

.cart-item {
    display: grid;
    grid-template-columns: 75px 1fr auto;

    gap: 14px;

    align-items: center;

    padding: 16px 0;

    border-bottom: 1px solid var(--border);
}

.cart-item-image {
    width: 75px;
    height: 75px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: var(--blush-light);

    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.cart-item-info h4 {
    margin-bottom: 5px;

    font-size: 0.95rem;
    color: var(--brown);
}

.cart-item-info p {
    margin-bottom: 8px;

    font-size: 0.82rem;
    color: var(--muted);
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 7px;
}

.cart-item-quantity button {
    width: 25px;
    height: 25px;

    border: 1px solid var(--border);
    border-radius: 7px;

    background: var(--white);

    cursor: pointer;
}

.cart-item-quantity span {
    min-width: 20px;

    text-align: center;

    font-size: 0.82rem;
}

.cart-item-price {
    align-self: start;

    font-weight: 700;
    color: var(--brown);
}

.remove-item {
    display: block;

    margin-top: 7px;

    border: none;
    background: transparent;

    font-size: 0.72rem;
    color: var(--rose-dark);

    cursor: pointer;
}

/* Cart footer */

.cart-footer {
    padding-top: 22px;

    border-top: 1px solid var(--border);
}

.cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 18px;

    color: var(--text);
}

.cart-total strong {
    font-family: var(--serif);

    font-size: 1.7rem;

    color: var(--brown);
}

.checkout-button {
    width: 100%;
}

.cart-delivery-note {
    margin-top: 14px;

    text-align: center;

    font-size: 0.75rem;

    color: var(--muted);
}

/* Mobile */

@media (max-width: 699px) {

    .cart-button {
        width: 40px;
        height: 40px;
    }

    .cart-drawer {
        padding: 24px 20px;
    }

}

/* =========================================
   CHECKOUT PAGE
========================================= */

.checkout-header {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 18px clamp(24px, 5vw, 72px);

    background: rgba(255, 253, 251, 0.94);

    border-bottom: 1px solid var(--border);

    position: sticky;
    top: 0;

    z-index: 100;
}

.checkout-brand {
    font-family: var(--serif);
    font-size: 1.7rem;
    font-weight: 600;

    color: var(--brown);

    text-decoration: none;
}

.back-to-shop {
    font-size: 0.85rem;
    font-weight: 600;

    color: var(--rose-dark);

    text-decoration: none;

    transition: opacity 0.2s ease;
}

.back-to-shop:hover {
    opacity: 0.7;
}


/* =========================================
   CHECKOUT HEADING
========================================= */

.checkout-page {
    min-height: 100vh;

    padding: 75px clamp(20px, 5vw, 70px);

    background: var(--ivory);
}

.checkout-heading {
    max-width: 760px;

    margin: 0 auto 55px;

    text-align: center;
}

.checkout-heading h1 {
    margin: 8px 0 12px;

    font-family: var(--serif);

    font-size: clamp(2.8rem, 6vw, 4.5rem);

    font-weight: 600;

    color: var(--brown);
}

.checkout-heading > p:last-child {
    color: var(--muted);
}


/* =========================================
   CHECKOUT LAYOUT
========================================= */

.checkout-layout {
    max-width: 1180px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.5fr)
        minmax(320px, 0.85fr);

    gap: 35px;

    align-items: start;
}


/* =========================================
   CHECKOUT CARDS
========================================= */

.checkout-card {
    margin-bottom: 24px;

    padding: 30px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 22px;

    box-shadow:
        0 15px 45px rgba(70, 45, 35, 0.05);
}

.checkout-card-heading {
    display: flex;

    gap: 16px;

    align-items: flex-start;

    margin-bottom: 28px;
}

.checkout-card-heading > span {
    display: flex;

    align-items: center;
    justify-content: center;

    min-width: 38px;
    height: 38px;

    border-radius: 50%;

    background: var(--blush-light);

    color: var(--rose-dark);

    font-size: 0.75rem;
    font-weight: 700;
}

.checkout-card-heading h2 {
    margin-bottom: 4px;

    font-family: var(--serif);

    font-size: 1.65rem;

    color: var(--brown);
}

.checkout-card-heading p {
    font-size: 0.82rem;

    color: var(--muted);
}


/* =========================================
   FORM
========================================= */

.form-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.form-group {
    display: flex;

    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 8px;

    font-size: 0.82rem;

    font-weight: 600;

    color: var(--brown);
}

.form-group input,
.form-group select {
    width: 100%;

    min-height: 52px;

    padding: 13px 15px;

    border: 1px solid var(--border);

    border-radius: 12px;

    background: var(--white);

    color: var(--brown);

    font-family: var(--sans);

    font-size: 0.9rem;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group input::placeholder {
    color: #aaa09a;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--rose-gold);

    box-shadow:
        0 0 0 3px rgba(189, 127, 100, 0.1);
}


/* =========================================
   DELIVERY OPTION
========================================= */

.delivery-option {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 18px;

    border: 1px solid var(--border);

    border-radius: 14px;

    background: var(--blush-light);

    cursor: pointer;
}

.delivery-option input {
    width: 18px;
    height: 18px;

    accent-color: var(--rose-gold);
}

.delivery-option div {
    display: flex;

    flex-direction: column;

    gap: 4px;
}

.delivery-option strong {
    font-size: 0.9rem;

    color: var(--brown);
}

.delivery-option span {
    font-size: 0.78rem;

    color: var(--muted);
}


/* =========================================
   PAYMENT PLACEHOLDER
========================================= */

.payment-placeholder {
    display: flex;

    align-items: center;

    gap: 16px;

    padding: 20px;

    background: var(--blush-light);

    border: 1px solid var(--border);

    border-radius: 15px;
}

.payment-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--white);

    font-size: 1.2rem;
}

.payment-placeholder h3 {
    margin-bottom: 5px;

    font-size: 0.95rem;

    color: var(--brown);
}

.payment-placeholder p {
    line-height: 1.6;

    font-size: 0.78rem;

    color: var(--muted);
}


/* =========================================
   PLACE ORDER BUTTON
========================================= */

.place-order-button {
    width: 100%;

    min-height: 56px;

    margin-top: 5px;

    cursor: pointer;
}


/* =========================================
   ORDER SUMMARY
========================================= */

.checkout-summary {
    position: sticky;

    top: 105px;
}

.checkout-summary-card {
    padding: 30px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 22px;

    box-shadow:
        0 15px 45px rgba(70, 45, 35, 0.06);
}

.summary-heading {
    margin-bottom: 25px;
}

.summary-heading h2 {
    margin-top: 5px;

    font-family: var(--serif);

    font-size: 1.9rem;

    color: var(--brown);
}


/* =========================================
   CHECKOUT ITEMS
========================================= */

.checkout-items {
    display: flex;

    flex-direction: column;

    gap: 18px;
}

.checkout-item {
    display: grid;

    grid-template-columns: 65px 1fr auto;

    gap: 12px;

    align-items: center;
}

.checkout-item-image {
    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: var(--blush-light);

    overflow: hidden;
}

.checkout-item-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.checkout-item-info h3 {
    margin-bottom: 4px;

    font-size: 0.87rem;

    color: var(--brown);
}

.checkout-item-info p {
    font-size: 0.76rem;

    color: var(--muted);
}

.checkout-item-price {
    font-size: 0.85rem;

    font-weight: 700;

    color: var(--brown);
}


/* =========================================
   SUMMARY TOTALS
========================================= */

.summary-divider {
    height: 1px;

    margin: 22px 0;

    background: var(--border);
}

.summary-row {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 13px;

    font-size: 0.86rem;

    color: var(--text);
}

.summary-row strong {
    color: var(--brown);
}

.delivery-pending {
    text-align: right;

    font-size: 0.74rem;

    color: var(--muted);
}

.summary-total {
    display: flex;

    align-items: center;
    justify-content: space-between;
}

.summary-total span {
    font-weight: 600;

    color: var(--brown);
}

.summary-total strong {
    font-family: var(--serif);

    font-size: 2rem;

    color: var(--brown);
}


/* =========================================
   CHECKOUT NOTE
========================================= */

.checkout-note {
    display: flex;

    gap: 10px;

    margin-top: 22px;

    padding-top: 18px;

    border-top: 1px solid var(--border);
}

.checkout-note span {
    color: var(--rose-gold);
}

.checkout-note p {
    font-size: 0.74rem;

    line-height: 1.5;

    color: var(--muted);
}


/* =========================================
   CONTINUE SHOPPING
========================================= */

.summary-continue {
    display: block;

    margin-top: 18px;

    text-align: center;

    font-size: 0.82rem;

    font-weight: 600;

    color: var(--rose-dark);

    text-decoration: none;
}

.summary-continue:hover {
    text-decoration: underline;
}


/* =========================================
   MOBILE CHECKOUT
========================================= */

@media (max-width: 850px) {

    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: static;

        order: -1;
    }

}


@media (max-width: 699px) {

    .checkout-header {
        padding: 15px 20px;
    }

    .checkout-brand {
        font-size: 1.45rem;
    }

    .back-to-shop {
        font-size: 0.75rem;
    }

    .checkout-page {
        padding: 55px 18px;
    }

    .checkout-card {
        padding: 22px;

        border-radius: 18px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: auto;
    }

    .checkout-item {
        grid-template-columns: 58px 1fr auto;
    }

    .checkout-item-image {
        width: 58px;
        height: 58px;
    }

}

/* =========================================
   CHECKOUT FORM MESSAGE
========================================= */

.checkout-message {
    display: none;

    margin: 15px 0;

    padding: 14px 16px;

    border-radius: 12px;

    font-size: 0.85rem;

    line-height: 1.5;
}

.checkout-message.success,
.checkout-message.error {
    display: block;
}

.checkout-message.success {
    background: var(--blush-light);
    border: 1px solid var(--border);
    color: var(--rose-dark);
}

.checkout-message.error {
    background: #fdf0ed;
    border: 1px solid #e4b8ad;
    color: #8b4b3c;
}

.place-order-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}