:root {
    --navy: #1B3A5C;
    --navy-deep: #0e2236;
    --gold: #8B6914;
    --gold-accent: #D4AF37;
    --cream: #F5F3EF;
    --warm-bg: #FAFAF7;
    --text: #2b3340;
    --text-light: #5c6575;
    --border: #ddd8d0;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    line-height: 1.3;
}

p, li, a, label, input, textarea, select, button {
    font-family: 'Nunito Sans', -apple-system, sans-serif;
}

.container {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.site-header {
    background: var(--navy-deep);
    padding: 20px 0;
    border-bottom: 3px solid var(--gold);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    text-decoration: none;
    color: var(--white);
}

.logo-firm {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: block;
}

.logo-type {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-accent);
    display: block;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 28px;
}

.main-nav a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold-accent);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 20px;
    height: 2px;
    background: var(--white);
}

/* Hero */
.hero {
    background: var(--navy);
    padding: 80px 0;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-accent) 50%, var(--gold) 100%);
}

.hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.hero p {
    color: rgba(255,255,255,0.75);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.05rem;
    max-width: 540px;
    line-height: 1.7;
}

.hero .btn {
    margin-top: 28px;
}

/* Page hero (inner pages) */
.page-hero {
    background: var(--navy);
    padding: 56px 0;
    border-bottom: 3px solid var(--gold);
}

.page-hero h1 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 8px;
}

.page-hero p {
    color: rgba(255,255,255,0.7);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.95rem;
    max-width: 500px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
}

.btn-gold:hover {
    background: var(--gold-accent);
}

.btn-outline {
    border: 1.5px solid var(--navy);
    color: var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

/* Content sections */
.content-section {
    padding: 64px 0;
}

.content-section.alt {
    background: var(--cream);
}

.content-section h2 {
    font-size: 1.75rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.content-section .lead {
    font-family: 'Nunito Sans', sans-serif;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 560px;
    font-size: 0.95rem;
}

/* Practice areas grid */
.practice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.practice-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 28px;
    border-top: 3px solid var(--gold);
}

.practice-card h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.practice-card p {
    font-family: 'Nunito Sans', sans-serif;
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.practice-card a {
    font-family: 'Nunito Sans', sans-serif;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
}

.practice-card a:hover {
    text-decoration: underline;
}

/* Results */
.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.result-item {
    padding: 24px;
    border-left: 3px solid var(--gold);
    background: var(--warm-bg);
}

.result-item .amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    display: block;
    margin-bottom: 6px;
}

.result-item p {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Team */
.attorney-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.attorney-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--border);
}

.attorney-avatar {
    width: 80px;
    height: 80px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 4px;
    flex-shrink: 0;
}

img.attorney-avatar {
    display: block;
}

.attorney-card h4 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 2px;
}

.attorney-card .title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
}

.attorney-card p {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Two-col */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

/* Lists */
.detail-list {
    list-style: none;
}

.detail-list li {
    padding: 8px 0 8px 20px;
    position: relative;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.875rem;
    color: var(--text-light);
}

.detail-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 1px;
    transform: rotate(45deg);
}

/* CTA */
.cta-band {
    background: var(--navy);
    padding: 56px 0;
    text-align: center;
}

.cta-band h2 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.cta-band p {
    color: rgba(255,255,255,0.7);
    font-family: 'Nunito Sans', sans-serif;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.6);
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.8rem;
    margin-top: 12px;
    line-height: 1.5;
}

.footer h4 {
    color: var(--white);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: var(--gold-accent);
}

.footer-contact p {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.8rem;
    margin-bottom: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
}

.footer-bottom p {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.35);
}

/* Awards */
.awards-bar {
    display: flex;
    gap: 32px;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-top: 40px;
}

.award-badge {
    text-align: center;
    padding: 12px 16px;
}

.award-badge .year {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    display: block;
}

.award-badge .title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
}

/* Contact form */
.contact-form {
    max-width: 480px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    font-size: 0.875rem;
    font-family: 'Nunito Sans', sans-serif;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--navy);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy-deep);
        padding: 16px 24px;
        border-top: 1px solid rgba(255,255,255,0.08);
    }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; gap: 10px; }
    .practice-grid, .results-grid, .attorney-grid, .two-col, .footer-grid { grid-template-columns: 1fr; }
    .awards-bar { flex-wrap: wrap; gap: 16px; }
}
