:root {
    --ink: #172033;
    --muted: #586174;
    --surface: #ffffff;
    --soft: #f4f6f9;
    --line: #dde2e9;
    --accent: #e99522;
    --accent-dark: #b86700;
    --header: #111827;
    --max: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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.65;
}

a {
    color: #7c4500;
}

a:hover {
    color: var(--accent-dark);
}

.skip {
    position: absolute;
    left: -9999px;
}

.skip:focus {
    left: 1rem;
    top: 1rem;
    z-index: 100;
    background: white;
    padding: .75rem 1rem;
}

.site-header {
    background: var(--header);
    color: white;
}

.nav {
    max-width: var(--max);
    margin: 0 auto;
    min-height: 72px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand {
    color: white;
    text-decoration: none;
    font-size: 1.18rem;
    font-weight: 800;
    letter-spacing: -.02em;
}

.brand span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.35rem;
}

.nav-links a {
    color: #e7eaf0;
    text-decoration: none;
    font-size: .94rem;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
    color: white;
}

main {
    min-height: 60vh;
}

.hero {
    background:
        linear-gradient(
            135deg,
            #f7f8fa 0%,
            #eef1f6 100%
        );
    border-bottom: 1px solid var(--line);
}

.hero-inner,
.section,
.page-main {
    max-width: var(--max);
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.hero-inner {
    padding-top: 88px;
    padding-bottom: 88px;
}

.eyebrow {
    margin: 0 0 .7rem;
    color: var(--accent-dark);
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: .09em;
    font-size: .78rem;
}

h1,
h2,
h3 {
    line-height: 1.16;
    letter-spacing: -.025em;
}

h1 {
    margin: 0;
    max-width: 790px;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.page-main h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
}

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

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin-top: 2rem;
}

.button {
    display: inline-block;
    padding: .78rem 1.05rem;
    border-radius: 8px;
    background: var(--accent);
    color: #171717;
    text-decoration: none;
    font-weight: 750;
}

.button:hover {
    background: #f1a439;
    color: #171717;
}

.button.secondary {
    background: white;
    border: 1px solid #cfd5dd;
}

.section {
    padding-top: 72px;
    padding-bottom: 72px;
}

.section + .section {
    border-top: 1px solid var(--line);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 2rem;
}

.section-heading h2 {
    margin: .25rem 0 .75rem;
    font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.section-heading p {
    color: var(--muted);
}

.cards {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.card {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 1.5rem;
    background: white;
}

.card h3 {
    margin-top: 0;
}

.card p {
    color: var(--muted);
    margin-bottom: 0;
}

.contact-band {
    background: var(--header);
    color: white;
}

.contact-band .section-heading p {
    color: #cdd3dd;
}

.contact-band a:not(.button) {
    color: white;
}

.page-main {
    padding-top: 72px;
    padding-bottom: 80px;
}

.page-copy {
    max-width: 800px;
}

.page-copy h2 {
    margin-top: 2rem;
}

.notice {
    margin: 2rem 0;
    border-left: 4px solid var(--accent);
    background: var(--soft);
    padding: 1rem 1.2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.contact-box {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 1.3rem;
}

.contact-box strong {
    display: block;
    margin-bottom: .35rem;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: var(--soft);
}

.footer-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 32px 24px;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    color: var(--muted);
    font-size: .9rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links a {
    color: var(--muted);
}

@media (max-width: 760px) {
    .nav {
        align-items: flex-start;
        flex-direction: column;
        padding-top: 18px;
        padding-bottom: 18px;
        gap: .8rem;
    }

    .nav-links {
        width: 100%;
        flex-wrap: wrap;
        gap: .65rem 1rem;
    }

    .hero-inner {
        padding-top: 58px;
        padding-bottom: 62px;
    }

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

    .section {
        padding-top: 54px;
        padding-bottom: 54px;
    }

    .footer-inner {
        flex-direction: column;
    }
}
