/* ============================================================
   HERO — три зоны (текст / фото / видео)
   ============================================================ */

.hero {
  min-height: 100vh;
  background: #F5F3EE;
  display: grid;
  grid-template-columns: 37% 33% 30%;
  gap: 0;
  position: relative;
  overflow: hidden;
}

.hero__zone--photo {
  margin-right: 4px;
}


/* ───── ОБЩЕЕ ДЛЯ ЗОН ───── */
.hero__zone {
  position: relative;
  min-height: 100vh;
}

.hero__zone--text {
  padding: 32px 56px 48px;
  display: flex;
  flex-direction: column;
}

.hero__zone--photo,
.hero__zone--video {
  overflow: hidden;
}

/* ============================================================
   ШАПКА (внутри текстовой зоны)
   ============================================================ */
.hero__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 55px;
}


/* Бургер + слово «Меню» */
.hero__menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 999px;
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #14140F;
  transition: background 0.2s ease;
}

.hero__menu-btn:hover {
  background: rgba(20, 20, 15, 0.06);
}

.hero__menu-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 20px;
}

.hero__menu-icon span {
  display: block;
  height: 2px;
  background: #14140F;
  border-radius: 2px;
}

.hero__menu-icon span:nth-child(1) { width: 100%; }
.hero__menu-icon span:nth-child(2) { width: 70%; }
.hero__menu-icon span:nth-child(3) { width: 100%; }

/* Логотип по центру шапки */
.hero__logo {
  display: block;
  height: 44px;
  flex-shrink: 0;
}

.hero__logo img {
  height: 100%;
  width: auto;
  display: block;
}

/* Кнопка «Каталог» */
.hero__nav-btn {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1.5px solid #14140F;
  color: #14140F;
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 500;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.hero__nav-btn:hover {
  background: #14140F;
  color: #fff;
}

/* ============================================================
   БРЕНД-БЛОК (логотип над заголовком)
   ============================================================ */
.hero__brand {
  display: block;
  width: 150px;
  align-self: flex-start;
  margin-bottom: 32px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.hero__brand img {
  width: 100%;
  height: auto;
  display: block;
}
/* ============================================================
   СЛАЙДЫ (заголовок + подпись + CTA)
   ============================================================ */
.hero__slides {
  flex: 1;
  position: relative;
  min-height: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.hero__slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero__title {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(44px, 4.5vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #14140F;
  margin: 0 0 24px;
}

.hero__title span {
  display: block;
}

.hero__subtitle {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.5;
  color: #5C5C56;
  max-width: 380px;
  margin: 0 0 40px;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #14140F;
  color: #fff;
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 500;
  font-size: 15px;
  padding: 18px 32px;
  border-radius: 999px;
  text-decoration: none;
  width: fit-content;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero__cta:hover {
  background: #2A2A22;
  transform: translateY(-2px);
}

.hero__cta svg {
  flex-shrink: 0;
}

/* ============================================================
   НАВИГАЦИЯ СЛАЙДЕРА (стрелки + точки)
   ============================================================ */
.hero__nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.hero__arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #14140F;
  background: transparent;
  color: #14140F;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.hero__arrow:hover {
  background: #14140F;
  color: #fff;
}

.hero__dots {
  display: flex;
  gap: 10px;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D4D2C8;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  padding: 0;
}

.hero__dot.is-active {
  background: #C5F056;
  width: 26px;
  border-radius: 4px;
}

/* ============================================================
   МЕДИА-СТЕК (фото и видео)
   ============================================================ */
.hero__media-stack {
  position: absolute;
  inset: 0;
}

.hero__media {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero__media.is-active {
  opacity: 1;
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Лёгкое затемнение для читаемости элементов поверх медиа */
.hero__zone--video .hero__media-stack::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, transparent 25%, transparent 70%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
  z-index: 1;
}

/* ============================================================
   БЕЙДЖ НА ФОТО (.hero__offer) — лаймовая пилюля капсом
   ============================================================ */
.hero__offer {
  position: absolute;
  top: 56px;
  left: 56px;
  background: #C5F056;
  color: #14140F;
  font-family: 'Sora', system-ui, sans-serif;
  padding: 14px 20px;
  border-radius: 14px;
  z-index: 2;
  box-shadow: 0 6px 24px rgba(197, 240, 86, 0.35);
  max-width: 320px;
}

.hero__offer-label {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 4px;
}

.hero__offer-value {
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

/* ============================================================
   ВЕРХНИЕ ДЕЙСТВИЯ НА ВИДЕО (телефон + заказ звонка)
   ============================================================ */
.hero__top-actions {
  position: absolute;
  top: 32px;
  right: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 3;
}

.hero__phone {
  color: #fff;
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  transition: opacity 0.2s ease;
}

.hero__phone:hover {
  opacity: 0.85;
}

.hero__call-btn {
  background: rgba(255, 255, 255, 0.95);
  color: #14140F;
  border: none;
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 500;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(8px);
}

.hero__call-btn:hover {
  background: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   КНОПКА «ПОДРОБНЕЕ» (внизу видео-зоны, по центру)
   ============================================================ */
.hero__more {
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  color: #14140F;
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 500;
  font-size: 11px;
  padding: 9px 18px;
  border-radius: 999px;
  text-decoration: none;
  z-index: 3;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease;
}

.hero__more:hover {
  transform: translateX(-50%) translateY(-3px);
}

/* ============================================================
   АДАПТИВ
   ============================================================ */
/* ============================================================
   АДАПТИВ
   ============================================================ */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 50% 50%;
  }

  .hero__zone--video {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero__zone {
    min-height: auto;
  }

  .hero__zone--text {
    padding: 24px 24px 40px;
  }

  .hero__zone--photo {
    min-height: 60vh;
  }

  .hero__brand {
    width: 130px;
    margin-bottom: 24px;
  }

  .hero__title {
    font-size: clamp(40px, 9vw, 56px);
  }

  .hero__offer {
    top: 24px;
    left: 24px;
    padding: 14px 20px;
      position: absolute;
  /* твоё текущее позиционирование, например: */
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .4s ease, transform .4s ease;
    pointer-events: none;
  }
  .hero__media.is-active .hero__offer {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .hero__offer-value {
    font-size: 14px;
  }

  .hero__menu-label {
    display: none;
  }

  .hero__nav-btn {
    font-size: 13px;
    padding: 8px 16px;
  }
}