@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/lato-regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/lato-700.woff2') format('woff2');
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('fonts/playfair-display.woff2') format('woff2');
}

:root {
    --color-bg: #000000;
    --color-text: #f2f2f2;
    --color-muted: #b8b8b8;
    --color-accent: #a07d2f;
}

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

html, body {
    height: 100%;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
}

.container {
    max-width: 720px;
    width: 100%;
    text-align: center;
}

.logo {
    display: block;
    max-width: 280px;
    width: 100%;
    height: auto;
    margin: 0 auto 48px;
}

.eyebrow {
    color: var(--color-accent);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    font-size: clamp(28px, 5vw, 44px);
    line-height: 1.2;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.lead {
    color: var(--color-text);
    font-size: 17px;
    margin-bottom: 48px;
}

.lead strong {
    font-weight: 700;
}

.contact {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 40px;
    margin-top: 8px;
}

.contact h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    font-size: clamp(24px, 4vw, 32px);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.contact .eyebrow {
    margin-bottom: 18px;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text);
    text-decoration: none;
    font-size: 18px;
    transition: color 0.2s ease;
}

.contact-email:hover {
    color: var(--color-accent);
}

.contact-email svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

footer {
    padding: 28px 24px;
    text-align: center;
    color: var(--color-muted);
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

footer p {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 540px) {
    main {
        padding: 40px 20px;
    }

    .logo {
        max-width: 220px;
        margin-bottom: 36px;
    }

    .lead {
        margin-bottom: 36px;
    }

    .contact {
        padding-top: 32px;
    }

    footer {
        font-size: 12px;
    }
}
