:root {
    --bg-color: #1a4328; /* Lighter dark green */
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --accent-color: #a7f3d0; /* Soft green for hover */
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1000px;
    padding: 2rem;
    text-align: center;
    animation: fadeUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header {
    margin-bottom: 2rem;
}

.firm-name {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400; /* Elegantly thin and minimal */
    letter-spacing: 1px;
    color: var(--text-primary);
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.contact-item {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: var(--accent-color);
}

.divider {
    color: var(--text-secondary);
    opacity: 0.4;
    user-select: none;
    font-weight: 300;
}

/* Responsive scaling to keep everything mostly inline on smaller screens */
@media (max-width: 768px) {
    .firm-name {
        font-size: 2.25rem;
    }
    
    .contact-info {
        font-size: 0.9rem;
        gap: 0.75rem;
        flex-wrap: wrap; /* In case the screen is extremely small, prevent horizontal overflow */
    }
}
