:root {
    --bg: #f7f5ef;
    --text: #1f2a20;
    --muted: #9AA076;
    --brand: #83895F;
    --magnolia: #CB696F;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    color: var(--text);
    background-color: var(--bg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.68' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.2'/%3E%3C/svg%3E");
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.menu-page {
    width: min(900px, 100%);
    background: transparent;
    padding: 28px;
    text-align: center;
}

.logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
}

.logo-wrap img {
    max-width: 100%;
    max-height: 320px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.logo-placeholder {
    color: var(--muted);
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

h1 {
    margin: 0 0 14px;
    color: var(--magnolia);
    font-size: clamp(22px, 4vw, 40px);
    font-weight: 600;
    letter-spacing: 0.08em;
}

.drink-toggle {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: min(460px, 100%);
    margin: 28px auto 0;
    padding: 6px;
    border: 1px solid rgba(131, 137, 95, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 10px 24px rgba(31, 42, 32, 0.08);
}

.drink-toggle__slider {
    position: absolute;
    top: 6px;
    left: 6px;
    width: calc(50% - 6px);
    height: calc(100% - 12px);
    border-radius: 999px;
    background: var(--brand);
    transition: transform 180ms ease, background-color 180ms ease;
}

.drink-toggle:has(.drink-toggle__button:last-of-type.is-active) .drink-toggle__slider {
    background: var(--magnolia);
    transform: translateX(100%);
}

.drink-toggle__button {
    position: relative;
    z-index: 1;
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--brand);
    cursor: pointer;
    font: inherit;
    font-size: clamp(13px, 2vw, 17px);
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 14px 16px;
    border-radius: 999px;
    transition: color 180ms ease;
}

.drink-toggle__button.is-active,
.drink-toggle__button:last-of-type.is-active {
    color: #fff;
}

.drink-toggle__button:last-of-type {
    color: var(--magnolia);
}

.drink-toggle__button:focus-visible {
    outline: 2px solid var(--magnolia);
    outline-offset: 2px;
}

.menu-section {
    width: 100%;
    margin: 32px auto 0;
    display: flex;
    justify-content: center;
}

.menu-section[hidden] {
    display: none;
}

.menu-table {
    width: auto;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0;
}

.menu-table td {
    padding: 10px 10px;
    font-size: clamp(15px, 2.4vw, 20px);
    line-height: 1.35;
    vertical-align: top;
}

.menu-table__price {
    width: 120px;
    padding-right: 32px;
    border-right: 1px solid var(--magnolia);
    color: #000;
    white-space: nowrap;
    text-align: right;
}

.menu-table__item {
    padding-left: 32px;
    text-align: left;
    color: #000;
}

@media (max-width: 600px) {
    .menu-page {
        padding: 16px;
    }

    .drink-toggle {
        width: 100%;
    }

    .drink-toggle__button {
        font-size: 13px;
        padding: 12px 10px;
    }

    .menu-table__price {
        width: 92px;
        padding-right: 22px;
    }

    .menu-table__item {
        padding-left: 22px;
    }
}