:root {
    --bg: #f1e1ba;
    --bg-soft: #f8edd3;
    --surface: #fff7e8;
    --surface-dark: #23160f;
    --surface-dark-soft: #342117;
    --text: #3e281c;
    --muted: #765a45;
    --line: rgba(84, 53, 34, 0.14);
    --line-strong: rgba(255, 244, 226, 0.14);
    --accent: #8b4b2d;
    --accent-soft: #d6af6b;
    --accent-glow: rgba(214, 175, 107, 0.22);
    --shadow: 0 16px 40px rgba(77, 45, 23, 0.1), 0 4px 12px rgba(77, 45, 23, 0.06);
    --shadow-hover: 0 28px 56px rgba(77, 45, 23, 0.16), 0 8px 20px rgba(77, 45, 23, 0.09);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: 1180px;
    --font-heading: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --font-body: "Inter", "Segoe UI", Arial, sans-serif;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --transition: 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background:
        radial-gradient(circle at top center, rgba(255, 244, 220, 0.9), transparent 36%),
        linear-gradient(180deg, #f8eed6 0%, var(--bg) 100%);
}

::selection {
    background: rgba(214, 175, 107, 0.32);
    color: var(--text);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a110c;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-soft);
    border-radius: 999px;
    border: 2px solid #1a110c;
}

::-webkit-scrollbar-thumb:hover {
    background: #e8c87a;
}

body.nav-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

h1,
h2,
h3,
.brand strong {
    font-family: var(--font-heading);
    letter-spacing: -0.03em;
}

h1,
h2,
h3,
p,
ul {
    margin: 0;
}

p {
    line-height: 1.7;
    color: var(--muted);
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}

.section {
    padding: 92px 0;
}

.section-dark {
    color: #fff;
    background:
        radial-gradient(circle at top right, var(--accent-glow), transparent 28%),
        linear-gradient(180deg, var(--surface-dark) 0%, #1a110c 100%);
}

.section-dark p,
.section-dark .card-label,
.section-dark .panel-kicker,
.section-dark .contact-card span,
.section-dark .stat-card span {
    color: rgba(255, 244, 233, 0.74);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 0.76rem;
    line-height: 1;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #bb8750;
}

.eyebrow::before,
.eyebrow::after {
    content: "";
    width: 30px;
    height: 1px;
    background: currentColor;
    opacity: 0.7;
}

.eyebrow::after {
    width: 16px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(26, 16, 11, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 244, 226, 0.07);
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(24, 15, 10, 0.96);
    box-shadow: 0 12px 28px rgba(20, 11, 7, 0.28);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 82px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    padding: 2px;
    border-radius: 80%;
    background: rgba(249, 238, 214, 0.97);
    border: 2px solid rgba(255, 230, 190, 0.35);
    box-shadow: 0 8px 22px rgba(20, 11, 7, 0.18);
    flex-shrink: 0;
}

.brand-logo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 50%;
}

.brand-text {
    display: grid;
    gap: 3px;
}

.brand-text strong {
    font-size: 1.25rem;
    color: #f7e9cf;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.01em;
}

.brand-text small {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(247, 233, 207, 0.56);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: rgba(247, 233, 207, 0.8);
}

.site-nav a {
    position: relative;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color 0.22s ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-soft);
    border-radius: 999px;
    transition: width 0.25s var(--ease-out);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    width: 100%;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: #fff;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(247, 233, 207, 0.14);
    border-radius: 12px;
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.nav-icon-open,
.nav-icon-close {
    display: block;
    flex-shrink: 0;
    transition: opacity 0.2s ease, transform 0.25s var(--ease-out);
}

.nav-icon-close {
    display: none;
}

.nav-toggle[aria-expanded="true"] .nav-icon-open {
    display: none;
}

.nav-toggle[aria-expanded="true"] .nav-icon-close {
    display: block;
}

/* убираем старые стили спанов */
.nav-toggle span {
    display: none;
}

.btn,
.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: transform var(--transition), background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.btn:hover,
.nav-cta:hover,
.btn:focus-visible,
.nav-cta:focus-visible {
    transform: translateY(-3px);
}

.btn-primary,
.nav-cta {
    color: #1a130f;
    background: linear-gradient(135deg, #f0ca7a 0%, #d4944a 60%, #c07832 100%);
    box-shadow: 0 4px 18px rgba(214, 148, 74, 0.38), 0 2px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    box-shadow: 0 8px 28px rgba(214, 148, 74, 0.52), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-cta {
    min-height: 40px;
    padding: 0 16px;
    color: #f8ead2;
    background: rgba(214, 175, 107, 0.1);
    border-color: rgba(214, 175, 107, 0.28);
    box-shadow: none;
}

.nav-cta:hover {
    background: rgba(214, 175, 107, 0.22);
    border-color: rgba(214, 175, 107, 0.5);
    box-shadow: 0 4px 16px rgba(214, 175, 107, 0.18);
}

.btn-secondary {
    color: #f8ead2;
    border-color: rgba(255, 244, 226, 0.28);
    background: rgba(255, 244, 226, 0.04);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background: rgba(255, 244, 226, 0.1);
    border-color: rgba(255, 244, 226, 0.5);
}

.panel {
    background: rgba(255, 248, 234, 0.76);
    border: 1px solid rgba(255, 245, 224, 0.92);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.panel-dark {
    background: rgba(214, 175, 107, 0.035);
    border-color: rgba(214, 175, 107, 0.12);
    backdrop-filter: blur(7px);
    box-shadow: none;
    transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), border-color var(--transition);
}

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 72px 0 96px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 76% 22%, rgba(240, 193, 109, 0.24), transparent 22%),
        radial-gradient(circle at 82% 48%, rgba(255, 222, 166, 0.14), transparent 26%),
        linear-gradient(90deg, rgba(24, 15, 10, 0.96) 0%, rgba(24, 15, 10, 0.82) 34%, rgba(24, 15, 10, 0.52) 66%, rgba(24, 15, 10, 0.34) 100%),
        url("images/rest.png") no-repeat center center / cover;
    opacity: 0.56;
    filter: saturate(0.92) contrast(1.04);
    z-index: -2;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(11, 7, 5, 0.1), rgba(11, 7, 5, 0.28)),
        radial-gradient(circle at 70% 28%, rgba(255, 200, 112, 0.14), transparent 24%),
        radial-gradient(circle at left center, rgba(214, 175, 107, 0.1), transparent 35%);
    z-index: -1;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.56fr);
    gap: 48px;
    align-items: center;
}

.hero-copy h1 {
    max-width: 18ch;
    font-size: clamp(2.4rem, 4.2vw, 3.9rem);
    line-height: 1.06;
    margin-bottom: 22px;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.28);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.hero-text {
    max-width: 56ch;
    margin-bottom: 32px;
    font-size: 1.06rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
    list-style: none;
}

.hero-points li {
    padding: 15px 16px;
    border-top: 1px solid rgba(255, 228, 193, 0.16);
    background: rgba(255, 244, 226, 0.03);
    backdrop-filter: blur(6px);
    color: rgba(255, 244, 233, 0.82);
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.hero-points li:hover {
    background: rgba(255, 244, 226, 0.07);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

.hero-panel {
    display: grid;
    gap: 12px;
    max-width: 360px;
    width: 100%;
    justify-self: end;
    align-self: end;
    animation: float 7s ease-in-out infinite;
}

.hero-note {
    padding: 22px 24px;
}

.stat-card {
    padding: 20px 22px;
}

.hero-note h2 {
    margin-bottom: 12px;
    font-size: clamp(1.4rem, 2vw, 1.85rem);
    line-height: 1.12;
    font-weight: 600;
    color: #f9ead0;
}

.hero-note p {
    max-width: 34ch;
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(255, 244, 233, 0.7);
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* Третья карточка — на всю ширину */
.hero-stats .stat-card:last-child {
    grid-column: 1 / -1;
}

.stat-card {
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-soft), transparent);
    border-radius: 999px;
    opacity: 0.5;
}

.stat-card strong,
.stat-card span {
    display: block;
}

.stat-card strong {
    margin-bottom: 5px;
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    font-family: var(--font-heading);
    font-weight: 600;
    color: #f5e4c4;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

.stat-card span {
    font-size: 0.78rem;
    line-height: 1.45;
    color: rgba(255, 244, 233, 0.55);
    letter-spacing: 0.02em;
}

.card-label,
.panel-kicker,
.contact-card span {
    display: inline-block;
    font-size: 0.76rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-soft);
}

.card-label,
.panel-kicker {
    margin-bottom: 14px;
}


.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);
}

.menu-section {
    background: var(--bg-soft);
}

/* ── Галерея страниц меню ───────────────────────── */
.menu-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
    margin-top: 40px;
}

.menu-gallery-item {
    position: relative;
    display: block;
    padding: 0;
    border: none;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    background: rgba(139, 75, 45, 0.06);
    box-shadow: 0 4px 16px rgba(77, 45, 23, 0.08);
    transition: transform var(--transition), box-shadow var(--transition);
    aspect-ratio: 3 / 4;
}

.menu-gallery-item:hover,
.menu-gallery-item:focus-visible {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 18px 40px rgba(77, 45, 23, 0.18);
    outline: none;
}

.menu-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s var(--ease-out);
}

.menu-gallery-item:hover img {
    transform: scale(1.04);
}

.menu-gallery-zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(23, 14, 8, 0.45);
    color: #fff;
    opacity: 0;
    transition: opacity var(--transition);
    backdrop-filter: blur(2px);
}

.menu-gallery-item:hover .menu-gallery-zoom,
.menu-gallery-item:focus-visible .menu-gallery-zoom {
    opacity: 1;
}

/* ── Лайтбокс ────────────────────────────────────── */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 6, 4, 0.92);
    backdrop-filter: blur(12px);
    opacity: 0;
    transition: opacity 0.28s ease;
}

.lightbox[hidden] {
    display: none;
}

.lightbox.is-open {
    opacity: 1;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    cursor: zoom-out;
}

.lightbox-stage {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: min(92vw, 880px);
    max-height: 90vh;
    padding: 0 64px;
}

.lightbox-img {
    max-width: 100%;
    max-height: 86vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7);
    transition: opacity 0.2s ease;
    user-select: none;
    -webkit-user-drag: none;
}

.lightbox-img.is-loading {
    opacity: 0.3;
}

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 10;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 244, 226, 0.16);
    border-radius: 50%;
    background: rgba(255, 244, 226, 0.08);
    color: #fff;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.lightbox-close:hover {
    background: rgba(255, 244, 226, 0.18);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    z-index: 10;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 244, 226, 0.14);
    border-radius: 50%;
    background: rgba(255, 244, 226, 0.06);
    color: #fff;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), opacity var(--transition);
}

.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

.lightbox-nav:hover {
    background: rgba(214, 175, 107, 0.22);
}

.lightbox-nav:disabled {
    opacity: 0.25;
    cursor: default;
    pointer-events: none;
}

.lightbox-counter {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    color: rgba(255, 244, 226, 0.6);
    background: rgba(10, 6, 4, 0.5);
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 244, 226, 0.1);
    white-space: nowrap;
    user-select: none;
}

.atmosphere-strip {
    padding: 72px 0 0;
}

.atmosphere-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
    align-items: center;
    border-top: 1px solid var(--line);
    padding: 30px 0 48px;
}

.atmosphere-points {
    display: grid;
    gap: 12px;
    justify-items: end;
}

.atmosphere-points p {
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 500;
}

.atmosphere-points p::before {
    content: "—";
    margin-right: 10px;
    color: var(--accent-soft);
    font-weight: 300;
}

/* ── Слайдер фото ресторана ── */
.photo-slider-wrap {
    position: relative;
    width: 100%;
    background: #1a110c;
}

.photo-slider {
    width: 100%;
    overflow: hidden;
    height: clamp(320px, 70vh, 740px);
}

.photo-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.photo-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #1a110c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.6s var(--ease-out);
    user-select: none;
    pointer-events: none;
}

.photo-slide img:hover {
    transform: scale(1.02);
}

.photo-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(255, 244, 226, 0.22);
    background: rgba(26, 17, 12, 0.72);
    backdrop-filter: blur(10px);
    color: #f5e4c4;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.photo-nav:hover {
    background: rgba(214, 175, 107, 0.28);
    border-color: rgba(214, 175, 107, 0.55);
    box-shadow: 0 8px 30px rgba(214, 175, 107, 0.22);
    transform: translateY(-50%) scale(1.08);
}

.photo-nav:disabled {
    opacity: 0.28;
    pointer-events: none;
}

.photo-nav-prev { left: 28px; }
.photo-nav-next { right: 28px; }

.photo-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 9px;
    z-index: 10;
}

.photo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 244, 226, 0.35);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background var(--transition), transform var(--transition), width var(--transition);
}

.photo-dot.is-active {
    background: var(--accent-soft);
    width: 24px;
    border-radius: 4px;
    transform: none;
}

/* ── Мобильное фото в hero — скрыто на десктопе ── */
.hero-mobile-photo {
    display: none;
}

.final-section {
    padding-bottom: 84px;
}

.final-copy {
    display: grid;
    gap: 26px;
}

.review-stack {
    display: grid;
    gap: 16px;
}

.review-card {
    padding: 24px 26px;
    border-radius: var(--radius-md);
}

.review-card-dark {
    background: rgba(214, 175, 107, 0.05);
    border: 1px solid rgba(214, 175, 107, 0.14);
    transition: transform var(--transition), background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.review-card-dark:hover {
    transform: translateY(-4px);
    background: rgba(214, 175, 107, 0.09);
    border-color: rgba(214, 175, 107, 0.32);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.review-card p {
    margin-bottom: 14px;
    color: rgba(255, 244, 233, 0.82);
}

.review-card p::before {
    content: "\201C";
    font-family: var(--font-heading);
    font-size: 3.4rem;
    line-height: 0;
    vertical-align: -0.36em;
    margin-right: 3px;
    color: var(--accent-soft);
    opacity: 0.55;
}

.review-card strong {
    font-size: 1.05rem;
}

.reservation-panel {
    padding: 30px;
}

.reservation-panel h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
    margin-bottom: 18px;
}

.reservation-phones {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.reservation-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    background: rgba(214, 175, 107, 0.12);
    border: 1px solid rgba(214, 175, 107, 0.3);
    color: var(--accent-soft);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.reservation-phone:hover {
    background: rgba(214, 175, 107, 0.22);
    border-color: rgba(214, 175, 107, 0.6);
    color: #f0d08a;
}

.reservation-actions {
    margin-bottom: 28px;
}

.contact-cards {
    display: grid;
    gap: 14px;
}

.contact-card {
    padding: 20px 22px;
    transition: transform var(--transition), background-color var(--transition), border-color var(--transition);
}

.contact-card:hover {
    transform: translateY(-3px);
    background: rgba(214, 175, 107, 0.09);
    border-color: rgba(214, 175, 107, 0.28);
}

.contact-card p,
.contact-card a {
    color: #fff;
}

.compact-contacts {
    grid-template-columns: 1fr;
}

.site-footer {
    padding: 26px 0 34px;
    background: #1d120c;
    color: rgba(249, 234, 208, 0.72);
    border-top: 1px solid rgba(214, 175, 107, 0.12);
    position: relative;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(214, 175, 107, 0.4), transparent);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
}

.footer-inner a {
    color: #fff;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    transition-delay: var(--delay, 0s);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — 1080px  (планшет, широкий)
═══════════════════════════════════════════════════ */
@media (max-width: 1080px) {
    .hero-grid,
    .story-grid,
    .menu-section-grid,
    .atmosphere-grid,
    .final-grid {
        grid-template-columns: 1fr;
    }

    .menu-columns {
        grid-template-columns: 1fr 1fr;
    }

    .menu-side {
        position: static;
    }

    .menu-side:hover {
        transform: none;
    }

    .atmosphere-points {
        justify-items: start;
    }

    .hero-panel {
        max-width: 100%;
        justify-self: stretch;
        animation: none;
    }

    .hero-note {
        grid-column: auto;
    }

    .hero::before {
        background:
            radial-gradient(circle at 78% 24%, rgba(240, 193, 109, 0.18), transparent 24%),
            linear-gradient(90deg, rgba(24, 15, 10, 0.93) 0%, rgba(24, 15, 10, 0.74) 42%, rgba(24, 15, 10, 0.48) 100%),
            url("images/rest.png") no-repeat center center / cover;
        opacity: 0.52;
    }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — 860px  (мобильные устройства)
═══════════════════════════════════════════════════ */
@media (max-width: 860px) {
    /* ── Навигация ── */
    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 12px;
        right: 12px;
        display: grid;
        gap: 2px;
        padding: 10px;
        border-radius: 20px;
        background: rgba(26, 16, 10, 0.97);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border: 1px solid rgba(214, 175, 107, 0.16);
        box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px) scale(0.98);
        transition: opacity 0.25s ease, transform 0.3s var(--ease-out);
        z-index: 100;
    }

    .site-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    /* Увеличенные tap-targets для ссылок */
    .site-nav a {
        display: flex;
        align-items: center;
        padding: 14px 16px;
        border-radius: 12px;
        font-size: 0.84rem;
        letter-spacing: 0.14em;
        transition: background var(--transition), color var(--transition);
    }

    .site-nav a::after {
        display: none; /* убираем underline-анимацию в мобильном меню */
    }

    .site-nav a:hover {
        background: rgba(214, 175, 107, 0.08);
    }

    .nav-cta {
        margin-top: 6px;
        min-height: 50px;
        width: 100%;
        border-radius: 14px;
        justify-content: center;
        font-size: 0.84rem;
    }

    /* ── Сетки ── */
    .hero-points,
    .menu-columns,
    .stats-inline,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .menu-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    /* hero-stats остаётся 2 колонки на планшете */
    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    /* ── Секции ── */
    .section {
        padding: 72px 0;
    }

    /* ── Hero ── */
    .hero {
        padding: 52px 0 72px;
    }

    .hero-panel {
        animation: none; /* отключаем float на мобильных */
        max-width: 100%;
        grid-template-columns: 1fr; /* убираем 2-колонку планшета */
    }

    .hero-note {
        grid-column: auto;
    }

    .hero::before {
        background:
            radial-gradient(circle at 50% 18%, rgba(239, 186, 95, 0.16), transparent 26%),
            linear-gradient(180deg, rgba(24, 15, 10, 0.94), rgba(24, 15, 10, 0.76)),
            url("images/rest.png") no-repeat 62% center / cover;
        opacity: 0.58;
    }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — 640px  (телефоны)
═══════════════════════════════════════════════════ */
@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    /* ── Шапка ── */
    .header-inner {
        min-height: 72px;
    }

    .brand {
        gap: 10px;
    }

    .brand-badge {
        width: 56px;
        height: 56px;
        border-radius: 50%;
    }

    .brand-logo {
        width: 100%;
        height: 100%;
    }

    .brand-text strong {
        font-size: 1.05rem;
    }

    .brand-text small {
        font-size: 0.58rem;
    }

    /* ── Секции ── */
    .section {
        padding: 60px 0;
    }

    .atmosphere-strip {
        padding: 60px 0;
    }

    /* ── Hero мобильный — минимализм ── */
    .hero-text,
    .hero-points,
    .hero-panel {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 24px;
    }

    .hero-mobile-photo {
        display: block;
        width: 100%;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
        aspect-ratio: 4 / 3;
    }

    .hero-mobile-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    .hero {
        padding: 44px 0 52px;
    }

    .hero-copy h1 {
        font-size: clamp(2.1rem, 8.5vw, 3rem);
        max-width: none;
        letter-spacing: -0.01em;
    }

    .hero-text {
        font-size: 0.98rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-points {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .hero-points li {
        padding: 13px 16px;
        font-size: 0.92rem;
    }

    .hero-panel {
        max-width: none;
        justify-self: stretch;
    }

    /* На мобильном hero-stats в 1 колонку */
    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .hero-stats .stat-card:last-child {
        grid-column: 1 / -1;
    }

    .stat-card strong {
        font-size: 1.05rem;
    }

    /* ── Paddings ── */
    .hero-note {
        padding: 18px 20px;
    }

    .stat-card {
        padding: 16px 18px;
    }

    .story-panel,
    .menu-side,
    .review-card,
    .reservation-panel,
    .contact-card {
        padding: 20px;
    }

    /* ── Заголовки ── */
    .hero-copy h1,
    .section-heading h2,
    .reservation-panel h2,
    .hero-note h2 {
        max-width: none;
    }

    .section-heading h2 {
        font-size: clamp(1.9rem, 7vw, 2.8rem);
    }

    .section-heading h2::after {
        margin-top: 10px;
        width: 40px;
    }

    .hero-note h2 {
        font-size: clamp(1.2rem, 4.5vw, 1.55rem);
    }

    /* ── Меню галерея ── */
    .menu-gallery {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 28px;
    }

    /* ── Лайтбокс мобильный ── */
    .lightbox-stage {
        padding: 0 48px;
        max-width: 100vw;
    }

    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }

    .lightbox-nav {
        width: 42px;
        height: 42px;
    }

    /* ── Меню блоки ── */
    .menu-block {
        padding: 22px;
    }

    .menu-list li {
        flex-direction: column;
        gap: 10px;
    }

    .menu-item-meta {
        width: 100%;
        grid-template-columns: 1fr auto;
        align-items: center;
        justify-items: start;
        text-align: left;
    }

    /* ── Кнопки ── */
    .btn,
    .nav-cta {
        width: 100%;
        min-height: 52px;
    }

    /* ── Атмосфера ── */
    .atmosphere-grid {
        gap: 20px;
        padding: 24px 0;
    }

    .atmosphere-points {
        gap: 10px;
    }

    .atmosphere-points p {
        font-size: 1rem;
    }

    /* ── Eyebrow ── */
    .eyebrow {
        font-size: 0.7rem;
        letter-spacing: 0.18em;
    }

    /* ── Footer ── */
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
    }

    .footer-inner a {
        justify-self: center;
    }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — 480px  (мелкие смартфоны)
═══════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .hero {
        padding: 36px 0 52px;
    }

    .hero-copy h1 {
        font-size: clamp(1.9rem, 9vw, 2.6rem);
    }

    .hero-text {
        font-size: 0.94rem;
    }

    /* На очень маленьких — в 1 колонку */
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .menu-gallery {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .lightbox-stage {
        padding: 0 40px;
    }

    .lightbox-prev { left: 4px; }
    .lightbox-next { right: 4px; }

    .hero-stats .stat-card:last-child {
        grid-column: auto;
    }

    .stat-card {
        padding: 15px 17px;
    }

    .stat-card strong {
        font-size: 1.05rem;
    }

    .stat-card span {
        font-size: 0.76rem;
    }

    .hero-note {
        padding: 16px 18px;
    }

    .section {
        padding: 52px 0;
    }

    .menu-block h3 {
        font-size: 1.3rem;
    }

    .menu-block h3::after {
        width: 24px;
        margin-top: 6px;
    }

    .section-heading h2 {
        font-size: clamp(1.7rem, 9vw, 2.4rem);
    }

    .review-card p::before {
        font-size: 2.6rem;
        vertical-align: -0.28em;
    }

    .reservation-panel h2 {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
    }

    .menu-block,
    .review-card {
        padding: 18px;
    }

    .stats-inline strong {
        font-size: 1.2rem;
    }

    .header-inner {
        min-height: 66px;
    }

    .brand-badge {
        width: 48px;
        height: 48px;
        border-radius: 50%;
    }

    .brand-text strong {
        font-size: 0.95rem;
    }
}

/* ═══════════════════════════════════════════════════
   Секция с картой
═══════════════════════════════════════════════════ */
.map-section {
    background: var(--bg-soft);
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1.5px solid var(--line);
    margin-top: 36px;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
}

.map-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--muted);
    font-family: var(--font-body);
}

.map-hint svg {
    flex-shrink: 0;
    color: var(--accent);
}

/* ═══════════════════════════════════════════════════
   Уважаем настройки анимации пользователя
═══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    .hero-panel {
        animation: none;
    }

    [data-reveal] {
        transition: opacity 0.3s ease;
        transform: none;
    }

    .btn,
    .nav-cta,
    .panel,
    .panel-dark,
    .menu-block,
    .story-panel,
    .review-card-dark,
    .contact-card,
    .menu-side,
    .site-nav,
    .site-nav a::after,
    .nav-toggle span {
        transition: none;
    }
}