        /* Base Styles & Typography System */
        @import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@300;400;500;600;700&family=Montserrat:wght@200;300;400;500;600;700&display=swap');

        :root {
            /* Color System */
            --gold-primary: #C9A04E;
            --gold-light: #DFCFA0;
            --gold-dark: #8E7038;
            --rich-black: #0D0D0D;
            --soft-black: #1A1A1A;
            --off-white: #F0EBE3;
            --nude: #DDD0BE;
            --nude-dark: #C4B5A3;
            --white: #FAFAFA;
            --beige: #E8E1D6;

            /* Spacing System */
            --space-xs: 0.5rem;
            --space-sm: 1rem;
            --space-md: 2rem;
            --space-lg: 4rem;
            --space-xl: 8rem;

            /* Typography Scale */
            --text-xs: 0.75rem;
            --text-sm: 0.875rem;
            --text-base: 1rem;
            --text-md: 1.125rem;
            --text-lg: 1.25rem;
            --text-xl: 1.5rem;
            --text-2xl: 2rem;
            --text-3xl: 2.5rem;
            --text-4xl: 3rem;
            --text-5xl: 3.5rem;
            --text-6xl: 4rem;
            --text-7xl: 5rem;

            /* Custom Properties */
            --header-height: 5.5rem;
            --transition-standard: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
            --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.05);
            --shadow-elevated: 0 10px 50px rgba(0, 0, 0, 0.08);
        }

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

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            font-weight: 300;
            color: var(--rich-black);
            line-height: 1.7;
            background-color: var(--white);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Cormorant', serif;
            font-weight: 300;
            line-height: 1.2;
            letter-spacing: -0.01em;
        }

        /* Custom accent for Beauté */
        .accent-e {
            position: relative;
            display: inline-block;
        }
        .accent-e::after {
            content: '';
            position: absolute;
            top: 0.32em;
            left: 50%;
            transform: translateX(-50%) rotate(-18deg);
            width: 0.22em;
            height: 0.04em;
            background: currentColor;
        }

        .about-title .accent-e::after {
            top: 0.38em;
            left: 55%;
        }

        p {
            margin-bottom: var(--space-md);
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition-standard);
        }

        img {
            max-width: 100%;
            height: auto;
            vertical-align: middle;
        }

        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 var(--space-md);
        }

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

        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            margin: -1px;
            padding: 0;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }

        /* Button System */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-family: 'Montserrat', sans-serif;
            font-size: var(--text-sm);
            font-weight: 500;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            padding: 0.9em 2.5em;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition-standard);
            position: relative;
            overflow: hidden;
            z-index: 1;
            white-space: nowrap;
        }

        .btn-primary {
            color: var(--white);
            background-color: var(--gold-primary);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background-color: var(--gold-dark);
            transition: var(--transition-smooth);
            z-index: -1;
        }

        .btn-primary:hover::before {
            left: 0;
        }

        .btn-secondary {
            color: var(--gold-primary);
            background-color: transparent;
            border: 1px solid var(--gold-primary);
            border-radius: 8px;
        }

        .btn-secondary:hover {
            color: var(--white);
            background-color: var(--gold-primary);
        }

        .btn-white {
            color: var(--rich-black);
            background-color: var(--white);
            border-radius: 8px;
        }

        .btn-white:hover {
            background-color: var(--gold-light);
        }

        .btn-icon {
            margin-left: var(--space-xs);
            transition: var(--transition-standard);
        }

        .btn:hover .btn-icon {
            transform: translateX(5px);
        }

        /* Top Bar */
        .top-bar {
            background: var(--beige);
            padding: 8px 0;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1001;
        }

        .top-bar-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 100%;
            padding: 0 var(--space-lg);
        }

        .top-bar-contact {
            display: flex;
            gap: 25px;
        }

        .top-bar-contact a {
            color: var(--soft-black);
            font-size: 12px;
            font-weight: 400;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .top-bar-contact a:hover {
            color: var(--gold-primary);
        }

        .top-bar-contact i {
            margin-right: 8px;
            color: var(--gold-dark);
        }

        .top-bar-social {
            display: flex;
            gap: 15px;
        }

        .top-bar-social a {
            color: var(--soft-black);
            font-size: 13px;
            transition: color 0.3s ease;
        }

        .top-bar-social a:hover {
            color: var(--gold-primary);
        }

        /* Navigation */
        .header {
            position: fixed;
            top: 36px;
            left: 0;
            width: 100%;
            height: var(--header-height);
            z-index: 1000;
            transition: var(--transition-standard);
        }

        .header-scrolled,
        .header-solid {
            background-color: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-subtle);
        }

        /* Treatment pages: header at top (no top bar) */
        .header-solid {
            top: 0;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            max-width: 100%;
            padding: 0 var(--space-lg);
        }

        .logo {
            display: flex;
            align-items: center;
            z-index: 1001;
        }

        .logo-img {
            max-height: 45px;
            transition: var(--transition-standard);
        }

        .nav-close {
            display: none;
        }

        .navbar {
            display: flex;
            align-items: center;
        }

        .nav-links {
            position: absolute;
            left: 53%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
        }

        .nav-book-btn {
            z-index: 10;
        }

        .book-text-short {
            display: none;
        }

        .nav-link {
            font-size: var(--text-sm);
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--white);
            margin: 0 var(--space-sm);
            position: relative;
            transition: color 0.3s ease;
        }

        .header-scrolled .nav-link {
            color: var(--rich-black);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--gold-primary);
            transition: var(--transition-standard);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .nav-icon {
            display: none;
            color: var(--gold-primary);
            font-size: var(--text-2xl);
            cursor: pointer;
            z-index: 1001;
        }

        .nav-list {
            display: flex;
            align-items: center;
            list-style: none;
        }

        .nav-item {
            margin: 0 var(--space-sm);
            display: flex;
            align-items: center;
        }

        /* Dropdown Menu */
        .nav-dropdown {
            position: relative;
        }

        .nav-dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 5px;
            cursor: pointer;
        }

        .nav-dropdown-icon {
            font-size: 0.65em;
            transition: var(--transition-standard);
        }

        @media (hover: hover) and (pointer: fine) {
            .nav-dropdown:hover .nav-dropdown-icon {
                transform: rotate(180deg);
            }
        }

        .nav-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: var(--white);
            min-width: 180px;
            padding: 15px 0;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition-standard);
            list-style: none;
            margin-top: 15px;
            border-radius: 8px;
            max-height: 70vh;
            overflow-y: auto;
            z-index: 1001;
        }

        .nav-dropdown-menu::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 8px solid var(--white);
        }

        @media (hover: hover) and (pointer: fine) {
            .nav-dropdown:hover .nav-dropdown-menu {
                opacity: 1;
                visibility: visible;
                margin-top: 10px;
            }
        }

        .nav-dropdown-menu li {
            padding: 0;
        }

        .nav-dropdown-menu a {
            display: block;
            padding: 10px 25px;
            font-size: var(--text-sm);
            font-weight: 500;
            letter-spacing: 0.05em;
            color: var(--soft-black);
            transition: var(--transition-standard);
        }

        .nav-dropdown-menu a:hover {
            background: var(--off-white);
            color: var(--gold-primary);
        }

        @media (min-width: 1025px) and (max-width: 1500px) {
            .nav-dropdown-menu {
                max-height: 85vh;
            }
        }

        /* Nav Book Button - starts as link, becomes button on scroll */
        .nav-book-btn {
            font-size: var(--text-sm);
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--white);
            background: transparent;
            padding: 0.8em 1.8em;
            border-radius: 8px;
            transition: color 0.3s ease, background 0.3s ease;
        }

        .header-scrolled .nav-book-btn {
            color: var(--rich-black);
        }

        .nav-book-btn::before {
            display: none;
        }

        .nav-book-btn:hover {
            background: var(--gold-primary);
            color: var(--white);
        }

        /* When scrolled past hero CTA */
        .nav-book-btn.show-as-button {
            background: var(--gold-primary);
            color: var(--white);
        }

        .nav-book-btn.show-as-button:hover {
            background: var(--gold-dark);
            color: var(--white);
        }

        /* Hero Section */
        .hero-home {
            position: relative;
            height: 100vh;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-home-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-home-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.15));
            z-index: 1;
        }

        .hero-home-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--white);
            max-width: 800px;
            padding: 0 var(--space-md);
        }

        .hero-home-subtitle {
            font-family: 'Montserrat', sans-serif;
            font-size: var(--text-lg);
            font-weight: 300;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: var(--space-md);
            color: var(--gold-light);
            opacity: 0.9;
        }

        .hero-home-title {
            font-size: var(--text-7xl);
            font-weight: 300;
            letter-spacing: 0.05em;
            line-height: 1.1;
            margin-bottom: var(--space-md);
            color: var(--white);
        }

        .hero-home-description {
            font-size: var(--text-md);
            max-width: 600px;
            margin: 0 auto var(--space-lg);
            font-weight: 300;
        }

        .scroll-indicator {
            position: absolute;
            bottom: var(--space-lg);
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            color: var(--white);
            font-size: var(--text-sm);
            letter-spacing: 0.1em;
            text-transform: uppercase;
            opacity: 0.8;
            transition: var(--transition-standard);
        }

        .scroll-indicator:hover {
            opacity: 1;
        }

        .scroll-line {
            width: 1px;
            height: 60px;
            background-color: var(--white);
            margin-top: var(--space-sm);
            position: relative;
            overflow: hidden;
        }

        .scroll-line::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 60%;
            background-color: var(--gold-primary);
            animation: scrollDown 2s ease-in-out infinite;
        }

        @keyframes scrollDown {
            0% { transform: translateY(-100%); }
            50% { transform: translateY(100%); }
            100% { transform: translateY(300%); }
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: var(--space-lg);
        }

        .section-title-small {
            font-family: 'Montserrat', sans-serif;
            font-size: var(--text-sm);
            font-weight: 500;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gold-primary);
            margin-bottom: var(--space-xs);
            display: block;
        }

        .section-title {
            font-size: var(--text-4xl);
            color: var(--rich-black);
            margin-bottom: var(--space-md);
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background-color: var(--gold-primary);
        }

        .section-description {
            max-width: 700px;
            margin: 0 auto;
            font-size: var(--text-md);
            color: var(--soft-black);
        }

        /* Treatments Section */
        .treatments {
            padding: var(--space-xl) 0;
            background-color: var(--off-white);
        }

        .treatments-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 0;
            margin-top: var(--space-lg);
        }

        .treatment-card {
            position: relative;
            border-radius: 0;
            overflow: hidden;
            height: 500px;
            display: flex;
            flex-direction: column;
            transition: var(--transition-standard);
        }

        .treatment-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-elevated);
        }

        .treatment-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .treatment-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            filter: brightness(1.05) saturate(1.1);
            transition: transform 0.5s ease;
        }

        .treatment-card:hover .treatment-image img {
            transform: scale(1.05);
        }

        .treatment-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: var(--space-md);
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5) 70%, transparent);
            color: var(--white);
            transform: translateY(0);
            z-index: 1;
        }

        .treatment-title {
            font-size: var(--text-2xl);
            margin-bottom: var(--space-xs);
            position: relative;
            display: inline-block;
        }

        .treatment-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 0;
            height: 1px;
            background-color: var(--gold-primary);
            transition: var(--transition-standard);
        }

        .treatment-card:hover .treatment-title::after {
            width: 100%;
        }

        .treatment-description {
            font-family: 'Montserrat', sans-serif;
            font-size: var(--text-sm);
            margin-bottom: 0;
            max-width: 90%;
            opacity: 1;
            transform: translateY(0);
        }


        /* About Section */
        .about {
            padding: var(--space-xl) 0;
            background-color: var(--white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--space-lg);
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image-main {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

        .about-image-accent {
            position: absolute;
            top: -30px;
            left: -30px;
            width: 200px;
            height: 200px;
            background-color: var(--gold-primary);
            z-index: -1;
        }

        .about-content {
            padding: var(--space-md) 0;
        }

        .about-title-small {
            font-family: 'Montserrat', sans-serif;
            font-size: var(--text-sm);
            font-weight: 500;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gold-primary);
            margin-bottom: var(--space-sm);
        }

        .about-title {
            font-size: var(--text-4xl);
            color: var(--rich-black);
            margin-bottom: var(--space-md);
            line-height: 1.2;
        }

        .about-title-mobile {
            display: none;
        }

        .about-text {
            font-size: var(--text-md);
            color: var(--soft-black);
            margin-bottom: var(--space-md);
            line-height: 1.8;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-md);
            margin-top: var(--space-lg);
        }

        .about-feature {
            display: flex;
            align-items: flex-start;
            gap: var(--space-sm);
        }

        .about-feature-icon {
            width: 50px;
            height: 50px;
            background-color: var(--off-white);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold-primary);
            font-size: var(--text-xl);
            flex-shrink: 0;
        }

        .about-icon-img {
            width: 28px;
            height: 28px;
            filter: invert(62%) sepia(49%) saturate(497%) hue-rotate(6deg) brightness(87%) contrast(86%);
        }

        .about-feature-content h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: var(--text-sm);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 5px;
        }

        .about-feature-content p {
            font-size: var(--text-sm);
            color: #555;
            margin-bottom: 0;
        }

        /* Brands Section */
        .brands {
            padding: var(--space-lg) 0;
            background-color: var(--rich-black);
        }

        .brands-header {
            text-align: center;
            margin-bottom: var(--space-lg);
        }

        .brands-title {
            font-size: var(--text-xl);
            color: var(--white);
            letter-spacing: 0.2em;
            text-transform: uppercase;
            font-family: 'Montserrat', sans-serif;
            font-weight: 300;
        }

        .brands-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: var(--space-lg);
        }

        .brand-item {
        }

        .brand-item img {
            height: 50px;
            width: auto;
        }

        /* Invert dark logos to white */
        .brand-item:nth-child(1) img,
        .brand-item:nth-child(3) img,
        .brand-item:nth-child(4) img,
        .brand-item:nth-child(5) img,
        .brand-item:nth-child(6) img,
        .brand-item:nth-child(7) img {
            filter: brightness(0) invert(1);
        }

        /* Gel Bottle - invert only */
        .brand-item:nth-child(2) img {
            filter: invert(1);
            height: 60px;
        }

        .brand-placeholder {
            font-family: 'Cormorant', serif;
            font-size: var(--text-2xl);
            color: var(--white);
            font-weight: 500;
            letter-spacing: 0.1em;
        }

        /* Reviews Section */
        .reviews {
            padding: var(--space-xl) 0;
            background-color: var(--off-white);
        }

        .reviews-header {
            text-align: center;
            margin-bottom: var(--space-lg);
        }

        .google-rating {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: var(--space-sm);
            margin-top: var(--space-md);
        }

        .google-logo {
            height: 30px;
        }

        .rating-stars {
            color: #FBBC05;
            font-size: var(--text-xl);
        }

        .rating-text {
            font-family: 'Montserrat', sans-serif;
            font-size: var(--text-lg);
            font-weight: 600;
            color: var(--rich-black);
        }

        .rating-count {
            font-size: var(--text-sm);
            color: #555;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: var(--space-md);
        }

        .review-card {
            background-color: var(--white);
            padding: var(--space-lg);
            box-shadow: var(--shadow-subtle);
            transition: var(--transition-standard);
        }

        .review-card:hover {
            box-shadow: var(--shadow-elevated);
            transform: translateY(-5px);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            margin-bottom: var(--space-md);
        }

        .review-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--gold-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-family: 'Cormorant', serif;
            font-size: var(--text-xl);
            font-weight: 600;
        }

        .review-author h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: var(--text-base);
            font-weight: 600;
            margin-bottom: 3px;
        }

        .review-author .review-date {
            font-size: var(--text-xs);
            color: #999;
        }

        .review-stars {
            color: #FBBC05;
            font-size: var(--text-sm);
            margin-bottom: var(--space-sm);
        }

        .review-text {
            font-size: var(--text-base);
            color: #555;
            line-height: 1.7;
            margin-bottom: 0;
        }

        .reviews-footer {
            text-align: center;
            margin-top: var(--space-lg);
        }

        .reviews-footer a {
            color: var(--gold-primary);
            font-size: var(--text-sm);
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            gap: var(--space-xs);
        }

        .reviews-footer a:hover {
            color: var(--gold-dark);
        }

        /* Reviews Section - Elfsight Style with Swiper */
        .reviews-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .reviews-header .section-title {
            margin-bottom: 25px;
        }

        .google-rating-bar {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .google-rating-bar img {
            height: 30px;
        }

        .google-rating-bar .rating-score {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--soft-black);
        }

        .google-rating-bar .rating-stars {
            color: #FBBC04;
            font-size: 20px;
        }

        .google-rating-bar .rating-count {
            color: #666;
            font-size: 14px;
        }

        .write-review-btn {
            background: #1a73e8;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 24px;
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s ease;
            text-decoration: none;
        }

        .write-review-btn:hover {
            background: #1557b0;
            color: white;
        }

        /* Reviews Swiper */
        .reviews-swiper-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 50px;
            position: relative;
        }

        .reviews-swiper {
            overflow: hidden;
            padding-bottom: 50px;
        }

        /* Fallback grid if Swiper JS fails to load */
        .reviews-swiper:not(.swiper-initialized) .swiper-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }

        .reviews-swiper .swiper-slide {
            height: auto;
        }

        .reviews-swiper .review-card {
            background: var(--white);
            padding: 25px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            height: 100%;
            min-height: 340px;
        }

        .reviews-swiper .review-stars {
            margin-bottom: 15px;
        }

        .reviews-swiper .review-stars i {
            color: #FBBC04;
            font-size: 18px;
        }

        .reviews-swiper .review-text {
            font-size: 14px;
            line-height: 1.6;
            color: var(--soft-black);
            margin-bottom: 10px;
            flex-grow: 1;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .reviews-swiper .read-more {
            color: #1a73e8;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            margin-bottom: 20px;
        }

        .reviews-swiper .read-more:hover {
            text-decoration: underline;
        }

        .reviews-swiper .review-author {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            margin-top: auto;
        }

        .reviews-swiper .review-avatar {
            width: 48px;
            height: 48px;
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 18px;
            flex-shrink: 0;
        }

        .reviews-swiper .review-avatar-img {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
        }

        .reviews-swiper .review-info {
            text-align: center;
        }

        .reviews-swiper .review-info h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 2px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }

        .reviews-swiper .review-info h3 .verified {
            color: #1a73e8;
            font-size: 14px;
        }

        .reviews-swiper .review-date {
            font-size: 12px;
            color: #888;
        }

        .reviews-swiper .review-google-logo {
            height: 16px;
            width: auto;
            margin-top: 5px;
        }

        /* Swiper navigation arrows */
        .reviews-swiper-wrapper .swiper-button-prev,
        .reviews-swiper-wrapper .swiper-button-next {
            width: 40px;
            height: 40px;
            border: 1px solid #ddd;
            background: var(--white);
            border-radius: 50%;
            color: #666;
            top: 45%;
        }

        .reviews-swiper-wrapper .swiper-button-prev {
            left: 0;
        }

        .reviews-swiper-wrapper .swiper-button-next {
            right: 0;
        }

        .reviews-swiper-wrapper .swiper-button-prev:after,
        .reviews-swiper-wrapper .swiper-button-next:after {
            font-size: 16px;
            font-weight: bold;
        }

        .reviews-swiper-wrapper .swiper-button-prev:hover,
        .reviews-swiper-wrapper .swiper-button-next:hover {
            background: #f5f5f5;
            border-color: #ccc;
        }

        /* Swiper pagination dots */
        .reviews-swiper .swiper-pagination {
            bottom: 10px;
        }

        .reviews-swiper .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            background: #ddd;
            opacity: 1;
        }

        .reviews-swiper .swiper-pagination-bullet-active {
            background: #666;
        }

        /* Desktop: Show all bullets normally (override dynamic) */
        @media (min-width: 769px) {
            .reviews-swiper .swiper-pagination-bullets-dynamic {
                transform: none !important;
            }
            .reviews-swiper .swiper-pagination-bullet {
                transform: scale(1) !important;
                opacity: 1 !important;
            }
        }

        /* Review Modal */
        .review-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .review-modal.active {
            display: flex;
        }

        .review-modal-content {
            background: white;
            max-width: 500px;
            width: 100%;
            padding: 30px;
            border-radius: 8px;
            position: relative;
            max-height: 80vh;
            overflow-y: auto;
        }

        .review-modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #666;
        }

        .review-modal-close:hover {
            color: #333;
        }

        .review-modal-stars {
            color: #FBBC04;
            font-size: 20px;
            margin-bottom: 15px;
        }

        .review-modal-text {
            font-size: 15px;
            line-height: 1.8;
            color: var(--soft-black);
            margin-bottom: 20px;
        }

        .review-modal-author {
            display: flex;
            align-items: center;
            gap: 12px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

        .review-modal-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 18px;
        }

        .review-modal-info h3 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 3px;
        }

        .review-modal-date {
            font-size: 13px;
            color: #888;
        }

        /* Form Success Modal */
        .form-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .form-modal.active {
            display: flex;
        }

        .form-modal-content {
            background: white;
            max-width: 400px;
            width: 100%;
            padding: 40px 30px;
            border-radius: 12px;
            position: relative;
            text-align: center;
        }

        .form-modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #666;
        }

        .form-modal-close:hover {
            color: #333;
        }

        .form-modal-icon {
            font-size: 50px;
            color: var(--gold-primary);
            margin-bottom: 20px;
        }

        .form-modal-content h3 {
            font-family: 'Cormorant', serif;
            font-size: 28px;
            margin-bottom: 10px;
            color: var(--rich-black);
        }

        .form-modal-content p {
            font-size: 14px;
            color: #666;
            margin-bottom: 25px;
        }

        @media (max-width: 768px) {
            .reviews-swiper-wrapper {
                padding: 0 40px;
            }
        }

        @media (max-width: 500px) {
            .reviews-swiper-wrapper {
                padding: 0 15px;
            }
            .reviews-swiper-wrapper .swiper-button-prev,
            .reviews-swiper-wrapper .swiper-button-next {
                display: none;
            }
        }

        /* Special Offers Section - Card Stack Style */
        .offers {
            background: linear-gradient(135deg, #EDE6DD 0%, #E0D8CC 100%);
            padding: 80px 40px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .offer-slideshow {
            position: relative;
            width: 100%;
            max-width: 1200px;
            overflow: hidden;
        }

        .offer-slide {
            display: none;
            opacity: 0;
        }

        .offer-slide.active {
            display: block;
            opacity: 1;
        }

        .offer-slide .offer-image-card,
        .offer-slide .offer-content-card {
            transition: transform 0.5s ease, opacity 0.5s ease;
        }

        .offer-slide.slide-out-left .offer-image-card {
            transform: translateX(-100%);
            opacity: 0;
        }

        .offer-slide.slide-out-left .offer-content-card {
            transform: translateX(100%);
            opacity: 0;
        }

        .offer-slide.slide-in-right .offer-image-card {
            animation: slideInLeft 0.5s ease forwards;
        }

        .offer-slide.slide-in-right .offer-content-card {
            animation: slideInRight 0.5s ease forwards;
        }

        @keyframes slideInLeft {
            from { transform: translateX(-100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        @keyframes slideInRight {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        .offer-nav {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: var(--space-md);
        }

        .offer-nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid var(--gold-primary);
            background: transparent;
            cursor: pointer;
            transition: var(--transition-standard);
        }

        .offer-nav-dot:hover,
        .offer-nav-dot.active {
            background: var(--gold-primary);
        }

        .offer-card-container {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 0;
            max-width: 1200px;
            position: relative;
        }

        .offer-image-card {
            position: relative;
            z-index: 2;
            box-shadow: 0 30px 80px rgba(0,0,0,0.2);
            height: 500px;
            align-self: start;
            overflow: hidden;
        }

        .offer-image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .offer-content-card {
            background: var(--white);
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            margin-left: -60px;
            margin-top: 40px;
            margin-bottom: 40px;
            z-index: 3;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            position: relative;
            min-height: 420px;
        }

        .offer-content-card::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100px;
            height: 100px;
            background: var(--gold-primary);
            z-index: -1;
        }

        .offer-label {
            font-size: var(--text-xs);
            color: var(--gold-primary);
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .offer-title {
            font-size: var(--text-3xl);
            font-weight: 400;
            color: var(--rich-black);
            margin-bottom: var(--space-sm);
            line-height: 1.2;
        }

        .offer-description {
            font-size: var(--text-sm);
            color: #555;
            line-height: 1.8;
            margin-bottom: var(--space-md);
        }

        .offer-includes-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr;
            gap: 12px 30px;
            margin-bottom: var(--space-md);
        }

        .offer-pricing-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: var(--space-md);
        }

        .offer-pricing-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .offer-pricing-name {
            font-size: var(--text-sm);
            color: var(--white);
        }

        .offer-pricing-prices {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .offer-pricing-prices .price-old {
            font-size: var(--text-sm);
            color: rgba(255, 255, 255, 0.5);
            text-decoration: line-through;
        }

        .offer-pricing-prices .price-new {
            font-size: var(--text-md);
            font-weight: 600;
            color: var(--gold-primary);
        }

        .offer-include-item {
            display: block;
            font-size: var(--text-sm);
        }

        .offer-include-item i {
            margin-right: 10px;
        }

        .offer-include-item .offer-price-old {
            font-size: var(--text-sm);
            font-family: 'Montserrat', sans-serif;
            text-decoration: line-through;
            opacity: 0.5;
        }

        .offer-include-item .offer-price-new {
            font-size: var(--text-sm);
            font-family: 'Montserrat', sans-serif;
            color: var(--gold-primary);
            font-weight: 600;
        }

        .offer-include-item .offer-prices {
            margin-left: 22px;
        }

        .offer-include-item i {
            color: var(--gold-primary);
            font-size: var(--text-xs);
        }

        .offer-price-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: var(--space-md);
            border-top: 1px solid #ddd;
        }

        .offer-price-block {
            display: flex;
            align-items: baseline;
            gap: 12px;
        }

        .offer-price-old {
            font-size: var(--text-md);
            color: #999;
            text-decoration: line-through;
        }

        .offer-price-new {
            font-family: 'Cormorant', serif;
            font-size: var(--text-4xl);
            color: var(--gold-dark);
            font-weight: 600;
        }

        /* Mobile Offer Cards (V1 Style) */
        .offer-mobile {
            display: none;
            padding: 0 20px;
        }

        .offer-mobile-header {
            text-align: center;
            margin-bottom: var(--space-md);
        }

        .offer-mobile-label {
            display: block;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--gold-primary);
            font-weight: 500;
            margin-bottom: 10px;
        }

        .offer-mobile-title {
            font-family: 'Cormorant', serif;
            font-size: 28px;
            font-weight: 400;
            color: var(--soft-black);
        }

        .offer-mobile-cards {
            display: flex;
            gap: 15px;
        }

        .offer-mobile-card {
            flex: 1;
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .offer-mobile-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }

        .offer-mobile-image {
            height: 140px;
            position: relative;
            overflow: hidden;
        }

        .offer-mobile-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .offer-mobile-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--gold-primary);
            color: white;
            font-size: 11px;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 5px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .offer-mobile-content {
            padding: 18px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .offer-mobile-card-title {
            font-family: 'Cormorant', serif;
            font-size: 20px;
            font-weight: 500;
            color: var(--soft-black);
            margin-bottom: 0;
            line-height: 1.2;
        }

        .offer-mobile-cta {
            font-size: 12px;
            color: var(--gold-primary);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
            margin-top: auto;
        }

        .offer-mobile-cta i {
            font-size: 10px;
            transition: transform 0.3s ease;
        }

        .offer-mobile-card:hover .offer-mobile-cta i {
            transform: translateX(3px);
        }

        /* Contact Section */
        .contact {
            padding: var(--space-xl) 0;
            background-color: var(--white);
        }

        .contact-header {
            text-align: center;
            margin-bottom: var(--space-lg);
        }

        .contact-header .section-title-small {
            margin-bottom: var(--space-xs);
        }

        .contact-header h2 {
            font-size: var(--text-4xl);
            color: var(--rich-black);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

        .contact-map {
            width: 100%;
            height: 100%;
            min-height: 350px;
            background-color: var(--beige);
            position: relative;
        }

        .contact-map iframe {
            width: 100%;
            height: 100%;
            border: none;
            filter: grayscale(30%);
        }

        .contact-form {
            background: var(--white);
            padding: 35px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact-form h3 {
            font-size: var(--text-2xl);
            margin-bottom: var(--space-md);
            color: var(--rich-black);
        }

        .contact-form p {
            color: #555;
            margin-bottom: var(--space-md);
        }

        .form-group {
            margin-bottom: var(--space-sm);
            position: relative;
        }

        .form-label {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            font-family: 'Montserrat', sans-serif;
            font-size: var(--text-sm);
            color: #888;
            pointer-events: none;
            transition: all 0.2s ease;
            background: var(--white);
            padding: 0 4px;
        }

        .form-group.textarea-group .form-label {
            top: 16px;
            transform: translateY(0);
        }

        .form-input:focus ~ .form-label,
        .form-input:not(:placeholder-shown) ~ .form-label,
        .form-textarea:focus ~ .form-label,
        .form-textarea:not(:placeholder-shown) ~ .form-label {
            top: 0;
            transform: translateY(-50%);
            font-size: var(--text-xs);
            color: var(--gold-primary);
            font-weight: 500;
            letter-spacing: 0.05em;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 14px 12px;
            font-family: 'Montserrat', sans-serif;
            font-size: var(--text-sm);
            border: 1px solid #ddd;
            background: var(--white);
            transition: all 0.3s ease;
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: transparent;
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--gold-primary);
        }

        .form-textarea {
            min-height: 160px;
            resize: vertical;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-sm);
        }

        .contact-form .btn {
            margin-top: var(--space-sm);
        }

        /* Footer */
        .footer {
            background-color: var(--rich-black);
            padding: var(--space-lg) 0 var(--space-md);
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--space-lg);
            margin-bottom: var(--space-lg);
        }

        .footer-logo {
            margin-bottom: var(--space-md);
        }

        .footer-logo img {
            height: 45px;
            width: auto;
        }

        .footer-description {
            font-size: var(--text-base);
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: var(--space-md);
            max-width: 300px;
        }

        .social-links {
            display: flex;
            gap: var(--space-sm);
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.05);
            color: var(--gold-primary);
            transition: var(--transition-standard);
        }

        .social-link:hover {
            background-color: var(--gold-primary);
            color: var(--rich-black);
            transform: translateY(-3px);
        }

        .footer-title {
            font-family: 'Montserrat', sans-serif;
            font-size: var(--text-sm);
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--white);
            margin-bottom: var(--space-md);
            position: relative;
            display: inline-block;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 30px;
            height: 2px;
            background-color: var(--gold-primary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-link {
            margin-bottom: var(--space-sm);
        }

        .footer-link a {
            color: rgba(255, 255, 255, 0.6);
            font-size: var(--text-base);
            transition: var(--transition-standard);
        }

        .footer-link a:hover {
            color: var(--gold-primary);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: var(--space-md);
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 20px;
            font-size: var(--text-sm);
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-bottom p:first-child {
            justify-self: start;
            margin: 0;
        }

        .footer-bottom-links {
            justify-self: center;
        }

        .footer-bottom-link {
            color: rgba(255, 255, 255, 0.5);
            margin: 0 var(--space-xs);
            transition: var(--transition-standard);
        }

        .footer-bottom-link:hover {
            color: var(--gold-primary);
        }

        .footer-link-separator {
            color: rgba(255, 255, 255, 0.3);
            margin: 0 var(--space-xs);
        }

        .footer-credit {
            font-size: var(--text-sm);
            color: rgba(255, 255, 255, 0.5);
            justify-self: end;
            margin: 0;
        }

        .footer-credit-link {
            color: rgba(255, 255, 255, 0.5);
            transition: var(--transition-standard);
        }

        .footer-credit-link:hover {
            color: var(--gold-primary);
        }

        /* Media Queries */
        @media (min-width: 576px) {
            .treatments-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 768px) {
            .hero-home-title {
                font-size: var(--text-6xl);
            }
            .about-grid {
                grid-template-columns: 1fr 1fr;
            }
            .contact-grid {
                grid-template-columns: 1fr 1fr;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .offer-featured {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (min-width: 992px) {
            .treatments-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            .reviews-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .hero-home-title {
                font-size: var(--text-7xl);
            }
            .footer-grid {
                grid-template-columns: 2fr 1fr 1fr 1fr;
            }
        }

        /* Hide mobile-only elements on desktop */
        .mobile-menu-book-btn,
        .mobile-menu-footer {
            display: none;
        }

        .mobile-break {
            display: none;
        }

        @media (max-width: 991px) {
            /* Mobile header - Variation 7: Hamburger | Logo | Book */
            html {
                overflow-x: hidden;
            }

            body {
                overflow-x: hidden;
                width: 100%;
            }

            .top-bar {
                display: none;
            }

            .header {
                top: 0;
            }

            .mobile-break {
                display: inline;
            }

            .hero-home-subtitle {
                font-size: var(--text-base);
                margin-bottom: var(--space-xl);
            }

            .hero-home-title {
                font-size: 3.625rem;
                margin-bottom: var(--space-lg);
            }

            .header {
                background: var(--white) !important;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
                z-index: 1002;
            }

            .header-inner {
                padding: 0 20px;
                width: 100%;
                max-width: 100%;
                overflow: visible;
                position: relative;
                z-index: 1003;
            }

            .logo {
                position: absolute;
                left: 46%;
                transform: translateX(-50%);
                z-index: 1001;
            }

            .logo-img {
                max-height: 28px;
            }

            .navbar {
                display: contents;
            }

            .nav-icon {
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--gold-primary);
                font-size: var(--text-xl);
                order: -1;
            }

            .nav-book-btn {
                padding: 10px 18px !important;
                font-size: 11px !important;
                background: var(--gold-primary) !important;
                color: var(--white) !important;
                opacity: 1 !important;
                visibility: visible !important;
                order: 1;
                position: static !important;
                transform: none !important;
                margin: 0 !important;
                flex-shrink: 0;
            }

            .nav-book-btn::before {
                display: none !important;
            }

            .nav-links {
                position: fixed;
                top: var(--header-height);
                right: -100%;
                left: auto !important;
                transform: none !important;
                width: 100%;
                height: calc(100vh - var(--header-height));
                height: calc(100dvh - var(--header-height));
                background: var(--white);
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;
                padding: 30px;
                transition: var(--transition-standard);
                box-shadow: none;
                z-index: 1000;
                overflow-y: auto;
                overscroll-behavior: contain;
            }

            .book-text-full {
                display: none;
            }

            .book-text-short {
                display: inline;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links.active::before {
                content: '';
                position: fixed;
                top: var(--header-height);
                left: 0;
                width: 100%;
                height: calc(100% - var(--header-height));
                background: var(--white);
                z-index: -1;
            }

            body.menu-open {
                overflow: hidden;
                position: fixed;
                width: 100%;
            }

            body.menu-open .nav-book-btn {
                display: none;
            }

            .nav-list {
                flex-direction: column;
                align-items: flex-start;
                width: 100%;
                padding: 0;
                margin: 0;
            }

            .nav-item {
                width: 100%;
                margin: 0;
                border-bottom: 1px solid var(--beige);
            }

            .nav-link {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 14px 0;
                margin: 0;
                font-family: 'Cormorant', serif;
                font-size: 18px;
                font-weight: 400;
                color: var(--rich-black);
                border: none;
            }

            .nav-link::after {
                display: none;
            }

            .nav-link:hover {
                color: var(--gold-primary);
            }

            .nav-close {
                display: none;
                position: fixed;
                top: 25px;
                right: 30px;
                color: var(--gold-primary);
                font-size: var(--text-xl);
                cursor: pointer;
                z-index: 1001;
                background: var(--white);
                padding: 5px;
            }

            .nav-links.active .nav-close {
                display: block;
            }

            /* Mobile Dropdown Accordion */
            .nav-dropdown {
                flex-direction: column;
                align-items: flex-start;
            }

            .nav-dropdown-icon {
                display: block;
                font-size: 12px;
                color: var(--gold-primary);
                transition: transform 0.3s ease;
            }

            .nav-dropdown.open .nav-dropdown-icon {
                transform: rotate(180deg);
            }

            .nav-dropdown-menu {
                position: static;
                transform: none;
                box-shadow: none;
                background: transparent;
                width: 100%;
                max-height: 0;
                overflow: hidden;
                opacity: 0;
                visibility: hidden;
                transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
                padding: 0;
                margin: 0;
            }

            .nav-dropdown-menu::before {
                display: none;
            }

            .nav-dropdown.open .nav-dropdown-menu {
                max-height: 800px;
                opacity: 1;
                visibility: visible;
                padding: 0 0 15px 0;
            }

            .nav-dropdown-menu li {
                margin: 0;
            }

            .nav-dropdown-menu a {
                display: block;
                padding: 12px 0;
                font-family: 'Montserrat', sans-serif;
                font-size: 13px;
                font-weight: 400;
                color: var(--soft-black);
                letter-spacing: 0.03em;
                border-bottom: none;
                transition: all 0.3s ease;
            }

            .nav-dropdown-menu a:hover {
                color: var(--gold-primary);
                padding-left: 10px;
            }

            /* Mobile Menu Book Button */
            .mobile-menu-book-btn {
                display: inline-block;
                padding: 16px 40px;
                margin-top: 25px;
                background: var(--gold-primary);
                color: var(--white);
                font-family: 'Montserrat', sans-serif;
                font-size: 12px;
                font-weight: 500;
                letter-spacing: 0.1em;
                text-transform: uppercase;
                text-align: center;
                border-radius: 8px;
            }

            /* Mobile Menu Footer */
            .mobile-menu-footer {
                display: block;
                margin-top: auto;
                padding-top: 30px;
                width: 100%;
            }

            .mobile-menu-title {
                font-family: 'Cormorant', serif;
                font-size: 26px;
                font-weight: 400;
                color: var(--rich-black);
                margin-bottom: 18px;
            }

            .mobile-menu-contact p {
                font-family: 'Montserrat', sans-serif;
                font-size: 15px;
                color: var(--gold-primary);
                margin-bottom: 10px;
            }

            .mobile-menu-contact a {
                color: var(--gold-primary);
            }

            .mobile-menu-address {
                font-size: 14px;
                color: var(--gold-primary);
                margin-top: 15px;
                line-height: 1.6;
            }

            .mobile-menu-social {
                display: flex;
                gap: 25px;
                margin-top: 25px;
            }

            .mobile-menu-social a {
                font-size: 24px;
                color: var(--soft-black);
                transition: color 0.3s ease;
            }

            .mobile-menu-social a:hover {
                color: var(--gold-primary);
            }
        }

        /* iPhone SE and small devices */
        @media (max-width: 380px) {
            .mobile-menu-contact p {
                font-size: 14px;
                margin-bottom: 8px;
            }

            .mobile-menu-address {
                font-size: 13px;
                margin-top: 10px;
                line-height: 1.7;
            }

            .mobile-menu-social {
                gap: 20px;
                margin-top: 20px;
            }

            .mobile-menu-social a {
                font-size: 20px;
            }
        }

        /* Hide mobile instagram title on desktop */
        .instagram-title-mobile {
            display: none;
        }

        @media (max-width: 768px) {
            .offer-card-container {
                grid-template-columns: 1fr;
            }

            .offer-image-card img {
                height: auto;
            }

            .offer-content-card {
                margin-left: 20px;
                margin-right: 20px;
                margin-top: -40px;
                margin-bottom: 0;
                padding: 35px;
            }

            .offer-content-card::before {
                width: 60px;
                height: 60px;
                top: -15px;
                right: -15px;
            }

            /* Hide slideshow on mobile, show compact cards */
            .offer-slideshow {
                display: none;
            }

            .offer-mobile {
                display: block;
            }

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

            .contact-map {
                min-height: 350px;
            }

            .contact-form {
                padding: 40px;
            }

            /* About section mobile fixes */
            .about {
                overflow: hidden;
                padding-top: var(--space-md);
            }

            .about-title-mobile {
                display: block;
                text-align: center;
                margin-bottom: var(--space-md);
            }

            .about-title-desktop {
                display: none;
            }

            .about-image-accent {
                top: -15px;
                left: -15px;
                width: 120px;
                height: 120px;
            }

            .about-image-main {
                height: 350px;
            }

            .about-grid {
                gap: var(--space-sm);
            }

            /* Homepage sections mobile padding */
            .treatments,
            .reviews {
                padding-top: var(--space-md);
            }

            .instagram-section {
                padding-top: 90px;
            }

            .contact {
                padding-top: var(--space-lg);
            }

            .about,
            .reviews,
            .contact {
                padding-bottom: var(--space-md);
            }

            .instagram-title-desktop {
                display: none;
            }

            .instagram-title-mobile {
                display: block;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            /* Footer bottom mobile layout */
            .footer-bottom {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 10px;
            }

            .footer-bottom p:first-child {
                justify-self: center;
                order: 1;
            }

            .footer-bottom-links {
                justify-self: center;
                order: 2;
            }

            .footer-credit {
                justify-self: center;
                order: 3;
            }
        }

        @media (max-width: 576px) {
            .offers {
                padding: 40px 0;
            }

            .offer-mobile {
                padding: 0 15px;
            }

            .offer-mobile-cards {
                gap: 12px;
            }

            .offer-mobile-image {
                height: 120px;
            }

            .offer-mobile-content {
                padding: 15px;
            }

            .offer-mobile-card-title {
                font-size: 18px;
            }

            .contact-form {
                padding: 30px 20px;
            }

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

        /* =====================
           CTA Section (shared)
           ===================== */
        .cta {
            background: linear-gradient(135deg, #EDE6DD 0%, #E0D8CC 100%);
            padding: 80px 40px;
            text-align: center;
        }

        .cta h3 {
            font-size: var(--text-3xl);
            color: var(--rich-black);
            margin-bottom: 15px;
        }

        .cta p {
            color: var(--soft-black);
            opacity: 0.9;
            margin-bottom: 30px;
        }

        /* =====================
           Instagram Grid Section
           ===================== */
        .instagram-section {
            background: var(--off-white);
            padding-top: var(--space-xl);
        }

        .instagram-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
        }

        @media (min-width: 768px) {
            .instagram-grid {
                grid-template-columns: repeat(5, 1fr);
            }
        }

        .instagram-post {
            position: relative;
            aspect-ratio: 4/5;
            overflow: hidden;
            cursor: pointer;
        }

        .instagram-post img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .instagram-post:hover img {
            transform: scale(1.05);
        }

        .instagram-post .insta-icon {
            position: absolute;
            top: 12px;
            left: 12px;
            z-index: 10;
            width: 20px;
            height: 20px;
            color: white;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
        }

        .instagram-post-hidden {
            display: none;
        }

        @media (min-width: 768px) {
            .instagram-post-hidden {
                display: block;
            }
        }

        /* Instagram Panel Backdrop */
        .insta-panel-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.5);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            z-index: 1100;
        }

        .insta-panel-backdrop.active {
            opacity: 1;
            pointer-events: auto;
            touch-action: none;
            overscroll-behavior: contain;
        }

        /* Desktop Side Panel */
        .insta-panel-desktop {
            display: none;
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            width: 40vw;
            min-width: 400px;
            max-width: 600px;
            z-index: 1200;
            transform: translateX(100%);
            transition: transform 0.3s ease-out, visibility 0s 0.3s;
            visibility: hidden;
            overflow: visible;
        }

        @media (min-width: 768px) {
            .insta-panel-desktop {
                display: block;
            }
        }

        .insta-panel-desktop.active {
            transform: translateX(0);
            visibility: visible;
            transition: transform 0.3s ease-out, visibility 0s 0s;
        }

        .insta-panel-desktop-inner {
            height: 100%;
            background: white;
            box-shadow: -10px 0 50px rgba(0,0,0,0.15);
            overflow-y: auto;
        }

        .insta-panel-close-tab {
            position: absolute;
            top: 0;
            left: -40px;
            z-index: 20;
            background: white;
            width: 40px;
            height: 40px;
            border-bottom-left-radius: 8px;
            box-shadow: -4px 4px 10px rgba(0,0,0,0.1);
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s ease;
            border: none;
        }

        .insta-panel-close-tab:hover {
            background: var(--off-white);
        }

        .insta-panel-close-tab.active {
            display: flex;
        }

        .insta-panel-close-tab svg {
            width: 20px;
            height: 20px;
            color: var(--soft-black);
        }

        .insta-panel-media {
            width: 100%;
            background: var(--off-white);
            position: relative;
            overflow: hidden;
        }

        .insta-panel-media img,
        .insta-panel-media video {
            width: 100%;
            height: auto;
            display: block;
        }

        .insta-panel-username-tab {
            position: absolute;
            bottom: 0;
            left: 0;
            background: white;
            padding: 8px 12px;
            border-top-right-radius: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: background 0.3s ease;
        }

        .insta-panel-username-tab:hover {
            background: var(--off-white);
        }

        .insta-panel-username-tab svg {
            width: 20px;
            height: 20px;
            color: var(--gold-primary);
        }

        .insta-panel-username-tab p {
            font-weight: 600;
            font-size: var(--text-sm);
            margin: 0;
        }

        .insta-panel-content {
            padding: 20px;
            padding-top: 12px;
        }

        .insta-panel-date {
            font-size: var(--text-xs);
            color: var(--nude-dark);
            margin-bottom: 8px;
        }

        .insta-panel-caption {
            font-size: var(--text-sm);
            color: var(--soft-black);
            line-height: 1.6;
            margin-bottom: 8px;
            min-height: 4.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .insta-panel-more {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
            border-top: 1px solid var(--beige);
            padding-top: 12px;
        }

        .insta-panel-more-item {
            cursor: pointer;
        }

        .insta-panel-more-thumb {
            aspect-ratio: 1;
            background: var(--off-white);
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 4px;
            position: relative;
        }

        .insta-panel-more-thumb img,
        .insta-panel-more-thumb video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .insta-panel-more-date {
            font-size: var(--text-xs);
            color: var(--nude-dark);
            text-align: center;
        }

        .insta-panel-follow-btn {
            display: block;
            width: 100%;
            margin-top: 16px;
            background: var(--gold-primary);
            color: white;
            text-align: center;
            padding: 12px;
            border-radius: 8px;
            font-weight: 600;
            font-size: var(--text-sm);
            transition: background 0.3s ease;
        }

        .insta-panel-follow-btn:hover {
            background: var(--gold-dark);
        }

        /* Mobile Centered Modal */
        .insta-panel-mobile {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.9);
            background: white;
            border-radius: 20px;
            width: calc(100% - 32px);
            max-width: 500px;
            max-height: calc(100vh - 80px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.32, 0.72, 0, 1);
            z-index: 1200;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .insta-panel-mobile.active {
            opacity: 1;
            visibility: visible;
            transform: translate(-50%, -50%) scale(1);
        }

        @media (min-width: 768px) {
            .insta-panel-mobile {
                display: none !important;
            }
        }

        .insta-panel-mobile-scroll {
            overflow-y: auto;
            max-height: calc(100vh - 120px);
            -webkit-overflow-scrolling: touch;
        }

        .insta-panel-mobile-close {
            position: absolute;
            top: 12px;
            left: 12px;
            z-index: 10;
            padding: 8px;
            background: rgba(0,0,0,0.3);
            border-radius: 50%;
            border: none;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .insta-panel-mobile-close:hover {
            background: rgba(0,0,0,0.5);
        }

        .insta-panel-mobile-close svg {
            width: 16px;
            height: 16px;
            color: white;
            display: block;
        }

        .insta-panel-mobile-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            padding: 8px;
            background: rgba(0,0,0,0.3);
            border-radius: 50%;
            border: none;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .insta-panel-mobile-nav:hover {
            background: rgba(0,0,0,0.5);
        }

        .insta-panel-mobile-nav.prev {
            left: 8px;
        }

        .insta-panel-mobile-nav.next {
            right: 8px;
        }

        .insta-panel-mobile-nav svg {
            width: 20px;
            height: 20px;
            color: white;
            display: block;
        }

        .insta-panel-mobile-nav.hidden {
            display: none;
        }

        .insta-panel-mobile-media {
            width: 100%;
            background: var(--rich-black);
            position: relative;
        }

        .insta-panel-mobile-media img,
        .insta-panel-mobile-media video {
            width: 100%;
            height: auto;
            display: block;
        }

        .insta-panel-mobile-content {
            padding: 12px;
        }

        .insta-panel-mobile-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
        }

        .insta-panel-mobile-header svg {
            width: 24px;
            height: 24px;
            color: var(--gold-primary);
        }

        .insta-panel-mobile-header p {
            font-weight: 600;
            color: var(--rich-black);
            font-size: var(--text-sm);
            flex: 1;
            margin: 0;
        }

        .insta-panel-mobile-header .date {
            font-size: var(--text-xs);
            color: var(--nude-dark);
        }

        .insta-panel-mobile-caption {
            color: var(--soft-black);
            font-size: var(--text-sm);
            line-height: 1.6;
            margin-bottom: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .insta-panel-mobile-more {
            padding: 0 12px 12px;
        }

        .insta-panel-mobile-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
            border-radius: 8px;
            overflow: hidden;
        }

        .insta-panel-mobile-footer {
            padding: 12px;
            border-top: 1px solid var(--beige);
        }

        .insta-panel-mobile-follow {
            display: block;
            width: 100%;
            background: var(--gold-primary);
            color: white;
            text-align: center;
            padding: 10px;
            border-radius: 12px;
            font-weight: 600;
            font-size: var(--text-sm);
            transition: background 0.3s ease;
        }

        .insta-panel-mobile-follow:hover {
            background: var(--gold-dark);
        }

        .insta-mute-btn {
            position: absolute;
            top: 12px;
            right: 12px;
            padding: 8px;
            background: rgba(0,0,0,0.3);
            border-radius: 50%;
            border: none;
            cursor: pointer;
            transition: background 0.3s ease;
            display: none;
        }

        .insta-mute-btn.visible {
            display: block;
        }

        .insta-mute-btn:hover {
            background: rgba(0,0,0,0.5);
        }

        .insta-mute-btn svg {
            width: 20px;
            height: 20px;
            color: white;
            display: block;
        }

        .insta-mute-btn .unmute-icon {
            display: none;
        }

        .insta-mute-btn.unmuted .mute-icon {
            display: none;
        }

        .insta-mute-btn.unmuted .unmute-icon {
            display: block;
        }
