        /* ============================================
           CSS CUSTOM PROPERTIES
        ============================================ */
        :root {
            /* Colors - Modern Minimal Palette */
            --color-dark: #1a1a1a;
            --color-text: #333333;
            --color-text-light: #6b6b6b;
            --color-light: #f8f7f5;
            --color-white: #ffffff;
            --color-border: #e8e6e3;

            /* Accent Colors for Each Section */
            --color-ladies: #a07d50;
            --color-ladies-light: #f5efe6;
            --color-gents: #4a575e;
            --color-gents-light: #e8eaeb;

            /* Typography */
            --font-display: 'Cormorant Garamond', serif;
            --font-body: 'Outfit', sans-serif;

            /* Spacing */
            --section-padding: 6rem 0;
            --container-width: 1200px;

            /* Effects */
            --transition: all 0.3s ease;
            --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
            --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 16px;
        }

        /* ============================================
           RESET & BASE STYLES
        ============================================ */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.6;
            color: var(--color-text);
            background: var(--color-white);
            font-weight: 400;
        }

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

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

        /* Accessible focus styles for keyboard navigation */
        a:focus-visible,
        button:focus-visible,
        .btn:focus-visible,
        .mobile-booking-btn:focus-visible {
            outline: 2px solid var(--color-ladies);
            outline-offset: 3px;
        }

        .nav-link:focus-visible,
        .nav-cta:focus-visible,
        .nav-phone:focus-visible {
            outline: 2px solid currentColor;
            outline-offset: 3px;
        }

        .gallery-btn:focus-visible,
        .carousel-btn:focus-visible {
            outline: 2px solid var(--color-ladies);
            outline-offset: 2px;
        }

        .gallery-dot:focus-visible,
        .carousel-dot:focus-visible {
            outline: 2px solid var(--color-ladies);
            outline-offset: 4px;
        }

        /* Skip navigation link */
        .skip-link {
            position: absolute;
            top: -100%;
            left: 1rem;
            z-index: 10000;
            padding: 0.75rem 1.5rem;
            background: var(--color-dark);
            color: var(--color-white);
            font-size: 0.9rem;
            font-weight: 500;
            border-radius: var(--radius-sm);
            transition: top 0.2s ease;
        }

        .skip-link:focus {
            top: 1rem;
        }

        ul {
            list-style: none;
        }

        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* ============================================
           NAVIGATION
        ============================================ */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1.25rem 0;
            background: rgba(0,0,0,0.35);
            transition: var(--transition);
        }

        .nav.scrolled {
            background: var(--color-white);
            box-shadow: 0 2px 20px rgba(0,0,0,0.12);
            padding: 1rem 0;
        }

        /* Offset anchor scroll targets so sections land below the fixed nav */
        section[id],
        main[id] {
            scroll-margin-top: 80px;
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo {
            font-family: var(--font-display);
            font-size: 1.75rem;
            font-weight: 500;
            letter-spacing: 0.02em;
            color: var(--color-white);
            transition: var(--transition);
        }

        .nav-logo span {
            font-weight: 300;
            opacity: 0.8;
        }

        .nav.scrolled .nav-logo {
            color: var(--color-dark);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2.5rem;
        }

        .nav-link {
            font-size: 0.9rem;
            font-weight: 400;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: var(--color-white);
            transition: var(--transition);
            position: relative;
        }

        .nav.scrolled .nav-link {
            color: var(--color-text);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: currentColor;
            transition: width 0.3s ease;
        }

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

        .nav-cta {
            padding: 0.75rem 1.5rem;
            border: 1px solid var(--color-white);
            transition: var(--transition);
        }

        .nav-cta:hover {
            background: var(--color-white);
            color: var(--color-dark);
        }

        .nav.scrolled .nav-cta {
            border-color: var(--color-dark);
            color: var(--color-dark);
        }

        .nav.scrolled .nav-cta:hover {
            background: var(--color-dark);
            color: var(--color-white);
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .nav-toggle span {
            width: 24px;
            height: 1.5px;
            background: var(--color-white);
            transition: var(--transition);
        }

        .nav.scrolled .nav-toggle span {
            background: var(--color-dark);
        }

        .nav-phone {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--color-white);
            font-weight: 500;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .nav.scrolled .nav-phone {
            color: var(--color-dark);
        }

        .nav-phone svg {
            width: 18px;
            height: 18px;
        }

        .nav-phone:hover {
            color: var(--color-ladies);
        }

        /* ============================================
           SPLIT HERO SECTION
        ============================================ */
        .hero {
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
        }

        .hero-side {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 8rem 3rem 4rem;
            text-align: center;
            overflow: hidden;
        }

        .hero-side::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 1;
        }

        .hero-ladies {
            background: url('../images/ladies-hair-salon-stylist.jpeg') center/cover no-repeat;
        }

        .hero-ladies::before {
            background: linear-gradient(155deg, rgba(245, 239, 230, 0.25) 0%, rgba(245, 239, 230, 0.72) 100%);
        }

        .hero-gents {
            background: image-set(url('../images/man-haircut-hq-salon.webp') type('image/webp'), url('../images/man-haircut-hq-salon.jpeg') type('image/jpeg')) center/cover no-repeat;
        }

        .hero-gents::before {
            background: linear-gradient(200deg, rgba(26, 26, 26, 0.2) 0%, rgba(26, 26, 26, 0.65) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 400px;
        }

        .hero-label {
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .hero-ladies .hero-label {
            color: var(--color-dark);
        }

        .hero-gents .hero-label {
            color: rgba(255, 255, 255, 0.85);
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 400;
            line-height: 1.1;
            margin-bottom: 1rem;
        }

        .hero-ladies .hero-title {
            color: var(--color-dark);
        }

        .hero-gents .hero-title {
            color: var(--color-white);
        }

        .hero-subtitle {
            font-size: 1rem;
            font-weight: 300;
            margin-bottom: 2.5rem;
            opacity: 1;
        }

        .hero-ladies .hero-subtitle {
            color: var(--color-text);
        }

        .hero-gents .hero-subtitle {
            color: rgba(255,255,255,0.8);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 1rem 2.5rem;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }

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

        .btn-ladies:hover {
            background: #8a6b42;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(160, 125, 80, 0.3);
        }

        .btn-gents {
            background: var(--color-white);
            color: var(--color-dark);
        }

        .btn-gents:hover {
            background: var(--color-ladies);
            color: var(--color-white);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(160, 125, 80, 0.3);
        }

        .hero-scroll {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.75rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            opacity: 0.6;
            z-index: 2;
        }

        .hero-ladies .hero-scroll {
            color: var(--color-text);
        }

        .hero-gents .hero-scroll {
            color: var(--color-white);
        }

        .scroll-line {
            width: 1px;
            height: 40px;
            background: currentColor;
            animation: scrollPulse 2s ease-in-out infinite;
        }

        @keyframes scrollPulse {
            0%, 100% { transform: scaleY(1); opacity: 0.6; }
            50% { transform: scaleY(0.5); opacity: 0.3; }
        }

        /* ============================================
           LOGO DIVIDER
        ============================================ */
        .hero-divider {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
            background: var(--color-white);
            width: 140px;
            height: 140px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 60px rgba(0,0,0,0.15);
        }

        .hero-divider-inner {
            text-align: center;
        }

        .hero-divider-logo {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--color-dark);
            line-height: 1;
        }

        .hero-divider-text {
            font-size: 0.6rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--color-text-light);
            margin-top: 0.3rem;
        }

        /* ============================================
           INTRO SECTION
        ============================================ */
        .intro {
            padding: var(--section-padding);
            background: var(--color-white);
        }

        .intro-content {
            display: grid;
            grid-template-columns: 160px 1fr;
            gap: 0;
            align-items: center;
        }

        .intro-year {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            padding-right: 4rem;
            border-right: 1px solid var(--color-border);
            align-self: stretch;
            justify-content: center;
        }

        .intro-year-number {
            font-family: var(--font-display);
            font-size: 6rem;
            font-weight: 400;
            color: var(--color-ladies);
            line-height: 1;
        }

        .intro-year-label {
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--color-text-light);
            margin-top: 0.5rem;
        }

        .intro-text {
            padding-left: 4rem;
        }

        @media (max-width: 600px) {
            .intro-content {
                grid-template-columns: 1fr;
            }
            .intro-year {
                flex-direction: row;
                align-items: baseline;
                gap: 0.75rem;
                border-right: none;
                border-bottom: 1px solid var(--color-border);
                padding-right: 0;
                padding-bottom: 1.5rem;
                margin-bottom: 1.5rem;
            }
            .intro-year-label {
                margin-top: 0;
            }
            .intro-text {
                padding-left: 0;
            }
        }

        .section-label {
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--color-ladies);
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 400;
            color: var(--color-dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .section-text {
            color: var(--color-text-light);
            font-weight: 300;
            line-height: 1.8;
        }

        /* ============================================
           SERVICES SECTION
        ============================================ */
        .services {
            padding: var(--section-padding);
            background: var(--color-light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }

        .services-column {
            padding: 3rem;
        }

        .services-column-ladies {
            background: var(--color-white);
            border-right: 1px solid var(--color-border);
        }

        .services-column-gents {
            background: var(--color-white);
        }

        .services-header {
            text-align: center;
            margin-bottom: 2.5rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--color-border);
        }

        .services-icon {
            width: 50px;
            height: 50px;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .services-column-ladies .services-icon svg {
            color: var(--color-ladies);
        }

        .services-column-gents .services-icon svg {
            color: var(--color-gents);
        }

        .services-column-title {
            font-family: var(--font-display);
            font-size: 1.75rem;
            font-weight: 400;
            color: var(--color-dark);
            margin-bottom: 0.5rem;
        }

        .services-column-subtitle {
            font-size: 0.85rem;
            color: var(--color-text-light);
        }

        .service-item {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            padding: 1rem 0;
            border-bottom: 1px dotted var(--color-border);
        }

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

        .service-name {
            font-weight: 400;
            color: var(--color-text);
        }

        .service-price {
            font-weight: 500;
            color: var(--color-dark);
            white-space: nowrap;
            margin-left: 1rem;
        }

        .services-cta {
            text-align: center;
            margin-top: 2.5rem;
            padding-top: 2rem;
            border-top: 1px solid var(--color-border);
        }

        .btn-outline {
            background: transparent;
            border: 1px solid var(--color-dark);
            color: var(--color-dark);
            padding: 1rem 2rem;
        }

        .btn-outline:hover {
            background: var(--color-dark);
            color: var(--color-white);
        }

        /* ============================================
           FEATURES SECTION
        ============================================ */
        .features {
            padding: var(--section-padding);
            background: var(--color-white);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            text-align: center;
        }

        .feature-item {
            padding: 2rem 1rem;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1.25rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--color-border);
            border-radius: 50%;
        }

        .feature-icon svg {
            width: 28px;
            height: 28px;
            color: var(--color-ladies);
        }

        .feature-title {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 400;
            color: var(--color-dark);
            margin-bottom: 0.5rem;
        }

        .feature-text {
            font-size: 0.9rem;
            color: var(--color-text-light);
            font-weight: 300;
        }

        /* ============================================
           REVIEWS & SENTIMENT SECTION
        ============================================ */
        .reviews {
            padding: var(--section-padding);
            background: var(--color-white);
        }

        .reviews-stats {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin-bottom: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid var(--color-border);
        }

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

        .stat-number {
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 400;
            color: var(--color-dark);
            line-height: 1;
        }

        .stat-number span {
            font-size: 1.5rem;
            color: var(--color-ladies);
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--color-text-light);
            margin-top: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .stat-stars {
            display: flex;
            gap: 0.25rem;
            justify-content: center;
            margin-bottom: 0.5rem;
        }

        .stat-stars svg {
            width: 24px;
            height: 24px;
            fill: var(--color-ladies);
        }

        .sentiment-words {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.75rem;
            margin-bottom: 3.5rem;
        }

        .sentiment-word {
            padding: 0.5rem 1.25rem;
            background: var(--color-light);
            border-radius: 50px;
            font-size: 0.9rem;
            color: var(--color-text);
            font-weight: 400;
            transition: var(--transition);
        }

        .sentiment-word:hover {
            background: var(--color-ladies);
            color: var(--color-white);
        }

        .sentiment-word.highlight {
            background: var(--color-ladies-light);
            color: var(--color-dark);
            font-weight: 500;
        }

        .review-stars {
            display: flex;
            gap: 0.2rem;
            margin-bottom: 1rem;
        }

        .review-stars svg {
            width: 16px;
            height: 16px;
            fill: var(--color-ladies);
        }

        .review-text {
            font-size: 0.95rem;
            color: var(--color-text);
            line-height: 1.7;
            margin-bottom: 1.5rem;
            font-weight: 300;
            position: relative;
            z-index: 1;
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .review-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--color-ladies);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-white);
            font-weight: 500;
            font-size: 0.9rem;
        }

        .review-name {
            font-weight: 500;
            color: var(--color-dark);
            font-size: 0.95rem;
        }

        .review-date {
            font-size: 0.8rem;
            color: var(--color-text-light);
        }

        .reviews-cta {
            text-align: center;
            margin-top: 3rem;
        }

        .reviews-cta a {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--color-text-light);
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .reviews-cta a:hover {
            color: var(--color-ladies);
        }

        .reviews-cta svg {
            transition: transform 0.3s ease;
        }

        .reviews-cta a:hover svg {
            transform: translateX(4px);
        }

        /* ============================================
           TEAM HIGHLIGHT
        ============================================ */
        .team-mention {
            padding: 3rem 0;
            background: var(--color-light);
            text-align: center;
        }

        .team-mention-inner {
            max-width: 700px;
            margin: 0 auto;
        }

        .team-mention p {
            font-family: var(--font-display);
            font-size: 1.5rem;
            color: var(--color-dark);
            font-weight: 400;
            line-height: 1.5;
        }

        .team-mention p span {
            color: var(--color-ladies);
        }

        .team-names {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 1.5rem;
        }

        .team-name {
            font-size: 0.85rem;
            color: var(--color-text-light);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        /* ============================================
           DISCOUNTS SECTION
        ============================================ */
        .discounts {
            padding: 4rem 0;
            background: var(--color-dark);
            text-align: center;
        }

        .discounts-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .discounts .section-label {
            color: var(--color-ladies);
        }

        .discounts .section-title {
            color: var(--color-white);
            margin-bottom: 2rem;
        }

        .discount-items {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .discount-item {
            color: rgba(255,255,255,0.8);
            font-weight: 300;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .discount-item svg {
            color: var(--color-ladies);
        }

        .discounts-note {
            margin-top: 1.5rem;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.75);
        }

        /* ============================================
           LOCATION SECTION
        ============================================ */
        .location {
            padding: var(--section-padding);
            background: var(--color-light);
        }

        .location-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .location-map {
            background: var(--color-white);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }

        .location-map iframe {
            width: 100%;
            height: 400px;
            border: none;
        }

        .location-content {
            padding: 1rem 0;
        }

        .location-details {
            margin-top: 2rem;
        }

        .location-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .location-item-icon {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--color-white);
            border-radius: 50%;
        }

        .location-item-icon svg {
            width: 20px;
            height: 20px;
            color: var(--color-ladies);
        }

        .location-item-content h4 {
            font-weight: 500;
            color: var(--color-dark);
            margin-bottom: 0.25rem;
        }

        .location-item-content p {
            font-size: 0.95rem;
            color: var(--color-text-light);
            font-weight: 300;
        }

        /* ============================================
           CTA SECTION
        ============================================ */
        .cta {
            padding: 5rem 0;
            background: linear-gradient(135deg, var(--color-ladies-light) 0%, var(--color-white) 100%);
            text-align: center;
        }

        .cta-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .cta .section-title {
            margin-bottom: 1rem;
        }

        .cta-subtitle {
            color: var(--color-text-light);
            margin-bottom: 2rem;
            font-weight: 300;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-cta-ladies {
            background: var(--color-ladies);
            color: var(--color-white);
        }

        .btn-cta-ladies:hover {
            background: #8a6b42;
        }

        .btn-cta-gents {
            background: var(--color-gents);
            color: var(--color-white);
        }

        .btn-cta-gents:hover {
            background: #3a454b;
        }

        /* ============================================
           FOOTER
        ============================================ */
        .footer {
            background: var(--color-dark);
            color: var(--color-white);
            padding: 4rem 0 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .footer-brand {
            max-width: 300px;
        }

        .footer-logo {
            font-family: var(--font-display);
            font-size: 1.75rem;
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .footer-logo span {
            font-weight: 300;
            opacity: 0.7;
        }

        .footer-brand p {
            color: rgba(255,255,255,0.75);
            font-weight: 300;
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .footer-title {
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 1.25rem;
        }

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

        .footer-links a {
            color: rgba(255,255,255,0.75);
            font-weight: 300;
            font-size: 0.95rem;
            transition: var(--transition);
        }

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

        .footer-social {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .footer-social a:hover {
            background: var(--color-ladies);
            border-color: var(--color-ladies);
        }

        .footer-social svg {
            width: 18px;
            height: 18px;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 2rem;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.75);
        }

        .footer-legal {
            display: flex;
            gap: 2rem;
        }

        .footer-legal a:hover {
            color: var(--color-white);
        }

        /* ============================================
           STYLE GALLERY CAROUSEL
        ============================================ */
        .gallery {
            padding: 4rem 0;
            background: var(--color-dark);
            overflow: hidden;
        }

        .gallery-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .gallery .section-label {
            color: var(--color-ladies);
        }

        .gallery .section-title {
            color: var(--color-white);
        }

        .gallery-carousel {
            position: relative;
            max-width: 700px;
            margin: 0 auto;
        }

        .gallery-track-wrapper {
            overflow: hidden;
            border-radius: var(--radius-md);
        }

        .gallery-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
            will-change: transform;
        }

        .gallery-slide {
            flex: 0 0 100%;
            position: relative;
        }

        .gallery-slide img {
            width: 100%;
            height: 480px;
            object-fit: cover;
            display: block;
        }

        .gallery-slide-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem 1.5rem 1.25rem;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
            color: var(--color-white);
            font-size: 0.85rem;
            font-weight: 300;
            letter-spacing: 0.03em;
        }

        .gallery-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .gallery-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.25);
            background: transparent;
            color: var(--color-white);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .gallery-btn:hover {
            background: var(--color-ladies);
            border-color: var(--color-ladies);
        }

        .gallery-btn svg {
            width: 18px;
            height: 18px;
        }

        .gallery-dots {
            display: flex;
            gap: 0.5rem;
        }

        .gallery-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            border: none;
            cursor: pointer;
            transition: var(--transition);
            padding: 0;
            position: relative;
        }

        /* Expand touch target to 44px minimum */
        .gallery-dot::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 44px;
            height: 44px;
        }

        .gallery-dot.active {
            background: var(--color-ladies);
            width: 24px;
            border-radius: 4px;
        }

        @media (max-width: 768px) {
            .gallery-slide img {
                height: 340px;
            }
        }

        @media (max-width: 480px) {
            .gallery-slide img {
                height: 280px;
            }
        }

        /* ============================================
           RESPONSIVE STYLES
        ============================================ */
        @media (max-width: 1024px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--color-white);
                flex-direction: column;
                padding: 1.5rem;
                gap: 0;
                box-shadow: var(--shadow-md);
            }

            .nav-menu.active {
                display: flex;
            }

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

            .nav-menu .nav-link {
                display: block;
                color: var(--color-text);
                padding: 1rem 0;
                border-bottom: 1px solid var(--color-border);
                width: 100%;
            }

            .nav-menu .nav-cta {
                display: block;
                margin-top: 1rem;
                text-align: center;
                border-color: var(--color-dark);
                color: var(--color-dark);
                border-bottom: none;
                padding: 0.9rem 1.5rem;
            }

            .nav-toggle {
                display: flex;
            }

            .nav-phone {
                display: none;
            }

            .hero {
                grid-template-columns: 1fr;
                min-height: 100vh;
            }

            .hero-side {
                min-height: 50vh;
                padding: 5rem 2rem 3rem;
            }

            .hero-ladies {
                padding-top: 6rem;
            }

            .hero-divider {
                display: none;
            }

            .hero-scroll {
                display: none;
            }

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

            .services-column-ladies {
                border-right: none;
                border-bottom: 1px solid var(--color-border);
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .reviews-stats {
                gap: 2rem;
            }

            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .location-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .features-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .feature-item {
                padding: 1.5rem 1rem;
            }

            .reviews-stats {
                flex-direction: column;
                gap: 1.5rem;
            }

            .stat-number {
                font-size: 2.5rem;
            }

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

            .team-names {
                flex-direction: column;
                gap: 0.75rem;
            }

            .discount-items {
                flex-direction: column;
                gap: 1rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .cta-buttons .btn {
                width: 100%;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-brand {
                max-width: 100%;
            }

            .footer-social {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
            }

            .footer-legal {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .hero-side {
                padding: 4rem 1.5rem 2.5rem;
            }

            .hero-ladies {
                padding-top: 5rem;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 0.9rem;
            }

            .services-column {
                padding: 2rem 1.5rem;
            }

            .services-showcase {
                margin: -2rem -1.5rem 1.5rem -1.5rem;
            }
        }

        /* ============================================
           STICKY MOBILE BOOKING BAR
        ============================================ */
        .mobile-booking-bar {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 999;
            background: var(--color-white);
            padding: 0.75rem 1rem;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
            border-top: 1px solid var(--color-border);
        }

        .mobile-booking-bar-inner {
            display: flex;
            gap: 0.75rem;
            max-width: 500px;
            margin: 0 auto;
        }

        .mobile-booking-btn {
            flex: 1;
            padding: 0.875rem 1rem;
            border: none;
            border-radius: var(--radius-sm);
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            text-decoration: none;
        }

        .mobile-booking-btn-ladies {
            background: var(--color-ladies);
            color: var(--color-white);
        }

        .mobile-booking-btn-gents {
            background: var(--color-gents);
            color: var(--color-white);
        }

        @media (max-width: 768px) {
            .mobile-booking-bar {
                display: block;
            }

            body {
                padding-bottom: 70px;
            }

            .footer {
                padding-bottom: 5rem;
            }
        }

        /* ============================================
           REVIEWS CAROUSEL
        ============================================ */
        .reviews-carousel-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .reviews-carousel {
            overflow: hidden;
        }

        .reviews-carousel-track {
            display: flex;
            transition: transform 0.5s ease;
            will-change: transform;
        }

        .review-slide {
            flex: 0 0 100%;
            padding: 0 1rem;
        }

        .review-card-large {
            background: var(--color-light);
            border-radius: var(--radius-lg);
            padding: 3rem;
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }

        .review-card-large .review-stars {
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .review-card-large .review-stars svg {
            width: 24px;
            height: 24px;
        }

        .review-card-large .review-text {
            font-size: 1.15rem;
            line-height: 1.8;
            font-style: italic;
            margin-bottom: 2rem;
            font-weight: 300;
        }

        .review-card-large .review-author {
            justify-content: center;
        }

        .carousel-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .carousel-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 1px solid var(--color-border);
            background: var(--color-white);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .carousel-btn:hover {
            background: var(--color-ladies);
            border-color: var(--color-ladies);
            color: var(--color-white);
        }

        .carousel-btn svg {
            width: 20px;
            height: 20px;
        }

        .carousel-dots {
            display: flex;
            gap: 0.5rem;
        }

        .carousel-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--color-border);
            border: none;
            cursor: pointer;
            transition: var(--transition);
            padding: 0;
            position: relative;
        }

        /* Expand touch target to 44px minimum */
        .carousel-dot::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 44px;
            height: 44px;
        }

        .carousel-dot.active {
            background: var(--color-ladies);
            width: 24px;
            border-radius: 4px;
        }

        /* Carousel pause/play button */
        .carousel-pause-btn,
        .gallery-pause-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid var(--color-border);
            background: var(--color-white);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            flex-shrink: 0;
        }

        .carousel-pause-btn:hover,
        .gallery-pause-btn:hover {
            background: var(--color-ladies);
            border-color: var(--color-ladies);
            color: var(--color-white);
        }

        .carousel-pause-btn svg,
        .gallery-pause-btn svg {
            width: 14px;
            height: 14px;
        }

        .gallery-pause-btn {
            border-color: rgba(255,255,255,0.25);
            background: transparent;
            color: var(--color-white);
        }

        .gallery-pause-btn:hover {
            background: var(--color-ladies);
            border-color: var(--color-ladies);
        }

        /* ============================================
           STICKY BOOKING SUB-BAR (desktop only)
        ============================================ */
        .sticky-booking {
            position: fixed;
            left: 0;
            right: 0;
            z-index: 998;
            display: flex;
            max-height: 0;
            overflow: hidden;
            box-shadow: none;
            transition: max-height 0.3s ease, box-shadow 0.3s ease;
        }

        .sticky-booking.visible {
            max-height: 60px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
        }

        .sticky-booking-btn {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.7rem 1rem;
            font-size: 0.72rem;
            font-weight: 500;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            text-decoration: none;
            transition: background 0.25s ease, color 0.25s ease;
        }

        .sticky-booking-ladies {
            background: var(--color-ladies-light);
            color: var(--color-ladies);
            border-right: 1px solid rgba(160, 125, 80, 0.15);
        }

        .sticky-booking-ladies:hover {
            background: var(--color-ladies);
            color: var(--color-white);
        }

        .sticky-booking-gents {
            background: var(--color-gents-light);
            color: var(--color-gents);
        }

        .sticky-booking-gents:hover {
            background: var(--color-gents);
            color: var(--color-white);
        }

        @media (max-width: 768px) {
            .sticky-booking {
                display: none;
            }
        }

        /* ============================================
           UTILITY CLASSES (replaces inline styles)
        ============================================ */

        /* Replaces inline styles on service description paragraphs */
        .service-note {
            font-size: 0.85rem;
            color: var(--color-text-light);
            font-weight: 300;
            text-align: center;
            margin-top: 1.5rem;
            line-height: 1.6;
            padding: 0 0.5rem;
        }

        /* Replaces inline styles on hero eyebrow sub-text */
        .hero-eyebrow-sub {
            font-size: 0.45em;
            font-weight: 300;
            letter-spacing: 0.1em;
            margin-top: 0.15rem;
        }

        /* Replaces inline styles on telephone links */
        .phone-link-ladies {
            color: var(--color-ladies);
            font-weight: 500;
        }

        .phone-link-gents {
            color: var(--color-gents);
            font-weight: 500;
        }
