/* Palette: Midnight Blue, Antique Gold, Ivory, White */
:root {
    --navy: #0C1D36;
    --navy-light: #162b4d;
    --gold: #C5A059;
    --gold-dim: #a38346;
    --ivory: #F9F9F5;
    --white: #FFFFFF;
    --text: #333333;
    
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Lato', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--ivory);
    color: var(--text);
    font-family: var(--font-sans);
    line-height: 1.7;
}

.container { width: 90%; max-width: 1100px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; }

/* Header */
.header { background: var(--navy); padding: 20px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
.header-grid { display: flex; justify-content: space-between; align-items: center; }

.logo { display: flex; align-items: center; color: var(--white); }
.symbol { font-size: 2.5rem; margin-right: 10px; color: var(--gold); }
.text { font-family: var(--font-serif); font-weight: 700; font-size: 1.1rem; line-height: 1.1; letter-spacing: 2px; }

.nav a { margin-left: 25px; color: #ccc; font-family: var(--font-sans); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
.nav a:hover, .nav a.active { color: var(--gold); }

.client-login a { border: 1px solid var(--gold); color: var(--gold); padding: 8px 15px; font-size: 0.8rem; margin-left: 30px; text-transform: uppercase; }
.client-login a:hover { background: var(--gold); color: var(--navy); }

.mobile-toggle { display: none; background: transparent; border: 1px solid var(--white); color: var(--white); padding: 5px 10px; cursor: pointer; }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 300px; height: 100%; background: var(--navy); z-index: 2000; padding: 50px; transition: 0.3s; border-left: 2px solid var(--gold); }
.mobile-menu.active { right: 0; }
.close-btn { background: none; border: none; font-size: 1.5rem; color: var(--white); margin-bottom: 30px; cursor: pointer; }
.mobile-menu a { display: block; font-family: var(--font-serif); font-size: 1.6rem; margin-bottom: 20px; color: var(--gold); }

@media (max-width: 900px) {
    .nav, .client-login { display: none; }
    .mobile-toggle { display: block; }
}

/* Hero */
.hero { height: 85vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: rgba(12, 29, 54, 0.6); z-index: 1; }
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 800px; }

.subtitle { display: block; font-size: 0.8rem; letter-spacing: 4px; color: var(--gold); margin-bottom: 20px; text-transform: uppercase; }
.hero h1 { font-family: var(--font-serif); font-size: 4rem; line-height: 1.1; margin-bottom: 30px; letter-spacing: 1px; }
.hero p { font-size: 1.4rem; font-weight: 300; margin-bottom: 40px; color: #eee; }

.hero-actions { display: flex; justify-content: center; gap: 20px; }
.btn-gold { background: var(--gold); color: var(--navy); padding: 15px 35px; font-family: var(--font-sans); font-weight: 700; letter-spacing: 1px; border: none; cursor: pointer; transition: 0.3s; }
.btn-gold:hover { background: var(--white); }
.btn-line { background: transparent; border: 1px solid var(--white); color: var(--white); padding: 14px 35px; font-family: var(--font-sans); font-weight: 700; letter-spacing: 1px; transition: 0.3s; }
.btn-line:hover { border-color: var(--gold); color: var(--gold); }

/* Values */
.section-head h2 { font-family: var(--font-serif); font-size: 2.5rem; color: var(--navy); margin-bottom: 10px; }
.gold-sep { font-size: 1.5rem; color: var(--gold); margin-bottom: 20px; }
.center { text-align: center; margin-bottom: 60px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.value-card { padding: 40px 30px; background: var(--white); border-top: 3px solid var(--gold); box-shadow: 0 5px 20px rgba(0,0,0,0.03); text-align: center; transition: 0.3s; }
.value-card:hover { transform: translateY(-5px); }
.value-card h3 { font-family: var(--font-serif); font-size: 1.6rem; margin-bottom: 15px; color: var(--navy); }

/* Quote */
.quote-banner { background: var(--navy); color: var(--white); padding: 80px 0; text-align: center; }
.quote-banner blockquote { font-family: var(--font-serif); font-size: 2rem; font-style: italic; max-width: 900px; margin: 0 auto; line-height: 1.4; color: var(--gold); }

/* Services Page */
.service-list { display: flex; flex-direction: column; gap: 80px; }
.service-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.service-row.reverse { direction: rtl; }
.service-row.reverse .s-text { direction: ltr; }
.s-img img { box-shadow: 15px 15px 0 var(--gold); }
.s-text h3 { font-family: var(--font-serif); font-size: 2.2rem; color: var(--navy); margin-bottom: 20px; }
.s-points { list-style: none; margin-top: 20px; font-family: var(--font-serif); font-size: 1.2rem; color: var(--navy); }
.s-points li { margin-bottom: 10px; border-bottom: 1px solid #ddd; padding-bottom: 5px; }

/* Team Page */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.team-card { background: var(--white); border: 1px solid #e0e0e0; transition: 0.3s; }
.team-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.t-img img { width: 100%; height: 350px; object-fit: cover; filter: sepia(20%); }
.t-info { padding: 25px; text-align: center; }
.t-info h3 { font-family: var(--font-serif); font-size: 1.4rem; color: var(--navy); margin-bottom: 5px; }
.role { font-size: 0.8rem; text-transform: uppercase; color: var(--gold); letter-spacing: 1px; display: block; margin-bottom: 15px; }

/* Insights Page */
.insights-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 50px; }
.insight-item { background: var(--white); padding: 40px; border-left: 4px solid var(--gold); box-shadow: 0 5px 15px rgba(0,0,0,0.02); }
.date { font-family: var(--font-serif); font-style: italic; color: #888; margin-bottom: 10px; }
.insight-item h2 { font-family: var(--font-serif); font-size: 2rem; color: var(--navy); margin-bottom: 15px; }
.read-more { color: var(--gold); font-weight: 700; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; display: inline-block; margin-top: 15px; }

/* Contact Page */
.contact-card { max-width: 700px; margin: 0 auto; background: var(--white); padding: 60px; border: 1px solid #ddd; box-shadow: 0 20px 50px rgba(0,0,0,0.05); }
.c-head { text-align: center; margin-bottom: 40px; }
.c-head h2 { font-family: var(--font-serif); font-size: 2.5rem; color: var(--navy); margin-bottom: 10px; }

.classic-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.grp { margin-bottom: 25px; }
.grp label { display: block; font-family: var(--font-serif); color: var(--navy); font-size: 1.1rem; margin-bottom: 8px; }
.grp input, .grp select, .grp textarea { width: 100%; padding: 12px; border: 1px solid #ccc; font-family: var(--font-sans); font-size: 1rem; background: #fdfdfd; }
.grp input:focus, .grp select:focus, .grp textarea:focus { border-color: var(--gold); outline: none; }
.full { width: 100%; }

.office-details { text-align: center; margin-top: 50px; padding-top: 30px; border-top: 1px solid #eee; }

/* Legal */
.legal-text { max-width: 800px; margin: 0 auto; background: var(--white); padding: 60px; }
.legal-text h1 { font-family: var(--font-serif); color: var(--navy); }

/* Footer */
.footer { background: var(--navy); color: #ccc; padding: 60px 0 20px; margin-top: 100px; border-top: 5px solid var(--gold); }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.f-brand h4 { font-family: var(--font-serif); color: var(--white); font-size: 1.5rem; margin-bottom: 5px; }
.f-legal a { margin-left: 20px; color: #999; }
.f-legal a:hover { color: var(--gold); }
.copyright { text-align: center; font-size: 0.8rem; border-top: 1px solid #223; padding-top: 20px; color: #666; }

@media (max-width: 900px) {
    .hero h1 { font-size: 3rem; }
    .grid-3, .service-row, .team-grid, .classic-form .form-row { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
}