/*
 * Simple Things – návrh D (Figma gUMqVzAMLr9qG6OdS4t43m, uzly 46:131 / 46:240).
 * Mobile-first, desktop od 900 px. Odchylky od návrhu kvůli kontrastu WCAG AA viz README.
 */

:root {
    --cream: #fcf6e8;
    --paper: #fffdf8;
    --sand: #f0e3cc;
    --ink: #1d1311;
    --ink-soft: #251d1b;
    --espresso: #3a2622;
    --burgundy: #783338;
    --burgundy-deep: #6a2a2f;
    --salmon: #e0a18c;
    --olive: #5c6b54;
    --teal: #40b8b8;
    --purple: #5438dc;
    --blush: #d8b5b4;
    --muted: #6e7163;

    --serif: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
    --sans: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --label: "Plus Jakarta Sans", "DM Sans", system-ui, sans-serif;

    --max: 1280px;
    --gutter: 20px;
    --header-h: 68px;
    --focus: var(--ink);
}

@media (min-width: 900px) {
    :root {
        --gutter: 40px;
        --header-h: 84px;
    }
}

/* ---------- Základ ---------- */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 12px);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

figure,
blockquote {
    margin: 0;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: var(--serif);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.01em;
}

p {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

address {
    font-style: normal;
}

a {
    color: inherit;
}

:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
    border-radius: 4px;
}

.container {
    width: 100%;
    max-width: calc(var(--max) + 2 * var(--gutter));
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 100;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--ink);
    color: var(--cream);
    font-family: var(--label);
    font-weight: 600;
    text-decoration: none;
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: none;
}

/* Přepínání obsahu mobil / desktop podle návrhu */
.d-only,
.d-only-flex {
    display: none !important;
}

.m-only-flex {
    display: flex;
}

@media (min-width: 900px) {
    .d-only {
        display: inline !important;
    }

    .d-only-flex {
        display: inline-flex !important;
    }

    .m-only,
    .m-only-flex {
        display: none !important;
    }
}

/* ---------- Typografické prvky ---------- */

.eyebrow {
    margin-bottom: 18px;
    color: var(--burgundy);
    font-family: var(--label);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* Návrh má #b97775 na lososové (2,2:1) – ztmaveno na 4,9:1. */
.eyebrow--menu {
    color: var(--burgundy-deep);
}

.eyebrow--light {
    color: var(--cream);
}

.section-title {
    font-size: clamp(42px, 9vw, 44px);
    line-height: 1.02;
}

@media (min-width: 900px) {
    .section-title {
        font-size: clamp(44px, 3.8vw, 54px);
    }
}

/* ---------- Tlačítka ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    min-height: 48px;
    padding: 14px 26px;
    border: 0;
    border-radius: 999px;
    font-family: var(--label);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s ease, background-color 0.15s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn--primary {
    background: var(--espresso);
    color: var(--cream);
}

.btn--primary:hover {
    background: var(--ink);
}

.btn--burgundy {
    background: var(--burgundy);
    color: var(--cream);
}

.btn--burgundy:hover {
    background: var(--burgundy-deep);
}

.btn--secondary {
    background: var(--cream);
    color: var(--burgundy);
}

.btn--secondary:hover {
    background: var(--paper);
}

@media (prefers-reduced-motion: reduce) {
    .btn {
        transition: none;
    }

    .btn:hover {
        transform: none;
    }
}

/* ---------- Hlavička ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--cream);
    border-bottom: 1px solid rgba(120, 51, 56, 0.12);
}

.site-header__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: var(--header-h);
}

.logo {
    margin-right: auto;
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--espresso);
    cursor: pointer;
}

.nav-toggle img {
    width: 20px;
    height: 20px;
}

.site-header__cta {
    display: none;
}

.site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 8px var(--gutter) 24px;
    background: var(--cream);
    border-bottom: 1px solid rgba(120, 51, 56, 0.12);
    box-shadow: 0 18px 30px -24px rgba(29, 19, 17, 0.5);
}

.site-nav.is-open {
    display: block;
}

.site-nav ul {
    display: flex;
    flex-direction: column;
}

.site-nav a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(120, 51, 56, 0.12);
    font-family: var(--label);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
}

.site-nav a:hover {
    color: var(--burgundy);
}

/* Bez JS: navigace zůstane viditelná pod logem. */
.no-js .nav-toggle {
    display: none;
}

.no-js .site-header__inner {
    flex-wrap: wrap;
}

.no-js .site-nav {
    position: static;
    display: block;
    flex-basis: 100%;
    padding: 0 0 12px;
    border: 0;
    box-shadow: none;
}

.no-js .site-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px 18px;
}

.no-js .site-nav a {
    padding: 6px 0;
    border: 0;
}

@media (min-width: 900px) {
    .nav-toggle,
    .no-js .nav-toggle {
        display: none;
    }

    .site-nav,
    .no-js .site-nav {
        position: static;
        display: block;
        flex-basis: auto;
        padding: 0;
        background: none;
        border: 0;
        box-shadow: none;
    }

    .site-nav ul,
    .no-js .site-nav ul {
        flex-direction: row;
        gap: 34px;
    }

    .site-nav a,
    .no-js .site-nav a {
        padding: 6px 0;
        border: 0;
        font-size: 12px;
    }

    .site-nav__menu-link {
        display: none;
    }

    .site-header__cta {
        display: inline-flex;
        min-height: 42px;
        padding: 12px 24px;
    }
}

/* ---------- Hero ---------- */

.hero {
    padding: 28px 0 40px;
}

.hero__grid {
    display: flex;
    flex-direction: column;
}

.hero__copy {
    display: contents;
}

.hero__eyebrow {
    order: 1;
}

.hero__title {
    order: 2;
    margin-bottom: 28px;
    font-size: clamp(48px, 13.5vw, 54px);
    line-height: 0.98;
}

.hero__lead {
    order: 3;
    margin-bottom: 20px;
    font-size: 14px;
}

.chips {
    display: none;
}

.hero__photo {
    order: 4;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 356 / 262;
}

.hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 42%;
}

.hero__actions {
    order: 5;
    display: flex;
    flex-direction: column-reverse;
    gap: 18px;
}

.hero__divider {
    display: none;
}

.isic-strip {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 18px 6px 6px;
    border-radius: 999px;
    background: var(--teal);
    color: var(--ink);
    font-family: var(--label);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.isic-badge,
.isic-pill__badge {
    display: inline-flex;
    flex: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--purple);
    color: #fff;
    font-family: var(--label);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

@media (min-width: 900px) {
    .hero {
        padding: 0;
    }

    .hero__grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
        max-width: none;
        min-height: clamp(640px, calc(100vh - var(--header-h) - 44px), 820px);
        padding: 0;
    }

    .hero__copy {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 72px 56px 72px max(var(--gutter), calc((100vw - var(--max)) / 2));
    }

    .hero__eyebrow {
        margin-bottom: 26px;
    }

    .hero__title {
        margin-bottom: 26px;
        font-size: clamp(60px, 5.4vw, 78px);
        line-height: 0.95;
    }

    .hero__lead {
        max-width: 440px;
        margin-bottom: 34px;
        font-size: 18px;
    }

    .chips {
        order: 4;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        max-width: 560px;
        margin-bottom: 32px;
    }

    .chip {
        display: flex;
        flex-direction: column;
        gap: 2px;
        padding: 14px 14px 16px;
        border-radius: 12px;
        background: var(--sand);
        font-size: 12px;
        line-height: 1.35;
    }

    .chip strong {
        font-family: var(--label);
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    .chip span {
        color: var(--muted);
    }

    .hero__actions {
        order: 5;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .isic-strip {
        align-self: stretch;
        max-width: 560px;
        font-size: 12px;
    }

    .hero__divider {
        display: block;
        margin-block: 72px;
        background: var(--burgundy);
        opacity: 0.35;
    }

    .hero__photo {
        margin: 0;
        border-radius: 0;
        aspect-ratio: auto;
    }
}

/* ---------- Ticker ---------- */

.ticker {
    overflow: hidden;
    background: var(--burgundy);
    color: var(--cream);
    font-family: var(--label);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.ticker__track {
    display: flex;
    width: max-content;
    animation: ticker 36s linear infinite;
}

.ticker__track span {
    padding: 14px 0 14px 0.6em;
}

@keyframes ticker {
    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ticker__track {
        animation: none;
    }
}

/* ---------- Nabídka ---------- */

.menu-section {
    padding: 56px 0 64px;
    background: var(--salmon);
    color: var(--ink);
}

.menu-section__intro .section-title {
    margin-bottom: 28px;
}

.menu-section__text {
    display: none;
}

.isic-card {
    display: none;
}

.menu-cards {
    display: grid;
    gap: 14px;
    margin-bottom: 22px;
}

.menu-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
        "name price"
        "desc price";
    align-items: center;
    column-gap: 12px;
    row-gap: 4px;
    padding: 18px 16px;
    border-radius: 14px;
    background: var(--paper);
}

.menu-card__name {
    grid-area: name;
    font-size: 27px;
    line-height: 1.05;
}

.menu-card__desc {
    grid-area: desc;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
}

.menu-card__price {
    grid-area: price;
    font-family: var(--label);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.isic-pill {
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding: 6px 18px 6px 6px;
    border-radius: 999px;
    background: var(--teal);
    color: var(--ink);
    font-family: var(--label);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

@media (min-width: 900px) {
    .menu-section {
        padding: 96px 0 104px;
    }

    .menu-section__top {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 470px);
        align-items: end;
        gap: 56px;
        margin-bottom: 56px;
    }

    .menu-section__intro .section-title {
        margin-bottom: 22px;
    }

    .menu-section__text {
        display: block;
        max-width: 460px;
        margin-bottom: 30px;
        font-size: 16px;
    }

    .isic-card {
        position: relative;
        display: grid;
        grid-template-columns: 88px minmax(0, 1fr);
        gap: 22px;
        padding: 28px 28px 30px;
        border-radius: 24px;
        background: var(--teal);
        color: var(--ink);
    }

    .isic-card__badge {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 88px;
        height: 88px;
        border-radius: 50%;
        background: var(--purple);
        color: #fff;
        font-family: var(--label);
        line-height: 1.1;
    }

    .isic-card__badge span {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.08em;
    }

    .isic-card__badge strong {
        font-size: 20px;
        font-weight: 600;
    }

    .isic-card__eyebrow {
        margin-bottom: 8px;
        color: var(--ink);
        font-family: var(--label);
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

    .isic-card__title {
        margin-bottom: 10px;
        font-family: var(--serif);
        font-size: 30px;
        font-weight: 500;
        line-height: 1.02;
    }

    .isic-card__text {
        max-width: 250px;
        color: var(--ink);
        font-size: 13px;
    }

    .isic-card__big {
        position: absolute;
        right: 28px;
        bottom: 20px;
        color: var(--ink);
        font-family: var(--serif);
        font-size: 44px;
        font-weight: 600;
        line-height: 1;
    }

    .menu-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
        margin: 0;
    }

    .menu-card {
        grid-template-areas:
            "name price"
            "desc desc";
        align-items: start;
        align-content: start;
        row-gap: 14px;
        min-height: 200px;
        padding: 28px 26px 44px;
        border: 1px solid var(--burgundy);
        border-radius: 22px;
        position: relative;
    }

    .menu-card::after {
        content: "";
        position: absolute;
        right: 26px;
        bottom: 24px;
        left: 26px;
        height: 1px;
        background: rgba(120, 51, 56, 0.25);
    }

    .menu-card__name {
        font-size: 32px;
    }

    .menu-card__price {
        padding-top: 8px;
        font-size: 14px;
    }

    .menu-card__desc {
        max-width: 300px;
        font-size: 14px;
    }
}

/* ---------- Náš příběh ---------- */

.story {
    --focus: var(--cream);
    padding: 40px 0 56px;
    background: var(--olive);
    color: var(--cream);
}

.story__photo {
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 120px 26px 26px 26px;
    aspect-ratio: 356 / 300;
}

.story__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story__card .eyebrow {
    color: var(--cream);
}

.story__card .section-title {
    margin-bottom: 20px;
}

.story__text {
    font-size: 14px;
}

@media (min-width: 900px) {
    .story {
        padding: 40px 0;
    }

    .story__inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
    }

    .story__photo {
        grid-area: 1 / 1;
        margin: 0;
        position: relative;
        border-radius: 36px;
        aspect-ratio: auto;
        min-height: 540px;
    }

    .story__photo img {
        position: absolute;
        inset: 0;
    }

    .story__card {
        --focus: var(--ink);
        grid-area: 1 / 1;
        justify-self: end;
        align-self: stretch;
        z-index: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: min(39%, 480px);
        margin: 26px 64px 26px 0;
        padding: 36px 32px;
        background: var(--cream);
        color: var(--ink);
    }

    .story__card .eyebrow {
        color: var(--burgundy);
    }

    .story__card .section-title {
        margin-bottom: 22px;
    }

    .story__text {
        font-size: 15px;
    }
}

/* ---------- Galerie ---------- */

.gallery {
    padding: 56px 0 72px;
    overflow: hidden;
}

.gallery__inner {
    position: relative;
}

.gallery__title {
    max-width: 8em;
    margin-bottom: 32px;
}

.gallery__grid {
    position: relative;
    display: grid;
    grid-template-columns: 58% 42%;
    padding-bottom: 60px;
}

.gallery__grid::after {
    content: "";
    position: absolute;
    right: 2%;
    bottom: 0;
    width: 36%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--blush);
    z-index: 0;
}

.gallery__item {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 26px;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery__item--drinks {
    display: none;
}

.gallery__item--raspberry {
    grid-column: 1;
    grid-row: 1;
    margin-top: 40px;
    aspect-ratio: 206 / 240;
}

.gallery__item--avocado {
    grid-column: 2;
    grid-row: 1;
    margin-left: -8%;
    aspect-ratio: 150 / 210;
    z-index: 2;
}

@media (min-width: 900px) {
    .gallery {
        padding: 104px 0 112px;
    }

    .gallery__title {
        max-width: none;
        margin-bottom: 48px;
    }

    .gallery__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
        padding: 0;
    }

    .gallery__grid::after {
        display: none;
    }

    .gallery__item,
    .gallery__item--drinks,
    .gallery__item--raspberry,
    .gallery__item--avocado {
        display: block;
        grid-column: auto;
        grid-row: auto;
        margin: 0;
        border-radius: 28px;
        aspect-ratio: 4 / 5;
    }
}

/* ---------- Kde nás najdete ---------- */

.visit {
    --focus: var(--cream);
    padding: 56px 0 64px;
    background: var(--burgundy);
    color: var(--cream);
}

.visit__inner {
    display: flex;
    flex-direction: column;
}

.visit__copy {
    display: contents;
}

.visit__copy .section-title {
    margin-bottom: 22px;
}

.visit__address {
    margin-bottom: 28px;
    font-size: 14px;
}

.visit__address a {
    text-underline-offset: 3px;
}

.visit__copy .btn {
    order: 2;
}

.hours-card {
    --focus: var(--ink);
    order: 1;
    margin-bottom: 28px;
    padding: 26px 22px;
    border-radius: 24px;
    background: var(--cream);
    color: var(--ink);
}

.hours-card__title {
    margin-bottom: 18px;
    font-size: 30px;
}

.hours-card__list {
    display: grid;
    gap: 10px;
    margin: 0;
}

.hours-card__list div {
    display: flex;
    gap: 24px;
    font-size: 14px;
}

.hours-card__list dt {
    min-width: 52px;
    font-family: var(--label);
    font-weight: 600;
    text-transform: uppercase;
}

.hours-card__list dd {
    margin: 0;
}

.hours-card__ig {
    display: none;
}

@media (min-width: 900px) {
    .visit {
        padding: 104px 0;
    }

    .visit__inner {
        display: grid;
        grid-template-columns: minmax(0, 470px) minmax(0, 1fr);
        align-items: center;
        gap: 96px;
    }

    .visit__copy {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        grid-column: 2;
        grid-row: 1;
    }

    .visit__address {
        margin-bottom: 34px;
        font-size: 18px;
    }

    .hours-card {
        grid-column: 1;
        grid-row: 1;
        margin: 0;
        padding: 48px 44px;
        border-radius: 36px;
    }

    .hours-card__title {
        margin-bottom: 30px;
        font-size: 42px;
    }

    .hours-card__list {
        gap: 0;
        margin-bottom: 30px;
    }

    .hours-card__list div {
        justify-content: space-between;
        padding: 16px 0;
        border-bottom: 1px solid rgba(120, 51, 56, 0.2);
        font-size: 16px;
    }

    .hours-card__ig {
        display: inline-block;
        color: var(--burgundy);
        font-family: var(--label);
        font-size: 13px;
        font-weight: 600;
        text-underline-offset: 3px;
    }
}

/* ---------- Patička ---------- */

.site-footer {
    --focus: var(--cream);
    padding: 48px 0 32px;
    background: var(--ink);
    color: var(--cream);
}

.site-footer__inner {
    display: grid;
    gap: 28px;
}

.site-footer__brand {
    font-family: var(--serif);
    font-size: 38px;
    font-weight: 500;
    line-height: 1.02;
}

.site-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.site-footer__nav a {
    font-family: var(--label);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
}

.site-footer__nav a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.site-footer__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 24px;
    color: rgba(252, 246, 232, 0.72);
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

@media (min-width: 900px) {
    .site-footer {
        padding: 88px 0 40px;
    }

    .site-footer__inner {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 64px 48px;
    }

    .site-footer__brand {
        font-size: 64px;
    }

    .site-footer__nav {
        flex-direction: column;
        align-items: flex-end;
        gap: 14px;
    }

    .site-footer__meta {
        grid-column: 1 / -1;
        justify-content: space-between;
        padding-top: 28px;
        border-top: 1px solid rgba(252, 246, 232, 0.16);
    }
}

/* ---------- Stránka menu ---------- */

.menu-page {
    padding: 36px 0 72px;
}

.breadcrumbs {
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 13px;
}

.breadcrumbs a {
    text-underline-offset: 3px;
}

.menu-page .section-title {
    margin-bottom: 18px;
    font-size: clamp(48px, 7vw, 72px);
}

.menu-page__lead {
    max-width: 560px;
    margin-bottom: 24px;
    font-size: 16px;
}

.menu-page .isic-pill {
    display: inline-flex;
    margin-bottom: 40px;
}

.menu-page__empty {
    padding: 28px;
    border-radius: 22px;
    background: var(--paper);
}

.menu-group {
    margin-bottom: 44px;
}

.menu-group__title {
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--burgundy);
    color: var(--burgundy);
    font-size: 34px;
}

.menu-list {
    display: grid;
    gap: 2px;
}

.menu-list__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: baseline;
    column-gap: 16px;
    padding: 14px 0;
    border-bottom: 1px dashed rgba(120, 51, 56, 0.25);
}

.menu-list__name {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.15;
}

.menu-list__desc {
    margin-top: 2px;
    color: var(--muted);
    font-size: 14px;
}

.menu-list__price {
    font-family: var(--label);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.menu-page__back {
    margin-top: 16px;
}

.menu-page__back .btn--secondary {
    background: var(--espresso);
    color: var(--cream);
}

@media (min-width: 900px) {
    .menu-page {
        padding: 64px 0 112px;
    }

    .menu-page > .container {
        max-width: calc(880px + 2 * var(--gutter));
    }
}

/* ---------- Chybové stránky ---------- */

.error-page {
    display: grid;
    min-height: 60vh;
    place-items: center;
    padding: 72px 0;
    text-align: center;
}

.error-page .section-title {
    margin-bottom: 16px;
    font-size: clamp(48px, 8vw, 78px);
}

.error-page p {
    max-width: 520px;
    margin: 0 auto 28px;
}

.error-page p:last-child {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 0;
}
