:root {
    --page-bg: #f5f6f8;
    --page-text: #151923;
    --page-muted: #697180;
    --page-line: #d9dde4;
    --page-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
    --brand-orange: #ff9f05;
}

body {
    background: var(--page-bg);
    color: var(--page-text);
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: min(calc(100% - 2rem), 1120px);
    margin-inline: auto;
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--page-line);
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--page-text);
    text-decoration: none;
}

.brand-lockup:hover,
.brand-lockup:focus {
    color: var(--page-text);
}

.brand-mark {
    position: relative;
    display: grid;
    place-items: center;
    width: 4.5rem;
    height: 4.5rem;
    flex: 0 0 4.5rem;
    border-radius: 1.35rem;
    background: var(--brand-orange);
    box-shadow: var(--page-shadow);
}

.brand-card {
    position: absolute;
    width: 1.55rem;
    height: 1.05rem;
    border: 3px solid #fff;
    border-radius: 0.18rem;
    transform: rotate(28deg);
}

.brand-card-top {
    top: 1.06rem;
}

.brand-card-middle {
    top: 1.72rem;
}

.brand-card-bottom {
    top: 2.38rem;
}

.brand-name {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
}

.menu-button {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.36rem;
    width: 3rem;
    height: 3rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    padding: 0;
}

.menu-button span {
    display: block;
    width: 1.55rem;
    height: 0.2rem;
    margin-inline: auto;
    border-radius: 999px;
    background: var(--page-text);
}

@media (max-width: 575.98px) {
    .site-header {
        width: min(calc(100% - 3rem), 1120px);
        padding: 1.75rem 0 1.45rem;
    }

    .brand-mark {
        width: 4rem;
        height: 4rem;
        flex-basis: 4rem;
    }

    .brand-name {
        font-size: 2rem;
    }
}
