@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --cream: #FAF3E4;
    --cream-soft: #F2E8D0;
    --cream-line: rgba(18, 33, 59, 0.12);
    --navy: #12213B;
    --navy-2: #0C1730;
    --navy-soft: rgba(255, 255, 255, 0.05);
    --navy-line: rgba(255, 255, 255, 0.12);
    --gold: #C6952F;
    --gold-light: #E3C77E;
    --gold-glow: rgba(198, 149, 47, 0.35);
    --text-dark: #1E2A3D;
    --text-muted: #6B7488;
    --text-cream: #F5EFDF;
    --text-cream-muted: #B9C2D6;
    --radius-lg: 26px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --container: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Manrope', 'Segoe UI', sans-serif;
    font-size: 17px;
    line-height: 1.65;
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

.container { max-width: var(--container); width: 100%; margin: 0 auto; padding: 0 28px; }

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 700;
    line-height: 1.15;
}

section { padding: 110px 0; position: relative; scroll-margin-top: 90px; }

.section-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.section-eyebrow::before, .section-eyebrow::after { content: ''; width: 22px; height: 1px; background: var(--gold); }

.section-head { max-width: 620px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 14px; }
.section-head p { color: var(--text-muted); font-size: 17px; }

/* ===== Reveal on scroll ===== */

[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
    * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
}

/* ===== Pattern overlay ===== */

.pattern-overlay {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    opacity: 0.5;
    background-image:
        linear-gradient(45deg, var(--cream-line) 1px, transparent 1px),
        linear-gradient(-45deg, var(--cream-line) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at 50% 0%, black, transparent 75%);
    -webkit-mask-image: radial-gradient(circle at 50% 0%, black, transparent 75%);
}

/* ===== Ornament divider ===== */

.ornament-divider { display: flex; justify-content: center; padding: 6px 0; }
.ornament-divider svg { width: 160px; height: 12px; stroke: var(--gold); fill: none; stroke-width: 1.4; opacity: 0.8; }

/* ===== Buttons ===== */

.btn {
    position: relative;
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600; font-size: 15px;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color .25s ease;
    white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #241906; box-shadow: 0 10px 28px var(--gold-glow); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 36px var(--gold-glow); }
.btn-ghost { background: rgba(255,255,255,0.06); border: 1px solid var(--navy-line); color: var(--text-cream); backdrop-filter: blur(8px); }
.btn-ghost:hover { border-color: var(--gold); transform: translateY(-3px); }
.btn-sm { padding: 10px 22px; font-size: 14px; }
.btn-block { width: 100%; }

/* ===== Header ===== */

.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 22px 0;
    transition: padding 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-header.is-scrolled {
    padding: 14px 0;
    background: rgba(250, 243, 228, 0.9);
    backdrop-filter: blur(14px);
    box-shadow: 0 4px 24px rgba(18,33,59,0.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px; font-weight: 700; letter-spacing: 0.02em;
    color: var(--text-cream);
    transition: color 0.3s ease;
}
.site-header.is-scrolled .logo { color: var(--navy); }
.logo-light { color: var(--text-cream) !important; }

.site-nav ul { display: flex; gap: 26px; }
.site-nav a {
    position: relative;
    font-size: 14.5px; font-weight: 500; color: var(--text-cream-muted);
    white-space: nowrap;
    transition: color 0.25s ease;
}
.site-header.is-scrolled .site-nav a { color: var(--text-muted); }
.site-nav a::after {
    content: ''; position: absolute; left: 0; bottom: -6px; width: 100%; height: 1.5px;
    background: var(--gold); transform: scaleX(0); transform-origin: left;
    transition: transform 0.25s var(--ease);
}
.site-nav a:hover { color: var(--gold); }
.site-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.icon-btn {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.08); border: 1px solid var(--navy-line);
    color: var(--text-cream);
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.icon-btn svg { width: 19px; height: 19px; }
.site-header.is-scrolled .icon-btn { color: var(--navy); border-color: var(--cream-line); background: rgba(18,33,59,0.05); }
.icon-btn:hover { border-color: var(--gold); color: var(--gold); }

.nav-toggle { display: none; position: relative; z-index: 101; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; }
.nav-toggle span { width: 100%; height: 2px; background: var(--text-cream); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), background 0.3s ease; }
.site-header.is-scrolled .nav-toggle span { background: var(--navy); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */

.hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    background: var(--navy);
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 20%, rgba(198,149,47,0.18), transparent 70%),
        linear-gradient(160deg, #16294d, #0C1730 60%);
}
.hero-ornament {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, var(--gold) 1px, transparent 1.4px);
    background-size: 46px 46px;
    opacity: 0.12;
}
.hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.hero-logo { margin-bottom: 30px; }
.hero-logo-mark { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-light); display: block; }
.hero-divider { display: inline-block; width: 60px; height: 2px; background: var(--gold); margin-top: 16px; }
.hero-slogan { font-size: clamp(30px, 5vw, 52px); color: var(--text-cream); margin-bottom: 22px; font-weight: 600; }
.hero-sub { font-size: 18px; color: var(--text-cream-muted); max-width: 480px; margin: 0 auto 40px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.scroll-cue { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid var(--navy-line); border-radius: 20px; z-index: 1; }
.scroll-cue span { display: block; width: 4px; height: 8px; margin: 7px auto 0; background: var(--gold); border-radius: 2px; animation: scrollCue 1.8s ease-in-out infinite; }
@keyframes scrollCue { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* ===== Media placeholders (illustrated, not real photos) ===== */

.media-frame {
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(155deg, var(--cream-soft), var(--cream));
    border: 1px solid var(--cream-line);
    box-shadow: 0 20px 50px rgba(18,33,59,0.08);
}
.media-icon { color: var(--gold); }
.media-icon svg { width: 64px; height: 64px; }

/* ===== About ===== */

.about-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center; }
.about-media { position: relative; height: 420px; }
.media-frame-1 { position: absolute; width: 78%; height: 82%; top: 0; left: 0; }
.media-frame-2 { position: absolute; width: 56%; height: 52%; bottom: 0; right: 0; border: 4px solid var(--cream); box-shadow: 0 20px 50px rgba(18,33,59,0.15); }
.media-frame-2 .media-icon svg { width: 40px; height: 40px; }
.about-text p { color: var(--text-muted); margin: 20px 0; font-size: 17px; }
.about-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-style: italic; color: var(--navy) !important;
    border-left: 3px solid var(--gold);
    padding-left: 20px;
    margin-top: 26px !important;
}

/* ===== Why ===== */

.why { background: var(--cream-soft); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card {
    padding: 34px 26px;
    background: var(--cream);
    border: 1px solid var(--cream-line);
    border-radius: var(--radius-md);
    text-align: center;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.why-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 16px 40px rgba(198,149,47,0.15); }
.why-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 58px; height: 58px; border-radius: 50%;
    background: linear-gradient(155deg, rgba(198,149,47,0.16), rgba(198,149,47,0.05));
    color: var(--gold);
    margin-bottom: 18px;
}
.why-icon svg { width: 26px; height: 26px; }
.why-card h3 { font-size: 19px; font-weight: 600; color: var(--navy); }

/* ===== Menu ===== */

.menu-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 44px; }
.menu-tab {
    padding: 11px 20px;
    border-radius: 50px;
    border: 1px solid var(--cream-line);
    background: var(--cream);
    font-size: 14px; font-weight: 600; color: var(--text-muted);
    transition: all 0.25s ease;
}
.menu-tab:hover { border-color: var(--gold); color: var(--navy); }
.menu-tab.is-active { background: var(--navy); border-color: var(--navy); color: var(--gold-light); }

.menu-panel { display: none; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.menu-panel.is-active { display: grid; animation: fadeIn 0.5s var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.menu-item {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 22px;
    background: var(--cream-soft);
    border: 1px solid var(--cream-line);
    border-radius: var(--radius-md);
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.menu-item:hover { transform: translateY(-4px); border-color: var(--gold); }
.menu-item-icon { font-size: 30px; line-height: 1; }
.menu-item h4 { font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.menu-item p { font-size: 14px; color: var(--text-muted); }

/* ===== Atmosphere (dark) ===== */

.atmosphere { background: var(--navy); color: var(--text-cream); }
.atmosphere .section-eyebrow { color: var(--gold-light); }
.atmosphere .section-head h2 { color: var(--text-cream); }
.atmosphere .section-head p { color: var(--text-cream-muted); }

.atm-masonry { columns: 3 220px; column-gap: 20px; }
.atm-item {
    position: relative; display: flex; align-items: center; justify-content: center;
    width: 100%; height: var(--h, 240px); margin-bottom: 20px;
    border-radius: var(--radius-md);
    background: linear-gradient(160deg, rgba(198,149,47,0.14), rgba(255,255,255,0.03));
    border: 1px solid var(--navy-line);
    overflow: hidden; break-inside: avoid;
    transition: transform 0.4s var(--ease);
}
.atm-item:hover { transform: translateY(-6px); }
.atm-icon { color: var(--gold-light); opacity: 0.9; transition: transform 0.4s var(--ease); }
.atm-icon svg { width: 46px; height: 46px; }
.atm-item:hover .atm-icon { transform: scale(1.1); }
.atm-caption {
    position: absolute; left: 16px; bottom: 14px; z-index: 1;
    font-size: 13px; font-weight: 600; color: var(--text-cream);
    opacity: 0; transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.atm-item:hover .atm-caption { opacity: 1; transform: none; }

/* ===== Promo ===== */

.promo { background: var(--cream-soft); }
.promo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.promo-card {
    padding: 30px 20px;
    background: var(--cream);
    border: 1px solid var(--cream-line);
    border-radius: var(--radius-md);
    text-align: center;
    transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.promo-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.promo-icon { display: inline-flex; color: var(--gold); margin-bottom: 14px; }
.promo-icon svg { width: 32px; height: 32px; }
.promo-card h3 { font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.promo-card p { font-size: 13.5px; color: var(--text-muted); }

/* ===== Banquet (dark) ===== */

.banquet { background: var(--navy); color: var(--text-cream); }
.banquet .section-eyebrow { color: var(--gold-light); }
.banquet-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.banquet-text h2 { color: var(--text-cream); }
.banquet-text p { color: var(--text-cream-muted); margin: 18px 0 28px; }
.banquet-halls { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.banquet-halls li {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--navy-line);
    border-radius: var(--radius-sm);
}
.banquet-halls strong { font-weight: 600; color: var(--text-cream); }
.banquet-halls span { color: var(--gold-light); font-size: 14px; }
.banquet-media { height: 380px; }
.media-frame-3 { width: 100%; height: 100%; background: linear-gradient(155deg, rgba(198,149,47,0.16), rgba(255,255,255,0.03)); border-color: var(--navy-line); }
.media-frame-3 .media-icon svg { width: 70px; height: 70px; }

/* ===== Delivery ===== */

.delivery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 40px; }
.delivery-card {
    display: flex; align-items: center; gap: 14px;
    padding: 20px;
    background: var(--cream-soft);
    border: 1px solid var(--cream-line);
    border-radius: var(--radius-md);
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.delivery-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.delivery-badge {
    flex: 0 0 44px; width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--navy); color: var(--gold-light);
    font-weight: 700; font-size: 16px;
}
.delivery-badge svg { width: 20px; height: 20px; }
.delivery-card strong { display: block; font-size: 15px; color: var(--navy); }
.delivery-card small { color: var(--text-muted); font-size: 13px; }

.delivery-info {
    display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap;
    padding: 26px 30px;
    background: var(--navy);
    border-radius: var(--radius-md);
    color: var(--text-cream);
}
.delivery-info > div { display: flex; flex-direction: column; gap: 4px; }
.di-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-light); }

/* ===== Contacts (dark) ===== */

.contacts { background: var(--navy); color: var(--text-cream); }
.contacts .section-eyebrow { color: var(--gold-light); }
.contacts-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contacts-text h2 { color: var(--text-cream); margin-bottom: 24px; }
.contacts-list { display: flex; flex-direction: column; gap: 16px; font-weight: 600; margin-bottom: 28px; }
.contacts-list li { display: flex; align-items: center; gap: 12px; color: var(--text-cream); }
.ci { display: inline-flex; color: var(--gold); flex: 0 0 20px; }
.ci svg { width: 20px; height: 20px; }
.social-row { display: flex; gap: 10px; }
.social-row a {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.06); border: 1px solid var(--navy-line);
    color: var(--text-cream);
    transition: border-color 0.2s ease, color 0.2s ease;
}
.social-row a svg { width: 18px; height: 18px; }
.social-row a:hover { border-color: var(--gold); color: var(--gold); }

.contact-form {
    padding: 34px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--navy-line);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}
.form-row { margin-bottom: 16px; }
.form-row label { display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--text-cream-muted); font-weight: 600; }
.form-row input, .form-row textarea {
    font: inherit;
    padding: 13px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--navy-line);
    border-radius: var(--radius-sm);
    color: var(--text-cream);
    resize: vertical;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.form-row input::placeholder, .form-row textarea::placeholder { color: rgba(245,239,223,0.35); }
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--gold); background: rgba(198,149,47,0.06); }
.form-success {
    display: none; margin-top: 14px; padding: 13px 16px;
    border-radius: var(--radius-sm);
    background: rgba(198,149,47,0.12); border: 1px solid rgba(198,149,47,0.4);
    color: var(--gold-light); font-weight: 600; font-size: 14px; text-align: center;
}
.form-success.is-visible { display: block; }

/* ===== Footer ===== */

.site-footer { padding: 80px 0 0; background: var(--navy-2); color: var(--text-cream-muted); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; padding-bottom: 54px; }
.footer-brand p { color: var(--text-cream-muted); margin: 16px 0 22px; max-width: 300px; font-size: 15px; }
.social-row-footer a { background: rgba(255,255,255,0.04); }
.footer-col h4 { font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 700; color: var(--text-cream); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--text-cream-muted); font-size: 15px; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { padding: 22px 28px; border-top: 1px solid var(--navy-line); font-size: 13px; }

/* ===== Lightbox ===== */

.lightbox {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(12, 23, 48, 0.92); backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center; padding: 40px;
    opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox-frame {
    width: min(560px, 100%); aspect-ratio: 4/3;
    border-radius: var(--radius-lg); border: 1px solid var(--navy-line);
    background: linear-gradient(155deg, rgba(198,149,47,0.18), rgba(255,255,255,0.03));
    display: flex; align-items: center; justify-content: center;
    font-size: 80px;
    transform: scale(0.9); transition: transform 0.3s var(--ease);
}
.lightbox.is-open .lightbox-frame { transform: scale(1); }
.lightbox-close {
    position: absolute; top: 30px; right: 30px;
    width: 46px; height: 46px; border-radius: 50%;
    background: rgba(255,255,255,0.08); border: 1px solid var(--navy-line);
    color: var(--text-cream); font-size: 18px;
}

/* ===== Mobile FAB ===== */

.fab-cta {
    display: none;
    position: fixed; bottom: 20px; right: 20px; z-index: 90;
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #241906;
    align-items: center; justify-content: center;
    box-shadow: 0 10px 28px var(--gold-glow);
}
.fab-cta svg { width: 26px; height: 26px; }

/* ===== Responsive ===== */

@media (max-width: 1080px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .promo-grid { grid-template-columns: repeat(3, 1fr); }
    .delivery-grid { grid-template-columns: repeat(2, 1fr); }
    .about-inner, .banquet-inner, .contacts-inner { grid-template-columns: 1fr; }
    .about-media { order: -1; width: 100%; height: 320px; max-width: 480px; margin: 0 auto; }
    .banquet-media { order: -1; height: 280px; }
}

@media (max-width: 900px) {
    .site-nav {
        position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 82%);
        background: var(--navy);
        border-left: 1px solid var(--navy-line);
        transform: translateX(100%); transition: transform 0.35s var(--ease);
        padding: 110px 34px 40px; z-index: 99;
    }
    .site-nav.is-open { transform: translateX(0); }
    .site-nav ul { flex-direction: column; gap: 26px; }
    .site-nav a { color: var(--text-cream-muted) !important; }
    .icon-btn { display: none; }
    .nav-toggle { display: flex; }
    .fab-cta { display: flex; }
    .menu-tabs {
        justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap;
        padding-bottom: 6px; -webkit-overflow-scrolling: touch;
        mask-image: linear-gradient(90deg, black calc(100% - 36px), transparent);
        -webkit-mask-image: linear-gradient(90deg, black calc(100% - 36px), transparent);
    }
    .menu-tab { flex: 0 0 auto; }
}

@media (max-width: 768px) {
    section { padding: 76px 0; }
    .hero { padding: 130px 0 80px; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .promo-grid { grid-template-columns: 1fr 1fr; }
    .delivery-grid { grid-template-columns: 1fr; }
    .menu-panel { grid-template-columns: 1fr 1fr; }
    .atm-masonry { columns: 2 160px; }
    .footer-inner { grid-template-columns: 1fr; gap: 30px; }
    .banquet-halls li { flex-direction: column; align-items: flex-start; gap: 4px; }
}

@media (max-width: 520px) {
    .container { padding: 0 20px; }
    .why-grid { grid-template-columns: 1fr; }
    .promo-grid { grid-template-columns: 1fr; }
    .menu-panel { grid-template-columns: 1fr; }
    .atm-masonry { columns: 1; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .contact-form { padding: 24px; }
    .delivery-info { flex-direction: column; align-items: flex-start; gap: 16px; }
}
