﻿@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;600;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --gold: #d4a574; --gold-dark: #b8935f; --terracotta: #c7644a;
    --dark: #1a1512; --dark-light: #2a2320; --cream: #f5f1ed;
    --white: #ffffff; --gray: #8a8079;
    --hat-menu-height: 90px; --content-width: 1080px;
    --side-padding: 105px; --content-height: 575px; --gap-vertical: 75px;
}

html { scroll-behavior: smooth; scroll-snap-type: y mandatory; }
body { font-family: 'Inter', sans-serif; background: var(--dark); color: var(--cream); overflow-x: hidden; }

.snap-section { scroll-snap-align: start; scroll-snap-stop: always; min-height: 100vh; height: 100vh; display: flex; flex-direction: column; position: relative; overflow: hidden; }

/* NAVIGATION & UI ELEMENTS */
.page-indicators { position: fixed; right: 30px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 15px; z-index: 9999; }
.page-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(212, 165, 116, 0.3); border: 2px solid var(--gold); cursor: pointer; transition: all 0.3s ease; }
.page-dot:hover { background: rgba(212, 165, 116, 0.5); transform: scale(1.2); }
.page-dot.active { background: var(--gold); transform: scale(1.3); }

.cursor { width: 10px; height: 10px; background: var(--gold); border-radius: 50%; position: fixed; pointer-events: none; z-index: 10001; transform: translate(-50%, -50%); transition: transform 0.15s ease; mix-blend-mode: difference; }
.cursor-outline { width: 30px; height: 30px; border: 2px solid var(--gold); border-radius: 50%; position: fixed; pointer-events: none; z-index: 10000; transform: translate(-50%, -50%); transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease; }
.cursor-outline.hover { width: 50px; height: 50px; border-color: var(--terracotta); }

.scroll-progress { position: fixed; top: 0; left: 0; width: 0%; height: 3px; background: linear-gradient(90deg, var(--gold), var(--terracotta)); z-index: 9999; }
.nav-buttons { position: fixed; top: 25px; right: 30px; display: flex; gap: 15px; z-index: 99999; align-items: center; }

.restaurant-menu-btn { width: 50px; height: 50px; background: rgba(199, 100, 74, 0.1); border: 1px solid rgba(199, 100, 74, 0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.4s ease; margin-right: 5px; }
.restaurant-menu-btn:hover { background: rgba(199, 100, 74, 0.2); transform: scale(1.1); }
.restaurant-menu-btn svg { width: 24px; height: 24px; fill: var(--terracotta); transition: transform 0.3s ease; }

/* Language Switcher Styles */
.lang-switcher-wrapper { position: relative; }
.lang-switcher-wrapper.desktop { margin-right: 150px; }
.lang-switcher-mobile { display: none; width: 50px; height: 50px; background: rgba(212, 165, 116, 0.1); border: 1px solid rgba(212, 165, 116, 0.3); border-radius: 50%; align-items: center; justify-content: center; cursor: pointer; transition: all 0.4s ease; color: var(--gold); font-size: 14px; font-weight: 700; }
.lang-switcher-mobile:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); transform: scale(1.1); }
.lang-dropdown { position: absolute; top: 100%; right: 0; margin-top: 10px; background: rgba(26, 21, 18, 0.98); border: 1px solid rgba(212, 165, 116, 0.3); border-radius: 8px; overflow: hidden; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all 0.3s ease; min-width: 60px; z-index: 100000; }
.lang-dropdown.active { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-option { display: block; width: 100%; padding: 10px 15px; background: transparent; border: none; color: var(--cream); font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; text-align: center; }
.lang-option:hover { background: rgba(212, 165, 116, 0.2); color: var(--gold); }
.lang-option.active { background: var(--gold); color: var(--dark); }

.menu-toggle { width: 50px; height: 50px; background: rgba(212, 165, 116, 0.1); border: 1px solid rgba(212, 165, 116, 0.3); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; transition: all 0.4s ease; }
.menu-toggle:hover { background: rgba(212, 165, 116, 0.2); transform: scale(1.1); }
.menu-toggle span { width: 22px; height: 2px; background: var(--gold); transition: all 0.4s ease; border-radius: 2px; }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(20px); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.sidebar-tab { position: fixed; top: calc(50% - 310px); right: 0; width: 50px; height: 120px; background: rgba(26, 21, 18, 0.95); border: 1px solid rgba(212, 165, 116, 0.3); border-right: none; border-radius: 12px 0 0 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; cursor: pointer; z-index: 9998; transition: all 0.4s ease; box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3); }
.sidebar-tab:hover { right: -5px; }
.sidebar-tab.hidden { right: -50px; opacity: 0; pointer-events: none; }
.sidebar-tab-icon svg { width: 24px; height: 24px; fill: var(--gold); }
.sidebar-tab-text { writing-mode: vertical-rl; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 600; }

.sidebar { position: fixed; top: 0; right: -450px; width: 450px; height: 100vh; background: rgba(26, 21, 18, 0.98); backdrop-filter: blur(30px); border-left: 1px solid rgba(212, 165, 116, 0.2); z-index: 10000; transition: right 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55); overflow-y: auto; padding: 80px 40px 40px; }
.sidebar.active { right: 0; }
.sidebar-header { margin-bottom: 50px; }
.sidebar-logo { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 700; background: linear-gradient(135deg, var(--gold), var(--terracotta)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 15px; }
.sidebar-subtitle { font-size: 14px; color: var(--gray); letter-spacing: 2px; }

.quick-actions { margin-bottom: 50px; }
.quick-actions h3 { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 20px; }
.quick-btn { display: flex; align-items: center; gap: 15px; padding: 18px 20px; background: rgba(212, 165, 116, 0.05); border: 1px solid rgba(212, 165, 116, 0.2); border-radius: 12px; margin-bottom: 15px; text-decoration: none; color: var(--cream); transition: all 0.3s ease; }
.quick-btn:hover { background: rgba(212, 165, 116, 0.15); border-color: var(--gold); transform: translateX(-5px); }
.quick-btn-icon { width: 40px; height: 40px; background: rgba(212, 165, 116, 0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.quick-btn-icon svg { width: 20px; height: 20px; fill: var(--gold); }
.quick-btn-text span { display: block; font-size: 11px; color: var(--gray); margin-bottom: 3px; }
.quick-btn-text strong { font-size: 15px; font-weight: 600; }

.sidebar-social { margin-bottom: 30px; }
.sidebar-social h3 { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 20px; }
.sidebar-social-links { display: flex; gap: 15px; }
.sidebar-social-links a { width: 45px; height: 45px; background: rgba(212, 165, 116, 0.1); border: 1px solid rgba(212, 165, 116, 0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.sidebar-social-links a:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-5px) rotate(360deg); }
.sidebar-social-links svg { width: 20px; height: 20px; fill: var(--gold); transition: fill 0.3s ease; }
.sidebar-social-links a:hover svg { fill: var(--dark); }
.sidebar-footer { padding-top: 30px; border-top: 1px solid rgba(212, 165, 116, 0.2); font-size: 13px; color: var(--gray); }

.sidebar-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(5px); opacity: 0; visibility: hidden; z-index: 9999; transition: all 0.4s ease; }
.sidebar-overlay.active { opacity: 1; visibility: visible; }

.restaurant-sidebar { position: fixed; top: 0; right: -450px; width: 450px; height: 100vh; background: rgba(42, 35, 32, 0.98); backdrop-filter: blur(30px); border-left: 1px solid rgba(199, 100, 74, 0.2); z-index: 10000; transition: right 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55); overflow-y: auto; padding: 80px 40px 40px; }
.restaurant-sidebar.active { right: 0; }
.restaurant-sidebar-header { margin-bottom: 50px; text-align: center; }
.restaurant-sidebar-logo { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--terracotta); margin-bottom: 10px; }
.restaurant-sidebar-subtitle { font-size: 14px; color: var(--gray); letter-spacing: 2px; }
.restaurant-menu-categories { display: flex; flex-direction: column; gap: 12px; }
.restaurant-menu-category { background: rgba(199, 100, 74, 0.1); border: 1px solid rgba(199, 100, 74, 0.2); border-radius: 12px; padding: 20px; cursor: pointer; transition: all 0.3s ease; }
.restaurant-menu-category:hover { background: rgba(199, 100, 74, 0.15); border-color: rgba(199, 100, 74, 0.4); transform: translateX(-5px); }
.restaurant-menu-category-icon { font-size: 28px; margin-bottom: 10px; display: block; }
.restaurant-menu-category h4 { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--terracotta); margin-bottom: 5px; }
.restaurant-menu-category p { font-size: 13px; color: var(--gray); }

nav { position: fixed; top: 0; width: 100%; height: var(--hat-menu-height); padding: 0 80px; display: flex; justify-content: space-between; align-items: center; z-index: 9000; transition: all 0.4s ease; }
nav.scrolled { background: rgba(26, 21, 18, 0.95); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(212, 165, 116, 0.2); }
.logo { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; letter-spacing: 3px; background: linear-gradient(135deg, var(--gold), var(--terracotta)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
nav ul { display: flex; list-style: none; gap: 50px; margin-right: 150px; }
nav ul li a { color: var(--cream); text-decoration: none; font-size: 15px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; transition: all 0.3s ease; position: relative; }
nav ul li a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s ease; }
nav ul li a:hover::after { width: 100%; }
nav ul li a:hover { color: var(--gold); }
.lang-switcher { background: transparent; border: 1px solid rgba(212, 165, 116, 0.3); border-radius: 6px; color: var(--gold); padding: 8px 14px; font-size: 13px; font-weight: 700; letter-spacing: 1px; cursor: pointer; transition: all 0.3s ease; text-transform: uppercase; }
.lang-switcher:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* HERO SECTION WITH CAROUSEL */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    /* --- PARALLAX FIX IS HERE --- */
    background-attachment: fixed; 
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

.hero-slide.active {
    opacity: 1;
}

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

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 165, 116, 0.3);
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot:hover {
    background: rgba(212, 165, 116, 0.5);
    transform: scale(1.2);
}

.hero-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* --- WHEELS REMOVED --- */
.oriental-pattern, .mandala, .mandala-left, .mandala-right {
    display: none !important;
}

.hero-content { text-align: center; z-index: 10; max-width: 900px; padding: 0 40px; }
.hero-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(60px, 10vw, 140px); font-weight: 900; line-height: 0.9; margin-bottom: 30px; background: linear-gradient(135deg, var(--cream), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: 2px; animation: hero-title 1s ease-out; }
@keyframes hero-title { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }
.hero-subtitle { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--gold); margin-bottom: 20px; font-style: italic; letter-spacing: 3px; min-height: 35px; }
.typewriter { display: inline-block; border-right: 2px solid var(--gold); padding-right: 5px; animation: blink-cursor 0.8s step-end infinite; }
@keyframes blink-cursor { from, to { border-color: var(--gold); } 50% { border-color: transparent; } }
.hero-content p { font-size: 18px; color: var(--gray); margin-bottom: 50px; line-height: 1.8; animation: hero-text 1s ease-out 0.4s backwards; }
@keyframes hero-text { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.btn { display: inline-block; padding: 18px 50px; background: var(--gold); color: var(--dark); text-decoration: none; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; border: 2px solid var(--gold); transition: all 0.4s ease; position: relative; overflow: hidden; cursor: pointer; }
.btn::before { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: var(--terracotta); border-radius: 50%; transform: translate(-50%, -50%); transition: width 0.6s ease, height 0.6s ease; }
.btn:hover::before { width: 400px; height: 400px; }
.btn span { position: relative; z-index: 1; }
.scroll-hint { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--gold); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; animation: bounce-subtle 2s ease-in-out infinite; z-index: 10; }
@keyframes bounce-subtle { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }
.scroll-hint svg { width: 20px; height: 20px; fill: var(--gold); }

/* MENU MODAL */
.menu-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-modal {
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    background: var(--dark-light);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.menu-modal-overlay.active .menu-modal {
    transform: scale(1);
}

.menu-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 50%;
    color: var(--gold);
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-modal-close:hover {
    background: var(--gold);
    color: var(--dark);
}

.menu-modal-back {
    position: absolute;
    top: 20px;
    left: 20px;
    background: transparent;
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 8px;
    color: var(--gold);
    font-size: 14px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-modal-back:hover {
    background: rgba(212, 165, 116, 0.1);
}

.menu-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--cream);
    text-align: center;
    margin-bottom: 30px;
    padding-top: 20px;
}

.menu-modal-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-section {
    margin-bottom: 30px;
}

.menu-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.menu-item {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
    align-items: center;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item-ru {
    font-size: 15px;
    color: var(--cream);
}

.menu-item-et {
    font-size: 15px;
    color: var(--gray);
    font-style: italic;
}

.menu-item-price {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--gold);
    font-weight: 600;
    text-align: right;
    min-width: 60px;
}

.menu-coming-soon {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray);
    font-size: 18px;
}

.menu-coming-soon span {
    display: block;
    font-size: 48px;
    margin-bottom: 20px;
}

.menu-header {
    display: flex;
    flex-direction: column; /* Paneb tekstid üksteise alla */
    gap: 5px; /* Tekitab vahe ridade vahele */
    margin-top: 25px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gold);
}

.menu-header-et {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    order: 1; /* Määrab, et Eesti keel on visuaalselt esimene */
}

.menu-header-ru {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--gray);
    font-style: italic;
    order: 2; /* Määrab, et Vene keel on teine */
}

/* Стили для отдельной страницы Меню */

.full-menu-section {
    min-height: 100vh;
    background: var(--dark);
    padding-top: 130px; /* Отступ от навигации */
    padding-bottom: 80px;
    display: flex;
    justify-content: center;
}

.full-menu-container {
    width: 100%;
    max-width: 800px; /* Ограничиваем ширину, чтобы читать было удобно */
    padding: 0 20px;
}

/* Адаптация элемента списка под страницу (отличается от модального окна) */
.full-menu-container .menu-item {
    display: grid;
    /* Сетка: Название EST | Цена */
    /* Название RU  |      */
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 2px 20px;
    padding: 15px 0;
    border-bottom: 1px dashed rgba(212, 165, 116, 0.2);
    align-items: baseline;
}

/* Эстонский (Левая колонка, 1 строка) */
.full-menu-container .menu-item-et {
    grid-column: 1;
    grid-row: 1;
    font-size: 16px;
    color: var(--cream);
    font-weight: 600;
}

/* Русский (Левая колонка, 2 строка) */
.full-menu-container .menu-item-ru {
    grid-column: 1;
    grid-row: 2;
    font-size: 14px;
    font-style: italic;
    color: var(--gray);
}

/* Цена (Правая колонка, занимает обе строки по высоте) */
.full-menu-container .menu-item-price {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    font-size: 18px;
    color: var(--gold);
    white-space: nowrap;
}

/* Заголовки категорий */
.full-menu-container .menu-header {
    display: flex;
    flex-direction: column;
    align-items: center; /* Центруем заголовки */
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold);
}

.full-menu-container .menu-header-et {
    font-size: 24px;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

/* --- ЛОГОТИП В МЕНЮ (ИСПРАВЛЕНО) --- */
.logo {
    display: flex;
    align-items: center;     /* Строго по центру по вертикали */
    align-self: center;      /* Сам блок логотипа тоже по центру */
    gap: 15px;
    position: relative;
    z-index: 10;
    line-height: 0;          /* Убирает влияние высоты строки на картинку */
}

/* Обращаемся к картинке напрямую внутри логотипа, так надежнее */
.logo img, 
.nav-logo-img {
    height: 50px !important; /* Принудительно задаем высоту 50px */
    width: auto;             /* Ширина подстроится сама */
    object-fit: contain;
    max-width: 100px;        /* На всякий случай ограничиваем ширину */
}

/* Исправляем цвет текста "SHAHRAY", чтобы его было видно */
.logo a {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 3px;
    /* Возвращаем золотой градиент */
    background: linear-gradient(135deg, var(--gold), var(--terracotta)); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

/* МОБИЛЬНАЯ ВЕРСИЯ */
@media (max-width: 768px) {
    .logo img, 
    .nav-logo-img {
        height: 42px !important; /* Уменьшаем картинку на телефоне */
    }
    
    .logo a {
        font-size: 24px !important; /* Уменьшаем текст */
    }
}

.introducing { min-height: 100vh; height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--dark); }
.intro-container { width: var(--content-width); max-width: calc(100% - 40px); display: flex; flex-direction: column; }
.intro-header { display: flex; align-items: center; gap: 30px; margin-bottom: 25px; }
.intro-title { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--cream); white-space: nowrap; }
.intro-tabs { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 5px; scrollbar-width: none; }
.intro-tabs::-webkit-scrollbar { display: none; }
.intro-tab { padding: 8px 18px; background: transparent; border: 1px solid rgba(212, 165, 116, 0.3); border-radius: 20px; color: var(--cream); font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.3s ease; white-space: nowrap; }
.intro-tab:hover { border-color: var(--gold); background: rgba(212, 165, 116, 0.1); }
.intro-tab.active { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.intro-content { display: grid; grid-template-columns: 500px 1fr; gap: 30px; margin-bottom: 30px; }
.intro-image-block { width: 500px; height: 300px; background: rgba(212, 165, 116, 0.05); border: 1px solid rgba(212, 165, 116, 0.2); border-radius: 12px; overflow: hidden; }
.intro-image-block .pic-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, rgba(199, 100, 74, 0.4), rgba(212, 165, 116, 0.4)); }
.intro-text-block { 
    display: flex; 
    flex-direction: column; 
    justify-content: flex-start; /* Joondab sisu üles */
    padding: 30px; /* Suurendasin veidi paddingut ilu pärast */
    background: rgba(212, 165, 116, 0.02); 
    border: 1px solid rgba(212, 165, 116, 0.1); 
    border-radius: 12px; 
    transition: opacity 0.2s ease; 
}
.intro-gallery-wrapper { position: relative; width: var(--content-width); max-width: 100%; display: flex; align-items: center; padding: 0; margin: 0 auto; overflow: visible; }
.intro-gallery { width: 100%; display: flex; gap: 20px; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; padding: 5px 0; }
.intro-gallery::-webkit-scrollbar { display: none; }
.intro-pic-small { width: 255px; min-width: 255px; height: 200px; background: rgba(212, 165, 116, 0.05); border: 1px solid rgba(212, 165, 116, 0.2); border-radius: 12px; overflow: hidden; transition: all 0.3s ease; cursor: pointer; flex-shrink: 0; }
.intro-pic-small:hover { border-color: var(--gold); transform: translateY(-5px); }
.intro-pic-small .pic-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, rgba(199, 100, 74, 0.5), rgba(212, 165, 116, 0.5)); }
.intro-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; background: rgba(26, 21, 18, 0.9); border: 1px solid rgba(212, 165, 116, 0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; z-index: 100; }
.intro-nav-prev { left: -80px; }
.intro-nav-next { right: -80px; }
.intro-nav:hover { background: var(--gold); border-color: var(--gold); }
.intro-nav:hover svg { fill: var(--dark); }
.intro-nav svg { width: 22px; height: 22px; fill: var(--gold); transition: fill 0.3s ease; }

/* Kitchen Menu Section */
.kitchen-menu { min-height: 100vh; height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--dark-light); padding: var(--gap-vertical) var(--side-padding); }
.kitchen-container { width: var(--content-width); max-width: 100%; height: var(--content-height); display: flex; flex-direction: column; }
.kitchen-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.kitchen-title { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--cream); }
.kitchen-pagination { display: flex; gap: 12px; align-items: center; }
.kitchen-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(212, 165, 116, 0.3); border: 2px solid var(--gold); cursor: pointer; transition: all 0.3s ease; }
.kitchen-dot:hover { background: rgba(212, 165, 116, 0.5); transform: scale(1.2); }
.kitchen-dot.active { background: var(--gold); transform: scale(1.3); }
.kitchen-slider-wrapper { flex: 1; overflow: hidden; position: relative; }
.kitchen-slider { display: flex; transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); height: 100%; cursor: grab; user-select: none; }
.kitchen-slider.dragging { cursor: grabbing; transition: none; }
.kitchen-page { min-width: 100%; height: 100%; }
.kitchen-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 1fr); gap: 20px; height: 100%; }
.kitchen-item { background: rgba(212, 165, 116, 0.03); border: 1px solid rgba(212, 165, 116, 0.15); border-radius: 16px; cursor: pointer; transition: all 0.4s ease; overflow: hidden; }
.kitchen-item:hover { border-color: var(--gold); background: rgba(212, 165, 116, 0.08); transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); }
.kitchen-item-inner { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; padding: 20px; }
.kitchen-item-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; color: var(--cream); text-align: center; }

.service-list { min-height: 100vh; height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--dark); padding: var(--gap-vertical) var(--side-padding); }
.service-container { width: var(--content-width); max-width: 100%; height: var(--content-height); display: flex; flex-direction: column; }
.service-header { display: flex; align-items: center; gap: 30px; margin-bottom: 25px; }
.service-title { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--cream); white-space: nowrap; }
.service-tabs { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 5px; scrollbar-width: none; }
.service-tabs::-webkit-scrollbar { display: none; }
.service-tab { padding: 8px 18px; background: transparent; border: 1px solid rgba(212, 165, 116, 0.3); border-radius: 20px; color: var(--cream); font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.3s ease; white-space: nowrap; }
.service-tab:hover { border-color: var(--gold); background: rgba(212, 165, 116, 0.1); }
.service-tab.active { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.service-content { display: grid; grid-template-columns: 500px 1fr; gap: 30px; flex: 1; min-height: 0; }
.service-image-block { width: 100%; height: 100%; background: rgba(212, 165, 116, 0.05); border: 1px solid rgba(212, 165, 116, 0.2); border-radius: 12px; overflow: hidden; }
.service-image-block .pic-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, rgba(199, 100, 74, 0.4), rgba(212, 165, 116, 0.4)); }
.service-info { display: flex; flex-direction: column; }
.service-info-title { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 600; color: var(--cream); margin-bottom: 20px; transition: opacity 0.2s ease; }
.service-text-block { flex: 1; padding: 25px; background: rgba(212, 165, 116, 0.02); border: 1px solid rgba(212, 165, 116, 0.1); border-radius: 12px; margin-bottom: 25px; transition: opacity 0.2s ease; }
.service-text-block p { font-size: 15px; line-height: 1.8; color: var(--gray); margin-bottom: 15px; }
.service-text-block p:last-child { margin-bottom: 0; }
.service-register-btn { align-self: center; }
.registration { min-height: 100vh; height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--dark-light); padding: var(--gap-vertical) var(--side-padding); }
.registration-container { width: var(--content-width); max-width: 100%; height: var(--content-height); display: flex; flex-direction: column; }
.registration-title { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--cream); margin-bottom: 15px; text-align: center; }
.registration-guidance { font-size: 14px; color: var(--gray); text-align: center; margin-bottom: 25px; }
.registration-content { display: grid; grid-template-columns: 300px 1fr; gap: 30px; flex: 1; min-height: 0; }
.registration-form-fields { display: flex; flex-direction: column; gap: 15px; }
.form-field { width: 100%; }
.form-field select, .form-field input { width: 100%; padding: 14px 16px; background: rgba(212, 165, 116, 0.05); border: 1px solid rgba(212, 165, 116, 0.2); color: var(--cream); font-family: 'Inter', sans-serif; font-size: 14px; border-radius: 8px; transition: all 0.3s ease; }
.form-field select:focus, .form-field input:focus { outline: none; background: rgba(212, 165, 116, 0.08); border-color: var(--gold); }
.form-field select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%23d4a574'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 35px; }
.registration-comments { display: flex; flex-direction: column; }
.comments-label { font-size: 16px; font-weight: 600; color: var(--cream); margin-bottom: 15px; }
.comments-textarea { flex: 1; width: 100%; padding: 16px; background: rgba(212, 165, 116, 0.05); border: 1px solid rgba(212, 165, 116, 0.2); color: var(--cream); font-family: 'Inter', sans-serif; font-size: 14px; border-radius: 8px; resize: none; transition: all 0.3s ease; }
.comments-textarea:focus { outline: none; background: rgba(212, 165, 116, 0.08); border-color: var(--gold); }
.registration-footer { margin-top: 20px; text-align: center; }
.registration-post-guidance { font-size: 13px; color: var(--gray); margin-bottom: 20px; }
.contacts { min-height: 100vh; height: 100vh; display: flex; flex-direction: column; background: var(--dark); }
.contacts-container { flex: 1; display: flex; flex-direction: column; max-width: var(--content-width); margin: 0 auto; width: 100%; padding: 120px var(--side-padding) 0; }
.contacts-title { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--cream); margin-bottom: 40px; }
.contacts-main { display: grid; grid-template-columns: 350px 1fr; gap: 60px; margin-bottom: 30px; }
.contacts-left { display: flex; flex-direction: column; }
.contacts-map { width: 100%; height: 200px; background: #2a2320; border: 1px solid rgba(212, 165, 116, 0.2); border-radius: 4px; overflow: hidden; margin-bottom: 20px; }
.contacts-map iframe { width: 100%; height: 100%; border: none; filter: grayscale(100%) invert(92%) contrast(0.85); }
.directions-btn { display: inline-flex; align-items: center; gap: 10px; padding: 12px 20px; background: transparent; border: 1px solid rgba(212, 165, 116, 0.3); color: var(--cream); text-decoration: none; font-size: 13px; font-weight: 500; border-radius: 4px; transition: all 0.3s ease; width: fit-content; }
.directions-btn:hover { background: rgba(212, 165, 116, 0.1); border-color: var(--gold); }
.directions-btn svg { width: 18px; height: 18px; fill: var(--gold); }
.contacts-right { display: flex; flex-direction: column; }
.hours-box { border: 1px solid rgba(212, 165, 116, 0.2); border-radius: 4px; padding: 25px 30px; }
.hours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.hours-item { text-align: center; padding: 0 15px; border-right: 1px solid rgba(212, 165, 116, 0.15); }
.hours-item:last-child { border-right: none; }
.hours-days { font-size: 12px; color: var(--gray); margin-bottom: 10px; }
.hours-time { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 500; color: var(--cream); font-style: italic; }
.contacts-info-row { display: grid; grid-template-columns: 400px 1fr auto; gap: 40px; align-items: start; margin-bottom: 15px; }
.info-section-collapsible { background: transparent; border: 1px solid rgba(212, 165, 116, 0.2); border-radius: 4px; cursor: pointer; transition: all 0.3s ease; }
.info-section-collapsible h3 { font-size: 13px; color: var(--cream); letter-spacing: 0.5px; font-weight: 500; padding: 15px 20px; margin: 0; display: flex; align-items: center; justify-content: space-between; }
.info-section-collapsible h3::after { content: ''; width: 8px; height: 8px; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(45deg); transition: transform 0.3s ease; }
.info-section-collapsible.expanded h3::after { transform: rotate(-135deg); }
.info-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.info-section-collapsible.expanded .info-content { max-height: 150px; }
.info-content p { font-size: 14px; color: var(--gray); line-height: 1.7; padding: 0 20px 15px; margin: 0; }
.info-parking { grid-column: 1 / 3; }
.contacts-social { display: flex; gap: 12px; align-self: flex-end; }
.contacts-social a { width: 50px; height: 50px; border: 1px solid rgba(212, 165, 116, 0.3); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.contacts-social a.facebook { background: #1877f2; border-color: #1877f2; }
.contacts-social a.instagram { background: transparent; }
.contacts-social a:hover { transform: translateY(-3px); }
.contacts-social svg { width: 24px; height: 24px; fill: var(--cream); }
.contacts-footer { margin-top: auto; margin-bottom: 40px; border: 1px solid rgba(212, 165, 116, 0.15); border-radius: 4px; background: rgba(42, 35, 32, 0.4); }
.mobile-contacts-content { display: none; }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; align-items: center; }
.footer-logo-section { padding: 20px 30px; display: flex; align-items: center; }
.footer-logo-circle { width: 40px; height: 40px; border: 2px solid rgba(212, 165, 116, 0.3); border-radius: 50%; }
.footer-contact-btn { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 20px 40px; background: transparent; border-left: 1px solid rgba(212, 165, 116, 0.15); text-decoration: none; color: var(--cream); transition: all 0.3s ease; }
.footer-contact-btn:hover { background: rgba(212, 165, 116, 0.05); }
.footer-contact-btn svg { width: 20px; height: 20px; fill: var(--gold); }
.footer-contact-btn span { font-size: 14px; font-weight: 500; }

/* TABLET */
@media (max-width: 1200px) {
    :root { --side-padding: 40px; }
    nav ul { display: none; }
    .lang-switcher-wrapper.desktop { margin-right: 0; }
    .intro-content { grid-template-columns: 1fr; }
    .intro-image-block { width: 100%; height: 250px; }
    .kitchen-grid { grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 1fr); }
    .kitchen-item-name { font-size: 16px; }
    .service-content { grid-template-columns: 1fr; }
    .service-image-block { height: 300px; }
    .registration-content { grid-template-columns: 1fr 1fr; }
    .contacts-main { grid-template-columns: 1fr; }
    .sidebar, .restaurant-sidebar { width: 100%; right: -100%; }
    .menu-modal { padding: 30px; }
    .menu-item { grid-template-columns: 1fr 1fr 80px; gap: 15px; }
}

/* MOBILE */
@media (max-width: 768px) {
    :root { --side-padding: 20px; --gap-vertical: 15px; }
    html { scroll-snap-type: y mandatory; overscroll-behavior: none; }
    body { cursor: default; overscroll-behavior: none; }
    .cursor, .cursor-outline { display: none; }
    .snap-section { scroll-snap-align: start; scroll-snap-stop: always; height: 100vh; height: 100dvh; min-height: 100vh; min-height: 100dvh; max-height: 100vh; max-height: 100dvh; overflow: hidden; }
    nav { padding: 0 20px; height: 70px; }
    nav ul { display: none; }
    .lang-switcher-wrapper.desktop { display: none; }
    .lang-switcher-mobile { display: flex; }
    .nav-buttons { top: 15px; right: 15px; gap: 8px; }
    .menu-toggle, .restaurant-menu-btn, .lang-switcher-mobile { width: 40px; height: 40px; }
    .restaurant-menu-btn { margin-right: 0; }
    .restaurant-menu-btn svg { width: 20px; height: 20px; }
    .menu-toggle span { width: 18px; }
    .page-indicators { right: 8px; gap: 6px; }
    .page-dot { width: 6px; height: 6px; }
    .sidebar-tab { display: none; }
    .sidebar, .restaurant-sidebar { width: 100%; right: -100%; padding: 60px 20px 20px; }

    /* HERO */
    .hero { padding: 70px 20px 30px; }
    .hero-content h1 { font-size: 42px; margin-bottom: 15px; }
    .hero-subtitle { font-size: 14px; margin-bottom: 10px; min-height: 25px; }
    .hero-content p { font-size: 13px; margin-bottom: 25px; line-height: 1.6; }
    .btn { padding: 12px 30px; font-size: 11px; }
    .scroll-hint { bottom: 15px; font-size: 9px; }
    .scroll-hint svg { width: 16px; height: 16px; }
    .hero-dots { bottom: 60px; gap: 8px; }
    .hero-dot { width: 8px; height: 8px; }

    /* MENU MODAL MOBILE */
    .menu-modal { padding: 20px; width: 95%; max-height: 95vh; }
    .menu-modal-title { font-size: 24px; padding-top: 40px; }
    .menu-modal-close { width: 40px; height: 40px; font-size: 24px; top: 15px; right: 15px; }
    .menu-modal-back { top: 15px; left: 15px; font-size: 12px; padding: 8px 15px; }
    .menu-item { grid-template-columns: 1fr; gap: 5px; padding: 15px 0; }
    .menu-item-ru { font-size: 14px; }
    .menu-item-et { font-size: 13px; }
    .menu-item-price { text-align: left; font-size: 16px; }
    .menu-section-title { font-size: 20px; }

    /* INTRODUCING */
    .introducing { height: 100vh; height: 100dvh; padding: 70px 20px 15px; justify-content: flex-start; overflow: hidden; }
    .intro-container { width: 100%; max-width: 100%; height: calc(100vh - 85px); height: calc(100dvh - 85px); display: flex; flex-direction: column; padding: 0; }
    .intro-header { flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 10px; flex-shrink: 0; padding: 0; }
    .intro-title { font-size: 22px; }
    .intro-tabs { width: calc(100% + 40px); gap: 6px; overflow-x: auto; margin: 0 -20px; padding: 0 20px; scrollbar-width: none; }
    .intro-tabs::-webkit-scrollbar { display: none; }
    .intro-tab { padding: 5px 12px; font-size: 11px; flex-shrink: 0; }
    .intro-content { display: flex; flex-direction: column; gap: 10px; flex: 1; min-height: 0; padding: 0; }
    .intro-image-block { width: 100%; height: 28%; min-height: 100px; flex-shrink: 0; }
    .intro-text-block { flex: 1; padding: 10px; min-height: 0; overflow: hidden; }
    .intro-text-block p { font-size: 11px; line-height: 1.4; margin-bottom: 6px; }
    .intro-gallery-wrapper { padding: 0; flex-shrink: 0; height: 20%; min-height: 80px; width: 100%; max-width: 100%; }
    .intro-gallery { width: 100%; height: 100%; gap: 15px; padding: 0; }
    .intro-pic-small { width: calc(50% - 7.5px); min-width: calc(50% - 7.5px); height: 100%; flex-shrink: 0; }
    .intro-nav { display: none; }

    /* KITCHEN MENU MOBILE */
    .kitchen-menu { height: 100vh; height: 100dvh; padding: 70px 20px 15px; overflow: hidden; }
    .kitchen-container { width: 100%; height: calc(100vh - 85px); height: calc(100dvh - 85px); display: flex; flex-direction: column; }
    .kitchen-header { flex-direction: column; align-items: center; gap: 10px; margin-bottom: 15px; flex-shrink: 0; }
    .kitchen-title { font-size: 22px; text-align: center; }
    .kitchen-pagination { gap: 10px; }
    .kitchen-dot { width: 10px; height: 10px; }
    .kitchen-slider-wrapper { flex: 1; min-height: 0; touch-action: pan-y pinch-zoom; }
    .kitchen-slider { height: 100%; }
    .kitchen-page { min-width: 100%; height: 100%; }
    .kitchen-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 1fr); gap: 10px; height: 100%; }
    .kitchen-item { width: 100%; height: 100%; }
    .kitchen-item-name { font-size: 13px; }

    /* SERVICE LIST MOBILE */
    .service-list { height: auto; min-height: 100vh; padding: 70px 20px 20px; overflow-x: hidden; display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; }
    .service-container { width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; }
    .service-header { flex-direction: column; align-items: center; gap: 12px; margin-bottom: 27px; width: 100%; }
    .service-title { font-size: 22px; font-weight: 600; background: transparent; border: none; border-radius: 0; padding: 15px 0 5px 0; display: block; text-align: center; }
    .service-tabs { width: 100%; gap: 8px; justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding: 0 20px 5px 20px; margin: 0 -20px; height: auto; scrollbar-width: none; }
    .service-tabs::-webkit-scrollbar { display: none; }
    .service-tab { padding: 8px 12px; font-size: 11px; white-space: nowrap; flex-shrink: 0; }
    .service-content { display: flex; flex-direction: column; gap: 0; width: 100%; }
    .service-image-block { width: 100%; height: 280px; flex-shrink: 0; border-radius: 8px; border: none; margin-bottom: 12px; background: linear-gradient(135deg, rgba(199, 100, 74, 0.7), rgba(212, 165, 116, 0.7)); }
    .service-info { display: flex; flex-direction: column; width: 100%; }
    .service-info-title { font-size: 18px; text-align: center; margin-bottom: 12px; padding: 8px 0; font-weight: 600; }
    .service-text-block { width: 100%; height: 270px; min-height: 270px; max-height: 270px; padding: 16px; margin-bottom: 46px; overflow-y: auto; background: transparent; border: 1px solid rgba(212, 165, 116, 0.3); border-radius: 4px; }
    .service-text-block p { font-size: 13px; line-height: 1.55; margin-bottom: 12px; color: var(--gray); }
    .service-text-block p:last-child { margin-bottom: 0; }
    .service-register-btn { padding: 14px 45px; font-size: 12px; align-self: center; background: var(--gold) !important; border: 2px solid var(--gold) !important; color: var(--dark) !important; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; }
    .service-register-btn::before { display: none !important; }

    /* REGISTRATION MOBILE */
    .registration { height: 100vh; height: 100dvh; padding: 70px 20px 15px; overflow: hidden; }
    .registration-container { width: 100%; height: calc(100vh - 85px); height: calc(100dvh - 85px); display: flex; flex-direction: column; }
    .registration-title { font-size: 22px; margin-bottom: 5px; flex-shrink: 0; }
    .registration-guidance { font-size: 11px; margin-bottom: 10px; flex-shrink: 0; }
    .registration-content { display: flex; flex-direction: column; gap: 10px; flex: 1; min-height: 0; }
    .registration-form-fields { gap: 8px; flex-shrink: 0; }
    .form-field select, .form-field input { padding: 10px 12px; font-size: 12px; }
    .registration-comments { flex: 1; min-height: 0; display: flex; flex-direction: column; }
    .comments-label { font-size: 13px; margin-bottom: 8px; flex-shrink: 0; }
    .comments-textarea { flex: 1; min-height: 80px; font-size: 12px; }
    .registration-footer { margin-top: 10px; flex-shrink: 0; }
    .registration-post-guidance { font-size: 10px; margin-bottom: 10px; }

    /* CONTACTS MOBILE */
    .contacts { height: 100vh; height: 100dvh; min-height: 100vh; min-height: 100dvh; max-height: 100vh; max-height: 100dvh; overflow: hidden; }
    .contacts-container { padding: 80px 20px 20px; height: 100%; display: flex; flex-direction: column; overflow: visible; }
    .contacts-title { font-size: 18px; margin-bottom: 8px; font-weight: 600; }
    .contacts-main { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
    .contacts-left { margin-bottom: 10px; }
    .contacts-map { height: 120px; margin-bottom: 8px; border-radius: 4px; }
    .directions-btn { width: 100%; justify-content: center; padding: 14px 20px; background: transparent; border: 1px solid rgba(212, 165, 116, 0.3); }
    .contacts-right { display: none; }
    .mobile-hours { display: flex; flex-direction: column; gap: 0; margin-bottom: 15px; }
    .mobile-hours-item { display: flex; flex-direction: column; padding: 8px 0; border-bottom: 1px solid rgba(212, 165, 116, 0.1); }
    .mobile-hours-item:last-child { border-bottom: none; }
    .mobile-hours-label { font-size: 11px; color: var(--gray); margin-bottom: 2px; }
    .mobile-hours-time { font-family: 'Playfair Display', serif; font-size: 18px; font-style: italic; color: var(--cream); }
    .mobile-info-section { display: grid; grid-template-columns: 120px 1fr; gap: 15px; padding: 12px 0; border-bottom: 1px solid rgba(212, 165, 116, 0.1); }
    .mobile-info-label { font-size: 13px; font-weight: 600; color: var(--cream); }
    .mobile-info-value { font-size: 12px; color: var(--gray); line-height: 1.5; }
    .mobile-contact-row { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid rgba(212, 165, 116, 0.1); text-decoration: none; color: var(--cream); }
    .mobile-contact-row svg { width: 20px; height: 20px; fill: var(--gold); flex-shrink: 0; }
    .mobile-contact-row span { font-size: 14px; }
    .mobile-social-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; margin-top: auto; }
    .mobile-social-row span { font-size: 14px; color: var(--cream); }
    .mobile-social-icons { display: flex; gap: 10px; }
    .mobile-social-icons a { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
    .mobile-social-icons a.twitter { background: #1DA1F2; }
    .mobile-social-icons a.facebook { background: #1877f2; }
    .mobile-social-icons a.instagram { background: transparent; border: 1px solid rgba(212, 165, 116, 0.3); }
    .mobile-social-icons svg { width: 20px; height: 20px; fill: var(--cream); }
    .contacts-info-row { display: none; }
    .contacts-footer { display: none; }
    .mobile-contacts-content { display: block; }
}

@media (max-width: 400px) {
    .hero-content h1 { font-size: 36px; }
    .intro-title, .kitchen-title, .service-title, .registration-title { font-size: 20px; }
    .kitchen-item-name { font-size: 11px; }
}