/* ============================================
   ElGusto — стили лендинга
   Палитра: тёмное дерево + закат + снег
   ============================================ */

/* ===== CSS-переменные ===== */
:root {
  /* Дерево */
  --color-wood-900: #1a0e08;
  --color-wood-800: #2a1810;
  --color-wood-700: #3d2817;
  --color-wood-600: #5a3a25;
  --color-wood-500: #7a5235;

  /* Закат / акцент */
  --color-sunset-400: #f0b96b;
  --color-sunset-500: #e8a85c;
  --color-sunset-600: #d4843a;
  --color-sunset-700: #b36a25;

  /* Светлые / снег */
  --color-cream-50: #faf6ee;
  --color-cream-100: #f5f1ea;
  --color-cream-200: #e8e0d0;

  /* Сезонные */
  --color-summer-500: #3a5a40;
  --color-summer-600: #2d4733;
  --color-winter-300: #c5d4dc;
  --color-winter-400: #a8c5d6;
  --color-winter-500: #7a9aab;

  /* Текст */
  --color-text-dark: #1a0e08;
  --color-text-light: #f5f1ea;
  --color-text-muted: rgba(245, 241, 234, 0.7);
  --color-text-muted-dark: rgba(42, 24, 16, 0.65);

  /* Тени */
  --shadow-sm: 0 2px 8px rgba(26, 14, 8, 0.08);
  --shadow-md: 0 8px 24px rgba(26, 14, 8, 0.15);
  --shadow-lg: 0 20px 60px rgba(26, 14, 8, 0.25);

  /* Радиусы */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* Контейнер */
  --container-width: 1240px;
  --container-padding: 1.5rem;

  /* Шрифты */
  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Переходы */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset и база ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-dark);
  background: var(--color-cream-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===== Утилиты ===== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: 6rem 0;
}

.section__eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-sunset-600);
  margin-bottom: 1rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--color-wood-800);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.section__lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text-muted-dark);
  max-width: 640px;
}

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.section__head .section__lead {
  margin: 0 auto;
}

/* ===== Кнопки ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn--primary {
  background: var(--color-sunset-500);
  color: var(--color-wood-900);
  border-color: var(--color-sunset-500);
}

.btn--primary:hover {
  background: var(--color-sunset-400);
  border-color: var(--color-sunset-400);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(232, 168, 92, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--color-cream-100);
  border-color: rgba(245, 241, 234, 0.4);
}

.btn--ghost:hover {
  background: rgba(245, 241, 234, 0.1);
  border-color: var(--color-cream-100);
}

.btn--lg {
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
}

/* ===== Шапка ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: transparent;
  transition: all var(--transition);
}

.header.is-scrolled {
  background: rgba(26, 14, 8, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.6rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  position: relative;
}

.nav__list {
  display: flex;
  gap: 2.2rem;
  justify-content: center;
}

.nav--centered {
  flex: 1;
}

.nav__link {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-cream-100);
  position: relative;
  padding: 0.4rem 0;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--color-sunset-500);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--color-sunset-400);
}

.nav__link:hover::after {
  width: 100%;
}

/* Бургер */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 110;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-cream-100);
  transition: all var(--transition);
  border-radius: 1px;
}

.burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.is-active span:nth-child(2) {
  opacity: 0;
}
.burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--color-cream-100);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 14, 8, 0.55) 0%,
    rgba(26, 14, 8, 0.4) 50%,
    rgba(26, 14, 8, 0.85) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 8rem 0 4rem;
}

.hero__eyebrow {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-sunset-400);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.2s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 9rem);
  font-weight: 500;
  line-height: 1;
  color: var(--color-cream-100);
  margin-bottom: 1.5rem;
  font-style: italic;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fadeUp 1s 0.4s forwards;
}

.hero__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: var(--color-sunset-500);
  margin: 1.5rem auto 0;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  color: var(--color-text-muted);
  opacity: 0;
  animation: fadeUp 1s 0.6s forwards;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 0.8s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 46px;
  border: 2px solid var(--color-sunset-400);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  opacity: 0;
  animation: fadeUp 1s 1.2s forwards;
}

.hero__scroll span {
  display: block;
  width: 3px;
  height: 8px;
  background: var(--color-sunset-400);
  border-radius: 2px;
  animation: scroll-bounce 1.8s infinite;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scroll-bounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(14px);
    opacity: 0;
  }
}

/* ===== О нас ===== */
.about {
  background: var(--color-cream-50);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__text {
  max-width: 540px;
}

.about__lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--color-wood-800);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.about__body {
  color: var(--color-text-muted-dark);
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about__feature {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.about__feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}

.about__feature h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-wood-800);
  margin-bottom: 0.3rem;
}

.about__feature p {
  font-size: 0.95rem;
  color: var(--color-text-muted-dark);
  line-height: 1.5;
}

.about__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 540px;
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-slow);
}

.about__img:hover {
  transform: scale(1.03);
}

.about__img--1 {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  height: 100%;
}

.about__img--2 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.about__img--3 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

/* ===== Номера ===== */
.rooms {
  background: var(--color-cream-100);
}

.rooms__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.room-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-wood-800);
  aspect-ratio: 4 / 5;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.room-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.room-card:hover .room-card__img {
  transform: scale(1.05);
}

.room-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 14, 8, 0.9) 100%);
  color: var(--color-cream-100);
}

.room-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.room-card__body p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* ===== Услуги ===== */
.services {
  background: var(--color-wood-800);
  color: var(--color-cream-100);
}

.services .section__title {
  color: var(--color-cream-100);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  padding: 2.5rem 2rem;
  background: rgba(245, 241, 234, 0.05);
  border: 1px solid rgba(245, 241, 234, 0.1);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  text-align: center;
}

.service-card:hover {
  background: rgba(232, 168, 92, 0.08);
  border-color: var(--color-sunset-500);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-sunset-500);
  color: var(--color-wood-900);
  border-radius: 50%;
}

.service-card__icon svg {
  width: 32px;
  height: 32px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-cream-100);
}

.service-card p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-card__link {
  color: var(--color-sunset-400);
  font-weight: 500;
  font-size: 0.95rem;
}

.service-card__link:hover {
  color: var(--color-sunset-500);
}

/* ===== Сезоны (Лето / Зима) ===== */
.season {
  position: relative;
}

.season--summer {
  background: linear-gradient(180deg, var(--color-cream-50) 0%, #e8efd5 100%);
  color: var(--color-wood-800);
}

.season--winter {
  background: linear-gradient(180deg, var(--color-cream-50) 0%, #d8e4ed 100%);
  color: var(--color-wood-800);
}

.season__hero {
  position: relative;
  height: 80vh;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.season__hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.season__hero-img,
.season__hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.season__hero-video {
  z-index: 1;
}

.season__hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 14, 8, 0.3) 0%,
    rgba(26, 14, 8, 0.5) 50%,
    rgba(26, 14, 8, 0.8) 100%
  );
  z-index: 2;
}

.season__hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--color-cream-100);
  padding: 4rem 0;
}

.season__eyebrow {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-sunset-400);
  margin-bottom: 1.5rem;
}

.season__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 500;
  line-height: 1;
  color: var(--color-cream-100);
  font-style: italic;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.season__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: var(--color-sunset-500);
  margin: 1.5rem auto 0;
}

.season__lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
  color: var(--color-text-muted);
}

.season__content {
  padding: 5rem 0;
}

.season__text {
  max-width: 760px;
  margin: 0 auto 4rem;
  text-align: center;
}

.season__text p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-wood-700);
}

/* Галерея */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 4rem;
}

.gallery__item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 1 / 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__item::after {
  content: "🔍";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: rgba(26, 14, 8, 0.4);
  color: var(--color-cream-100);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery__item:hover::after {
  opacity: 1;
}

/* Видео-блоки */
.videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.video-block video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-md);
  background: var(--color-wood-800);
  box-shadow: var(--shadow-md);
}

.video-block__caption {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  color: var(--color-text-muted-dark);
  font-style: italic;
  text-align: center;
}

/* Банный блок */
.bath-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  background: var(--color-wood-800);
  border-radius: var(--radius-lg);
  color: var(--color-cream-100);
  box-shadow: var(--shadow-lg);
}

.bath-block__img {
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.bath-block__text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--color-cream-100);
  margin-bottom: 1.2rem;
  font-style: italic;
}

.bath-block__text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

/* ===== Контакты ===== */
.contacts {
  background: var(--color-wood-800);
  color: var(--color-cream-100);
}

.contacts .section__title {
  color: var(--color-cream-100);
}

.contacts__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contacts__text .section__lead {
  color: var(--color-text-muted);
}

.contacts__list {
  margin: 2.5rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contacts__item {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  padding: 1.2rem 1.5rem;
  background: rgba(245, 241, 234, 0.05);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-sunset-500);
}

.contacts__icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.contacts__label {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.2rem;
}

.contacts__value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-cream-100);
}

a.contacts__value:hover {
  color: var(--color-sunset-400);
}

.contacts__map {
  position: sticky;
  top: 100px;
}

.contacts__map-card {
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--color-wood-700) 0%, var(--color-wood-600) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 241, 234, 0.1);
}

.contacts__map-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-sunset-400);
  margin-bottom: 0.8rem;
}

.contacts__map-body {
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

.contacts__map-eyebrow--spaced {
  margin-top: 1.5rem;
}

.contacts__route-media {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-top: 1.5rem;
}

.contacts__route-item {
  margin: 0;
}

.contacts__route-link {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(245, 241, 234, 0.1);
  transition: border-color var(--transition), transform var(--transition);
}

.contacts__route-link:hover {
  border-color: var(--color-sunset-500);
  transform: translateY(-2px);
}

.contacts__route-map {
  width: 100%;
  display: block;
  cursor: zoom-in;
}

.contacts__route-video {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 67 / 120;
  object-fit: cover;
  border-radius: var(--radius-md);
  background: var(--color-wood-900);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(245, 241, 234, 0.1);
}

.contacts__route-caption {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-style: italic;
  line-height: 1.5;
}

/* ===== Подвал ===== */
.footer {
  background: var(--color-wood-900);
  color: var(--color-text-muted);
  padding: 3rem 0;
  border-top: 1px solid rgba(245, 241, 234, 0.05);
}

.footer__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-cream-100);
}

.footer__logo-accent {
  color: var(--color-sunset-500);
  font-style: italic;
}

.footer__tagline {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.footer__copy {
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  padding: 2rem;
}

.lightbox.is-active {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-cream-100);
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: var(--color-sunset-500);
  color: var(--color-wood-900);
  border-color: var(--color-sunset-500);
  transform: scale(1.1);
}

.lightbox__close {
  top: 2rem;
  right: 2rem;
  font-size: 1.8rem;
}

.lightbox__nav--prev {
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
}

.lightbox__nav--next {
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
}

.lightbox__nav--prev:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox__nav--next:hover {
  transform: translateY(-50%) scale(1.1);
}

/* ===== Почему отдых в горах ===== */
.benefits {
  background: var(--color-cream-100);
}

.benefits__layout {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.benefits__intro {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0 1rem;
}

.benefits__lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-wood-800);
  margin: 0;
}

.benefit {
  background: var(--color-cream-50);
  border-left: 3px solid var(--color-sunset-500);
  border-radius: var(--radius-md);
  padding: 2.25rem 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.benefit:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.benefit--highlight {
  background: linear-gradient(
    135deg,
    var(--color-wood-800) 0%,
    var(--color-wood-700) 100%
  );
  color: var(--color-cream-100);
  border-left: 3px solid var(--color-sunset-500);
}

.benefit--highlight .benefit__title {
  color: var(--color-sunset-400);
}

.benefit--highlight .benefit__text {
  color: var(--color-text-muted);
}

.benefit__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  font-weight: 600;
  color: var(--color-wood-800);
  margin-bottom: 1.25rem;
  letter-spacing: -0.005em;
  line-height: 1.25;
}

.benefit__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-muted-dark);
  margin-bottom: 1rem;
}

.benefit__text:last-child {
  margin-bottom: 0;
}

.benefit__list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.benefit__list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-muted-dark);
}

.benefit__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-sunset-500);
  box-shadow: 0 0 0 3px rgba(232, 168, 92, 0.18);
}

.benefits__conclusion {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-cream-100);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 241, 234, 0.12);
}

.benefits__conclusion strong {
  font-weight: 500;
  color: var(--color-sunset-400);
}

.benefits__cta {
  margin-top: 2rem;
  text-align: center;
}

/* ===== Адаптив ===== */
@media (max-width: 1024px) {
  .section {
    padding: 4.5rem 0;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about__gallery {
    height: 420px;
  }

  .contacts__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contacts__map {
    position: static;
  }

  .contacts__route-video {
    max-width: 100%;
  }

  .contacts__route-media {
    grid-template-columns: 1fr;
  }

  .bath-block {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .benefit {
    padding: 1.75rem 2rem;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 280px;
    background: var(--color-wood-800);
    transform: translateX(100%);
    transition: transform var(--transition);
    padding: 6rem 2rem 2rem;
    z-index: 105;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    gap: 1.8rem;
  }

  .nav__link {
    font-size: 1.1rem;
  }

  .burger {
    display: flex;
  }

  .hero__title {
    font-size: 4rem;
  }

  .hero__content {
    padding: 7rem 0 3rem;
  }

  .about__gallery {
    height: 320px;
    grid-template-columns: 1fr 1fr;
  }

  .about__img--1 {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }

  .about__img--2 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }

  .about__img--3 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }

  .season__hero {
    height: 70vh;
    min-height: 460px;
  }

  .lightbox__close {
    top: 1rem;
    right: 1rem;
  }

  .lightbox__nav--prev {
    left: 0.5rem;
  }

  .lightbox__nav--next {
    right: 0.5rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 3.5rem 0;
  }

  .section__head {
    margin-bottom: 2.5rem;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .btn {
    width: 100%;
  }

  .season__content {
    padding: 3.5rem 0;
  }

  .bath-block {
    padding: 1.5rem;
  }

  .benefit {
    padding: 1.5rem 1.25rem;
    border-left-width: 2px;
  }

  .benefits__lead {
    font-size: 1.05rem;
  }
}
