/* 
██████╗░░█████╗░░█████╗░████████╗
██╔══██╗██╔══██╗██╔══██╗╚══██╔══╝
██████╔╝██║░░██║██║░░██║░░░██║░░░
██╔══██╗██║░░██║██║░░██║░░░██║░░░
██║░░██║╚█████╔╝╚█████╔╝░░░██║░░░
╚═╝░░╚═╝░╚════╝░░╚════╝░░░░╚═╝░░░*/
@font-face {
    font-family: 'GloriaScript';
    src: url('fonts/gloriascript.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
:root {
    /* Ширина контента */
    --content-width-desktop: 70vw;
    --content-width-mobile: 90vw;
    --mobile-version-width: 1279px;
    /* Шрифты */ 
    --font-title: 'Noto Serif', serif;       /* заголовки */
    --font-text: 'Noto Serif', serif;        /* текст */
    --font-accent: 'GloriaScript', serif;    /* акцент */
    /* Цвета */
    --green-dark: #1f3627;
    --green-light:#026533;
    --red-dark: #8d251f;
    --red-light: #df0005;
    --beige-dark: #cfab87;
    --beige-light: #f5e4d3;
    --brown-dark: #2f221f;
    --brown-second: #423734;
    /* Эффект для навигации */
    --bar-height: 64px;
    --header-bg: rgba(255, 255, 255, 0.06);
    --header-border: rgba(255, 255, 255, 0.12);
    --header-accent: rgba(255, 255, 255, 0.85);
}


/*
██████╗░░█████╗░██████╗░██╗░░░██╗
██╔══██╗██╔══██╗██╔══██╗╚██╗░██╔╝
██████╦╝██║░░██║██║░░██║░╚████╔╝░
██╔══██╗██║░░██║██║░░██║░░╚██╔╝░░
██████╦╝╚█████╔╝██████╔╝░░░██║░░░
╚═════╝░░╚════╝░╚═════╝░░░░╚═╝░░░*/
body {
    background: var(--beige-dark);
    margin: 0;
    font-family: var(--font-text);
}
/*
██╗░░██╗███████╗░█████╗░██████╗░███████╗██████╗░
██║░░██║██╔════╝██╔══██╗██╔══██╗██╔════╝██╔══██╗
███████║█████╗░░███████║██║░░██║█████╗░░██████╔╝
██╔══██║██╔══╝░░██╔══██║██║░░██║██╔══╝░░██╔══██╗
██║░░██║███████╗██║░░██║██████╔╝███████╗██║░░██║
╚═╝░░╚═╝╚══════╝╚═╝░░╚═╝╚═════╝░╚══════╝╚═╝░░╚═╝ */
/* ======================================
   Хедер
====================================== */
.site-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1100;
    background: var(--header-bg);
    backdrop-filter: blur(20px) saturate(80%);
    border-bottom: 1px solid var(--header-border);
    background: var(--header-bg);
    display: flex;
    flex-direction: column;
}
/* Десктоп-контейнер */
.desktop-header {
    width: var(--content-width-desktop);
    max-width: 1200px;
    margin: 0 auto;
    height: var(--bar-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
}
/* Лого */
.logo_nav img {
    height: 40px;       /* подбираешь по желанию */
    width: auto;
    display: block;
}
/* Десктоп-меню */
.nav-desktop {
    display: flex;
    gap: 2rem;
}
.nav-desktop a {
    text-decoration: none;
    color: var(--beige-light);
    font-family: var(--font-title);
    font-weight: 600;
}

.nav-desktop a:hover {
    color: var(--red-dark);
}
/* ======================================
   Мобильная топ-панель
====================================== */
.mobile-top-bar {
    display: none;
    width: var(--content-width-mobile);
    max-width: 1200px;
    margin: 0 auto;
    height: var(--bar-height);
    justify-content: space-between;
    align-items: center;
}
/* Кнопка телефона */
.phone-btn {
    font-size: 1.5rem;
    color: var(--header-accent);
    text-decoration: none;
}
/* Бургер */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2000;
}
.burger span {
    width: 24px;
    height: 2px;
    background: var(--header-accent);
}
/* ======================================
   Мобильное меню
====================================== */
.nav-mobile {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--green-dark);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 4rem 2rem 2rem 2rem;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 1100;
}
.nav-mobile a {
    color: var(--header-accent);
    text-decoration: none;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: right;
    width: 100%;
}
/* Кнопка закрытия */
.nav-mobile .close-btn {
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--header-accent);
    cursor: pointer;
    align-self: flex-end;
    margin-bottom: 1rem;
}
/* Overlay */
.overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 100;
    pointer-events: none;
}
/* Активное состояние */
.nav-mobile.active { 
    transform: translateY(0); 
}
.overlay.active { 
    opacity: 1; visibility: visible; pointer-events: auto; 
}
/* ======================================
   Адаптация для мобильных
====================================== */
@media (max-width: 1279px) {
    .desktop-header { display: none; }
    .mobile-top-bar { display: flex; }
    .burger { display: flex; }
    .nav-desktop { display: none; }
}
/*
███╗░░░███╗░█████╗░██╗███╗░░██╗  ░██████╗░█████╗░██████╗░███████╗███████╗███╗░░██╗
████╗░████║██╔══██╗██║████╗░██║  ██╔════╝██╔══██╗██╔══██╗██╔════╝██╔════╝████╗░██║
██╔████╔██║███████║██║██╔██╗██║  ╚█████╗░██║░░╚═╝██████╔╝█████╗░░█████╗░░██╔██╗██║
██║╚██╔╝██║██╔══██║██║██║╚████║  ░╚═══██╗██║░░██╗██╔══██╗██╔══╝░░██╔══╝░░██║╚████║
██║░╚═╝░██║██║░░██║██║██║░╚███║  ██████╔╝╚█████╔╝██║░░██║███████╗███████╗██║░╚███║
╚═╝░░░░░╚═╝╚═╝░░╚═╝╚═╝╚═╝░░╚══╝  ╚═════╝░░╚════╝░╚═╝░░╚═╝╚══════╝╚══════╝╚═╝░░╚══╝*/
.main_screen {
    display: flex;
    height: 100vh;
    width: 100%;
}
.main_screen .main_left {
    flex: 1;
    background: var(--beige-dark);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 8vw;
    position: relative;
    z-index: 2;
}
.main_screen .text_block {
    max-width: 1000px;
}
.main_screen .title-accent {
    font-family: var(--font-accent);
    font-size: clamp(2.5rem, 2.5vw + 2rem, 6rem);
    margin: 0;
    color: var(--brown-dark);
}
.main_screen .title-main {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: clamp(3rem, 4vw + 1rem, 6rem);
    margin: 0.2rem 0;
    line-height: 1.1;
    color: var(--brown-dark);
}
.main_screen .subtitle {
    font-family: var(--font-text);
    font-weight: 300;
    font-size: clamp(1.5rem, 1vw + 1rem, 2rem);
    margin: 1rem 0;
    line-height: 1.4;
}
.main_screen .buttons {
    flex-direction: column;
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.main_screen .btn {
    padding: 0.8rem 1.5rem;
    border-radius: 22px;
    text-decoration: none;
    font-family: var(--font-text);
    font-weight: 600;
    transition: all 0.3s ease;
}
.main_screen .btn-menu {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(5px);
    color: var(--brown-dark);
}
.main_screen .btn-book {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    color: var(--brown-dark);
}
.main_screen .main_right {
    flex: 1;
    position: relative;
    overflow: hidden;
}
.main_screen .main_right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Текст поверх фото (мобильная версия) */
.main_screen .text_block_mobile {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: #fff;
    text-shadow: 0 4px 8px rgba(0,0,0,0.6);
}
.main_screen .text_block_mobile h1,
.main_screen .text_block_mobile h2,
.main_screen .text_block_mobile p {
    margin: 0.3em 0;
    color: #fff;
    text-shadow: 0 4px 8px rgba(0,0,0,0.6);
}
.main_screen .text_block_mobile h1 { font-size: 10vw; }
.main_screen .text_block_mobile h2 { font-size: 9vw; font-weight: 700; }
.main_screen .text_block_mobile p { font-size: 4vw; }

.main_screen .text_block_mobile .buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.main_screen .text_block_mobile .btn-menu,
.main_screen .text_block_mobile .btn-book {
    width: 90%;
    padding: 1rem 1rem;
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    text-align: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}
.main_screen .text_block_mobile .btn-menu:hover,
.main_screen .text_block_mobile .btn-book:hover {
    background: rgba(41, 41, 41, 0.582);
    transform: scale(1.05);
}
/* ======================================
   Мобильная версия main_screen
====================================== */
@media (max-width: 1279px) {
    .main_screen {
        flex-direction: column;
    }
    .main_screen .main_left { display: none; }
    .main_screen .text_block_mobile { display: block; }
    .main_screen .main_right img { height: 100vh; }
}
/*
░██████╗████████╗░█████╗░██████╗░██╗███████╗░██████╗
██╔════╝╚══██╔══╝██╔══██╗██╔══██╗██║██╔════╝██╔════╝
╚█████╗░░░░██║░░░██║░░██║██████╔╝██║█████╗░░╚█████╗░
░╚═══██╗░░░██║░░░██║░░██║██╔══██╗██║██╔══╝░░░╚═══██╗
██████╔╝░░░██║░░░╚█████╔╝██║░░██║██║███████╗██████╔╝
╚═════╝░░░░╚═╝░░░░╚════╝░╚═╝░░╚═╝╚═╝╚══════╝╚═════╝░*/
.events {
  background: var(--red-dark);
  padding: 1.5rem;
}
.events .container {
  width: var(--content-width-desktop);
  max-width: 1200px;
  margin: auto;
  color: var(--beige-light);
}
.events .section-title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--beige-light);
}
.stories {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 10px;
  cursor: grab;
  -ms-overflow-style: none;  /* IE */
  scrollbar-width: none;  /* Firefox */
}
.stories::-webkit-scrollbar { display: none; }
.story-preview {
  flex-shrink: 0;
  width: 120px;
  height: 200px;
  border-radius: 12px;
  border: 3px solid transparent;
  transition: transform 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}
.story-preview:hover {
  transform: scale(1.05);
  border-color: var(--beige-light);
}
.story-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Заглушка */
.story-preview.no-story {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brown-second);
  color: var(--beige-light);
  font-size: 0.9rem;
  font-weight: bold;
  text-align: center;
  cursor: default;
}
/* --- Модалка --- */
.story-viewer {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}
.story-viewer img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  position: relative;
  z-index: 1; /* картинка под интерфейсом */
}
.story-viewer .story-progress {
  position: absolute;
  top: 20px;
  left: 5%;
  height: 4px;
  width: 0;
  background: var(--beige-light);
  border-radius: 2px;
  z-index: 2;
}
.story-viewer .close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 2;
}
.story-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 2;
}
.story-controls button {
  background: rgba(0,0,0,0.5);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
}
.story-controls button:hover {
  background: rgba(255,255,255,0.2);
}
/*

░█████╗░██████╗░░█████╗░██╗░░░██╗████████╗
██╔══██╗██╔══██╗██╔══██╗██║░░░██║╚══██╔══╝
███████║██████╦╝██║░░██║██║░░░██║░░░██║░░░
██╔══██║██╔══██╗██║░░██║██║░░░██║░░░██║░░░
██║░░██║██████╦╝╚█████╔╝╚██████╔╝░░░██║░░░
╚═╝░░╚═╝╚═════╝░░╚════╝░░╚═════╝░░░░╚═╝░░░*/
/* О ресторане */
.about {
  background: var(--red-dark);
  padding: 1.5rem;
}
.about .container {
  width: var(--content-width-desktop);
  max-width: 1200px;
  margin: auto;
  color: var(--beige-light);
}
.about .section-title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--beige-light);
}
.about-grid {
  display: flex;
  gap: 2rem;
}
.about-card {
  flex: 1;
  background: var(--brown-second);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.about-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  cursor: zoom-in;
}
.about-text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  font-size: 1.2rem;
  line-height: 1.4;
}
/* Мобильная адаптация ленты */
@media (max-width: 1279px) {
  .stories {
    gap: 1rem;
  }
  .story-item {
    min-width: 80px;
    min-height: 100px;
  }
  .events .container,
  .about .container {
    width: var(--content-width-mobile);
  }
}
@media (max-width: 719px) {
    .about-grid {
        display: grid;
        gap: 2rem;
    }
    .about-img img {
        min-height: 200px;
    }
}

/*
░██████╗░░█████╗░██╗░░░░░██╗░░░░░███████╗██████╗░██╗░░░██╗
██╔════╝░██╔══██╗██║░░░░░██║░░░░░██╔════╝██╔══██╗╚██╗░██╔╝
██║░░██╗░███████║██║░░░░░██║░░░░░█████╗░░██████╔╝░╚████╔╝░
██║░░╚██╗██╔══██║██║░░░░░██║░░░░░██╔══╝░░██╔══██╗░░╚██╔╝░░
╚██████╔╝██║░░██║███████╗███████╗███████╗██║░░██║░░░██║░░░
░╚═════╝░╚═╝░░╚═╝╚══════╝╚══════╝╚══════╝╚═╝░░╚═╝░░░╚═╝░░░*/
.gallery {
  background: var(--green-dark);
  padding: 1.5rem;
}

.gallery .container {
  width: var(--content-width-desktop);
  max-width: 1200px;
  margin: auto;
  color: var(--beige-light);
}
.gallery .section-title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--beige-light);
}
/* Десктоп версия - сетка */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr) 0 2fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 2rem;
}
.grid-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.grid-item:hover img {
  transform: scale(1.05);
}
.item1 { grid-area: 1 / 1 / 2 / 3; }
.item2 { grid-area: 2 / 1 / 3 / 2; }
.item3 { grid-area: 3 / 1 / 4 / 2; }
.item4 { grid-area: 2 / 2 / 4 / 3; }
.item5 { grid-area: 1 / 4 / 3 / 5; }
.item6 { grid-area: 3 / 4 / 4 / 5; }
/* Мобильная версия */
.gallery-mobile {
  display: none;
  margin-top: 2rem;
}
.mobile-main {
  position: relative;
  height: 400px;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
}
.mobile-main img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-main img.active {
  opacity: 1;
}
.mobile-thumbnails {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.5rem 0;
}
.thumb {
  flex: 0 0 80px;
  height: 60px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.thumb.active {
  opacity: 1;
  border: 2px solid var(--beige-light);
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1279px) {
  .gallery .container{
    width: var(--content-width-mobile);
  }
}
/* Адаптивность */
@media (max-width: 768px) {
  .gallery-grid {
    display: none;
  }
  .gallery-mobile {
    display: block;
  }
  .gallery .section-title {
    font-size: 2rem;
  }
  .mobile-main {
    height: 300px;
  }
}
/*
███████╗░█████╗░░█████╗░████████╗███████╗██████╗░
██╔════╝██╔══██╗██╔══██╗╚══██╔══╝██╔════╝██╔══██╗
█████╗░░██║░░██║██║░░██║░░░██║░░░█████╗░░██████╔╝
██╔══╝░░██║░░██║██║░░██║░░░██║░░░██╔══╝░░██╔══██╗
██║░░░░░╚█████╔╝╚█████╔╝░░░██║░░░███████╗██║░░██║
╚═╝░░░░░░╚════╝░░╚════╝░░░░╚═╝░░░╚══════╝╚═╝░░╚═╝*/
.contacts {
  background: var(--brown-dark);
  padding: 1.5rem;
}

.contacts .container {
  width: var(--content-width-desktop);
  max-width: 1200px;
  margin: auto;
  color: var(--beige-light);
}

.contacts .section-title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--beige-light);
}

/* Секция с картой */
.contacts-map-section {
  position: relative;
  margin-bottom: 2rem;
}

.map-container {
  position: relative;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 1.1rem;
}

/* Плашка с контактами поверх карты - обновленная */
.contacts-overlay {
  position: absolute;
  top: 2rem;
  left: 2rem;
  bottom: 2rem;
  background: rgba(190, 176, 155, 0.5); /* Полупрозрачный бежевый */
  backdrop-filter: blur(10px); /* Эффект размытия фона */
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  max-width: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Выравнивание по вертикали */
  z-index: 1000; /* Чтобы плашка была поверх карты */
  pointer-events: auto; /* Разрешаем клики */
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  font-size: 1.2rem;
  margin-top: 0.2rem;
  color: var(--beige-light);
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 1rem;
  color: var(--brown-dark) !important;
  opacity: 0.8;
  margin-bottom: 0.3rem;
}

.contact-value {
  font-size: 1rem;
  color: var(--brown-dark) !important;
  font-weight: 500;
  text-decoration: none;
}

.contact-value:hover {
    font-size: 1.1rem;
  color: var(--red-dark);
  opacity: 0.8;
}

/* Блок с отзывами */
.reviews-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
}

.review-platform {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}

.platform-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.review-link {
  color: var(--beige-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.review-link:hover {
  color: var(--red-dark);
  opacity: 0.8;
}

.review-divider {
  width: 1px;
  height: 40px;
  background: var(--beige-light);
  opacity: 0.3;
}

/* Разделитель */
.contacts-divider {
  width: 100%;
  height: 1px;
  background: var(--beige-dark);
  opacity: 0.2;
  margin: 2rem 0;
}

/* Футер с юридической информацией - обновленный */
.contacts-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.legal-info {
  color: var(--beige-dark);
  opacity: 0.7;
  font-size: 0.9rem;
  line-height: 1.4;
  order: 1;
}
.legal-info p {
  margin: 0;
}
.privacy-policy {
  color: var(--beige-dark);
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  order: 2;
}
.privacy-policy:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Стили для Яндекс Карты */
#map {
  border-radius: 12px;
}

/* Адаптивность для карты */
@media (max-width: 768px) {
  .map-container {
    height: 300px;
  }
  
  #map {
    border-radius: 8px;
  }
}

@media (max-width: 1279px) {
  .contacts .container{
    width: var(--content-width-mobile);
  }
}
/* Адаптивность */
@media (max-width: 768px) {
  .contacts {
    padding: 2rem 0;
  }
  .contacts .section-title {
    font-size: 2rem;
  }
  
  .map-container {
    height: 300px;
  }
  .contacts-overlay {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    max-width: 100%;
    margin-top: 1rem;
    backdrop-filter: none; /* Убираем размытие на мобильных для производительности */
    background: rgba(190, 176, 155, 0.98); /* Чуть менее прозрачный */
  }
  .reviews-links {
    flex-direction: column;
    gap: 1rem;
  }
  .review-divider {
    width: 80px;
    height: 1px;
  }
  .contacts-footer {
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .contacts-overlay {
    padding: 1.5rem;
  }
  .review-platform {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}