/* ==========================================================
   Perfect U - Premium Stylesheet
   Refined forest-green palette with champagne-gold accents.
   ========================================================== */

:root {
    /* --- Greens (multiple shades for depth) --- */
    --pu-forest-darkest: #14301F;
    --pu-forest-dark: #1F3D2B;
    --pu-forest: #2D5739;
    --pu-forest-mid: #3F6B4A;
    --pu-olive: #5d6b2a;
    /* legacy alias */
    --pu-olive-dark: #1F3D2B;
    /* legacy alias remapped */
    --pu-olive-light: #6E8E6B;
    /* legacy alias remapped */
    --pu-sage: #8BA888;
    --pu-sage-light: #C3D2BD;
    --pu-mint-whisper: #E8EDE3;
    --pu-light-green: #EDF2E7;

    /* --- Champagne / Gold --- */
    --pu-gold: #C9A961;
    --pu-gold-light: #E5D5A8;
    --pu-gold-dark: #A8893E;
    --pu-gold-soft: #DCC58B;

    /* --- Neutrals --- */
    --pu-cream: #FAF6EE;
    --pu-cream-dark: #F2EBDC;
    --pu-pearl: #FDFBF6;
    --pu-white: #ffffff;
    --pu-text: #2A2D27;
    --pu-text-muted: #6B6960;
    --pu-line: #E8E4DA;

    /* --- Premium shadows (layered) --- */
    --pu-shadow-sm: 0 1px 2px rgba(20, 48, 31, .05), 0 1px 3px rgba(20, 48, 31, .04);
    --pu-shadow-md: 0 4px 6px -1px rgba(20, 48, 31, .05), 0 10px 25px -5px rgba(20, 48, 31, .07);
    --pu-shadow-lg: 0 10px 15px -3px rgba(20, 48, 31, .06), 0 20px 40px -10px rgba(20, 48, 31, .1);
    --pu-shadow-xl: 0 25px 50px -12px rgba(20, 48, 31, .18);
    --pu-glow-gold: 0 0 30px rgba(201, 169, 97, .25);

    /* --- Easing --- */
    --pu-ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', 'Poppins', 'Segoe UI', Arial, sans-serif;
    color: var(--pu-text);
    background: var(--pu-cream);
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    letter-spacing: .005em;
}

/* Subtle premium texture on body */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background-image:
        radial-gradient(at 15% 10%, rgba(201, 169, 97, .06) 0, transparent 45%),
        radial-gradient(at 90% 90%, rgba(45, 87, 57, .05) 0, transparent 45%);
}

a {
    color: var(--pu-forest);
    text-decoration: none;
    transition: color .3s var(--pu-ease);
}

a:hover {
    color: var(--pu-gold-dark);
}

p {
    margin: 0 0 1.1rem;
    color: var(--pu-text);
    font-size: 1.02rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', 'Playfair Display', 'Georgia', serif;
    color: var(--pu-forest-darkest);
    font-weight: 600;
    letter-spacing: -.01em;
    line-height: 1.25;
}

.serif-script {
    /* font-family: 'Italianno', 'Great Vibes', cursive; */
    color: var(--pu-gold-dark);
    font-weight: 400;
}

::selection {
    background: var(--pu-gold-light);
    color: var(--pu-forest-darkest);
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.pu-header {
    background: rgba(255, 255, 255, 1);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--pu-line);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.pu-navbar {
    padding: .9rem 1.5rem;
}

.pu-header {
    padding-top: 1%;
}

/* ── Desktop: compact header, logo intentionally overflows the bottom ── */
@media (min-width: 992px) {
    .pu-header .navbar {
        max-height: 100px;
        overflow: visible;
    }
}

/* ── Mobile navbar: no height cap so collapse can expand freely ── */
@media (max-width: 991px) {
    .pu-header {
        overflow: visible;
    }

    .pu-header .navbar {
        max-height: none !important;
        overflow: visible !important;
    }

    /* Compact logo on all screens below lg */
    .pu-logo {
        width: 75px !important;
        height: 75px !important;
        border: 10px solid white !important;
    }

    /* Expanded mobile menu panel */
    #puNav.show,
    #puNav.collapsing {
        background: #fff;
        border-top: 1px solid var(--pu-line);
        border-radius: 0 0 14px 14px;
        box-shadow: 0 12px 32px rgba(20, 48, 31, .1);
        padding: .25rem 0 1rem;
        overflow: hidden;
    }

    #puNav .pu-nav .nav-link {
        padding: .75rem 1.25rem !important;
        border-bottom: 1px solid var(--pu-line);
        font-size: 1rem;
    }

    #puNav .pu-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    #puNav .pu-nav li.nav-item.ms-lg-3 {
        padding: .75rem 1.25rem 0;
    }

    .pu-dropdown-menu {
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        padding-left: 1rem;
        background: var(--pu-mint-whisper) !important;
        margin-top: 0 !important;
    }
}


/* Refined circular logo with gold ring */
.pu-logo {
    width: 13rem;
    height: 13rem;
    border-radius: 50%;
    /* background: linear-gradient(140deg, var(--pu-forest) 0%, var(--pu-forest-dark) 100%); */
    background-color: #57642D;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pu-gold);
    border: 20px solid white;
    text-align: center;
    line-height: 1;
    box-shadow: var(--pu-shadow-md), inset 0 0 0 1.5px var(--pu-gold-soft);
    overflow: hidden;
    position: relative;
    transition: transform .4s var(--pu-ease);
}

.pu-logo:hover {
    transform: rotate(-4deg) scale(1.04);
}

.pu-logo span.p-letter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    display: block;
    letter-spacing: -.02em;
}

.pu-logo small {
    display: block;
    font-family: 'Italianno', cursive;
    font-size: 1rem;
    margin-top: -4px;
    color: var(--pu-gold-soft);
}

/* Nav links with animated gold underline */
.pu-nav .nav-link {
    color: var(--pu-text) !important;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: .95rem;
    padding: .55rem 1.05rem !important;
    position: relative;
    transition: color .3s var(--pu-ease);
}

.pu-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 1.05rem;
    right: 1.05rem;
    bottom: .2rem;
    height: 1.5px;
    background: var(--pu-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .35s var(--pu-ease);
}

.pu-nav .nav-link:hover,
.pu-nav .nav-link.active {
    color: var(--pu-forest) !important;
}

.pu-nav .nav-link:hover::after,
.pu-nav .nav-link.active::after {
    transform: scaleX(1);
}

.pu-dropdown-menu {
    border: 1px solid var(--pu-line);
    border-radius: 14px;
    box-shadow: var(--pu-shadow-lg);
    padding: .6rem 0;
    margin-top: .5rem !important;
    background: var(--pu-pearl);
}

.pu-dropdown-menu .dropdown-item {
    padding: .65rem 1.4rem;
    color: var(--pu-text);
    font-size: .93rem;
    font-weight: 500;
    transition: all .25s var(--pu-ease);
    position: relative;
}

.pu-dropdown-menu .dropdown-item::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--pu-gold);
    position: absolute;
    left: .65rem;
    top: 50%;
    transform: translateY(-50%) scale(0);
    transition: transform .25s var(--pu-ease);
}

.pu-dropdown-menu .dropdown-item:hover {
    background: var(--pu-mint-whisper);
    color: var(--pu-forest);
    padding-left: 1.7rem;
}

.pu-dropdown-menu .dropdown-item:hover::before {
    transform: translateY(-50%) scale(1);
}

.pu-dropdown-menu .dropdown-divider {
    border-color: var(--pu-line);
    margin: .35rem 0;
}

/* --- Hover dropdowns (desktop only, keep click on mobile) --- */
@media (min-width: 992px) {
    .pu-nav .nav-item.dropdown {
        position: relative;
    }

    .pu-nav .nav-item.dropdown>.pu-dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(8px);
        transition: opacity .25s var(--pu-ease),
            transform .25s var(--pu-ease),
            visibility .25s var(--pu-ease);
        margin-top: 0 !important;
    }

    .pu-nav .nav-item.dropdown:hover>.pu-dropdown-menu,
    .pu-nav .nav-item.dropdown:focus-within>.pu-dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    /* Bridge the gap so cursor can move into the menu without it closing */
    .pu-nav .nav-item.dropdown>.pu-dropdown-menu::before {
        content: "";
        position: absolute;
        top: -10px;
        left: 0;
        right: 0;
        height: 10px;
    }

    /* Rotate caret on hover */
    .pu-nav .nav-item.dropdown:hover>.nav-link.dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .pu-nav .nav-link.dropdown-toggle::after {
        transition: transform .3s var(--pu-ease);
    }
}

/* ============================================================
   PREMIUM BUTTONS
   ============================================================ */
.btn-pu-book {
    background: linear-gradient(135deg, var(--pu-gold) 0%, var(--pu-gold-soft) 100%);
    color: var(--pu-forest-darkest);
    border: none;
    border-radius: 50px;
    padding: .7rem 1.5rem .7rem 1.6rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: .93rem;
    letter-spacing: .02em;
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    transition: all .35s var(--pu-ease);
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(201, 169, 97, .35);
    position: relative;
    overflow: hidden;
}

.btn-pu-book::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--pu-gold-dark), var(--pu-gold));
    opacity: 0;
    transition: opacity .35s var(--pu-ease);
    z-index: 0;
}

.btn-pu-book>* {
    position: relative;
    z-index: 1;
}

.btn-pu-book:hover {
    color: var(--pu-pearl);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(201, 169, 97, .45);
}

.btn-pu-book:hover::before {
    opacity: 1;
}

.btn-pu-book .arrow-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--pu-forest-darkest);
    color: var(--pu-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    transition: transform .35s var(--pu-ease);
}

.btn-pu-book:hover .arrow-circle {
    transform: rotate(45deg);
    background: var(--pu-gold);
    color: var(--pu-forest-darkest);
}

.btn-pu-outline {
    background: transparent;
    color: var(--pu-forest);
    border: 1.5px solid var(--pu-forest);
    border-radius: 50px;
    padding: .7rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: .93rem;
    letter-spacing: .02em;
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    transition: all .35s var(--pu-ease);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-pu-outline::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--pu-forest);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--pu-ease);
    z-index: 0;
}

.btn-pu-outline>* {
    position: relative;
    z-index: 1;
}

.btn-pu-outline:hover {
    color: var(--pu-gold);
}

.btn-pu-outline:hover::before {
    transform: scaleX(1);
}

.btn-pu-outline .arrow-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--pu-forest);
    color: var(--pu-pearl);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    transition: all .35s var(--pu-ease);
}

.btn-pu-outline:hover .arrow-circle {
    background: var(--pu-gold);
    color: var(--pu-forest-darkest);
    transform: rotate(45deg);
}

/* ============================================================
   PAGE BANNER / HERO
   ============================================================ */
.pu-page-banner {
    background:
        radial-gradient(ellipse at 20% 30%, rgba(201, 169, 97, .18) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 70%, rgba(139, 168, 136, .15) 0%, transparent 60%),
        linear-gradient(135deg, var(--pu-forest-darkest) 0%, var(--pu-forest) 100%);
    color: var(--pu-pearl);
    padding: 5.5rem 0 4.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Banner variant with photographic background */
.pu-page-banner.pu-banner-bg {
    background-image:
        /* linear-gradient(135deg, rgba(20, 48, 31, .82) 0%, rgba(31, 61, 43, .78) 50%, rgba(20, 48, 31, .88) 100%), */
        var(--banner-bg-image);
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat;
}


.bacground-img {
    background-image: url('../images/skin/cherry-angiomas.webp');
}

.pos-rel {
    position: relative !important;
}

.pos-ab {
    position: absolute;
    top: 50%;
    left: 10%;
    background-color: rgba(255, 255, 255, 0.4);
    padding: 1%;
    transform: translate(0%, -50%);
}

.lin1 .lin-1 {
    height: 4px;
    width: 100px;
    display: inline-block;
    background-color: #e4b74a;
    /* border-radius: 10px; */
}

.met-our-sp {
    text-decoration: none;
    background-color: #bda06d;
    color: white;
    font-size: 15px;
    font-weight: 500;
    padding: 1% 3%;
    /* margin-top: 3% !important; */
}

/* .lin1 .lin-2 {
    height: 7px;
    width: 50px;
    display: inline-block;
    background-color: #f75d88;
    border-radius: 10px;
} */

.pu-page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 169, 97, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 97, .04) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: .6;
}

.pu-page-banner>* {
    position: relative;
    z-index: 1;
}

.pu-page-banner h1 {
    color: var(--pu-pearl);
    font-size: 3.4rem;
    margin: 0 0 .8rem;
    font-weight: 500;
    letter-spacing: -.02em;
    line-height: 1.15;
    text-align: left !important;
}

.pu-page-banner h1 .serif-script {
    color: var(--pu-gold);
    font-size: 4rem;
    line-height: 1;
}

.pu-page-banner .breadcrumb-text {
    color: var(--pu-gold-soft);
    font-family: 'Inter', sans-serif;
    font-size: .9rem;
    letter-spacing: .14em;
    text-align: left;
    text-transform: uppercase;
    margin: 0;
}

.pu-page-banner .breadcrumb-text a {
    color: var(--pu-pearl);
    transition: color .3s var(--pu-ease);
}

.pu-page-banner .breadcrumb-text a:hover {
    color: var(--pu-gold);
}

/* Decorative gold leaf under banner h1 */
.pu-page-banner h1+.breadcrumb-text::before {
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    background: var(--pu-gold);
    /* margin: 0 1.2rem; */
    opacity: .8;
}

/* ============================================================
   SECTION / CARD WRAPPERS
   ============================================================ */
.pu-section {
    padding: 2.2rem 0;
}

.pu-section.pt-0 {
    padding-top: 0 !important;
}

.pu-section.pb-0 {
    padding-bottom: 0 !important;
}

.pu-section.pu-section-lg {
    padding: 4rem 0;
}

/* Alternating soft section bg for rhythm */
.pu-section-alt {
    background:
        radial-gradient(ellipse at top right, rgba(195, 210, 189, .25) 0%, transparent 60%),
        radial-gradient(ellipse at bottom left, rgba(201, 169, 97, .06) 0%, transparent 55%);
}

.pu-card-wrap {
    background: var(--pu-pearl);
    border-radius: 22px;
    padding: 2.5rem 2.6rem;
    margin: .8rem auto;
    box-shadow: var(--pu-shadow-md);
    border: 1px solid rgba(232, 228, 218, .6);
    position: relative;
}

.pu-card-wrap.tight {
    padding: 1.9rem 2.1rem;
}

/* Eyebrow text (small uppercase label) */
.pu-eyebrow {
    text-transform: uppercase;
    letter-spacing: .28em;
    color: var(--pu-gold-dark);
    font-family: 'Inter', sans-serif;
    font-size: .75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: .8rem;
}

.pu-eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--pu-gold);
}

.pu-eyebrow .serif-script {
    text-transform: none;
    letter-spacing: 0;
    font-size: 1.8rem;
    line-height: 1;
    vertical-align: middle;
    margin: 0 .15rem;
    color: var(--pu-gold-dark);
}

.pu-section-title {
    font-size: 2.2rem;
    margin: 0 0 1.1rem;
    color: var(--pu-forest-darkest);
    font-weight: 500;
}

.pu-section-title i {
    color: var(--pu-gold-dark);
    font-size: .85em;
}

/* Centered section heading with gold ornament */
.pu-section-heading-center {
    text-align: center;
    margin-bottom: 3rem;
}

.pu-section-heading-center .pu-eyebrow {
    justify-content: center;
}

/* ============================================================
   PILLARS / FEATURE CARDS
   ============================================================ */
.pillar-card {
    padding: 2.4rem 1.5rem;
    text-align: left;
    border-radius: 18px;
    background: linear-gradient(180deg, var(--pu-pearl) 0%, var(--pu-mint-whisper) 100%);
    border: 1px solid var(--pu-line);
    height: 100%;
    transition: all .4s var(--pu-ease);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pu-gold), var(--pu-gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s var(--pu-ease);
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--pu-shadow-lg);
}

.pillar-card:hover::before {
    transform: scaleX(1);
}

.pillar-card .pillar-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--pu-forest), var(--pu-forest-mid));
    color: var(--pu-gold);
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    font-size: 1.6rem !important;
    box-shadow: var(--pu-shadow-sm);
}

.pillar-card h4 {
    color: var(--pu-forest-darkest);
    margin-bottom: .8rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.pillar-card p {
    color: var(--pu-text-muted);
    font-size: .96rem;
    margin: 0;
    line-height: 1.7;
}

/* ============================================================
   SERVICE GRID CARDS
   ============================================================ */
.service-card {
    background: var(--pu-pearl);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--pu-shadow-sm);
    transition: all .4s var(--pu-ease);
    height: 100%;
    border: 1px solid var(--pu-line);
    position: relative;
}

.pos-rel h1 {
    font-size: 65px;
}

.pos-rel .serif-script {
    font-weight: 800;
}

.pos-abs {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translate(0%, -50%);
}

.pos-rel {
    position: relative;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    pointer-events: none;
    box-shadow: inset 0 0 0 1.5px var(--pu-gold);
    opacity: 0;
    transition: opacity .35s var(--pu-ease);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--pu-shadow-xl);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card .service-img {
    height: 200px;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(201, 169, 97, .25) 0%, transparent 60%),
        linear-gradient(135deg, var(--pu-forest) 0%, var(--pu-forest-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pu-gold);
    font-size: 3.6rem;
    position: relative;
    overflow: hidden;
}

.service-card .service-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 169, 97, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 97, .06) 1px, transparent 1px);
    background-size: 24px 24px;
}

.service-card .service-img i {
    position: relative;
    z-index: 1;
}

.service-card .service-body {
    padding: 2rem 1.8rem;
}

.service-card h3 {
    font-size: 1.45rem;
    margin-bottom: .8rem;
    color: var(--pu-forest-darkest);
    font-weight: 600;
}

.service-card p {
    color: var(--pu-text-muted);
    font-size: .95rem;
    margin-bottom: 1.4rem;
    line-height: 1.65;
}

.service-card .read-more {
    color: var(--pu-gold-dark);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: all .3s var(--pu-ease);
}

.service-card .read-more:hover {
    color: var(--pu-forest);
    gap: .9rem;
}

.service-card .read-more i {
    transition: transform .3s var(--pu-ease);
}

.service-card .read-more:hover i {
    transform: translateX(3px);
}

/* ============================================================
   FEATURE LIST WITH GOLD CHECKS
   ============================================================ */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.feature-list li {
    padding: .55rem 0 .55rem 2rem;
    position: relative;
    color: var(--pu-text);
    font-size: .98rem;
}

.feature-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: .65rem;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--pu-gold), var(--pu-gold-dark));
    color: var(--pu-pearl);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(201, 169, 97, .4);
}

/* ============================================================
   INFO BOX (highlight callout)
   ============================================================ */
.info-box {
    background: linear-gradient(135deg, var(--pu-mint-whisper) 0%, var(--pu-cream) 100%);
    border-left: 4px solid var(--pu-gold);
    padding: 1.6rem 1.8rem;
    border-radius: 14px;
    margin: 1.5rem 0;
    box-shadow: var(--pu-shadow-sm);
    position: relative;
}

.info-box h4 {
    color: var(--pu-forest-darkest);
    margin-bottom: .6rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.info-box h4 i {
    color: var(--pu-gold-dark);
}

.info-box p {
    color: var(--pu-text);
    margin: 0;
}

/* ============================================================
   TECHNIQUE CARDS
   ============================================================ */
.tech-card {
    background: var(--pu-pearl);
    border-radius: 18px;
    padding: 2.2rem 2rem;
    box-shadow: var(--pu-shadow-sm);
    border: 1px solid var(--pu-line);
    height: 100%;
    transition: all .4s var(--pu-ease);
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pu-forest), var(--pu-gold));
}

.tech-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pu-shadow-lg);
    border-color: var(--pu-gold-soft);
}

.tech-card h3 {
    color: var(--pu-forest-darkest);
    margin-bottom: .6rem;
    font-size: 1.55rem;
    font-weight: 600;
}

/* ============================================================
   TIMELINE / STEP CARDS
   ============================================================ */
.timeline-step {
    background: var(--pu-pearl);
    border-radius: 14px;
    padding: 1.6rem 1.4rem;
    box-shadow: var(--pu-shadow-sm);
    border: 1px solid var(--pu-line);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    transition: all .35s var(--pu-ease);
    position: relative;
    overflow: hidden;
}

.timeline-step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--pu-gold), var(--pu-forest));
}

.timeline-step:hover {
    transform: translateY(-3px);
    box-shadow: var(--pu-shadow-md);
}

.timeline-step .step-num {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pu-forest), var(--pu-forest-dark));
    color: var(--pu-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.15rem;
    box-shadow: var(--pu-shadow-sm), inset 0 0 0 1px var(--pu-gold-soft);
}

.timeline-step h5 {
    margin: .5rem 0 0;
    color: var(--pu-forest-darkest);
    font-size: 1.1rem;
    font-weight: 600;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.pu-table {
    width: 100%;
    background: var(--pu-pearl);
    border-radius: 14px;
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
    box-shadow: var(--pu-shadow-sm);
    border: 1px solid var(--pu-line);
}

.pu-table thead th {
    background: linear-gradient(135deg, var(--pu-forest-darkest), var(--pu-forest));
    color: var(--pu-gold);
    padding: 1.2rem 1.4rem;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pu-table td {
    padding: 1.1rem 1.4rem;
    border-bottom: 1px solid var(--pu-line);
    color: var(--pu-text);
    font-size: .97rem;
}

.pu-table tr:last-child td {
    border-bottom: none;
}

.pu-table tbody tr {
    transition: background .25s var(--pu-ease);
}

.pu-table tbody tr:hover {
    background: var(--pu-mint-whisper);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-item {
    background: var(--pu-pearl);
    border-radius: 14px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--pu-shadow-sm);
    border: 1px solid var(--pu-line);
    transition: all .3s var(--pu-ease);
}

.faq-item.open {
    box-shadow: var(--pu-shadow-md);
    border-color: var(--pu-gold-soft);
}

.faq-question {
    padding: 1.3rem 1.6rem;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--pu-forest-darkest);
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    border: 0px;
    width: 100%;
    transition: color .25s var(--pu-ease);
}

.faq-question:hover {
    color: var(--pu-gold-dark);
}

.faq-question::after {
    content: "+";
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--pu-gold-dark);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--pu-gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all .3s var(--pu-ease);
}

.faq-item.open .faq-question::after {
    content: "\2212";
    background: var(--pu-gold);
    color: var(--pu-pearl);
    border-color: var(--pu-gold);
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.6rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--pu-ease), padding .4s var(--pu-ease);
    color: var(--pu-text-muted);
}

.faq-item.open .faq-answer {
    padding: 0 1.6rem 1.4rem;
    max-height: 400px;
}

.faq-answer p {
    margin: 0;
}

/* ============================================================
   CTA BLOCK
   ============================================================ */
.pu-cta {
    background:
        radial-gradient(circle at 20% 30%, rgba(201, 169, 97, .25) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 168, 136, .2) 0%, transparent 50%),
        linear-gradient(135deg, var(--pu-forest-darkest), var(--pu-forest));
    color: var(--pu-pearl);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    margin-top: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--pu-shadow-xl);
}

.pu-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 169, 97, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 97, .05) 1px, transparent 1px);
    background-size: 40px 40px;
}

.pu-cta>* {
    position: relative;
    z-index: 1;
}

.pu-cta h2 {
    color: var(--pu-pearl);
    margin-bottom: .8rem;
    font-size: 2.4rem;
    font-weight: 500;
}

.pu-cta p {
    color: var(--pu-gold-light);
    margin-bottom: 1.8rem;
    font-size: 1.08rem;
}

/* ============================================================
   ORNAMENTAL DIVIDER
   ============================================================ */
.pu-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    color: var(--pu-gold-dark);
}

.pu-divider::before,
.pu-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pu-gold-soft), transparent);
    max-width: 100px;
}

.pu-divider i {
    font-size: 1rem;
}

/* ============================================================
   BLOG
   ============================================================ */

/* Featured (large) blog post */
.blog-featured {
    background: var(--pu-pearl);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--pu-shadow-md);
    border: 1px solid var(--pu-line);
    transition: all .4s var(--pu-ease);
}

.blog-featured:hover {
    box-shadow: var(--pu-shadow-lg);
}

.blog-featured .feat-img {
    aspect-ratio: 16/10;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(201, 169, 97, .3) 0%, transparent 55%),
        linear-gradient(135deg, var(--pu-forest-darkest) 0%, var(--pu-forest-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pu-gold);
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}

.blog-featured .feat-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 169, 97, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 97, .07) 1px, transparent 1px);
    background-size: 32px 32px;
}

.blog-featured .feat-body {
    padding: 2.6rem 2.4rem;
}

.blog-featured .feat-body h2 {
    font-size: 2.1rem;
    line-height: 1.2;
    margin: .8rem 0 1rem;
    color: var(--pu-forest-darkest);
}

.blog-featured .feat-body h2 a {
    color: inherit;
    transition: color .3s var(--pu-ease);
}

.blog-featured .feat-body h2 a:hover {
    color: var(--pu-gold-dark);
}

.blog-featured .feat-body p {
    color: var(--pu-text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.4rem;
}

/* Blog cards (smaller) */
.blog-card {
    background: var(--pu-pearl);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--pu-shadow-sm);
    border: 1px solid var(--pu-line);
    transition: all .4s var(--pu-ease);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.blog-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    pointer-events: none;
    box-shadow: inset 0 0 0 1.5px var(--pu-gold);
    opacity: 0;
    transition: opacity .35s var(--pu-ease);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--pu-shadow-lg);
}

.blog-card:hover::after {
    opacity: 1;
}

.blog-card .blog-img {
    aspect-ratio: 16/10;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(201, 169, 97, .22) 0%, transparent 55%),
        linear-gradient(135deg, var(--pu-forest) 0%, var(--pu-forest-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pu-gold);
    font-size: 3.4rem;
    position: relative;
    overflow: hidden;
}

.blog-card .blog-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 169, 97, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 97, .06) 1px, transparent 1px);
    background-size: 24px 24px;
}

.blog-card .blog-img i {
    position: relative;
    z-index: 1;
}

.blog-card .blog-body {
    padding: 1.8rem 1.6rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card .blog-body h3 {
    font-size: 1.3rem;
    line-height: 1.3;
    margin: .6rem 0 .8rem;
    color: var(--pu-forest-darkest);
    font-weight: 600;
}

.blog-card .blog-body h3 a {
    color: inherit;
    transition: color .3s var(--pu-ease);
}

.blog-card .blog-body h3 a:hover {
    color: var(--pu-gold-dark);
}

.blog-card .blog-body p {
    color: var(--pu-text-muted);
    font-size: .92rem;
    line-height: 1.65;
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

/* Category tag pill */
.blog-cat {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .3rem .9rem;
    background: linear-gradient(135deg, var(--pu-gold-light), var(--pu-gold-soft));
    color: var(--pu-forest-darkest);
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .25s var(--pu-ease);
}

.blog-cat:hover {
    background: linear-gradient(135deg, var(--pu-gold), var(--pu-gold-dark));
    color: var(--pu-pearl);
    transform: translateY(-1px);
}

.blog-cat.cat-skin {
    background: linear-gradient(135deg, #F5D0C5, #E8AC9C);
    color: #6B3526;
}

.blog-cat.cat-hair {
    background: linear-gradient(135deg, var(--pu-gold-light), var(--pu-gold-soft));
    color: var(--pu-forest-darkest);
}

.blog-cat.cat-nutrition {
    background: linear-gradient(135deg, var(--pu-sage-light), var(--pu-sage));
    color: var(--pu-forest-darkest);
}

/* Blog meta line (date + author) */
.blog-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--pu-text-muted);
    font-size: .82rem;
    font-family: 'Inter', sans-serif;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--pu-line);
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.blog-meta i {
    color: var(--pu-gold-dark);
}

.blog-card .read-more {
    color: var(--pu-gold-dark);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: .82rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .9rem;
    transition: all .3s var(--pu-ease);
}

.blog-card .read-more:hover {
    color: var(--pu-forest);
    gap: .9rem;
}

.blog-card .read-more i {
    transition: transform .3s var(--pu-ease);
}

.blog-card .read-more:hover i {
    transform: translateX(3px);
}

/* ----------- Blog sidebar widgets ----------- */
.blog-sidebar {
    position: sticky;
    top: 110px;
}

.widget {
    background: var(--pu-pearl);
    border-radius: 18px;
    padding: 1.8rem 1.6rem;
    box-shadow: var(--pu-shadow-sm);
    border: 1px solid var(--pu-line);
    margin-bottom: 1.6rem;
}

.widget h4 {
    font-size: 1.3rem;
    margin: 0 0 1.2rem;
    color: var(--pu-forest-darkest);
    font-weight: 600;
    position: relative;
    padding-bottom: .7rem;
}

.widget h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--pu-gold);
}

/* Search widget */
.widget-search form {
    display: flex;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--pu-line);
    border-radius: 50px;
    overflow: hidden;
    background: var(--pu-cream);
    transition: all .25s var(--pu-ease);
}

.widget-search form:focus-within {
    border-color: var(--pu-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, .18);
}

.widget-search input {
    flex: 1;
    border: none;
    background: transparent;
    padding: .75rem 1.1rem;
    font-family: 'Inter', sans-serif;
    font-size: .92rem;
    color: var(--pu-text);
    outline: none;
}

.widget-search button {
    background: var(--pu-forest);
    color: var(--pu-gold);
    border: none;
    padding: 0 1.2rem;
    cursor: pointer;
    transition: all .3s var(--pu-ease);
}

.widget-search button:hover {
    background: var(--pu-gold);
    color: var(--pu-forest-darkest);
}

/* Categories widget */
.widget-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-categories li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .65rem 0;
    border-bottom: 1px dashed var(--pu-line);
    color: var(--pu-text);
    font-size: .95rem;
    transition: all .25s var(--pu-ease);
}

.widget-categories li:last-child a {
    border-bottom: none;
}

.widget-categories li a:hover {
    color: var(--pu-gold-dark);
    padding-left: .4rem;
}

.widget-categories li a .count {
    background: var(--pu-mint-whisper);
    color: var(--pu-forest);
    border-radius: 20px;
    padding: .15rem .65rem;
    font-size: .78rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all .25s var(--pu-ease);
}

.widget-categories li a:hover .count {
    background: var(--pu-gold);
    color: var(--pu-forest-darkest);
}

/* Recent posts widget */
.widget-recent .recent-item {
    display: flex;
    gap: .9rem;
    padding: .8rem 0;
    border-bottom: 1px dashed var(--pu-line);
    align-items: flex-start;
}

.widget-recent .recent-item:last-child {
    border-bottom: none;
}

.widget-recent .recent-thumb {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--pu-forest), var(--pu-forest-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pu-gold);
    font-size: 1.4rem;
}

.widget-recent .recent-meta {
    font-size: .75rem;
    color: var(--pu-gold-dark);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: .25rem;
}

.widget-recent .recent-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.02rem;
    line-height: 1.3;
    color: var(--pu-forest-darkest);
    font-weight: 600;
    text-decoration: none;
    transition: color .25s var(--pu-ease);
    display: block;
}

.widget-recent .recent-title:hover {
    color: var(--pu-gold-dark);
}

/* Tags widget */
.widget-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.widget-tags a {
    background: var(--pu-mint-whisper);
    color: var(--pu-forest);
    padding: .4rem .9rem;
    border-radius: 50px;
    font-size: .82rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-decoration: none;
    transition: all .25s var(--pu-ease);
    border: 1px solid var(--pu-line);
}

.widget-tags a:hover {
    background: var(--pu-gold);
    color: var(--pu-forest-darkest);
    border-color: var(--pu-gold);
    transform: translateY(-2px);
}

/* Newsletter widget */
.widget-newsletter {
    background: linear-gradient(160deg, var(--pu-forest-darkest), var(--pu-forest));
    color: var(--pu-pearl);
    border: none;
    position: relative;
    overflow: hidden;
}

.widget-newsletter::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 169, 97, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 97, .05) 1px, transparent 1px);
    background-size: 28px 28px;
}

.widget-newsletter>* {
    position: relative;
    z-index: 1;
}

.widget-newsletter h4 {
    color: var(--pu-pearl);
}

.widget-newsletter h4::after {
    background: var(--pu-gold);
}

.widget-newsletter p {
    color: rgba(253, 251, 246, .85);
    font-size: .9rem;
}

.widget-newsletter .pu-input {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(201, 169, 97, .3);
    color: var(--pu-pearl);
    width: 100%;
    border-radius: 50px;
    margin-bottom: .8rem;
}

.widget-newsletter .pu-input::placeholder {
    color: rgba(253, 251, 246, .5);
}

.widget-newsletter .pu-input:focus {
    background: rgba(255, 255, 255, .12);
    border-color: var(--pu-gold);
}

.widget-newsletter .btn-pu-book {
    width: 100%;
    justify-content: space-between;
}

/* Pagination */
.pu-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.pu-pagination a,
.pu-pagination span {
    min-width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--pu-pearl);
    color: var(--pu-text);
    border: 1px solid var(--pu-line);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: .92rem;
    text-decoration: none;
    transition: all .3s var(--pu-ease);
    padding: 0 .9rem;
}

.pu-pagination a:hover {
    background: var(--pu-mint-whisper);
    color: var(--pu-forest);
    border-color: var(--pu-gold-soft);
    transform: translateY(-2px);
}

.pu-pagination .current {
    background: linear-gradient(135deg, var(--pu-gold), var(--pu-gold-soft));
    color: var(--pu-forest-darkest);
    border-color: var(--pu-gold);
    box-shadow: 0 4px 12px rgba(201, 169, 97, .35);
}

.pu-pagination .dots {
    background: transparent;
    border: none;
    color: var(--pu-text-muted);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
    .pu-section-title {
        font-size: 2.2rem;
    }

    .pu-page-banner h1 {
        font-size: 2.8rem;
    }

    .pu-page-banner h1 .serif-script {
        font-size: 3.3rem;
    }
}

@media (max-width: 991px) {
    .pu-card-wrap {
        padding: 2rem;
    }

    .pu-page-banner {
        padding: 5rem 0 4rem;
    }

    .pu-page-banner h1 {
        font-size: 2.2rem;
    }

    .pu-page-banner h1 .serif-script {
        font-size: 2.6rem;
    }

    .pu-section-title {
        font-size: 1.8rem;
    }

    .pu-section {
        padding: 3.5rem 0;
    }

    .pu-cta {
        padding: 2.8rem 1.8rem;
    }

    .pu-cta h2 {
        font-size: 1.8rem;
    }

    .blog-sidebar {
        position: static;
    }

    .blog-featured .feat-body {
        padding: 1.8rem 1.6rem;
    }

    .blog-featured .feat-body h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 575px) {
    .pu-logo {
        width: 8rem;
        height: 8rem;
        border: 10px solid white;
    }

    .pu-logo span.p-letter {
        font-size: 1.6rem;
    }

    .pu-navbar {
        padding: 0rem 1.5rem;
    }

    .pu-logo small {
        font-size: .85rem;
    }

    .btn-pu-book,
    .btn-pu-outline {
        padding: .6rem 1.1rem;
        font-size: .85rem;
    }

    .btn-pu-book .arrow-circle,
    .btn-pu-outline .arrow-circle {
        width: 26px;
        height: 26px;
    }

    .pu-card-wrap {
        padding: 1.5rem;
        border-radius: 16px;
    }

}

/* ===========================================================
   HOME PAGE — MISSING COMPONENT CSS
   =========================================================== */

/* --- Welcome Section --- */
.welcome-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--pu-gold-dark);
    margin-bottom: 1.2rem;
}

.welcome-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--pu-forest-dark);
    border-left: 3px solid var(--pu-gold);
    padding: .7rem 0 .7rem 1.3rem;
    margin: 1.2rem 0;
}

.welcome-badges {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: var(--pu-mint-whisper);
    border: 1px solid var(--pu-line);
    border-radius: 50px;
    padding: .4rem 1rem;
    font-size: .82rem;
    font-weight: 500;
    color: var(--pu-forest-dark);
}

/* --- Welcome Stats Grid --- */
.welcome-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    border-radius: 18px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 150px;
    position: relative;
    overflow: hidden;
}

.stat-green {
    background: var(--pu-forest-darkest);
    color: var(--pu-pearl);
}

.stat-gold {
    background: var(--pu-gold);
    color: var(--pu-forest-darkest);
}

.stat-sage {
    background: var(--pu-sage-light);
    color: var(--pu-forest-darkest);
}

.stat-outline {
    background: var(--pu-pearl);
    border: 2px solid var(--pu-line);
    color: var(--pu-text);
    align-items: center;
    justify-content: center;
    text-align: center;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: .2rem;
}

.stat-label {
    font-size: .8rem;
    font-weight: 500;
    opacity: .85;
    line-height: 1.3;
}

.stat-sub {
    font-size: .72rem;
    opacity: .6;
    margin-top: .15rem;
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: .5rem;
    opacity: .7;
}

/* --- Conditions Tabs --- */
.conditions-tabs {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    justify-content: center;
}

.cond-tab {
    padding: .55rem 1.4rem;
    border: 1px solid var(--pu-line);
    border-radius: 50px;
    background: transparent;
    font-size: .85rem;
    font-weight: 500;
    color: var(--pu-text-muted);
    cursor: pointer;
    transition: all .22s;
}

.cond-tab.active,
.cond-tab:hover {
    background: var(--pu-forest-darkest);
    color: var(--pu-pearl);
    border-color: var(--pu-forest-darkest);
}

.conditions-grid {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.conditions-grid.active {
    display: grid;
}

.condition-card {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    background: var(--pu-pearl);
    border: 1px solid var(--pu-line);
    border-radius: 14px;
    padding: 1rem 1.2rem;
    transition: transform .22s, box-shadow .22s;
}

.condition-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--pu-shadow-md);
}

.cond-icon {
    width: 38px;
    height: 38px;
    background: var(--pu-mint-whisper);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    color: var(--pu-forest);
}

.cond-body h4 {
    font-size: .9rem;
    font-weight: 600;
    color: var(--pu-forest-darkest);
    margin-bottom: .15rem;
}

.cond-body p {
    font-size: .78rem;
    color: var(--pu-text-muted);
    margin: 0;
}

.section-intro-text {
    color: var(--pu-text-muted);
    line-height: 1.75;
}

/* --- Treatments Carousel --- */
.treatments-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding: 0 .5rem;
}

.treatments-carousel-wrap {
    position: relative;
    overflow: hidden;
}

.treatments-track {
    display: flex;
    gap: 1.5rem;
    transition: transform .45s var(--pu-ease);
    padding: .5rem .25rem 1rem;
}

.trt-card {
    flex: 0 0 300px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    overflow: hidden;
    transition: transform .3s, border-color .3s;
}

.trt-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 169, 97, .45);
}

.trt-card-icon {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: rgba(255, 255, 255, .75);
}

.trt-card-body {
    padding: 1.5rem;
}

.trt-card-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--pu-pearl);
    margin-bottom: .5rem;
}

.trt-card-body p {
    font-size: .84rem;
    color: rgba(253, 251, 246, .6);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.trt-card-link {
    font-size: .8rem;
    color: var(--pu-gold);
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    text-decoration: none;
    font-weight: 600;
}

.trt-ctrl {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    color: var(--pu-pearl);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: all .2s;
}

.trt-prev {
    left: 0;
}

.trt-next {
    right: 0;
}

.trt-ctrl:hover {
    background: rgba(201, 169, 97, .3);
    border-color: rgba(201, 169, 97, .5);
}

.pu-treatments-section {
    background: linear-gradient(160deg, var(--pu-forest-darkest) 0%, var(--pu-forest) 100%);
}

/* --- Testimonials --- */
.testi-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.testi-nav {
    display: flex;
    gap: .5rem;
}

.testi-ctrl {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--pu-line);
    background: var(--pu-pearl);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--pu-forest-darkest);
    font-size: .95rem;
    transition: all .22s;
}

.testi-ctrl:hover {
    background: var(--pu-forest-darkest);
    color: var(--pu-pearl);
    border-color: var(--pu-forest-darkest);
}

.testi-track-wrap {
    overflow: hidden;
    padding: .5rem .25rem 1.5rem;
}

.testi-track {
    display: flex;
    gap: 1.5rem;
    transition: transform .45s var(--pu-ease);
    will-change: transform;
}

.testi-card {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 280px;
    background: #fff;
    border: 1px solid var(--pu-line);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--pu-shadow-sm);
    display: flex;
    flex-direction: column;
    gap: .8rem;
    transition: box-shadow .3s, transform .3s;
}

.testi-card:hover {
    box-shadow: var(--pu-shadow-lg);
    transform: translateY(-4px);
}

.testi-quote-icon {
    font-size: 2.5rem;
    color: var(--pu-gold-soft);
    line-height: 1;
}

.testi-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--pu-forest-darkest);
    margin: 0;
    line-height: 1.35;
}

.testi-stars {
    color: var(--pu-gold);
    display: flex;
    gap: .15rem;
    font-size: .85rem;
}

.testi-text {
    font-size: .9rem;
    color: var(--pu-text-muted);
    line-height: 1.72;
    flex: 1;
    margin: 0;
}

.testi-footer {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding-top: .5rem;
    border-top: 1px solid var(--pu-line);
    margin-top: .5rem;
}

.testi-avatar-initial {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--pu-forest-darkest);
    color: var(--pu-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    flex-shrink: 0;
}

.testi-name {
    font-weight: 600;
    font-size: .9rem;
    color: var(--pu-forest-darkest);
}

.testi-meta {
    font-size: .75rem;
    color: var(--pu-text-muted);
}

@media (max-width: 991px) {
    .testi-card {
        flex: 0 0 calc(50% - .75rem);
    }
}

@media (max-width: 575px) {
    .testi-card {
        flex: 0 0 100%;
    }
}

/* --- Before & After --- */
.ba-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

@media (max-width: 991px) {
    .ba-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575px) {
    .ba-grid {
        grid-template-columns: 1fr;
    }
}

.ba-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--pu-shadow-md);
    background: var(--pu-pearl);
    transition: transform .3s, box-shadow .3s;
}

.ba-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--pu-shadow-xl);
}

.ba-image-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.ba-visual {
    width: 100%;
    height: 100%;
    display: block;
}

.ba-before,
.ba-after {
    position: absolute;
    top: .7rem;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    background: rgba(20, 48, 31, .75);
    color: var(--pu-pearl);
    padding: .25rem .65rem;
    border-radius: 4px;
    z-index: 2;
}

.ba-before {
    left: .7rem;
}

.ba-after {
    right: .7rem;
}

.ba-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(255, 255, 255, .85);
    z-index: 2;
}

.ba-label {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .9rem 1.2rem;
    font-size: .86rem;
    font-weight: 600;
    color: var(--pu-forest-darkest);
    border-top: 1px solid var(--pu-line);
}

.ba-label i {
    color: var(--pu-gold);
    font-size: 1.1rem;
}

/* --- Blog Section (Home) --- */
.blog-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.blog-card {
    text-decoration: none;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--pu-shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform .3s, box-shadow .3s;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--pu-shadow-lg);
}

.blog-card-thumb {
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-thumb-icon {
    font-size: 2.8rem;
    color: rgba(255, 255, 255, .35);
}

.blog-card-body {
    padding: 1.2rem 1.4rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--pu-forest-darkest);
    margin: .4rem 0 .6rem;
    line-height: 1.45;
    flex: 1;
}

.blog-date {
    font-size: .75rem;
    color: var(--pu-text-muted);
    display: inline-flex;
    align-items: center;
    gap: .3rem;
}

/* --- Book Appointment Section --- */
.pu-book-section {
    position: relative;
    background: var(--pu-forest-darkest);
    padding: 5rem 0;
    overflow: hidden;
}

.book-bg-overlay {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(201, 169, 97, .08) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 20%, rgba(45, 87, 57, .3) 0%, transparent 55%);
    pointer-events: none;
}

.book-wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 991px) {
    .book-wrap {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.book-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 600;
    color: var(--pu-pearl);
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.book-title-accent {
    color: var(--pu-gold);
    font-style: italic;
}

.book-info>p {
    color: rgba(253, 251, 246, .65);
    font-size: .95rem;
    line-height: 1.8;
    margin-bottom: .8rem;
}

.book-clinic-hours {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    padding: 1.2rem 1.5rem;
    margin: 1.5rem 0;
}

.book-clinic-hours h5 {
    font-size: .88rem;
    color: var(--pu-gold-soft);
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.book-clinic-hours p {
    font-size: .85rem;
    color: rgba(253, 251, 246, .65);
    margin-bottom: .3rem;
}

.book-contact-links {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
}

.book-contact-chip {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50px;
    padding: .5rem 1.1rem;
    font-size: .82rem;
    color: var(--pu-pearl);
    text-decoration: none;
    transition: all .2s;
}

.book-contact-chip:hover {
    background: rgba(201, 169, 97, .15);
    border-color: rgba(201, 169, 97, .4);
    color: var(--pu-gold-soft);
}

.book-whatsapp:hover {
    background: rgba(37, 211, 102, .12) !important;
    border-color: rgba(37, 211, 102, .4) !important;
    color: #25d366 !important;
}

.book-form-wrap {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 24px;
    padding: 2.5rem;
}

.book-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group-pu {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.form-group-pu label {
    font-size: .78rem;
    font-weight: 600;
    color: rgba(253, 251, 246, .65);
    letter-spacing: .06em;
    text-transform: uppercase;
}

.form-group-pu input,
.form-group-pu select,
.form-group-pu textarea {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    padding: .75rem 1rem;
    color: var(--pu-pearl);
    font-size: .9rem;
    font-family: 'Inter', sans-serif;
    width: 100%;
    transition: border-color .2s, background .2s;
    -webkit-appearance: none;
    appearance: none;
}

.form-group-pu input::placeholder,
.form-group-pu textarea::placeholder {
    color: rgba(253, 251, 246, .3);
}

.form-group-pu input:focus,
.form-group-pu select:focus,
.form-group-pu textarea:focus {
    outline: none;
    border-color: rgba(201, 169, 97, .5);
    background: rgba(255, 255, 255, .1);
}

.form-group-pu select option {
    background: var(--pu-forest-darkest);
    color: var(--pu-pearl);
}

.form-row-pu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 575px) {
    .form-row-pu {
        grid-template-columns: 1fr;
    }
}

.req {
    color: var(--pu-gold);
}

/* --- pu-section-heading-center --- */
.pu-section-heading-center {
    text-align: center;
    margin-bottom: 3rem;
}

.pu-section-heading-center .pu-eyebrow {
    justify-content: center;
}

/* =======================================================
   FOOTER — Premium Dark Redesign
   ======================================================= */
.pu-footer {
    background: var(--pu-forest-darkest);
    color: rgba(253, 251, 246, .65);
    padding: 5rem 0 0;
}

.pu-footer-top {
    padding-bottom: 3rem;
}

.footer-brand-col {
    border-right: 1px solid rgba(201, 169, 97, .12);
    padding-right: 2rem !important;
}

@media (max-width: 991px) {
    .footer-brand-col {
        border-right: none;
        border-bottom: 1px solid rgba(201, 169, 97, .12);
        padding-right: 0 !important;
        padding-bottom: 2rem;
    }
}

.footer-logo-img {
    height: 200px;
    filter: brightness(0) invert(1);
    opacity: .9;
}

.footer-tagline {
    font-size: .83rem;
    line-height: 1.75;
    color: rgba(253, 251, 246, .5);
    margin-top: .8rem;
}

.footer-socials {
    display: flex;
    gap: .6rem;
    margin-top: 1rem;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 97, .3);
    color: rgba(253, 251, 246, .6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    text-decoration: none;
    transition: all .2s;
}

.footer-socials a:hover {
    background: var(--pu-gold);
    border-color: var(--pu-gold);
    color: var(--pu-forest-darkest);
}

.footer-heading {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--pu-gold);
    margin-bottom: 1.2rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid rgba(201, 169, 97, .2);
}

.footer-subheading {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(253, 251, 246, .4);
    margin: 0 0 .4rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: .45rem;
}

.footer-links a {
    color: rgba(253, 251, 246, .6);
    text-decoration: none;
    font-size: .84rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    transition: color .2s;
}

.footer-links a::before {
    content: '–';
    color: var(--pu-gold);
    font-size: .7rem;
    opacity: .7;
}

.footer-links a:hover {
    color: var(--pu-gold);
}

.footer-links-inline {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .15rem .4rem;
}

.footer-links-inline a {
    color: rgba(253, 251, 246, .55);
    text-decoration: none;
    font-size: .8rem;
    transition: color .2s;
}

.footer-links-inline a:hover {
    color: var(--pu-gold);
}

.footer-links-inline li::after {
    content: '·';
    color: rgba(201, 169, 97, .3);
    margin-left: .4rem;
}

.footer-links-inline li:last-child::after {
    display: none;
}

.footer-contact-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-contact-row {
    display: flex;
    gap: .8rem;
    align-items: flex-start;
}

.footer-contact-row i {
    color: var(--pu-gold);
    font-size: .95rem;
    flex-shrink: 0;
    margin-top: .15rem;
}

.footer-contact-row p {
    margin: 0;
    font-size: .83rem;
    color: rgba(253, 251, 246, .6);
    line-height: 1.65;
}

.footer-contact-row a {
    color: rgba(253, 251, 246, .7);
    text-decoration: none;
    transition: color .2s;
}

.footer-contact-row a:hover {
    color: var(--pu-gold);
}

.footer-closed {
    font-size: .75rem;
    color: rgba(253, 251, 246, .4);
}

.footer-cta-btns {
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.footer-copyright-bar {
    background: rgba(0, 0, 0, .28);
    border-top: 1px solid rgba(201, 169, 97, .1);
    padding: 1.2rem 0;
    margin-top: 3rem;
}

.footer-copyright-bar p {
    font-size: .8rem;
    color: rgba(253, 251, 246, .4);
    margin: 0;
}

.footer-copyright-bar a {
    color: rgba(201, 169, 97, .65);
    text-decoration: none;
}

.footer-copyright-bar a:hover {
    color: var(--pu-gold);
}

/* --- WhatsApp Float --- */
.wa-float {
    position: fixed;
    bottom: 1.8rem;
    right: 1.8rem;
    z-index: 9999;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, .45);
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(37, 211, 102, .6);
    color: white;
}

/* --- Misc home-page helpers --- */
.service-card-link {
    display: block;
    text-decoration: none;
    height: 100%;
    color: inherit;
}

.welcome-title {
    font-family: 'Cormorant Garamond', serif;
}

.section-intro-text {
    color: var(--pu-text-muted);
    line-height: 1.75;
    max-width: 580px;
    margin: 0 auto 2rem;
    text-align: center;
}

/* --- Hero semantic hooks (visuals handled by inline styles) --- */
.pu-hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
}

.pu-hero-slider {
    position: absolute;
    inset: 0;
}

.pu-hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: opacity .9s ease;
    opacity: 0;
}

.pu-hero-slide.active {
    opacity: 1;
}

.pu-hero-overlay {
    position: absolute;
    inset: 0;
}

.pu-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5vw;
    max-width: 700px;
}

.hero-ctrl {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(20, 48, 31, .5);
    border: 1px solid rgba(201, 169, 97, .3);
    color: var(--pu-gold);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: all .2s;
    font-size: 1.1rem;
}

.hero-ctrl:hover {
    background: rgba(201, 169, 97, .25);
}

.hero-prev {
    left: 1.5rem;
}

.hero-next {
    right: 1.5rem;
}

.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: .6rem;
}

.hero-dot {
    height: 3px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    padding: 0;
    transition: all .3s;
    background: rgba(253, 251, 246, .4);
    width: 12px;
}

.hero-dot.active {
    width: 28px;
    background: var(--pu-gold);
}

/* ============================================================
   HERO — Eyebrow / sub / actions
   ============================================================ */
.hero-eyebrow {
    font-size: .72rem;
    letter-spacing: .3em;
    color: var(--pu-gold-soft);
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    display: block;
}

.hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--pu-pearl);
    margin-bottom: 1rem;
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(253, 251, 246, .8);
    margin-bottom: 2rem;
    max-width: 460px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-learn-more {
    color: var(--pu-pearl);
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .92rem;
    letter-spacing: .05em;
    border-bottom: 1px solid rgba(253, 251, 246, .3);
    padding-bottom: 2px;
    text-decoration: none;
    transition: border-color .2s;
}

.hero-learn-more:hover {
    color: var(--pu-gold-soft);
    border-color: var(--pu-gold-soft);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
    background: var(--pu-forest-darkest);
    border-bottom: 1px solid rgba(201, 169, 97, .2);
    overflow: hidden;
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: 1rem 2.5rem;
    border-right: 1px solid rgba(201, 169, 97, .12);
}

.trust-bar-item:last-child {
    border-right: none;
}

.trust-bar-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--pu-pearl);
    line-height: 1;
}

.trust-bar-lbl {
    font-size: .68rem;
    letter-spacing: .12em;
    color: var(--pu-gold-soft);
    text-transform: uppercase;
}

/* ============================================================
   PROCESS SECTION (How Our Treatments Work)
   ============================================================ */
.pu-process-section {
    background: var(--pu-forest-darkest);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.pu-process-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 169, 97, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 97, .05) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.process-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(201, 169, 97, .15);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    height: 100%;
    position: relative;
    transition: transform .3s, border-color .3s;
}

.process-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 169, 97, .4);
}

.process-num {
    position: absolute;
    top: 1.2rem;
    right: 1.4rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(201, 169, 97, .08);
    line-height: 1;
}

.process-icon {
    width: 52px;
    height: 52px;
    background: rgba(201, 169, 97, .12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(201, 169, 97, .2);
}

.process-icon i {
    font-size: 1.4rem;
    color: var(--pu-gold);
}

.process-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--pu-pearl);
    margin-bottom: .6rem;
}

.process-desc {
    font-size: .88rem;
    color: rgba(253, 251, 246, .55);
    line-height: 1.7;
    margin: 0;
}

.process-pills {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.process-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(201, 169, 97, .1);
    border: 1px solid rgba(201, 169, 97, .25);
    border-radius: 50px;
    padding: .5rem 1.2rem;
    font-size: .82rem;
    color: var(--pu-gold-soft);
}

/* ============================================================
   CORE SERVICES — Category Group Layout
   ============================================================ */
.pu-services-section {
    background: var(--pu-cream);
    padding: 5rem 0;
}

.svc-group {
    margin-bottom: 4rem;
}

.svc-group:last-child {
    margin-bottom: 0;
}

.svc-group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.2rem;
    border-bottom: 2px solid var(--pu-line);
}

.svc-group-title-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.svc-group-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--pu-gold);
    flex-shrink: 0;
}

.svc-icon-hair {
    background: var(--pu-forest-darkest);
}

.svc-icon-skin {
    background: var(--pu-forest);
}

.svc-icon-nutr {
    background: var(--pu-forest-dark);
}

.svc-group-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--pu-forest-darkest);
    margin: 0 0 .1rem;
    line-height: 1.2;
}

.svc-group-tagline {
    font-size: .82rem;
    color: var(--pu-text-muted);
    margin: 0;
}

.btn-see-more {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: 'Inter', sans-serif;
    font-size: .84rem;
    font-weight: 600;
    color: var(--pu-forest);
    text-decoration: none;
    padding: .55rem 1.4rem;
    border: 1.5px solid var(--pu-forest-mid);
    border-radius: 50px;
    transition: all .25s var(--pu-ease);
    white-space: nowrap;
    letter-spacing: .02em;
}

.btn-see-more:hover {
    background: var(--pu-forest-darkest);
    border-color: var(--pu-forest-darkest);
    color: var(--pu-pearl);
    transform: translateY(-2px);
}

.btn-see-more i {
    font-size: .85rem;
    transition: transform .2s var(--pu-ease);
}

.btn-see-more:hover i {
    transform: translateX(3px);
}

/* Service Card (Core Services) */
.svc-card-inner {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--pu-shadow-md);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .3s var(--pu-ease), box-shadow .3s var(--pu-ease);
}

.svc-card-inner:hover {
    transform: translateY(-8px);
    box-shadow: var(--pu-shadow-xl);
}

.svc-card-img {
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
}

.svc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s var(--pu-ease);
}

.svc-card-inner:hover .svc-card-img img {
    transform: scale(1.06);
}

.svc-card-img-fallback {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: var(--pu-gold);
    font-size: 2.5rem;
}

.svc-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--pu-gold);
    color: var(--pu-forest-darkest);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .3rem .7rem;
    border-radius: 4px;
}

.svc-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.svc-card-icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .8rem;
}

.svc-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--pu-forest-darkest);
    margin-bottom: .5rem;
}

.svc-card-desc {
    font-size: .88rem;
    color: var(--pu-text-muted);
    line-height: 1.65;
    margin-bottom: 1rem;
    flex: 1;
}

.svc-card-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem;
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

.svc-card-bullets li {
    font-size: .82rem;
    color: var(--pu-forest-dark);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.svc-card-bullets li i {
    color: var(--pu-forest-mid);
    font-size: .9rem;
    flex-shrink: 0;
}

.svc-card-link {
    font-size: .82rem;
    color: var(--pu-forest);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    border-top: 1px solid var(--pu-line);
    padding-top: .8rem;
    text-decoration: none;
    transition: color .2s;
}

.svc-card-link:hover {
    color: var(--pu-gold-dark);
}

/* ============================================================
   WHY CHOOSE US — Dark section
   ============================================================ */
.pu-why-section {
    background: var(--pu-forest-darkest);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.pu-why-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(201, 169, 97, .07) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(45, 87, 57, .3) 0%, transparent 60%);
    pointer-events: none;
}

.why-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(201, 169, 97, .12);
    border-radius: 16px;
    padding: 1.4rem;
    height: 100%;
    transition: border-color .25s, background .25s;
}

.why-card:hover {
    border-color: rgba(201, 169, 97, .35);
    background: rgba(201, 169, 97, .05);
}

.why-card-icon {
    font-size: 1.4rem;
    color: var(--pu-gold);
    margin-bottom: .8rem;
    display: block;
}

.why-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--pu-pearl);
    margin-bottom: .4rem;
}

.why-card-desc {
    font-size: .82rem;
    color: rgba(253, 251, 246, .5);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   FOUNDER SECTION
   ============================================================ */
.pu-founder-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--pu-shadow-xl);
}

.founder-img-col {
    min-height: 380px;
    position: relative;
}

.founder-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.founder-img-fallback {
    display: none;
    width: 100%;
    height: 100%;
    min-height: 380px;
    background: radial-gradient(ellipse at 30% 30%, rgba(201, 169, 97, .3) 0%, transparent 55%),
        linear-gradient(160deg, var(--pu-forest-darkest) 0%, var(--pu-forest) 100%);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: .8rem;
    color: var(--pu-gold);
}

.founder-overlay-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(20, 48, 31, .85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(201, 169, 97, .3);
    border-radius: 12px;
    padding: .7rem 1rem;
}

.founder-overlay-badge .founder-role {
    font-size: .65rem;
    letter-spacing: .15em;
    color: var(--pu-gold-soft);
    text-transform: uppercase;
}

.founder-overlay-badge .founder-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--pu-pearl);
    font-weight: 600;
}

.founder-bio-col {
    padding: 3rem 3.5rem;
}

.founder-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.founder-stat {
    text-align: center;
    background: var(--pu-mint-whisper);
    border-radius: 12px;
    padding: .8rem 1.2rem;
    min-width: 80px;
}

.founder-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--pu-forest);
    line-height: 1;
}

.founder-stat-lbl {
    font-size: .68rem;
    color: var(--pu-text-muted);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.founder-values {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.8rem;
}

.founder-value {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    color: var(--pu-forest-dark);
}

.founder-value i {
    color: var(--pu-forest-mid);
}

/* ============================================================
   BOOK APPOINTMENT — Clean form section
   ============================================================ */
.pu-book-section {
    position: relative;
    background: var(--pu-forest-darkest);
    padding: 5rem 0;
    overflow: hidden;
}

.book-section-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(201, 169, 97, .08) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 20%, rgba(45, 87, 57, .3) 0%, transparent 55%),
        linear-gradient(rgba(201, 169, 97, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 97, .04) 1px, transparent 1px);
    background-size: auto, auto, 48px 48px, 48px 48px;
    pointer-events: none;
}

/* ============================================================
   WELCOME SECTION
   ============================================================ */
.pu-welcome-section {
    padding-top: 2rem;
}

.welcome-img-wrap {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--pu-shadow-xl);
}

.welcome-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.welcome-img-fallback {
    display: none;
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, var(--pu-forest-darkest), var(--pu-forest));
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: .5rem;
    color: var(--pu-gold);
}

.welcome-img-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--pu-forest-darkest);
    border: 1px solid rgba(201, 169, 97, .3);
    border-radius: 18px;
    padding: 1.2rem 1.5rem;
    box-shadow: var(--pu-shadow-xl);
    min-width: 160px;
    text-align: center;
}

.welcome-img-badge-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--pu-gold);
    line-height: 1;
}

.welcome-img-badge-lbl {
    font-size: .7rem;
    letter-spacing: .15em;
    color: var(--pu-gold-soft);
    text-transform: uppercase;
    margin-top: .2rem;
}

.welcome-corner-accent {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 50px;
    height: 50px;
    border-top: 2px solid var(--pu-gold);
    border-left: 2px solid var(--pu-gold);
    border-radius: 4px 0 0 0;
    opacity: .6;
}

.welcome-content-col {
    padding-left: 2rem;
}

/* ============================================================
   RESULTS TIMELINE
   ============================================================ */
.pu-timeline-section {
    background: var(--pu-cream);
    padding: 5rem 0;
}

.timeline-card {
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--pu-shadow-md);
    height: 100%;
}

.timeline-card-light {
    background: #fff;
}

.timeline-card-dark {
    background: var(--pu-forest-darkest);
    box-shadow: var(--pu-shadow-xl);
}

.timeline-card-header {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--pu-line);
}

.timeline-card-dark .timeline-card-header {
    border-bottom-color: rgba(201, 169, 97, .2);
}

.timeline-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-icon-light {
    background: var(--pu-forest-darkest);
}

.timeline-icon-dark {
    background: rgba(201, 169, 97, .15);
    border: 1px solid rgba(201, 169, 97, .2);
}

.timeline-icon i {
    color: var(--pu-gold);
    font-size: 1.1rem;
}

.timeline-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin: 0;
}

.timeline-card-light .timeline-card-title {
    color: var(--pu-forest-darkest);
}

.timeline-card-dark .timeline-card-title {
    color: var(--pu-pearl);
}

.timeline-row {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.timeline-time {
    min-width: 80px;
    border-radius: 8px;
    padding: .4rem .6rem;
    text-align: center;
}

.timeline-time-light {
    background: var(--pu-mint-whisper);
}

.timeline-time-dark {
    background: rgba(201, 169, 97, .1);
    border: 1px solid rgba(201, 169, 97, .2);
}

.timeline-time-label {
    font-size: .65rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.timeline-time-light .timeline-time-label {
    color: var(--pu-text-muted);
}

.timeline-time-dark .timeline-time-label {
    color: var(--pu-gold-soft);
}

.timeline-time-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

.timeline-time-light .timeline-time-value {
    color: var(--pu-forest);
}

.timeline-time-dark .timeline-time-value {
    color: var(--pu-gold);
}

.timeline-entry-head {
    font-weight: 600;
    font-size: .95rem;
    margin-bottom: .2rem;
}

.timeline-card-light .timeline-entry-head {
    color: var(--pu-forest-dark);
}

.timeline-card-dark .timeline-entry-head {
    color: var(--pu-pearl);
}

.timeline-entry-desc {
    font-size: .84rem;
}

.timeline-card-light .timeline-entry-desc {
    color: var(--pu-text-muted);
}

.timeline-card-dark .timeline-entry-desc {
    color: rgba(253, 251, 246, .5);
}

/* ============================================================
   BOOK APPOINTMENT PAGE
   ============================================================ */
.book-page-section {
    background: var(--pu-cream);
    padding: 5rem 0;
}

.book-page-form-wrap {
    background: #fff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--pu-shadow-xl);
    border: 1px solid var(--pu-line);
}

.book-page-form .form-label-pu {
    font-size: .78rem;
    font-weight: 600;
    color: var(--pu-forest-dark);
    letter-spacing: .06em;
    text-transform: uppercase;
    display: block;
    margin-bottom: .4rem;
}

.book-page-form input,
.book-page-form select,
.book-page-form textarea {
    background: var(--pu-cream);
    border: 1.5px solid var(--pu-line);
    border-radius: 10px;
    padding: .75rem 1rem;
    color: var(--pu-text);
    font-size: .9rem;
    font-family: 'Inter', sans-serif;
    width: 100%;
    transition: border-color .2s, box-shadow .2s;
    -webkit-appearance: none;
    appearance: none;
}

.book-page-form input:focus,
.book-page-form select:focus,
.book-page-form textarea:focus {
    outline: none;
    border-color: var(--pu-forest-mid);
    box-shadow: 0 0 0 3px rgba(63, 107, 74, .12);
    background: #fff;
}

.book-page-form input::placeholder,
.book-page-form textarea::placeholder {
    color: var(--pu-text-muted);
    opacity: .7;
}

.book-info-card {
    background: var(--pu-forest-darkest);
    border-radius: 24px;
    padding: 2.5rem;
    color: var(--pu-pearl);
    height: 100%;
}

.book-info-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--pu-pearl);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.book-info-title span {
    color: var(--pu-gold);
    font-style: italic;
}

.book-info-desc {
    color: rgba(253, 251, 246, .65);
    font-size: .95rem;
    line-height: 1.8;
    margin-bottom: .8rem;
}

.book-hours-box {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    padding: 1.2rem 1.5rem;
    margin: 1.5rem 0;
}

.book-hours-heading {
    font-size: .88rem;
    color: var(--pu-gold-soft);
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 600;
}

.book-hours-box p {
    font-size: .85rem;
    color: rgba(253, 251, 246, .65);
    margin-bottom: .3rem;
}

.book-chips {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
}    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
}
.timeline-card-light .timeline-time-value { color: var(--pu-forest); }
.timeline-card-dark  .timeline-time-value { color: var(--pu-gold); }
.timeline-entry-head { font-weight: 600; font-size: .95rem; margin-bottom: .2rem; }
.timeline-card-light .timeline-entry-head { color: var(--pu-forest-dark); }
.timeline-card-dark  .timeline-entry-head { color: var(--pu-pearl); }
.timeline-entry-desc { font-size: .84rem; }
.timeline-card-light .timeline-entry-desc { color: var(--pu-text-muted); }
.timeline-card-dark  .timeline-entry-desc { color: rgba(253,251,246,.5); }

/* ---- Service Pill Links ---- */
.pu-service-pill {
    display: inline-block;
    padding: .55rem 1.4rem;
    background: var(--pu-forest);
    color: var(--pu-pearl) !important;
    border-radius: 50px;
    font-size: .95rem;
    font-weight: 500;
    text-decoration: none !important;
    transition: background .2s, transform .15s;
    white-space: nowrap;
}
.pu-service-pill:hover {
    background: var(--pu-forest-dark);
    transform: translateY(-2px);
}
