    /* ===================================
       THE HAIR HAVEN - CUSTOM STYLES
       Palette: Emerald Green (#047857) + Cream (#FDF8F0)
    =================================== */

    :root {
        --color-emerald: #047857;
        --color-emerald-dark: #065F46;
        --color-emerald-light: #D1FAE5;
        --color-cream: #FDF8F0;
        --color-cream-dark: #F5EFE6;
        --color-text: #1F2937;
        --color-text-light: #6B7280;
        --color-white: #FFFFFF;
        --color-black: #0F172A;
        
        --font-heading: 'Syne', sans-serif;
        --font-body: 'Outfit', sans-serif;
        
        --radius-sm: 8px;
        --radius-md: 16px;
        --radius-lg: 24px;
        
        --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
        --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    }

    /* Reset & Base */
    *, *::before, *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

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

    body {
        font-family: var(--font-body);
        background-color: var(--color-cream);
        color: var(--color-text);
        line-height: 1.6;
        overflow-x: hidden;
    }

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

    a {
        text-decoration: none;
        color: inherit;
        transition: all 0.3s ease;
    }

    ul {
        list-style: none;
    }

    /* Typography */
    h1, h2, h3 {
        font-family: var(--font-heading);
        font-weight: 700;
        line-height: 1.1;
        color: var(--color-emerald-dark);
    }

    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    /* ===================================
       NAVIGATION
    =================================== */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(253, 248, 240, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(4, 120, 87, 0.1);
        padding: 1rem 0;
        transition: all 0.3s ease;
    }

    .navbar.scrolled {
        padding: 0.75rem 0;
        box-shadow: var(--shadow-sm);
    }

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

    .logo {
        font-family: var(--font-heading);
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--color-emerald-dark);
        letter-spacing: -0.02em;
    }

    .logo .dot {
        color: var(--color-emerald);
        font-size: 2rem;
        line-height: 0;
    }

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

    .nav-links a {
        font-weight: 500;
        font-size: 0.95rem;
        color: var(--color-text);
        position: relative;
    }

    .nav-links a:not(.btn):hover {
        color: var(--color-emerald);
    }

    .nav-links a:not(.btn)::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--color-emerald);
        transition: width 0.3s ease;
    }

    .nav-links a:not(.btn):hover::after {
        width: 100%;
    }

    /* Buttons */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.875rem 1.75rem;
        border-radius: var(--radius-sm);
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 0.95rem;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

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

    .btn-primary:hover {
        background: var(--color-emerald-dark);
        border-color: var(--color-emerald-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

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

    .btn-dark:hover {
        background: #1a2535;
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .btn-ghost {
        background: transparent;
        color: var(--color-emerald-dark);
        border-color: var(--color-emerald-dark);
    }

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

    .btn-ghost-dark {
        background: transparent;
        color: var(--color-emerald-dark);
        border-color: var(--color-emerald-dark);
    }

    .btn-ghost-dark:hover {
        background: var(--color-emerald-light);
    }

    .btn-light {
        background: var(--color-white);
        color: var(--color-emerald-dark);
        border-color: var(--color-white);
    }

    .btn-light:hover {
        background: var(--color-emerald-light);
        transform: translateY(-2px);
    }

    .btn-full {
        width: 100%;
    }

    /* Mobile Toggle */
    .mobile-toggle {
        display: none;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
    }

    .mobile-toggle span {
        width: 24px;
        height: 2px;
        background: var(--color-emerald-dark);
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    .mobile-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-cream);
        z-index: 999;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }

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

    .mobile-link {
        font-family: var(--font-heading);
        font-size: 2rem;
        font-weight: 700;
        color: var(--color-emerald-dark);
    }

    /* ===================================
       HERO SECTION
    =================================== */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 8rem 0 4rem;
        background: var(--color-cream);
        position: relative;
        overflow: hidden;
    }

    /* Geometric background shapes */
    .hero-bg-shape {
        position: absolute;
        top: -20%;
        right: -10%;
        width: 70%;
        height: 140%;
        background: var(--color-emerald);
        opacity: 0.06;
        transform: skewX(-15deg);
        z-index: 0;
    }

    .hero-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    .hero-content {
        max-width: 580px;
    }

    .hero-tag {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 0.875rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--color-emerald);
        margin-bottom: 1.5rem;
    }

    .tag-line {
        width: 40px;
        height: 2px;
        background: var(--color-emerald);
    }

    .hero-title {
        font-size: clamp(2.75rem, 5vw, 4.5rem);
        color: var(--color-emerald-dark);
        margin-bottom: 1.5rem;
        line-height: 1.05;
    }

    .hero-title .text-outline {
        -webkit-text-stroke: 2px var(--color-emerald);
        color: transparent;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        color: var(--color-text-light);
        margin-bottom: 2.5rem;
        max-width: 480px;
        line-height: 1.7;
    }

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

    .hero-stats {
        display: flex;
        gap: 2rem;
        align-items: center;
    }

    .stat {
        display: flex;
        flex-direction: column;
    }

    .stat strong {
        font-family: var(--font-heading);
        font-size: 2rem;
        color: var(--color-emerald);
        font-weight: 800;
    }

    .stat span {
        font-size: 0.8rem;
        color: var(--color-text-light);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .stat-divider {
        width: 1px;
        height: 40px;
        background: var(--color-emerald);
        opacity: 0.3;
    }

    /* Hero Visual */
    .hero-visual {
        position: relative;
    }

    .image-stack {
        position: relative;
        height: 600px;
    }

    .img-main {
        width: 85%;
        height: 100%;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
    }

    .img-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .accent-card {
        position: absolute;
        bottom: 40px;
        right: -20px;
        background: var(--color-emerald);
        color: var(--color-white);
        padding: 1.5rem 2rem;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-lg);
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }

    .accent-number {
        font-family: var(--font-heading);
        font-size: 2.5rem;
        font-weight: 800;
        line-height: 1;
    }

    .accent-text {
        font-size: 0.875rem;
        opacity: 0.9;
    }

    .geo-circle {
        position: absolute;
        top: -30px;
        right: 40px;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: var(--color-cream-dark);
        border: 3px solid var(--color-emerald);
        opacity: 0.5;
        z-index: -1;
    }

    /* ===================================
       SECTION COMMON
    =================================== */
    .section-label {
        display: inline-block;
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: var(--color-emerald);
        margin-bottom: 0.75rem;
    }

    .section-title {
        font-size: clamp(2rem, 4vw, 3.25rem);
        color: var(--color-emerald-dark);
        margin-bottom: 1.5rem;
    }

    /* ===================================
       SERVICES SECTION
    =================================== */
    .services {
        padding: 6rem 0;
        background: var(--color-white);
    }

    .section-header {
        text-align: center;
        max-width: 600px;
        margin: 0 auto 4rem;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 900px;
        margin: 0 auto;
    }

    .service-card {
        background: var(--color-cream);
        padding: 2.5rem;
        border-radius: var(--radius-md);
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .service-card:hover {
        transform: translateY(-4px);
        border-color: var(--color-emerald);
        box-shadow: var(--shadow-md);
    }

    .service-card.highlight-card {
        background: var(--color-emerald);
        color: var(--color-white);
    }

    .service-card.highlight-card h3,
    .service-card.highlight-card p {
        color: var(--color-white);
    }

    .service-icon {
        width: 56px;
        height: 56px;
        background: var(--color-emerald-light);
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
    }

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

    .highlight-card .service-icon {
        background: rgba(255, 255, 255, 0.2);
    }

    .highlight-card .service-icon svg {
        color: var(--color-white);
    }

    .service-card h3 {
        font-size: 1.35rem;
        color: var(--color-emerald-dark);
        margin-bottom: 0.75rem;
    }

    .service-card p {
        color: var(--color-text-light);
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* ===================================
       ABOUT SECTION
    =================================== */
    .about {
        padding: 6rem 0;
        background: var(--color-cream);
        overflow: hidden;
    }

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

    .about-img-wrapper {
        position: relative;
    }

    .about-img-wrapper img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .about-pattern {
        position: absolute;
        bottom: -30px;
        left: -30px;
        width: 200px;
        height: 200px;
        background: repeating-linear-gradient(
            45deg,
            var(--color-emerald),
            var(--color-emerald) 10px,
            transparent 10px,
            transparent 20px
        );
        opacity: 0.15;
        border-radius: var(--radius-md);
        z-index: -1;
    }

    .about-content-col {
        padding-left: 1rem;
    }

    .about-text {
        font-size: 1.05rem;
        color: var(--color-text-light);
        margin-bottom: 1.25rem;
        line-height: 1.8;
    }

    .about-text em {
        color: var(--color-emerald);
        font-style: normal;
        font-weight: 600;
    }

    .about-features {
        margin-top: 2rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-weight: 500;
        color: var(--color-text);
    }

    .feature-check {
        width: 24px;
        height: 24px;
        background: var(--color-emerald-light);
        color: var(--color-emerald);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        font-weight: 700;
        flex-shrink: 0;
    }

    /* ===================================
       GALLERY SECTION
    =================================== */
    .gallery {
        padding: 6rem 0;
        background: var(--color-emerald);
    }

    .gallery-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 3rem;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .gallery-header h2 {
        color: var(--color-white);
        font-size: clamp(1.75rem, 3vw, 2.5rem);
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .gallery-item {
        border-radius: var(--radius-md);
        overflow: hidden;
        aspect-ratio: 4/5;
    }

    .gallery-item.tall {
        grid-row: span 2;
        aspect-ratio: auto;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.05);
    }

    /* ===================================
       CONTACT SECTION
    =================================== */
    .contact {
        padding: 6rem 0;
        background: var(--color-cream);
    }

    .contact-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .contact-info {
        padding-right: 2rem;
    }

    .contact-desc {
        font-size: 1.05rem;
        color: var(--color-text-light);
        margin-bottom: 2.5rem;
        line-height: 1.7;
    }

    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-item {
        display: flex;
        gap: 1rem;
        align-items: flex-start;
    }

    .contact-item svg {
        width: 24px;
        height: 24px;
        color: var(--color-emerald);
        flex-shrink: 0;
        margin-top: 0.2rem;
    }

    .contact-item strong {
        display: block;
        font-family: var(--font-heading);
        font-size: 1rem;
        color: var(--color-emerald-dark);
        margin-bottom: 0.25rem;
    }

    .contact-item p {
        color: var(--color-text-light);
        font-size: 0.95rem;
    }

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

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

    /* Contact Form */
    .contact-form-wrapper {
        background: var(--color-white);
        padding: 2.5rem;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        border: 2px solid var(--color-emerald-light);
    }

    .contact-form h3 {
        font-size: 1.5rem;
        color: var(--color-emerald-dark);
        margin-bottom: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group label {
        display: block;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--color-text);
        margin-bottom: 0.5rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 0.875rem 1rem;
        border: 2px solid var(--color-cream-dark);
        border-radius: var(--radius-sm);
        font-family: var(--font-body);
        font-size: 0.95rem;
        color: var(--color-text);
        background: var(--color-cream);
        transition: border-color 0.3s ease;
        outline: none;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--color-emerald);
        background: var(--color-white);
    }

    .form-note {
        text-align: center;
        font-size: 0.8rem;
        color: var(--color-text-light);
        margin-top: 1rem;
    }

    .form-success {
        text-align: center;
        padding: 2rem;
    }

    .form-success.hidden {
        display: none;
    }

    .success-icon {
        width: 64px;
        height: 64px;
        background: var(--color-emerald-light);
        color: var(--color-emerald);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.75rem;
        font-weight: 700;
        margin: 0 auto 1.5rem;
    }

    .form-success h3 {
        margin-bottom: 0.75rem;
    }

    .form-success p {
        color: var(--color-text-light);
        margin-bottom: 1.5rem;
    }

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

    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .footer-brand .logo {
        color: var(--color-white);
    }

    .footer-brand p {
        color: rgba(255, 255, 255, 0.7);
        margin-top: 0.5rem;
    }

    .footer-links {
        display: flex;
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        font-weight: 500;
    }

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

    .footer-copy {
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        padding-top: 2rem;
        width: 100%;
        max-width: 600px;
    }

    .footer-copy p {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.85rem;
    }

    /* ===================================
       RESPONSIVE
    =================================== */
    @media (max-width: 1024px) {
        .hero-container {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .hero-content {
            max-width: 100%;
        }

        .hero-subtitle {
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
        }

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

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

        .hero-visual {
            max-width: 500px;
            margin: 0 auto;
        }

        .image-stack {
            height: 450px;
        }

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

        .about-content-col {
            padding-left: 0;
            order: -1;
        }

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

        .contact-info {
            padding-right: 0;
        }
    }

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

        .mobile-toggle {
            display: flex;
        }

        .hero {
            padding: 7rem 0 3rem;
        }

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

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

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

        .gallery-item.tall {
            grid-row: span 1;
            aspect-ratio: 4/5;
        }

        .accent-card {
            right: 0;
            bottom: 20px;
        }

        .geo-circle {
            display: none;
        }
    }

    @media (max-width: 480px) {
        .hero-actions {
            flex-direction: column;
            width: 100%;
        }

        .hero-actions .btn {
            width: 100%;
        }

        .hero-stats {
            flex-direction: column;
            gap: 1rem;
        }

        .stat-divider {
            width: 40px;
            height: 1px;
        }

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

        .contact-form-wrapper {
            padding: 1.5rem;
        }
    }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {
        html {
            scroll-behavior: auto;
        }
        
        *, *::before, *::after {
            animation-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
        }
    }
