/* ===== ОБНОВЛЕННЫЙ LVL1-HEADER ===== */
.lvl1-header {


  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  color: #333;
  overflow: hidden;
  font-family: var(--font-body);
}


.header-right {
  /* 1. Делаем flex-контейнер */
  display: flex;

  /* 2. Располагаем элементы по горизонтали */
  align-items: center;
  /* Вертикальное выравнивание по центру */
  gap: 20px;
  /* Отступ между элементами */

  /* 3. Если нужно растянуть на всю ширину правой колонки */
  justify-content: flex-end;
  /* Прижимаем к правому краю */
}

/* ===== LVL1_1-HEADER (СРЕДНИЙ СЛОЙ С ДЕВУШКОЙ) ===== */
.lvl1_1-header {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  min-height: var(--app-height, 100svh);

  /* Фон с девушкой - растянуть на весь экран */
  background-image: url('/static/images/backgrounds/tmp.png');
  background-repeat: no-repeat;
  /* background-position: center center; Центрируем */
  background-position: 60% 50%;
  background-size: cover;
  /* Растягиваем на весь блок */

  /* Frosted overlay — мягкое размытие фона */
  &::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom,
        rgba(200, 180, 160, 0.30) 0%,
        rgba(200, 180, 160, 0.15) 40%,
        rgba(200, 180, 160, 0.05) 70%,
        transparent 100%);
    backdrop-filter: blur(1.5px);
    -webkit-backdrop-filter: blur(1.5px);
    z-index: 1;
    pointer-events: none;
  }

  /* Noise grain */
  &::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.10;
    mix-blend-mode: overlay;
    background-image:
      url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px;
    z-index: 2;
    pointer-events: none;
  }
}

/* Hero video — скрыто на десктопе, фон на мобилке */
.hero-video {
  display: none;
}

/* ===== СТИЛИ ДЛЯ LVL1-CONTENT ===== */
.lvl1-content {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  /* Изменено с center на flex-start */
  /* align-items: center; */
  text-align: center;
  padding: 0 0px;
  position: relative;
  z-index: 5;
  min-height: 100%;
}

.lvl1-text {
  grid-column: 1 / 8;
  max-width: none;
  margin: 0 auto;
  position: relative;
  padding: 32px 48px;

  &::before {
    content: '';
    position: absolute;
    inset: -20px -60px;
    background: radial-gradient(
      ellipse 110% 100% at 30% 50%,
      rgba(160, 140, 120, 0.35) 0%,
      rgba(160, 140, 120, 0.18) 40%,
      rgba(160, 140, 120, 0.06) 70%,
      transparent 100%
    );
    border-radius: 40% 60% 50% 40%;
    filter: blur(18px);
    z-index: -1;
    pointer-events: none;
  }
}



/* Основной заголовок */
.main-title {
  font-family: var(--font-logo);
  font-size: clamp(56px, 9vw, 190px);
  font-weight: 400;
  color: rgba(var(--c-white-rgb), 0.92);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 0.9;
  margin-bottom: 12px;
  text-shadow:
    0 2px 12px rgba(var(--c-white-rgb), 0.25),
    0 6px 24px rgba(var(--c-black-rgb), 0.20);
  animation: becomesBrighter 2.2s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.main-subtitle {
  font-family: var(--font-body);
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 500;
  color: var(--c-white);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 16px 0 0 0;
  text-shadow:
    0 1px 4px rgba(var(--c-black-rgb), 0.28),
    0 2px 10px rgba(var(--c-black-rgb), 0.12);
  animation: becomesBrighterSub 2s cubic-bezier(0.25, 0.1, 0.25, 1) 1.2s forwards;
  opacity: 0;
  filter: blur(4px);
  transform: translateY(8px);
}

@keyframes becomesBrighterSub {
  0% {
    opacity: 0;
    filter: blur(4px);
    color: rgba(180, 160, 140, 0.2);
    transform: translateY(8px);
  }
  50% {
    opacity: 0.5;
    filter: blur(1px);
    color: rgba(220, 200, 180, 0.5);
    transform: translateY(3px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    color: var(--c-white);
    text-shadow:
      0 1px 4px rgba(var(--c-black-rgb), 0.28),
      0 2px 10px rgba(var(--c-black-rgb), 0.12);
    transform: translateY(0);
  }
}

@keyframes becomesBrighter {
  0% {
    opacity: 0.15;
    filter: blur(6px);
    color: rgba(180, 160, 140, 0.3);
    text-shadow: none;
    transform: translateY(12px);
  }
  50% {
    opacity: 0.6;
    filter: blur(2px);
    color: rgba(220, 200, 180, 0.6);
    transform: translateY(4px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    color: rgba(var(--c-white-rgb), 0.92);
    text-shadow:
      0 2px 12px rgba(var(--c-white-rgb), 0.25),
      0 6px 24px rgba(var(--c-black-rgb), 0.20);
    transform: translateY(0);
  }
}

/* ===== АДАПТИВНОСТЬ ДЛЯ ЗАГОЛОВКА ===== */
@media (max-width: 1200px) {
  .main-title {
    font-size: 4.5rem;
    /* 72px */
  }
}

@media (max-width: 992px) {
  .main-title {
    font-size: 4rem;
    /* 64px */
    letter-spacing: 2px;
  }
}

@media (max-width: 768px) {
  .main-title {
    font-size: 3.2rem;
    /* 51px */
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 576px) {
  .main-title {
    font-size: 2.5rem;
    /* 40px */
    letter-spacing: 1px;
    margin-bottom: 1rem;
  }
}

@media (max-width: 400px) {
  .main-title {
    font-size: 2rem;
    /* 32px */
  }
}


@keyframes scrollPrompt {

  0%,
  100% {
    opacity: 0.3;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(10px);
  }
}


/* ===== LVL1-PROMO (БЛОК С КНОПКАМИ) ===== */
.lvl1-promo {
  grid-column: 1 / 8;
  justify-self: start;
  align-self: start;
  display: flex;
  flex-direction: column;
  /* Вертикальное расположение */
  gap: 12px;
  margin-top: 0;
  position: static;
  /* Абсолютное позиционирование */
  left: 5%;
  /* Смещаем вправо */
  top: 50%;
  /* По вертикали по центру */
  transform: none;
  /* Центрируем по вертикали */
  z-index: 10;
  max-width: 320px;
  /* Ограничиваем ширину */
}

/* Общие стили кнопок */
/* общая база */
.promo-button {
  width: 340px;
  /* размер можно менять тут */
  max-width: 100%;
  padding: 18px 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 6px;

  border-radius: 18px;
  text-decoration: none;

  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;

  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, border-color .25s ease;
  box-shadow: 0 14px 34px rgba(var(--c-black-rgb), 0.14);
  /* мягче */

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}


/* Акцентная CTA — тёплый карамельно-золотистый */
.promo-button--discount {
  background: linear-gradient(135deg, rgba(196, 155, 110, 0.92) 0%, rgba(170, 120, 75, 0.95) 100%);
  border: 1px solid rgba(255, 220, 180, 0.30);
  animation: discountGlow 2.6s ease-in-out infinite;
  color: var(--c-white);
  text-shadow: 0 1px 3px rgba(var(--c-black-rgb), 0.15);
}

.promo-button--discount:hover {
  background: linear-gradient(135deg, rgba(210, 165, 115, 0.95) 0%, rgba(185, 135, 85, 0.98) 100%);
  transform: scale(1.05);
  animation-play-state: paused;
}


.promo-button--discount:active {
  animation-play-state: paused;
}

/* Светлая (более белая и чистая) */
.promo-button--practice {
  background: rgba(var(--c-white-rgb), 0.2);
  /* было ~0.9+, сделай прозрачнее */
  border: 1px solid rgba(170, 159, 149, 0.28);
  color: rgba(var(--c-brand-deep-rgb), 0.92);
  /* border: 1px solid rgba(170,159,149,0.28); */
  /* box-shadow: 0 12px 28px rgba(var(--c-black-rgb),0.10); */
}

.promo-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(var(--c-black-rgb), 0.16);
}

.promo-button:active {
  transform: translateY(0);
  box-shadow: 0 12px 34px rgba(var(--c-black-rgb), 0.14);
}


.promo-button--practice:hover {
  background: rgba(var(--c-white-rgb), 0.98);
}


.promo-button--practice .button-text {
  text-shadow: 1px 1px 3px rgba(var(--c-black-rgb), 0.1);
}

/* Текст кнопок */
/* Текст: центр строго по кнопке */
.button-text {
  flex-grow: 1;
  text-align: center;
  line-height: 1.1;
  /* flex: 0 0 auto;  */
}

/* Иконки кнопок */
/* Иконка: фиксированная ширина */
.button-icon {
  width: 28px;
  display: none;
  align-items: center;
  justify-content: center;
}

.promo-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(var(--c-black-rgb), 0.18);
}

.promo-button--practice .button-icon {
  filter: drop-shadow(1px 1px 2px rgba(var(--c-black-rgb), 0.1));
}

/* Пустой "компенсатор" справа (чтобы текст был по центру) */
.promo-button::after {
  content: "";
  width: 28px;
  /* как .button-icon */
  display: none;
}


@keyframes discountGlow {

  0%,
  100% {
    box-shadow:
      0 10px 22px rgba(var(--c-black-rgb), 0.18),
      0 0 0 0 rgba(255, 220, 180, 0),
      inset 0 0 0 0 rgba(255, 220, 180, 0);
    filter: brightness(1);
    transform: scale(1);
  }

  50% {
    box-shadow:
      0 18px 40px rgba(var(--c-black-rgb), 0.25),
      0 0 25px 8px rgba(255, 200, 150, 0.4),
      inset 0 0 20px 2px rgba(255, 220, 180, 0.15);
    filter: brightness(1.08);
    transform: scale(1.02);
  }
}



/* Сбрасываем z-index секций при открытой модалке,
   чтобы fixed-модалки не перекрывались соседними секциями */
body.modal-open .section {
  z-index: auto !important;
}

/* Тач-устройства и in-app браузеры (Telegram и т.д.) —
   fixed-фон и fixed-оверлей дёргаются при скролле */
@media (pointer: coarse) {
  .page { background-attachment: scroll; }
  body::after { position: absolute; }

  /* sticky/fixed + backdrop-filter дёргаются в in-app браузерах (Telegram) */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background-color: rgba(215, 200, 185, 0.72);
  }

  .social-float {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(245, 240, 235, 0.97);
    transform: translateZ(0);
    will-change: transform;
  }
}

/* 3) Телефон landscape и “пограничные” устройства */
/* <=479px — телефоны: одна колонка */
@media (max-width: 479px) {


  /* Убираем padding у контейнера внутри hero для центрирования */
  .section--hero .container {
    padding: 0;
  }

  /* Компенсируем: header не должен сдвигаться при padding:0 */
  .site-header {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .lvl1_1-header {
    min-height: calc(var(--app-height, 100svh) - var(--header-h));
    overflow: hidden;
    position: relative;

    background-image: none;

    /* GPU-слой — стабильный compositing, без дёрганья */
    transform: translateZ(0);

    &::before {
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      background: none;
    }

    &::after {
      display: none;
    }
  }

  .hero-video {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
  }

  .site-header .header-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Логотип на мобилке */
  .logo a {
    font-size: 16px;
    letter-spacing: 0.12em;
    opacity: 0.8;
  }

  /* Телефоны — ещё компактнее на маленьких экранах */
  .phone-link {
    font-size: 11px;
    font-weight: 400;
    gap: 4px;
    color: rgba(var(--c-brand-deep-rgb), 0.75);
  }

  .header-phones {
    gap: 3px;
  }

  .header-right {
    gap: 12px;
  }

  .lvl1-content {
    display: grid;
    grid-template-columns: 1fr;
    /* общий каркас — 1 колонка */
    grid-template-rows: auto minmax(0, 1fr) auto;
    /* было 30% 30% 40% → заголовок вылезал под шапку на низких экранах;
       auto = заголовок берёт натуральную высоту (не под шапку),
       1fr-середина отжимает промо-кнопки вниз */
    row-gap: 14px;
    padding: 0;
    height: 100%;
    width: 100%;
    box-sizing: border-box;

    position: relative;

    min-height: calc(var(--app-height, 100svh) - var(--header-h));
    /* align-items: start; */
    align-items: stretch;
    /* строки растягиваются по высоте */
    justify-items: stretch;
  }


  .lvl1-text {
    grid-column: 1;
    grid-row: 1;

    display: flex;
    flex-direction: column;
    justify-content: center;
    /* центр по вертикали в верхней зоне */
    width: 100%;
    padding: 24px 20px;

    &::before {
      inset: -12px -24px;
      background: radial-gradient(
        ellipse 100% 100% at 50% 50%,
        rgba(160, 140, 120, 0.38) 0%,
        rgba(160, 140, 120, 0.20) 40%,
        rgba(160, 140, 120, 0.06) 70%,
        transparent 100%
      );
      filter: blur(14px);
    }

  }

  .lvl1-text .main-title {
    margin: 0;
    line-height: 0.92;
    letter-spacing: 0.08em;

    font-size: clamp(44px, 10vw, 78px);
    text-align: center;
    width: 100%;
  }

  .lvl1-mid {
    grid-row: 2;

    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2 колонки в средней строке */
    column-gap: 12px;
    width: 100%;
  }

  /* блок кнопок — как аккуратная карточка */
  .lvl1-promo {

    width: 100%;
    max-width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
    justify-items: center;
    /* отступы уже в lvl1-content */
    display: grid;
    align-self: end;
    justify-self: center;
    gap: 10px;


    /* чтобы не упиралось в “home indicator” */
    margin: 0 auto;
    /* Фиксированный отступ снизу — НЕ используем env(safe-area-inset-bottom),
       т.к. он меняется при скролле в Telegram и дёргает кнопку */
    margin-bottom: var(--social-block-height, 110px);
  }

  /* сами кнопки — мобильная геометрия */
  .promo-button {
    width: 100%;
    max-width: 100%;
    padding: 14px 16px;

    font-size: 16px;
    line-height: 1.15;
    border-radius: 16px;

    box-shadow: 0 10px 22px rgba(var(--c-brand-rgb), 0.9);
    margin-bottom: 0;
    /* margin-bottom: calc(var(--social-block-height) + 20px + env(safe-area-inset-bottom)); */
    /* мягче */
  }

  /* DISCOUNT — тёплый карамельный CTA */
  .promo-button--discount {
    background: linear-gradient(135deg, rgba(196, 155, 110, 0.95) 0%, rgba(170, 120, 75, 0.98) 100%);
    border: 1px solid rgba(255, 220, 180, 0.25);
    animation: discountGlow 3.2s ease-in-out infinite;


    /* медленнее = дороже */
  }

  /* PRACTICE — сделать читаемой */
  .promo-button--practice {
    display: none;
    background: rgba(var(--c-white-rgb), 0.2);
  /* было ~0.9+, сделай прозрачнее */
    border: 1px solid rgba(170, 159, 149, 0.28);
    color: rgba(var(--c-brand-deep-rgb), 0.92);
  }

  /* безопасный отступ снизу */
  .lvl1-content {
    padding-bottom: 14px;
  }

  /* ===== SOCIAL FLOAT MOBILE ===== */
  .social-float {
    gap: 10px;
    padding: 20px 24px;
    padding-bottom: 20px;
    border-radius: 48px 48px 0 0;
    min-height: auto;

    /* Убираем backdrop-filter на мобилке — причина дёрганья при скролле */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(245, 240, 235, 0.97);

    /* GPU-слой для стабильного compositing */
    will-change: transform;
    transform: translateZ(0);
  }

  /* «хвост» фона вниз — только для нижней позиции, не в scrolled */
  .social-float:not(.scrolled)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 200vh;
    background: rgba(245, 240, 235, 0.97);
    pointer-events: none;
  }


  .social-float-link {
    width: var(--tap);
    height: var(--tap);
  }

  .social-float-link svg {
    width: 18px;
    height: 18px;
  }

  /* Скрываем соц.блок при открытой модалке */
  body.modal-open .social-float {
    display: none !important;
  }

  /* ===== DIR-SLIDER MOBILE ===== */
  .section--directions {
    min-height: auto;
    padding-block: 40px;
  }

  .dir-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .dir-media {
    width: 100%;
    display: flex;
    justify-content: center;
    order: 1;
  }

  .dir-photo {
    border-radius: 20px;
    aspect-ratio: 4 / 5;
    width: min(350px, 85vw);
  }

  .dir-panel {
    order: 2;
    width: 90%;
    max-width: 350px;
    margin-left: 0;
    margin-top: -30px;
    border-radius: 20px;
    padding: 32px 20px 24px;
    position: relative;
    z-index: 2;
  }

  .dir-title {
    font-size: 28px;
  }

  .dir-text {
    font-size: 14px;
    line-height: 1.5;
  }

  .dir-counter {
    font-size: 14px;
  }

  .dir-nav {
    width: var(--tap);
    height: var(--tap);
    font-size: 18px;
  }

  .dir-nav--prev {
    left: 10px;
  }

  .dir-nav--next {
    right: 10px;
  }

  .dir-cta {
    padding: 12px 24px;
    font-size: 14px;
  }

}

/* 3) Телефон landscape и “пограничные” устройства */
@media (min-width: 480px) and (max-width: 799px) {
  /* телефоны в альбомной + небольшие планшеты */


  .dir-slide {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0;
  }

  .dir-panel {
    width: 90%;
    max-width: 420px;
    margin-top: -30px;
  }

  .dir-photo {
    width: min(450px, 85vw);
  }

  .lvl1-content {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    /* железно 40/60 */
    grid-template-rows: 47% 1fr;
    /* верх 30%, низ остальное */
    column-gap: clamp(18px, 3vw, 56px);
    padding: 0 0px;

    align-items: stretch;
    /* строки растягиваются по высоте */
    justify-items: start;
    text-align: left;

    min-height: calc(var(--app-height, 100svh) - var(--header-h));
    /* подстрой под высоту шапки (пример) */
  }

  /* Текст и кнопки — строго в левую колонку */

  /* левый блок с заголовком */
  .lvl1-text {
    grid-column: 1;
    grid-row: 1;
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;

  }

  /* заголовок */
  .lvl1-text .main-title {
    margin: 0;
    /* чтобы не добавлял лишний отступ сверху */
    line-height: 0.92;
    letter-spacing: 0.08em;

    /* авторазмер под ширину колонки */
    font-size: clamp(52px, 6.2vw, 140px);
    text-align: center;
    /* центрирует строки при переносе */
    width: 100%;

    /* если длинные слова/переносы */
    word-break: normal;

  }


  .lvl1-promo {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    /* старт в нижней зоне */
    width: 100%;
    /* margin-bottom: calc(90px + env(safe-area-inset-bottom)); */
  }

}



/* 800- 999px */
@media (min-width: 800px) and (max-width: 999px) {

  .lvl1-content {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    /* железно 40/60 */
    grid-template-rows: 47% 1fr;
    /* верх 30%, низ остальное */
    column-gap: clamp(18px, 3vw, 56px);
    padding: 0 0px;

    align-items: stretch;
    /* строки растягиваются по высоте */
    justify-items: start;
    text-align: left;

    min-height: calc(var(--app-height, 100svh) - var(--header-h));
    /* подстрой под высоту шапки (пример) */
  }

  /* Текст и кнопки — строго в левую колонку */

  /* левый блок с заголовком */
  .lvl1-text {
    grid-column: 1;
    grid-row: 1;
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;

  }

  /* заголовок */
  .lvl1-text .main-title {
    margin: 0;
    /* чтобы не добавлял лишний отступ сверху */
    line-height: 0.92;
    letter-spacing: 0.08em;

    /* авторазмер под ширину колонки */
    font-size: clamp(62px, 6.2vw, 140px);
    text-align: center;
    /* центрирует строки при переносе */
    width: 100%;

    /* если длинные слова/переносы */
    word-break: normal;

  }


  .lvl1-promo {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    /* старт в нижней зоне */
    width: 100%;
  }
}


/* 1000–1199px — “идеальный режим”: одна колонка контента */
@media (min-width: 1000px) and (max-width: 1199px) {

  .lvl1-content {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    /* железно 40/60 */
    grid-template-rows: 47% 1fr;
    /* верх 30%, низ остальное */
    column-gap: clamp(18px, 3vw, 56px);
    padding: 0 0px;

    align-items: stretch;
    /* строки растягиваются по высоте */
    justify-items: start;
    text-align: left;

    min-height: calc(var(--app-height, 100svh) - var(--header-h));
    /* подстрой под высоту шапки (пример) */
  }

  /* Текст и кнопки — строго в левую колонку */

  /* левый блок с заголовком */
  .lvl1-text {
    grid-column: 1;
    grid-row: 1;
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;

  }

  /* заголовок */
  .lvl1-text .main-title {
    margin: 0;
    /* чтобы не добавлял лишний отступ сверху */
    line-height: 0.92;
    letter-spacing: 0.08em;

    /* авторазмер под ширину колонки */
    font-size: clamp(82px, 6.2vw, 140px);
    text-align: center;
    /* центрирует строки при переносе */
    width: 100%;

    /* если длинные слова/переносы */
    word-break: normal;

  }


  .lvl1-promo {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    /* старт в нижней зоне */
    width: 100%;
  }
}


/* >=1200px — слева контент (1/3), справа пустая safe-zone под девушку (2/3) */
@media (min-width: 1200px) {

  .lvl1-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* левая: контент, правая: пустая */
    grid-template-rows: 47% 1fr;
    /* верх 30%, низ остальное */
    column-gap: clamp(18px, 3vw, 56px);
    padding: 0 0px;

    align-items: stretch;
    /* строки растягиваются по высоте */
    justify-items: start;
    text-align: left;

    min-height: calc(var(--app-height, 100svh) - var(--header-h));
    /* подстрой под высоту шапки (пример) */
  }

  /* Текст и кнопки — строго в левую колонку */

  /* левый блок с заголовком */
  .lvl1-text {
    grid-column: 1;
    grid-row: 1;
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;

  }

  /* заголовок */
  .lvl1-text .main-title {
    margin: 0;
    /* чтобы не добавлял лишний отступ сверху */
    line-height: 0.92;
    letter-spacing: 0.08em;

    /* авторазмер под ширину колонки */
    font-size: clamp(102px, 6.2vw, 140px);
    text-align: center;
    /* центрирует строки при переносе */
    width: 100%;

    /* если длинные слова/переносы */
    word-break: normal;

  }


  .lvl1-promo {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    /* старт в нижней зоне */
    width: 100%;
  }


}

