
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-orange: #595959;
            --soft-orange: #e4d6c4;
            --charcoal: #2b1000;
            --warm-gray: #8B8680;
            --light-gray: #F8F6F3;
            --pure-white: #FFFFFF;
            --elegant-serif: 'Playfair Display', serif;
            --modern-sans: 'Inter', sans-serif;
        }

        body {
            font-family: var(--modern-sans);
            line-height: 1.6;
            color: var(--charcoal);
            background-color: rgba(223, 207, 191, 0.61);
            overflow-x: hidden;
        }

        

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgb(248, 241, 234);
            backdrop-filter: blur(18px) saturate(1.2);
            z-index: 1000;
            padding: 0.8rem 0;
            border-bottom: 1.5px solid rgba(44,44,44,0.08);
            box-shadow: 0 2px 18px 0 rgba(44,44,44,0.03);
            transition: all 0.25s cubic-bezier(.4,0,.2,1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 1.5rem;
        }

        .logo {
            font-family: var(--elegant-serif);
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--charcoal);
            text-decoration: none;
            letter-spacing: 2px;
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 2.2rem;
            align-items: center;
            transition: all 0.3s;
        }
        .nav-link {
            text-decoration: none;
            color: var(--charcoal);
            font-size: 1rem;
            font-weight: 500;
            position: relative;
            padding: 0.3rem 0;
            transition: color 0.25s cubic-bezier(.4,0,.2,1);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-orange), var(--charcoal) 90%);
            border-radius: 2px;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.32s cubic-bezier(.4,0,.2,1);
            opacity: 0.8;
        }
        .nav-link:hover::after,
        .nav-link:focus::after {
            transform: scaleX(1);
        }
        .nav-link:hover,
        .nav-link:focus {
            color: var(--primary-orange);
        }

        /* Hamburger Icon */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 99999;
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
        }
        @media (max-width: 900px) {
            .nav-toggle {
                display: flex;
            }
            .nav-links {
                flex-direction: column;
                box-shadow: -2px 0 24px 0 rgba(44,44,44,0.07);
                border-left: 1.5px solid rgba(44,44,44,0.08);
            }
            .nav-link {
                color: var(--charcoal) !important;
                font-size: 1.2rem;
                text-align: center;
                width: 100%;
            }
        }
        .hamburger {
            display: block;
            width: 28px;
            height: 3px;
            background: var(--charcoal);
            border-radius: 2px;
            position: relative;
            transition: background 0.3s;
        }
        .hamburger::before,
        .hamburger::after {
            content: '';
            position: absolute;
            left: 0;
            width: 28px;
            height: 3px;
            background: var(--charcoal);
            border-radius: 2px;
            transition: transform 0.32s cubic-bezier(.4,0,.2,1), top 0.32s, bottom 0.32s;
        }
        .hamburger::before {
            top: -9px;
        }
        .hamburger::after {
            bottom: -9px;
        }
        .nav-toggle.active .hamburger {
            background: transparent;
        }
        .nav-toggle.active .hamburger::before {
            transform: translateY(9px) rotate(45deg);
        }
        .nav-toggle.active .hamburger::after {
            transform: translateY(-9px) rotate(-45deg);
        }

        /* Responsive Navigation */
        @media (max-width: 900px) {
            .nav-container {
                padding: 0 1rem;
            }
            .nav-links {
                position: fixed;
                top: 0;
                right: -100vw;
                height: 100vh;
                width: 70vw;
                max-width: 340px;
                background: rgba(255,255,255,0.98);
                backdrop-filter: blur(16px);
                box-shadow: -2px 0 24px 0 rgba(44,44,44,0.07);
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 2.5rem;
                padding: 0;
                z-index: 1200;
                transition: right 0.35s cubic-bezier(.4,0,.2,1), opacity 0.2s;
                opacity: 0;
                pointer-events: none;
            }
            .nav-links.active {
                right: 0;
                opacity: 1;
                pointer-events: auto;
            }
            .nav-toggle {
                max-width: none;
                padding: 0;
                gap: 2rem;
            }
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.1)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23F8F6F3" width="1200" height="800"/><circle cx="300" cy="200" r="100" fill="%23000000" opacity="0.4"/><circle cx="900" cy="600" r="150" fill="%23000000" opacity="0.1"/></svg>');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
        }

        .hero-content {
            max-width: 800px;
            padding: 0 2rem;
            animation: fadeInUp 1.2s ease-out;
        }

        .hero h1 {
            font-family: var(--elegant-serif);
            font-size: 4rem;
            font-weight: 400;
            margin-bottom: 2rem;
            line-height: 1.2;
            letter-spacing: 1px;
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--warm-gray);
            margin-bottom: 3rem;
            font-weight: 300;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 3rem;
            background-color: rgb(31, 31, 31);
            border-radius: 5px;
            color: rgb(255, 255, 255);
            text-decoration: none;
            border: 2px solid white;
            transition: all 0.4s ease;
            font-weight: 400;
            letter-spacing: 1px;
            font-size: 0.95rem;
        }

        .cta-button:hover {
            background-color: rgb(216, 216, 216);    
            border-color: var(--primary-orange);
            color: rgb(0, 0, 0);
            transform: translateY(-2px);
        }

        /* Featured Section */
        .featured {
            padding: 8rem 0;
            background-color: var(--light-gray);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 6rem;
        }

        .section-title {
            font-family: var(--elegant-serif);
            font-size: 2.5rem;
            font-weight: 400;
            margin-bottom: 1.5rem;
            letter-spacing: 0.5px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--warm-gray);
            max-width: 600px;
            margin: 0 auto;
            font-weight: 300;
        }

        .featured-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .featured-image {
            width: 100%;
            height: 500px;
            background: linear-gradient(45deg, var(--soft-orange), rgba(248, 246, 243, 0.8));
            border-radius: 0;
            overflow: hidden;
            position: relative;
            transition: transform 0.6s ease;
        }

        .featured-image:hover {
            transform: scale(1.02);
        }

        .featured-image::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            border: 2px solid var(--primary-orange);
            border-radius: 50%;
        }

        .featured-content {
            padding: 2rem;
        }

        .featured-content h3 {
            font-family: var(--elegant-serif);
            font-size: 2rem;
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .featured-content p {
            color: var(--warm-gray);
            margin-bottom: 2rem;
            font-size: 1rem;
            line-height: 1.7;
        }

        .learn-more {
            color: var(--primary-orange);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .learn-more::after {
            content: '→';
            margin-left: 0.5rem;
            transition: transform 0.3s ease;
        }

        .learn-more:hover::after {
            transform: translateX(5px);
        }

        /* Collections Grid */
        .collections {
            padding: 8rem 0;
            background-color: var(--pure-white);
        }

        .collections-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 4rem;
        }

        .collection-item {
            text-align: center;
            transition: transform 0.4s ease;
        }

        .collection-item:hover {
            transform: translateY(-10px);
        }

        .collection-image {
            width: 100%;
            height: 400px;
            background: var(--light-gray);
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
        }

        .collection-image::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            border: 1px solid var(--warm-gray);
            opacity: 0.6;
        }

        .collection-item h4 {
            font-family: var(--elegant-serif);
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .collection-item p {
            color: var(--warm-gray);
            font-size: 0.95rem;
        }

        /* Story Section */
        .story {
            padding: 8rem 0;
            background-color: rgb(251, 247, 243);
            color: black;
        }

        .story-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .story h2 {
            font-family: var(--elegant-serif);
            font-size: 3rem;
            margin-bottom: 2rem;
            font-weight: 400;
        }

        .story p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: rgba(0, 0, 0, 0.8);
            margin-bottom: 2rem;
        }

        /* Footer */
        .footer {
            background-color: var(--light-gray);
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(139, 134, 128, 0.1);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h5 {
            font-family: var(--elegant-serif);
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.8rem;
        }

        .footer-section ul li a {
            color: var(--warm-gray);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: var(--primary-orange);
        }

        .footer-bottom {
            border-top: 1px solid rgba(139, 134, 128, 0.1);
            padding-top: 2rem;
            text-align: center;
            color: var(--warm-gray);
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                /* display: none; removed to allow menu to show when active */
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .featured-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .collections-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
    

        