:root {
    color-scheme: light;
    --bg: #f5f7fb;
    --panel: #ffffff;
    --text: #172033;
    --muted: #65708a;
    --border: #d9e0ee;
    --accent: #1769e0;
    --accent-dark: #0f4da8;
    --surface: #eef2f8;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: inherit;
}

.site-header {
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    display: block;
    width: 200px;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav a {
    padding: 9px 11px;
    color: var(--muted);
    text-decoration: none;
    font-weight: 700;
}

.site-nav a:hover {
    color: var(--text);
}

.site-main {
    flex: 1;
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto;
}

.hero {
    min-height: calc(100vh - 150px);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
    align-items: center;
    gap: 44px;
    padding: 28px 0 54px;
}

.hero-copy,
.page-heading,
.content-band {
    max-width: 720px;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    font-size: clamp(34px, 6vw, 68px);
    line-height: 1.02;
    letter-spacing: 0;
}

h2 {
    margin: 0 0 10px;
    font-size: 22px;
}

p {
    line-height: 1.6;
}

.hero-copy > p:not(.eyebrow),
.page-heading > p,
.content-band > p,
.contact-card p {
    color: var(--muted);
    font-size: 17px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 16px;
    border: 0;
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    font: inherit;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.button:hover {
    background: var(--accent-dark);
}

.button.secondary {
    background: #24425f;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-visual img {
    width: min(100%, 430px);
    height: auto;
}

.content-band,
.page-heading {
    padding: 34px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding-bottom: 42px;
}

.contact-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 18px;
    box-shadow: 0 10px 24px rgba(23, 32, 51, .08);
}

.revealed-contact {
    min-height: 28px;
    margin-top: 14px;
    font-weight: 800;
}

.revealed-contact a {
    color: var(--accent);
}

.site-footer {
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto;
    padding: 22px 0;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 14px;
}

@media (max-width: 820px) {
    .site-header,
    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 18px;
        padding-top: 18px;
    }

    .hero-visual {
        justify-content: flex-start;
    }

    .hero-visual img {
        width: min(100%, 300px);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}
