/* Manzo — тёплая итальянская палитра поверх базовых стилей */
:root {
    --accent: #c45c26;
    --accent-hover: #a84a1c;
    --brand-green: #0d3d32;
    --bg-primary: #0a1210;
    --bg-secondary: #121c18;
}

body::before {
    background:
        radial-gradient(circle at 15% 40%, rgba(13, 61, 50, 0.35) 0%, transparent 45%),
        radial-gradient(circle at 80% 75%, rgba(196, 92, 38, 0.1) 0%, transparent 50%),
        var(--bg-primary);
}

.logo--brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    line-height: 0;
}

.logo--brand img {
    height: 42px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.logo--brand:hover img {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(13, 61, 50, 0.45);
}

.hero-logo {
    margin-bottom: 8px;
}

.hero-logo img {
    width: min(300px, 88vw);
    height: auto;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.hero .hero-title {
    display: none;
}

.hero-background {
    background: radial-gradient(circle at 50% 50%, rgba(196, 92, 38, 0.18) 0%, transparent 70%);
}

.menu-item-image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(196, 92, 38, 0.25), rgba(26, 22, 18, 0.9));
    min-height: 180px;
    position: relative;
}

.menu-item-image--placeholder::before {
    content: attr(data-icon);
    font-size: 3rem;
    opacity: 0.5;
    position: absolute;
    z-index: 0;
}

.menu-item-image--placeholder img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-tagline {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid rgba(196, 92, 38, 0.4);
    background: rgba(196, 92, 38, 0.1);
}

.contact-card a {
    color: var(--accent);
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.price--on-request {
    font-size: 14px;
    opacity: 0.85;
}

.btn-order-call {
    display: inline-block;
    padding: 10px 18px;
    background: var(--accent);
    color: #fff !important;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-order-call:hover {
    background: var(--accent-hover);
}
