/* Шрифты Wremena */
@font-face {
  font-family: "Wremena";
  src: url("/fonts/wine/WremenaLight1.10.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Wremena";
  src: url("/fonts/wine/WremenaRegular1.10.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Wremena";
  src: url("/fonts/wine/WremenaBold1.10.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Шрифты Golos Text */
@font-face {
  font-family: "Golos Text";
  src: url("/fonts/wine/golos-text_regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Golos Text";
  src: url("/fonts/wine/golos-text_medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Golos Text";
  src: url("/fonts/wine/golos-text_demibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Golos Text";
  src: url("/fonts/wine/golos-text_bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Golos Text";
  src: url("/fonts/wine/golos-text_black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Шрифты Golos UI */
@font-face {
  font-family: "Golos UI";
  src: url("/fonts/wine/golos-ui_regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Golos UI";
  src: url("/fonts/wine/golos-ui_medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Golos UI";
  src: url("/fonts/wine/golos-ui_bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}



html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Golos UI", sans-serif;
  background-color: #37452c;
  color: #1e1e1e;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Убираем outline при клике мышью, оставляем для клавиатуры */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* Убираем стандартные стили браузера для ссылок */
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  -webkit-tap-highlight-color: transparent;
}

/* Улучшение производительности анимаций */
.about__slide {
  will-change: opacity, transform;
}

.restaurants__lent--right,
.restaurants__lent--left {
  will-change: transform;
}

img {
  max-width: 100%;
  height: auto;
}

/* Skip navigation для доступности */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #37452c;
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 1000;
}

.skip-link:focus {
  top: 0;
}
.container {
  max-width: 1440px;
  margin: 0 auto;
}
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.header__nav {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: 120px;
  border-bottom: 1px solid #fff;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
  position: relative;
}
.header__menu {
  display: flex;
  gap: 20px;
  align-items: center;
  height: 100%;
}
.header__menu a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  transition: opacity 0.3s ease, transform 0.2s ease;
  display: inline-block;
}
.header__menu a:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}
.header__menu a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
  border-radius: 2px;
}
.header__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__logo img {
  display: block;
  height: auto;
  width: 60px;
}
.header__map a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: 24px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-block;
}
.header__map a:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}
.header__map a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
  background-color: rgba(255, 255, 255, 0.3);
}
.header__map a:active {
  transform: translateY(0);
}

/* Бургер-меню */
.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
  transition: transform 0.3s ease;
}

.burger-menu:hover {
  transform: scale(1.1);
}

.burger-menu__line {
  width: 24px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Мобильное выдвигающееся меню */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  pointer-events: none;
}

.mobile-menu--active {
  pointer-events: auto;
}

.mobile-menu__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-menu--active .mobile-menu__overlay {
  opacity: 1;
}

.mobile-menu__content {
  position: absolute;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background-color: #fff;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.mobile-menu--active .mobile-menu__content {
  right: 0;
}

.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #e5e5e5;
}

.mobile-menu__logo img {
  height: 40px;
}

.mobile-menu__close {
  background: none;
  border: none;
  font-size: 32px;
  color: #37452c;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.mobile-menu__close:hover {
  transform: rotate(90deg);
}

.mobile-menu__nav {
  padding: 20px 0;
}

.mobile-menu__link {
  display: block;
  padding: 16px 24px;
  font-family: "Golos UI", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #37452c;
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-menu__link:hover {
  background-color: #f5f5f5;
  border-left-color: #37452c;
  padding-left: 28px;
}

.mobile-menu__link:active {
  background-color: #e5e5e5;
}

.hero {
  position: relative;
  height: 728px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url("/img/wine/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 1;
}
.hero__logo-text h1 {
  font-family: "Wremena", sans-serif;
  color: #fff;
  font-size: 64px;
  line-height: 0.8;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}
.hero__logo-text p {
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(55, 69, 44, 0.2);
  z-index: 1;
}
.hero__logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero__partners {
  display: flex;
  position: absolute;
  bottom: 20px;
  gap: 120px;
  z-index: 2;
}
.about__container {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: start;
}
.about__slider {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
  border-radius: 20px;
}
.about__slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.about__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 1.5s ease-in-out;
  transform: translateY(0) scale(0.95);
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
}
.about__slide--active {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 4;
}
.about__slide--next {
  transform: translateY(0) scale(0.95);
  opacity: 0;
  z-index: 3;
}
.about__slide--after-next {
  transform: translateY(0) scale(0.9);
  opacity: 0;
  z-index: 2;
}
.about__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about {
  background-color: #fff;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  padding-top: 80px;
  padding-bottom: 40px;
}
.about__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about__text img {
  width: 60px;
  height: auto;
}
.about p {
  font-size: 20px;
  line-height: 1.6;
  margin: 0;
}
.about h2 {
  font-family: "Wremena", sans-serif;
  font-size: 32px;
  line-height: 0.9;
  margin: 0;
}
.partners {
  background-color: #37452c;
  padding: 100px 0;
  color: #fff;
}
.partners__organizators {
  text-align: center;
  margin-bottom: 120px;
}
.partners__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.partners__soorganizators {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.partners__media {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.partners__title {
  font-family: "Wremena", serif;
  font-size: 32px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 60px 0;
  position: relative;
  display: inline-block;
  padding: 0 40px;
}
.partners__title::before,
.partners__title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background-color: #fff;
}
.partners__title::before {
  right: 100%;
  margin-right: 20px;
}
.partners__title::after {
  left: 100%;
  margin-left: 20px;
}
.partners__logos {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  justify-content: center;
}
.partners__soorganizators .partners__logos {
  flex-direction: row;
  gap: 80px;
  align-items: center;
  justify-content: center;
}
.partners__media .partners__logos {
  justify-content: center;
}
.partners__img {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
.partners__img img {
  max-width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}
.restaurants {
  padding: 40px 0;
  background-color: #fff;
  border-radius: 40px;
}
.restaurants__header {
  font-family: "Wremena", serif;
  font-size: 32px;
  font-weight: 400;
  color: #37452c;
  margin-bottom: 80px;
  text-align: left;
  line-height: 0.3;
}
.restaurants__header-number {
  font-size: 64px;
  font-weight: 700;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.restaurants__lent {
  overflow: hidden;
  width: 100vw;
  position: relative;
  padding-top: 10px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
.restaurants__lent--right {
  display: flex;
  gap: 20px;
  width: 200%;
  animation: scroll-restaurants-right 30s linear infinite;
}
.restaurants__lent--left {
  display: flex;
  gap: 20px;
  width: 200%;
  animation: scroll-restaurants-left 30s linear infinite;
  margin-top: 20px;
}
.restaurants__lent--item {
  width: 360px;
  height: 240px;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  background-color: #fcf9f6;
  border: 1px solid #e2d3c3;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.restaurants__lent--item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.restaurants__lent--item a {
  display: block;
  width: 100%;
  height: 100%;
}
.restaurants__lent--item a:focus-visible {
  outline: 3px solid #37452c;
  outline-offset: 2px;
}
.restaurants__lent--item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.restaurants__lent--item:hover img {
  transform: scale(1.1);
}
@keyframes scroll-restaurants-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scroll-restaurants-left {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.restaurants__cities {
  text-align: left;
}
.restaurants__cities-title {
  font-family: "Wremena", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}
.restaurants__cities-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 40px;
}
.restaurants__cities-list li {
  font-family: "Wremena", serif;
  font-size: 32px;
  font-weight: 700;
  color: #37452c;
}
.restaurants__cities-list a {
  text-decoration: none;
  color: #37452c;
  transition: color 0.3s ease, opacity 0.2s ease;
  display: inline-block;
}
.restaurants__cities-list a:hover {
  color: #5c6f49;
  opacity: 0.8;
}
.restaurants__cities-list a:focus-visible {
  outline: 2px solid #37452c;
  outline-offset: 4px;
  border-radius: 4px;
}
.map {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #37452c;
}
.map__title {
  font-family: "Wremena", serif;
  font-size: 48px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 40px 0;
  text-align: center;
}
.yandex-map {
  height: 500px;
  background-color: #f5f5f5;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
footer {
  background-color: #1e1e1e;
  border-radius: 40px 40px 0 0;
  min-height: 100px;
  color: #fff;
  display: flex;
  align-items: center;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__left .copy {
  margin: 0;
  font-size: 14px;
}

.footer__right {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer__right a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

.footer__right a:hover {
  opacity: 0.7;
}

.footer__right a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
  border-radius: 2px;
}

/* ============================================
   RESPONSIVE MEDIA QUERIES
   ============================================ */

/* Большие десктопы и ноутбуки (до 1440px) */
@media screen and (max-width: 1440px) {
  .container {
    max-width: 1200px;
    padding: 0 20px;
  }
}

/* Средние десктопы (до 1200px) */
@media screen and (max-width: 1200px) {
  .container {
    max-width: 960px;
    padding: 0 20px;
  }

  .about__container {
    grid-template-columns: 380px 1fr;
    gap: 60px;
  }

  .about__slider {
    height: 506px;
  }

  .hero__logo-text h1 {
    font-size: 56px;
  }

  .partners__bottom {
    gap: 60px;
  }
}

/* Планшеты горизонтально (до 992px) */
@media screen and (max-width: 992px) {
  .container {
    max-width: 720px;
    padding: 0 20px;
  }

  /* Header */
  .header__nav {
    height: 80px;
  }

  .header__container {
    height: 80px;
  }

  .header__menu {
    gap: 15px;
  }

  .header__menu a {
    font-size: 14px;
  }

  .header__map a {
    font-size: 14px;
    padding: 8px 16px;
  }

  .header__logo img {
    width: 60px;
  }

  /* Hero */
  .hero {
    height: 600px;
  }

  .hero__logo {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .hero__logo-img img {
    max-width: 120px;
  }

  .hero__logo-text h1 {
    font-size: 48px;
    line-height: 1;
  }

  .hero__logo-text p {
    font-size: 18px;
    justify-content: center;
  }

  .hero__partners {
    gap: 60px;
  }

  /* About */
  .about__container {
    grid-template-columns: 360px 1fr;
    gap: 60px;
  }

  .about__slider {
    height: 480px;
  }

  .about h2 {
    font-size: 28px;
  }

  .about p {
    font-size: 18px;
  }

  /* Partners */
  .partners {
    padding: 80px 0;
  }

  .partners__organizators {
    margin-bottom: 80px;
  }

  .partners__title {
    font-size: 28px;
    padding: 0 30px;
  }

  .partners__title::before,
  .partners__title::after {
    width: 40px;
  }

  .partners__logos {
    gap: 60px;
  }

  /* Restaurants */
  .restaurants__header {
    font-size: 28px;
    margin-bottom: 60px;
  }

  .restaurants__header-number {
    font-size: 56px;
  }

  .restaurants__cities-list li {
    font-size: 40px;
  }

  .restaurants__lent--item {
    width: 320px;
    min-height: 213px;
  }
}

/* Планшеты вертикально (до 768px) */
@media screen and (max-width: 768px) {
  .container {
    max-width: 540px;
    padding: 0 20px;
  }

  /* Header - переход на бургер-меню */
  .header__nav {
    height: 60px;
  }

  .header__container {
    height: 60px;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 0 15px;
  }

  .header__menu,
  .header__map {
    display: none !important;
  }

  .header__logo {
    position: static;
    transform: none;
    order: 1;
    margin: 0;
  }

  .header__logo img {
    max-width: 50px;
    height: 44px;
  }

  .burger-menu {
    display: flex;
    order: 3;
  }

  /* Hero */
  .hero {
    height: 500px;
    background-attachment: scroll;
  }

  .hero__logo {
    flex-direction: column;
    text-align: center;
  }

  .hero__logo-img img {
    max-width: 100px;
  }

  .hero__logo-text h1 {
    font-size: 36px;
  }

  .hero__logo-text h1 br {
    display: none;
  }

  .hero__logo-text p {
    font-size: 16px;
    justify-content: center;
  }

  .hero__partners {
    position: static;
    flex-direction: column;
    gap: 20px;
    transform: none;
    margin-top: 20px;
  }

  .hero__partners-img img {
    max-width: 150px;
  }

  /* About */
  .about {
    padding-top: 60px;
    padding-bottom: 30px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  .about__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__slider {
    height: 400px;
    overflow: hidden;
  }

  .about__text {
    padding: 0;
  }

  .about__text img {
    width: 50px;
  }

  .about h2 {
    font-size: 24px;
  }

  .about h2 br {
    display: none;
  }

  .about p {
    font-size: 16px;
  }

  /* Partners */
  .partners {
    padding: 60px 0;
  }

  .partners__organizators {
    margin-bottom: 60px;
    text-align: center;
  }

  .partners__title {
    font-size: 24px;
    padding: 0 20px;
  }

  .partners__title::before,
  .partners__title::after {
    width: 30px;
    margin: 0 10px;
  }

  .partners__bottom {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .partners__soorganizators,
  .partners__media {
    align-items: center;
  }

  .partners__logos {
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .partners__img img {
    max-width: 200px;
  }

  .partners__organizators .partners__img img {
    max-width: 240px;
  }

  /* Restaurants */
  .restaurants {
    padding: 30px 0;
    border-radius: 30px;
  }

  .restaurants__header {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .restaurants__header-number {
    font-size: 48px;
  }

  .restaurants__lent {
    margin-bottom: 40px;
  }

  .restaurants__lent--item {
    width: 280px;
    min-height: 187px;
  }

  .restaurants__cities-title {
    font-size: 20px;
  }

  .restaurants__cities-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
  }

  .restaurants__cities-list li {
    font-size: 32px;
  }

  /* Map */
  .map {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .map__title {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .yandex-map {
    height: 400px;
    border-radius: 30px;
  }

  /* Footer */
  footer {
    min-height: 80px;
    border-radius: 30px 30px 0 0;
  }

  .footer__content {
    gap: 15px;
    padding: 15px 0;
  }

  .footer__right {
    gap: 20px;
    flex-wrap: wrap;
  }

  .footer__right a {
    font-size: 13px;
  }

  .footer__left .copy {
    font-size: 13px;
  }
}

/* Мобильные устройства (до 576px) */
@media screen and (max-width: 576px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }

  /* Header */
  .header__nav {
    height: 60px;
  }

  .header__container {
    height: 60px;
    padding: 0 10px;
  }

  .header__logo img {
    max-width: 45px;
    height: 44px;
  }

  /* Мобильное меню на маленьких экранах */
  .mobile-menu__content {
    width: 100%;
    right: -100%;
  }

  .mobile-menu__header {
    padding: 15px;
  }

  .mobile-menu__logo img {
    height: 35px;
  }

  .mobile-menu__link {
    font-size: 16px;
    padding: 14px 20px;
  }

  /* Hero */
  .hero {
    height: 450px;
    background-attachment: scroll;
    padding: 20px 15px;
  }

  .hero__logo {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    margin-bottom: 0;
  }

  .hero__logo-img img {
    max-width: 80px;
  }

  .hero__logo-text h1 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .hero__logo-text p {
    font-size: 14px;
    justify-content: center;
  }

  .hero__logo-text p img {
    max-width: 20px;
  }

  .hero__partners {
    position: static;
    flex-direction: row;
    gap: 20px;
    margin-top: 25px;
    transform: none;
  }

  .hero__partners-img img {
    max-width: 100px;
  }

  /* About */
  .about {
    padding-top: 40px;
    padding-bottom: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  .about__slider {
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
  }

  .about__slide {
    border-radius: 15px;
  }

  .about__text img {
    width: 45px;
  }

  .about h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .about p {
    font-size: 14px;
    margin-bottom: 12px;
  }

  /* Partners */
  .partners {
    padding: 40px 0;
  }

  .partners__organizators {
    margin-bottom: 40px;
    text-align: center;
  }

  .partners__title {
    font-size: 20px;
    padding: 0 15px;
    margin-bottom: 40px;
  }

  .partners__title::before,
  .partners__title::after {
    width: 20px;
    margin: 0 8px;
  }

  .partners__bottom {
    gap: 40px;
    text-align: center;
  }

  .partners__soorganizators,
  .partners__media {
    align-items: center;
  }

  .partners__logos {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .partners__soorganizators .partners__logos {
    flex-direction: column;
    align-items: center;
  }

  .partners__img img {
    max-width: 160px;
  }

  .partners__organizators .partners__img img {
    max-width: 280px;
  }

  /* Restaurants */
  .restaurants {
    padding: 20px 0;
    border-radius: 20px;
  }

  .restaurants__header {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 0.5;
  }

  .restaurants__header-number {
    font-size: 40px;
  }

  .restaurants__lent {
    margin-bottom: 30px;
  }

  .restaurants__lent--right,
  .restaurants__lent--left {
    animation-duration: 40s;
  }

  .restaurants__lent--item {
    width: 240px;
    min-height: 160px;
    border-radius: 15px;
  }

  .restaurants__cities-title {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .restaurants__cities-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .restaurants__cities-list li {
    font-size: 24px;
  }

  /* Map */
  .map {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .map__title {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .yandex-map {
    height: 300px;
    border-radius: 20px;
  }

  /* Footer */
  footer {
    min-height: auto;
    border-radius: 20px 20px 0 0;
    padding: 15px 0;
  }

  .footer__content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 15px 0;
  }

  .footer__left {
    width: 100%;
  }

  .footer__right {
    flex-direction: row;
    gap: 15px;
    justify-content: center;
    width: 100%;
  }

  .footer__right a {
    font-size: 12px;
    white-space: nowrap;
  }

  .footer__left .copy {
    font-size: 11px;
    line-height: 1.4;
  }
}

/* Очень маленькие устройства (до 375px) */
@media screen and (max-width: 375px) {
  .hero__logo-text h1 {
    font-size: 24px;
  }

  .about h2 {
    font-size: 18px;
  }

  .about p {
    font-size: 13px;
  }

  .partners__title {
    font-size: 18px;
  }

  .restaurants__lent--item {
    width: 200px;
    min-height: 133px;
  }

  .restaurants__cities-list li {
    font-size: 20px;
  }
}

/* Landscape orientation для мобильных устройств */
@media screen and (max-width: 768px) and (orientation: landscape) {
  .hero {
    height: 300px;
  }

  .hero__logo {
    flex-direction: row;
    gap: 20px;
  }

  .hero__logo-text {
    text-align: left;
  }

  .hero__partners {
    flex-direction: row;
    gap: 30px;
  }
}

/* Уменьшение анимаций для пользователей с предпочтением reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .restaurants__lent--right,
  .restaurants__lent--left {
    animation: none;
  }

  .about__slide {
    transition: none;
  }
}

/* Поддержка высоких разрешений для изображений */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* Здесь можно добавить @2x изображения в будущем */
}

/* Print стили */
@media print {
  header,
  .hero__partners,
  .restaurants__lent,
  footer {
    display: none;
  }

  body {
    background-color: white;
    color: black;
  }

  .about,
  .partners,
  .restaurants {
    background-color: white;
    border-radius: 0;
  }
}
