        :root {
            --navy: #0f1b2e;
            --navy-dark: #0a1520;
            --gold: #c9a961;
            --gold-rgba: rgba(201,169,97,0.3);
            --cream: #f7f5f0;
            --text-dark: #2b2b2b;
            --text-light: #e8e4dc;
            --text-muted: #b8b4ac;
        }

        html { scroll-behavior: smooth; }
        body { margin: 0; padding: 0; font-family: 'Inter', sans-serif; background-color: var(--navy); color: var(--text-light); overflow-x: hidden; cursor: default; }
        h1, h2, h3, h4, h5, h6 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.2; margin: 0; }
        p { line-height: 1.8; margin: 0; }
        a { text-decoration: none; color: inherit; }
        * { box-sizing: border-box; }

        .section-padding { padding: 120px 24px; }
        .bg-navy { background-color: var(--navy); color: var(--text-light); }
        .bg-cream { background-color: var(--cream); color: var(--text-dark); }
        .container { max-width: 1200px; margin: 0 auto; width: 100%; position: relative; }
        .container-sm { max-width: 800px; margin: 0 auto; width: 100%; position: relative; }
        .text-center { text-align: center; }
        
        .section-label { display: block; font-family: 'Inter', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 4px; color: var(--gold); margin-bottom: 24px; text-align: center; }
        .gold-line-center { width: 60px; height: 1px; background-color: var(--gold); margin: 0 auto; display: block; }
        .hover-gold:hover { color: var(--gold) !important; transition: 0.3s ease; }

        .fade-in-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
        .fade-in-up.active { opacity: 1; transform: translateY(0); }

        /* Navigation */
        nav { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; padding: 20px 48px; display: flex; justify-content: space-between; align-items: center; transition: all 0.3s ease; background: transparent; }
        nav.scrolled { background: var(--navy); box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
        .nav-logo img { max-height: 60px; width: auto; transition: 0.3s ease; }
        .nav-logo img:hover { transform: scale(1.05); }
        
        .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; margin: 0; padding: 0; }
        .nav-links li a { font-family: 'Inter', sans-serif; font-weight: 400; font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: #fff; transition: 0.3s ease; cursor: pointer; }
        .nav-links li a:hover { color: var(--gold); }
        
        .dropdown { position: relative; }
        .dropdown-menu { position: absolute; top: calc(100% + 20px); left: 50%; transform: translateX(-50%) translateY(-8px); width: 200px; background: var(--navy); border: 1px solid rgba(201,169,97,0.2); padding: 24px 32px; opacity: 0; visibility: hidden; transition: 0.2s ease; display: flex; flex-direction: column; gap: 12px; }
        .dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
        .dropdown-menu a { color: var(--text-muted); line-height: 2.4; }

        .mobile-menu-btn { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }
        .mobile-menu { position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; background: var(--navy); border-left: 1px solid var(--gold-rgba); z-index: 101; transition: 0.4s ease; padding: 80px 40px; display: flex; flex-direction: column; gap: 24px; }
        .mobile-menu.active { right: 0; }
        .mobile-menu-close { position: absolute; top: 24px; right: 32px; background: none; border: none; color: var(--gold); font-size: 28px; cursor: pointer; }

        /* Hero */
        .hero { position: relative; height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 0 24px; background: var(--navy); overflow: hidden; }
        .hero-bg-pattern { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.05; background-image: radial-gradient(circle at center, var(--gold) 1px, transparent 1px); background-size: 40px 40px; z-index: 1; pointer-events: none; }
        .hero-content { position: relative; z-index: 2; max-width: 800px; }
        .hero-logo-img { max-width: 180px; margin-bottom: 32px; opacity: 0; animation: fadeIn 0.6s ease forwards; }
        .pre-headline { font-family: 'Inter', sans-serif; font-size: 12px; text-transform: uppercase; letter-spacing: 4px; color: var(--gold); margin-bottom: 24px; opacity: 0; animation: fadeInUp 0.6s ease 0.4s forwards; }
        .hero h1 { font-size: 64px; color: #ffffff; margin-bottom: 24px; opacity: 0; animation: fadeInUp 0.6s ease 0.6s forwards; }
        .hero p { font-size: 18px; font-weight: 300; color: var(--text-muted); max-width: 680px; margin: 0 auto 48px auto; opacity: 0; animation: fadeInUp 0.6s ease 0.8s forwards; }
        .hero-btns { display: flex; gap: 16px; justify-content: center; opacity: 0; animation: fadeInUp 0.6s ease 1.0s forwards; }
        
        .btn { font-family: 'Inter', sans-serif; font-weight: 500; font-size: 12px; text-transform: uppercase; letter-spacing: 2px; padding: 14px 36px; cursor: pointer; transition: 0.3s ease; border-radius: 0; display: inline-block; }
        .btn-outline { border: 1px solid var(--gold); background: transparent; color: var(--gold); }
        .btn-outline:hover { background: var(--gold); color: var(--navy); }
        .btn-solid { border: 1px solid var(--gold); background: var(--gold); color: var(--navy); }
        .btn-solid:hover { background: #b59550; border-color: #b59550; }

        .scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); text-align: center; z-index: 2; }
        .scroll-line { width: 1px; height: 40px; background: var(--gold); margin: 0 auto 8px auto; animation: pulseLine 2s infinite ease-in-out; }
        .scroll-text { font-family: 'Inter', sans-serif; font-size: 10px; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); opacity: 0.5; }

        @keyframes fadeIn { to { opacity: 1; } }
        @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes pulseLine { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

        /* Additional Global Styles */
        .grid-8-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; max-width: 1100px; margin: 0 auto; }
        .four-cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; max-width: 1000px; margin: 0 auto; }
        .wealth-blocks { max-width: 900px; margin: 0 auto; }
        .wealth-block { border-left: 2px solid var(--gold); padding-left: 28px; margin-bottom: 40px; text-align: left; }
        .wealth-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--navy); margin-bottom: 12px; }
        .wealth-body { font-size: 15px; color: var(--text-dark); line-height: 1.8; }
        
        .reach-top-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; max-width: 1100px; margin: 0 auto 48px auto; text-align: left; }
        .reach-bottom-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; max-width: 720px; margin: 0 auto; text-align: left; }
        .reach-line { width: 40px; height: 1px; background: var(--gold); margin-bottom: 24px; }
        .reach-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; margin-bottom: 8px; color: #fff; }
        .reach-subtitle { font-family: 'Inter', sans-serif; font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 20px; }
        .reach-body { font-size: 15px; color: var(--text-muted); line-height: 1.8; }
        
        .network-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 64px; text-align: left; margin: 0 auto; max-width: 900px; }
        .network-col-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--navy); margin-bottom: 24px; }
        .network-list { list-style: none; padding: 0; margin: 0; }
        .network-list li { font-size: 15px; color: var(--text-dark); line-height: 2.4; display: flex; align-items: flex-start; gap: 12px; }
        .network-list li span { color: var(--gold); font-family: 'Inter', sans-serif; }
        
        .engagements-list { max-width: 800px; margin: 0 auto; text-align: left; }
        .engagement-item { border-left: 2px solid var(--gold); padding-left: 28px; margin-bottom: 40px; }
        .engagement-text { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 0 !important; }
        .engagement-tag { font-family: 'Inter', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-top: 10px; display: inline-block; }
        
        .intelligence-list { text-align: left; max-width: 760px; margin: 0 auto; }
        .intelligence-item { display: flex; align-items: flex-start; margin-bottom: 36px; }
        .intelligence-marker { width: 8px; height: 8px; background: var(--gold); margin-right: 20px; margin-top: 6px; flex-shrink: 0; }
        .intelligence-content { padding-left: 0; }
        .intelligence-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--navy); margin-bottom: 10px; }
        .intelligence-body { font-size: 15px; color: var(--text-dark); line-height: 1.8; }
        
        .leadership-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 1100px; margin: 0 auto; text-align: left; }
        .leadership-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(201,169,97,0.15); padding: 32px; transition: 0.3s ease; }
        .leadership-card:hover { border-color: rgba(201,169,97,0.5); }
        .leadership-line { width: 30px; height: 2px; background: var(--gold); margin-bottom: 20px; }
        .leadership-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: #fff; margin-bottom: 10px; }
        .leadership-body { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 0 !important; }
        
        .governance-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; max-width: 1000px; margin: 0 auto; text-align: left; }
        .gov-card { background: #fff; border: 1px solid rgba(201,169,97,0.2); padding: 36px; transition: 0.3s ease; }
        .gov-card:hover { border-color: var(--gold); box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
        .gov-num { font-family: 'Cormorant Garamond', serif; font-size: 14px; color: var(--gold); margin-bottom: 14px; }
        .gov-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--navy); margin-bottom: 14px; }
        .gov-body { font-size: 14px; color: #555; line-height: 1.8; margin-bottom: 0 !important; }
        
        .insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 1100px; margin: 0 auto; text-align: left; }
        .insight-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(201,169,97,0.15); padding: 32px; transition: 0.3s ease; display: flex; flex-direction: column; }
        .insight-card:hover { border-color: var(--gold); }
        .insight-tag { font-family: 'Inter', sans-serif; font-size: 10px; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 16px; }
        .insight-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: #fff; margin-bottom: 16px; line-height: 1.4; }
        .insight-date { font-family: 'Inter', sans-serif; font-size: 12px; color: #777; margin-bottom: 20px; flex-grow: 1; }
        .insight-link { font-family: 'Inter', sans-serif; font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); transition: 0.3s ease; cursor: pointer; display: inline-block; font-weight: 500;}
        .insight-link:hover { text-decoration: underline; }
        
        .contact-layout { display: flex; gap: 64px; text-align: left; max-width: 900px; margin: 0 auto; }
        .contact-offices { width: 40%; display: flex; flex-direction: column; gap: 48px; }
        .office-city { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--navy); margin-bottom: 10px; }
        .office-phone { display: block; font-size: 14px; font-weight: 300; color: #555; transition: 0.3s ease; margin-bottom: 4px; font-family: 'Inter', sans-serif; }
        .office-email { display: inline-block; font-weight: 300; font-family: 'Inter', sans-serif; font-size: 14px; color: var(--gold); transition: 0.3s ease; }
        .office-email:hover { text-decoration: underline; }
        
        .contact-form { width: 60%; }
        .form-input { width: 100%; border: none; border-bottom: 1px solid var(--gold-rgba); background: transparent; padding: 14px 0; margin-bottom: 28px; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 300; color: var(--text-dark); transition: 0.3s ease; border-radius: 0; }
        .form-input:focus { outline: none; border-bottom-color: var(--gold); }
        .form-input::placeholder { color: #999; }
        .select-wrapper { position: relative; }
        .select-wrapper::after { content: '▼'; position: absolute; right: 0; top: 16px; font-size: 10px; color: var(--gold); pointer-events: none; }
        select.form-input { appearance: none; cursor: pointer; }
        .form-submit { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 2px; background: var(--gold); color: var(--navy); border: 1px solid var(--gold); padding: 16px 48px; cursor: pointer; transition: 0.3s ease; margin-top: 16px; border-radius: 0; }
        .form-submit:hover { background: var(--navy); color: var(--gold); }
        
        .footer { background: var(--navy-dark); padding: 48px 24px; border-top: 1px solid rgba(201,169,97,0.15); }
        .footer-logo { max-width: 140px; opacity: 1; margin-bottom: 24px; transition: 0.3s ease; }
        .footer-logo:hover { transform: scale(1.05); }
        .footer-line1 { font-family: 'Inter', sans-serif; font-size: 13px; font-style: italic; color: #666; margin-bottom: 16px; font-weight: 300;}
        .footer-line2 { font-family: 'Inter', sans-serif; font-size: 11px; color: #555; margin-bottom: 0 !important; }
        .footer-line3 { font-family: 'Inter', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 3px; color: var(--gold); margin-top: 12px; margin-bottom: 0 !important; }

        /* Timeline */
        .timeline-nodes { display: flex; justify-content: space-between; position: relative; width: 100%; }
        .node { position: relative; z-index: 2; width: 140px; }
        .node-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; margin-bottom: 16px; transition: 0.3s ease; }
        .node-year { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 600; color: var(--gold); margin-bottom: 8px; }
        .node-desc { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 300; color: var(--text-muted); line-height: 1.5; }
        .pulse-dot { width: 12px; height: 12px; margin-bottom: 14px; left: -2px; position: relative; animation: pulseGlow 2s infinite; }
        @keyframes pulseGlow { 0% { box-shadow: 0 0 0 0 rgba(201,169,97,0.7); } 70% { box-shadow: 0 0 0 10px rgba(201,169,97,0); } 100% { box-shadow: 0 0 0 0 rgba(201,169,97,0); } }

        .sector-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(201,169,97,0.15); padding: 32px; transition: 0.3s ease; text-align: left; }
        .sector-card:hover { border-color: var(--gold); transform: translateY(-3px); }
        .sector-num { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--gold); margin-bottom: 16px; }
        .sector-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: #fff; margin-bottom: 12px; }
        .sector-body { font-family: 'Inter', sans-serif; font-weight: 300; font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 0 !important; }
        
        .hover-card { background: #fff; border: 1px solid rgba(201,169,97,0.2); padding: 40px; transition: 0.3s ease; border-radius: 0; text-align: left; }
        .hover-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
        .card-num { font-family: 'Cormorant Garamond', serif; font-size: 14px; color: var(--gold); margin-bottom: 16px; }
        .card-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--navy); margin-bottom: 16px; }
        .card-body { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 300; color: #555; line-height: 1.8; margin-bottom: 0 !important; }

        /* Media Queries Navigation & Hero */
        @media (max-width: 1024px) {
            .grid-8-cards { grid-template-columns: repeat(2, 1fr); }
            .leadership-grid { grid-template-columns: repeat(2, 1fr); }
            .reach-top-row { grid-template-columns: repeat(3, 1fr); gap: 24px; }
        }
        @media (max-width: 768px) {
            nav { padding: 20px 24px; }
            .nav-logo img { max-height: 45px; }
            .nav-links { display: none; }
            .mobile-menu-btn { display: block; }
            .hero-logo-img { max-width: 120px; }
            .hero h1 { font-size: 36px; }
            .hero p { font-size: 15px; }
            .hero-btns { flex-direction: column; gap: 12px; }
            
            .four-cards-grid, .grid-8-cards, .governance-grid, .leadership-grid, .insights-grid { grid-template-columns: 1fr; }
            .reach-top-row, .reach-bottom-row, .network-cols, .contact-layout { grid-template-columns: 1fr; gap: 40px; }
            .contact-offices, .contact-form { width: 100%; }
            .timeline-nodes { flex-direction: column; gap: 32px; }
            .timeline-line { width: 1px !important; height: 100% !important; left: 3px !important; top: 0 !important; }
            .node { width: 100%; padding-left: 24px; }
            .node-dot { position: absolute; left: 0; top: 6px; margin: 0; }
            .pulse-dot { left: -2px; top: 4px; }
            .hidden-mobile { display: inline-block; }
            
            .section-padding { padding: 80px 24px; }
        }
