        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --dark-bg: #0A0A0A;
            --dark-secondary: #1A1A1A;
            --dark-tertiary: #2A2A2A;
            --gold: #B09256;
            --gold-light: #C4A266;
            --blue: #1E88E5;
            --blue-light: #42A5F5;
            --text-primary: #F5F5F5;
            --text-secondary: #B8B8B8;
            --text-tertiary: #888888;
        }

        body {
            font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-primary);
            line-height: 1.7;
            font-weight: 300;
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            padding: 1.5rem 5%;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(176, 146, 86, 0.15);
        }

        .nav-container {
            max-width: 1600px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            cursor: pointer;
            transition: opacity 0.3s ease;
        }

        .logo-container:hover {
            opacity: 0.8;
        }

        .logo-image {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            font-size: 2rem;
            color: var(--dark-bg);
            letter-spacing: -1px;
        }

        .logo-image-img {
            width: 55px;
            height: 55px;
            object-fit: contain;
        }

        .logo-text-container {
            display: flex;
            flex-direction: column;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--gold);
            letter-spacing: 3px;
            font-family: 'Work Sans', sans-serif;
        }

        .logo-subtext {
            font-size: 0.65rem;
            color: var(--text-tertiary);
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 400;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 3rem;
        }

        nav a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 400;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        nav a:hover {
            color: var(--gold);
        }

        nav a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            min-height: 40vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(170deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
            text-align: center;
            padding: 8rem 5% 3rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(176, 146, 86, 0.08) 0%, transparent 70%);
            filter: blur(60px);
        }

        .hero-content {
            max-width: 1000px;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 5rem;
            margin-bottom: 1.5rem;
            color: var(--gold);
            letter-spacing: 4px;
            font-weight: 300;
            font-family: 'Cormorant Garamond', serif;
            line-height: 1.1;
        }

        .hero-description {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.9;
            max-width: 750px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
        }

        /* Blog Section */
        section {
            padding: 2rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: 1fr;
            max-width: 600px;
            margin: 2rem auto 0;
        }

        .blog-card-link {
            text-decoration: none;
            display: block;
            color: inherit;
        }

        .blog-card {
            background: var(--dark-secondary);
            border-radius: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(176, 146, 86, 0.15);
            cursor: pointer;
        }

        .blog-card:hover {
            transform: translateY(-8px);
            border-color: var(--gold);
        }

        .blog-card-link:hover .blog-card h2 {
            color: var(--blue-light);
        }

        .blog-image {
            height: 280px;
            background: linear-gradient(135deg, var(--blue) 0%, var(--gold) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            position: relative;
            overflow: hidden;
        }

        .blog-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent 0%, rgba(0,0,0,0.3) 100%);
        }

        .blog-content {
            padding: 3rem;
        }

        .blog-date {
            color: var(--text-tertiary);
            font-size: 0.8rem;
            margin-bottom: 0.8rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-weight: 500;
        }

        .blog-card h2 {
            color: var(--gold);
            margin-bottom: 1.5rem;
            font-size: 2rem;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 400;
            line-height: 1.3;
        }

        .blog-excerpt {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 2rem;
            font-weight: 300;
            font-size: 1.05rem;
        }

        .read-more {
            color: var(--blue-light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .read-more:hover {
            color: var(--gold);
        }

        /* Footer */
        footer {
            background: var(--dark-bg);
            border-top: 1px solid rgba(176, 146, 86, 0.2);
            padding: 2rem 5%;
            text-align: center;
        }

        .footer-content {
            max-width: 1600px;
            margin: 0 auto;
        }

        .copyright {
            color: var(--text-tertiary);
            font-size: 0.85rem;
            font-weight: 300;
            letter-spacing: 0.5px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .blog-grid {
                max-width: 500px;
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 1rem 5%;
            }

            nav ul {
                gap: 1rem;
                font-size: 0.85rem;
            }

            .logo-image-img {
                width: 45px;
                height: 45px;
            }

            .logo-text {
                font-size: 1.2rem;
            }

            .logo-subtext {
                font-size: 0.6rem;
            }

            .hero {
                padding: 8rem 5% 4rem;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .hero-description {
                font-size: 1rem;
            }

            .blog-grid {
                grid-template-columns: 1fr;
                max-width: 100%;
            }

            .blog-image {
                height: 220px;
            }

            .blog-content {
                padding: 2rem;
            }

            .blog-card h2 {
                font-size: 1.6rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.2rem;
            }

            .logo-image-img {
                width: 40px;
                height: 40px;
            }

            .logo-text {
                font-size: 1rem;
            }

            nav ul {
                flex-wrap: wrap;
                gap: 0.8rem;
            }

            .blog-image {
                height: 180px;
                font-size: 3rem;
            }

            .blog-content {
                padding: 1.5rem;
            }

            .blog-card h2 {
                font-size: 1.4rem;
            }
        }

        html {
            scroll-behavior: smooth;
        }
