* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: #252525;
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f7f3;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px clamp(16px, 4vw, 56px);
    background: #ffffff;
    border-bottom: 1px solid #dddddd;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #252525;
    text-decoration: none;
}

.site-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 18px;
    width: 100%;
    margin: 0 auto;
    padding: 20px clamp(16px, 4vw, 40px) 28px;
    text-align: center;
    color: #4c585b;
    font-size: 14px;
    border-top: 1px solid #d8d8d0;
}

.site-footer a {
    color: #005ea8;
    font-weight: 700;
    text-underline-offset: 2px;
}

.brand img {
    width: 172px;
    height: auto;
}

.site-header nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.site-header nav a {
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    background: #ece9df;
}

.site-header nav a.active {
    color: #ffffff;
    background: #2f6f73;
}

main {
    max-width: 960px;
    margin: 0 auto;
    padding: 28px clamp(16px, 4vw, 40px) 56px;
}

.page-heading h1 {
    margin: 0 0 24px;
    font-size: 30px;
    line-height: 1.2;
}

.ordering-page {
    display: grid;
    gap: 16px;
}

.ordering-copy {
    max-width: 680px;
    font-size: 16px;
    line-height: 1.6;
}

.ordering-copy p {
    margin: 0 0 14px;
}

.greeting {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.ordering-copy a {
    color: #005ea8;
    font-weight: 700;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

.ordering-copy a:hover,
.ordering-copy a:focus-visible {
    color: #003f73;
}

.ordering-actions {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #d8d8d0;
}

.catalog-link {
    display: inline-block;
    margin-top: 4px;
}

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

    .site-header nav a {
        padding: 7px 9px;
    }

    .page-heading h1 {
        font-size: 26px;
    }
}
