*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #fafafa;
    --text: #111111;
    --muted: #777777;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-font-smoothing: antialiased;
}

.container {
    text-align: center;
    padding: 2rem;
}

.logo {
    max-width: 140px;
    height: auto;
    margin-bottom: 1.8rem;
}

h1 {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.tagline {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--muted);
    margin-bottom: 1.8rem;
}

.contact {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text);
}

.contact:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .container {
        padding: 1.5rem;
    }

    .logo {
        max-width: 120px;
        margin-bottom: 1.4rem;
    }

    h1 {
        font-size: 1.1rem;
    }
}
