:root {
    --primary-gold: #785c2b;
    --accent-gold: #9a7b4f;
    --bg-light: #c6c6c6; /* Matches the logo image edges */
    --text-dark: #0a0a0a;
    --text-muted: #262626;
    --border-color: rgba(0, 0, 0, 0.15);
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* Main Content */
.main-content {
    width: 100%;
    max-width: 600px;
    padding: 40px 20px;
}

.content-container {
    text-align: center;
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Logo */
.logo-wrapper {
    width: 160px;
    height: 160px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.firm-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Typography */
.firm-name {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.firm-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 48px;
    font-weight: 400;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Button */
.action-wrapper {
    display: flex;
    justify-content: center;
}

.contact-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 40px;
    border-radius: 8px;
    background-color: #0a0a0a;
    border: 1px solid transparent;
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-button:hover {
    background-color: #262626;
    transform: translateY(-1px);
}

.contact-button .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    font-weight: 500;
}

.contact-button .email {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 640px) {
    .firm-name {
        font-size: 1.75rem;
    }
    .firm-description {
        font-size: 1rem;
    }
}
