/* ============================================================
   MARSO — Козлова Светлана Юрьевна
   Editorial / luxe: кремовая бумага, фирменная бирюза #0eb1af
   ============================================================ */

:root {
  --brand:       #0eb1af;
  --brand-dark:  #069b99;
  --brand-deep:  #06807e;
  --brand-soft:  rgba(14, 177, 175, 0.10);
  --ink:         #101f1e;   /* только текст */
  --ink-soft:    #4a5b5a;
  --paper:       #f6f2ec;
  --paper-card:  #fffdf9;
  --line:        rgba(16, 31, 30, 0.13);
  --line-strong: rgba(16, 31, 30, 0.28);
  --sand:        #c8a45c;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Manrope', 'Helvetica Neue', sans-serif;

  --wrap: 1200px;
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --chrome: 96px; /* топбар + шапка */
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Бумажная зернистость */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
.center { text-align: center; }

.icon { width: 24px; height: 24px; stroke: currentColor; stroke-width: 1.4; fill: none;
        stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* ─────────────────────────────── TYPO ── */
.eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--sand); }
.eyebrow--light { color: rgba(255, 255, 255, 0.9); }
.eyebrow--light::before { background: rgba(255, 255, 255, 0.55); }
.eyebrow--center { justify-content: center; }

.section__head { margin-bottom: 56px; }
.section__head--center { text-align: center; }

.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-top: 18px;
}
.section__title em { font-style: italic; color: var(--brand); }
.section__title--light { color: #fff; }
.section__title--light em { font-style: italic; color: #fdf6e3; }

.lead { font-size: 1.02rem; color: var(--ink-soft); max-width: 620px; }
.lead--center { margin: 22px auto 0; text-align: center; }
.lead--light { color: rgba(255, 255, 255, 0.85); }

.link-teal { color: var(--brand-deep); border-bottom: 1px solid currentColor; }
.link-teal:hover { color: var(--brand); }

/* ─────────────────────────────── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease);
}
.btn--solid { background: var(--brand); color: #fff; }
.btn--solid:hover { background: var(--brand-deep); }

.btn--teal { background: var(--brand); color: #fff; }
.btn--teal:hover { background: var(--brand-deep); }

.btn--ghost { border: 1px solid var(--line-strong); color: var(--ink); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); }

.btn--light { background: #fff; color: var(--brand-deep); }
.btn--light:hover { background: var(--paper); }

.btn--full { width: 100%; }
.btn .icon { width: 17px; height: 17px; }

/* Пробегающий блик на кнопке формы */
.btn--shine { position: relative; overflow: hidden; isolation: isolate; }
.btn--shine::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  animation: shine 3.4s var(--ease) infinite;
  pointer-events: none;
}
.btn--shine:hover::after { animation-duration: 1.2s; }

@keyframes shine {
  0%   { left: -60%; }
  55%  { left: 130%; }
  100% { left: 130%; }
}

@media (prefers-reduced-motion: reduce) {
  .btn--shine::after { animation: none; }
}

/* ─────────────────────────────── TOPBAR ── */
.topbar {
  background: var(--brand);
  padding: 4px 0;
}
.topbar__caption {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

/* ─────────────────────────────── HEADER ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 242, 236, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.logo__img { height: 30px; width: auto; }

.nav__list { display: flex; gap: 32px; list-style: none; }
.nav__link {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--brand);
  transition: width 0.35s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { width: 100%; }

.header__cta { display: inline-flex; padding: 13px 26px; }

.burger { display: none; width: 26px; height: 18px; position: relative; }
.burger span {
  position: absolute; left: 0;
  width: 100%; height: 1.5px;
  background: var(--ink);
  transition: all 0.35s var(--ease);
}
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 8px; }
.burger span:nth-child(3) { top: 16px; }
.burger.open span:nth-child(1) { top: 8px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 8px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--brand);
  z-index: 200;
  padding: 90px 32px 40px;
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 0.55s var(--ease), visibility 0s linear 0.55s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mobile-menu.open {
  transform: translateY(0);
  visibility: visible;
  transition: transform 0.55s var(--ease), visibility 0s;
}
.mobile-menu__close { position: absolute; top: 26px; right: 26px; color: #fff; font-size: 1.6rem; line-height: 1; }
.mobile-menu__list { list-style: none; }
.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: #fff;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
.mobile-menu__link:hover { color: #06403f; }

/* ═════════════════════════════════ HERO ══ */
.hero {
  position: relative;
  min-height: calc(100dvh - var(--chrome));
  display: flex;
  align-items: center;
  padding: 34px 0 40px;
  overflow: hidden;
}
.hero::after {
  content: 'MARSO';
  position: absolute;
  left: -2vw;
  bottom: -4vw;
  font-family: var(--font-display);
  font-size: 20vw;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(16, 31, 30, 0.035);
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
}
.hero__grid {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  column-gap: 60px;
  align-items: stretch;   /* левая колонка = высоте формы */
}

/* Левая колонка: заголовок сверху, фото занимает остаток высоты */
.hero__left {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.hero__head { flex: none; }
.hero__gift { display: none; }   /* только мобильная версия */
.hero__eyebrow { margin-bottom: 20px; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 3.7vw, 3.2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
}
.hero__title em { font-style: italic; color: var(--brand); }
/* Переносы: на десктопе рвём после «−30%», на мобильном — после «скидку» */
.br-m { display: none; }
.br-d { display: inline; }

.hero__visual {
  position: relative;
  flex: 1;
  min-height: 0;
  margin-top: 26px;
}
.hero__img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 24px 40px rgba(16, 31, 30, 0.16));
}
.hero__glow {
  position: absolute;
  top: 55%; left: 50%;
  transform: translate(-50%, -50%);
  width: 78%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(14, 177, 175, 0.20) 0%, rgba(14, 177, 175, 0) 66%);
  z-index: -1;
}

/* ─────────── Полоса под героем: текст + показатели ── */
.intro { padding: 10px 0 70px; }
.intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.intro__text { font-size: 1.05rem; color: var(--ink-soft); }
.intro__text strong { color: var(--ink); font-weight: 700; }

.facts {
  display: flex;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.fact { flex: 1; padding: 18px 0; }
.fact + .fact { border-left: 1px solid var(--line); padding-left: 24px; }
.fact__num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1.1;
}
.fact__txt {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* ─────────────────────────────── FORM CARD ── */
.form-card {
  background: var(--paper-card);
  border: 1px solid var(--line);
  box-shadow: 0 28px 60px -34px rgba(16, 31, 30, 0.34);
  padding: 34px 36px 32px;
  position: relative;
}
.form-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 64px; height: 3px;
  background: var(--brand);
}
.form-card__title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 6px;
}
.form-card__text { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.55; }

.countdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 0 20px;
  padding: 12px 16px;
  background: var(--brand-soft);
  border-left: 3px solid var(--brand);
}
.countdown__label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-deep);
}
.countdown__time { display: flex; align-items: baseline; gap: 3px; }
.countdown__num {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-deep);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.countdown__sep { color: var(--brand); font-weight: 800; }

.form__field { margin-bottom: 4px; }
.form__input {
  width: 100%;
  padding: 12px 2px;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.3s;
}
.form__input::placeholder { color: #9aa8a7; }
.form__input:focus { outline: none; border-color: var(--brand); }

.form__check { display: flex; align-items: center; gap: 10px; margin: 16px 0 18px; }
.form__check input { accent-color: var(--brand); width: 15px; height: 15px; flex: none; }
.form__check label { font-size: 0.8rem; color: var(--ink-soft); line-height: 1.4; }

.form__error {
  font-size: 0.82rem;
  line-height: 1.45;
  color: #b3261e;
  background: rgba(179, 38, 30, 0.07);
  border-left: 3px solid #b3261e;
  padding: 10px 14px;
  margin-bottom: 14px;
}
.form__error[hidden] { display: none; }

.form__note {
  font-size: 0.72rem;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 12px;
}

/* ─────────────────────────────── SECTIONS ── */
.section { padding: 110px 0; }
.section--line { border-top: 1px solid var(--line); }
.section--brand {
  background: var(--brand);
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  overflow: hidden;
}
.section--brand::before {
  content: '';
  position: absolute;
  top: -25%; right: -8%;
  width: 55%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, transparent 68%);
}
.section--brand .container { position: relative; z-index: 2; }

/* ─────────────────────────────── STEPS ── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.step {
  padding: 38px 28px 34px 0;
  border-right: 1px solid var(--line);
  position: relative;
}
.step:last-child { border-right: none; }
.step::after {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--brand);
  transition: width 0.6s var(--ease);
}
.step:hover::after { width: 100%; }
.step:not(:first-child) { padding-left: 28px; }

.step__num { font-family: var(--font-display); font-size: 0.95rem; letter-spacing: 0.1em; color: var(--sand); }
.step__icon {
  color: var(--brand);
  margin: 20px 0 18px;
  width: 30px; height: 30px;
  transition: transform 0.5s var(--ease);
}
.step:hover .step__icon { transform: translateY(-4px); }
.step__title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; }
.step__text { font-size: 0.9rem; color: var(--ink-soft); }

.steps__foot {
  margin-top: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* ─────────────────────────────── BENEFITS ── */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.benefit {
  background: var(--brand);
  padding: 42px 34px;
  transition: background 0.45s var(--ease);
}
.benefit:hover { background: var(--brand-dark); }
.benefit__icon { color: #fff; width: 26px; height: 26px; margin-bottom: 22px; }
.benefit__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.benefit__text { font-size: 0.9rem; line-height: 1.7; color: rgba(255, 255, 255, 0.88); }

/* ─────────────────────────────── CATALOG ── */
.catalog { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.card {
  background: var(--paper-card);
  border: 1px solid var(--line);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 24px 44px -24px rgba(16, 31, 30, 0.3); }
.card__media {
  aspect-ratio: 4 / 3;
  background-color: #f1ece4;
  background-size: 62% auto;      /* фото целиком, с воздухом по краям */
  background-repeat: no-repeat;
  background-position: center;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background-size 0.5s var(--ease);
}
.card:hover .card__media { background-size: 66% auto; }
.card__code {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--brand);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 5px 12px;
}
.card__body { padding: 26px 26px 28px; }
.card__type {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-deep);
  display: block;
  margin-bottom: 16px;
}
.card__notes { display: grid; grid-template-columns: 84px 1fr; gap: 6px 12px; }
.card__notes dt {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9aa8a7;
  padding-top: 2px;
}
.card__notes dd { font-size: 0.88rem; }

/* ─────────────────────────────── TABS ── */
.tabs__nav { display: flex; border-bottom: 1px solid var(--line); }
.tab-btn {
  padding: 16px 30px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.35s var(--ease);
}
.tab-btn:hover { color: var(--ink); }
.tab-btn--active { color: var(--brand-deep); border-bottom-color: var(--brand); }

.tab-panel { display: none; grid-template-columns: 1fr 1fr; align-items: stretch; }
.tab-panel--active { display: grid; animation: fadeUp 0.6s var(--ease); }
.tab-panel__img { background-size: cover; background-position: center; min-height: 420px; }
.tab-panel__body {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-left: none;
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tab-panel__role { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sand); margin-bottom: 14px; }
.tab-panel__title { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; margin-bottom: 18px; }
.tab-panel__list { list-style: none; margin: 22px 0 30px; }
.tab-panel__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--line);
}
.tab-panel__list .icon { width: 17px; height: 17px; color: var(--brand); margin-top: 4px; }
.tab-panel__body .btn { align-self: flex-start; }

/* ─────────────────────────────── CONTACTS ── */
.contacts { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.contact-list { list-style: none; margin-top: 34px; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: padding-left 0.4s var(--ease);
}
.contact-row:hover { padding-left: 10px; }
.contact-row .icon { color: #fff; }
.contact-row__label { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255, 255, 255, 0.7); }
.contact-row__value { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: #fff; }
.contact-row:hover .contact-row__value { color: #fdf6e3; }
.contacts__img {
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
  object-position: center;
}

/* ─────────────────────────────── FOOTER ── */
.footer { background: var(--paper); border-top: 1px solid var(--line); padding: 46px 0; }
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
}
.footer__logo { height: 28px; opacity: 0.8; }
.footer__info { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.9; }

/* ─────────────────────────────── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.revealed { opacity: 1; transform: none; }
.reveal--d1 { transition-delay: 0.1s; }
.reveal--d2 { transition-delay: 0.2s; }
.reveal--d3 { transition-delay: 0.3s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

/* ═════════════════════════════ RESPONSIVE ══ */

/* Невысокие десктопы — ужимаем герой */
@media (min-width: 1025px) and (max-height: 820px) {
  .hero__img { min-height: 150px; }
  .hero__visual { margin-top: 16px; }
  .form-card { padding: 26px 30px; }
  .form-card__title { font-size: 1.6rem; }
  .countdown { margin: 12px 0 14px; padding: 10px 14px; }
}

@media (max-width: 1024px) {
  .nav, .header__cta { display: none; }
  .burger { display: block; }

  .hero { min-height: 0; padding: 30px 0 40px; }
  .hero__grid { grid-template-columns: 1fr; row-gap: 26px; }
  .hero__left { display: contents; }          /* заголовок → форма → фото */
  .hero__head { text-align: center; order: 1; }
  .hero__eyebrow { justify-content: center; }
  .hero__form { order: 2; max-width: 540px; width: 100%; margin: 0 auto; }
  .hero__visual { order: 3; max-width: 460px; margin: 6px auto 0; }
  .hero__img { height: auto; min-height: 0; }

  .intro { padding: 0 0 60px; }
  .intro__inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .intro__text { max-width: 620px; margin: 0 auto; }

  .steps { grid-template-columns: 1fr 1fr; }
  .step { border-bottom: 1px solid var(--line); padding: 32px 24px 30px; }
  .step:nth-child(2n) { border-right: none; }
  .step:not(:first-child) { padding-left: 24px; }
  .benefits { grid-template-columns: 1fr 1fr; }
  .catalog { grid-template-columns: 1fr 1fr; }
  .tab-panel--active { grid-template-columns: 1fr; }
  .tab-panel__img { min-height: 280px; }
  .tab-panel__body { border-left: 1px solid var(--line); padding: 40px 32px; }
  .contacts { grid-template-columns: 1fr; gap: 40px; }
}

/* Мобильные: форма обязана попадать в первый экран */
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section { padding: 74px 0; }

  .hero { padding: 20px 0 40px; }
  .hero__grid { row-gap: 18px; }

  /* Заголовок слева, справа от него — фото подарка */
  .hero__head {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
  }
  .hero__head-text { flex: 1; min-width: 0; }
  .hero__gift {
    display: block;
    flex: none;
    width: 32%;
    max-width: 128px;
    height: auto;
    filter: drop-shadow(0 12px 20px rgba(16, 31, 30, 0.16));
  }

  .hero__eyebrow {
    justify-content: flex-start;
    margin-bottom: 10px;
    font-size: 0.6rem;
    letter-spacing: 0.14em;
  }
  .hero__eyebrow::before { display: none; }
  .hero__title {
    font-size: clamp(1.45rem, 5.6vw, 2rem);
    font-weight: 700;
    line-height: 1.18;
  }
  .hero__title em { font-size: 1.18em; font-weight: 800; }
  .br-m { display: inline; }
  .br-d { display: none; }
  /* «−30% на парфюм» держим в одну строку */
  .hero__offer { white-space: nowrap; }
  .hero__offer em { margin-right: 0.12em; }

  .hero__gift { width: 27%; max-width: 108px; }
  .hero__visual { margin-top: 0; }

  .facts { flex-direction: column; }
  .fact + .fact { border-left: none; border-top: 1px solid var(--line); padding-left: 0; }

  .form-card { padding: 24px 20px 22px; }
  /* Не антиква, а гротеск капслоком — чтобы не путался с H1 */
  .form-card__title {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }
  .form-card__text { display: none; }
  .countdown { margin: 14px 0 14px; padding: 9px 12px; }
  .countdown__label { font-size: 0.64rem; letter-spacing: 0.1em; }
  .countdown__num { font-size: 1.1rem; }
  .form__input { padding: 11px 2px; font-size: 0.92rem; }
  .form__check { margin: 14px 0 14px; }
  .btn { padding: 14px 26px; }

  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; padding-left: 0 !important; }
  .benefits, .catalog { grid-template-columns: 1fr; }
  .topbar__caption { font-size: 0.55rem; letter-spacing: 0.16em; }
  .steps__foot { justify-content: center; text-align: center; }
  .footer__inner { flex-direction: column; text-align: center; }
}

/* Совсем низкие экраны: счётчик оставляем, ужимаем отступы */
@media (max-width: 640px) and (max-height: 700px) {
  .hero__title { font-size: 1.6rem; }
  .hero__gift { max-width: 92px; }
  .form-card { padding: 18px 18px 18px; }
  .countdown { margin: 10px 0 10px; padding: 7px 10px; }
  .countdown__label { font-size: 0.58rem; letter-spacing: 0.08em; }
  .countdown__num { font-size: 1rem; }
  .form__input { padding: 9px 2px; }
  .form__check { margin: 10px 0; }
}
