:root {
    /* Muted Sage / Olive tone extracted from the logo vibe */
    --bg-color: #8C9185;
    --text-color: #F5F5F0;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    /* display: flex; */
    /* Removed to allow scrolling for longer content */
    /* justify-content: center; */
    /* align-items: center; */
    /* overflow: hidden; */
    /* Removing overflow hidden so user can scroll */
    min-height: 100vh;
}

.container {
    text-align: center;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    animation: fadeIn 1.5s ease-in-out;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-wrapper {
    max-width: 300px;
    width: 100%;
}

.brand-logo {
    width: 100%;
    height: auto;
    display: block;
    /* If the logo has a background, we might need to mix-blend-mode or just let it sit */
}

.content h1 {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 2.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.content p {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 1rem;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

/* Services Section */
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 1000px;
    text-align: left;
}

.professional {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.05);
    /* Subtle glass effect */
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.professional h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.professional h4 {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 1rem;
}

.professional ul {
    list-style: none;
}

.professional li {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    opacity: 0.9;
}

.sub-item {
    display: block;
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 0.2rem;
    font-style: italic;
}

footer {
    margin-top: 3rem;
    font-size: 0.75rem;
    opacity: 0.7;
    line-height: 1.5;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Responsive Adjustments */
@media (min-width: 768px) {
    .logo-wrapper {
        max-width: 400px;
    }

    .content h1 {
        font-size: 3.5rem;
    }

    .content p {
        font-size: 1.2rem;
    }
}