/* Palette: Charcoal, Metallic Gold, White */
:root {
    --bg: #1C1C1C;
    --card-bg: #262626;
    --gold: #C5A059;
    --gold-hover: #E6C27A;
    --text: #F0F0F0;
    --text-muted: #A0A0A0;
    
    --serif: 'Playfair Display', serif;
    --sans: 'Lato', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    line-height: 1.7;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 120px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; filter: grayscale(20%); }

/* Header */
.gold-header { padding: 30px 0; position: sticky; top: 0; z-index: 1000; background: rgba(28, 28, 28, 0.95); border-bottom: 1px solid rgba(197, 160, 89, 0.2); }
.header-row { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--serif); font-size: 1.5rem; letter-spacing: 2px; color: var(--text); font-weight: 700; }
.gold-text { color: var(--gold); }

.elite-nav a { margin-left: 40px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.elite-nav a:hover, .elite-nav a.active { color: var(--gold); }

.menu-toggle { display: none; background: transparent; border: 1px solid var(--gold); color: var(--gold); padding: 8px 15px; font-family: var(--sans); cursor: pointer; letter-spacing: 1px; }

/* Mobile Menu */
.mobile-overlay { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--bg); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.4s; }
.mobile-overlay.active { right: 0; }
.close-btn { position: absolute; top: 30px; right: 30px; background: none; border: none; color: var(--gold); font-size: 1rem; cursor: pointer; }
.mobile-overlay a { font-family: var(--serif); font-size: 2rem; margin: 15px 0; color: var(--text); }

@media (max-width: 900px) {
    .elite-nav { display: none; }
    .menu-toggle { display: block; }
}

/* Hero */
.hero-invest { height: 90vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; z-index: -1; filter: brightness(0.4); }
.hero-content { max-width: 900px; padding: 0 20px; }

.subtitle { color: var(--gold); font-size: 0.9rem; letter-spacing: 4px; display: block; margin-bottom: 20px; text-transform: uppercase; }
.hero-content h1 { font-family: var(--serif); font-size: 4rem; line-height: 1.1; margin-bottom: 30px; }
.hero-content p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 50px; font-weight: 300; }

.btn-gold { background: var(--gold); color: #000; padding: 18px 45px; font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; border: none; cursor: pointer; display: inline-block; transition: 0.3s; }
.btn-gold:hover { background: var(--gold-hover); transform: translateY(-2px); }

/* Sectors */
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-family: var(--serif); font-size: 2.5rem; margin-bottom: 10px; color: var(--text); }
.gold-line { width: 60px; height: 2px; background: var(--gold); margin: 20px auto; }
.gold-line.left { margin: 20px 0; }

.sector-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.sector-card { background: var(--card-bg); padding: 40px 20px; text-align: center; border: 1px solid rgba(255,255,255,0.05); transition: 0.3s; }
.sector-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.sector-card h3 { font-family: var(--serif); color: var(--gold); margin-bottom: 15px; font-size: 1.2rem; }
.sector-card p { font-size: 0.9rem; color: var(--text-muted); }

/* Stats */
.stats-strip { background: var(--gold); color: #000; padding: 60px 0; }
.stats-flex { display: flex; justify-content: space-around; text-align: center; }
.stat strong { font-family: var(--serif); font-size: 3rem; display: block; line-height: 1; margin-bottom: 5px; }
.stat span { font-size: 0.9rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }

/* About */
.about-flex { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text h1 { font-family: var(--serif); font-size: 3rem; line-height: 1.2; margin-bottom: 20px; }
.check-list { list-style: none; margin-top: 30px; }
.check-list li { margin-bottom: 10px; color: var(--gold); font-family: var(--serif); font-size: 1.1rem; }
.about-img img { border: 1px solid var(--gold); padding: 10px; }

/* Testimonials */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.p-card { background: var(--card-bg); padding: 40px; border-top: 4px solid #333; }
.p-card.highlight { border-top-color: var(--gold); background: #2a2a2a; }
.quote-icon { font-family: var(--serif); font-size: 3rem; color: var(--gold); line-height: 0.5; margin-bottom: 20px; }
.p-card p { font-style: italic; color: var(--text-muted); margin-bottom: 30px; }
.founder strong { display: block; color: var(--text); font-size: 1rem; }
.founder span { font-size: 0.8rem; color: var(--gold); }

/* Contact */
.contact-luxury { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; }
.contact-info h2 { font-family: var(--serif); font-size: 2.5rem; margin-bottom: 20px; }
.office-loc { margin-top: 40px; border-left: 2px solid var(--gold); padding-left: 20px; }
.office-loc strong { color: var(--gold); display: block; margin-bottom: 10px; }

.gold-form .input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.input-group { margin-bottom: 25px; }
.input-group label { display: block; color: var(--text-muted); font-size: 0.8rem; margin-bottom: 5px; }
.input-group input, .input-group select { width: 100%; background: transparent; border: none; border-bottom: 1px solid #444; padding: 10px 0; color: var(--text); font-family: var(--sans); transition: 0.3s; }
.input-group input:focus, .input-group select:focus { border-bottom-color: var(--gold); outline: none; }
.full { width: 100%; }

/* Legal */
.legal-doc { max-width: 800px; margin: 0 auto; }
.legal-doc h1 { font-family: var(--serif); color: var(--gold); }

/* Footer */
.venture-footer { border-top: 1px solid #333; padding: 80px 0 30px; margin-top: 100px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.f-info h4 { font-family: var(--serif); letter-spacing: 1px; color: var(--gold); margin-bottom: 5px; }
.f-links a { margin-left: 20px; color: var(--text-muted); font-size: 0.9rem; }
.f-links a:hover { color: var(--gold); }
.copyright { text-align: center; font-size: 0.8rem; color: #555; }

@media (max-width: 900px) {
    .hero-content h1 { font-size: 3rem; }
    .sector-grid, .about-flex, .portfolio-grid, .contact-luxury { grid-template-columns: 1fr; }
    .stats-flex { flex-direction: column; gap: 30px; }
    .footer-content { flex-direction: column; text-align: center; gap: 20px; }
    .gold-form .input-row { grid-template-columns: 1fr; }
}