/* ============================================================
   CSS-ПЕРЕМЕННЫЕ
   ============================================================ */
:root {
  --cream:       #F5EFE6;
  --cream-light: #FAF6F0;
  --green:       #2E4A2E;
  --green-light: #4A5E4A;
  --terracotta:  #C47A5A;
  --text-dark:   #2C2416;
  --text-mid:    #4A3728;
  --text-muted:  #6B5C4E;
  --text-label:  #9E8E7E;
  --white:       #FFFFFF;
  --divider:     rgba(46,74,46,0.1);

  --font: 'Inter', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  20px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
}

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

a { text-decoration: none; color: inherit; }

/* ============================================================
   УТИЛИТЫ
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 120px;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--green);
  text-align: center;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--terracotta);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}
.btn:hover { opacity: 0.88; }

.btn--primary {
  background: var(--terracotta);
  color: var(--white);
  font-size: 17px;
  letter-spacing: 0.5px;
  padding: 18px 48px;
  gap: 8px;
}

.btn__icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.btn__icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 820px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('../images/generated-1776343760554.png') center/cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: #1A2E18;
  opacity: 0.52;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  max-width: 764px;
  padding: 0 20px;
  text-align: center;
}

.hero__eyebrow-line {
  width: 60px;
  height: 2px;
  background: var(--terracotta);
}

.hero__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #D4C4A0;
}

.hero__title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

.hero__subtitle {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  color: #E8DDD0;
  max-width: 620px;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #D4C4A0;
}

.hero__meta-icon {
  width: 16px;
  height: 16px;
  color: var(--terracotta);
}

.hero__meta-divider {
  width: 1px;
  height: 18px;
  background: rgba(212,196,160,0.5);
}

/* ============================================================
   ДЛЯ КОГО
   ============================================================ */
.for-whom {
  background: var(--cream);
}

.for-whom__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 148px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.for-whom__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.for-whom__title {
  font-size: 42px;
  font-weight: 700;
  color: var(--green);
  text-align: center;
}

.for-whom__title-divider {
  width: 60px;
  height: 2px;
  background: var(--terracotta);
}

.for-whom__grid {
  display: grid;
  grid-template-columns: repeat(4, 268px);
  gap: 24px;
}

.for-whom__card {
  background: var(--cream-light);
  border-radius: var(--radius-md);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 283px;
}

.for-whom__icon {
  width: 36px;
  height: 36px;
  color: var(--terracotta);
  flex-shrink: 0;
}

.for-whom__card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
  line-height: 1.3;
}

.for-whom__card-text {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   ПРОГРАММА
   ============================================================ */
.program {
  position: relative;
  background: url('../images/generated-1776344180367.png') center/cover no-repeat;
}

.program__overlay {
  position: absolute;
  inset: 0;
  background: #1A2E18;
  opacity: 0.58;
}

.program__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 66px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.program__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.program__title {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
}

.program__subtitle {
  font-size: 18px;
  font-weight: 300;
  color: #A8C4A8;
}

.program__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.program__card {
  background: rgba(255, 255, 255, 0.094);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.program__card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.program__day-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--terracotta);
  letter-spacing: 2px;
}

.program__day-date {
  font-size: 14px;
  color: #A8C4A8;
}

.program__day-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
}

.program__day-line {
  width: 40px;
  height: 1px;
  background: var(--terracotta);
}

.program__schedule {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.program__item {
  background: rgba(255, 255, 255, 0.051);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.program__item-time {
  font-size: 11px;
  font-weight: 600;
  color: #E8C49A;
  letter-spacing: 1.5px;
}

.program__item-activity {
  font-size: 13px;
  color: var(--white);
  line-height: 1.4;
}

.program__note {
  font-size: 13px;
  font-style: italic;
  color: rgba(168, 196, 168, 0.5);
}

/* ============================================================
   ПРЕПОДАВАТЕЛИ
   ============================================================ */
.teachers {
  background: var(--cream);
}

.teachers__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 88px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.teachers__title {
  font-size: 40px;
  font-weight: 700;
  color: var(--green);
  text-align: center;
}

.teachers__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  width: 100%;
}

.teachers__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.teachers__photo-wrap {
  width: 100%;
  height: 700px;
  overflow: hidden;
  flex-shrink: 0;
}

.teachers__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.teachers__info {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.teachers__name {
  font-size: 26px;
  font-weight: 700;
  color: var(--green);
}

.teachers__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196, 122, 90, 0.1);
  border-radius: 20px;
  padding: 6px 14px;
  align-self: flex-start;
}

.teachers__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}

.teachers__badge-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--terracotta);
  line-height: 1.4;
}

.teachers__divider {
  height: 1px;
  background: rgba(46, 74, 46, 0.1);
}

/* ============================================================
   ДОМ МИРРА
   ============================================================ */
.mirra {
  background: var(--cream-light);
}

.mirra__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.mirra__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.mirra__eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--terracotta);
  letter-spacing: 3px;
}

.mirra__title {
  font-size: 38px;
  font-weight: 700;
  color: var(--green);
}

.mirra__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}

.mirra__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  height: 280px;
}

.mirra__item:hover .mirra__img {
  transform: scale(1.04);
}

.mirra__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.mirra__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.18);
  transition: background 0.2s;
}

.mirra__item--video:hover .mirra__play {
  background: rgba(0, 0, 0, 0.32);
}

.mirra__play-icon {
  width: 64px;
  height: 64px;
  background: rgba(0, 0, 0, 0.38);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  padding-left: 4px;
  line-height: 64px;
  text-align: center;
}

/* ============================================================
   ЛАЙТБОКС + ВИДЕОПЛЕЕР
   ============================================================ */
.lightbox,
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox.is-open,
.video-modal.is-open {
  display: flex;
}

.lightbox__backdrop,
.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox__img {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  user-select: none;
}

.lightbox__caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  white-space: nowrap;
}

.lightbox__close,
.video-modal__close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 2;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.lightbox__close:hover,
.video-modal__close:hover {
  opacity: 1;
}

.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 48px;
  line-height: 1;
  padding: 8px 18px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.lightbox__arrow:hover { background: rgba(255,255,255,0.24); }
.lightbox__arrow--prev { left: 24px; }
.lightbox__arrow--next { right: 24px; }

.video-modal__video {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--radius-sm);
  outline: none;
}

/* ============================================================
   СТОИМОСТЬ
   ============================================================ */
.price {
  background: var(--cream-light);
}

.price__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 120px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.price__title {
  font-size: 42px;
  font-weight: 700;
  color: var(--green);
  text-align: center;
}

/* Карточки цен */
.price__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.price__card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price__card-type {
  font-size: 16px;
  color: #1D3527;
  line-height: 1.4;
}

.price__card-tier {
  font-size: 13px;
  font-weight: 500;
  color: #8A9E8A;
  letter-spacing: 1px;
}

.price__card-divider {
  height: 1px;
  background: #E8DDD0;
}

.price__card-amount {
  font-size: 48px;
  font-weight: 700;
  color: #1D3527;
  line-height: 1.1;
}

.price__card-note {
  font-size: 13px;
  font-weight: 300;
  color: #A8928C;
}

/* Списки */
.price__lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price__list-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price__list-title {
  font-size: 16px;
  font-weight: 600;
  color: #1D3527;
}

.price__list-divider {
  height: 1px;
  background: rgba(196, 122, 90, 0.25);
}

.price__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price__list li {
  font-size: 14px;
  color: #3A5A3A;
  line-height: 1.6;
}

.price__list .price__list-note {
  font-size: 12px;
  font-weight: 300;
  color: #A8928C;
  line-height: 1.5;
}

/* Блок оплаты */
.price__deposit {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price__deposit-title {
  font-size: 16px;
  font-weight: 600;
  color: #1D3527;
}

.price__deposit-divider {
  height: 1px;
  background: rgba(29, 53, 39, 0.18);
}

.price__deposit-text {
  font-size: 14px;
  color: #3A5A3A;
  line-height: 1.7;
}

.price__deposit-muted {
  font-size: 13px;
  font-weight: 300;
  color: #A8928C;
  line-height: 1.6;
}

/* ============================================================
   ФОРМА БРОНИРОВАНИЯ
   ============================================================ */
.booking {
  background: var(--cream);
}

.booking__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.booking__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.booking__title {
  font-size: 42px;
  font-weight: 700;
  color: var(--green);
}

.booking__subtitle {
  font-size: 16px;
  font-weight: 300;
  color: #7A8F7A;
  line-height: 1.6;
}

.booking__card {
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  width: 100%;
  max-width: 760px;
}

.booking__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.booking__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking__label {
  font-size: 14px;
  font-weight: 500;
  color: #4A5E4A;
}

.booking__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.booking__input-icon {
  position: absolute;
  left: 16px;
  width: 16px;
  height: 16px;
  color: #8A9E8A;
  pointer-events: none;
  flex-shrink: 0;
}

.booking__input {
  width: 100%;
  height: 52px;
  background: var(--cream-light);
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0 16px 0 44px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 300;
  color: var(--text-dark);
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.booking__input::placeholder {
  color: #B8C8B8;
}

.booking__input:focus {
  outline: none;
  border-color: var(--green);
}

.booking__input.is-error {
  border-color: #C0392B;
}

/* Select без иконки слева */
.booking__select {
  padding-left: 16px;
  cursor: pointer;
}

.booking__input-wrap--select {
  position: relative;
}

.booking__select-arrow {
  position: absolute;
  right: 14px;
  width: 16px;
  height: 16px;
  color: #8A9E8A;
  pointer-events: none;
}

/* Textarea */
.booking__textarea {
  height: 120px;
  padding: 14px 16px;
  resize: vertical;
  line-height: 1.6;
}

.booking__divider {
  height: 1px;
  background: #E0D8D0;
}

/* Checkbox */
.booking__consent {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.booking__checkbox {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--green);
  cursor: pointer;
}

.booking__consent-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Сообщения */
.booking__message {
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.booking__message--success {
  background: #EBF5EB;
  color: #2E6B2E;
  border: 1px solid #A8D4A8;
}

.booking__message--error {
  background: #FDECEA;
  color: #B71C1C;
  border: 1px solid #F1ADAB;
}

/* Кнопка */
.booking__submit {
  width: 100%;
  justify-content: center;
  border-radius: 10px;
  font-size: 17px;
  letter-spacing: 0.5px;
}

.booking__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ============================================================
   КОНТАКТЫ
   ============================================================ */
.contacts {
  background: #231E18;
}

.contacts__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 120px;
  display: grid;
  grid-template-columns: 540px 1fr;
  gap: 80px;
  align-items: start;
}

.contacts__eyebrow {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--terracotta);
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.contacts__address {
  font-size: 18px;
  color: #F0E8DC;
  line-height: 1.7;
  margin-bottom: 12px;
}

.contacts__dist {
  font-size: 17px;
  color: #C8DCC8;
  letter-spacing: 0.3px;
  margin-bottom: 32px;
}

.contacts__how-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.contacts__ways {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contacts__way-title {
  font-size: 17px;
  font-weight: 600;
  color: #EDE0C8;
  margin-bottom: 4px;
}

.contacts__way-desc {
  font-size: 15px;
  font-weight: 300;
  color: #C8C0B0;
  line-height: 1.6;
}

.contacts__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contacts__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 380px;
  background: #1D3527;
}

.contacts__map > script + * ,
.contacts__map iframe,
.contacts__map ymaps {
  width: 100% !important;
  height: 380px !important;
  border: none;
  display: block;
}

.btn--map {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--terracotta);
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 8px;
  transition: opacity 0.2s;
  align-self: flex-start;
}

.btn--map:hover { opacity: 0.88; }

.mobile-br { display: none; }

/* ============================================================
   MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

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

  /* Hero */
  .hero {
    height: 480px;
    align-items: flex-start;
    justify-content: center;
    padding-top: 90px;
    padding-bottom: 0;
  }

  .hero__content {
    gap: 16px;
  }

  .hero__eyebrow-line {
    display: none;
  }

  .hero__eyebrow {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .mobile-br { display: inline; }

  .hero__title {
    font-size: 30px;
    max-width: 320px;
  }

  .hero__subtitle {
    font-size: 14px;
    max-width: 310px;
  }

  .hero .btn--primary {
    width: 310px;
    font-size: 15px;
    padding: 14px 20px;
  }

  .hero__meta {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
  }

  .hero__meta-divider {
    display: none;
  }

  /* Для кого */
  .for-whom__inner {
    padding: 56px 20px;
    gap: 32px;
  }

  .for-whom__title {
    font-size: 28px;
  }

  .for-whom__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .for-whom__card {
    height: auto;
  }

  /* Программа */
  .program__inner {
    padding: 56px 20px 32px;
    gap: 32px;
  }

  .program__title {
    font-size: 28px;
  }

  .program__subtitle {
    font-size: 15px;
  }

  .program__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .program__card {
    padding: 24px;
  }

  /* Преподаватели */
  .teachers__inner {
    padding: 56px 20px;
    gap: 32px;
  }

  .teachers__title {
    font-size: 28px;
  }

  .teachers__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .teachers__photo-wrap {
    height: 440px;
  }

  .teachers__info {
    padding: 20px 24px 24px;
    gap: 14px;
  }

  .teachers__name {
    font-size: 20px;
  }

  .teachers__badge-text {
    font-size: 12px;
  }

  /* Дом Мирра */
  .mirra__inner {
    padding: 56px 20px;
    gap: 20px;
  }

  .mirra__title {
    font-size: 24px;
  }

  .mirra__grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  /* Фото 1 и 6 — полная ширина */
  .mirra__item:nth-child(1),
  .mirra__item:nth-child(6) {
    grid-column: 1 / -1;
    height: 210px;
  }

  /* Фото 2,3,4,5 — по две в ряд */
  .mirra__item:nth-child(2),
  .mirra__item:nth-child(3),
  .mirra__item:nth-child(4),
  .mirra__item:nth-child(5) {
    height: 170px;
  }

  /* Видео — полная ширина */
  .mirra__item--video {
    grid-column: 1 / -1;
    height: 210px;
  }

  /* Лайтбокс */
  .lightbox__arrow { font-size: 32px; padding: 6px 12px; }
  .lightbox__arrow--prev { left: 8px; }
  .lightbox__arrow--next { right: 8px; }

  /* Стоимость */
  .price__inner {
    padding: 56px 20px;
    gap: 24px;
  }

  .price__title {
    font-size: 28px;
  }

  .price__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .price__card {
    padding: 28px;
    gap: 12px;
    border-radius: var(--radius-lg);
  }

  .price__card-type {
    font-size: 15px;
  }

  .price__card-amount {
    font-size: 40px;
  }

  .price__lists {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .price__list-block {
    padding: 24px;
    gap: 10px;
  }

  .price__deposit {
    padding: 24px;
  }

  .price__deposit-text {
    font-size: 13px;
  }

  /* Форма */
  .booking__inner {
    padding: 56px 20px;
    gap: 24px;
  }

  .booking__title {
    font-size: 28px;
  }

  .booking__card {
    padding: 28px 20px;
  }

  .booking__row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Контакты */
  .contacts__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 20px;
  }

  .contacts__eyebrow {
    text-align: center;
    font-size: 12px;
  }

  .contacts__address {
    font-size: 16px;
    text-align: center;
  }

  .contacts__dist {
    font-size: 14px;
    text-align: center;
  }

  .contacts__how-title {
    font-size: 20px;
  }

  .contacts__map {
    height: 240px;
  }

  .contacts__map iframe,
  .contacts__map ymaps {
    height: 240px !important;
  }

  .btn--map {
    width: 100%;
    font-size: 14px;
    padding: 14px 20px;
  }
}
