:root {
    --bg: #f6efe6;
    --surface: #fff8f0;
    --surface-2: #fff3e5;
    --text: #2b1b15;
    --muted: #75584a;
    --brand: #d95f3f;
    --brand-dark: #b2472f;
    --accent: #f3c05c;
    --ok: #2f9e75;
    --shadow: 0 18px 35px rgba(92, 54, 35, 0.16);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Manrope", "Segoe UI", sans-serif;
    background: radial-gradient(circle at 15% 20%, #fff7ef 0, transparent 34%),
        radial-gradient(circle at 82% 4%, #ffe6bf 0, transparent 26%),
        linear-gradient(165deg, #f8f1e8 0%, #f3e5d6 100%);
    color: var(--text);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.bg-shape {
    position: fixed;
    width: 430px;
    height: 430px;
    border-radius: 999px;
    filter: blur(55px);
    opacity: 0.35;
    z-index: -1;
}

.bg-shape--left {
    background: #ffc46d;
    left: -130px;
    top: -85px;
}

.bg-shape--right {
    background: #ff8f70;
    right: -145px;
    top: 40%;
}

.topbar {
    position: sticky;
    top: 0.75rem;
    z-index: 20;
    max-width: 1150px;
    margin: 0 auto;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-radius: 999px;
    background: rgba(255, 248, 240, 0.72);
    border: 1px solid rgba(196, 146, 118, 0.34);
    box-shadow: 0 10px 24px rgba(92, 54, 35, 0.14);
    backdrop-filter: blur(12px) saturate(120%);
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: var(--text);
}

.brand strong {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.1rem;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 0.73rem;
}

.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #e3704f, #d45335);
    color: #fff;
    font-weight: 800;
}

.menu {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.menu-login-user {
    background: linear-gradient(135deg, #e95f3a, #c9472d);
    color: #fff !important;
    border-radius: 50%;
    width: 78px;
    min-height: 78px;
    padding: 0.48rem;
    opacity: 1 !important;
    box-shadow: 0 10px 20px rgba(201, 71, 45, 0.28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.15;
    white-space: normal;
}

.menu-login-user:hover {
    transform: translateY(-1px);
}

.menu-fab {
    display: none;
    position: fixed;
    top: 0.9rem;
    left: 0.9rem;
    z-index: 30;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #d95f3f, #b2472f);
    box-shadow: 0 14px 28px rgba(178, 71, 47, 0.35);
    padding: 0;
    cursor: pointer;
}

.menu-fab-line {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: #fff;
    border-radius: 999px;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-fab.is-open .menu-fab-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-fab.is-open .menu-fab-line:nth-child(2) {
    opacity: 0;
}

.menu-fab.is-open .menu-fab-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    opacity: 0.88;
    padding: 0.5rem 0.72rem;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: opacity 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.menu a:hover {
    opacity: 1;
    background: rgba(240, 188, 160, 0.26);
    border-color: rgba(199, 133, 96, 0.32);
    transform: translateY(-1px);
}

.cart-btn {
    border: 1px solid rgba(191, 133, 103, 0.35);
    background: rgba(255, 248, 240, 0.95);
    color: var(--text);
    font-weight: 700;
    border-radius: 999px;
    padding: 0.6rem 1rem;
    box-shadow: var(--shadow);
    cursor: pointer;
}

.cart-count {
    background: var(--brand);
    color: #fff;
    margin-left: 0.45rem;
    border-radius: 999px;
    padding: 0.14rem 0.42rem;
    font-size: 0.84rem;
}

main {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 1.1rem 2.6rem;
}

.hero {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.3rem;
    align-items: center;
    margin: 1.2rem 0 2rem;
}

.hero-content h1 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 4.2vw, 3.3rem);
    line-height: 1.1;
    margin: 0.3rem 0 0.8rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-dark);
    font-weight: 700;
    font-size: 0.78rem;
    margin: 0;
}

.hero-text {
    color: var(--muted);
    max-width: 58ch;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.btn {
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.15rem;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    border: 0;
    background: linear-gradient(135deg, var(--brand), #f07a4e);
    color: #fff;
    box-shadow: 0 12px 24px rgba(208, 94, 61, 0.3);
}

.btn-outline {
    border: 1px solid #c79e87;
    color: #6a4537;
    background: transparent;
}

.hero-meta {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: #5f463b;
    font-size: 0.92rem;
}

.hero-card {
    background: linear-gradient(180deg, #fff6ec 0, #ffe9d2 100%);
    border-radius: 22px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(197, 142, 113, 0.32);
}

.hero-card h2 {
    margin-top: 0;
    font-family: "Playfair Display", Georgia, serif;
}

.hero-offer-image {
    width: 100%;
    height: 170px;
    border-radius: 16px;
    margin-bottom: 0.9rem;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 22px rgba(43, 27, 21, 0.2);
}

.dish-title {
    color: #6b4b3e;
}

.dish-price {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0.4rem 0 1rem;
}

.section {
    margin: 3.2rem 0;
}

.section-title-wrap h2,
.section-highlight h2,
.app-cta h2 {
    margin: 0.3rem 0 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

.menu-grid {
    margin-top: 1.2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.menu-card {
    background: rgba(255, 248, 240, 0.88);
    border: 1px solid rgba(176, 126, 101, 0.27);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: var(--shadow);
}

.menu-card p {
    color: var(--muted);
    line-height: 1.55;
    min-height: 72px;
}

.menu-image {
    height: 150px;
    border-radius: 14px;
    margin-bottom: 0.9rem;
    background-size: cover;
    background-position: center;
}

.menu-image--1 {
    background-image: linear-gradient(140deg, rgba(56, 20, 10, 0.45), rgba(0, 0, 0, 0.15)),
        url("https://images.unsplash.com/photo-1550317138-10000687a72b?auto=format&fit=crop&w=1200&q=80");
}

.menu-image--2 {
    background-image: linear-gradient(140deg, rgba(56, 20, 10, 0.45), rgba(0, 0, 0, 0.12)),
        url("https://images.unsplash.com/photo-1513104890138-7c749659a591?auto=format&fit=crop&w=1200&q=80");
}

.menu-image--3 {
    background-image: linear-gradient(140deg, rgba(56, 20, 10, 0.45), rgba(0, 0, 0, 0.12)),
        url("https://images.unsplash.com/photo-1546069901-ba9599a7e63c?auto=format&fit=crop&w=1200&q=80");
}

.menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-footer button {
    border: 0;
    background: #2f9e75;
    color: #fff;
    padding: 0.52rem 0.82rem;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
}

.section-highlight {
    background: linear-gradient(135deg, #fff8ee 0, #ffe5cc 100%);
    border-radius: 22px;
    border: 1px solid rgba(196, 151, 127, 0.45);
    padding: 1.2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
}

.section-highlight ul {
    padding-left: 1.1rem;
    color: #5f463b;
}

.section-highlight li {
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-family: "Playfair Display", Georgia, serif;
    color: var(--brand-dark);
    margin: 0;
}

.testimonial-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.testimonial-grid blockquote {
    margin: 0;
    padding: 1rem;
    border-radius: 16px;
    background: rgba(255, 248, 240, 0.86);
    border: 1px solid rgba(181, 141, 115, 0.31);
    box-shadow: var(--shadow);
    color: #533d32;
    line-height: 1.6;
}

.testimonial-grid cite {
    display: block;
    margin-top: 0.8rem;
    font-weight: 700;
}

.app-cta {
    background: linear-gradient(120deg, #f7b44e 0, #ef7f57 100%);
    color: #fff;
    padding: 1.2rem;
    border-radius: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow);
}

.app-cta .eyebrow {
    color: #fff4da;
}

.app-buttons {
    display: flex;
    gap: 0.7rem;
}

.app-cta .btn-outline {
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
}

.app-cta .btn-primary {
    background: #fff;
    color: #bb4f33;
    box-shadow: none;
}

.footer {
    text-align: center;
    color: #654b3f;
    font-size: 0.9rem;
    padding: 1rem;
}

.toast {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    background: #2f9e75;
    color: #fff;
    padding: 0.65rem 0.9rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.26s ease, transform 0.26s ease;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .menu-fab {
        display: block;
    }

    .topbar {
        top: 0.65rem;
        padding-left: 4.2rem;
        padding-right: 4.2rem;
        border-radius: 18px;
        justify-content: center;
        position: sticky;
    }

    .brand {
        margin: 0 auto;
        justify-content: center;
        text-align: center;
    }

    .cart-btn {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        width: auto;
    }

    .menu {
        display: flex;
        position: fixed;
        top: 4.2rem;
        left: 0.9rem;
        right: 0.9rem;
        z-index: 25;
        background: rgba(255, 248, 240, 0.98);
        border: 1px solid rgba(184, 137, 112, 0.44);
        border-radius: 18px;
        box-shadow: var(--shadow);
        padding: 0.7rem;
        flex-direction: column;
        gap: 0.35rem;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-14px) scale(0.98);
        transform-origin: top center;
        transition: opacity 0.26s ease, transform 0.26s ease, visibility 0.26s ease;
    }

    .menu.menu-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .menu a {
        display: block;
        border-radius: 10px;
        padding: 0.6rem 0.7rem;
    }

    .menu-login-user {
        width: 100%;
        min-height: 0;
        border-radius: 10px;
        padding: 0.6rem 0.7rem;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .menu-grid,
    .testimonial-grid,
    .section-highlight {
        grid-template-columns: 1fr 1fr;
    }

    .section-highlight aside {
        grid-column: span 2;
    }
}

@media (max-width: 700px) {
    .topbar {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 0.85rem 0.7rem 0.7rem;
        row-gap: 0.75rem;
    }

    .brand {
        width: 100%;
    }

    .cart-btn {
        position: static;
        top: auto;
        right: auto;
        transform: none;
    }

    .hero-actions,
    .app-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn,
    .menu-footer button,
    .cart-btn {
        width: 100%;
        justify-content: center;
    }

    .menu-grid,
    .testimonial-grid,
    .section-highlight {
        grid-template-columns: 1fr;
    }

    .section-highlight aside {
        grid-column: auto;
    }

    .app-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}