/* =========================================
   ESTHETIQUE MED SPA
   Main Stylesheet
========================================= */


/* ---------- BASIC RESET ---------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, "Times New Roman", serif;
    background: #f7f3eb;
    color: #171717;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}


/* ---------- HEADER ---------- */

.site-header {
    width: 100%;
    background: #f7f3eb;
    border-bottom: 1px solid #d4bd83;
    position: relative;
    z-index: 100;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;

    padding: 18px 45px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* ---------- LOGO ---------- */

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 170px;
    height: auto;
    display: block;
}


/* ---------- NAVIGATION ---------- */

.main-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.main-nav a {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 1.5px;

    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #a8873b;
}


/* ---------- BOOK BUTTON ---------- */

.book-button {
    font-family: Arial, Helvetica, sans-serif;

    background: #171717;
    color: #ffffff;

    padding: 13px 24px;

    text-transform: uppercase;
    letter-spacing: 1.5px;

    font-size: 11px;

    transition: all 0.3s ease;
}

.book-button:hover {
    background: #a8873b;
}


/* =========================================
   HERO
========================================= */

.hero {
    min-height: 720px;

    display: flex;
    align-items: center;

    position: relative;

    background:
        linear-gradient(
            rgba(20, 16, 13, 0.55),
            rgba(20, 16, 13, 0.55)
        ),
        url("../image/header bg.avif");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* ---------- HERO TEXT ---------- */

.hero-content {
    max-width: 650px;

    margin-left: max(7vw, 50px);

    padding: 80px 30px 80px 0;
}


.hero-eyebrow {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;
    letter-spacing: 4px;
    font-weight: 600;

    color: #d4bd83;

    margin-bottom: 25px;
}


.hero h1 {
    font-size: clamp(52px, 6vw, 88px);

    font-weight: 400;

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 30px;

    color: #f7f3eb;
}


.hero-description {
    max-width: 500px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 16px;

    line-height: 1.8;

    color: #f1eee7;

    margin-bottom: 35px;
}


/* =========================================
   HERO BUTTONS
========================================= */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;
}


.hero-buttons .primary-button {
    display: inline-block;

    padding: 16px 28px;

    background: #d4bd83;

    color: #171717;

    border: 1px solid #d4bd83;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    transition: all 0.3s ease;
}


.hero-buttons .primary-button:hover {
    background: #f7f3eb;

    border-color: #f7f3eb;

    color: #171717;
}


/* SECOND BUTTON */

.hero-buttons .secondary-button {
    display: inline-block;

    padding: 16px 28px;

    background: rgba(255, 255, 255, 0.08);

    color: #f7f3eb;

    border: 1px solid #f7f3eb;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    transition: all 0.3s ease;
}


.hero-buttons .secondary-button:hover {
    background: #f7f3eb;

    color: #171717;
}


/* ---------- LOCATION ---------- */

.hero-location {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: #e0d9cd;

    margin-top: 45px;
}


/* =========================================
   HERO — MOBILE
========================================= */

@media (max-width: 600px) {

    .hero {
        min-height: 700px;

        background-position: center;
    }

    .hero-content {
        margin-left: 25px;
        margin-right: 25px;

        padding: 80px 0;
    }

    .hero h1 {
        font-size: 48px;

        letter-spacing: -1px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: flex-start;
    }

    .hero-buttons .primary-button,
    .hero-buttons .secondary-button {
        width: auto;
    }

}


/* =========================================
   INTRO SECTION
========================================= */

.intro {
    padding: 120px 30px;

    background: #171717;

    color: #f7f3eb;

    text-align: center;
}


.intro-container {
    max-width: 800px;

    margin: 0 auto;
}


.section-label {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 10px;

    letter-spacing: 4px;

    color: #d4bd83;

    margin-bottom: 25px;
}


.intro h2 {
    font-size: clamp(42px, 5vw, 68px);

    font-weight: 400;

    line-height: 1.1;

    margin-bottom: 35px;
}


.intro-text {
    max-width: 650px;

    margin: 0 auto;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    line-height: 1.9;

    color: #c9c5bc;
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
    width: 100%;
    padding: 15px 4vw;
    background: #111111;

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    letter-spacing: 1px;
    color: #d6d1c8;
}

.site-footer p {
    margin: 0;
}


/* MOBILE */
@media (max-width: 600px) {

    .site-footer {
        padding: 30px 20px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

}

/* =========================================
   SERVICES
========================================= */

.services {
    padding: 120px 6vw;
    background: #f7f3eb;
}

.services-header {
    max-width: 750px;
    margin: 0 auto 70px;
    text-align: center;
}

.services-header h2 {
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 30px;
}

.services-intro {
    max-width: 600px;
    margin: 0 auto;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}


/* =========================================
   FOUR SERVICE CARDS
========================================= */

.services-grid {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: #ffffff;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
}


/* =========================================
   SERVICE IMAGE
========================================= */

.service-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
    background: #e8e1d5;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.03);
}


/* =========================================
   SERVICE CONTENT
========================================= */

.service-content {
    padding: 30px 25px 35px;
}

.service-number {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    color: #a8873b;
    margin-bottom: 15px;
}

.service-content h3 {
    font-size: 27px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 15px;
}

.service-content p:not(.service-number) {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
}


/* =========================================
   SERVICE LINK
========================================= */

.service-link {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 1px solid #a8873b;
    padding-bottom: 5px;
}

.service-link:hover {
    color: #a8873b;
}


/* =========================================
   VIEW ALL SERVICES BUTTON
========================================= */

.services-button {
    text-align: center;
    margin-top: 60px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .services {
        padding: 100px 30px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }

    .service-image {
        height: 350px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .services {
        padding: 80px 20px;
    }

    .services-header {
        margin-bottom: 50px;
    }

    .services-header h2 {
        font-size: 42px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .service-image {
        height: 300px;
    }

    .service-content {
        padding: 30px 25px 35px;
    }

}

/* =========================================
   WHY ESTHETIQUE
========================================= */

.about {
    padding: 130px 6vw;
    background: #ffffff;
}


/* =========================================
   ABOUT HEADER
========================================= */

.about-header {
    max-width: 850px;
    margin: 0 auto 80px;
    text-align: center;
}

.about-header h2 {
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 30px;
}

.about-intro {
    max-width: 650px;
    margin: 0 auto;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.9;
    color: #666;
}


/* =========================================
   ABOUT CARDS
========================================= */

.about-grid {
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;

    background: #ddd;
}

.about-card {
    background: #ffffff;
    padding: 45px 35px 50px;
}

.about-number {
    display: block;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    color: #a8873b;

    margin-bottom: 30px;
}

.about-card h3 {
    font-size: 25px;
    font-weight: 400;
    line-height: 1.25;

    margin-bottom: 20px;
}

.about-card p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}


/* =========================================
   ABOUT — TABLET
========================================= */

@media (max-width: 1000px) {

    .about {
        padding: 100px 30px;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   ABOUT — MOBILE
========================================= */

@media (max-width: 600px) {

    .about {
        padding: 80px 20px;
    }

    .about-header {
        margin-bottom: 55px;
    }

    .about-header h2 {
        font-size: 42px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-card {
        padding: 35px 25px 40px;
    }

}

/* =========================================
   BOOKING CTA
========================================= */

.booking-cta {
    padding: 140px 6vw;
    background: #1c1a17;
    text-align: center;
}

.booking-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.booking-cta .section-label {
    color: #c4a45a;
    margin-bottom: 25px;
}

.booking-cta h2 {
    color: #f7f3eb;
    font-size: clamp(48px, 6vw, 78px);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 30px;
}

.booking-cta p:not(.section-label) {
    max-width: 600px;
    margin: 0 auto 40px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.9;
    color: #c8c3ba;
}


/* =========================================
   BOOKING BUTTON
========================================= */

.booking-cta .primary-button {
    display: inline-block;

    background: #c4a45a;
    color: #1c1a17;

    padding: 17px 32px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 1.5px;

    text-decoration: none;

    border: 1px solid #c4a45a;

    transition: all 0.3s ease;
}

.booking-cta .primary-button:hover {
    background: #f7f3eb;
    border-color: #f7f3eb;
    color: #1c1a17;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .booking-cta {
        padding: 90px 25px;
    }

    .booking-cta h2 {
        font-size: 48px;
    }

    .booking-cta .primary-button {
        padding: 16px 25px;
    }

}

/* =========================================
   SERVICES PAGE HERO
========================================= */

.services-page-hero {
    min-height: 480px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            rgba(20, 16, 13, 0.55),
            rgba(20, 16, 13, 0.55)
        ),
        url("../image/header bg.avif");

    background-size: cover;
    background-position: center;
}

.services-page-hero-content {
    max-width: 750px;
    padding: 80px 25px;
}

.services-page-hero .section-label {
    color: #d4bd83;
}

.services-page-hero h1 {
    color: #f7f3eb;

    font-size: clamp(52px, 7vw, 90px);

    font-weight: 400;

    line-height: 1.05;

    margin-bottom: 25px;
}

.services-page-hero p:not(.section-label) {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 16px;

    color: #eeeeee;

    line-height: 1.8;
}


/* =========================================
   ALL SERVICES
========================================= */

.all-services {
    padding: 130px 6vw;

    background: #f7f3eb;
}

.all-services-header {
    max-width: 800px;

    margin: 0 auto 80px;

    text-align: center;
}

.all-services-header h2 {
    font-size: clamp(42px, 5vw, 68px);

    font-weight: 400;

    line-height: 1.1;

    margin-bottom: 30px;
}

.all-services-header p:not(.section-label) {
    max-width: 650px;

    margin: 0 auto;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    line-height: 1.9;

    color: #666;
}


/* =========================================
   ALL SERVICE CARDS
========================================= */

.all-services-grid {
    max-width: 1400px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 1px;

    background: #d8d2c8;
}

.all-service-card {
    background: #ffffff;

    padding: 50px 40px 55px;

    min-height: 350px;

    transition: transform 0.3s ease;
}

.all-service-card:hover {
    transform: translateY(-5px);
}

.all-service-number {
    display: block;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 10px;

    letter-spacing: 2px;

    color: #a8873b;

    margin-bottom: 35px;
}

.all-service-card h3 {
    font-size: 28px;

    font-weight: 400;

    line-height: 1.2;

    margin-bottom: 20px;
}

.all-service-card p {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;

    line-height: 1.8;

    color: #666;

    margin-bottom: 30px;
}

.all-service-card a {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 10px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    border-bottom: 1px solid #a8873b;

    padding-bottom: 5px;
}

.all-service-card a:hover {
    color: #a8873b;
}


/* =========================================
   SERVICES PAGE — TABLET
========================================= */

@media (max-width: 1000px) {

    .all-services {
        padding: 100px 30px;
    }

    .all-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   SERVICES PAGE — MOBILE
========================================= */

@media (max-width: 600px) {

    .services-page-hero {
        min-height: 420px;
    }

    .services-page-hero h1 {
        font-size: 48px;
    }

    .all-services {
        padding: 80px 20px;
    }

    .all-services-header {
        margin-bottom: 55px;
    }

    .all-services-header h2 {
        font-size: 42px;
    }

    .all-services-grid {
        grid-template-columns: 1fr;
    }

    .all-service-card {
        padding: 40px 30px 45px;

        min-height: auto;
    }

}

/* =========================================
   BOOKING PAGE HERO
========================================= */

.booking-page-hero {
    min-height: 480px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            rgba(20, 16, 13, 0.55),
            rgba(20, 16, 13, 0.55)
        ),
        url("../image/header bg.avif");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.booking-page-hero-content {
    max-width: 800px;

    padding: 80px 25px;
}

.booking-page-hero .section-label {
    color: #d4bd83;
}

.booking-page-hero h1 {
    color: #f7f3eb;

    font-size: clamp(52px, 7vw, 90px);

    font-weight: 400;

    line-height: 1.05;

    margin-bottom: 25px;
}

.booking-page-hero p:not(.section-label) {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 16px;

    color: #eeeeee;

    line-height: 1.8;
}


/* =========================================
   BOOKING CONTENT
========================================= */

.booking-page {
    padding: 130px 6vw;

    background: #ffffff;

    text-align: center;
}

.booking-page-content {
    max-width: 750px;

    margin: 0 auto;
}

.booking-page-content h2 {
    font-size: clamp(42px, 5vw, 68px);

    font-weight: 400;

    line-height: 1.1;

    margin-bottom: 30px;
}

.booking-description {
    max-width: 600px;

    margin: 0 auto 40px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    line-height: 1.9;

    color: #666;
}


/* =========================================
   BOOK ONLINE BUTTON
========================================= */

.booking-main-button {
    display: inline-block;

    padding: 18px 40px;

    background: #171717;

    color: #ffffff;

    border: 1px solid #171717;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    transition: all 0.3s ease;
}

.booking-main-button:hover {
    background: #a8873b;

    border-color: #a8873b;
}

.booking-note {
    margin-top: 20px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;

    color: #888;
}


/* =========================================
   BOOKING PAGE MOBILE
========================================= */

@media (max-width: 600px) {

    .booking-page-hero {
        min-height: 420px;
    }

    .booking-page-hero h1 {
        font-size: 48px;
    }

    .booking-page {
        padding: 80px 20px;
    }

    .booking-page-content h2 {
        font-size: 42px;
    }

}

/* =========================================
   GIFT CERTIFICATES PAGE
========================================= */

.gift-page-hero {
    min-height: 480px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            rgba(20, 16, 13, 0.55),
            rgba(20, 16, 13, 0.55)
        ),
        url("../image/header bg.avif");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gift-page-hero-content {
    max-width: 750px;
    padding: 80px 25px;
}

.gift-page-hero .section-label {
    color: #d4bd83;
}

.gift-page-hero h1 {
    color: #f7f3eb;

    font-size: clamp(52px, 7vw, 90px);
    font-weight: 400;
    line-height: 1.05;

    margin-bottom: 25px;
}

.gift-page-hero p:not(.section-label) {
    max-width: 600px;
    margin: 0 auto;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #eeeeee;
}


/* =========================================
   GIFT CERTIFICATE CONTENT
========================================= */

.gift-page {
    padding: 120px 30px 140px;
    background: #f7f3eb;
    text-align: center;
}

.gift-page-content {
    max-width: 900px;
    margin: 0 auto;
}

.gift-page-content h2 {
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 400;
    line-height: 1.1;

    margin-bottom: 30px;
}

.gift-description {
    max-width: 650px;
    margin: 0 auto;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.9;
    color: #666;
}


/* =========================================
   GIFT CERTIFICATE CARD
========================================= */

.gift-card {
    max-width: 850px;
    margin: 70px auto 0;

    background: #ffffff;

    border: 1px solid #ddd6ca;

    text-align: left;

    box-shadow: 0 15px 45px rgba(30, 25, 18, 0.06);
}

.gift-card-header {
    padding: 55px 55px 45px;

    background: #1c1a17;

    text-align: center;
}

.gift-card-label {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    letter-spacing: 4px;

    color: #c4a45a;

    margin-bottom: 20px;
}

.gift-card-header h3 {
    color: #f7f3eb;

    font-size: 42px;
    font-weight: 400;

    margin-bottom: 12px;
}

.gift-card-header p:not(.gift-card-label) {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;

    color: #c8c3ba;
}


/* =========================================
   GIFT FORM
========================================= */

.gift-form {
    padding: 50px 55px 55px;
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;

    margin-bottom: 9px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 1.5px;

    color: #444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 15px 16px;

    border: 1px solid #d5d0c7;

    background: #faf9f6;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;

    color: #171717;

    outline: none;

    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #a8873b;
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}


/* =========================================
   PURCHASE BUTTON
========================================= */

.gift-purchase-button {
    width: 100%;

    padding: 18px 30px;

    background: #171717;
    color: #ffffff;

    border: 1px solid #171717;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 1.5px;

    cursor: pointer;

    transition: all 0.3s ease;
}

.gift-purchase-button:hover {
    background: #a8873b;
    border-color: #a8873b;
}

.gift-note {
    margin-top: 18px;

    text-align: center;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;

    color: #888;
}


/* =========================================
   GIFT PAGE — MOBILE
========================================= */

@media (max-width: 600px) {

    .gift-page-hero {
        min-height: 420px;
    }

    .gift-page-hero h1 {
        font-size: 48px;
    }

    .gift-page {
        padding: 80px 20px 90px;
    }

    .gift-page-content h2 {
        font-size: 42px;
    }

    .gift-card {
        margin-top: 50px;
    }

    .gift-card-header {
        padding: 40px 25px 35px;
    }

    .gift-card-header h3 {
        font-size: 34px;
    }

    .gift-form {
        padding: 35px 25px 40px;
    }

}

/* =========================================
   CONTACT PAGE
========================================= */

.contact-page-hero {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background:
        linear-gradient(
            rgba(20, 16, 13, 0.58),
            rgba(20, 16, 13, 0.58)
        ),
        url("../image/header bg.avif");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-page-hero-content {
    max-width: 750px;
    padding: 80px 25px;
}

.contact-page-hero .section-label {
    color: #d4bd83;
}

.contact-page-hero h1 {
    color: #f7f3eb;
    font-size: clamp(52px, 7vw, 90px);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 25px;
}

.contact-page-hero p:not(.section-label) {
    max-width: 600px;
    margin: 0 auto;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #eeeeee;
}


/* =========================================
   CONTACT MAIN
========================================= */

.contact-page {
    background: #f7f3eb;
    padding: 120px 30px 140px;
}

.contact-intro {
    max-width: 800px;
    margin: 0 auto 85px;
    text-align: center;
}

.contact-intro h2 {
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 400;
    line-height: 1.08;
    margin-bottom: 30px;
}

.contact-intro-text {
    max-width: 620px;
    margin: 0 auto;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.9;
    color: #666666;
}


/* =========================================
   CONTACT DETAILS
========================================= */

.contact-details {
    max-width: 1200px;
    margin: 0 auto 120px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid #d8d1c5;
    border-bottom: 1px solid #d8d1c5;
}

.contact-detail {
    padding: 45px 30px;

    text-align: center;

    border-right: 1px solid #d8d1c5;
}

.contact-detail:last-child {
    border-right: none;
}

.contact-detail-label {
    display: block;
    margin-bottom: 18px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: #a8873b;
}

.contact-detail h3 {
    margin-bottom: 15px;

    font-size: 22px;
    font-weight: 400;
    line-height: 1.3;
}

.contact-detail h3 a {
    color: inherit;
    text-decoration: none;
}

.contact-detail h3 a:hover {
    color: #a8873b;
}

.contact-detail p {
    margin: 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 1.8;
    color: #777777;
}


/* =========================================
   CONTACT FORM
========================================= */

.contact-form-section {
    max-width: 1100px;
    margin: 0 auto 130px;

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;

    align-items: start;
}

.contact-form-intro {
    padding-top: 10px;
}

.contact-form-intro h2 {
    font-size: clamp(42px, 4.5vw, 62px);
    font-weight: 400;
    line-height: 1.08;
    margin-bottom: 25px;
}

.contact-form-intro > p:last-child {
    max-width: 360px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.9;
    color: #777777;
}


/* FORM */

.contact-form {
    background: #ffffff;
    padding: 50px;

    border: 1px solid #ddd6ca;

    box-shadow:
        0 15px 45px rgba(30, 25, 18, 0.06);
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 9px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: #444444;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    box-sizing: border-box;

    padding: 15px 16px;

    border: 1px solid #d5d0c7;

    background: #faf9f6;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;

    color: #171717;

    outline: none;

    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #a8873b;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-submit-button {
    width: 100%;

    padding: 18px 30px;

    background: #171717;
    color: #ffffff;

    border: 1px solid #171717;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 600;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    cursor: pointer;

    transition: all 0.3s ease;
}

.contact-submit-button:hover {
    background: #a8873b;
    border-color: #a8873b;
}

.contact-form-note {
    margin: 18px 0 0;

    text-align: center;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;

    color: #888888;
}


/* =========================================
   MAP
========================================= */

.contact-map-section {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-map-placeholder {
    text-align: center;
}

.contact-map-placeholder h2 {
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 15px;
}

.contact-map-placeholder > p:not(.section-label) {
    margin-bottom: 40px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #777777;
}

.map-placeholder-box {
    min-height: 360px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e9e4da;

    border: 1px solid #d8d1c5;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;

    color: #8b8377;
}


/* =========================================
   CONTACT PAGE — MOBILE
========================================= */

@media (max-width: 900px) {

    .contact-details {
        grid-template-columns: 1fr 1fr;
    }

    .contact-detail:nth-child(2) {
        border-right: none;
    }

    .contact-detail:nth-child(1),
    .contact-detail:nth-child(2) {
        border-bottom: 1px solid #d8d1c5;
    }

    .contact-form-section {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-form-intro {
        text-align: center;
    }

    .contact-form-intro > p:last-child {
        margin-left: auto;
        margin-right: auto;
    }
}


@media (max-width: 600px) {

    .contact-page-hero {
        min-height: 420px;
    }

    .contact-page-hero-content {
        padding: 60px 20px;
    }

    .contact-page-hero h1 {
        font-size: 48px;
    }

    .contact-page {
        padding: 80px 20px 90px;
    }

    .contact-intro {
        margin-bottom: 60px;
    }

    .contact-intro h2 {
        font-size: 42px;
    }

    .contact-details {
        grid-template-columns: 1fr;
        margin-bottom: 80px;
    }

    .contact-detail {
        border-right: none;
        border-bottom: 1px solid #d8d1c5;
    }

    .contact-detail:last-child {
        border-bottom: none;
    }

    .contact-detail:nth-child(2) {
        border-right: none;
    }

    .contact-form-section {
        margin-bottom: 90px;
    }

    .contact-form {
        padding: 30px 25px 35px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-intro h2 {
        font-size: 42px;
    }

    .map-placeholder-box {
        min-height: 280px;
    }

}

.map-placeholder-box {
    width: 100%;
    height: 450px;
    overflow: hidden;
    margin-top: 40px;
    border-radius: 2px;
}

.map-placeholder-box iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

/* =========================================
   TREATMENT CATEGORY PAGE
   LASER HAIR REMOVAL
========================================= */


/* ---------- HERO ---------- */

.treatment-hero {
    min-height: 650px;

    display: flex;
    align-items: center;

    position: relative;

    background:
        linear-gradient(
            rgba(20, 16, 13, 0.48),
            rgba(20, 16, 13, 0.48)
        ),
        url("../image/header bg.avif");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.treatment-hero-content {
    max-width: 760px;

    margin-left: max(7vw, 50px);

    padding: 100px 30px 100px 0;
}

.treatment-hero .section-label {
    color: #d4bd83;
}

.treatment-hero h1 {
    color: #f7f3eb;

    font-size: clamp(58px, 8vw, 105px);

    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -3px;

    margin-bottom: 35px;
}

.treatment-hero p:not(.section-label) {
    max-width: 560px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 16px;

    line-height: 1.9;

    color: #eeeae2;
}


/* =========================================
   TREATMENT INTRO
========================================= */

.treatment-intro {
    max-width: 1250px;

    margin: 0 auto;

    padding: 130px 40px;

    display: grid;

    grid-template-columns: 0.7fr 1.3fr;

    gap: 100px;
}

.treatment-intro-label {
    padding-top: 10px;
}

.treatment-intro-content h2 {
    font-size: clamp(42px, 5vw, 68px);

    font-weight: 400;

    line-height: 1.08;

    margin-bottom: 35px;
}

.treatment-intro-content p {
    max-width: 680px;

    margin-bottom: 22px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    line-height: 1.9;

    color: #666;
}


/* =========================================
   BENEFITS
========================================= */

.treatment-benefits {
    background: #ffffff;

    padding: 130px 6vw;

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 100px;
}

.treatment-benefits-header {
    max-width: 500px;
}

.treatment-benefits-header h2 {
    font-size: clamp(42px, 5vw, 68px);

    font-weight: 400;

    line-height: 1.08;
}

.benefits-list {
    border-top: 1px solid #d8d1c5;
}

.benefit-item {
    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 25px;

    padding: 35px 0;

    border-bottom: 1px solid #d8d1c5;
}

.benefit-item > span {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 10px;

    letter-spacing: 2px;

    color: #a8873b;
}

.benefit-item h3 {
    margin-bottom: 10px;

    font-size: 25px;

    font-weight: 400;
}

.benefit-item p {
    max-width: 550px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;

    line-height: 1.8;

    color: #777;
}


/* =========================================
   CUSTOM PACKAGE
========================================= */

.custom-package {
    padding: 120px 30px;

    background: #1c1a17;

    text-align: center;

    color: #f7f3eb;
}

.custom-package-content {
    max-width: 750px;

    margin: 0 auto;
}

.custom-package .section-label {
    color: #c4a45a;
}

.custom-package h2 {
    font-size: clamp(44px, 5vw, 68px);

    font-weight: 400;

    line-height: 1.08;

    margin-bottom: 30px;
}

.custom-package p:not(.section-label) {
    max-width: 600px;

    margin: 0 auto;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    line-height: 1.9;

    color: #c8c3ba;
}

.custom-package-note {
    margin-top: 25px !important;

    color: #d4bd83 !important;

    font-size: 12px !important;

    text-transform: uppercase;

    letter-spacing: 2px;
}


/* =========================================
   LASER PRICING
========================================= */

.laser-pricing {
    padding: 130px 6vw;

    background: #f7f3eb;
}

.laser-pricing-header {
    max-width: 850px;

    margin: 0 auto 70px;

    text-align: center;
}

.laser-pricing-header h2 {
    font-size: clamp(42px, 5vw, 68px);

    font-weight: 400;

    line-height: 1.08;

    margin-bottom: 20px;
}

.laser-pricing-header p:not(.section-label) {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;

    color: #777;
}

.laser-price-list {
    max-width: 1100px;

    margin: 0 auto;

    border-top: 1px solid #cfc8bc;
}

.laser-price-row {
    display: grid;

    grid-template-columns: 70px 1fr auto;

    align-items: center;

    gap: 30px;

    padding: 35px 10px;

    border-bottom: 1px solid #cfc8bc;

    transition:
        background 0.3s ease,
        padding 0.3s ease;
}

.laser-price-row:hover {
    background: #ffffff;

    padding-left: 25px;

    padding-right: 25px;
}

.laser-price-number {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 10px;

    letter-spacing: 2px;

    color: #a8873b;
}

.laser-price-info h3 {
    font-size: 27px;

    font-weight: 400;

    margin-bottom: 5px;
}

.laser-price-info p {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;

    color: #777;
}

.laser-price-meta {
    min-width: 130px;

    display: flex;

    align-items: flex-end;

    flex-direction: column;

    gap: 5px;
}

.laser-price-meta span {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 9px;

    letter-spacing: 2px;

    color: #888;
}

.laser-price-meta strong {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 22px;

    font-weight: 400;

    color: #171717;
}


/* =========================================
   MEN'S SECTION
========================================= */

.laser-pricing-men {
    background: #ffffff;
}

.laser-pricing-men .laser-price-list {
    border-color: #d8d1c5;
}


/* =========================================
   FINAL BOOKING CTA
========================================= */

.treatment-booking-cta {
    padding: 140px 30px;

    background: #171717;

    text-align: center;

    color: #f7f3eb;
}

.treatment-booking-cta > div {
    max-width: 750px;

    margin: 0 auto;
}

.treatment-booking-cta .section-label {
    color: #c4a45a;
}

.treatment-booking-cta h2 {
    font-size: clamp(45px, 6vw, 76px);

    font-weight: 400;

    line-height: 1.05;

    margin-bottom: 25px;
}

.treatment-booking-cta p:not(.section-label) {
    margin-bottom: 40px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    color: #c8c3ba;
}

.treatment-booking-cta .primary-button {
    display: inline-block;

    padding: 17px 32px;

    background: #c4a45a;

    color: #171717;

    border: 1px solid #c4a45a;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    transition: all 0.3s ease;
}

.treatment-booking-cta .primary-button:hover {
    background: #f7f3eb;

    border-color: #f7f3eb;
}


/* =========================================
   TREATMENT PAGE — TABLET
========================================= */

@media (max-width: 900px) {

    .treatment-intro {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 100px 30px;
    }

    .treatment-benefits {
        grid-template-columns: 1fr;

        gap: 60px;

        padding: 100px 30px;
    }

}


/* =========================================
   TREATMENT PAGE — MOBILE
========================================= */

@media (max-width: 600px) {

    .treatment-hero {
        min-height: 600px;
    }

    .treatment-hero-content {
        margin-left: 25px;
        margin-right: 25px;

        padding: 80px 0;
    }

    .treatment-hero h1 {
        font-size: 52px;

        letter-spacing: -1.5px;
    }

    .treatment-intro {
        padding: 80px 25px;
    }

    .treatment-intro-content h2 {
        font-size: 42px;
    }

    .treatment-benefits {
        padding: 80px 25px;
    }

    .treatment-benefits-header h2 {
        font-size: 42px;
    }

    .benefit-item {
        grid-template-columns: 35px 1fr;

        gap: 15px;

        padding: 28px 0;
    }

    .benefit-item h3 {
        font-size: 22px;
    }

    .custom-package {
        padding: 85px 25px;
    }

    .custom-package h2 {
        font-size: 42px;
    }

    .laser-pricing {
        padding: 80px 20px;
    }

    .laser-pricing-header {
        margin-bottom: 45px;
    }

    .laser-pricing-header h2 {
        font-size: 42px;
    }

    .laser-price-row {
        grid-template-columns: 35px 1fr;

        gap: 15px;

        padding: 28px 5px;
    }

    .laser-price-row:hover {
        padding-left: 10px;

        padding-right: 10px;
    }

    .laser-price-meta {
        grid-column: 2;

        align-items: flex-start;

        flex-direction: row;

        gap: 18px;

        margin-top: 8px;
    }

    .laser-price-info h3 {
        font-size: 24px;
    }

    .laser-price-meta strong {
        font-size: 19px;
    }

    .treatment-booking-cta {
        padding: 90px 25px;
    }

    .treatment-booking-cta h2 {
        font-size: 46px;
    }

}

/* =========================================
   MICRONEEDLING PAGE
========================================= */


/* ---------- PAGE HERO ---------- */

.treatment-hero {
    min-height: 650px;

    display: flex;
    align-items: center;

    position: relative;

    background:
        linear-gradient(
            rgba(20, 16, 13, 0.58),
            rgba(20, 16, 13, 0.58)
        ),
        url("../image/header bg.avif");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.treatment-hero-content {
    max-width: 700px;

    margin-left: max(7vw, 50px);

    padding: 100px 30px 100px 0;
}

.treatment-hero .section-label {
    color: #d4bd83;

    margin-bottom: 25px;
}

.treatment-hero h1 {
    color: #f7f3eb;

    font-size: clamp(55px, 7vw, 95px);

    font-weight: 400;

    line-height: 1.02;

    letter-spacing: -2px;

    margin-bottom: 30px;
}

.treatment-hero-content > p:last-child {
    max-width: 550px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 16px;

    line-height: 1.8;

    color: #eeeeee;
}


/* =========================================
   TREATMENT INTRO
========================================= */

.treatment-intro {
    padding: 130px 7vw;

    background: #f7f3eb;

    display: grid;

    grid-template-columns: 0.7fr 1.3fr;

    gap: 80px;

    max-width: 1500px;

    margin: 0 auto;
}

.treatment-intro-label {
    padding-top: 10px;
}

.treatment-intro-content {
    max-width: 750px;
}

.treatment-intro-content h2 {
    font-size: clamp(42px, 5vw, 68px);

    font-weight: 400;

    line-height: 1.08;

    margin-bottom: 35px;
}

.treatment-intro-content p {
    max-width: 700px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    line-height: 1.9;

    color: #666666;

    margin-bottom: 22px;
}

.treatment-intro-content p:last-child {
    margin-bottom: 0;
}


/* =========================================
   TREATMENT BENEFITS
========================================= */

.treatment-benefits {
    padding: 130px 7vw;

    background: #ffffff;
}

.treatment-benefits-header {
    max-width: 800px;

    margin: 0 auto 80px;

    text-align: center;
}

.treatment-benefits-header h2 {
    font-size: clamp(42px, 5vw, 68px);

    font-weight: 400;

    line-height: 1.08;
}


/* =========================================
   BENEFIT LIST
========================================= */

.benefits-list {
    max-width: 1200px;

    margin: 0 auto;

    border-top: 1px solid #d8d1c5;
}

.benefit-item {
    display: grid;

    grid-template-columns: 80px 1fr;

    gap: 35px;

    padding: 38px 0;

    border-bottom: 1px solid #d8d1c5;
}

.benefit-item > span {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 10px;

    letter-spacing: 2px;

    color: #a8873b;

    padding-top: 7px;
}

.benefit-item h3 {
    font-size: 27px;

    font-weight: 400;

    line-height: 1.2;

    margin-bottom: 10px;
}

.benefit-item p {
    max-width: 650px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;

    line-height: 1.8;

    color: #666666;

    margin: 0;
}


/* =========================================
   TREATMENT PRICING
========================================= */

.laser-pricing {
    padding: 130px 7vw;

    background: #f7f3eb;
}

.laser-pricing-header {
    max-width: 750px;

    margin: 0 auto 70px;

    text-align: center;
}

.laser-pricing-header h2 {
    font-size: clamp(42px, 5vw, 68px);

    font-weight: 400;

    line-height: 1.08;

    margin-bottom: 25px;
}

.laser-pricing-header p:not(.section-label) {
    max-width: 600px;

    margin: 0 auto;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    line-height: 1.8;

    color: #666666;
}


/* =========================================
   PRICE LIST
========================================= */

.laser-price-list {
    max-width: 1200px;

    margin: 0 auto;

    border-top: 1px solid #d8d1c5;
}

.laser-price-row {
    display: grid;

    grid-template-columns: 70px 1fr auto;

    align-items: center;

    gap: 35px;

    padding: 35px 0;

    border-bottom: 1px solid #d8d1c5;

    transition: padding 0.3s ease;
}

.laser-price-row:hover {
    padding-left: 10px;
}

.laser-price-number {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 10px;

    letter-spacing: 2px;

    color: #a8873b;
}

.laser-price-info h3 {
    font-size: 25px;

    font-weight: 400;

    line-height: 1.2;

    margin-bottom: 6px;
}

.laser-price-info p {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;

    line-height: 1.7;

    color: #777777;

    margin: 0;
}

.laser-price-meta {
    text-align: right;

    min-width: 120px;
}

.laser-price-meta span {
    display: block;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 9px;

    letter-spacing: 1.5px;

    color: #888888;

    margin-bottom: 6px;
}

.laser-price-meta strong {
    display: block;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 22px;

    font-weight: 400;

    color: #171717;
}


/* =========================================
   MICRONEEDLING PRICING
========================================= */

.microneedling-pricing {
    background: #f7f3eb;
}


/* =========================================
   BOOKING CTA
========================================= */

.treatment-booking-cta {
    padding: 140px 30px;

    background: #1c1a17;

    text-align: center;
}

.treatment-booking-cta > div {
    max-width: 800px;

    margin: 0 auto;
}

.treatment-booking-cta .section-label {
    color: #c4a45a;

    margin-bottom: 25px;
}

.treatment-booking-cta h2 {
    color: #f7f3eb;

    font-size: clamp(48px, 6vw, 78px);

    font-weight: 400;

    line-height: 1.05;

    margin-bottom: 30px;
}

.treatment-booking-cta p:not(.section-label) {
    max-width: 600px;

    margin: 0 auto 40px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    line-height: 1.9;

    color: #c8c3ba;
}

.treatment-booking-cta .primary-button {
    display: inline-block;

    padding: 17px 32px;

    background: #c4a45a;

    color: #1c1a17;

    border: 1px solid #c4a45a;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    transition: all 0.3s ease;
}

.treatment-booking-cta .primary-button:hover {
    background: #f7f3eb;

    border-color: #f7f3eb;

    color: #1c1a17;
}


/* =========================================
   TREATMENT PAGE — TABLET
========================================= */

@media (max-width: 900px) {

    .treatment-intro {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 100px 30px;
    }

    .treatment-intro-label {
        padding-top: 0;
    }

    .treatment-benefits {
        padding: 100px 30px;
    }

    .laser-pricing {
        padding: 100px 30px;
    }

}


/* =========================================
   TREATMENT PAGE — MOBILE
========================================= */

@media (max-width: 600px) {

    .treatment-hero {
        min-height: 600px;

        background-position: center;
    }

    .treatment-hero-content {
        margin-left: 25px;

        margin-right: 25px;

        padding: 80px 0;
    }

    .treatment-hero h1 {
        font-size: 50px;

        letter-spacing: -1px;
    }

    .treatment-intro {
        padding: 80px 25px;
    }

    .treatment-intro-content h2 {
        font-size: 42px;
    }

    .treatment-benefits {
        padding: 80px 25px;
    }

    .treatment-benefits-header {
        margin-bottom: 55px;
    }

    .treatment-benefits-header h2 {
        font-size: 42px;
    }

    .benefit-item {
        grid-template-columns: 45px 1fr;

        gap: 15px;

        padding: 30px 0;
    }

    .benefit-item h3 {
        font-size: 23px;
    }

    .laser-pricing {
        padding: 80px 25px;
    }

    .laser-pricing-header {
        margin-bottom: 50px;
    }

    .laser-pricing-header h2 {
        font-size: 42px;
    }

    .laser-price-row {
        grid-template-columns: 40px 1fr;

        gap: 15px;

        padding: 30px 0;
    }

    .laser-price-info h3 {
        font-size: 22px;
    }

    .laser-price-meta {
        grid-column: 2;

        text-align: left;

        min-width: 0;

        margin-top: 5px;
    }

    .laser-price-meta span {
        display: inline-block;

        margin-right: 12px;

        margin-bottom: 0;
    }

    .laser-price-meta strong {
        display: inline-block;

        font-size: 20px;
    }

    .treatment-booking-cta {
        padding: 90px 25px;
    }

    .treatment-booking-cta h2 {
        font-size: 48px;
    }

}

/* =========================================
   HYPERPIGMENTATION PAGE
========================================= */


/* ---------- TREATMENT HERO ---------- */

.treatment-hero {
    min-height: 650px;

    display: flex;
    align-items: center;

    position: relative;

    background:
        linear-gradient(
            rgba(20, 16, 13, 0.58),
            rgba(20, 16, 13, 0.58)
        ),
        url("../image/header bg.avif");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.treatment-hero-content {
    max-width: 700px;

    margin-left: max(7vw, 50px);

    padding: 100px 30px 100px 0;
}

.treatment-hero .section-label {
    color: #d4bd83;
    margin-bottom: 25px;
}

.treatment-hero h1 {
    color: #f7f3eb;

    font-size: clamp(55px, 7vw, 95px);

    font-weight: 400;

    line-height: 1.02;

    letter-spacing: -2px;

    margin-bottom: 30px;
}

.treatment-hero-content > p:last-child {
    max-width: 550px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 16px;

    line-height: 1.8;

    color: #eeeeee;
}


/* =========================================
   TREATMENT INTRO
========================================= */

.treatment-intro {
    padding: 130px 7vw;

    background: #f7f3eb;

    display: grid;

    grid-template-columns: 0.7fr 1.3fr;

    gap: 80px;

    max-width: 1500px;

    margin: 0 auto;
}

.treatment-intro-label {
    padding-top: 10px;
}

.treatment-intro-content {
    max-width: 750px;
}

.treatment-intro-content h2 {
    font-size: clamp(42px, 5vw, 68px);

    font-weight: 400;

    line-height: 1.08;

    margin-bottom: 35px;
}

.treatment-intro-content p {
    max-width: 700px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    line-height: 1.9;

    color: #666666;

    margin-bottom: 22px;
}

.treatment-intro-content p:last-child {
    margin-bottom: 0;
}


/* =========================================
   BENEFITS
========================================= */

.treatment-benefits {
    padding: 130px 7vw;

    background: #ffffff;
}

.treatment-benefits-header {
    max-width: 800px;

    margin: 0 auto 80px;

    text-align: center;
}

.treatment-benefits-header h2 {
    font-size: clamp(42px, 5vw, 68px);

    font-weight: 400;

    line-height: 1.08;
}


/* =========================================
   BENEFIT LIST
========================================= */

.benefits-list {
    max-width: 1200px;

    margin: 0 auto;

    border-top: 1px solid #d8d1c5;
}

.benefit-item {
    display: grid;

    grid-template-columns: 80px 1fr;

    gap: 35px;

    padding: 38px 0;

    border-bottom: 1px solid #d8d1c5;

    transition: padding 0.3s ease;
}

.benefit-item:hover {
    padding-left: 10px;
}

.benefit-item > span {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 10px;

    letter-spacing: 2px;

    color: #a8873b;

    padding-top: 7px;
}

.benefit-item h3 {
    font-size: 27px;

    font-weight: 400;

    line-height: 1.2;

    margin-bottom: 10px;
}

.benefit-item p {
    max-width: 650px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;

    line-height: 1.8;

    color: #666666;

    margin: 0;
}


/* =========================================
   TREATMENT OPTIONS
========================================= */

.laser-pricing {
    padding: 130px 7vw;

    background: #f7f3eb;
}

.laser-pricing-header {
    max-width: 750px;

    margin: 0 auto 70px;

    text-align: center;
}

.laser-pricing-header h2 {
    font-size: clamp(42px, 5vw, 68px);

    font-weight: 400;

    line-height: 1.08;

    margin-bottom: 25px;
}

.laser-pricing-header p:not(.section-label) {
    max-width: 600px;

    margin: 0 auto;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    line-height: 1.8;

    color: #666666;
}


/* =========================================
   PRICE / TREATMENT LIST
========================================= */

.laser-price-list {
    max-width: 1200px;

    margin: 0 auto;

    border-top: 1px solid #d8d1c5;
}

.laser-price-row {
    display: grid;

    grid-template-columns: 70px 1fr auto;

    align-items: center;

    gap: 35px;

    padding: 35px 0;

    border-bottom: 1px solid #d8d1c5;

    transition: all 0.3s ease;
}

.laser-price-row:hover {
    padding-left: 10px;
}

.laser-price-number {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 10px;

    letter-spacing: 2px;

    color: #a8873b;
}

.laser-price-info h3 {
    font-size: 25px;

    font-weight: 400;

    line-height: 1.2;

    margin-bottom: 7px;
}

.laser-price-info p {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;

    line-height: 1.7;

    color: #777777;

    margin: 0;
}

.laser-price-meta {
    text-align: right;

    min-width: 120px;
}

.laser-price-meta span {
    display: block;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 9px;

    letter-spacing: 1.5px;

    color: #888888;

    margin-bottom: 6px;
}

.laser-price-meta strong {
    display: block;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 22px;

    font-weight: 400;

    color: #171717;
}


/* =========================================
   BOOKING CTA
========================================= */

.treatment-booking-cta {
    padding: 140px 30px;

    background: #1c1a17;

    text-align: center;
}

.treatment-booking-cta > div {
    max-width: 800px;

    margin: 0 auto;
}

.treatment-booking-cta .section-label {
    color: #c4a45a;

    margin-bottom: 25px;
}

.treatment-booking-cta h2 {
    color: #f7f3eb;

    font-size: clamp(48px, 6vw, 78px);

    font-weight: 400;

    line-height: 1.05;

    margin-bottom: 30px;
}

.treatment-booking-cta p:not(.section-label) {
    max-width: 600px;

    margin: 0 auto 40px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    line-height: 1.9;

    color: #c8c3ba;
}

.treatment-booking-cta .primary-button {
    display: inline-block;

    padding: 17px 32px;

    background: #c4a45a;

    color: #1c1a17;

    border: 1px solid #c4a45a;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    transition: all 0.3s ease;
}

.treatment-booking-cta .primary-button:hover {
    background: #f7f3eb;

    border-color: #f7f3eb;

    color: #1c1a17;
}


/* =========================================
   HYPERPIGMENTATION — TABLET
========================================= */

@media (max-width: 900px) {

    .treatment-intro {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 100px 30px;
    }

    .treatment-intro-label {
        padding-top: 0;
    }

    .treatment-benefits {
        padding: 100px 30px;
    }

    .laser-pricing {
        padding: 100px 30px;
    }

}


/* =========================================
   HYPERPIGMENTATION — MOBILE
========================================= */

@media (max-width: 600px) {

    .treatment-hero {
        min-height: 600px;

        background-position: center;
    }

    .treatment-hero-content {
        margin-left: 25px;

        margin-right: 25px;

        padding: 80px 0;
    }

    .treatment-hero h1 {
        font-size: 50px;

        letter-spacing: -1px;
    }

    .treatment-intro {
        padding: 80px 25px;
    }

    .treatment-intro-content h2 {
        font-size: 42px;
    }

    .treatment-benefits {
        padding: 80px 25px;
    }

    .treatment-benefits-header {
        margin-bottom: 55px;
    }

    .treatment-benefits-header h2 {
        font-size: 42px;
    }

    .benefit-item {
        grid-template-columns: 45px 1fr;

        gap: 15px;

        padding: 30px 0;
    }

    .benefit-item h3 {
        font-size: 23px;
    }

    .laser-pricing {
        padding: 80px 25px;
    }

    .laser-pricing-header {
        margin-bottom: 50px;
    }

    .laser-pricing-header h2 {
        font-size: 42px;
    }

    .laser-price-row {
        grid-template-columns: 40px 1fr;

        gap: 15px;

        padding: 30px 0;
    }

    .laser-price-info h3 {
        font-size: 22px;
    }

    .laser-price-meta {
        grid-column: 2;

        text-align: left;

        min-width: 0;

        margin-top: 5px;
    }

    .laser-price-meta span {
        display: inline-block;

        margin-right: 12px;

        margin-bottom: 0;
    }

    .laser-price-meta strong {
        display: inline-block;

        font-size: 20px;
    }

    .treatment-booking-cta {
        padding: 90px 25px;
    }

    .treatment-booking-cta h2 {
        font-size: 48px;
    }

}

/* =========================================
   TREATMENT PAGES
========================================= */

.treatment-hero {
    min-height: 650px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.68),
            rgba(0, 0, 0, 0.25)
        ),
        url("../image/header bg.avif");
    background-size: cover;
    background-position: center;
    color: #fff;
}

.treatment-hero-content {
    max-width: 700px;
    margin-left: max(7vw, 50px);
    padding: 100px 30px 100px 0;
}

.treatment-hero h1 {
    margin: 20px 0 30px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(55px, 7vw, 95px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -3px;
}

.treatment-hero p:not(.section-label) {
    max-width: 580px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #eee;
}


/* =========================================
   TREATMENT INTRO
========================================= */

.treatment-intro {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 80px;
    padding: 130px 7vw;
    background: #f7f3eb;
}

.treatment-intro-label {
    padding-top: 10px;
}

.treatment-intro-content {
    max-width: 850px;
}

.treatment-intro-content h2 {
    margin: 0 0 35px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -2px;
}

.treatment-intro-content p {
    max-width: 750px;
    margin-bottom: 22px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.9;
    color: #666;
}


/* =========================================
   BENEFITS
========================================= */

.treatment-benefits {
    padding: 130px 7vw;
    background: #fff;
}

.treatment-benefits-header {
    max-width: 700px;
    margin-bottom: 80px;
}

.treatment-benefits-header h2 {
    margin-top: 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -2px;
}

.benefits-list {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #ddd;
}

.benefit-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 35px;
    padding: 38px 0;
    border-bottom: 1px solid #ddd;
    transition: padding-left 0.3s ease;
}

.benefit-item:hover {
    padding-left: 10px;
}

.benefit-number {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    color: #a8873b;
}

.benefit-item h3 {
    margin: 0 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 400;
}

.benefit-item p {
    max-width: 700px;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #777;
}


/* =========================================
   TREATMENT / PRICING SECTION
========================================= */

.laser-pricing {
    padding: 130px 7vw;
    background: #f7f3eb;
}

.laser-pricing-header {
    max-width: 750px;
    margin-bottom: 75px;
}

.laser-pricing-header h2 {
    margin: 20px 0 25px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -2px;
}

.laser-pricing-header p:not(.section-label) {
    max-width: 650px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #777;
}

.laser-price-list {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #ccc;
}

.laser-price-row {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    align-items: center;
    gap: 35px;
    padding: 35px 0;
    border-bottom: 1px solid #ccc;
}

.laser-price-number {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    color: #a8873b;
}

.laser-price-info h3 {
    margin: 0 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 400;
}

.laser-price-info p {
    max-width: 700px;
    margin: 0 0 15px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #777;
}

.laser-price-meta {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    color: #888;
}

.laser-price-value {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    white-space: nowrap;
    color: #171717;
}


/* =========================================
   BOOKING CTA
========================================= */

.treatment-booking-cta {
    padding: 130px 7vw;
    text-align: center;
    background: #171717;
    color: #fff;
}

.treatment-booking-cta h2 {
    margin: 20px auto 30px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(45px, 6vw, 78px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -2px;
}

.treatment-booking-cta p:not(.section-label) {
    max-width: 550px;
    margin: 0 auto 35px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #ccc;
}

.treatment-booking-cta .primary-button {
    display: inline-block;
    padding: 16px 32px;
    background: #d4bd83;
    color: #171717;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.treatment-booking-cta .primary-button:hover {
    background: #fff;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .treatment-hero {
        min-height: 560px;
    }

    .treatment-hero-content {
        margin-left: 7vw;
        padding-right: 7vw;
    }

    .treatment-intro {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 90px 7vw;
    }

    .treatment-benefits {
        padding: 90px 7vw;
    }

    .treatment-benefits-header {
        margin-bottom: 55px;
    }

    .laser-pricing {
        padding: 90px 7vw;
    }

    .laser-price-row {
        grid-template-columns: 50px 1fr;
        gap: 20px;
    }

    .laser-price-value {
        grid-column: 2;
        margin-top: -10px;
    }

    .treatment-booking-cta {
        padding: 90px 7vw;
    }

}


@media (max-width: 600px) {

    .treatment-hero {
        min-height: 520px;
    }

    .treatment-hero-content {
        margin-left: 6vw;
        padding: 80px 6vw 80px 0;
    }

    .treatment-hero h1 {
        font-size: clamp(48px, 14vw, 70px);
        letter-spacing: -2px;
    }

    .treatment-intro {
        padding: 75px 6vw;
    }

    .treatment-benefits {
        padding: 75px 6vw;
    }

    .benefit-item {
        grid-template-columns: 45px 1fr;
        gap: 15px;
        padding: 30px 0;
    }

    .benefit-item h3 {
        font-size: 26px;
    }

    .laser-pricing {
        padding: 75px 6vw;
    }

    .laser-price-row {
        grid-template-columns: 40px 1fr;
        gap: 15px;
        padding: 30px 0;
    }

    .laser-price-info h3 {
        font-size: 26px;
    }

    .laser-price-value {
        font-size: 23px;
    }

    .treatment-booking-cta {
        padding: 75px 6vw;
    }

}

/* =========================================
   NON-SURGICAL FACE LIFT - PRICE ALIGNMENT
========================================= */

.laser-price-row {
    display: grid;
    grid-template-columns: 70px 1fr 180px;
    align-items: center;
    gap: 35px;
    padding: 35px 0;
    border-bottom: 1px solid #ccc;
}

.laser-price-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 20px;
}

.laser-price-meta {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    color: #888;
    text-align: right;
}

.laser-price-value {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    white-space: nowrap;
    color: #171717;
    text-align: right;
}


/* MOBILE */

@media (max-width: 900px) {

    .laser-price-row {
        grid-template-columns: 50px 1fr;
        gap: 20px;
    }

    .laser-price-side {
        grid-column: 2;
        align-items: flex-start;
        margin-top: 5px;
        gap: 10px;
    }

    .laser-price-meta {
        text-align: left;
    }

    .laser-price-value {
        text-align: left;
    }

}

/* =========================================
   MEDICAL GRADE FACIAL PAGE
========================================= */


/* ---------- MEDICAL FACIAL HERO ---------- */

.treatment-hero {
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.68),
            rgba(0, 0, 0, 0.25)
        ),
        url("../image/header bg.avif");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* =========================================
   MEDICAL FACIAL HERO CONTENT
========================================= */

.treatment-hero-content {
    max-width: 700px;
}

.treatment-hero .section-label {
    color: #d4bd83;
}

.treatment-hero h1 {
    color: #f7f3eb;
}

.treatment-hero-content > p:last-child {
    color: #eeeeee;
}


/* =========================================
   MEDICAL FACIAL INTRO
========================================= */

.treatment-intro {
    background: #f7f3eb;
}

.treatment-intro-content h2 {
    color: #171717;
}

.treatment-intro-content p {
    color: #666666;
}


/* =========================================
   MEDICAL FACIAL BENEFITS
========================================= */

.treatment-benefits {
    background: #ffffff;
}

.treatment-benefits-header .section-label {
    color: #a8873b;
}

.treatment-benefits-header h2 {
    color: #171717;
}

.benefit-item {
    border-color: #ddd;
}

.benefit-item > span {
    color: #a8873b;
}

.benefit-item h3 {
    color: #171717;
}

.benefit-item p {
    color: #777777;
}


/* =========================================
   MEDICAL FACIAL TREATMENT OPTIONS
========================================= */

.laser-pricing {
    background: #f7f3eb;
}

.laser-pricing-header .section-label {
    color: #a8873b;
}

.laser-pricing-header h2 {
    color: #171717;
}

.laser-pricing-header p:not(.section-label) {
    color: #777777;
}


/* =========================================
   MEDICAL FACIAL PRICE LIST
========================================= */

.laser-price-list {
    border-top: 1px solid #ccc;
}

.laser-price-row {
    grid-template-columns: 70px 1fr 180px;
    align-items: center;
    gap: 35px;
    padding: 35px 0;
    border-bottom: 1px solid #ccc;
}

.laser-price-number {
    color: #a8873b;
}

.laser-price-info h3 {
    color: #171717;
}

.laser-price-info p {
    color: #777777;
}

.laser-price-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
}

.laser-price-meta {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    color: #888888;
    text-align: right;
}

.laser-price-value {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;
    white-space: nowrap;
    color: #171717;
    text-align: right;
}


/* =========================================
   MEDICAL FACIAL BOOKING CTA
========================================= */

.treatment-booking-cta {
    background: #171717;
}

.treatment-booking-cta .section-label {
    color: #d4bd83;
}

.treatment-booking-cta h2 {
    color: #f7f3eb;
}

.treatment-booking-cta p:not(.section-label) {
    color: #cccccc;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .treatment-hero {
        background-position: center;
    }

    .laser-price-row {
        grid-template-columns: 50px 1fr;
        gap: 20px;
    }

    .laser-price-side {
        grid-column: 2;
        align-items: flex-start;
        margin-top: 5px;
        gap: 10px;
    }

    .laser-price-meta {
        text-align: left;
    }

    .laser-price-value {
        text-align: left;
    }

}


@media (max-width: 600px) {

    .treatment-hero {
        min-height: 520px;

        background-position: center;
    }

    .treatment-hero-content {
        margin-left: 6vw;
        padding: 80px 6vw 80px 0;
    }

    .treatment-hero h1 {
        font-size: clamp(48px, 14vw, 70px);
        letter-spacing: -2px;
    }

    .laser-price-row {
        grid-template-columns: 40px 1fr;
        gap: 15px;
        padding: 30px 0;
    }

    .laser-price-info h3 {
        font-size: 26px;
    }

    .laser-price-side {
        grid-column: 2;
        align-items: flex-start;
        gap: 8px;
    }

    .laser-price-meta {
        font-size: 9px;
        text-align: left;
    }

    .laser-price-value {
        font-size: 23px;
        text-align: left;
    }

}

/* =========================================================
   LASH & BROW CARE
   ========================================================= */

.lashcare-page {
    background: #f7f3eb;
    color: #171717;
}

/* ---------- HERO ---------- */

.lashcare-page .treatment-hero {
    min-height: 560px;
    display: flex;
    align-items: center;
    position: relative;
    background:
        linear-gradient(
            90deg,
            rgba(23, 23, 23, 0.62),
            rgba(23, 23, 23, 0.20)
        ),
        url("../image/lashcare-bg.avif") center center / cover no-repeat;
}

.lashcare-page .treatment-hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
    color: #fff;
}

.lashcare-page .treatment-hero .eyebrow,
.lashcare-page .treatment-hero-label {
    color: #d4bd83;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.lashcare-page .treatment-hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.05;
    font-weight: 400;
    margin: 0 0 24px;
    max-width: 700px;
}

.lashcare-page .treatment-hero p {
    max-width: 620px;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
}


/* ---------- INTRO ---------- */

.lashcare-page .treatment-intro {
    padding: 110px 40px;
    background: #f7f3eb;
}

.lashcare-page .treatment-intro-content {
    max-width: 1200px;
    margin: 0 auto;
}

.lashcare-page .treatment-intro-label {
    color: #a8873b;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.lashcare-page .treatment-intro h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.15;
    font-weight: 400;
    margin: 0 0 24px;
    color: #171717;
}

.lashcare-page .treatment-intro p {
    max-width: 760px;
    font-size: 17px;
    line-height: 1.85;
    color: #555;
}


/* ---------- BENEFITS ---------- */

.lashcare-page .treatment-benefits {
    padding: 100px 40px;
    background: #fff;
}

.lashcare-page .treatment-benefits-header {
    max-width: 1200px;
    margin: 0 auto 55px;
}

.lashcare-page .treatment-benefits-header h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 400;
    margin: 0;
    color: #171717;
}

.lashcare-page .benefits-list {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid #ddd5c8;
}

.lashcare-page .benefit-item {
    padding: 35px 30px 35px 0;
    border-bottom: 1px solid #ddd5c8;
}

.lashcare-page .benefit-item:nth-child(even) {
    padding-left: 40px;
    border-left: 1px solid #ddd5c8;
}

.lashcare-page .benefit-item h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;
    margin: 0 0 12px;
    color: #171717;
}

.lashcare-page .benefit-item p {
    margin: 0;
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}


/* ---------- TREATMENT / PRICING ---------- */

.lashcare-page .laser-pricing {
    padding: 110px 40px;
    background: #f7f3eb;
}

.lashcare-page .laser-pricing-header {
    max-width: 1200px;
    margin: 0 auto 55px;
}

.lashcare-page .laser-pricing-header h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.15;
    font-weight: 400;
    color: #171717;
    margin: 0 0 18px;
}

.lashcare-page .laser-pricing-header p {
    max-width: 650px;
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}


/* ---------- PRICE LIST ---------- */

.lashcare-page .laser-price-list {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #cfc7b9;
}

.lashcare-page .laser-price-row {
    display: grid;
    grid-template-columns: 70px 1fr 180px;
    align-items: center;
    min-height: 115px;
    border-bottom: 1px solid #cfc7b9;
}

.lashcare-page .laser-price-number {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    color: #a8873b;
}

.lashcare-page .laser-price-info {
    padding-right: 40px;
}

.lashcare-page .laser-price-info h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;
    color: #171717;
    margin: 0 0 8px;
}

.lashcare-page .laser-price-meta {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
}

.lashcare-page .laser-price-value {
    text-align: right;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    color: #171717;
}

.lashcare-page .laser-price-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
}

.lashcare-page .laser-price-side .laser-price-value {
    text-align: right;
}


/* ---------- BOOKING CTA ---------- */

.lashcare-page .treatment-booking-cta {
    padding: 110px 40px;
    background: #171717;
    color: #fff;
    text-align: center;
}

.lashcare-page .treatment-booking-cta h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 400;
    margin: 0 0 20px;
}

.lashcare-page .treatment-booking-cta p {
    max-width: 600px;
    margin: 0 auto 35px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.lashcare-page .primary-button {
    display: inline-block;
    padding: 15px 32px;
    background: #d4bd83;
    color: #171717;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.lashcare-page .primary-button:hover {
    background: #fff;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .lashcare-page .treatment-hero {
        min-height: 500px;
        background-position: center;
    }

    .lashcare-page .treatment-hero-content {
        padding: 80px 25px;
    }

    .lashcare-page .treatment-hero h1 {
        font-size: 46px;
    }

    .lashcare-page .treatment-hero p {
        font-size: 15px;
    }

    .lashcare-page .treatment-intro,
    .lashcare-page .treatment-benefits,
    .lashcare-page .laser-pricing {
        padding: 75px 25px;
    }

    .lashcare-page .benefits-list {
        grid-template-columns: 1fr;
    }

    .lashcare-page .benefit-item {
        padding: 28px 0 !important;
        border-left: none !important;
    }

    .lashcare-page .laser-price-row {
        grid-template-columns: 45px 1fr;
        padding: 25px 0;
        min-height: auto;
        row-gap: 12px;
    }

    .lashcare-page .laser-price-number {
        align-self: start;
    }

    .lashcare-page .laser-price-info {
        padding-right: 0;
    }

    .lashcare-page .laser-price-info h3 {
        font-size: 21px;
    }

    .lashcare-page .laser-price-side {
        grid-column: 2;
        align-items: flex-start;
    }

    .lashcare-page .laser-price-value {
        text-align: left;
        font-size: 20px;
    }

    .lashcare-page .treatment-booking-cta {
        padding: 80px 25px;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    .lashcare-page .treatment-hero h1 {
        font-size: 40px;
    }

    .lashcare-page .treatment-intro h2,
    .lashcare-page .treatment-benefits-header h2,
    .lashcare-page .laser-pricing-header h2 {
        font-size: 38px;
    }

    .lashcare-page .laser-price-row {
        grid-template-columns: 35px 1fr;
    }

    .lashcare-page .laser-price-info h3 {
        font-size: 19px;
    }
}

/* =========================================================
   LASH & BROW CARE
   ========================================================= */

.lashcare-page {
    background: #f7f3eb;
    color: #171717;
}

/* ---------- HERO ---------- */

.lashcare-page .treatment-hero {
    min-height: 560px;
    display: flex;
    align-items: center;
    position: relative;
    background:
        linear-gradient(
            90deg,
            rgba(23, 23, 23, 0.62),
            rgba(23, 23, 23, 0.20)
        ),
        url("../image/lashcare-bg.avif") center center / cover no-repeat;
}

.lashcare-page .treatment-hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
    color: #fff;
}

.lashcare-page .treatment-hero .eyebrow,
.lashcare-page .treatment-hero-label {
    color: #d4bd83;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.lashcare-page .treatment-hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.05;
    font-weight: 400;
    margin: 0 0 24px;
    max-width: 700px;
}

.lashcare-page .treatment-hero p {
    max-width: 620px;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
}


/* ---------- INTRO ---------- */

.lashcare-page .treatment-intro {
    padding: 110px 40px;
    background: #f7f3eb;
}

.lashcare-page .treatment-intro-content {
    max-width: 1200px;
    margin: 0 auto;
}

.lashcare-page .treatment-intro-label {
    color: #a8873b;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.lashcare-page .treatment-intro h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.15;
    font-weight: 400;
    margin: 0 0 24px;
    color: #171717;
}

.lashcare-page .treatment-intro p {
    max-width: 760px;
    font-size: 17px;
    line-height: 1.85;
    color: #555;
}


/* ---------- BENEFITS ---------- */

.lashcare-page .treatment-benefits {
    padding: 100px 40px;
    background: #fff;
}

.lashcare-page .treatment-benefits-header {
    max-width: 1200px;
    margin: 0 auto 55px;
}

.lashcare-page .treatment-benefits-header h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 400;
    margin: 0;
    color: #171717;
}

.lashcare-page .benefits-list {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid #ddd5c8;
}

.lashcare-page .benefit-item {
    padding: 35px 30px 35px 0;
    border-bottom: 1px solid #ddd5c8;
}

.lashcare-page .benefit-item:nth-child(even) {
    padding-left: 40px;
    border-left: 1px solid #ddd5c8;
}

.lashcare-page .benefit-item h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;
    margin: 0 0 12px;
    color: #171717;
}

.lashcare-page .benefit-item p {
    margin: 0;
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}


/* ---------- TREATMENT / PRICING ---------- */

.lashcare-page .laser-pricing {
    padding: 110px 40px;
    background: #f7f3eb;
}

.lashcare-page .laser-pricing-header {
    max-width: 1200px;
    margin: 0 auto 55px;
}

.lashcare-page .laser-pricing-header h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.15;
    font-weight: 400;
    color: #171717;
    margin: 0 0 18px;
}

.lashcare-page .laser-pricing-header p {
    max-width: 650px;
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}


/* ---------- PRICE LIST ---------- */

.lashcare-page .laser-price-list {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #cfc7b9;
}

.lashcare-page .laser-price-row {
    display: grid;
    grid-template-columns: 70px 1fr 180px;
    align-items: center;
    min-height: 115px;
    border-bottom: 1px solid #cfc7b9;
}

.lashcare-page .laser-price-number {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    color: #a8873b;
}

.lashcare-page .laser-price-info {
    padding-right: 40px;
}

.lashcare-page .laser-price-info h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;
    color: #171717;
    margin: 0 0 8px;
}

.lashcare-page .laser-price-meta {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
}

.lashcare-page .laser-price-value {
    text-align: right;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    color: #171717;
}

.lashcare-page .laser-price-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
}

.lashcare-page .laser-price-side .laser-price-value {
    text-align: right;
}


/* ---------- BOOKING CTA ---------- */

.lashcare-page .treatment-booking-cta {
    padding: 110px 40px;
    background: #171717;
    color: #fff;
    text-align: center;
}

.lashcare-page .treatment-booking-cta h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 400;
    margin: 0 0 20px;
}

.lashcare-page .treatment-booking-cta p {
    max-width: 600px;
    margin: 0 auto 35px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.lashcare-page .primary-button {
    display: inline-block;
    padding: 15px 32px;
    background: #d4bd83;
    color: #171717;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.lashcare-page .primary-button:hover {
    background: #fff;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .lashcare-page .treatment-hero {
        min-height: 500px;
        background-position: center;
    }

    .lashcare-page .treatment-hero-content {
        padding: 80px 25px;
    }

    .lashcare-page .treatment-hero h1 {
        font-size: 46px;
    }

    .lashcare-page .treatment-hero p {
        font-size: 15px;
    }

    .lashcare-page .treatment-intro,
    .lashcare-page .treatment-benefits,
    .lashcare-page .laser-pricing {
        padding: 75px 25px;
    }

    .lashcare-page .benefits-list {
        grid-template-columns: 1fr;
    }

    .lashcare-page .benefit-item {
        padding: 28px 0 !important;
        border-left: none !important;
    }

    .lashcare-page .laser-price-row {
        grid-template-columns: 45px 1fr;
        padding: 25px 0;
        min-height: auto;
        row-gap: 12px;
    }

    .lashcare-page .laser-price-number {
        align-self: start;
    }

    .lashcare-page .laser-price-info {
        padding-right: 0;
    }

    .lashcare-page .laser-price-info h3 {
        font-size: 21px;
    }

    .lashcare-page .laser-price-side {
        grid-column: 2;
        align-items: flex-start;
    }

    .lashcare-page .laser-price-value {
        text-align: left;
        font-size: 20px;
    }

    .lashcare-page .treatment-booking-cta {
        padding: 80px 25px;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    .lashcare-page .treatment-hero h1 {
        font-size: 40px;
    }

    .lashcare-page .treatment-intro h2,
    .lashcare-page .treatment-benefits-header h2,
    .lashcare-page .laser-pricing-header h2 {
        font-size: 38px;
    }

    .lashcare-page .laser-price-row {
        grid-template-columns: 35px 1fr;
    }

    .lashcare-page .laser-price-info h3 {
        font-size: 19px;
    }
}

/* =========================================================
   LASH & BROW CARE
   ========================================================= */

.lashcare-page {
    background: #f7f3eb;
    color: #171717;
}

/* ---------- HERO ---------- */

.lashcare-page .treatment-hero {
    min-height: 560px;
    display: flex;
    align-items: center;
    position: relative;
    background:
        linear-gradient(
            90deg,
            rgba(23, 23, 23, 0.62),
            rgba(23, 23, 23, 0.20)
        ),
        url("../image/lashcare-bg.avif") center center / cover no-repeat;
}

.lashcare-page .treatment-hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
    color: #fff;
}

.lashcare-page .treatment-hero .eyebrow,
.lashcare-page .treatment-hero-label {
    color: #d4bd83;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.lashcare-page .treatment-hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.05;
    font-weight: 400;
    margin: 0 0 24px;
    max-width: 700px;
}

.lashcare-page .treatment-hero p {
    max-width: 620px;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
}


/* ---------- INTRO ---------- */

.lashcare-page .treatment-intro {
    padding: 110px 40px;
    background: #f7f3eb;
}

.lashcare-page .treatment-intro-content {
    max-width: 1200px;
    margin: 0 auto;
}

.lashcare-page .treatment-intro-label {
    color: #a8873b;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.lashcare-page .treatment-intro h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.15;
    font-weight: 400;
    margin: 0 0 24px;
    color: #171717;
}

.lashcare-page .treatment-intro p {
    max-width: 760px;
    font-size: 17px;
    line-height: 1.85;
    color: #555;
}


/* ---------- BENEFITS ---------- */

.lashcare-page .treatment-benefits {
    padding: 100px 40px;
    background: #fff;
}

.lashcare-page .treatment-benefits-header {
    max-width: 1200px;
    margin: 0 auto 55px;
}

.lashcare-page .treatment-benefits-header h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 400;
    margin: 0;
    color: #171717;
}

.lashcare-page .benefits-list {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid #ddd5c8;
}

.lashcare-page .benefit-item {
    padding: 35px 30px 35px 0;
    border-bottom: 1px solid #ddd5c8;
}

.lashcare-page .benefit-item:nth-child(even) {
    padding-left: 40px;
    border-left: 1px solid #ddd5c8;
}

.lashcare-page .benefit-item h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;
    margin: 0 0 12px;
    color: #171717;
}

.lashcare-page .benefit-item p {
    margin: 0;
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}


/* ---------- TREATMENT / PRICING ---------- */

.lashcare-page .laser-pricing {
    padding: 110px 40px;
    background: #f7f3eb;
}

.lashcare-page .laser-pricing-header {
    max-width: 1200px;
    margin: 0 auto 55px;
}

.lashcare-page .laser-pricing-header h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.15;
    font-weight: 400;
    color: #171717;
    margin: 0 0 18px;
}

.lashcare-page .laser-pricing-header p {
    max-width: 650px;
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}


/* ---------- PRICE LIST ---------- */

.lashcare-page .laser-price-list {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #cfc7b9;
}

.lashcare-page .laser-price-row {
    display: grid;
    grid-template-columns: 70px 1fr 180px;
    align-items: center;
    min-height: 115px;
    border-bottom: 1px solid #cfc7b9;
}

.lashcare-page .laser-price-number {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    color: #a8873b;
}

.lashcare-page .laser-price-info {
    padding-right: 40px;
}

.lashcare-page .laser-price-info h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;
    color: #171717;
    margin: 0 0 8px;
}

.lashcare-page .laser-price-meta {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
}

.lashcare-page .laser-price-value {
    text-align: right;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    color: #171717;
}

.lashcare-page .laser-price-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
}

.lashcare-page .laser-price-side .laser-price-value {
    text-align: right;
}


/* ---------- BOOKING CTA ---------- */

.lashcare-page .treatment-booking-cta {
    padding: 110px 40px;
    background: #171717;
    color: #fff;
    text-align: center;
}

.lashcare-page .treatment-booking-cta h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 400;
    margin: 0 0 20px;
}

.lashcare-page .treatment-booking-cta p {
    max-width: 600px;
    margin: 0 auto 35px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.lashcare-page .primary-button {
    display: inline-block;
    padding: 15px 32px;
    background: #d4bd83;
    color: #171717;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.lashcare-page .primary-button:hover {
    background: #fff;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .lashcare-page .treatment-hero {
        min-height: 500px;
        background-position: center;
    }

    .lashcare-page .treatment-hero-content {
        padding: 80px 25px;
    }

    .lashcare-page .treatment-hero h1 {
        font-size: 46px;
    }

    .lashcare-page .treatment-hero p {
        font-size: 15px;
    }

    .lashcare-page .treatment-intro,
    .lashcare-page .treatment-benefits,
    .lashcare-page .laser-pricing {
        padding: 75px 25px;
    }

    .lashcare-page .benefits-list {
        grid-template-columns: 1fr;
    }

    .lashcare-page .benefit-item {
        padding: 28px 0 !important;
        border-left: none !important;
    }

    .lashcare-page .laser-price-row {
        grid-template-columns: 45px 1fr;
        padding: 25px 0;
        min-height: auto;
        row-gap: 12px;
    }

    .lashcare-page .laser-price-number {
        align-self: start;
    }

    .lashcare-page .laser-price-info {
        padding-right: 0;
    }

    .lashcare-page .laser-price-info h3 {
        font-size: 21px;
    }

    .lashcare-page .laser-price-side {
        grid-column: 2;
        align-items: flex-start;
    }

    .lashcare-page .laser-price-value {
        text-align: left;
        font-size: 20px;
    }

    .lashcare-page .treatment-booking-cta {
        padding: 80px 25px;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    .lashcare-page .treatment-hero h1 {
        font-size: 40px;
    }

    .lashcare-page .treatment-intro h2,
    .lashcare-page .treatment-benefits-header h2,
    .lashcare-page .laser-pricing-header h2 {
        font-size: 38px;
    }

    .lashcare-page .laser-price-row {
        grid-template-columns: 35px 1fr;
    }

    .lashcare-page .laser-price-info h3 {
        font-size: 19px;
    }
}

/* =========================================================
   BODY THERAPY PAGE
   ========================================================= */

.body-therapy-page {
    background: #f7f3eb;
    color: #171717;
}


/* =========================================================
   HERO
   ========================================================= */

.body-therapy-page .treatment-hero {
    min-height: 560px;

    display: flex;
    align-items: center;

    position: relative;

    background:
        linear-gradient(
            90deg,
            rgba(23, 23, 23, 0.60),
            rgba(23, 23, 23, 0.18)
        ),
        url("../image/body-therapy-bg.avif")
        center center / cover no-repeat;
}


.body-therapy-page .treatment-hero-content {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;
    padding: 100px 40px;

    color: #fff;
}


.body-therapy-page .treatment-hero .section-label {
    color: #d4bd83;
    margin-bottom: 20px;
}


.body-therapy-page .treatment-hero h1 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(52px, 6vw, 80px);
    line-height: 1.02;

    font-weight: 400;

    margin: 0 0 28px;

    max-width: 700px;
}


.body-therapy-page .treatment-hero-content > p:last-child {
    max-width: 610px;

    margin: 0;

    font-size: 17px;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.92);
}


/* =========================================================
   INTRO
   ========================================================= */

.body-therapy-page .treatment-intro {
    display: grid;

    grid-template-columns: 30% 70%;

    max-width: 1200px;

    margin: 0 auto;

    padding: 115px 40px;
}


.body-therapy-page .treatment-intro-label {
    padding-top: 8px;
}


.body-therapy-page .treatment-intro-label .section-label {
    color: #a8873b;
}


.body-therapy-page .treatment-intro-content {
    max-width: 760px;
}


.body-therapy-page .treatment-intro-content h2 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(40px, 5vw, 62px);
    line-height: 1.12;

    font-weight: 400;

    color: #171717;

    margin: 0 0 30px;
}


.body-therapy-page .treatment-intro-content p {
    max-width: 700px;

    font-size: 16px;
    line-height: 1.85;

    color: #5d5d5d;

    margin: 0 0 20px;
}


.body-therapy-page .treatment-intro-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   BENEFITS
   ========================================================= */

.body-therapy-page .treatment-benefits {
    background: #fff;

    padding: 110px 40px;
}


.body-therapy-page .treatment-benefits-header {
    max-width: 1200px;

    margin: 0 auto 60px;
}


.body-therapy-page .treatment-benefits-header .section-label {
    color: #a8873b;

    margin-bottom: 18px;
}


.body-therapy-page .treatment-benefits-header h2 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(40px, 5vw, 60px);
    line-height: 1.12;

    font-weight: 400;

    color: #171717;

    margin: 0;
}


.body-therapy-page .benefits-list {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    border-top: 1px solid #ddd5c8;
}


.body-therapy-page .benefit-item {
    display: grid;

    grid-template-columns: 60px 1fr;

    gap: 20px;

    padding: 38px 35px 38px 0;

    border-bottom: 1px solid #ddd5c8;
}


.body-therapy-page .benefit-item:nth-child(even) {
    padding-left: 40px;

    border-left: 1px solid #ddd5c8;
}


.body-therapy-page .benefit-number {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 15px;

    color: #a8873b;

    padding-top: 5px;
}


.body-therapy-page .benefit-item h3 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 26px;

    font-weight: 400;

    color: #171717;

    margin: 0 0 12px;
}


.body-therapy-page .benefit-item p {
    font-size: 15px;

    line-height: 1.75;

    color: #666;

    margin: 0;
}


/* =========================================================
   TREATMENT OPTIONS
   ========================================================= */

.body-therapy-page .laser-pricing {
    background: #f7f3eb;

    padding: 115px 40px;
}


.body-therapy-page .laser-pricing-header {
    max-width: 1200px;

    margin: 0 auto 60px;
}


.body-therapy-page .laser-pricing-header .section-label {
    color: #a8873b;

    margin-bottom: 18px;
}


.body-therapy-page .laser-pricing-header h2 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(40px, 5vw, 62px);
    line-height: 1.12;

    font-weight: 400;

    color: #171717;

    margin: 0 0 22px;
}


.body-therapy-page .laser-pricing-header > p:last-child {
    max-width: 650px;

    font-size: 16px;

    line-height: 1.75;

    color: #666;

    margin: 0;
}


/* =========================================================
   PRICE LIST
   ========================================================= */

.body-therapy-page .laser-price-list {
    max-width: 1200px;

    margin: 0 auto;

    border-top: 1px solid #cfc7b9;
}


.body-therapy-page .laser-price-row {
    display: grid;

    grid-template-columns: 70px 1fr 180px;

    align-items: center;

    min-height: 145px;

    border-bottom: 1px solid #cfc7b9;
}


.body-therapy-page .laser-price-number {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 17px;

    color: #a8873b;
}


.body-therapy-page .laser-price-info {
    padding-right: 50px;
}


.body-therapy-page .laser-price-info h3 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 26px;

    line-height: 1.2;

    font-weight: 400;

    color: #171717;

    margin: 0 0 12px;
}


.body-therapy-page .laser-price-info p {
    max-width: 700px;

    font-size: 14px;

    line-height: 1.7;

    color: #666;

    margin: 0;
}


.body-therapy-page .laser-price-side {
    display: flex;

    flex-direction: column;

    align-items: flex-end;

    justify-content: center;

    gap: 7px;
}


.body-therapy-page .laser-price-meta {
    font-size: 10px;

    letter-spacing: 2px;

    font-weight: 600;

    color: #a8873b;

    text-transform: uppercase;
}


.body-therapy-page .laser-price-value {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 23px;

    color: #171717;

    white-space: nowrap;

    text-align: right;
}


/* =========================================================
   BOOKING CTA
   ========================================================= */

.body-therapy-page .treatment-booking-cta {
    background: #171717;

    color: #fff;

    text-align: center;

    padding: 115px 40px;
}


.body-therapy-page .treatment-booking-cta .section-label {
    color: #d4bd83;

    margin-bottom: 20px;
}


.body-therapy-page .treatment-booking-cta h2 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.1;

    font-weight: 400;

    margin: 0 0 25px;
}


.body-therapy-page .treatment-booking-cta > p:not(.section-label) {
    max-width: 600px;

    margin: 0 auto 35px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 15px;

    line-height: 1.75;
}


.body-therapy-page .primary-button {
    display: inline-block;

    padding: 16px 34px;

    background: #d4bd83;

    color: #171717;

    text-decoration: none;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition: all 0.3s ease;
}


.body-therapy-page .primary-button:hover {
    background: #fff;

    color: #171717;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .body-therapy-page .treatment-hero {
        min-height: 520px;

        background-position: center;
    }


    .body-therapy-page .treatment-hero-content {
        padding: 80px 25px;
    }


    .body-therapy-page .treatment-hero h1 {
        font-size: 48px;
    }


    .body-therapy-page .treatment-hero-content > p:last-child {
        font-size: 15px;
    }


    .body-therapy-page .treatment-intro {
        display: block;

        padding: 80px 25px;
    }


    .body-therapy-page .treatment-intro-label {
        margin-bottom: 30px;
    }


    .body-therapy-page .treatment-intro-content h2 {
        font-size: 42px;
    }


    .body-therapy-page .treatment-benefits {
        padding: 80px 25px;
    }


    .body-therapy-page .treatment-benefits-header {
        margin-bottom: 45px;
    }


    .body-therapy-page .benefits-list {
        grid-template-columns: 1fr;
    }


    .body-therapy-page .benefit-item {
        grid-template-columns: 45px 1fr;

        padding: 30px 0 !important;

        border-left: none !important;
    }


    .body-therapy-page .benefit-item h3 {
        font-size: 23px;
    }


    .body-therapy-page .laser-pricing {
        padding: 80px 25px;
    }


    .body-therapy-page .laser-pricing-header {
        margin-bottom: 45px;
    }


    .body-therapy-page .laser-pricing-header h2 {
        font-size: 42px;
    }


    .body-therapy-page .laser-price-row {
        grid-template-columns: 42px 1fr;

        min-height: auto;

        padding: 30px 0;

        row-gap: 15px;
    }


    .body-therapy-page .laser-price-number {
        align-self: start;
    }


    .body-therapy-page .laser-price-info {
        padding-right: 0;
    }


    .body-therapy-page .laser-price-info h3 {
        font-size: 22px;
    }


    .body-therapy-page .laser-price-info p {
        font-size: 14px;
    }


    .body-therapy-page .laser-price-side {
        grid-column: 2;

        align-items: flex-start;
    }


    .body-therapy-page .laser-price-value {
        font-size: 21px;

        text-align: left;
    }


    .body-therapy-page .treatment-booking-cta {
        padding: 85px 25px;
    }


    .body-therapy-page .treatment-booking-cta h2 {
        font-size: 44px;
    }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    .body-therapy-page .treatment-hero {
        min-height: 480px;
    }


    .body-therapy-page .treatment-hero h1 {
        font-size: 42px;
    }


    .body-therapy-page .treatment-intro-content h2,
    .body-therapy-page .treatment-benefits-header h2,
    .body-therapy-page .laser-pricing-header h2 {
        font-size: 37px;
    }


    .body-therapy-page .laser-price-row {
        grid-template-columns: 32px 1fr;
    }


    .body-therapy-page .laser-price-info h3 {
        font-size: 20px;
    }


    .body-therapy-page .benefit-item {
        grid-template-columns: 38px 1fr;
    }


    .body-therapy-page .treatment-booking-cta h2 {
        font-size: 39px;
    }

}

/* =========================================================
   MANICURE & PEDICURE / NAIL CARE PAGE
   ========================================================= */

.nail-care-page {
    background: #f7f3eb;
    color: #171717;
}


/* =========================================================
   HERO
   ========================================================= */

.nail-care-page .treatment-hero {
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 30px;
    background:
        linear-gradient(rgba(23, 23, 23, 0.28), rgba(23, 23, 23, 0.28)),
        url("../image/header bg.avif") center center / cover no-repeat;
}

.nail-care-page .treatment-hero-content {
    max-width: 850px;
    color: #fff;
}

.nail-care-page .treatment-hero .section-label {
    color: #d4bd83;
    margin-bottom: 20px;
}

.nail-care-page .treatment-hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 7vw, 82px);
    font-weight: 400;
    line-height: 1.05;
    margin: 0 0 25px;
}

.nail-care-page .treatment-hero p:not(.section-label) {
    max-width: 650px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #f5f5f5;
}


/* =========================================================
   INTRO
   ========================================================= */

.nail-care-page .treatment-intro {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px;
}

.nail-care-page .treatment-intro-label {
    padding-top: 8px;
}

.nail-care-page .treatment-intro-content {
    max-width: 760px;
}

.nail-care-page .treatment-intro-content h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 400;
    line-height: 1.15;
    margin: 0 0 30px;
}

.nail-care-page .treatment-intro-content p {
    font-family: Arial, sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin: 0 0 20px;
}


/* =========================================================
   BENEFITS
   ========================================================= */

.nail-care-page .treatment-benefits {
    max-width: 1200px;
    margin: 0 auto;
    padding: 110px 40px;
    border-top: 1px solid rgba(23, 23, 23, 0.12);
}

.nail-care-page .treatment-benefits-header {
    max-width: 700px;
    margin-bottom: 70px;
}

.nail-care-page .treatment-benefits-header h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 400;
    line-height: 1.15;
    margin: 15px 0 0;
}

.nail-care-page .benefits-list {
    border-top: 1px solid rgba(23, 23, 23, 0.15);
}

.nail-care-page .benefit-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 35px;
    padding: 35px 0;
    border-bottom: 1px solid rgba(23, 23, 23, 0.15);
}

.nail-care-page .benefit-number {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    color: #a8873b;
}

.nail-care-page .benefit-item h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 400;
    margin: 0 0 10px;
}

.nail-care-page .benefit-item p {
    max-width: 700px;
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}


/* =========================================================
   PRICING / TREATMENT OPTIONS
   ========================================================= */

.nail-care-page .laser-pricing {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px;
}

.nail-care-page .laser-pricing-header {
    max-width: 760px;
    margin-bottom: 70px;
}

.nail-care-page .laser-pricing-header h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 400;
    line-height: 1.1;
    margin: 15px 0 20px;
}

.nail-care-page .laser-pricing-header > p:last-child {
    font-family: Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}


/* =========================================================
   PRICE LIST
   ========================================================= */

.nail-care-page .laser-price-list {
    border-top: 1px solid rgba(23, 23, 23, 0.18);
}

.nail-care-page .laser-price-row {
    display: grid;
    grid-template-columns: 70px 1fr 180px;
    align-items: center;
    gap: 30px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(23, 23, 23, 0.15);
}

.nail-care-page .laser-price-number {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    color: #a8873b;
}

.nail-care-page .laser-price-info h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 8px;
}

.nail-care-page .laser-price-info p {
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #777;
    margin: 0;
}

.nail-care-page .laser-price-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 8px;
}

.nail-care-page .laser-price-meta {
    font-family: Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 0.05em;
    color: #777;
    text-transform: uppercase;
}

.nail-care-page .laser-price-value {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    color: #171717;
}


/* =========================================================
   BOOKING CTA
   ========================================================= */

.nail-care-page .treatment-booking-cta {
    margin: 40px auto 0;
    padding: 120px 40px;
    text-align: center;
    background: #171717;
    color: #fff;
}

.nail-care-page .treatment-booking-cta .section-label {
    color: #d4bd83;
    margin-bottom: 20px;
}

.nail-care-page .treatment-booking-cta h2 {
    max-width: 800px;
    margin: 0 auto 25px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 400;
    line-height: 1.1;
}

.nail-care-page .treatment-booking-cta > p:not(.section-label) {
    max-width: 620px;
    margin: 0 auto 35px;
    font-family: Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #d5d5d5;
}

.nail-care-page .treatment-booking-cta .primary-button {
    display: inline-block;
    padding: 15px 30px;
    background: #d4bd83;
    color: #171717;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nail-care-page .treatment-booking-cta .primary-button:hover {
    background: #a8873b;
    color: #fff;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .nail-care-page .treatment-hero {
        min-height: 450px;
        padding: 80px 25px;
    }

    .nail-care-page .treatment-hero h1 {
        font-size: 48px;
    }

    .nail-care-page .treatment-hero p:not(.section-label) {
        font-size: 16px;
    }

    .nail-care-page .treatment-intro {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 80px 25px;
    }

    .nail-care-page .treatment-intro-content h2 {
        font-size: 40px;
    }

    .nail-care-page .treatment-benefits {
        padding: 80px 25px;
    }

    .nail-care-page .treatment-benefits-header {
        margin-bottom: 50px;
    }

    .nail-care-page .treatment-benefits-header h2 {
        font-size: 40px;
    }

    .nail-care-page .benefit-item {
        grid-template-columns: 45px 1fr;
        gap: 15px;
        padding: 28px 0;
    }

    .nail-care-page .benefit-item h3 {
        font-size: 24px;
    }

    .nail-care-page .laser-pricing {
        padding: 80px 25px;
    }

    .nail-care-page .laser-pricing-header {
        margin-bottom: 50px;
    }

    .nail-care-page .laser-pricing-header h2 {
        font-size: 42px;
    }

    .nail-care-page .laser-price-row {
        grid-template-columns: 45px 1fr;
        gap: 15px;
        padding: 28px 0;
    }

    .nail-care-page .laser-price-side {
        grid-column: 2;
        align-items: flex-start;
        text-align: left;
        margin-top: 5px;
    }

    .nail-care-page .laser-price-info h3 {
        font-size: 22px;
    }

    .nail-care-page .laser-price-value {
        font-size: 23px;
    }

    .nail-care-page .treatment-booking-cta {
        padding: 90px 25px;
    }

    .nail-care-page .treatment-booking-cta h2 {
        font-size: 42px;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    .nail-care-page .treatment-hero h1 {
        font-size: 40px;
    }

    .nail-care-page .treatment-intro-content h2,
    .nail-care-page .treatment-benefits-header h2,
    .nail-care-page .laser-pricing-header h2,
    .nail-care-page .treatment-booking-cta h2 {
        font-size: 34px;
    }

    .nail-care-page .laser-price-row {
        grid-template-columns: 35px 1fr;
        gap: 12px;
    }

    .nail-care-page .laser-price-number {
        font-size: 15px;
    }
}

/* =========================================================
   WAXING PAGE
   ========================================================= */

.waxing-page {
    background: #f7f3eb;
    color: #171717;
}


/* =========================================================
   HERO
   ========================================================= */

.waxing-page .treatment-hero {
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 30px;

    background:
        linear-gradient(rgba(23, 23, 23, 0.28), rgba(23, 23, 23, 0.28)),
        url("../image/header bg.avif") center center / cover no-repeat;
}

.waxing-page .treatment-hero-content {
    max-width: 850px;
    color: #fff;
}

.waxing-page .treatment-hero .section-label {
    color: #d4bd83;
    margin-bottom: 20px;
}

.waxing-page .treatment-hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 7vw, 82px);
    font-weight: 400;
    line-height: 1.05;
    margin: 0 0 25px;
}

.waxing-page .treatment-hero p:not(.section-label) {
    max-width: 650px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #f5f5f5;
}


/* =========================================================
   INTRO
   ========================================================= */

.waxing-page .treatment-intro {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px;
}

.waxing-page .treatment-intro-label {
    padding-top: 8px;
}

.waxing-page .treatment-intro-content {
    max-width: 760px;
}

.waxing-page .treatment-intro-content h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 400;
    line-height: 1.15;
    margin: 0 0 30px;
}

.waxing-page .treatment-intro-content p {
    font-family: Arial, sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin: 0 0 20px;
}


/* =========================================================
   BENEFITS
   ========================================================= */

.waxing-page .treatment-benefits {
    max-width: 1200px;
    margin: 0 auto;
    padding: 110px 40px;
    border-top: 1px solid rgba(23, 23, 23, 0.12);
}

.waxing-page .treatment-benefits-header {
    max-width: 700px;
    margin-bottom: 70px;
}

.waxing-page .treatment-benefits-header h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 400;
    line-height: 1.15;
    margin: 15px 0 0;
}

.waxing-page .benefits-list {
    border-top: 1px solid rgba(23, 23, 23, 0.15);
}

.waxing-page .benefit-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 35px;
    padding: 35px 0;
    border-bottom: 1px solid rgba(23, 23, 23, 0.15);
}

.waxing-page .benefit-number {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    color: #a8873b;
}

.waxing-page .benefit-item h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 400;
    margin: 0 0 10px;
}

.waxing-page .benefit-item p {
    max-width: 700px;
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}


/* =========================================================
   PRICING
   ========================================================= */

.waxing-page .laser-pricing {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px;
}

.waxing-page .laser-pricing-header {
    max-width: 760px;
    margin-bottom: 70px;
}

.waxing-page .laser-pricing-header h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 400;
    line-height: 1.1;
    margin: 15px 0 20px;
}

.waxing-page .laser-pricing-header > p:last-child {
    font-family: Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}


/* =========================================================
   PRICE LIST
   ========================================================= */

.waxing-page .laser-price-list {
    border-top: 1px solid rgba(23, 23, 23, 0.18);
}

.waxing-page .laser-price-row {
    display: grid;
    grid-template-columns: 70px 1fr 180px;
    align-items: center;
    gap: 30px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(23, 23, 23, 0.15);
}

.waxing-page .laser-price-number {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    color: #a8873b;
}

.waxing-page .laser-price-info h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
}

.waxing-page .laser-price-info p {
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #777;
    margin: 0;
}

.waxing-page .laser-price-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 8px;
}

.waxing-page .laser-price-meta {
    font-family: Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 0.05em;
    color: #777;
    text-transform: uppercase;
}

.waxing-page .laser-price-value {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    color: #171717;
}


/* =========================================================
   BOOKING CTA
   ========================================================= */

.waxing-page .treatment-booking-cta {
    margin: 40px auto 0;
    padding: 120px 40px;
    text-align: center;
    background: #171717;
    color: #fff;
}

.waxing-page .treatment-booking-cta .section-label {
    color: #d4bd83;
    margin-bottom: 20px;
}

.waxing-page .treatment-booking-cta h2 {
    max-width: 800px;
    margin: 0 auto 25px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 400;
    line-height: 1.1;
}

.waxing-page .treatment-booking-cta > p:not(.section-label) {
    max-width: 620px;
    margin: 0 auto 35px;
    font-family: Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #d5d5d5;
}

.waxing-page .treatment-booking-cta .primary-button {
    display: inline-block;
    padding: 15px 30px;
    background: #d4bd83;
    color: #171717;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.waxing-page .treatment-booking-cta .primary-button:hover {
    background: #a8873b;
    color: #fff;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .waxing-page .treatment-hero {
        min-height: 450px;
        padding: 80px 25px;
    }

    .waxing-page .treatment-hero h1 {
        font-size: 48px;
    }

    .waxing-page .treatment-hero p:not(.section-label) {
        font-size: 16px;
    }

    .waxing-page .treatment-intro {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 80px 25px;
    }

    .waxing-page .treatment-intro-content h2 {
        font-size: 40px;
    }

    .waxing-page .treatment-benefits {
        padding: 80px 25px;
    }

    .waxing-page .treatment-benefits-header {
        margin-bottom: 50px;
    }

    .waxing-page .treatment-benefits-header h2 {
        font-size: 40px;
    }

    .waxing-page .benefit-item {
        grid-template-columns: 45px 1fr;
        gap: 15px;
        padding: 28px 0;
    }

    .waxing-page .benefit-item h3 {
        font-size: 24px;
    }

    .waxing-page .laser-pricing {
        padding: 80px 25px;
    }

    .waxing-page .laser-pricing-header {
        margin-bottom: 50px;
    }

    .waxing-page .laser-pricing-header h2 {
        font-size: 42px;
    }

    .waxing-page .laser-price-row {
        grid-template-columns: 45px 1fr;
        gap: 15px;
        padding: 28px 0;
    }

    .waxing-page .laser-price-side {
        grid-column: 2;
        align-items: flex-start;
        text-align: left;
        margin-top: 5px;
    }

    .waxing-page .laser-price-info h3 {
        font-size: 22px;
    }

    .waxing-page .laser-price-value {
        font-size: 23px;
    }

    .waxing-page .treatment-booking-cta {
        padding: 90px 25px;
    }

    .waxing-page .treatment-booking-cta h2 {
        font-size: 42px;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    .waxing-page .treatment-hero h1 {
        font-size: 40px;
    }

    .waxing-page .treatment-intro-content h2,
    .waxing-page .treatment-benefits-header h2,
    .waxing-page .laser-pricing-header h2,
    .waxing-page .treatment-booking-cta h2 {
        font-size: 34px;
    }

    .waxing-page .laser-price-row {
        grid-template-columns: 35px 1fr;
        gap: 12px;
    }

    .waxing-page .laser-price-number {
        font-size: 15px;
    }
}

/* =========================================
   RESPONSIVE MOBILE NAVIGATION
========================================= */

.mobile-menu-button {
    display: none;

    width: 42px;
    height: 42px;

    padding: 9px;

    background: transparent;
    border: 1px solid #c9b98f;

    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.mobile-menu-button span {
    display: block;

    width: 20px;
    height: 1px;

    background: #171717;

    transition: all 0.3s ease;
}

.mobile-book-button {
    display: none;
}


/* =========================================
   MOBILE HEADER
========================================= */

@media (max-width: 700px) {

    .site-header {
        position: relative;
        z-index: 1000;
    }

    .header-container {
        min-height: 72px;

        padding: 10px 20px;

        display: flex;
        align-items: center;
        justify-content: space-between;
    }


    /* LOGO */

    .logo img {
        width: 125px;
        height: auto;
    }


    /* HIDE DESKTOP BOOK BUTTON */

    .book-button {
        display: none;
    }


    /* HAMBURGER */

    .mobile-menu-button {
        display: flex;
        flex-shrink: 0;
    }


    /* MOBILE NAV */

    .main-nav {
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        background: #f7f3eb;

        border-top: 1px solid #d8cda9;
        border-bottom: 1px solid #d8cda9;

        padding: 10px 20px 20px;

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);

        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s ease;
    }


    /* OPEN MENU */

    .main-nav.mobile-nav-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }


    .main-nav a {
        display: block;

        width: 100%;
        box-sizing: border-box;

        padding: 15px 5px;

        border-bottom: 1px solid #e2ddd3;

        font-family: Arial, Helvetica, sans-serif;
        font-size: 11px;
        letter-spacing: 1.5px;
        text-transform: uppercase;

        color: #171717;

        text-decoration: none;

        text-align: left;
    }


    .main-nav a:last-child {
        border-bottom: none;
    }


    .main-nav a:hover {
        color: #a8873b;
    }


    /* MOBILE BOOK BUTTON */

    .main-nav .mobile-book-button {
        display: block;

        margin-top: 12px;

        padding: 15px 20px;

        background: #171717;
        color: #ffffff;

        border: 1px solid #171717;

        text-align: center;
    }


    .main-nav .mobile-book-button:hover {
        background: #a8873b;
        color: #ffffff;
        border-color: #a8873b;
    }

}