
    <style>
        :root {
            --bg-color: #0d0d0d;
            --primary-gold: #d4af37;
            --accent-maroon: #58181a;
            --text-light: #f5f5f7;
            --text-muted: #a1a1a6;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Playfair Display', 'Georgia', serif;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-light);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Background Graphics simulating the artwork */
        body::before {
            content: '';
            position: absolute;
            top: -10%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
            z-index: -1;
            pointer-events: none;
        }

        /* Navigation */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2rem 4rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-text {
            font-size: 1.8rem;
            color: var(--primary-gold);
            letter-spacing: 1px;
            font-weight: 600;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        nav ul li a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s ease;
        }

        nav ul li a:hover {
            color: var(--primary-gold);
        }

        /* Hero Section */
        .hero {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem;
            min-height: 80vh;
            gap: 4rem;
        }

        .hero-content {
            flex: 1;
            max-width: 600px;
        }

        .tagline {
            font-size: 1.1rem;
            text-transform: uppercase;
            color: var(--primary-gold);
            letter-spacing: 3px;
            margin-bottom: 1rem;
        }

        .hero h1 {
            font-size: 4rem;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            font-weight: 400;
        }

        .hero h1 span {
            color: var(--primary-gold);
            display: block;
            font-size: 4.5rem;
            margin-top: 0.5rem;
        }

        .hero p {
            color: var(--text-muted);
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            font-family: 'sans-serif';
            font-weight: 300;
        }

        /* Core Pillars Component */
        .pillars {
            display: flex;
            gap: 1.5rem;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 2px;
            color: var(--primary-gold);
            margin-bottom: 3rem;
            border-left: 2px solid var(--accent-maroon);
            padding-left: 1rem;
        }

        .cta-btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--accent-maroon) 0%, #3a1011 100%);
            color: white;
            padding: 1rem 2.5rem;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            border: 1px solid var(--primary-gold);
            border-radius: 4px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(88, 24, 26, 0.4);
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
            background: var(--primary-gold);
            color: var(--bg-color);
        }

        /* Hero Image Container */
        .hero-image-wrapper {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        /* Golden Brushstroke Ring Effect */
        .hero-image-wrapper::before {
            content: '';
            position: absolute;
            width: 105%;
            height: 105%;
            border: 2px dashed rgba(212, 175, 55, 0.3);
            border-radius: 50%;
            animation: rotate 40s linear infinite;
        }

        .hero-image {
            width: 100%;
            max-width: 500px;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.7);
            border: 1px solid rgba(212, 175, 55, 0.2);
            z-index: 2;
        }

        @keyframes rotate {
            100% { transform: rotate(360deg); }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero {
                flex-direction: column-reverse;
                text-align: center;
                padding: 2rem;
            }
            nav {
                flex-direction: column;
                gap: 1.5rem;
                padding: 2rem;
            }
            .pillars {
                justify-content: center;
                border-left: none;
                padding-left: 0;
            }
            .hero h1 {
                font-size: 3rem;
            }
            .hero h1 span {
                font-size: 3.5rem;
            }
        }
    </style>
