:root {
    --navy: #0a192f;
    --gold: #c5a059;
    --gold-hover: #b38f4d;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text: #333;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    line-height: 1.8;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 25, 47, 0.95);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 1.3rem;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
}

.nav-links li { margin-left: 30px; }

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--gold); }

/* Hero Section */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(10, 25, 47, 0.75), rgba(10, 25, 47, 0.75)), 
                url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px; /* Space for navbar */
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    margin: 0;
    text-transform: uppercase;
}

.tagline {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 4px;
    margin-top: 20px;
}

/* Quote Section */
.quote-section { padding: 40px 0; }
.quote-wrapper { 
    max-width: 850px; 
    margin: -60px auto 40px; 
    padding: 45px; 
    background: white; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); 
    border-top: 4px solid var(--gold);
    position: relative;
    z-index: 10;
}
.legal-quote { 
    font-family: 'Playfair Display', serif; 
    font-style: italic; 
    font-size: 1.25rem; 
    color: #444;
    text-align: center;
    line-height: 1.8;
}

/* Practice Areas Grid */
.container { max-width: 1200px; margin: 0 auto; padding: 60px 20px; }
.section-title { 
    text-align: center; 
    font-family: 'Playfair Display', serif; 
    font-size: 2.3rem; 
    color: var(--navy); 
    margin-bottom: 50px; 
}
.section-title::after { 
    content: ''; 
    display: block; 
    width: 70px; 
    height: 3px; 
    background: var(--gold); 
    margin: 15px auto; 
}

.practice-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
    gap: 30px; 
}

.practice-card { 
    padding: 40px; 
    background: var(--light-gray); 
    border-radius: 4px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.practice-card:hover { 
    transform: translateY(-8px); 
    background: white; 
    box-shadow: 0 12px 30px rgba(0,0,0,0.06); 
    border-bottom-color: var(--gold);
}

.practice-card h3 { 
    font-family: 'Playfair Display', serif; 
    color: var(--navy); 
    margin-top: 0;
    margin-bottom: 20px; 
    border-bottom: 1px solid #ddd; 
    padding-bottom: 12px;
}

.practice-card ul { padding: 0; list-style: none; }
.practice-card li { 
    font-size: 0.95rem; 
    margin-bottom: 12px; 
    padding-left: 20px; 
    position: relative; 
    color: #555;
}
.practice-card li::before { 
    content: '•'; 
    color: var(--gold); 
    position: absolute; 
    left: 0; 
    font-weight: bold;
}

/* Footer & Contact Section */
footer { background: var(--navy); color: white; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; }
.contact-info { padding: 80px 60px; }
.contact-info h2 { color: var(--gold); font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 30px; }
.contact-item { 
    display: flex; 
    align-items: flex-start; 
    color: white; 
    text-decoration: none; 
    margin-bottom: 20px; 
    font-size: 1rem;
    transition: color 0.3s;
}
.contact-item:hover { color: var(--gold); }
.contact-icon { margin-right: 15px; font-size: 1.2rem; }

.map-wrapper { height: 100%; min-height: 450px; }
.map-wrapper iframe { width: 100%; height: 100%; border: 0; }

/* Responsive adjustments */
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr; }
    .map-wrapper { height: 350px; }
    .nav-links { display: none; } /* Simplified for mobile */
    h1 { font-size: 2.2rem; }
    .quote-wrapper { margin: -30px 20px 40px; padding: 30px; }
}