/* ═══════════════════════════════════════════════════
   Секция «О ресторане» (Story / About)
═══════════════════════════════════════════════════ */
.story-grid,
.menu-section-grid,
.final-grid,
.atmosphere-grid {
    display: grid;
    gap: 28px;
}

.story-grid,
.final-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.section-heading {
    max-width: 720px;
}

.section-heading-left {
    margin-bottom: 0;
}

.section-heading h2 {
    font-size: clamp(2rem, 3vw, 3.1rem);
    line-height: 1.08;
    margin-bottom: 18px;
    color: #40281c;
}

.section-heading h2::after {
    content: "";
    display: block;
    width: 52px;
    height: 2px;
    margin-top: 14px;
    background: linear-gradient(90deg, var(--accent), var(--accent-soft));
    border-radius: 999px;
}

.section-dark .section-heading h2::after {
    background: linear-gradient(90deg, var(--accent-soft), rgba(214, 175, 107, 0.4));
}

.section-dark .section-heading h2,
.section-dark .reservation-panel h2,
.section-dark .hero-note h2,
.section-dark .hero-copy h1 {
    color: #f9ead0;
}

.story-panels {
    display: grid;
    gap: 16px;
}

.story-panel {
    padding: 26px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.story-panel:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.stats-inline {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.stats-inline strong,
.menu-side-row strong,
.contact-card a {
    display: block;
    margin-bottom: 8px;
    font-size: 1.45rem;
    font-family: var(--font-heading);
}

.stats-inline span,
.menu-side-row span {
    color: var(--muted);
}

