:root {
    --bg-color: #ffffff;
    --text-primary: #171717;
    --text-secondary: #737373;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --spacing-unit: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.5;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center for that premium landing feel */
    align-items: center;
}

.container {
    max-width: 640px;
    width: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem; /* Generous spacing */
}

header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 400;
}

main {
    font-size: 1.5rem; /* Larger font for the statement */
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.studio-description {
    max-width: 100%;
}

footer {
    border-top: 1px solid #f0f0f0;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.contact {
    display: flex;
    align-items: center;
}


.legal-links {
    margin-top: 0.5rem;
    font-size: 0.875rem;
}

.legal-links a {
    color: var(--text-secondary);
    text-decoration: none;
}

.legal-links a:hover {
    color: var(--text-primary);
}

.separator {
    margin: 0 0.5rem;
    color: #e5e5e5;
}

/* Mobile adjustments */
@media (max-width: 640px) {
    body {
        justify-content: flex-start; /* Do not center vertically on small screens */
    }
    
    .container {
        padding-top: 4rem;
        gap: 3rem;
    }
    
    main {
        font-size: 1.25rem;
    }
}
