:root {
    color-scheme: light;
    --ink: #18212b;
    --muted: #546274;
    --line: #dce3ea;
    --surface: #f6f8fb;
    --brand: #0b756f;
    --brand-dark: #084f57;
    --accent: #9b5a2e;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--surface);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

a {
    color: var(--brand-dark);
}

.page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 48px 20px;
}

.hero {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.brand-logo {
    display: block;
    width: min(760px, 92vw);
    height: auto;
    margin: 0 auto 28px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    font-size: clamp(2.7rem, 7vw, 5.6rem);
    line-height: 1;
    letter-spacing: 0;
}

.lead {
    max-width: 640px;
    margin: 24px auto 0;
    color: var(--muted);
    font-size: 1.16rem;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border: 1px solid var(--line);
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
}

.button.primary {
    background: var(--brand);
    border-color: var(--brand);
    color: white;
}

.button.secondary {
    background: white;
}

.contact-panel {
    width: min(680px, 100%);
    text-align: center;
}

.brand-link {
    display: inline-flex;
    margin-bottom: 28px;
}

.contact-logo {
    width: min(420px, 82vw);
    height: auto;
}

.contact-title {
    font-size: clamp(1.7rem, 4vw, 2.4rem);
}

.contact-address {
    margin: 24px auto 0;
    color: var(--ink);
    font-style: normal;
    line-height: 1.7;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

@media (max-width: 640px) {
    .page {
        padding: 32px 18px;
    }

    .brand-logo {
        width: min(520px, 94vw);
        margin-bottom: 22px;
    }

    .lead {
        font-size: 1rem;
    }

    .contact-logo {
        width: min(360px, 88vw);
    }
}
