.topbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
}

.brand-stack {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.topbar-nav {
    justify-self: center;
}

.topbar-cta {
    justify-self: end;
}

.landing-main {
    min-height: calc(100vh - 120px);
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 18px;
}

.hero-simple {
    width: min(100%, 760px);
    padding: 52px 44px;
    text-align: center;
}

.hero-simple p {
    max-width: 32ch;
    justify-self: center;
}

.hero-actions {
    justify-content: center;
}

.contact-grid {
    width: min(100%, 860px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.contact-tile {
    display: grid;
    gap: 6px;
    padding: 18px 20px;
    text-align: center;
}

.contact-tile span {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.contact-tile strong {
    font-size: 15px;
    font-weight: 700;
}

@media (max-width: 720px) {
    .topbar {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .topbar-nav,
    .topbar-cta {
        justify-self: center;
    }

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