:root {
            --black: #000000;
            --dark: #0a0a0a;
            --dark-gray: #1a1a1a;
            --mid-gray: #2a2a2a;
            --light-gray: #888888;
            --off-white: #f5f5f5;
            --white: #ffffff;
            --gold: #c9a962;
            --gold-light: #e8d5a3;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--black);
            color: var(--white);
            overflow-x: hidden;
        }

        /* ============================================
           NAVIGATION
        ============================================ */

        /* Mobile Menu */

        /* ============================================
           HERO - SPLIT SCREEN
        ============================================ */
        .hero-split {
            min-height: 100vh;
            display: flex;
            padding-top: 80px;
        }

        .hero-side {
            flex: 1;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            min-height: 100vh;
        }

        .hero-side-left {
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
        }

        .hero-side-right {
            background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
        }

        .hero-image-container {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding-top: 60px;
        }

        .hero-image {
            max-height: 85vh;
            width: auto;
            max-width: 90%;
            object-fit: contain;
            object-position: bottom;
            filter: grayscale(20%);
            transition: filter 0.5s ease;
        }

        .hero-side:hover .hero-image {
            filter: grayscale(0%);
        }

        .hero-side-content {
            position: absolute;
            bottom: 80px;
            left: 0;
            right: 0;
            text-align: center;
            padding: 0 30px;
            z-index: 10;
        }

        .hero-label {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 0.75rem;
            letter-spacing: 0.3rem;
            color: var(--gold);
            margin-bottom: 10px;
        }

        .hero-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 15px;
        }

        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
        }

        .hero-tag {
            font-size: 0.6rem;
            letter-spacing: 0.1rem;
            color: var(--light-gray);
            padding: 6px 14px;
            border: 1px solid var(--mid-gray);
        }

        .hero-divider {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 1px;
            height: 60%;
            background: linear-gradient(to bottom, transparent, var(--gold), transparent);
            z-index: 20;
        }

        .hero-divider-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: var(--black);
            padding: 20px 15px;
            z-index: 21;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1rem;
            font-style: italic;
            color: var(--gold);
            writing-mode: vertical-rl;
            letter-spacing: 0.2rem;
        }

        /* ============================================
           BIO SECTION
        ============================================ */
        .bio-section {
            padding: 100px 40px;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .bio-quote {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            font-style: italic;
            font-weight: 300;
            line-height: 1.6;
            color: var(--white);
            margin-bottom: 40px;
        }

        .bio-quote span {
            color: var(--gold);
        }

        .bio-text {
            font-size: 0.9rem;
            line-height: 2;
            color: var(--light-gray);
            max-width: 700px;
            margin: 0 auto;
        }

        /* ============================================
           CREDENTIALS DASHBOARD
        ============================================ */
        .credentials-section {
            padding: 80px 40px;
            background: linear-gradient(180deg, var(--black) 0%, var(--dark) 100%);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-label {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 0.7rem;
            letter-spacing: 0.3rem;
            color: var(--gold);
            margin-bottom: 15px;
        }

        .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 300;
        }

        .credentials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .credential-card {
            background: var(--dark-gray);
            border: 1px solid var(--mid-gray);
            padding: 35px;
            transition: all 0.3s ease;
        }

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

        .credential-icon {
            width: 50px;
            height: 50px;
            border: 1px solid var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .credential-label {
            font-size: 0.6rem;
            letter-spacing: 0.2rem;
            color: var(--gold);
            margin-bottom: 8px;
        }

        .credential-value {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 10px;
        }

        .credential-detail {
            font-size: 0.75rem;
            color: var(--light-gray);
            line-height: 1.6;
        }

        /* Status Badge */
        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(201, 169, 98, 0.1);
            border: 1px solid var(--gold);
            margin-top: 10px;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background: #4ade80;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .status-text {
            font-size: 0.65rem;
            letter-spacing: 0.15rem;
            color: var(--gold);
        }

        /* ============================================
           SKILLS SECTION
        ============================================ */
        .skills-section {
            padding: 80px 40px;
            background: var(--dark);
        }

        .skills-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            max-width: 900px;
            margin: 0 auto;
        }

        .skill-tag {
            padding: 12px 25px;
            background: transparent;
            border: 1px solid var(--mid-gray);
            font-size: 0.7rem;
            letter-spacing: 0.1rem;
            color: var(--white);
            transition: all 0.3s ease;
        }

        .skill-tag:hover {
            border-color: var(--gold);
            color: var(--gold);
            transform: translateY(-3px);
        }

        /* ============================================
           VENTURES SECTION
        ============================================ */
        .ventures-section {
            padding: 80px 40px;
            background: var(--black);
        }

        .ventures-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .venture-card {
            background: linear-gradient(135deg, var(--dark-gray) 0%, var(--dark) 100%);
            border: 1px solid var(--mid-gray);
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .venture-card:hover {
            border-color: var(--gold);
        }

        .venture-type {
            font-size: 0.55rem;
            letter-spacing: 0.2rem;
            color: var(--gold);
            margin-bottom: 12px;
        }

        .venture-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            font-weight: 400;
            margin-bottom: 10px;
        }

        .venture-desc {
            font-size: 0.7rem;
            color: var(--light-gray);
            line-height: 1.6;
        }

        /* ============================================
           TIMELINE
        ============================================ */
        .timeline-section {
            padding: 80px 40px;
            background: var(--dark);
        }

        .timeline {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            height: 100%;
            background: var(--mid-gray);
        }

        .timeline-item {
            display: flex;
            justify-content: flex-end;
            padding-right: 50%;
            margin-bottom: 40px;
            position: relative;
        }

        .timeline-item:nth-child(even) {
            justify-content: flex-start;
            padding-right: 0;
            padding-left: 50%;
        }

        .timeline-content {
            max-width: 280px;
            padding: 25px;
            background: var(--dark-gray);
            border: 1px solid var(--mid-gray);
            position: relative;
        }

        .timeline-item:nth-child(odd) .timeline-content {
            margin-right: 30px;
        }

        .timeline-item:nth-child(even) .timeline-content {
            margin-left: 30px;
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 12px;
            height: 12px;
            background: var(--gold);
            border-radius: 50%;
            z-index: 1;
        }

        .timeline-year {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 0.8rem;
            letter-spacing: 0.2rem;
            color: var(--gold);
            margin-bottom: 8px;
        }

        .timeline-title {
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 5px;
        }

        .timeline-desc {
            font-size: 0.7rem;
            color: var(--light-gray);
        }

        /* ============================================
           CTA SECTION
        ============================================ */
        .cta-section {
            padding: 100px 40px;
            text-align: center;
            background: linear-gradient(180deg, var(--dark) 0%, var(--black) 100%);
        }

        .cta-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 20px;
        }

        .cta-subtitle {
            font-size: 0.85rem;
            color: var(--light-gray);
            margin-bottom: 40px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-btn {
            display: inline-block;
            padding: 18px 50px;
            background: var(--gold);
            color: var(--black);
            font-family: 'Bebas Neue', sans-serif;
            font-size: 0.9rem;
            letter-spacing: 0.2rem;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid var(--gold);
        }

        .cta-btn:hover {
            background: transparent;
            color: var(--gold);
        }

        /* ============================================
           FOOTER
        ============================================ */
        .footer {
            padding: 40px;
            text-align: center;
            border-top: 1px solid var(--mid-gray);
        }

        .footer-text {
            font-size: 0.6rem;
            letter-spacing: 0.15rem;
            color: var(--mid-gray);
        }

        /* ============================================
           NOISE OVERLAY
        ============================================ */
        .noise {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9999;
            opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
        }

        /* ============================================
           RESPONSIVE
        ============================================ */
        @media (max-width: 968px) {
            .hero-split {
                flex-direction: column;
            }

            .hero-side {
                min-height: 80vh;
            }

            .hero-divider,
            .hero-divider-text {
                display: none;
            }

            .timeline-item,
            .timeline-item:nth-child(even) {
                padding-left: 30px;
                padding-right: 0;
                justify-content: flex-start;
            }

            .timeline::before {
                left: 0;
            }

            .timeline-dot {
                left: 0;
            }

            .timeline-item:nth-child(odd) .timeline-content,
            .timeline-item:nth-child(even) .timeline-content {
                margin-left: 20px;
                margin-right: 0;
            }
        }

        @media (max-width: 600px) {
            
            .hero-title { font-size: 2rem; }
            .bio-quote { font-size: 1.5rem; }
            .section-title { font-size: 2rem; }
            .credentials-grid { grid-template-columns: 1fr; }
            .cta-title { font-size: 2rem; }
        }