/* ===== TOKENS ===== */
:root {
  --c-bg:     #E5F3FA;
  --c-dark:   #2F3331;
  --c-green:  #9EE86C;
  --c-yellow: #F8E46E;
  --c-orange: #FA8153;

  --f-body: 'Montserrat', sans-serif;

  --px: 80px;
}

/* ===== BASE ===== */

body {
  font-family: var(--f-body);
  font-style: normal;
  font-synthesis: none;
  background-color: var(--c-bg);
  color: var(--c-dark);
  font-size: 16px;
  min-width: 320px;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: var(--px);
  padding-right: var(--px);
  box-sizing: border-box;
}

/* ===== BUTTON ===== */
.btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 50px;
  background: var(--c-orange);
  color: var(--c-bg);
  border-radius: 23px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.05;
  font-family: var(--f-body);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: filter 0.2s;
  white-space: nowrap;
}

.btn-orange:hover {
  filter: brightness(0.9);
}

/* ===== NAV ===== */
.nav {
  padding-top: 38px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 100;
}

.nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  padding: 10px 15px;
  background: var(--c-bg);
  border-radius: 28px;
  font-size: 18px;
  font-weight: 600;
  color: var(--c-dark);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.nav__link:hover {
  background: #cde7f2;
}

/* Burger button — скрыт на десктопе */
.nav__burger {
  display: none;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 16px 0;
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero__logo {
  max-width: min(600px, 68vw);
  width: 100%;
  height: auto;
  display: block;
}

.hero__subtitle {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--c-dark);
  max-width: 300px;
}

.hero__btn {
  margin-top: 28px;
  margin-bottom: 60px;
}

/* ── Vegetable characters ── */
.hero__char {
  position: absolute;
  pointer-events: auto;
  z-index: 1;
  object-fit: contain;
  transition: scale 0.25s ease;
}

/* Помидор */
.hero__char--tomato {
  left: -15px;
  top: 22%;
  width: clamp(200px, 25vw, 380px);
  animation: jolt-tomato 4.5s ease-in-out infinite;
}

/* Перчик чили */
.hero__char--chili {
  left: 40px;
  top: 54%;
  width: clamp(160px, 22vw, 340px);
  z-index: 2;
  animation: jolt-chili 3.2s ease-in-out infinite;
  animation-delay: -1.1s;
}

/* Лимон — против часовой, быстрее */
.hero__char--lemon {
  left: 64%;
  top: 30%;
  width: clamp(70px, 9vw, 135px);
  --char-rot: -25deg;
  animation: hero-char-spin-ccw 3.5s linear infinite;
}

/* Клубника */
.hero__char--strawberry {
  left: 43%;
  top: 47%;
  width: clamp(40px, 5vw, 70px);
  z-index: 3;
  --char-rot: -12deg;
  animation: hero-char-spin-tx 6s linear infinite;
}

/* Лук — прибит к низу hero, вверх не выступает, не срезается */
.hero__char--onion {
  right: -60px;
  bottom: 0;
  top: auto;
  width: clamp(320px, 46vw, 720px);
  animation: jolt-onion 6s ease-in-out infinite;
  animation-delay: -2.3s;
}

/* Наведение: стоп + увеличение (чили, клубника) */
.hero__char--chili:hover,
.hero__char--strawberry:hover {
  animation-play-state: paused;
  scale: 1.18;
}

/* Лимон: не останавливается, только увеличивается */
.hero__char--lemon:hover {
  scale: 1.18;
}

/* Наведение: стоп + уменьшение (помидор, лук) */
.hero__char--tomato:hover,
.hero__char--onion:hover {
  animation-play-state: paused;
  scale: 0.85;
}

/* ===== ABOUT ===== */
.about {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1;
}

.about__line {
  font-size: clamp(20px, 3.5vw, 46px);
  font-weight: 600;
  line-height: 1.1;
  display: block;
}

.about__line--indent { padding-left: 12%; }
.about__line--short  { max-width: 68%; }

.about__orange {
  color: var(--c-dark);
  transition: color 1.1s ease;
}

/* Задержки для каждого блока */
.about__text .about__orange:nth-child(1) { transition-delay: 0s; }
.about__text .about__orange:nth-child(2) { transition-delay: 0.2s; }
.about__text .about__orange:nth-child(3) { transition-delay: 0.4s; }
.about__text .about__orange:nth-child(4) { transition-delay: 0.6s; }

.about--revealed .about__orange { color: var(--c-orange); }

.about__deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.about__deco--lop {
  left: clamp(-30px, -1vw, 0px);
  top: 30%;
  width: clamp(80px, 11vw, 155px);
  animation: shovel-dig 3.8s ease-in-out infinite;
  animation-delay: -0.6s;
}

.about__deco--ley {
  right: clamp(-20px, -1vw, 10px);
  top: 22%;
  width: clamp(180px, 26vw, 360px);
  animation: water-pour 4.5s ease-in-out infinite;
}

.about__deco--ley--mobile { display: none; }

/* ===== SECTION TITLE ===== */
.section-title {
  font-size: clamp(28px, 4.2vw, 54px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--c-dark);
  text-align: center;
  margin-bottom: 48px;
}

/* ===== FOR WHOM ===== */
.for-whom {
  padding: 60px 0 80px;
}

/* 4-колоночная сетка на флексбоксе */
.for-whom__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Все 4 типа ячеек одинаковой ширины: (100% - 3×16px) / 4 = 25% - 12px */
.for-whom__grid > .pot-card-wrap,
.for-whom__spacer,
.for-whom__luk-cell {
  flex: 0 0 calc(25% - 12px);
  min-width: 0;
  box-sizing: border-box;
}

/* Пустой блок-распорка */
.for-whom__spacer {
  /* intentionally empty */
}

/* Ячейка с луком в ряду 2 */
.for-whom__luk-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 64px;
}

.for-whom__luk-img {
  width: 85%;
  height: auto;
  object-fit: contain;
  animation: luk-spin 5s linear infinite;
  pointer-events: none;
}

/* ── Card wrapper: holds char + pot ── */
.pot-card-wrap {
  position: relative;
  padding-top: 64px; /* space for peeking character */
}

/* Character that peeks out on hover */
.pot-card__char {
  position: absolute;
  top: 6px;
  right: 20%;
  width: clamp(48px, 6vw, 78px);
  transform: translateY(28px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.18s;
  pointer-events: none;
  z-index: 4;
}

.pot-card-wrap:hover .pot-card__char,
.pot-card-wrap--active .pot-card__char {
  transform: translateY(0);
  opacity: 1;
}

/* ── The pot ── */
.pot-card {
  width: 100%;
  background: var(--c-dark);
  clip-path: polygon(
    0% 0%,      100% 0%,
    100% 23.2%, 94.8% 23.2%,
    76.6% 100%, 23.1% 100%,
    4.8% 23.2%, 0%  23.2%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 320px;
  box-sizing: border-box;
  padding: 32px 0 0;
}

/* Центральная зона — текст вертикально по центру */
.pot-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 18%;
  width: 100%;
}

.pot-card__title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 10px;
}

.pot-card__title--orange { color: var(--c-orange); }
.pot-card__title--green  { color: var(--c-green); }

.pot-card__desc {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--c-bg);
}

/* Цифра — в самом низу горшочка */
.pot-card__num {
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 700;
  line-height: 1;
  color: var(--c-bg);
  padding: 12px 0 22px;
  flex-shrink: 0;
}

/* ===== STEPS ===== */
.steps {
  padding: 80px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Зелёный фон — статичный без JS, влетает по диагонали из верхнего левого угла с JS */
.steps::before {
  content: '';
  position: absolute;
  inset: -120px -300px;
  background: var(--c-green);
  z-index: -1;
  transform: rotate(6deg);
}

.js .steps::before {
  transform: translate(-75%, -65%) rotate(6deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.js .steps.steps--revealed::before {
  transform: translate(0, 0) rotate(6deg);
}

.steps__grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  margin-bottom: 48px;
  align-items: flex-start;
}

.step {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

/* Стрелка между шагами */
.steps__arrow {
  flex: 0 0 40px;
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
  align-self: flex-start;
}

.steps__arrow img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.7;
}

.step__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--c-orange);
  margin-bottom: 14px;
  line-height: 1.05;
}

.step__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.05;
  color: var(--c-dark);
}

.steps__cta {
  display: flex;
  justify-content: center;
}

/* Лопатка — только на мобиле */
.steps__lop { display: none; }

/* ===== KIT ===== */
.kit {
  padding: 80px 0;
}

.kit .section-title {
  text-align: left;
}

.kit__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
}

/* 4 равные колонки: (100% - 3×20px) / 4 */
.kit-item {
  flex: 0 0 calc(25% - 15px);
  min-width: 0;
  display: flex;
  flex-direction: column;
}

/* Иконка — фиксированная высота, одинаковый отступ от текста */
.kit-item__icon {
  height: 180px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin-top: 20px;
}

.kit-item__icon img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* Иконка сверху — центрируем по горизонтали */
.kit-item--icon-top .kit-item__icon {
  align-items: flex-start;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 20px;
}

.kit-item--icon-top .kit-item__title,
.kit-item--icon-top .kit-item__desc {
  text-align: left;
}

/* Анимации дергания для иконок */
.kit-item:nth-child(1) .kit-item__icon img { animation: jolt-kit-a 5s ease-in-out infinite; animation-delay: -0.4s; }
.kit-item:nth-child(2) .kit-item__icon img { animation: jolt-kit-b 4.2s ease-in-out infinite; animation-delay: -1.8s; }
.kit-item:nth-child(3) .kit-item__icon img { animation: jolt-kit-a 4.8s ease-in-out infinite; animation-delay: -3.1s; }
.kit-item:nth-child(4) .kit-item__icon img { animation: jolt-kit-b 5.5s ease-in-out infinite; animation-delay: -0.9s; }

.kit-item__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: 10px;
  line-height: 1.05;
}

.kit-item__desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--c-dark);
  line-height: 1.05;
}

/* ===== FAQ ===== */
.faq {
  padding: 80px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Жёлтый фон — статичный без JS, влетает по диагонали из верхнего правого угла с JS */
.faq::before {
  content: '';
  position: absolute;
  inset: -120px -300px;
  background: var(--c-yellow);
  z-index: -1;
  transform: rotate(-9deg);
}

.js .faq::before {
  transform: translate(75%, -65%) rotate(-9deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.js .faq.faq--revealed::before {
  transform: translate(0, 0) rotate(-9deg);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.faq__item {
  background: var(--c-bg);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 32px;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--f-body);
  box-sizing: border-box;
}

.faq__question > span:first-child {
  font-size: 18px;
  font-weight: 600;
  color: var(--c-dark);
  line-height: 1.35;
  flex: 1;
}

.faq__icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 100px;
  background: var(--c-bg);
  box-shadow: 0 0.5px 1px rgba(25, 33, 61, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.faq__icon::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--c-dark);
  border-bottom: 2px solid var(--c-dark);
  transform: rotate(45deg) translate(-2px, -1px);
  transition: transform 0.25s, border-color 0.2s;
}

.faq__item--open .faq__icon {
  background: var(--c-dark);
}

.faq__item--open .faq__icon::before {
  border-color: var(--c-bg);
  transform: rotate(-135deg) translate(-2px, -1px);
}

.faq__answer {
  display: none;
  padding: 0 32px 32px;
  box-sizing: border-box;
}

.faq__item--open .faq__answer {
  display: block;
}

.faq__answer p {
  font-size: 16px;
  font-weight: 400;
  color: var(--c-dark);
  line-height: 1.66;
  max-width: 700px;
}

/* ===== REVIEWS ===== */
.reviews {
  padding: 80px 0;
  position: relative;
}

.reviews__grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
}

.review-card {
  flex: 1 1 0;
  min-width: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  box-sizing: border-box;
}

.review-card--orange { background: var(--c-orange); }
.review-card--green  { background: var(--c-green); }
.review-card--yellow { background: var(--c-yellow); }

.review-card__img {
  width: 100%;
  height: 188px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.review-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-card__name {
  font-size: 18px;
  font-weight: 600;
  color: var(--c-dark);
  line-height: 1.05;
}

.review-card__text {
  font-size: 16px;
  font-weight: 400;
  color: var(--c-dark);
  line-height: 1.05;
}

/* Клубника во втором отзыве — дёргается */
.reviews__strawberry {
  width: clamp(60px, 6vw, 90px);
  height: auto;
  position: absolute;
  bottom: 20px;
  left: 20px;
  pointer-events: none;
  animation: jolt-kit-a 4.5s ease-in-out infinite;
  animation-delay: -1.3s;
}

/* Зелёная лопатка справа — копает */
.reviews__lop {
  position: absolute;
  right: clamp(-20px, -0.5vw, 10px);
  bottom: clamp(60px, 9vw, 120px);
  width: clamp(120px, 14vw, 200px);
  pointer-events: none;
  z-index: 2;
  animation: shovel-dig 3.8s ease-in-out infinite;
  animation-delay: -2s;
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 80px 0;
  text-align: left;
}

.final-cta .section-title {
  margin-bottom: 20px;
}

/* Центрированный блок с левым выравниванием текста */
.final-cta__content {
  max-width: 550px;
  margin: 0 auto;
  text-align: left;
}

.final-cta__content .btn-orange {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.final-cta__price {
  font-size: 18px;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: 12px;
}

.final-cta__desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--c-dark);
  line-height: 1.05;
  margin: 0 0 28px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--c-dark);
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 40px;
  box-sizing: border-box;
}

.footer__logo {
  width: 100%;
  display: block;
  position: relative;
  z-index: 2;
  max-width: 100%;
}

.footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  position: relative;
  z-index: 2;
  margin-top: 20px;
  padding: 0 16px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.footer__social-link:hover {
  opacity: 0.65;
}

.footer__social-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Instagram popup */
.footer__social-link--ig {
  position: relative;
  overflow: visible;
}

.ig-popup {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--c-bg);
  color: var(--c-dark);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
  padding: 7px 12px;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 10;
}

/* Хвостик */
.ig-popup::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--c-bg);
}

.footer__social-link--ig:hover .ig-popup {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  :root { --px: 40px; }

  .nav__link { font-size: 15px; }

  /* 2 колонки на планшете */
  .for-whom__grid > .pot-card-wrap,
  .for-whom__spacer,
  .for-whom__luk-cell {
    flex: 0 0 calc(50% - 8px);
  }
  .for-whom__spacer { display: none; }
}

@media (max-width: 600px) {
  :root { --px: 20px; }

  /* ── Бургер-меню ── */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px var(--px);
    justify-content: flex-end;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
    z-index: 1000;
  }

  .nav__burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 1001;
  }

  .nav__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--c-dark);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;
  }

  .nav--open .nav__burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav--open .nav__burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav--open .nav__burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* Полноэкранное меню-оверлей */
  .nav__list {
    position: fixed;
    inset: 0;
    background: var(--c-bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    display: none;
    z-index: 999;
    padding: 0;
  }

  .nav--open .nav__list {
    display: flex;
  }

  .nav--open .nav__list .nav__link {
    font-size: clamp(28px, 7vw, 48px);
    font-weight: 600;
    padding: 10px 24px;
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  .hero { min-height: 100svh; }

  /* Персонажи на мобиле */
  .hero__char--lemon,
  .hero__char--strawberry { display: none; }

  .hero__char--tomato {
    width: 48vw;
    top: 8%;
    left: -10px;
  }

  .hero__char--chili {
    width: 40vw;
    top: 54%;
    left: 30px;
  }

  .hero__char--onion {
    width: 88vw;
    right: -90px;
    top: 42%;
    bottom: auto;
    z-index: 0;
  }

  .about { padding: 48px 0; }

  .about__deco--ley--desktop { display: none; }
  .about__deco--ley--mobile {
    display: block;
    width: clamp(90px, 28vw, 140px);
  }
  .for-whom { padding: 40px 0 60px; }
  .steps { padding: 60px 0; }
  .kit { padding: 60px 0; }
  .faq { padding: 60px 0; }
  .final-cta { padding: 60px 0; }
  .final-cta .section-title { text-align: center; }
  .final-cta__content { margin: 0; }
  .final-cta__content .btn-orange { margin: 0 auto; }

  .faq__question { padding: 20px; }
  .faq__question > span:first-child { font-size: 16px; }
  .faq__answer { padding: 0 20px 24px; }

  /* 1 колонка на мобиле */
  .for-whom__grid > .pot-card-wrap,
  .for-whom__luk-cell {
    flex: 0 0 100%;
  }
  .for-whom__spacer { display: none; }

  .pot-card {
    min-height: 300px;
  }

  /* kit: 2 колонки на мобиле */
  .kit-item { flex: 0 0 calc(50% - 12px); }
  .kit-item__icon { min-height: 120px; }
  .kit-item--icon-top .kit-item__title,
  .kit-item--icon-top .kit-item__desc { text-align: left; }
  .kit-item--icon-top .kit-item__icon { justify-content: flex-start; }

  .steps__grid { flex-wrap: wrap; gap: 28px; }
  .steps__arrow { display: none; }
  .step { flex: 0 0 100%; }

  .step__title { color: var(--c-dark); }

  .steps .container {
    position: relative;
    z-index: 1;
  }

  .steps__lop {
    display: block;
    position: absolute;
    right: -24px;
    bottom: 140px;
    width: 58vw;
    pointer-events: none;
    z-index: 0;
    animation: shovel-dig 3.8s ease-in-out infinite;
    animation-delay: -1.2s;
    transform-origin: bottom center;
  }

  .reviews { padding: 60px 0; }
  .reviews__grid { flex-wrap: wrap; }
  .review-card { flex: 0 0 100%; }
  .review-card__img { height: 220px; }
  .reviews__lop { display: none; }

  .footer { min-height: 360px; }
  .footer__socials { gap: 20px; }
}

@media (max-width: 400px) {
  :root { --px: 16px; }
  .nav__link { font-size: 12px; padding: 7px 8px; }
  .nav--open .nav__list .nav__link { font-size: clamp(28px, 7vw, 48px); padding: 10px 24px; }
}
