:root {
    --navy: #002244;
    --navy-light: #003366;
    --gold: #c5a059;
    --gold-light: #d4af37;
    --white: #ffffff;
    --grey-bg: #f4f4f4;
    --text: #333333;
    
    --font-serif: 'Libre Baskerville', serif;
    --font-sans: 'Source Sans Pro', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-sans);
    background-color: var(--grey-bg);
    color: var(--text);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.law-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.classic-sidebar {
    width: 280px;
    background-color: var(--navy);
    color: var(--white);
    display: flex;
    flex-direction: column;
    padding: 40px;
    border-right: 5px solid var(--gold);
    position: fixed;
    height: 100vh;
    z-index: 100;
}

.brand {
    text-align: center;
    margin-bottom: 50px;
}

.scales-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.brand h1 {
    font-family: var(--font-serif);
    font-size: 2rem;
    line-height: 1;
    letter-spacing: 2px;
}

.brand span {
    color: var(--gold);
}

.brand p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #aaa;
    margin-top: 5px;
}

.serif-nav {
    flex-grow: 1;
}

.serif-nav li {
    margin-bottom: 15px;
}

.serif-nav a {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: #ccc;
    padding-bottom: 5px;
    border-bottom: 1px solid transparent;
}

.serif-nav a:hover, .serif-nav a.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
    padding-left: 5px;
}

.btn-gold {
    display: inline-block;
    background-color: var(--gold);
    color: var(--navy) !important;
    padding: 10px 20px;
    font-family: var(--font-sans) !important;
    font-weight: bold;
    margin-top: 20px;
    text-align: center;
    border-radius: 2px;
}

.btn-gold:hover {
    background-color: var(--white);
}

.sidebar-contact {
    font-size: 0.8rem;
    text-align: center;
    color: #888;
    border-top: 1px solid #444;
    padding-top: 20px;
}

/* Content Area */
.content-area {
    margin-left: 280px;
    flex: 1;
    background-color: var(--white);
}

/* Hero */
.hero-classic {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 34, 68, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 80px;
    color: var(--white);
}

.hero-overlay h2 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    margin-bottom: 20px;
    border-left: 5px solid var(--gold);
    padding-left: 20px;
}

.hero-overlay p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-link {
    color: var(--gold);
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-style: italic;
    text-decoration: underline;
}

/* Intro & General */
.intro-text, .page-header, .contact-wrapper, .legal-doc {
    padding: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-text h3, .page-header h1, .legal-doc h1 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 20px;
}

.divider {
    width: 100px;
    height: 3px;
    background-color: var(--gold);
    margin-bottom: 30px;
}

.intro-text p {
    font-size: 1.1rem;
    color: #555;
}

/* Practice Areas */
.practice-areas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: var(--grey-bg);
}

.area-card {
    padding: 60px 40px;
    border-right: 1px solid #ddd;
    transition: 0.3s;
}

.area-card:hover {
    background-color: var(--white);
}

.area-card .icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 20px;
}

.area-card h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.area-card a {
    color: var(--gold);
    font-weight: bold;
    font-family: var(--font-serif);
    margin-top: 15px;
    display: inline-block;
}

/* About / Services List */
.services-list {
    padding: 0 80px 80px;
}

.service-item {
    border-bottom: 1px solid #eee;
    padding: 40px 0;
}

.service-item h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 10px;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 0 80px 80px;
}

.testi-card {
    background-color: var(--grey-bg);
    padding: 40px;
    position: relative;
    border: 1px solid #ddd;
}

.testi-card.highlight {
    background-color: var(--navy);
    color: var(--white);
    border: none;
}

.quote-mark {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--gold);
    line-height: 0.5;
    margin-bottom: 20px;
}

.testi-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.author strong {
    display: block;
    font-family: var(--font-serif);
}

.author span {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Contact Form */
.contact-wrapper {
    display: flex;
    gap: 60px;
}

.contact-info { flex: 1; }
.contact-info h2 { font-family: var(--font-serif); color: var(--navy); font-size: 2rem; margin-bottom: 20px; }
.info-block { margin-top: 30px; border-left: 3px solid var(--gold); padding-left: 15px; }

.formal-form { flex: 1.5; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: bold; margin-bottom: 5px; font-family: var(--font-serif); color: var(--navy); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 15px; border: 1px solid #ccc; background-color: var(--grey-bg); font-family: var(--font-sans); }
.form-group input:focus { border-color: var(--navy); outline: none; }

.submit-btn {
    background-color: var(--navy);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background-color: var(--gold);
    color: var(--navy);
}

/* Legal */
.legal-doc h3 {
    color: var(--navy);
    margin-top: 30px;
    margin-bottom: 10px;
    font-family: var(--font-serif);
}

@media (max-width: 1024px) {
    .law-container { flex-direction: column; }
    .classic-sidebar { width: 100%; height: auto; position: relative; border-right: none; border-bottom: 5px solid var(--gold); flex-direction: row; justify-content: space-between; align-items: center; padding: 20px; }
    .brand { margin-bottom: 0; text-align: left; display: flex; gap: 15px; align-items: center; }
    .scales-icon { font-size: 2rem; margin: 0; }
    .serif-nav { display: none; } /* Simplified mobile menu */
    .sidebar-contact { display: none; }
    .content-area { margin-left: 0; }
    .hero-overlay { padding: 40px; }
    .hero-overlay h2 { font-size: 2.5rem; }
    .practice-areas, .testimonial-grid, .contact-wrapper { grid-template-columns: 1fr; flex-direction: column; }
}   