/* Берег Песочной — landing v2 (Figma 6870:5488) */

:root {
  --bg: #323232;
  --bg-card: #3C3C3B;
  --bg-footer: #252525;
  --accent: #B3CE7D;
  --white: #fff;
  --muted: rgba(255,255,255,.55);
  --container: 1146px;
  --pad: 48px;
  --gap-section: 96px;
  --f-head: 'Kudryashev Headline', serif;
  --f-merit: 'Kudryashev Headline', serif;
  --f-body: 'Cera Pro', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--white);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.cl {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}
@media (max-width: 1023px) { .cl { padding-inline: 24px; } }

.t-white { color: var(--white); }
.t-accent { color: var(--accent); }
.t-merit { font-family: var(--f-merit); font-weight: 400; }
.t-dark { color: var(--bg-card); }

.landing {
  display: flex;
  flex-direction: column;
  gap: var(--gap-section);
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.section__inner { display: flex; flex-direction: column; gap: 48px; }

.h2 {
  font-family: var(--f-head);
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.h2--center { text-align: center; }

/* Кнопки */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 43px;
  border-radius: 54px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  border: 1px solid transparent;
  transition: .2s;
  white-space: nowrap;
}
.btn--fill { background: var(--accent); color: var(--bg-card); }
.btn--fill:hover { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn--outline { border-color: var(--white); color: var(--white); background: transparent; }
.btn--outline:hover { background: var(--accent); border-color: var(--accent); color: var(--bg-card); }
.btn--white { background: var(--white); color: var(--bg-card); }
.btn--dark { background: var(--bg-card); color: var(--accent); }
.btn--wide { width: 100%; }
.btn--sm { padding: 10px 24px; font-size: 14px; border-radius: 32px; }
.btn-arrow { font-size: 1.1em; }

/* Dots / arrows */
.dots { display: flex; gap: 16px; align-items: center; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.5); padding: 0;
}
.dot.is-active { background: var(--accent); transform: scale(1.15); }
.dots--dark .dot { background: rgba(60,60,59,.25); }
.dots--dark .dot.is-active { background: var(--accent); }

.slider-controls {
  display: flex; align-items: center; justify-content: center; gap: 24px;
}
.slider-arrow {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.4); color: var(--white);
  font-size: 28px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
}
.slider-arrow:hover { background: rgba(255,255,255,.1); }

/* ═══ Fixed header (after hero scroll) ═══ */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 200;
  transform: translateY(-100%);
  transition: transform .3s, background .3s;
  pointer-events: none;
}
.site-header.is-scrolled {
  transform: translateY(0);
  background: rgba(50,50,50,.97);
  backdrop-filter: blur(8px);
  pointer-events: auto;
}
.hdr {
  height: 72px;
  display: flex; align-items: center; gap: 24px;
}
.hdr-nav {
  display: flex; gap: 28px; font-size: 15px; font-weight: 500;
  text-transform: capitalize;
}
.hdr-nav a:hover { color: var(--accent); }
.hdr-right { margin-left: auto; display: flex; align-items: center; gap: 20px; }
.hdr-phone { font-size: 15px; }
.burger { display: none; flex-direction: column; gap: 5px; margin-left: auto; }
.burger span { width: 24px; height: 2px; background: var(--white); }

/* ═══ HERO — Figma 6873:1563 (1289px) ═══ */
.hero {
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
}
/* Главное фото + градиент внизу (fill на «дом на главную 1») */
.hero__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 108px;
  height: 578px;
  background-image:
    linear-gradient(180deg,
      rgba(50, 50, 50, 0) 58%,
      rgba(50, 50, 50, 0.5) 74%,
      rgba(50, 50, 50, 0.7) 82%,
      rgba(50, 50, 50, 0.85) 89%,
      rgba(50, 50, 50, 0.93) 94%,
      #323232 100%),
    url('../img/hero-bg-2c2cbc.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  pointer-events: none;
}

.hero__menu {
  position: relative; z-index: 5;
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px;
  padding-top: 17px;
}
.hero__nav {
  display: flex; align-items: center; gap: 32px;
  font-size: 15px; font-weight: 500;
}
.hero__nav a:hover { color: var(--accent); }
.hero__nav .nav-active { text-decoration: underline; text-underline-offset: 4px; }
.nav-dropdown { display: inline-flex; align-items: center; gap: 6px; }
.hero__contacts {
  display: flex; align-items: center; gap: 16px; font-size: 15px; font-weight: 500;
}

.hero__intro {
  position: relative;
  z-index: 4;
  padding-top: 265px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1146px;
}

.hero__tagline {
  font-family: var(--f-head);
  font-size: 24px;
  line-height: 1.35;
  max-width: 483px;
  color: var(--bg-card);
}
.hero__tagline .t-white,
.hero__tagline .t-accent { font-family: var(--f-body); }

.hero__eco-row {
  display: flex; align-items: flex-end; gap: 40px; flex-wrap: wrap;
}
.hero__h1 {
  font-family: var(--f-merit);
  font-size: clamp(52px, 7vw, 90px);
  line-height: .95;
  letter-spacing: -0.015em;
  flex: 1 1 380px;
}

.hero__glass {
  flex: 0 0 457px;
  max-width: 100%;
  background: rgba(255,255,255,.2);
  border-radius: 33px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 24px;
  backdrop-filter: blur(6px);
}
.hero__stats {
  display: flex; gap: 20px; align-items: flex-start;
}
.h-stat__v {
  font-size: 30px; font-weight: 500; text-transform: uppercase; line-height: 1.1;
}
.h-stat__l {
  font-size: 10px; text-transform: uppercase; line-height: 1.4;
  margin-top: 4px; color: rgba(255,255,255,.85);
}

/* Карта + описание под hero (Figma Frame 1267) */
.section.hero-map {
  padding-top: 32px;
  padding-bottom: 80px;
  margin-top: calc(32px - var(--gap-section));
}
.hero__map-row {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.hero__map {
  flex: 0 0 656px;
  max-width: 57.2%;
}
.hero__map-img {
  width: 100%;
  height: auto;
  display: block;
}
.hero__about {
  flex: 1;
  min-width: 0;
  max-width: 460px;
  padding: 0 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}
.hero__about p { margin: 0; }
.hero__about .btn {
  align-self: flex-start;
  width: auto;
  max-width: 100%;
}

/* ═══ INFRA — слайдер 3 кадра, full bleed (Figma 2382×532) ═══ */
.section.infra {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.infra__head { gap: 48px; }

.infra__pills-wrap {
  width: 100%;
  max-width: 1146px;
  margin-inline: auto;
}
.infra__pills {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.infra-pill {
  flex-shrink: 0;
  padding: 16px 48px;
  border-radius: 99px;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  white-space: nowrap;
  background: var(--bg-card);
  color: rgba(255, 255, 255, 0.5);
  transition: background .2s, color .2s;
}
.infra-pill.is-active,
.infra-pill:hover {
  background: var(--accent); color: var(--bg-card);
}

.infra-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}
.infra-carousel.is-dragging { cursor: grabbing; }
.infra-carousel__stage {
  position: relative;
  width: 100%;
  max-width: 2382px;
  height: clamp(360px, 27.7vw, 532px);
  margin-inline: auto;
}
.infra-carousel__item {
  position: absolute;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  transition:
    left .55s cubic-bezier(.25,.46,.45,.94),
    width .55s cubic-bezier(.25,.46,.45,.94),
    height .55s cubic-bezier(.25,.46,.45,.94),
    top .55s cubic-bezier(.25,.46,.45,.94),
    opacity .45s,
    z-index 0s .05s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.infra-carousel__item[hidden],
.infra-carousel__item.is-hidden {
  display: none !important;
}
.infra-carousel__item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity .45s;
}
.infra-carousel__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Позиции Figma: боковые 770×460 @ y=36, центр 890×532 @ y=0 */
.infra-carousel__item[data-offset="-1"] {
  left: 0;
  width: 25%;
  height: 86.47%;
  top: 6.77%;
  z-index: 2;
  opacity: 1;
  visibility: visible;
}
/* Левый боковой: затемнение справа → налево (к центру) */
.infra-carousel__item[data-offset="-1"]::after {
  opacity: 1;
  background: linear-gradient(to left, rgba(45,45,45,1) 0%, rgba(60,60,59,0) 76%);
}
.infra-carousel__item[data-offset="0"] {
  left: 25%;
  width: 50%;
  height: 100%;
  top: 0;
  z-index: 5;
  opacity: 1;
  visibility: visible;
}
.infra-carousel__item[data-offset="1"] {
  left: 75%;
  width: 25%;
  height: 86.47%;
  top: 6.77%;
  z-index: 2;
  opacity: 1;
  visibility: visible;
}
/* Правый боковой: затемнение слева → направо (к центру) */
.infra-carousel__item[data-offset="1"]::after {
  opacity: 1;
  background: linear-gradient(to right, rgba(45,45,45,1) 0%, rgba(60,60,59,0) 76%);
}

/* Боковые кадры приглушены как в Figma (opacity 0.5) */
.infra-carousel__item[data-offset="-1"],
.infra-carousel__item[data-offset="1"] {
  filter: brightness(.85);
}
.infra-carousel__item[data-offset="-1"] img,
.infra-carousel__item[data-offset="1"] img {
  opacity: 0.5;
}

@media (max-width: 1100px) and (min-width: 769px) {
  .infra__pills-wrap {
    max-width: 100%;
  }
  .infra__pills {
    flex-wrap: wrap;
    justify-content: center;
  }
  .infra-pill { padding: 12px 24px; font-size: 14px; line-height: 1.2; }
}
@media (max-width: 900px) {
  .infra-carousel__item[data-offset="-1"] { width: 28%; left: 0; }
  .infra-carousel__item[data-offset="0"] { width: 44%; left: 28%; }
  .infra-carousel__item[data-offset="1"] { width: 28%; left: 72%; }
}

/* ═══ ECOLOGY — Figma 6871:9952 (1921×553) ═══ */
.section.ecology {
  --eco-bleed: var(--gap-section);
  position: relative;
  width: 100%;
  max-width: 1921px;
  margin-inline: auto;
  /* Схлопываем gap лендинга — градиент уходит в фон соседних секций */
  margin-block: calc(-1 * var(--eco-bleed));
  padding-block: var(--eco-bleed);
  background-color: var(--bg);
  overflow: hidden;
  z-index: 0;
}
.ecology {
  position: relative;
  min-height: 553px;
}
.ecology__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 50px;
  height: 467px;
  background-image:
    linear-gradient(180deg,
      rgba(50, 50, 50, 0) 69%,
      rgba(50, 50, 50, 0.8) 92%,
      var(--bg) 100%),
    linear-gradient(0deg,
      rgba(50, 50, 50, 0) 62%,
      rgba(50, 50, 50, 0.5) 76%,
      rgba(50, 50, 50, 0.7) 83%,
      rgba(50, 50, 50, 0.85) 89%,
      rgba(50, 50, 50, 0.93) 94%,
      var(--bg) 99%),
    url('../img/lake-35dda4.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Плавный выход в --bg сверху (инфра) и снизу (семья) */
.ecology__grad {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to bottom,
      var(--bg) 0%,
      rgba(50, 50, 50, 0.93) 7%,
      rgba(50, 50, 50, 0.85) 12%,
      rgba(50, 50, 50, 0.7) 18%,
      rgba(50, 50, 50, 0.5) 24%,
      rgba(50, 50, 50, 0.25) 32%,
      rgba(50, 50, 50, 0) 42%,
      transparent 52%),
    linear-gradient(to top,
      var(--bg) 0%,
      rgba(50, 50, 50, 0.93) 6%,
      rgba(50, 50, 50, 0.8) 11%,
      rgba(50, 50, 50, 0.55) 18%,
      rgba(50, 50, 50, 0.25) 26%,
      rgba(50, 50, 50, 0) 36%,
      transparent 48%);
}
.ecology__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1921px;
  min-height: 553px;
  margin-inline: auto;
}
.ecology__title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(841px, calc(100% - 48px));
  margin: 0;
  font-family: var(--f-merit);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
  color: var(--white);
}
.ecology__play {
  position: absolute;
  left: 50%;
  top: 40.4%;
  transform: translate(-50%, -50%);
  width: 123px;
  height: 123px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(179, 206, 125, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background .2s, transform .2s;
  text-decoration: none;
  color: inherit;
}
.ecology__play:hover {
  background: rgba(179, 206, 125, 0.35);
  transform: translate(-50%, -50%) scale(1.04);
}
.ecology__play-mid {
  position: absolute;
  inset: 10.54px;
  border-radius: 50%;
  background: rgba(179, 206, 125, 0.6);
  pointer-events: none;
}
.ecology__play-icon {
  position: relative;
  z-index: 1;
  margin-left: 4px;
}
.ecology__stats {
  position: absolute;
  left: 50%;
  top: 68%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: nowrap;
}
.eco-bubble {
  flex-shrink: 0;
  width: 177px;
  height: 177px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 28px 20px;
}
.eco-bubble--icon {
  gap: 12px;
}
.eco-bubble__n {
  font-size: 50px;
  font-weight: 300;
  line-height: 60px;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}
.eco-bubble__n small {
  font-size: 30px;
  line-height: 1;
}
.eco-bubble__drop {
  flex-shrink: 0;
  width: 43px;
  height: 40px;
}
.eco-bubble__t {
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--white);
}

/* ═══ FAMILY mosaic — Figma 6870:9914 (1146×1089) ═══ */
.family__cl {
  padding-inline: 0;
  max-width: 1146px;
}
.family__canvas {
  position: relative;
  width: 100%;
  max-width: 1146px;
  margin-inline: auto;
  aspect-ratio: 1146 / 1089;
  min-height: 520px;
}
.family__img {
  position: absolute;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  background: rgba(0, 0, 0, 0.15);
}
.section.family.is-visible .family__img {
  object-fit: cover;
}
/* Координаты из макета (px → %) */
.family__img--vip   { left: 0; top: 10.93%; width: 34.21%; height: 23.23%; }
.family__img--top  { left: 42.76%; top: 0; width: 23.03%; height: 30.39%; }
.family__img--mid  { left: 76.96%; top: 17.63%; width: 23.03%; height: 29.94%; }
.family__img--town { left: 8.55%; top: 61.25%; width: 22.95%; height: 29.75%; }
.family__img--house { left: 59.86%; top: 67.58%; width: 31.59%; height: 23.05%; }

.family__tag {
  position: absolute;
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--white);
  z-index: 2;
}
.family__tag--vip   { left: 7.77%; top: 34.25%; max-width: 21%; }
.family__tag--town  { left: 11.08%; top: 91.09%; width: 17.8%; text-align: center; }
.family__tag--house { left: 70.46%; top: 91.09%; }

.family__bubble {
  position: absolute;
  width: 19.28%;
  max-width: 221px;
  min-height: 68px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 12px;
  font-size: 11px;
  font-weight: 300;
  line-height: 15px;
  letter-spacing: -0.015em;
  color: var(--white);
  z-index: 2;
}
.family__bubble p { margin: 0; }
.family__bubble--vip   { left: 7.42%; top: 37.01%; }
.family__bubble--town  { left: 10.38%; top: 93.76%; }
.family__bubble--house { left: 65.97%; top: 93.76%; }

.family__h2 {
  position: absolute;
  left: 22.69%;
  top: 37.83%;
  width: 55.5%;
  margin: 0;
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1.1;
  text-align: center;
  z-index: 2;
}
.family__h2 .t-white { color: var(--white); }

.family__cta {
  position: absolute;
  left: 39.88%;
  top: 58.86%;
  z-index: 2;
}

/* ═══ GALLERY (Figma Group 1276 — 6870:9939) ═══ */
.gallery-block__stage-wrap {
  width: 100%;
  max-width: 1146px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
/* Подпись 426×67, по центру карусели = по центру центрального кадра */
.gallery-block__caption {
  width: 426px;
  max-width: calc(100% - 32px);
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  align-items: start;
}
.gallery-block__num {
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 0.2em;
  white-space: nowrap;
  min-width: 61px;
}
.gallery-block__num-val,
.gallery-block__slash {
  font-family: var(--f-merit);
  font-weight: 300;
  font-size: 35px;
  line-height: 50px;
  text-transform: uppercase;
  color: var(--white);
}
.gallery-block__num-val { transition: opacity .3s; }
.gallery-block__slash { flex-shrink: 0; }
.gallery-block__note {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  color: var(--white);
  margin: 0;
  transition: opacity .3s;
}
.gallery-block__caption.is-fading .gallery-block__num-val,
.gallery-block__caption.is-fading .gallery-block__note {
  opacity: 0;
}

/* Карусель «01 /» — 5 кадров, центр 414×491 (Figma 1146×491) */
.gallery-carousel {
  position: relative;
  width: 100%;
  max-width: 1146px;
  margin-inline: auto;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}
.gallery-carousel.is-dragging { cursor: grabbing; }

.slider-controls--gallery { gap: 32px; }
.gallery-arrow {
  width: 57px;
  height: 57px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s;
}
.gallery-arrow:hover { background: rgba(255, 255, 255, 0.18); }
.gallery-arrow__icon { display: block; }
.gallery-arrow--next .gallery-arrow__icon { transform: scaleX(-1); }
.gallery-carousel__stage {
  position: relative;
  width: 100%;
  height: clamp(320px, 42.5vw, 491px);
}
.gallery-carousel__item {
  position: absolute;
  margin: 0;
  border-radius: 25px;
  overflow: hidden;
  transition:
    left .55s cubic-bezier(.25,.46,.45,.94),
    width .55s cubic-bezier(.25,.46,.45,.94),
    height .55s cubic-bezier(.25,.46,.45,.94),
    top .55s cubic-bezier(.25,.46,.45,.94),
    opacity .4s,
    z-index 0s .1s;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.gallery-carousel__item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s;
}
.gallery-carousel__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Позиции из Figma (Group 1275, 1146×491) */
.gallery-carousel__item[data-offset="-2"] {
  left: 0;
  width: 21.82%;
  height: 60.49%;
  top: 19.76%;
  z-index: 1;
  opacity: 1;
  visibility: visible;
}
.gallery-carousel__item[data-offset="-2"]::after,
.gallery-carousel__item[data-offset="-1"]::after {
  opacity: 1;
  background: linear-gradient(to left, rgba(45,45,45,1) 0%, rgba(60,60,59,0) 76%);
}
.gallery-carousel__item[data-offset="-1"] {
  left: 10.91%;
  width: 29.14%;
  height: 80.65%;
  top: 9.78%;
  z-index: 2;
  opacity: 1;
  visibility: visible;
}
.gallery-carousel__item[data-offset="0"] {
  left: 27%;
  width: 46%;
  height: 100%;
  top: 0;
  z-index: 5;
  opacity: 1;
  visibility: visible;
}
.gallery-carousel__item[data-offset="1"] {
  left: 59.95%;
  width: 29.14%;
  height: 80.65%;
  top: 9.78%;
  z-index: 2;
  opacity: 1;
  visibility: visible;
}
.gallery-carousel__item[data-offset="1"]::after,
.gallery-carousel__item[data-offset="2"]::after {
  opacity: 1;
  background: linear-gradient(to right, rgba(45,45,45,1) 0%, rgba(60,60,59,0) 76%);
}
.gallery-carousel__item[data-offset="2"] {
  left: 78.19%;
  width: 21.82%;
  height: 60.49%;
  top: 19.76%;
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

/* ═══ PRIVATE + ROUTE (Figma 6872:10457) ═══ */
.section.private {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}
.private__text-block { gap: 48px; }
.private__lead {
  text-align: center;
  font-size: 16px; font-weight: 300; line-height: 24px;
  color: var(--muted);
  max-width: 1146px; margin-inline: auto;
}

.private__visual {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Карта 1920×700 на всю ширину */
.private__map-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.private__map-img {
  width: 100%;
  height: clamp(360px, 36.46vw, 700px);
  object-fit: cover;
  display: block;
}
.private__map-grad {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(50, 50, 50, 0) 82%,
    rgba(50, 50, 50, 0.5) 88%,
    rgba(50, 50, 50, 0.7) 92%,
    rgba(50, 50, 50, 0.85) 95%,
    rgba(50, 50, 50, 0.93) 98%,
    rgba(50, 50, 50, 1) 100%
  );
}

/* Карточка маршрута 1146px, −96px к карте */
.private__route-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: -96px;
  padding-bottom: 8px;
}
.route-card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 48px;
  max-width: 1146px;
  margin-inline: auto;
  background: var(--accent);
  border-radius: 25px;
  padding: 40px;
}

/* Круг «10 мин» — слева, приподнят (Group 1278: x85 y−104, 208×208) */
.route-card__time {
  position: absolute;
  left: 85px;
  top: -104px;
  width: 208px;
  height: 208px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  z-index: 3;
}
.route-card__time-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #fffef8;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.route-card__min,
.route-card__lbl {
  position: relative;
  z-index: 1;
}
.route-card__min {
  font-family: var(--f-body);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: var(--bg-card);
}
.route-card__min em {
  font-style: normal;
  font-size: 50px;
  line-height: 0.9;
}
.route-card__lbl {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.25;
  color: var(--bg-card);
}

.route-card__head {
  display: contents;
}
.route-card__body {
  flex: 1;
  min-width: 0;
}
.route-card__btn {
  flex-shrink: 0;
  border-radius: 54px;
  padding: 16px 43px;
  color: #1d1d1d;
}
.route-card__cols {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 48px;
  flex: 1;
  min-width: 0;
}
.route-card__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 0 0 293px;
  max-width: 293px;
}
.route-card__col--wide {
  flex: 1 1 360px;
  max-width: 360px;
}
.route-card__type {
  display: block;
  font-size: 25px;
  line-height: 32px;
  text-transform: uppercase;
  color: #1d1d1d;
}
.route-card__cols p {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  color: #1d1d1d;
}

/* ═══ FORMATS — Figma 6872:10484 ═══ */
.section.formats { overflow: visible; }
.formats__h2 { max-width: 596px; margin-inline: auto; }
.formats__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 298px));
  justify-content: center;
  gap: 96px;
}
.format-card__frame {
  position: relative;
  width: 100%;
  max-width: 298px;
  height: 346px;
  margin-inline: auto;
}
.format-card__bg {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 0;
}
.format-card__img {
  position: absolute;
  display: block;
  object-fit: cover;
  z-index: 1;
  max-width: none;
}
.format-card__img--town {
  left: -84px;
  top: 10px;
  width: 468px;
  height: 307px;
}
.format-card__img--house {
  left: -110px;
  top: -8px;
  width: 485px;
  height: 331px;
}
.format-card__img--vip {
  left: -53px;
  top: 65px;
  width: 397px;
  height: 215px;
}
.format-card__badge {
  position: absolute;
  top: 24px;
  right: 23px;
  z-index: 3;
  margin: 0;
  width: 171px;
  padding: 6px 14px 6px 10px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: flex-start;
  gap: 6px;
  text-align: left;
  background: var(--accent);
  color: var(--bg-card);
  font-size: 11px;
  font-weight: 500;
  line-height: 11px;
  text-transform: uppercase;
  border-radius: 30px;
}
.format-card__badge-icon {
  flex-shrink: 0;
  width: 21px;
  height: 20px;
  margin-top: 1px;
}
.format-card__btn {
  position: absolute;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  transition: color .2s;
}
.format-card__btn:hover {
  color: var(--accent);
  background: transparent;
  border: none;
}

@media (max-width: 1100px) {
  .formats__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

/* ═══ ATELIER — Figma 6872:10586 (1146×540) ═══ */
.atelier__cl {
  padding-inline: 0;
  max-width: 1146px;
}
.atelier__block {
  position: relative;
  width: 100%;
  min-height: 540px;
}
.atelier__block::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 93px;
  width: 356px;
  height: 356px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.atelier__photo {
  position: absolute;
  left: 64px;
  top: 0;
  width: 297px;
  height: 476px;
  object-fit: cover;
  border-radius: 8px;
  z-index: 2;
}
.atelier__label {
  position: absolute;
  left: 424px;
  top: 0;
  right: 0;
  margin: 0;
  font-family: var(--f-merit);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--white);
  z-index: 1;
}
.atelier__card {
  position: absolute;
  left: 0;
  right: 0;
  top: 108px;
  background: var(--bg-card);
  border-radius: 25px;
  padding: 64px 40px 64px 424px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  z-index: 1;
}
.atelier__card .btn {
  align-self: flex-start;
  width: auto;
  max-width: 100%;
}
.atelier__title {
  font-family: var(--f-head);
  font-size: 35px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: -0.015em;
}
.atelier__card p {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  color: var(--muted);
  max-width: 682px;
}

/* ═══ CATALOG — lv2-catalog (не .catalog из main.css) ═══ */
.lv2-catalog {
  background: var(--bg);
  color: var(--white);
  padding-block: 80px;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}
.lv2-catalog .cl { max-width: 1147px; }
.lv2-catalog__head {
  display: flex; justify-content: space-between; align-items: flex-start;
}
.lv2-catalog__h2 { text-align: left; }
.lv2-catalog__h2 .t-dark { color: var(--white); }
.lv2-catalog .dots--dark .dot { background: rgba(255, 255, 255, 0.25); }
.lv2-catalog .dots--dark .dot.is-active { background: var(--accent); }
.lv2-catalog__houses,
.lv2-catalog__houses .view {
  width: 100%;
  max-width: 100%;
}
.lv2-catalog__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  width: 100%;
}
.lv2-catalog .product-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,.08);
}
.lv2-catalog .product-card > a:first-child,
.lv2-catalog .product-card > img {
  display: block;
  line-height: 0;
}
.lv2-catalog .product-card > a:first-child img,
.lv2-catalog .product-card > img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.lv2-catalog .product-card__foot {
  background: var(--white);
  color: #3c3c3b;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 16px;
  align-items: end;
}
.lv2-catalog .product-card h3 { font-size: 16px; font-weight: 500; color: #3c3c3b; }
.lv2-catalog .product-card__meta {
  font-size: 13px;
  text-transform: uppercase;
  color: rgba(60,60,59,.55);
  margin-top: 4px;
}
.lv2-catalog .product-card__price {
  grid-column: 1;
}
.lv2-catalog .product-card__price strong {
  font-family: var(--f-merit);
  font-size: 30px;
  text-transform: uppercase;
  display: block;
  color: #3c3c3b;
}
.lv2-catalog .product-card__price span { font-size: 16px; color: rgba(60,60,59,.6); }
.lv2-catalog .product-card__price em { color: var(--accent); font-style: normal; }
.lv2-catalog .product-card__go {
  grid-row: 1 / 3;
  grid-column: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  color: var(--accent);
  text-decoration: none;
}
.lv2-catalog__cta { display: flex; justify-content: center; margin-top: 16px; }

/* ═══ CTA FORM — Figma 6872:10550 ═══ */
.section.cta { padding-block: 0; }
.cta-block {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  max-width: 1144px;
  margin-inline: auto;
  border-radius: 8px;
  overflow: hidden;
}
.cta-block__media {
  flex: 1 1 487px;
  min-height: 520px;
  background-size: cover;
  background-position: center;
}
.cta-block__panel {
  flex: 0 0 657px;
  max-width: 657px;
  background: var(--accent);
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  box-sizing: border-box;
}
.cta__title {
  font-family: var(--f-merit);
  font-size: clamp(32px, 4vw, 45px);
  font-weight: 400;
  line-height: 50px;
  color: #252525;
  margin: 0;
}
.cta__sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  color: #252525;
  margin: 0 0 8px;
}
.cta__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  margin-top: 8px;
}
.cta__fields {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.cta__field {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  cursor: text;
}
.cta__field-label {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(29, 29, 29, 0.8);
}
.cta__field input {
  width: 100%;
  border: none;
  border-bottom: 0.75px solid #1d1d1d;
  background: transparent;
  padding: 0 0 4px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  color: #1d1d1d;
  outline: none;
}
.cta__actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.cta__btn {
  background: #1d1d1d;
  color: var(--accent);
  border-color: #1d1d1d;
  padding: 16px 43px;
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  width: auto;
  align-self: center;
}
.cta__btn:hover {
  background: #252525;
  border-color: #252525;
  color: var(--accent);
}
.cta__agree {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  cursor: pointer;
  text-align: left;
}
.cta__agree input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.cta__check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #1d1d1d;
  border-radius: 4px;
  background: transparent;
  position: relative;
  box-sizing: border-box;
}
.cta__agree input:checked + .cta__check {
  background: #1d1d1d;
  border-color: #1d1d1d;
}
.cta__agree input:checked + .cta__check::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.cta__agree-text {
  font-size: 13px;
  font-weight: 300;
  line-height: 18px;
  color: #1d1d1d;
}
.cta__agree-text a {
  text-decoration: underline;
  color: #1d1d1d;
}

.cta__field-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cta__form .online-notice {
  width: 100%;
  min-height: 18px;
  text-align: center;
  font-size: 13px;
  font-weight: 300;
  line-height: 18px;
  color: #a33;
  visibility: hidden;
}

.cta__form .popup-success {
  display: none;
  width: 100%;
  color: #1d1d1d;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  padding-top: 8px;
}

.cta__form .popup-success svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

/* ═══ ПОПАП «ЗАПИСАТЬСЯ НА ЭКСКУРСИЮ» ═══ */
body.lv2-modal-open {
  overflow: hidden;
}

.bp-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10200;
  padding: 24px;
}

.bp-modal.is-active {
  display: flex;
}

.bp-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
}

.bp-modal__content {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: #f7f3ea;
  border-radius: 28px;
  padding: 40px;
  z-index: 2;
  animation: lv2ModalShow 0.3s ease;
  color: #263025;
}

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

.bp-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: none;
  background: none;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  color: #777;
}

.bp-modal__label {
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.bp-modal__title {
  font-family: var(--f-merit);
  font-size: clamp(28px, 5vw, 34px);
  line-height: 1.15;
  margin-bottom: 15px;
  color: #263025;
}

.bp-modal__text {
  color: #666;
  line-height: 1.5;
  margin-bottom: 25px;
}

.bp-modal__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.bp-modal__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bp-modal__form input[type="text"],
.bp-modal__form input[type="tel"] {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #d8d8d8;
  font-size: 16px;
  font-family: var(--f-body);
  color: #263025;
  background: #fff;
}

.bp-modal__form input:focus {
  outline: none;
  border-color: var(--accent);
}

.bp-modal__agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: #666;
  line-height: 1.4;
  cursor: pointer;
}

.bp-modal__agree input {
  margin-top: 2px;
  flex-shrink: 0;
}

.bp-modal__agree a {
  color: inherit;
  text-decoration: underline;
}

.bp-submit {
  background: #263025;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 18px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  font-family: var(--f-body);
  transition: background 0.3s;
}

.bp-submit:hover {
  background: #5c7741;
}

.bp-modal__form .online-notice {
  width: 100%;
  min-height: 18px;
  text-align: left;
  font-size: 13px;
  font-weight: 300;
  line-height: 18px;
  color: #a33;
  visibility: hidden;
}

.bp-modal__form .popup-success {
  display: none;
  width: 100%;
  color: #263025;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  padding-top: 4px;
}

.bp-modal__form .popup-success svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

@media (max-width: 600px) {
  .bp-modal {
    padding: 16px;
  }

  .bp-modal__content {
    padding: 30px 25px;
  }
}

@media (max-width: 900px) {
  .cta-block { flex-direction: column; max-width: 657px; }
  .cta-block__media { min-height: 280px; flex: none; width: 100%; }
  .cta-block__panel { flex: none; max-width: 100%; width: 100%; }
}

/* ═══ FOOTER (только разметка лендинга <footer>, не .footer темы Drupal) ═══ */
footer.footer {
  background: var(--bg-footer);
  width: 100%;
  margin-top: var(--gap-section);
}
.footer__inner {
  max-width: 1140px;
  margin-inline: auto;
  padding: 96px 24px 48px;
}
.footer__top {
  display: grid;
  grid-template-columns: 165px 1fr 240px;
  gap: 48px 64px;
  margin-bottom: 64px;
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__col {
  display: flex; flex-direction: column; gap: 14px;
}
.footer__col strong {
  font-size: 13px; text-transform: uppercase;
  margin-bottom: 4px;
}
.footer__col a {
  font-size: 13px; color: var(--muted);
}
.footer__col a:hover { color: var(--accent); }
.footer__aside p { font-size: 14px; color: var(--muted); }
.footer__phone {
  display: block; font-size: 16px; font-weight: 700;
  margin-top: 16px;
}
.footer__callback {
  font-size: 13px; color: var(--accent);
  text-decoration: underline; margin-top: 8px; display: inline-block;
}
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 16px; color: rgba(255,255,255,.5);
}
.footer__bottom a { text-decoration: underline; }

/* ═══ Responsive ═══ */
@media (max-width: 1100px) {
  .hero__nav, .hero__contacts .hero__soc { display: none; }
  .hero__map { max-width: 100%; flex: 1; }
  .hero__map-row { flex-direction: column; }
  .formats__grid { gap: 32px; }
  .route-card__body { flex-wrap: wrap; }
  .route-card__cols { flex-wrap: wrap; }
  .route-card__col,
  .route-card__col--wide { flex: 1 1 100%; max-width: 100%; }
  .route-card__cols { flex-direction: column; align-items: stretch; }
  .footer__top { grid-template-columns: 1fr; }
  .ecology__stats {
    flex-wrap: wrap;
    justify-content: center;
    max-width: calc(100% - 32px);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  :root { --gap-section: 64px; --pad: 16px; }
  .landing { gap: 64px; }
  .hero__intro { padding-top: 120px; }
  .section.hero-map {
    margin-top: calc(24px - var(--gap-section));
    padding-top: 24px;
    padding-bottom: 48px;
  }
  .hero__map { max-width: 100%; flex: 1 1 auto; }
  .hero__about { max-width: 100%; padding: 0; }
  .hero__glass { flex: 1 1 100%; }

  /* Табы инфра: одна строка, горизонтальный скролл, затемнение по краям */
  .infra__pills-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .infra__pills-wrap::before,
  .infra__pills-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 44px;
    z-index: 2;
    pointer-events: none;
  }
  .infra__pills-wrap::before {
    left: 0;
    background: linear-gradient(to right, rgba(50, 50, 50, 0.95) 0%, rgba(50, 50, 50, 0) 100%);
  }
  .infra__pills-wrap::after {
    right: 0;
    background: linear-gradient(to left, rgba(50, 50, 50, 0.95) 0%, rgba(50, 50, 50, 0) 100%);
  }
  .infra__pills {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    max-width: none;
    padding: 0 16px 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .infra__pills::-webkit-scrollbar {
    display: none;
  }
  .infra-pill {
    padding: 12px 24px;
    font-size: 14px;
    line-height: 1.2;
  }

  /* Инфра-слайдер: одна строка, горизонтальный скролл, затемнение по краям */
  .infra-carousel.infra-carousel--mobile-scroll {
    overflow: hidden;
    touch-action: pan-x;
    cursor: default;
  }
  .infra-carousel.infra-carousel--mobile-scroll::before,
  .infra-carousel.infra-carousel--mobile-scroll::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 56px;
    z-index: 6;
    pointer-events: none;
  }
  .infra-carousel.infra-carousel--mobile-scroll::before {
    left: 0;
    background: linear-gradient(to right, rgba(50, 50, 50, 0.92) 0%, rgba(50, 50, 50, 0) 100%);
  }
  .infra-carousel.infra-carousel--mobile-scroll::after {
    right: 0;
    background: linear-gradient(to left, rgba(50, 50, 50, 0.92) 0%, rgba(50, 50, 50, 0) 100%);
  }
  .infra-carousel.infra-carousel--mobile-scroll .infra-carousel__stage {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 12px;
    height: auto;
    min-height: 0;
    max-width: none;
    margin: 0;
    padding: 0 20px 4px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .infra-carousel.infra-carousel--mobile-scroll .infra-carousel__stage::-webkit-scrollbar {
    display: none;
  }
  .infra-carousel.infra-carousel--mobile-scroll .infra-carousel__item {
    position: relative;
    flex: 0 0 min(78vw, 300px);
    width: min(78vw, 300px);
    height: clamp(200px, 52vw, 260px);
    left: auto;
    top: auto;
    margin: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    filter: none;
    transition: none;
    scroll-snap-align: center;
    z-index: 1;
  }
  .infra-carousel.infra-carousel--mobile-scroll .infra-carousel__item::after {
    display: none;
  }
  .infra-carousel.infra-carousel--mobile-scroll .infra-carousel__item img {
    opacity: 1;
    border-radius: 8px;
  }

  .section.ecology {
    --eco-bleed: var(--gap-section);
  }
  .ecology {
    min-height: 520px;
  }
  .ecology__content {
    min-height: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .ecology__title {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 24px 16px 0;
  }
  .ecology__play {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 24px auto 0;
    width: 96px;
    height: 96px;
  }
  .ecology__play:hover {
    transform: scale(1.04);
  }
  .ecology__play-mid {
    inset: 8px;
  }
  .ecology__stats {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 24px;
    padding: 0 16px 32px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .eco-bubble {
    width: 150px;
    height: 150px;
    padding: 28px 18px !important;
  }
  .eco-bubble__n {
    font-size: 36px;
    line-height: 1.1;
  }

  .section.family {
    display: none !important;
  }

  .gallery-carousel__item:not([data-offset="0"]) {
    opacity: 0 !important;
    visibility: hidden;
    pointer-events: none;
  }
  .gallery-carousel__item[data-offset="0"] {
    width: 100% !important;
    left: 0 !important;
    transform: none !important;
  }
  .gallery-carousel__stage {
    min-height: 200px;
  }
  .formats__grid { grid-template-columns: 1fr; justify-items: center; gap: 48px; }
  .format-card__img--town {
    left: -28%;
    width: 155%;
    height: auto;
    min-height: 88%;
    top: 3%;
  }
  .format-card__img--house {
    left: -37%;
    width: 162%;
    top: -2%;
  }
  .format-card__img--vip {
    left: -18%;
    width: 133%;
    top: 19%;
  }
  .lv2-catalog__grid { grid-template-columns: 1fr; gap: 24px; }

  .section.cta > .cl {
    padding-inline: 0;
    max-width: none;
  }
  .cta-block {
    max-width: none;
    width: 100%;
    margin-inline: 0;
    border-radius: 0;
  }
  .cta-block__panel {
    padding: 40px 20px;
  }

  .private__route-wrap { margin-top: -48px; }
  .route-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 20px 24px;
  }
  .route-card__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    margin-bottom: 24px;
  }
  .route-card__time {
    position: relative;
    left: auto;
    top: auto;
    width: 168px;
    height: 168px;
    margin: 0;
  }
  .route-card__btn {
    width: auto;
    max-width: 100%;
    text-align: center;
  }
  .route-card__body {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    width: 100%;
  }
  .route-card__min em { font-size: 40px; }
  .atelier__block { min-height: 0; display: flex; flex-direction: column; gap: 16px; }
  .atelier__block::before { display: none; }
  .atelier__photo {
    position: static;
    width: min(297px, 100%);
    height: auto;
    aspect-ratio: 297 / 476;
    margin-inline: auto;
  }
  .atelier__label {
    position: static;
    font-size: clamp(28px, 6vw, 48px);
    text-align: center;
  }
  .atelier__card {
    position: static;
    padding: 32px 24px;
  }
  .atelier__title { font-size: clamp(22px, 5vw, 35px); line-height: 1.15; }
  .hdr-nav, .site-header .hdr-right { display: none; }
  .burger { display: flex; }
  .hdr-nav.is-open {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--bg); padding: 24px;
  }
}
