        :root {
            --cream: #f8f6f2;
            --beige: #e8ded0;
            --deep-green: #2c4f3b;
            --muted-purple: #6b2a7a;
            --soft-gold: #c8a971;
            --dark-text: #333333;
            --light-text: #f8f6f2;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            background-color: var(--cream);
            color: var(--dark-text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 0;
            z-index: 1000;
            transition: all 0.4s ease;
            background-color: transparent;
        }
        
        header.scrolled {
            background-color: rgba(248, 246, 242, 0.95);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
        }
        
        .logo-img {
            height: 50px; /* Adjust based on your logo's proportions */
            width: auto;
            transition: all 0.3s ease;
        }
        
        .logo-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--deep-green);
            letter-spacing: 1.5px;
            margin-left: 10px;
        }
        
        .logo-accent {
            color: var(--soft-gold);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        .nav-link {
            text-decoration: none;
            color: var(--deep-green);
            font-weight: 500;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--soft-gold);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .nav-link:hover {
            color: var(--soft-gold);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--deep-green);
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 80px 20px;
            overflow: hidden;
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1596927874255-b6f0e059402e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.2;
            z-index: -1;
        }
        
        .hero-content {
            max-width: 800px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1.5s ease forwards 0.5s;
        }
        
        .hero-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 4rem;
            font-weight: 300;
            color: var(--deep-green);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            color: var(--muted-purple);
            margin-bottom: 40px;
            font-weight: 300;
        }
        
        .launching-soon {
            display: inline-block;
            font-size: 2.2rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--soft-gold);
            margin-bottom: 40px;
            padding: 10px 20px;
            border: 1px solid var(--soft-gold);
            animation: pulse 2s infinite;
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
            background-color: var(--beige);
            position: relative;
        }
        
        .onion-divider {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .onion-icon {
            font-size: 3rem;
            color: var(--muted-purple);
            opacity: 0.7;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
            opacity: 0;
            transform: translateX(-50px);
        }
        
        .about-text.animated {
            animation: fadeInLeft 1s ease forwards;
        }
        
        .about-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            color: var(--deep-green);
            margin-bottom: 20px;
        }
        
        .about-description {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 30px;
        }
        
        .about-image {
            flex: 1;
            opacity: 0;
            transform: translateX(50px);
        }
        
        .about-image.animated {
            animation: fadeInRight 1s ease forwards;
        }
        
        .about-img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        /* Newsletter Section */
        .newsletter {
            padding: 100px 0;
            background-color: var(--cream);
            text-align: center;
        }
        
        .newsletter-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            color: var(--deep-green);
            margin-bottom: 20px;
        }
        
        .newsletter-description {
            max-width: 600px;
            margin: 0 auto 40px;
            font-size: 1.1rem;
        }
        
        .subscription-form {
            max-width: 500px;
            margin: 0 auto;
        }
        
        .form-group {
            display: flex;
            gap: 15px;
        }
        
        input[type="email"] {
            flex: 1;
            padding: 15px 20px;
            border: 1px solid var(--beige);
            border-radius: 4px;
            font-family: 'Open Sans', sans-serif;
            font-size: 1rem;
            background: white;
            transition: all 0.3s ease;
        }
        
        input[type="email"]:focus {
            outline: none;
            border-color: var(--soft-gold);
            box-shadow: 0 0 0 2px rgba(200, 169, 113, 0.3);
        }
        
        .btn {
            padding: 15px 30px;
            background-color: var(--deep-green);
            color: white;
            border: none;
            border-radius: 4px;
            font-family: 'Open Sans', sans-serif;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn:hover {
            background-color: var(--muted-purple);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* Footer */
        footer {
            background-color: var(--deep-green);
            color: var(--light-text);
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--light-text);
            margin-bottom: 20px;
        }
        
        .footer-about {
            flex: 1;
            min-width: 300px;
        }
        
        .footer-links {
            flex: 1;
            min-width: 200px;
        }
        
        .footer-links-title {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--soft-gold);
        }
        
        .footer-links-list {
            list-style: none;
        }
        
        .footer-link {
            display: block;
            color: var(--light-text);
            text-decoration: none;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }
        
        .footer-link:hover {
            color: var(--soft-gold);
            transform: translateX(5px);
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--light-text);
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background-color: var(--soft-gold);
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes fadeInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(200, 169, 113, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(200, 169, 113, 0); }
            100% { box-shadow: 0 0 0 0 rgba(200, 169, 113, 0); }
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-text, .about-image {
                transform: none;
            }
            
            .about-text.animated {
                animation: fadeInUp 1s ease forwards;
            }
            
            .about-image.animated {
                animation: fadeInUp 1s ease forwards 0.3s;
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                background-color: var(--cream);
                width: 100%;
                flex-direction: column;
                gap: 0;
                padding: 20px 0;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                transition: all 0.4s ease;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-link {
                display: block;
                padding: 15px 30px;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .form-group {
                flex-direction: column;
            }
            
            .logo-text {
                font-size: 1.5rem;
            }
            
            .logo-img {
                height: 40px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .about-title, .newsletter-title {
                font-size: 2rem;
            }
            
            .launching-soon {
                font-size: 1.8rem;
            }
            
            .logo-text {
                display: none;
            }
        }