 @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');
        
        :root {
            --cream: #faf7f2;
            --beige: #e8dcc4;
            --charcoal: #3a3633;
            --rose: #d4a5a5;
            --rose-light: #e8c4c4;
            --gold: #c9a961;
            --gold-light: #e6d5a8;
            --white: #ffffff;
            --gray: #6b6764;
            --gray-light: #a39d98;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Outfit', sans-serif;
            color: var(--charcoal);
            line-height: 1.7;
            overflow-x: hidden;
            background: var(--cream);
        }
        
        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(250, 247, 242, 0.98);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 1.5rem 0;
            border-bottom: 1px solid rgba(201, 169, 97, 0.2);
            transition: all 0.3s ease;
        }
        
        nav.scrolled {
            padding: 1rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }
        
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--charcoal);
            text-decoration: none;
            letter-spacing: 1px;
            position: relative;
        }
        
        .logo::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--gold);
        }
        
        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
        }
        
        .nav-links a {
            color: var(--charcoal);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-links a::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-links a:hover {
            color: var(--gold);
        }
        
        .nav-links a:hover::before {
            width: 100%;
        }
        
        .nav-book {
            background: var(--gold);
            color: var(--white);
            padding: 0.7rem 1.8rem;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .nav-book:hover {
            background: var(--charcoal);
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(58, 54, 51, 0.2);
        }
        
        .nav-book::before {
            display: none;
        }
        
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }
        
        .mobile-toggle span {
            width: 25px;
            height: 2px;
            background: var(--charcoal);
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(58, 54, 51, 0.3), rgba(58, 54, 51, 0.3)),
                        linear-gradient(135deg, var(--beige) 0%, var(--cream) 100%);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle, var(--rose-light) 1px, transparent 1px);
            background-size: 30px 30px;
            opacity: 0.15;
        }
        
        .hero::after {
            content: '✂';
            position: absolute;
            font-size: 15rem;
            color: var(--gold);
            opacity: 0.05;
            top: 50%;
            right: 10%;
            transform: translateY(-50%) rotate(-15deg);
        }
        
        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
            animation: fadeInUp 1s ease-out;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero-badge {
            display: inline-block;
            background: var(--white);
            color: var(--gold);
            padding: 0.6rem 1.5rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 2rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: 1px solid var(--gold);
        }
        
        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 5rem;
            font-weight: 600;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--charcoal);
            max-width: 800px;
        }
        
        .hero h1 .highlight {
            color: var(--gold);
            font-style: italic;
        }
        
        .hero p {
            font-size: 1.3rem;
            color: var(--gray);
            margin-bottom: 3rem;
            max-width: 600px;
            font-weight: 300;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 1.1rem 2.5rem;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border-radius: 30px;
            font-family: 'Outfit', sans-serif;
            display: inline-block;
        }
        
        .btn-primary {
            background: var(--gold);
            color: var(--white);
            box-shadow: 0 5px 20px rgba(201, 169, 97, 0.3);
        }
        
        .btn-primary:hover {
            background: var(--charcoal);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(58, 54, 51, 0.3);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--charcoal);
            border: 2px solid var(--charcoal);
        }
        
        .btn-secondary:hover {
            background: var(--charcoal);
            color: var(--white);
        }
        
        /* Section Styles */
        section {
            padding: 7rem 2rem;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 5rem;
        }
        
        .section-tag {
            display: inline-block;
            color: var(--gold);
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }
        
        .section-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--charcoal);
        }
        
        .section-header p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
            font-weight: 300;
        }
        
        /* About Section */
        #about {
            background: var(--white);
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            margin-bottom: 5rem;
        }
        
        .about-image {
            position: relative;
            height: 500px;
            background: linear-gradient(135deg, var(--beige) 0%, var(--rose-light) 100%);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }
        
        .about-image::before {
            content: '💇';
            position: absolute;
            font-size: 8rem;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0.3;
        }
        
        .about-text h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--charcoal);
            font-weight: 600;
        }
        
        .about-text p {
            color: var(--gray);
            margin-bottom: 1.5rem;
            line-height: 1.9;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }
        
        .team-card {
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
        }
        
        .team-photo {
            width: 200px;
            height: 200px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, var(--rose) 0%, var(--gold-light) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            position: relative;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }
        
        .team-card h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--charcoal);
            font-weight: 600;
        }
        
        .team-card .title {
            color: var(--gold);
            font-size: 0.95rem;
            font-weight: 500;
            margin-bottom: 1rem;
        }
        
        .team-card p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.7;
        }
        
        /* Services Section */
        #services {
            background: var(--cream);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
        }
        
        .service-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(201, 169, 97, 0.2);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border-color: var(--gold);
        }
        
        .service-header {
            height: 250px;
            background: linear-gradient(135deg, var(--beige) 0%, var(--rose-light) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 6rem;
            position: relative;
            overflow: hidden;
        }
        
        .service-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
        }
        
        .service-content {
            padding: 2.5rem;
        }
        
        .service-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--charcoal);
            font-weight: 600;
        }
        
        .service-content p {
            color: var(--gray);
            margin-bottom: 2rem;
            line-height: 1.8;
        }
        
        .service-list {
            list-style: none;
            margin-bottom: 2rem;
        }
        
        .service-list li {
            padding: 1rem 0;
            border-bottom: 1px solid rgba(201, 169, 97, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .service-list li:last-child {
            border-bottom: none;
        }
        
        .service-name {
            font-weight: 500;
            color: var(--charcoal);
        }
        
        .service-price {
            color: var(--gold);
            font-weight: 600;
        }
        
        /* Gallery Section */
        #gallery {
            background: var(--white);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .gallery-item {
            position: relative;
            height: 350px;
            background: linear-gradient(135deg, var(--beige) 0%, var(--rose-light) 100%);
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }
        
        .gallery-item::before {
            content: attr(data-label);
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem;
            background: linear-gradient(to top, rgba(58, 54, 51, 0.9), transparent);
            color: var(--white);
            font-weight: 600;
            font-size: 1.1rem;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover::before {
            transform: translateY(0);
        }
        
        .gallery-icon {
            font-size: 5rem;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0.4;
        }
        
        /* Testimonials Section */
        #testimonials {
            background: var(--cream);
        }
        
        .testimonials-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }
        
        .testimonial-card {
            background: var(--white);
            padding: 4rem;
            border-radius: 10px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            text-align: center;
            display: none;
        }
        
        .testimonial-card.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .testimonial-quote {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            line-height: 1.7;
            color: var(--charcoal);
            margin-bottom: 2rem;
            font-style: italic;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
        }
        
        .author-photo {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--rose) 0%, var(--gold) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }
        
        .author-info h4 {
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: 0.3rem;
        }
        
        .author-info .rating {
            color: var(--gold);
            font-size: 1.1rem;
        }
        
        .testimonial-nav {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 3rem;
        }
        
        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--gray-light);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .nav-dot.active {
            background: var(--gold);
            transform: scale(1.3);
        }
        
        /* Contact Section */
        #contact {
            background: var(--white);
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        
        .contact-item {
            display: flex;
            gap: 1.5rem;
            padding: 2rem;
            background: var(--cream);
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .contact-item:hover {
            background: var(--beige);
            transform: translateX(5px);
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--rose) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            flex-shrink: 0;
        }
        
        .contact-details h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            color: var(--charcoal);
            font-weight: 600;
        }
        
        .contact-details p {
            color: var(--gray);
            line-height: 1.7;
        }
        
        .map-container {
            margin-top: 2rem;
            height: 350px;
            background: var(--beige);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
        }
        
        .map-placeholder {
            text-align: center;
            color: var(--gray);
        }
        
        .map-placeholder-icon {
            font-size: 4rem;
            color: var(--gold);
            margin-bottom: 1rem;
        }
        
        .contact-form {
            background: var(--cream);
            padding: 3rem;
            border-radius: 10px;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.7rem;
            color: var(--charcoal);
            font-weight: 600;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            border: 2px solid rgba(201, 169, 97, 0.2);
            border-radius: 8px;
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: var(--white);
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }
        
        /* Newsletter */
        .newsletter {
            background: linear-gradient(135deg, var(--charcoal) 0%, var(--gray) 100%);
            padding: 5rem 2rem;
            text-align: center;
            color: var(--white);
        }
        
        .newsletter h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }
        
        .newsletter p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            gap: 1rem;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 1.1rem;
            border: none;
            border-radius: 30px;
            font-family: 'Outfit', sans-serif;
        }
        
        .newsletter-form button {
            padding: 1.1rem 2.5rem;
            background: var(--gold);
            color: var(--white);
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background: var(--rose);
            transform: translateY(-2px);
        }
        
        /* Footer */
        footer {
            background: var(--charcoal);
            color: var(--white);
            padding: 4rem 2rem 2rem;
        }
        
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }
        
        .footer-about h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }
        
        .footer-about p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
        }
        
        .social-icon {
            width: 45px;
            height: 45px;
            background: rgba(201, 169, 97, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background: var(--gold);
            color: var(--white);
            transform: translateY(-3px);
        }
        
        .footer-section h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
            color: var(--gold);
        }
        
        .footer-section a {
            display: block;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            margin-bottom: 0.8rem;
            transition: all 0.3s ease;
        }
        
        .footer-section a:hover {
            color: var(--gold);
            padding-left: 5px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 3.5rem;
            }
            
            .about-content,
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 85px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 85px);
                background: var(--cream);
                flex-direction: column;
                padding: 3rem 2rem;
                transition: left 0.3s ease;
                align-items: flex-start;
                gap: 2rem;
                border-top: 1px solid rgba(201, 169, 97, 0.2);
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .mobile-toggle {
                display: flex;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .section-header h2 {
                font-size: 2.5rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                width: 100%;
                max-width: 350px;
            }
            
            .btn {
                width: 100%;
                text-align: center;
            }
            
            .services-grid,
            .gallery-grid,
            .team-grid {
                grid-template-columns: 1fr;
            }
            
            section {
                padding: 4rem 1.5rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
        }
        
        /* Scroll Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
