/* Homepage sections — Figma Main Page (1:188) */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@1,700;1,800&family=Mulish:ital,wght@1,500;1,600;1,700;1,800&display=swap');

.site-main--home-redesign {
  /* clip не ломает backdrop-filter у glass-тегов (в отличие от hidden) */
  overflow-x: clip;
  font-family: 'Mulish', sans-serif;
  background: #fff;
  color: #171717;
}

body.cf-redesign {
  background: #fff;
}

.site-main--home-redesign h1,
.site-main--home-redesign h2,
.site-main--home-redesign h3,
.home-section-title,
.home-hero__title,
.home-hero__subtitle,
.home-info__name,
.home-cta__title,
.home-services__card-title,
.home-novelties__card-title,
.home-zones__feature-title,
.home-map__contacts-title,
.home-map__label {
  font-family: 'Montserrat', sans-serif;
}

/* 1440 content rail = Figma 1920 − 240×2 */
.home-pad {
  max-width: 1920px;
  margin: 0 auto;
  padding-left: max(40px, calc((100% - 1440px) / 2));
  padding-right: max(40px, calc((100% - 1440px) / 2));
}

@media (max-width: 768px) {
  .home-pad {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.home-section-title {
  margin: 0 0 48px;
  color: #585858;
  font-size: 48px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -2px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .home-section-title {
    font-size: 32px;
    letter-spacing: -1px;
    margin-bottom: 28px;
  }
}

/* ========== HERO ========== */
.home-hero {
  position: relative;
  isolation: isolate;
  min-height: 984px;
  display: flex;
  align-items: center;
  color: #fff;
}

@media (max-width: 1024px) {
  .home-hero {
    min-height: 720px;
  }
}

.home-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #171717;
}

.home-hero__video,
.home-hero__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__poster {
  z-index: 0;
}

.home-hero__video {
  z-index: 1;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.home-hero__video.is-ready {
  opacity: 1;
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.4);
}

.home-hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 48px max(40px, calc((100% - 1440px) / 2));
}

@media (max-width: 768px) {
  .home-hero__inner {
    padding: 32px 20px;
  }
}

.home-hero__titles {
  max-width: 967px;
  margin-bottom: 48px;
}

.home-hero__title,
.home-hero__subtitle {
  margin: 0;
  font-size: 64px;
  font-weight: 800;
  font-style: italic;
  line-height: 66px;
  letter-spacing: -2px;
}

/* Figma: empty line (~66px) between title and subtitle */
.home-hero__title {
  margin-bottom: 66px;
}

@media (min-width: 1200px) {
  .home-hero__title,
  .home-hero__subtitle {
    white-space: nowrap;
  }
}

@media (max-width: 1024px) {
  .home-hero__title,
  .home-hero__subtitle {
    font-size: 40px;
    line-height: 1.1;
  }
  .home-hero__title {
    margin-bottom: 24px;
  }
}

@media (max-width: 640px) {
  .home-hero__title,
  .home-hero__subtitle {
    font-size: 28px;
    letter-spacing: -1px;
  }
}

.home-hero__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 48px;
  padding: 0;
  max-width: 516px;
}

.home-hero__tag-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 20px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  border-right: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(161, 161, 161, 0.2);
  -webkit-backdrop-filter: blur(40px) saturate(160%);
  backdrop-filter: blur(40px) saturate(160%);
  box-shadow: none;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  font-style: italic;
  line-height: 18px;
  white-space: nowrap;
}

.home-hero__card {
  width: 100%;
  max-width: 489px;
  padding: 40px 26px;
  border: 1px solid #fff;
  border-radius: 20px;
  background: rgba(161, 161, 161, 0.2);
}

.home-hero__card-row + .home-hero__card-row {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.home-hero__card-label {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
  font-style: italic;
  line-height: 18px;
}

.home-hero__card-value {
  display: block;
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  font-style: italic;
  line-height: 26px;
  transition: color 0.25s ease;
}

@media (hover: hover) {
  a.home-hero__card-value:hover {
    color: #f4864d;
  }
}

/* Figma NumBlock: «Режим работы» + value in one row */
.home-hero__card-row--hours {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.home-hero__card-row--hours .home-hero__card-label {
  margin-bottom: 0;
  width: auto;
}

.home-hero__card-row--hours .home-hero__card-value {
  font-size: 22px;
  line-height: 24px;
}

/* ========== INFO ========== */
.home-info {
  padding: 100px 0;
}

.home-info__wrap {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 max(40px, calc((100% - 1440px) / 2));
}

@media (max-width: 768px) {
  .home-info {
    padding: 48px 0;
  }
  .home-info__wrap {
    padding: 0 20px;
  }
}

.home-info__card {
  min-height: 430px;
  border-radius: 20px;
  padding: 99px 48px 48px;
  text-align: center;
  color: #fff;
  background: linear-gradient(253.37deg, #ffba50 0%, #f4864d 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-info__name {
  margin: 0;
  font-size: 64px;
  font-weight: 800;
  font-style: italic;
  line-height: 66px;
  letter-spacing: -2px;
}

.home-info__slogan {
  margin: 10px 0 0;
  font-size: 26px;
  font-weight: 600;
  font-style: italic;
  line-height: 28px;
}

.home-info__line {
  width: min(1014px, 100%);
  margin: 30px auto 24px;
}

.home-info__line img {
  display: block;
  width: 100%;
  height: auto;
}

.home-info__text {
  max-width: 663px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 500;
  font-style: italic;
  line-height: 18px;
}

@media (max-width: 768px) {
  .home-info__name {
    font-size: 36px;
    line-height: 1.1;
  }
  .home-info__slogan {
    font-size: 18px;
  }
  .home-info__card {
    min-height: 0;
    padding: 48px 24px;
  }
}

/* ========== ZONES ========== */
.home-zones {
  padding: 40px 0 160px;
}

.home-zones__inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 max(40px, calc((100% - 1440px) / 2));
}

@media (max-width: 768px) {
  .home-zones {
    padding-bottom: 80px;
  }
  .home-zones__inner {
    padding: 0 20px;
  }
}

.home-zones__title {
  margin: 0 0 48px;
  color: #585858;
  font-size: 48px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -2px;
  line-height: 1.2;
}

.home-zones__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.home-zones__tab {
  border: 0;
  border-radius: 34px;
  padding: 23px 26px;
  background: #d9d9d9;
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  font-style: italic;
  line-height: 18px;
  cursor: pointer;
  transition:
    background-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.2s ease;
}

.home-zones__tab.is-active {
  background: #f4864d;
  box-shadow: 0 6px 18px rgba(244, 134, 77, 0.28);
}

@media (hover: hover) {
  .home-zones__tab:not(.is-active):hover {
    background: #c4c4c4;
  }

  .home-zones__tab:active {
    transform: scale(0.98);
  }
}

.home-zones__main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 345px;
  gap: 20px;
  align-items: stretch;
  min-width: 0;
}

@media (max-width: 1200px) {
  .home-zones__main {
    grid-template-columns: minmax(0, 1fr);
  }
}

.home-zones__stage {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 640px;
  border-radius: 20px;
  overflow: hidden;
  background: #d9d9d9;
}

@media (max-width: 1024px) {
  .home-zones__stage {
    height: 480px;
  }
}

@media (max-width: 768px) {
  .home-zones__stage {
    height: auto;
    aspect-ratio: 3 / 2;
    min-height: 240px;
  }
}

.home-zones__track {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.home-zones__panel {
  box-sizing: border-box;
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.home-zones__stage .home-zones__panel {
  height: 100%;
  min-height: 100%;
}

.home-zones__feature {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #d9d9d9;
}

.home-zones__gallery {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-zones__gallery-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.home-zones__gallery-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  min-width: 100%;
}

.home-zones__feature-img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.home-zones__gallery-nav {
  position: absolute;
  left: 48px;
  right: 48px;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.home-zones__gallery-btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 0;
  border: 0;
  border-radius: 40px;
  background: rgba(217, 217, 217, 0.7);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  cursor: pointer;
  transition: background 0.25s ease, opacity 0.25s ease;
}

.home-zones__gallery-btn img {
  display: block;
  width: 36px;
  height: auto;
}

@media (hover: hover) {
  .home-zones__gallery-btn:hover {
    background: rgba(217, 217, 217, 0.9);
  }
}

.home-zones__feature-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 48px;
  color: #fff;
  background: linear-gradient(to top, #171717 0%, rgba(23, 23, 23, 0) 100%);
  pointer-events: none;
}

.home-zones__feature-title {
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: 700;
  font-style: italic;
  line-height: 34px;
  letter-spacing: -1px;
}

.home-zones__feature-desc {
  margin: 0;
  color: #b1b1b1;
  font-size: 16px;
  font-weight: 500;
  font-style: italic;
  line-height: 18px;
}

.home-zones__previews {
  height: 640px;
}

.home-zones__previews-viewport {
  height: 100%;
  overflow: hidden;
}

.home-zones__previews-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.home-zones__preview {
  flex: 0 0 auto;
  height: calc((640px - 40px) / 3);
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.home-zones__preview img {
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  height: calc(100% - 26px);
  object-fit: cover;
  border-radius: 20px;
  transition: opacity 0.28s ease;
}

@media (hover: hover) {
  .home-zones__preview:hover img {
    opacity: 0.85;
  }
}

.home-zones__preview-cap {
  color: #585858;
  font-size: 16px;
  font-weight: 600;
  font-style: italic;
  line-height: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1200px) {
  .home-zones__previews {
    height: auto;
  }

  .home-zones__previews-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .home-zones__previews-viewport::-webkit-scrollbar {
    display: none;
  }

  .home-zones__previews-track {
    flex-direction: row;
    width: max-content;
  }

  .home-zones__preview {
    flex: 0 0 220px;
    height: auto;
  }

  .home-zones__preview img {
    height: 150px;
    flex: none;
  }
}

@media (max-width: 768px) {
  .home-zones__feature-text {
    padding: 20px;
  }

  .home-zones__gallery-nav {
    left: 16px;
    right: 16px;
  }

  .home-zones__gallery-btn {
    width: 48px;
    height: 48px;
  }

  .home-zones__gallery-btn img {
    width: 28px;
  }

  .home-zones__feature-title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .home-zones__feature-desc {
    font-size: 14px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .home-zones__preview {
    flex-basis: 160px;
  }

  .home-zones__preview img {
    height: 110px;
  }

  .home-zones__preview-cap {
    font-size: 14px;
  }
}

/* ========== SERVICES ========== */
.home-services {
  padding: 0 0 160px;
}

.home-services__slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  margin-bottom: 48px;
}

.home-services__slider::-webkit-scrollbar {
  display: none;
}

.home-services__card {
  position: relative;
  flex: 0 0 467px;
  width: 467px;
  height: 467px;
  border-radius: 20px;
  overflow: hidden;
  scroll-snap-align: start;
  background: #d9d9d9;
  color: #fff;
  text-decoration: none;
  display: block;
}

@media (max-width: 640px) {
  .home-services__card {
    flex-basis: 300px;
    width: 300px;
    height: 300px;
  }
}

.home-services__card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-services__card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
  transition: background 0.35s ease;
}

.home-services__card-title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  font-style: italic;
  line-height: 34px;
  letter-spacing: -1px;
}

.home-services__card-link {
  color: #b1b1b1;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  font-style: italic;
  line-height: 18px;
  transition: color 0.25s ease;
}

@media (hover: hover) {
  .home-services__card:hover .home-services__card-img {
    transform: scale(1.05);
  }

  .home-services__card:hover .home-services__card-body {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82), transparent);
  }

  .home-services__card:hover .home-services__card-link {
    color: #f4864d;
  }
}

/* ========== NOVELTIES ========== */
.home-novelties {
  padding: 0 0 160px;
}

.home-novelties__slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  margin-bottom: 48px;
}

.home-novelties__slider::-webkit-scrollbar {
  display: none;
}

.home-novelties__card {
  flex: 0 0 345px;
  width: 345px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scroll-snap-align: start;
}

.home-novelties__thumb {
  display: block;
  width: 345px;
  height: 487px;
  border-radius: 20px;
  overflow: hidden;
  background: #dadada;
}

.home-novelties__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-novelties__card-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #7c7c7c;
}

.home-novelties__card-title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  font-style: italic;
  line-height: 34px;
  letter-spacing: -1px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-novelties__card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

@media (hover: hover) {
  .home-novelties__card-title a:hover {
    color: #f4864d;
  }
}

.home-novelties__card-link {
  color: #7c7c7c;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  font-style: italic;
  line-height: 18px;
  transition: color 0.25s ease;
}

@media (hover: hover) {
  .home-novelties__card:hover .home-novelties__thumb img {
    transform: scale(1.05);
  }

  .home-novelties__card-link:hover {
    color: #f4864d;
  }
}

/* Shared slider controls */
.home-slider-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.home-slider-btn {
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 40px;
  background: #d9d9d9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.28s ease;
}

.home-slider-btn:hover {
  background: #f4864d;
}

.home-slider-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 0 26px;
  border-radius: 34px;
  background: #d9d9d9;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  font-style: italic;
  line-height: 18px;
  transition: background-color 0.28s ease, color 0.28s ease;
}

.home-slider-all:hover {
  background: #f4864d;
}

/* ========== CTA ========== */
.home-cta {
  padding: 0 0 160px;
}

.home-cta__box {
  border-radius: 20px;
  padding: 104px 184px;
  text-align: center;
  color: #fff;
  background: linear-gradient(255.84deg, #6a6a6a 0%, #1e1e1e 100%);
}

@media (max-width: 1100px) {
  .home-cta__box {
    padding: 64px 40px;
  }
}

@media (max-width: 640px) {
  .home-cta__box {
    padding: 40px 20px;
  }
}

.home-cta__head {
  max-width: 1072px;
  margin: 0 auto 39px;
}

.home-cta__title {
  margin: 0 0 10px;
  font-size: 52px;
  font-weight: 800;
  font-style: italic;
  line-height: 54px;
  letter-spacing: -1px;
}

.home-cta__desc {
  margin: 0;
  font-size: 26px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .home-cta__title {
    font-size: 32px;
    line-height: 1.15;
  }
  .home-cta__desc {
    font-size: 18px;
  }
}

.home-cta__form {
  max-width: 1072px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-cta__fields {
  display: flex;
  gap: 20px;
  width: 100%;
  margin: 0 0 20px;
}

@media (max-width: 768px) {
  .home-cta__fields {
    flex-direction: column;
    gap: 16px;
    margin: 0 0 24px;
  }
}

.home-cta__form .home-cta__input {
  flex: 1 1 0;
  width: 100%;
  min-height: 64px;
  height: 64px;
  border-radius: 30px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  padding: 0 33px;
  margin: 0;
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-style: italic;
  box-sizing: border-box;
  line-height: 1.2;
}

.home-cta__form .home-cta__input:focus {
  outline: 2px solid #f4864d;
  outline-offset: 2px;
}

.home-cta__form .home-cta__input::placeholder {
  color: #fff;
  opacity: 0.9;
}

.home-cta__agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 640px;
  margin: 0 0 24px;
  text-align: left;
  cursor: pointer;
}

.home-cta__agree-input {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.15);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.home-cta__agree-input:checked {
  border-color: #fff;
  background-color: #fff;
  background-image: url('../images/build/icon-check-orange.svg');
}

.home-cta__agree-input:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.home-cta__agree-text {
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.85);
}

.home-cta__agree-text a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.25s ease, opacity 0.25s ease;
}

@media (hover: hover) {
  .home-cta__agree-text a:hover {
    color: #ffe0c8;
  }
}

.home-cta__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 211px;
  height: 64px;
  margin: 0 auto;
  border: 0;
  border-radius: 34px;
  background: #f4864d;
  color: #fff;
  padding: 0 26px;
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-style: italic;
  line-height: 18px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.28s ease;
}

.home-cta__submit:hover,
.home-cta__submit:focus {
  background: #ff9a5c;
}

.home-cta__success {
  margin-top: 20px;
  color: #fff;
  font-style: italic;
}

/* ========== MAP ========== */
.home-map {
  padding: 0 0 160px;
}

.home-map__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 345px;
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 1200px) {
  .home-map__grid {
    grid-template-columns: 1fr;
  }
}

.home-map__map {
  min-height: 643px;
  height: 643px;
  border-radius: 20px;
  overflow: hidden;
  background: #dadada;
}

.home-map__map iframe,
.home-map__map > ymaps,
.home-map__map > div {
  width: 100% !important;
  max-width: 100%;
  border: 0;
  border-radius: 20px;
}

.home-map__contacts {
  border-radius: 20px;
  padding: 48px;
  color: #fff;
  background: linear-gradient(267.26deg, #ffba50 0%, #f4864d 100%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 643px;
}

.home-map__contacts-title {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 700;
  font-style: italic;
  line-height: 34px;
  letter-spacing: -1px;
}

.home-map__label {
  margin: 0 0 4px;
  font-size: 24px;
  font-weight: 700;
  font-style: italic;
  line-height: 34px;
  letter-spacing: -1px;
}

.home-map__value {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  font-style: italic;
  line-height: 18px;
}

.home-map__value a {
  color: #fff;
  text-decoration: underline;
  transition: opacity 0.25s ease;
}

@media (hover: hover) {
  .home-map__value a:hover {
    opacity: 0.8;
  }
}

.home-map__social {
  display: flex;
  gap: 7px;
  align-items: center;
}

.home-map__social a {
  display: inline-flex;
  line-height: 0;
  transition: opacity 0.25s ease;
}

@media (hover: hover) {
  .home-map__social a:hover {
    opacity: 0.75;
  }
}

.home-map__requisites {
  margin-top: auto;
  font-size: 16px;
  font-weight: 500;
  font-style: italic;
  line-height: 18px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========== ADAPTIVE (no mobile Figma — own breakpoints) ========== */

@media (max-width: 1200px) {
  .home-section-title,
  .home-zones__title {
    font-size: 40px;
  }

  .home-map__contacts {
    min-height: 0;
  }

  .home-map__map {
    height: 480px;
    min-height: 480px;
  }

  .home-services,
  .home-novelties,
  .home-cta,
  .home-map,
  .home-zones {
    padding-bottom: 100px;
  }
}

@media (max-width: 1024px) {
  .home-pad,
  .home-info__wrap,
  .home-zones__inner,
  .home-hero__inner {
    padding-left: 32px;
    padding-right: 32px;
  }

  .home-hero {
    min-height: 640px;
    align-items: flex-end;
    padding-bottom: 40px;
  }

  .home-hero__inner {
    padding-top: 40px;
    padding-bottom: 24px;
  }

  .home-hero__titles,
  .home-hero__tags {
    margin-bottom: 28px;
  }

  .home-hero__card {
    max-width: 100%;
    padding: 28px 22px;
  }

  .home-hero__card-value {
    font-size: 22px;
  }

  .home-info {
    padding: 64px 0;
  }

  .home-info__name {
    font-size: 48px;
    line-height: 1.1;
  }

  .home-zones__tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 28px;
    padding-bottom: 4px;
  }

  .home-zones__tabs::-webkit-scrollbar {
    display: none;
  }

  .home-zones__tab {
    flex: 0 0 auto;
    padding: 16px 20px;
    font-size: 14px;
  }

  .home-zones__feature-text {
    padding: 28px;
  }

  .home-zones__feature-title {
    font-size: 26px;
    line-height: 1.2;
  }

  .home-services__card-body {
    padding: 28px;
  }

  .home-cta__title {
    font-size: 40px;
    line-height: 1.15;
  }

  .home-cta__desc {
    font-size: 20px;
  }

  .home-slider-btn {
    width: 52px;
    height: 52px;
  }

  .home-slider-all {
    height: 52px;
    padding: 0 20px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .home-pad,
  .home-info__wrap,
  .home-zones__inner,
  .home-hero__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .home-hero {
    min-height: min(100svh, 720px);
    min-height: 560px;
  }

  .home-hero__tag-link {
    font-size: 13px;
    padding: 7px 12px;
  }

  .home-hero__card-value {
    font-size: 20px;
    line-height: 1.2;
  }

  .home-hero__card-row--hours .home-hero__card-value {
    font-size: 18px;
  }

  .home-section-title,
  .home-zones__title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .home-zones {
    padding: 24px 0 64px;
  }

  .home-zones__feature-text {
    padding: 20px;
  }

  .home-zones__feature-title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .home-zones__feature-desc {
    font-size: 14px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .home-zones__preview {
    flex-basis: 160px;
  }

  .home-zones__preview img {
    height: 110px;
    min-height: 110px;
  }

  .home-zones__preview-cap {
    font-size: 14px;
  }

  .home-services,
  .home-novelties,
  .home-cta,
  .home-map {
    padding-bottom: 64px;
  }

  .home-services__slider,
  .home-novelties__slider {
    margin-bottom: 24px;
    margin-right: -20px;
    padding-right: 20px;
  }

  .home-services__card {
    flex-basis: min(80vw, 320px);
    width: min(80vw, 320px);
    height: min(80vw, 320px);
  }

  .home-services__card-title {
    font-size: 22px;
    line-height: 1.2;
  }

  .home-novelties__card {
    flex-basis: min(72vw, 280px);
    width: min(72vw, 280px);
  }

  .home-novelties__thumb {
    width: 100%;
    height: min(100vw, 380px);
  }

  .home-novelties__card-title {
    font-size: 20px;
    line-height: 1.25;
  }

  .home-slider-controls {
    gap: 10px;
    flex-wrap: wrap;
  }

  .home-cta__submit {
    width: 100%;
  }

  .home-map__map {
    height: 320px;
    min-height: 320px;
  }

  .home-map__map iframe,
  .home-map__map > ymaps,
  .home-map__map > div {
    height: 100% !important;
    min-height: 100%;
  }

  .home-map__contacts {
    padding: 28px 24px;
    gap: 14px;
  }

  .home-map__contacts-title,
  .home-map__label {
    font-size: 22px;
    line-height: 1.25;
  }
}

@media (max-width: 480px) {
  .home-hero {
    min-height: 520px;
  }

  .home-hero__title,
  .home-hero__subtitle {
    font-size: 24px;
  }

  .home-info__name {
    font-size: 28px;
  }

  .home-info__slogan {
    font-size: 16px;
  }

  .home-info__text {
    font-size: 14px;
    line-height: 1.35;
  }

  .home-cta__title {
    font-size: 26px;
  }

  .home-cta__desc {
    font-size: 16px;
  }

  .home-cta__form .home-cta__input {
    min-height: 64px;
    height: 64px;
    padding: 0 24px;
  }

  .home-slider-btn {
    width: 48px;
    height: 48px;
  }

  .home-slider-all {
    height: 48px;
    flex: 1 1 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-zones__tab,
  .home-zones__preview img,
  .home-services__card-img,
  .home-services__card-body,
  .home-services__card-link,
  .home-novelties__thumb img,
  .home-novelties__card-link,
  .home-slider-btn,
  .home-slider-all,
  .home-cta__submit,
  .home-cta__agree-text a,
  .home-map__value a,
  .home-map__social a {
    transition: none !important;
  }

  .home-services__card:hover .home-services__card-img,
  .home-novelties__card:hover .home-novelties__thumb img {
    transform: none;
  }
}
