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

html, body {
    height: 100%;
    background: #0e0e0e;
    color: #f5f5f5;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    min-height: 100vh;
}

main {
    width: 100%;
    max-width: 540px;
    text-align: center;
    padding: 2rem 1rem;
}

.logo {
    max-width: 220px;
    width: 60%;
    height: auto;
    margin: 0 auto 2.5rem;
    display: block;
    filter: brightness(1.05);
}

h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 400;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2.5rem;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    color: #d0d0d0;
    margin-bottom: 1rem;
}

p[lang="en"] {
    color: #9a9a9a;
    font-style: italic;
}

p.contact {
    margin-top: 2rem;
    font-style: normal;
    color: #f5f5f5;
}

p.contact a {
    color: #e88e00;
    text-decoration: none;
    font-weight: 600;
}

p.contact a:hover {
    text-decoration: underline;
}
