:root {
    --cr-red: #e53935;
    --cr-orange: #ff8f00;
    --cr-black: #1a1a1a;
    --cr-gray: #6b7280;
    --cr-bg: #faf8f6;
    --cr-card: #ffffff;
    --cr-radius: 20px;
    --font: "Montserrat", system-ui, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--cr-black);
    background: var(--cr-bg);
    line-height: 1.5;
}

a {
    color: var(--cr-red);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: min(1100px, 92vw);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: inherit;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
}

.brand-logo {
    border-radius: 50%;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.9rem;
    font-weight: 600;
}

.nav a {
    color: var(--cr-black);
}

.hero {
    padding: 48px 0 32px;
    background: linear-gradient(135deg, #fff 0%, #fff5f0 55%, #ffe8d6 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: center;
}

@media (max-width: 800px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-visual {
        order: -1;
    }
    .hero-actions {
        justify-content: center;
    }
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--cr-orange);
    margin: 0 0 8px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 0 0 12px;
    font-weight: 800;
}

.lead {
    font-size: 1.1rem;
    color: var(--cr-gray);
    max-width: 36ch;
    margin: 0 0 24px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: default;
}

.btn-primary {
    background: var(--cr-red);
    color: #fff;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary:hover {
    filter: brightness(1.05);
    text-decoration: none;
}

.btn-dark {
    background: var(--cr-black);
    color: #fff;
    cursor: pointer;
}

.btn-muted {
    background: #e5e7eb;
    color: #4b5563;
}

.hero-logo {
    width: min(280px, 70vw);
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(229, 57, 53, 0.15));
}

.section {
    padding: 40px 0;
}

.section-title {
    font-size: 1.8rem;
    margin: 0 0 8px;
}

.section-sub {
    color: var(--cr-gray);
    margin: 0 0 24px;
}

.cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 700px) {
    .cards-row {
        grid-template-columns: 1fr;
    }
}

.info-card {
    background: var(--cr-card);
    border-radius: var(--cr-radius);
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.info-card h2 {
    margin: 0 0 8px;
    font-size: 1rem;
    color: var(--cr-orange);
}

.info-card p {
    margin: 0;
    font-weight: 600;
}

.hiring-box {
    background: linear-gradient(90deg, var(--cr-red), var(--cr-orange));
    color: #fff;
    border-radius: var(--cr-radius);
    padding: 28px 32px;
}

.hiring-box h2 {
    margin: 0 0 8px;
}

.hiring-box a {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
}

.menu-root {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.menu-category h3 {
    margin: 0 0 14px;
    font-size: 1.25rem;
    border-left: 4px solid var(--cr-red);
    padding-left: 12px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.menu-item {
    background: var(--cr-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.menu-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    background: #f3f4f6;
}

.menu-item-body {
    padding: 14px 16px 16px;
}

.menu-item h4 {
    margin: 0 0 6px;
    font-size: 1rem;
}

.menu-item .desc {
    margin: 0 0 10px;
    font-size: 0.85rem;
    color: var(--cr-gray);
}

.menu-item .price {
    font-weight: 800;
    color: var(--cr-red);
}

.menu-item .price-old {
    text-decoration: line-through;
    color: var(--cr-gray);
    font-weight: 500;
    margin-right: 8px;
    font-size: 0.9rem;
}

.menu-item.stopped {
    opacity: 0.55;
}

.menu-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    background: #fef3c7;
    color: #92400e;
    padding: 2px 8px;
    border-radius: 8px;
    margin-bottom: 6px;
}

.menu-loading,
.menu-error {
    color: var(--cr-gray);
    font-weight: 600;
}

.site-footer {
    margin-top: 48px;
    padding: 28px 0;
    background: var(--cr-black);
    color: #d1d5db;
    font-size: 0.85rem;
}

.footer-inner p {
    margin: 6px 0;
}

.site-footer a {
    color: #f9fafb;
}

.legal-container {
    background: var(--cr-card);
    border-radius: var(--cr-radius);
    padding: 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.legal-body h2 {
    font-size: 1.1rem;
    margin-top: 24px;
}

.legal-back {
    margin-top: 32px;
}
