        @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --bg-primary: #0d0d0d;
            --bg-secondary: #1a1a1a;
            --bg-tertiary: #252525;
            --text-primary: #f5f5f0;
            --text-secondary: #a8a8a0;
            --accent: #c9a227;
            --accent-hover: #ddb632;
            --border: #333330;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Cormorant Garamond', Georgia, serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.7;
            font-size: 18px;
            min-height: 100vh;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(13, 13, 13, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            z-index: 1000;
            padding: 1.25rem 0;
        }
        
        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            color: var(--text-primary);
        }
        
        .logo img {
            width: 42px;
            height: 42px;
        }
        
        .logo-text {
            font-size: 1.75rem;
            font-weight: 500;
            letter-spacing: 0.02em;
        }
        
        nav {
            display: flex;
            gap: 2.5rem;
        }
        
        nav a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 400;
            transition: color 0.3s ease;
            position: relative;
        }
        
        nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent);
            transition: width 0.3s ease;
        }
        
        nav a:hover {
            color: var(--text-primary);
        }
        
        nav a:hover::after {
            width: 100%;
        }
        
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }
        
        .menu-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--text-primary);
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        main {
            padding-top: 100px;
        }
        
        .hero {
            min-height: calc(100vh - 100px);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 4rem 2rem;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
        }
        
        .hero h1 {
            font-size: clamp(3rem, 8vw, 5.5rem);
            font-weight: 300;
            letter-spacing: 0.08em;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }
        
        .hero h1 span {
            color: var(--accent);
            font-weight: 400;
        }
        
        .hero p {
            font-size: 1.35rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 2.5rem;
            font-weight: 300;
        }
        
        .btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: transparent;
            border: 1px solid var(--accent);
            color: var(--accent);
            text-decoration: none;
            font-size: 1.1rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .btn:hover {
            background: var(--accent);
            color: var(--bg-primary);
        }
        
        .section {
            padding: 8rem 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 5rem;
        }
        
        .section-header h2 {
            font-size: 2.75rem;
            font-weight: 300;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
        }
        
        .section-header p {
            color: var(--text-secondary);
            max-width: 500px;
            margin: 0 auto;
            font-size: 1.15rem;
        }
        
        .features {
            background: var(--bg-secondary);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }
        
        .feature-card {
            padding: 2.5rem;
            background: var(--bg-tertiary);
            border: 1px solid var(--border);
            transition: all 0.4s ease;
        }
        
        .feature-card:hover {
            border-color: var(--accent);
            transform: translateY(-5px);
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 1rem;
            letter-spacing: 0.05em;
        }
        
        .feature-card p {
            color: var(--text-secondary);
            font-size: 1.05rem;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }
        
        .about-text h2 {
            font-size: 2.75rem;
            font-weight: 300;
            letter-spacing: 0.08em;
            margin-bottom: 1.5rem;
        }
        
        .about-text p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        .about-visual {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            padding: 4rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .about-visual img {
            width: 200px;
            height: 200px;
            opacity: 0.9;
        }
        
        .contact {
            background: var(--bg-secondary);
            text-align: center;
        }
        
        .contact p {
            color: var(--text-secondary);
            margin-bottom: 2rem;
            font-size: 1.15rem;
        }
        
        .contact .btn {
            margin-top: 1rem;
        }
        
        footer {
            padding: 3rem 0;
            border-top: 1px solid var(--border);
            text-align: center;
        }
        
        footer p {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }
        
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                background: var(--bg-primary);
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
                border-bottom: 1px solid var(--border);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
            }
            
            nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .hero h1 {
                font-size: 2.75rem;
            }
            
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .about-visual {
                order: -1;
                padding: 2rem;
            }
            
            .section {
                padding: 5rem 0;
            }
        }
