html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
}

body {
    background: #FAEBD7;
    color: #2d241c;
    font-family: 'Merriweather', serif;
    font-weight: 400;
}

.screen {
    min-height: 100vh;
    box-sizing: border-box;
    padding: 2.5vh 2.5vw;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 0.6vh;
}

.screen-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0.5vh;
    margin-bottom: 0.5vh;
    text-align: center;
}

.logo {
    max-width: 34vw;
    max-height: 11vh;
    height: auto;
}

.screen-header h1 {
    margin: 0.15em 0 0.35em 0;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 3vw, 3.4rem);
    letter-spacing: 0.12em;
    line-height: 1.15;
    text-shadow: 0 2px 2px rgba(0,0,0,0.08);
}

.content-area {
    display: grid;
    gap: 1.2rem;
    align-content: start;
}
.menu-block {
    display: grid;
    align-content: start;
}

.menu-block-title {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: clamp(1.25rem, 1.8vw, 1.9rem);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    line-height: 1.1;
    margin-bottom: 0.4rem;
}

.menu-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem 2.5rem;
    align-items: start;
}

.menu-item {
    background: rgba(255,255,255,0.72);
    border-radius: 18px;
    padding: 1rem 1.2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    min-height: 7.4rem;
}

.menu-item-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 1.2rem;
    align-items: start;
}

.menu-item-title-wrap {
    min-width: 0;
}

.menu-item-title-line {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem;
}

.menu-item-title {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: clamp(1.45rem, 2vw, 2.25rem);
    line-height: 1.1;
    letter-spacing: 0.06em;
}

.menu-item-english {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: clamp(0.95rem, 1.15vw, 1.35rem);
    line-height: 1.1;
    opacity: 0.78;
}

.menu-item-price-wrap {
    text-align: right;
    white-space: nowrap;
}

.menu-item-prices {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: clamp(1.35rem, 1.8vw, 2.1rem);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.menu-item-price-labels {
    margin-top: 0.2rem;
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: clamp(0.78rem, 0.9vw, 1rem);
    line-height: 1.1;
    letter-spacing: 0.03em;
    opacity: 0.8;
}

.menu-item-description {
    margin-top: 0.28rem;
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: clamp(0.95rem, 1.1vw, 1.22rem);
    line-height: 1.28;


    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.menu-item-allergens {
    margin-top: 0.22rem;
    font-family: 'Merriweather', serif;
    font-weight: 400;
    font-style: italic;
    font-size: clamp(0.9rem, 0.98vw, 1.1rem);
    line-height: 1.2;
    opacity: 0.9;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.menu-featured-block {
    margin-top: 0;
}

.menu-featured-block .menu-block-title {
    margin-bottom: 0.4rem;
}

.menu-featured-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.menu-featured-list .menu-item {
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(0,0,0,0.05);
}

.food-carousel {
    margin-top: 2vh;
}

.food-carousel-frame {
    position: relative;
    height: 28vh;
    min-height: 140px;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.food-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.food-slide.is-active {
    opacity: 1;
}

@media (max-width: 900px) {
    .menu-list {
        grid-template-columns: 1fr;
    }
}
