/* --- Variables --- */
:root {
    --color-green: #0f3d3e;     /* Deep Forest Green */
    --color-green-dark: #082626;
    --color-gold: #d4af37;      /* Metallic Gold */
    --color-gold-light: #e6c86e;
    --color-cream: #f5f5dc;     /* Beige/Cream */
    --color-white: #ffffff;
    --color-text: #333333;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Source Sans Pro', sans-serif;
    
    --radius: 2px;
    --shadow: 0 5px 20px rgba(15, 61, 62, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--color-cream);
    color: var(--color-text);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- Gold Bar --- */
.gold-bar { background-color: var(--color-green-dark); color: var(--color-gold); padding: 8px 0; font-size: 0.85rem; letter-spacing: 1px; }
.bar-flex { display: flex; justify-content: space-between; align-items: center; width: 90%; max-width: 1200px; margin: 0 auto; }
.bar-links a { color: var(--color-gold); text-decoration: none; border-bottom: 1px solid transparent; }
.bar-links a:hover { border-bottom-color: var(--color-gold); }

/* --- Header --- */
.finance-header {
    background-color: var(--color-white);
    padding: 25px 0;
    border-bottom: 3px solid var(--color-gold);
    position: sticky; top: 0; z-index: 1000;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.header-content { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--color-green); letter-spacing: 1px; }
.gold-text { color: var(--color-gold); }

.classic-nav ul { display: flex; gap: 30px; align-items: center; }
.classic-nav a { font-weight: 600; color: var(--color-green); font-size: 0.95rem; text-transform: uppercase; }
.classic-nav a:hover, .classic-nav a.active { color: var(--color-gold); }

.btn-green { background-color: var(--color-green); color: var(--color-white) !important; padding: 10px 25px; border-radius: var(--radius); font-weight: bold; border: 1px solid var(--color-green); font-family: var(--font-heading); }
.btn-green:hover { background-color: var(--color-white); color: var(--color-green) !important; }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.line { width: 30px; height: 2px; background-color: var(--color-green); }

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100%;
    background-color: var(--color-green); z-index: 2000;
    display: flex; flex-direction: column; padding: 40px; gap: 20px;
    transition: 0.4s ease; border-left: 2px solid var(--color-gold);
}
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; font-size: 1.5rem; color: var(--color-gold); background: none; border: none; cursor: pointer; }
.mobile-menu a { font-family: var(--font-heading); font-size: 1.2rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; color: var(--color-white); }

/* --- Hero --- */
.hero { position: relative; height: 600px; display: flex; align-items: center; justify-content: center; text-align: center; margin-bottom: 60px; }
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; z-index: -2;
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(rgba(15, 61, 62, 0.9), rgba(15, 61, 62, 0.6)); z-index: -1; }

.hero-content { z-index: 1; color: var(--color-white); max-width: 800px; padding: 20px; border: 1px solid var(--color-gold); padding: 40px; background: rgba(0,0,0,0.3); }
.sub-title { color: var(--color-gold); font-family: var(--font-heading); letter-spacing: 2px; font-size: 0.9rem; text-transform: uppercase; display: block; margin-bottom: 15px; }
.hero h1 { font-family: var(--font-heading); font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; color: var(--color-white); }
.gold-highlight { color: var(--color-gold); }
.hero p { font-size: 1.2rem; margin-bottom: 30px; color: #ddd; max-width: 600px; margin-left: auto; margin-right: auto; }

.hero-actions { display: flex; gap: 20px; justify-content: center; }
.btn { padding: 12px 30px; border-radius: var(--radius); font-weight: bold; cursor: pointer; border: none; font-family: var(--font-heading); letter-spacing: 1px; transition: 0.3s; }
.btn-gold { background-color: var(--color-gold); color: var(--color-green-dark); }
.btn-gold:hover { background-color: var(--color-white); }
.btn-outline { background: transparent; border: 1px solid var(--color-white); color: var(--color-white); }
.btn-outline:hover { background: var(--color-white); color: var(--color-green); }

/* --- Grid --- */
.section-padding { padding: 80px 0; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-head h2 { font-family: var(--font-heading); font-size: 2.5rem; color: var(--color-green); margin-bottom: 10px; }
.divider-gold { font-size: 2rem; color: var(--color-gold); }

.finance-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; }
.finance-card { background: var(--color-white); padding: 40px 30px; border: 1px solid #ddd; transition: 0.3s; position: relative; box-shadow: var(--shadow); }
.finance-card:hover { transform: translateY(-5px); border-color: var(--color-gold); }
.card-head { font-size: 3rem; color: rgba(212, 175, 55, 0.2); font-family: var(--font-heading); position: absolute; top: 10px; right: 20px; font-weight: bold; }
.finance-card h3 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--color-green); margin-bottom: 15px; }
.finance-card p { color: #666; margin-bottom: 25px; font-size: 0.95rem; }
.link-gold { color: var(--color-gold); font-weight: bold; font-family: var(--font-heading); text-transform: uppercase; font-size: 0.9rem; }

/* --- Banner --- */
.green-banner { background-color: var(--color-green); color: var(--color-white); padding: 80px 0; text-align: center; margin-top: 60px; border-top: 5px solid var(--color-gold); border-bottom: 5px solid var(--color-gold); }
.green-banner blockquote { font-family: var(--font-heading); font-size: 2.2rem; font-style: italic; max-width: 800px; margin: 0 auto 20px auto; line-height: 1.3; }
.green-banner p { color: var(--color-gold); font-weight: bold; }

/* --- About & Split --- */
.page-head { text-align: center; margin-bottom: 60px; }
.page-head h1 { font-family: var(--font-heading); font-size: 3rem; color: var(--color-green); margin-bottom: 10px; }
.page-head p { font-style: italic; color: #777; font-size: 1.2rem; }

.split-view { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.text-col h2 { font-family: var(--font-heading); font-size: 2rem; color: var(--color-green); margin-bottom: 20px; border-bottom: 2px solid var(--color-gold); display: inline-block; padding-bottom: 5px; }
.gold-list { list-style: none; margin-top: 20px; border-top: 1px solid #ddd; padding-top: 20px; }
.gold-list li { margin-bottom: 10px; padding-left: 20px; position: relative; font-weight: 600; color: var(--color-text); }
.gold-list li::before { content: '♦'; color: var(--color-gold); position: absolute; left: 0; }
.img-frame { padding: 10px; border: 1px solid var(--color-gold); background: #fff; }

/* --- Testimonials --- */
.client-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.client-box { background: var(--color-white); padding: 30px; border-bottom: 3px solid var(--color-green); box-shadow: var(--shadow); }
.stars { color: var(--color-gold); margin-bottom: 15px; }
.client-box p { font-style: italic; color: #555; margin-bottom: 20px; }
.client-info strong { display: block; color: var(--color-green); font-family: var(--font-heading); }
.client-info span { font-size: 0.8rem; color: #888; }

/* --- Contact & Forms --- */
.contact-card { display: grid; grid-template-columns: 1fr 2fr; gap: 50px; background: var(--color-white); padding: 50px; border: 1px solid #ddd; box-shadow: var(--shadow); }
.info-sidebar h3 { font-family: var(--font-heading); color: var(--color-green); margin-bottom: 20px; font-size: 1.8rem; }
.c-row { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.label { font-weight: bold; color: var(--color-gold); width: 50px; }
.gold-divider { height: 1px; background: var(--color-gold); width: 50px; margin: 20px 0; }
.small { font-size: 0.85rem; color: #666; }

.finance-form .form-group { margin-bottom: 20px; }
.finance-form label { display: block; margin-bottom: 5px; font-weight: bold; color: var(--color-green); font-family: var(--font-heading); }
.finance-form input, .finance-form select, .finance-form textarea { width: 100%; padding: 12px; border: 1px solid #ccc; background: var(--color-cream); font-family: var(--font-body); }
.finance-form input:focus { border-color: var(--color-gold); outline: none; background: #fff; }
.full-width { width: 100%; }

/* --- Legal --- */
.legal-paper { max-width: 800px; margin: 0 auto; background: var(--color-white); padding: 60px; border: 1px solid #ccc; }
.legal-paper h1 { font-family: var(--font-heading); color: var(--color-green); text-align: center; }
.meta { text-align: center; color: #777; font-style: italic; }
.gold-sep { width: 100px; height: 3px; background: var(--color-gold); margin: 30px auto; }
.legal-paper h3 { color: var(--color-green); margin-top: 30px; margin-bottom: 10px; font-family: var(--font-heading); border-bottom: 1px solid #eee; padding-bottom: 5px; }

/* --- Footer --- */
.finance-footer { background-color: var(--color-green-dark); color: #fff; padding: 60px 0; margin-top: auto; text-align: center; border-top: 5px solid var(--color-gold); }
.f-brand h4 { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 10px; }
.f-links a { color: #ccc; margin: 0 15px; }
.f-links a:hover { color: var(--color-gold); }
.copyright { margin-top: 30px; font-size: 0.8rem; color: #888; }

@media (max-width: 992px) {
    .classic-nav { display: none; }
    .mobile-toggle { display: flex; }
    .hero h1 { font-size: 2.8rem; }
    .split-view, .contact-card { grid-template-columns: 1fr; }
}