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

* {
    box-sizing: border-box;
}

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

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

a:hover {
    text-decoration: underline;
}

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

/* ——— Header ——— */
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    min-height: var(--header-h);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    text-decoration: none;
    font-weight: 800;
    font-size: clamp(0.95rem, 3vw, 1.1rem);
    flex-shrink: 0;
}

.brand:hover {
    text-decoration: none;
}

.brand-logo {
    border-radius: 50%;
    width: 48px;
    height: 48px;
    object-fit: cover;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 14px;
    font-size: clamp(0.75rem, 2.5vw, 0.9rem);
    font-weight: 600;
}

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

@media (max-width: 480px) {
    .brand-text {
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

/* ——— Hero ——— */
.hero {
    padding: clamp(28px, 6vw, 48px) 0 clamp(24px, 4vw, 32px);
    background: linear-gradient(135deg, #fff 0%, #fff5f0 55%, #ffe8d6 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(20px, 4vw, 32px);
    align-items: center;
}

.hero-copy .lead {
    max-width: 40ch;
}

.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(1.75rem, 6vw, 3rem);
    margin: 0 0 12px;
    font-weight: 800;
    line-height: 1.15;
}

.lead {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: var(--cr-gray);
    margin: 0 0 20px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 700;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    border: none;
    cursor: default;
    text-align: center;
}

.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;
    text-decoration: none;
}

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

.hero-logo {
    width: min(260px, 72vw);
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 16px 32px rgba(229, 57, 53, 0.12));
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-copy .lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }
}

/* ——— Sections ——— */
.section {
    padding: clamp(28px, 5vw, 40px) 0;
}

.section-title {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    margin: 0 0 6px;
    font-weight: 800;
}

.section-sub {
    color: var(--cr-gray);
    margin: 0 0 20px;
    font-size: 0.95rem;
}

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

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

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

.info-card h2 {
    margin: 0 0 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--cr-orange);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

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

.info-card a {
    font-weight: 700;
}

.info-card--phone .info-card-phone {
    margin: 4px 0 0;
}

.info-card--phone .info-card-phone a {
    font-size: clamp(1.35rem, 4.5vw, 1.75rem);
    font-weight: 800;
    color: var(--cr-red);
    text-decoration: none;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.info-card--phone .info-card-phone a:hover {
    text-decoration: underline;
}

/* ——— Menu (tabs + compact cards) ——— */
.menu-card {
    background: var(--cr-card);
    border-radius: var(--cr-radius);
    padding: clamp(20px, 4vw, 28px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.menu-card > .section-title {
    margin-bottom: 16px;
}

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

.menu-tabs-sticky {
    position: sticky;
    top: var(--header-h);
    z-index: 5;
    margin: 0 -8px 16px;
    padding: 10px 8px 12px;
    background: linear-gradient(180deg, var(--cr-card) 70%, rgba(255, 255, 255, 0.97));
    border-bottom: 1px solid rgba(255, 143, 0, 0.2);
}

.menu-tabs-wrap {
    overflow: hidden;
    border-radius: 14px;
    background: linear-gradient(135deg, #fff5f0 0%, #fff 100%);
    padding: 6px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.menu-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 2px 6px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.menu-tabs::-webkit-scrollbar {
    display: none;
}

.menu-tab {
    flex: 0 0 auto;
    scroll-snap-align: start;
    appearance: none;
    -webkit-appearance: none;
    border: none;
    font-family: var(--font);
    font-size: clamp(0.9rem, 2.6vw, 1rem);
    font-weight: 700;
    line-height: 1.2;
    min-height: 50px;
    padding: 13px 22px;
    border-radius: 999px;
    background: var(--cr-surface);
    color: var(--cr-primary);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
    white-space: nowrap;
}

.menu-tab:hover {
    background: rgba(255, 107, 0, 0.1);
}

.menu-tab.is-active {
    background: var(--cr-primary);
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.35);
    transform: translateY(-1px);
}

.menu-panel {
    padding-top: 0;
    min-height: 80px;
}

.menu-products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cr-card);
    border-radius: 18px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.menu-item-media {
    flex: none;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--cr-surface);
}

.menu-item-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-item-img--placeholder {
    width: 100%;
    height: 100%;
    min-height: 120px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
}

.menu-item-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 12px 12px;
}

.menu-item h4 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.5em;
}

.menu-item .desc {
    margin: 0;
    font-size: 0.75rem;
    color: var(--cr-gray);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.menu-item .meta {
    margin: 0;
    font-size: 0.72rem;
    color: var(--cr-gray);
    font-weight: 600;
}

.menu-item .price-row {
    margin-top: auto;
    padding-top: 4px;
}

.menu-item .price {
    font-weight: 800;
    font-size: 1rem;
    color: var(--cr-black);
}

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

@media (min-width: 960px) {
    .menu-products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px 18px;
    }

    .menu-item h4 {
        font-size: 0.95rem;
    }
}

.menu-loading,
.menu-error {
    color: var(--cr-gray);
    font-weight: 600;
    padding: 24px 4px;
    text-align: center;
}

/* ——— Hiring (bottom) ——— */
.hiring {
    padding-bottom: clamp(32px, 6vw, 48px);
}

.hiring-box {
    background: linear-gradient(135deg, var(--cr-red), var(--cr-orange));
    color: #fff;
    border-radius: var(--cr-radius);
    padding: clamp(22px, 5vw, 32px);
    text-align: center;
}

.hiring-box h2 {
    margin: 0 0 8px;
    font-size: clamp(1.25rem, 4vw, 1.5rem);
}

.hiring-box p {
    margin: 0 0 8px;
    opacity: 0.95;
}

.hiring-box a {
    color: #fff;
    font-size: clamp(1.15rem, 4vw, 1.4rem);
    font-weight: 800;
    text-decoration: none;
}

.hiring-box a:hover {
    text-decoration: underline;
}

/* ——— Footer ——— */
.site-footer {
    margin-top: 0;
    padding: 24px 0;
    background: var(--cr-black);
    color: #d1d5db;
    font-size: 0.8rem;
}

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

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

/* ——— Legal pages ——— */
.legal-container {
    background: var(--cr-card);
    border-radius: var(--cr-radius);
    padding: clamp(20px, 5vw, 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;
}
