:root {
    --bg: #f5f5f5;
    --surface: #ffffff;
    --surface-soft: #fafafa;
    --text: #061a36;
    --text-soft: #5f6f86;
    --text-muted: #7d8797;
    --line: #e7eaef;
    --line-strong: #d6dbe3;
    --brand: #c40000;
    --brand-dark: #a80000;
    --brand-soft: #fff1f1;
    --success: #1db954;
    --shadow-soft: 0 4px 18px rgba(6, 26, 54, 0.06);
    --shadow-card: 0 8px 24px rgba(6, 26, 54, 0.08);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --max: 1180px;
    --header-h: 78px;
    --font-main: Inter, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-main);
    background: var(--bg);
    color: var(--text);
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1200;
    height: var(--header-h);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 0;
    font-weight: 800;
    color: var(--text);
}

.brand img {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    object-fit: cover;
    border: 1px solid var(--line);
    background: #fff;
}

.brand span {
    font-size: 1rem;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.35rem;
    min-width: 0;
}

.main-nav a {
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--text-soft);
    transition: color 0.18s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    color: var(--text);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    font-size: 1.25rem;
}

.section {
    max-width: var(--max);
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Hero */
.hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: center;
    padding-top: 2.2rem;
}

.eyebrow {
    margin: 0 0 0.65rem;
    font-size: 0.84rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand);
}

.hero h1 {
    margin: 0 0 0.7rem;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    font-weight: 900;
    color: var(--text);
}

.subtitle {
    margin: 0;
    font-size: clamp(1.05rem, 2.4vw, 1.35rem);
    line-height: 1.35;
    color: var(--text);
    font-weight: 700;
    max-width: 30ch;
}

.subcopy {
    margin: 0.9rem 0 1.25rem;
    color: var(--text-soft);
    font-size: 1rem;
    max-width: 48ch;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 38px;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--text-soft);
    font-size: 0.92rem;
    font-weight: 600;
}

.trust-row i {
    color: var(--brand);
}

.hero-visual img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 28px;
    background: #ddd;
    box-shadow: var(--shadow-card);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 52px;
    padding: 0.9rem 1.25rem;
    border-radius: 14px;
    border: 1px solid transparent;
    font-weight: 800;
    font-size: 0.98rem;
    letter-spacing: -0.015em;
    cursor: pointer;
    transition:
        transform 0.14s ease,
        background 0.14s ease,
        border-color 0.14s ease,
        color 0.14s ease,
        box-shadow 0.14s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 8px 20px rgba(196, 0, 0, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--brand-dark);
}

.btn-secondary {
    background: #fff;
    color: var(--text);
    border-color: var(--line-strong);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    border-color: #b8c0cb;
    background: #fcfcfc;
}

.btn-call {
    min-height: 46px;
    padding: 0.72rem 1rem;
    background: #fff;
    color: var(--brand);
    border: 1px solid rgba(196, 0, 0, 0.16);
    font-weight: 800;
}

/* General headings */
.section h2,
.section-heading h2 {
    margin: 0 0 0.35rem;
    font-size: clamp(1.8rem, 3.2vw, 2.7rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: var(--text);
    font-weight: 900;
}

.section-heading {
    margin-bottom: 1.15rem;
}

.section-heading p,
.highlights > p,
.insta-banner p,
.faq > p {
    margin: 0;
    color: var(--text-soft);
    font-size: 1rem;
}

.inline-link,
.review-link,
.contact-card a {
    color: var(--brand);
    font-weight: 700;
}

.inline-link:hover,
.review-link:hover,
.contact-card a:hover {
    text-decoration: underline;
}

/* Highlights */
.highlights {
    padding-top: 1rem;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.2rem;
}

.highlight-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line);
}

.highlight-card img {
    width: 100%;
    aspect-ratio: 1.15 / 1;
    object-fit: cover;
    background: #eee;
}

.highlight-card h3 {
    margin: 0;
    padding: 1rem 1rem 1.05rem;
    font-size: 1.32rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text);
    font-weight: 850;
}

/* Menu shell */
.menu-shell {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 1rem;
    box-shadow: var(--shadow-soft);
}

.menu-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    flex-wrap: wrap;
    padding-bottom: 0.95rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}

.menu-toolbar strong {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text);
}

#menu-container {
    min-height: 120px;
}

/* Optional content that may be loaded into #menu-container */
.menu-filter-bar {
    display: flex;
    gap: 1.2rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.4rem;
    margin-bottom: 1.15rem;
    border-bottom: 1px solid var(--line);
    scrollbar-width: none;
}

.menu-filter-bar::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    flex: 0 0 auto;
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.2rem 0 0.95rem;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    cursor: pointer;
}

.filter-btn.active {
    color: var(--text);
    border-bottom-color: var(--brand);
    font-weight: 800;
}

.menu-grid {
    display: grid;
    gap: 1rem;
}

.menu-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
}

.menu-item:last-child {
    border-bottom: 0;
}

.menu-item.hidden {
    display: none;
}

.menu-item h3 {
    margin: 0 0 0.35rem;
    font-size: 1.55rem;
    line-height: 1.08;
    letter-spacing: -0.035em;
    font-weight: 850;
    color: var(--text);
}

.menu-item p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.98rem;
    max-width: 42ch;
}

.menu-item strong {
    display: inline-block;
    margin-top: 0.8rem;
    color: var(--brand);
    font-size: 1.05rem;
    font-weight: 800;
    white-space: nowrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0.14rem 0.45rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    margin-left: 0.35rem;
    vertical-align: middle;
}

.badge.hot {
    background: #ffe7e7;
    color: var(--brand);
}

.badge.vegan {
    background: #e6f6ea;
    color: #167a3f;
}

.badge.veg {
    background: #fff1db;
    color: #7f5a10;
}

/* Order section */
.order-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.order-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 1.15rem;
    box-shadow: var(--shadow-soft);
}

.order-card.featured {
    border-color: rgba(196, 0, 0, 0.16);
    background: linear-gradient(180deg, #fff 0%, #fff8f8 100%);
}

.order-chip {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 0.74rem;
    font-weight: 800;
    margin-bottom: 0.7rem;
}

.order-card h3 {
    margin: 0 0 0.45rem;
    font-size: 1.28rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text);
    font-weight: 850;
}

.order-card p {
    margin: 0 0 1rem;
    color: var(--text-soft);
}

/* Reviews */
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.review-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 1.1rem;
    box-shadow: var(--shadow-soft);
}

.review-card p {
    margin: 0 0 1rem;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.55;
}

.review-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.55rem;
}

/* Instagram banner */
.insta-banner {
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
}

.insta-banner h2 {
    margin-bottom: 0.55rem;
}

/* Map */
.map-container {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.map-container iframe {
    display: block;
    width: 100%;
    min-height: 360px;
    border: 0;
}

/* FAQ */
.faq h2 {
    margin-bottom: 1rem;
}

.faq details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1rem 1rem;
    margin-bottom: 0.75rem;
    box-shadow: var(--shadow-soft);
}

.faq summary {
    cursor: pointer;
    color: var(--text);
    font-size: 1rem;
    font-weight: 800;
    list-style: none;
    position: relative;
    padding-right: 2rem;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    color: var(--text-soft);
    font-weight: 600;
}

.faq details[open] summary::after {
    content: "−";
}

.faq p {
    margin: 0.7rem 0 0;
    color: var(--text-soft);
    line-height: 1.55;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.contact-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 1.15rem;
    box-shadow: var(--shadow-soft);
}

.contact-card h3 {
    margin: 0 0 0.7rem;
    font-size: 1.22rem;
    font-weight: 850;
    color: var(--text);
}

.contact-card p {
    margin: 0.45rem 0;
    color: var(--text-soft);
}

/* Quick actions mobile */
.quick-actions {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1300;
    gap: 0.55rem;
    padding: 0.65rem;
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.quick-actions a {
    flex: 1;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--text);
    font-size: 0.94rem;
    font-weight: 800;
}

.quick-actions a.primary {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}

/* Footer */
.site-footer {
    padding: 2.3rem 1rem calc(2.3rem + env(safe-area-inset-bottom));
    text-align: center;
    color: var(--text-soft);
    border-top: 1px solid var(--line);
    background: #fff;
    margin-top: 1rem;
}

.site-footer p {
    margin: 0.35rem 0;
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin: 0.9rem 0;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--text);
}

.social-links a:hover {
    color: var(--brand);
    border-color: rgba(196, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 1080px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: -1;
    }

    .hero-visual img {
        min-height: 320px;
    }

    .highlight-grid,
    .review-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 940px) {
    .site-header {
        grid-template-columns: auto 1fr auto;
    }

    .btn-call {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: calc(var(--header-h) - 2px);
        left: 0.8rem;
        right: 0.8rem;
        padding: 0.8rem;
        border: 1px solid var(--line);
        border-radius: 20px;
        background: #fff;
        box-shadow: var(--shadow-card);
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        font-size: 1rem;
        color: var(--text);
    }

    .order-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 740px) {
    body {
        padding-bottom: 78px;
    }

    .section {
        padding: 1.4rem 1rem;
    }

    .site-header {
        padding: 0 0.85rem;
    }

    .brand span {
        max-width: 170px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero {
        gap: 1.2rem;
        padding-top: 1rem;
    }

    .hero h1 {
        font-size: 2.45rem;
    }

    .subtitle {
        font-size: 1.05rem;
    }

    .subcopy {
        font-size: 0.97rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn,
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .highlight-card h3,
    .order-card h3,
    .contact-card h3 {
        font-size: 1.16rem;
    }

    .review-card p {
        font-size: 0.96rem;
    }

    .menu-toolbar {
        align-items: stretch;
    }

    .menu-toolbar .btn {
        width: 100%;
    }

    .menu-item {
        grid-template-columns: 1fr;
        gap: 0.45rem;
    }

    .menu-item h3 {
        font-size: 1.3rem;
    }

    .quick-actions {
        display: flex;
    }
}