@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
    --navy: #1B2A4A;
    --navy-light: #2D4470;
    --gold: #C5A55A;
    --gold-light: #D4BC7E;
    --cream: #FAF8F5;
    --dark: #111827;
    --gray: #6B7280;
    --white: #FFFFFF;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--dark);
}

.top-bar {
    background: var(--navy);
    color: white;
    padding: 12px 60px;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}
.top-bar a { color: var(--gold); text-decoration: none; }

nav {
    background: white;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--gold);
}

.logo {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
}

.logo span { color: var(--gold); }

.nav-links { display: flex; gap: 35px; list-style: none; }
.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}
.nav-links a:hover { color: var(--gold); }

.btn-consult {
    background: var(--navy);
    color: white;
    padding: 14px 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
}

.hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    padding: 100px 60px;
    align-items: center;
    background: white;
}

.hero h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 25px;
}

.hero p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-btns { display: flex; gap: 15px; margin-bottom: 40px; }

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    padding: 16px 36px;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
}

.btn-navy {
    background: transparent;
    color: var(--navy);
    padding: 16px 36px;
    border: 2px solid var(--navy);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
}

.hero-stats {
    display: flex;
    gap: 50px;
    padding-top: 30px;
    border-top: 1px solid #E5E7EB;
}

.hero-stat h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 2rem;
    color: var(--gold);
}
.hero-stat p { color: var(--gray); font-size: 0.85rem; }

.hero-visual {
    background: var(--navy);
    border-radius: 4px;
    padding: 60px;
    color: white;
    position: relative;
}

.hero-visual::before {
    content: '⚖';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    opacity: 0.1;
}

.hero-visual h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--gold);
}

.hero-visual p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-form input, .hero-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.hero-form input::placeholder, .hero-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.hero-form textarea { height: 100px; resize: none; }

.hero-form button {
    width: 100%;
    padding: 14px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
}

.section { padding: 100px 60px; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-tag { color: var(--gold); font-weight: 600; font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; }
.section-header h2 { font-family: 'Libre Baskerville', serif; font-size: 2.5rem; color: var(--navy); }

.practice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.practice-card {
    background: white;
    padding: 40px;
    border-left: 4px solid var(--gold);
    transition: all 0.3s;
}
.practice-card:hover {
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.practice-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.practice-card h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 12px;
}
.practice-card p { color: var(--gray); line-height: 1.7; font-size: 0.9rem; }

.team-section { background: white; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card { text-align: center; }

.team-img {
    width: 180px;
    height: 220px;
    background: linear-gradient(135deg, #E8E4DF, #D4CEC5);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.team-card h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 5px;
}
.team-card p { color: var(--gold); font-size: 0.85rem; font-weight: 600; }
.team-card .desc { color: var(--gray); font-size: 0.85rem; margin-top: 5px; }

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: var(--navy);
    padding: 60px;
}

.result-item { text-align: center; color: white; }
.result-item h3 { font-family: 'Libre Baskerville', serif; font-size: 3rem; color: var(--gold); }
.result-item p { color: rgba(255,255,255,0.7); margin-top: 5px; }

.testimonials-section { background: white; }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial {
    padding: 40px;
    border: 1px solid #E5E7EB;
}

.testimonial p {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    color: var(--navy);
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author { color: var(--gold); font-weight: 600; }
.testimonial-case { color: var(--gray); font-size: 0.85rem; }

.cta-section {
    background: var(--navy);
    padding: 80px 60px;
    text-align: center;
    color: white;
}
.cta-section h2 { font-family: 'Libre Baskerville', serif; font-size: 2.5rem; margin-bottom: 15px; }
.cta-section p { color: rgba(255,255,255,0.6); margin-bottom: 30px; }
.cta-btn {
    background: var(--gold);
    color: var(--navy);
    padding: 16px 40px;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
}

footer {
    background: var(--dark);
    color: white;
    padding: 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer-col h4 { color: var(--gold); margin-bottom: 20px; }
.footer-col a { display: block; color: rgba(255,255,255,0.5); text-decoration: none; padding: 5px 0; font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { padding: 20px 60px; background: #0A0F1A; text-align: center; color: rgba(255,255,255,0.3); font-size: 0.85rem; }