/* ===========================================================================
   Index Hotel & Resorts — компоненты (поверх styles.css)
   Меню-dropdown, языки, плавающие кнопки, модалка, cookie, прелоадер,
   внутренние страницы, лайтбокс, FAQ, меню ресторана и пр.
   =========================================================================== */

/* ---------- Прелоадер ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--bg-deep);
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader__mark {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.12);
    opacity: 0.7;
  }
}

/* ---------- Навигация: выпадающие ---------- */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__item {
  position: relative;
}

.nav__top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 8px;
  transition: color 0.2s;
  white-space: nowrap;
}

.header:not(.is-scrolled) .nav__top {
  color: rgba(255, 255, 255, 0.92);
}

.nav__item:hover .nav__top {
  color: var(--gold-deep);
}

.header:not(.is-scrolled) .nav__item:hover .nav__top {
  color: #fff;
}

.nav__caret {
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentcolor;
  border-bottom: 1.5px solid currentcolor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s;
  opacity: 0.7;
}

.nav__item--has:hover .nav__caret {
  transform: rotate(-135deg) translateY(-1px);
}

.nav__sub {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 10px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 20;
}

.nav__item--has:hover .nav__sub {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.nav__sub a {
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  transition:
    background 0.2s,
    color 0.2s;
}

.nav__sub a:hover {
  background: var(--bg-alt);
  color: var(--gold-deep);
}

.nav__mobileExtra {
  display: none;
}

/* ---------- Переключатель языка ---------- */
.langswitch {
  display: inline-flex;
  flex: none;
  border: 1px solid var(--line);
  border-radius: 100px;
  overflow: hidden;
  background: none;
  padding: 0;
}

.langswitch a {
  padding: 6px 11px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

html[lang="ru"] .langswitch .lang-ru,
html[lang="en"] .langswitch .lang-en {
  background: var(--ink);
  color: #fff;
}

.header:not(.is-scrolled) .langswitch {
  border-color: rgba(255, 255, 255, 0.4);
}

.header:not(.is-scrolled) .langswitch a {
  color: rgba(255, 255, 255, 0.8);
}

html[lang="ru"] .header:not(.is-scrolled) .langswitch .lang-ru,
html[lang="en"] .header:not(.is-scrolled) .langswitch .lang-en {
  background: #fff;
  color: var(--ink);
}

/* ---------- Плавающие мессенджеры ---------- */
.floats {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floats__btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.floats__btn:hover {
  transform: scale(1.08);
}

.floats__btn--tg {
  background: #2aabee;
}

.floats__btn--wa {
  background: #25d366;
}

.floats__btn--tel {
  background: var(--gold);
  font-size: 1.3rem;
}

/* ---------- Кнопка наверх ---------- */
.totop {
  position: fixed;
  right: 18px;
  bottom: 84px;
  z-index: 79;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--ink);
  color: #fff;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

.totop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

/* ---------- Модалка ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.is-open {
  display: flex;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 15, 13, 0.6);
  backdrop-filter: blur(4px);
  animation: fade 0.3s ease;
}

.modal__box {
  position: relative;
  z-index: 2;
  width: min(520px, 100%);
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  animation: pop 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

@keyframes fade {
  from {
    opacity: 0;
  }
}

@keyframes pop {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--muted);
}

.modal__close:hover {
  color: var(--ink);
}

.modal__title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 8px;
}

.modal__sub {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0 0 20px;
}

/* ---------- Cookie ---------- */
.cookie[hidden] {
  display: none;
}

.cookie {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  z-index: 95;
  max-width: 640px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.cookie a {
  color: var(--gold-deep);
  text-decoration: underline;
}

/* ---------- Размещение: список + большое фото (как у Mriya) ---------- */
.accomm {
  padding: clamp(70px, 9vw, 120px) 0;
  border-top: 1px solid var(--line);
}

.accomm__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.accomm__list {
  margin-top: 34px;
}

.accomm__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  transition: var(--transition);
}

.accomm__item:last-child {
  border-bottom: 1px solid var(--line);
}

.accomm__name {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 500;
  transition:
    color 0.2s,
    padding 0.3s;
}

.accomm__more {
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition);
  color: var(--gold-deep);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

.accomm__item:hover .accomm__name,
.accomm__item.is-active .accomm__name {
  color: var(--gold-deep);
  padding-left: 8px;
}

.accomm__item:hover .accomm__more,
.accomm__item.is-active .accomm__more {
  opacity: 1;
  transform: none;
}

.accomm__media {
  height: 540px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.accomm__media .ph {
  height: 100%;
  transition: opacity 0.35s ease;
}

@media (max-width: 1024px) {
  .accomm__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .accomm__media {
    height: 320px;
    order: -1;
  }
}

/* ---------- 2-колоночный сплит секций (заголовок слева / контент справа) ---------- */
.split {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 56px;
  align-items: start;
}

.split__head {
  position: sticky;
  top: 110px;
}

.split__text {
  color: var(--ink-soft);
  margin: 0 0 22px;
  max-width: 320px;
}

.split__body .acts__grid,
.split__body .events__grid,
.split__body .cards {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 1024px) {
  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .split__head {
    position: static;
  }
}

@media (max-width: 760px) {
  .split__body .acts__grid,
  .split__body .events__grid,
  .split__body .cards {
    grid-template-columns: 1fr;
  }
}

/* ---------- «Найдите занятие по душе» — плитки активностей ---------- */
.acts {
  padding: clamp(70px, 9vw, 120px) 0;
  border-top: 1px solid var(--line);
}

.acts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.act {
  position: relative;
  height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
}

.act__img {
  position: absolute;
  inset: 0;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.act__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 10, 7, 0.72), rgba(12, 10, 7, 0) 62%);
}

.act__label {
  position: relative;
  z-index: 2;
  padding: 24px;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 500;
}

.act:hover .act__img {
  transform: scale(1.07);
}

/* ---------- «Афиша мероприятий» — карточки событий ---------- */
.events {
  padding: clamp(70px, 9vw, 120px) 0;
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
}

.events__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.event {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.event:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.event__img {
  position: relative;
  height: 200px;
}

.event__date {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #fff;
  border-radius: 10px;
  padding: 9px 13px;
  text-align: center;
  line-height: 1.05;
  box-shadow: var(--shadow-sm);
}

.event__date b {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
}

.event__date span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.event__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.event__title {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0 0 14px;
}

.event__meta {
  display: flex;
  gap: 28px;
  margin-top: auto;
}

.event__meta span {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 2px;
}

.event__meta b {
  font-weight: 600;
  font-size: 0.92rem;
}

/* ---------- «Ваша дорога к мечте» — баннер ---------- */
.dream {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.dream__img {
  position: absolute;
  inset: 0;
  height: 100%;
}

.dream__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(18, 14, 10, 0.45), rgba(18, 14, 10, 0.6));
}

.dream__in {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding: 40px 24px;
}

.dream__in .h2 {
  color: #fff;
}

@media (max-width: 1024px) {
  .acts__grid,
  .events__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .acts__grid,
  .events__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Внутренние страницы: hero + крошки ---------- */
.phero {
  position: relative;
  padding: 160px 0 70px;
  color: #fff;
  overflow: hidden;
}

.phero__bg {
  position: absolute;
  inset: 0;
  background: #2a2722 center/cover no-repeat;
}

.phero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(16, 15, 12, 0.55), rgba(16, 15, 12, 0.7));
}

.phero__content {
  position: relative;
  z-index: 2;
}

.phero__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.14;
  letter-spacing: 0;
  margin: 6px 0 0;
}

.phero__sub {
  margin: 16px 0 0;
  max-width: 640px;
  font-weight: 300;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

.crumbs a:hover {
  color: #fff;
}

.crumbs span {
  opacity: 0.5;
}

/* секция-обёртка для внутренних страниц */
.section {
  padding: clamp(60px, 8vw, 100px) 0;
}

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

.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 760px;
}

/* ---------- Фильтры размещения ---------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.filters button {
  padding: 10px 20px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: var(--transition);
}

.filters button.is-active,
.filters button:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* ---------- Страница домика ---------- */
.roompage {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: start;
}

.roomgal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.roomgal .ph:first-child {
  grid-column: 1 / -1;
  height: 380px;
}

.roomgal .ph {
  height: 180px;
  border-radius: var(--radius);
  cursor: pointer;
}

.roominfo h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  margin: 36px 0 14px;
}

.amenities {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
}

.amenities li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-soft);
}

.amenities li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* бронь-сайдбар */
.bookbox {
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.bookbox__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.bookbox__price b {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
}

.bookbox__price span {
  color: var(--muted);
  font-size: 0.9rem;
}

.bookbox__note {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0 0 20px;
}

.bookbox .booking__field {
  margin-bottom: 12px;
}

.bookbox .btn {
  width: 100%;
  margin-top: 6px;
}

/* ---------- Карточки СПА / акций ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card__img {
  height: 220px;
}

.card__body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card__title {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  margin: 0 0 8px;
}

.card__meta {
  color: var(--gold-deep);
  font-weight: 600;
  font-size: 0.85rem;
  margin: 0 0 10px;
}

.card__desc {
  color: var(--ink-soft);
  font-size: 0.94rem;
  margin: 0 0 18px;
}

.card__foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.card__price {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
}

/* ---------- Меню ресторана ---------- */
.menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 56px;
}

.menu__cat {
  font-family: var(--serif);
  font-size: 1.6rem;
  grid-column: 1 / -1;
  margin: 28px 0 8px;
  color: var(--gold-deep);
}

.menu__item {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.menu__item .dots {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  transform: translateY(-4px);
}

.menu__item .name {
  font-weight: 500;
}

.menu__item .price {
  font-weight: 600;
  white-space: nowrap;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 40px 22px 0;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--ink);
  position: relative;
}

.faq__q::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.3s;
}

.faq__item.is-open .faq__q::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  color: var(--ink-soft);
}

.faq__a p {
  margin: 0 0 22px;
}

/* ---------- Лайтбокс ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(12, 11, 9, 0.92);
  padding: 30px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
}

.lightbox__close {
  top: 24px;
  right: 24px;
}

.lightbox__nav--prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__nav--next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

/* ---------- Галерея-страница ---------- */
.galgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}

.galgrid .ph {
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.galgrid .ph:hover {
  transform: scale(1.02);
}

.galgrid .ph--tall {
  grid-row: span 2;
}

.galgrid .ph--wide {
  grid-column: span 2;
}

/* ---------- О нас ---------- */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.value__ic {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.value h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin: 0 0 8px;
}

.value p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 0.94rem;
}

/* ---------- Подписка ---------- */
.subscribe {
  background: var(--bg-deep);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 34px 40px;
  text-align: center;
}

.subscribe .h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  margin: 0 0 4px;
}

.subscribe .eyebrow {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
}

/* убираем левое декор-тире в центрированном блоке — оно сдвигает текст */
.subscribe .eyebrow::before {
  display: none;
}

.subscribe .cform__check {
  display: inline-block;
  text-align: left;
  margin-bottom: 0;
}

.subscribe form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 16px auto 0;
  justify-content: center;
}

.subscribe input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.subscribe input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Юридические страницы ---------- */
.legal {
  max-width: 820px;
  margin: 0 auto;
}

.legal h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin: 32px 0 12px;
}

.legal p,
.legal li {
  color: var(--ink-soft);
}

/* ---------- Блог ---------- */
.posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.post__img {
  height: 200px;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.post__date {
  color: var(--muted);
  font-size: 0.82rem;
}

.post__title {
  font-family: var(--serif);
  font-size: 1.35rem;
  margin: 6px 0 8px;
}

.post p {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

/* ===========================================================================
   Адаптив для компонентов
   =========================================================================== */
@media (max-width: 1024px) {
  .roompage {
    grid-template-columns: 1fr;
  }

  .bookbox {
    position: static;
  }

  .cards,
  .posts,
  .values {
    grid-template-columns: repeat(2, 1fr);
  }

  .galgrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .nav__sub {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 0 14px;
    min-width: 0;
  }

  .nav__item--has:hover .nav__sub {
    transform: none;
  }

  .nav__caret {
    display: none;
  }

  .nav__top {
    padding: 14px 0;
    display: block;
  }

  .nav__mobileExtra {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

  .nav__mobileExtra .btn {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .menu,
  .cards,
  .posts,
  .values,
  .galgrid,
  .amenities {
    grid-template-columns: 1fr;
  }

  .subscribe {
    padding: 32px 22px;
  }

  .subscribe form {
    flex-direction: column;
  }

  .subscribe input {
    border-radius: 12px;
  }

  .floats__btn {
    width: 48px;
    height: 48px;
  }

  .cookie {
    left: 12px;
    right: 12px;
    transform: none;
    max-width: none;
  }
}

/* ===========================================================================
   Версия для слабовидящих (body.a11y) — высокий контраст + крупный текст
   =========================================================================== */
.floats__btn--a11y {
  background: var(--ink);
  font-size: 1rem;
  font-weight: 700;
}

body.a11y {
  font-size: 19px;
}

body.a11y,
body.a11y .advantages,
body.a11y .contacts,
body.a11y .footer,
body.a11y .spa,
body.a11y .bg-deep,
body.a11y section {
  background: #fff !important;
  color: #000 !important;
}

body.a11y h1,
body.a11y h2,
body.a11y h3,
body.a11y .h2,
body.a11y .hero__title,
body.a11y .phero__title,
body.a11y .stat__num,
body.a11y .eyebrow,
body.a11y .eyebrow--light,
body.a11y .muted,
body.a11y .card__meta,
body.a11y .hero__subtitle,
body.a11y .hero__eyebrow,
body.a11y .phero__sub,
body.a11y .booking__hint,
body.a11y .crumbs,
body.a11y .spa__item,
body.a11y .stat__label,
body.a11y .section-head__sub {
  color: #000 !important;
}

body.a11y a {
  color: #00339c !important;
  text-decoration: underline;
}

body.a11y .btn {
  background: #000 !important;
  color: #fff !important;
  border-color: #000 !important;
}

body.a11y .hero__bg,
body.a11y .phero__bg,
body.a11y .spa__bg {
  display: none !important;
}

body.a11y .hero__overlay,
body.a11y .phero__overlay,
body.a11y .spa__overlay {
  background: #fff !important;
}

body.a11y .hero__chips span,
body.a11y .stat {
  color: #000 !important;
  background: #fff !important;
  border-color: #000 !important;
}

body.a11y .ph {
  filter: grayscale(1) contrast(1.05);
}

body.a11y .reveal {
  opacity: 1 !important;
  transform: none !important;
}

body.a11y .hero__dock {
  background: #fff !important;
  border-top: 1px solid #000;
}

body.a11y .hero__dock .booking__field label,
body.a11y .hero__dock .booking__val {
  color: #000 !important;
}

body.a11y .hero__dock .booking__val {
  background: #fff !important;
  border-color: #000 !important;
}

body.a11y *,
body.a11y *::before,
body.a11y *::after {
  animation: none !important;
}

/* короткий hero для служебных страниц */
.phero--short {
  padding: 132px 0 56px;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
