:root {
    --brown: #572D0C;
    --harvest: #C78E3A;
    --earth: #E3B76A;
    --cream: #FDFCD4;
    --ink: #171512;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--ink);
    background: var(--cream);
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

.brand-logo {
    height: clamp(22px, 3.6vw, 28px);
    width: auto;
    display: block;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff7e6;
    box-shadow: 0 2px 10px rgba(23, 21, 18, .04);
}

.topbar .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 64px;
    position: relative;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--brown);
}

.brand .logotype {
    font-family: "Playfair Display", serif;
    font-size: clamp(20px, 3.8vw, 28px);
    letter-spacing: .02em;
}

.nav {
    display: flex;
    gap: clamp(14px, 3vw, 28px);
}

.nav a {
    text-decoration: none;
    color: var(--ink);
    font-size: clamp(14px, 2.5vw, 16px);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(23, 21, 18, .12);
    background: #fff url("img/ham.png") center/20px 14px no-repeat;
    box-shadow: 0 2px 10px rgba(23, 21, 18, .06);
}

.display {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    line-height: 1.04;
    font-size: clamp(28px, 6vw, 56px);
}

.h3 {
    font-family: "Playfair Display", serif;
    font-size: clamp(20px, 3.2vw, 28px);
    color: var(--brown);
    margin: 0 0 16px;
}

.lead {
    font-size: clamp(14px, 2.6vw, 17px)
}

.footer {
    border-top: 1px solid rgba(23, 21, 18, .08);
    padding: 28px 0;
    background: #fff
}

.footer .cols {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 16px
}

.footer h6 {
    margin: 0 0 10px;
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--brown)
}

.footer a {
    display: block;
    text-decoration: none;
    color: var(--ink);
    opacity: .9;
    font-size: 14px;
    margin: 6px 0
}

/* mobile menu (newest) */
@media (max-width:760px) {
    .nav-toggle {
        display: block
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        display: grid;
        grid-auto-rows: 48px;
        gap: 0;
        padding: 12px 20px;
        box-shadow: 0 10px 24px rgba(23, 21, 18, .08);
        border: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity .22s ease, transform .22s ease, visibility .22s;
    }

    .nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav a {
        padding: 12px 0;
        border: 0
    }

    .nav.open a:not(:last-child) {
        border-bottom: 1px solid rgba(23, 21, 18, .08)
    }
}