.container {
    width: min(100% - 40px, var(--max-width));
    margin-inline: auto;
}

.section {
    padding: 84px 0;
}

.section--alt {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(243, 238, 232, 0.88);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
}

.topbar__inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header__container {
    width: min(100% - 40px, 980px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 28px;
}

.site-footer {
    margin-top: 80px;
    padding: 56px 0 24px;
    background: #f3eee8;
    border-top: 1px solid #d8ccc2;
}

.site-footer .container {
    width: min(100% - 40px, 980px);
    margin: 0 auto;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 56px;
    align-items: start;
    padding-bottom: 32px;
}

.site-footer__bottom {
    padding-top: 18px;
    border-top: 1px solid #d8ccc2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}