/* Лендинг Сорокиной Е. А. Вёрстка по утверждённому макету. */

:root {
  --bg: #F5F3EF;
  --bg-tint: #E9E5DF;
  --panel: #FCFBF9;
  --panel-warm: #DFD9D1;
  --shot: #E1DDD7;
  --ink: #2A211C;
  --ink-2: #3A2E27;
  --muted: #5F544B;
  --muted-2: #8A7C71;
  --line: rgba(42, 33, 28, .13);
  --line-soft: rgba(42, 33, 28, .07);
  --accent: #644C3E;
  --accent-dark: #503C2F;
  --accent-link: #503C2F;
  --accent-soft: #B9A596;
  --btn: #241C16;
  --btn-hover: #3E332B;
  --serif: Lora, Georgia, serif;
  --sans: "Golos Text", system-ui, -apple-system, sans-serif;
  --shell: 1180px;
  --pad-x: clamp(20px, 5vw, 64px);
  --pad-y: clamp(54px, 6vw, 96px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-link); }

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

input, textarea, button, select { font: inherit; color: inherit; }
input::placeholder, textarea::placeholder { color: #8F8982; }

h1, h2, h3 { margin: 0; font-weight: 500; }

.shell { max-width: var(--shell); margin: 0 auto; }

.section { padding: var(--pad-y) var(--pad-x); }
.section--tint { background: var(--bg-tint); }

.section__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -.01em;
}
.section__title--narrow { max-width: 760px; }
.section__title--tight { max-width: 640px; }

.section__lead {
  margin: 18px 0 0;
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--ink-2);
}

.text { margin: 0; font-size: 16.5px; line-height: 1.62; color: var(--muted); }
.text--ink { color: var(--ink-2); }

/* Значки */

.icon { width: 22px; height: 22px; flex: 0 0 auto; }

/* Кнопки */

.btn {
  display: inline-block;
  background: var(--btn);
  color: #fff;
  border: 0;
  border-radius: 999px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.btn:hover { background: var(--btn-hover); color: #fff; }

.btn--sm { padding: 12px 24px; font-size: 14.5px; box-shadow: 0 6px 18px rgba(36, 28, 22, .18); }
.btn--md { padding: 15px 30px; font-size: 15.5px; box-shadow: 0 8px 22px rgba(36, 28, 22, .16); }
.btn--price { padding: 16px 32px; font-size: 15.5px; box-shadow: 0 8px 22px rgba(36, 28, 22, .16); }
.btn--lg { padding: 17px 34px; font-size: 16px; box-shadow: 0 10px 26px rgba(36, 28, 22, .2); }
.btn--form { padding: 17px 36px; font-size: 16px; box-shadow: 0 10px 26px rgba(36, 28, 22, .2); }

/* Кнопка перехода в Telegram: та же форма, но контуром */
.btn--ghost-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(42, 33, 28, .22);
  box-shadow: none;
}
.btn--ghost-dark:hover { background: var(--btn); color: #fff; border-color: var(--btn); }
.btn--telegram { padding: 14px 28px; font-size: 15.5px; }
.btn.is-disabled { opacity: .45; cursor: default; }
.btn--ghost-dark.is-disabled:hover { background: transparent; color: var(--ink); border-color: rgba(42, 33, 28, .22); }
.btn--telegram .icon { width: 20px; height: 20px; }

/* Шапка */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 243, 239, .88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(42, 33, 28, .08);
  transition: box-shadow .25s ease;
}
.site-header.is-stuck { box-shadow: 0 10px 30px rgba(48, 44, 40, .07); }

.site-header__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 76px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand { display: flex; align-items: center; gap: 14px; color: inherit; flex: 0 0 auto; }
.brand:hover { color: inherit; }
.brand__logo { width: auto; height: 38px; flex: 0 0 auto; }
.brand__text { display: flex; flex-direction: column; gap: 2px; }
.brand__name { font-size: 15px; font-weight: 500; letter-spacing: .01em; }
.brand__role { font-size: 12.5px; color: var(--muted-2); letter-spacing: .04em; }

.nav { margin-left: auto; display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav__link { font-size: 14.5px; color: var(--muted); }
.nav__link:hover { color: var(--accent-link); }

.head-cta { flex: 0 0 auto; }

/* Бургер: раскрывающееся меню на планшете и телефоне */

.burger { display: none; margin-left: auto; position: relative; }
.burger > summary { list-style: none; }
.burger > summary::-webkit-details-marker { display: none; }

.burger__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 12px 20px;
  border: 1px solid rgba(42, 33, 28, .18);
  border-radius: 999px;
  font-size: 14.5px;
  color: var(--ink-2);
  min-height: 44px;
}
.burger__lines { display: flex; flex-direction: column; gap: 4px; width: 16px; }
.burger__lines span { display: block; height: 1.5px; background: var(--ink-2); border-radius: 2px; }
.burger[open] .burger__lines { opacity: .5; }

.burger__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: min(300px, calc(100vw - 40px));
  background: var(--panel);
  border: 1px solid rgba(42, 33, 28, .09);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 22px 50px rgba(48, 44, 40, .16);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.burger__link { padding: 13px 14px; border-radius: 12px; font-size: 16px; color: var(--ink-2); }
.burger__link:hover { background: var(--bg-tint); color: var(--ink-2); }
.burger__cta {
  margin-top: 8px;
  text-align: center;
  background: var(--btn);
  color: #fff;
  padding: 15px 20px;
  border-radius: 999px;
  font-size: 15.5px;
  font-weight: 500;
}
.burger__cta:hover { background: var(--btn-hover); color: #fff; }

/* Первый экран */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  gap: clamp(28px, 3.6vw, 56px);
  align-items: stretch;
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(44px, 5vw, 80px) 0 clamp(52px, 6vw, 96px) var(--pad-x);
}

.hero__body { max-width: 640px; justify-self: end; width: 100%; padding-top: clamp(0px, 2vw, 26px); }

.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.06;
  letter-spacing: -.015em;
  text-wrap: balance;
}
.hero__accent { color: #7E5D4A; }

.hero__lead {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: clamp(20px, 2.2vw, 28px);
  max-width: 520px;
}
.hero__lead p { margin: 0; font-size: clamp(16px, 1.15vw, 17.5px); line-height: 1.62; color: var(--muted); }

.callout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: clamp(20px, 2.4vw, 28px);
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 22px 26px;
  max-width: 560px;
  box-shadow: 0 2px 10px rgba(48, 44, 40, .04);
}
.callout__mark { color: var(--accent); display: flex; padding-top: 2px; }
.callout__mark .icon { width: 20px; height: 20px; }
.callout__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.62;
  font-weight: 500;
  color: var(--ink-2);
}
.callout--panel { margin-top: 0; max-width: 460px; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: clamp(20px, 2.4vw, 28px) 0 0; padding: 0; list-style: none; }
.chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--muted);
  background: var(--bg-tint);
  padding: 9px 18px;
  border-radius: 999px;
}
.chips--on-tint li { background: var(--panel); }
.icon--chip { width: 16px; height: 16px; color: var(--accent); }

.hero__action {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: clamp(24px, 2.6vw, 32px);
  align-items: flex-start;
}
.hero__note { margin: 0; font-size: 14px; line-height: 1.55; color: var(--muted-2); max-width: 420px; }

.shot {
  position: relative;
  overflow: hidden;
  background: var(--shot);
  background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, .5) 0 2px, transparent 2px 13px);
  display: flex;
  align-items: flex-end;
}
.shot__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.hero__shot { min-height: min(760px, 84vh); border-radius: 24px 0 0 24px; padding: 26px; }
/* портрет вертикальный, слот шире — кадрируем по лицу, а не по центру кадра */
.hero__shot .shot__img { object-position: 50% 45%; }
.hero__shot-inner {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.hero__card {
  background: rgba(250, 249, 247, .94);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 22px 26px;
  max-width: 400px;
  box-shadow: 0 18px 40px rgba(48, 44, 40, .10);
}
.hero__card-name { font-family: var(--serif); font-size: 19px; line-height: 1.3; }
.hero__card-role { font-size: 13.5px; color: var(--muted-2); margin-top: 8px; line-height: 1.5; }

.shot__label {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 11px;
  letter-spacing: .14em;
  color: #97918A;
  text-transform: uppercase;
}

/* Двухколоночные сетки блоков */

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 3.6vw, 56px);
  align-items: start;
}
.split--narrow-left { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); }
.split--wide-left { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); }
.split--media { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); align-items: center; }
.split--form { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); }

.sticky-col { position: sticky; top: 112px; }

.stack { display: flex; flex-direction: column; gap: 14px; padding-top: 6px; }
.stack--wide { gap: 22px; padding-top: 0; }

.requests__btn { margin-top: 26px; }

.approach__lead { margin-top: 20px; max-width: 700px; }
.approach__grid { margin-top: clamp(30px, 3.2vw, 46px); }

.process__lead { margin: 20px 0 0; font-size: 16.5px; line-height: 1.6; color: var(--muted); max-width: 420px; }

/* Нумерованный список */

.numbers { list-style: none; margin: 0; padding: 0; }
.numbers--grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: 0 clamp(32px, 4vw, 60px);
  margin-top: clamp(32px, 3.4vw, 48px);
}
.numbers--column { display: flex; flex-direction: column; }
.numbers--column .numbers__item:last-child { border-bottom: 1px solid var(--line); }

.numbers__item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.numbers--column .numbers__item { gap: 22px; }
.numbers__mark { color: var(--accent); display: flex; flex: 0 0 auto; padding-top: 2px; }
.numbers__text { margin: 0; font-size: 16.5px; line-height: 1.6; color: var(--ink-2); }

/* Список с тире */

.dashes { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 22px; }
.dashes__item { display: flex; gap: 16px; padding-top: 20px; border-top: 1px solid var(--line); }
.dashes__mark { color: var(--accent); font-family: var(--serif); line-height: 1.5; }
.dashes__text { margin: 0; font-size: 16.5px; line-height: 1.6; color: var(--ink-2); }

/* Цитата в конце блока */

.quote {
  margin: clamp(32px, 3.4vw, 48px) auto 0;
  max-width: 760px;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  color: var(--ink-2);
}

/* Карточки */

.cards { list-style: none; margin: 0; padding: 0; display: grid; }
.cards--plain {
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 14px;
}
.cards--titled {
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 16px;
  margin-top: clamp(30px, 3.2vw, 46px);
}

.card {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 26px 24px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  box-shadow: 0 2px 10px rgba(48, 44, 40, .03);
  transition: box-shadow .25s ease, transform .25s ease;
}
.card:hover { box-shadow: 0 12px 28px rgba(48, 44, 40, .08); }

.card--titled { border-radius: 18px; }
.card--titled:hover { box-shadow: 0 14px 32px rgba(48, 44, 40, .09); }
.card__mark { color: var(--accent); display: flex; margin-bottom: 14px; }
.card__title { font-family: var(--serif); font-size: 20px; line-height: 1.3; }
.cards--plain .card__text { margin: 0; color: var(--ink-2); }
.card__text { margin: 12px 0 0; font-size: 16px; line-height: 1.6; color: var(--muted); }

/* Блок «Обо мне» */

.about__shot { border-radius: 22px; min-height: min(560px, 70vh); padding: 22px; }
.about__shot .shot__img { object-position: 50% 25%; }
.about__body { max-width: 620px; }
.about__text { display: flex; flex-direction: column; gap: 18px; margin-top: 26px; }
.about__text p:first-child { font-size: clamp(17px, 1.3vw, 19px); line-height: 1.55; color: var(--ink-2); }
.about__text p { margin: 0; font-size: 16.5px; line-height: 1.62; color: var(--muted); }
.about .chips { margin-top: 28px; }

/* Шаги */

.steps-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 16px 28px; }
.steps-head__note { margin: 0; font-size: 16.5px; color: var(--muted-2); }

.steps {
  list-style: none;
  margin: clamp(30px, 3.2vw, 46px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: clamp(22px, 2.4vw, 36px);
}
.steps__item { border-top: 2px solid var(--accent-soft); padding-top: 22px; }
.steps__mark { color: var(--accent); display: flex; }
.steps__mark .icon { width: 28px; height: 28px; }
.steps__title { font-size: 17px; font-weight: 500; margin-top: 12px; }
.steps__text { margin: 10px 0 0; font-size: 15.5px; line-height: 1.6; color: var(--muted); }

/* Стоимость */

.price {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 3.6vw, 56px);
  align-items: start;
}
.price__card {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  padding: clamp(26px, 2.8vw, 38px);
  box-shadow: 0 14px 40px rgba(48, 44, 40, .06);
}
.price__title { font-family: var(--serif); font-weight: 500; font-size: clamp(28px, 3vw, 38px); line-height: 1.1; }
.price__caption { margin: 14px 0 0; font-size: 15.5px; color: var(--muted-2); }
.price__value {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid rgba(42, 33, 28, .12);
}
.price__duration { font-size: 16px; color: var(--muted); }
.price__amount { font-family: var(--serif); font-size: clamp(38px, 4.4vw, 56px); line-height: 1; color: var(--accent); }
.price__formats {
  list-style: none;
  margin: 26px 0 0;
  padding-top: 26px;
  border-top: 1px solid rgba(42, 33, 28, .12);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price__formats li { font-size: 16px; line-height: 1.55; color: var(--ink-2); }
.price__btn { margin-top: 32px; }

.terms { list-style: none; margin: 0; padding: 8px 0 0; display: flex; flex-direction: column; }
.terms li { margin: 0; padding: 22px 0; border-top: 1px solid var(--line); font-size: 16.5px; line-height: 1.62; color: var(--muted); }
.terms li:first-child { padding: 0 0 22px; border-top: 0; color: var(--ink-2); }
.terms li:last-child { padding-bottom: 0; }

/* Форма */

.form-aside__lead { margin: 20px 0 0; font-size: 16.5px; line-height: 1.62; color: var(--muted); max-width: 400px; }

.form {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  padding: clamp(24px, 2.6vw, 36px);
  box-shadow: 0 16px 44px rgba(48, 44, 40, .07);
}
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field__label { font-size: 13.5px; color: var(--muted-2); letter-spacing: .02em; }
.field__input {
  border: 0;
  border-bottom: 1px solid rgba(42, 33, 28, .2);
  background: transparent;
  padding: 10px 0;
  font-size: 16px;
  outline: none;
  border-radius: 0;
  transition: border-color .2s ease;
}
.field__input:focus { border-bottom-color: var(--accent); }
.field__input.is-error { border-bottom-color: #B4462F; }

.field--radio { gap: 10px; }
.radios { display: flex; gap: 8px; }
.radio {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(42, 33, 28, .16);
  border-radius: 999px;
  padding: 11px 14px;
  font-size: 15px;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.radio input { accent-color: var(--accent); margin: 0; }
.radio:has(input:checked) { border-color: var(--accent); background: rgba(100, 76, 62, .06); }

.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 26px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  cursor: pointer;
}
.consent input {
  margin: 2px 0 0;
  width: 18px;
  height: 18px;
  accent-color: var(--btn);
  flex: 0 0 auto;
}
.consent.is-error { color: #B4462F; }
.consent a { color: var(--accent-link); text-decoration: underline; text-underline-offset: 3px; }

.form__submit { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 22px; }

.form-telegram { margin-top: 22px; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.form-telegram__note { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--muted); }

.form__error { margin: 0; font-size: 13.5px; line-height: 1.5; color: #B4462F; }
.form__error--top { margin-bottom: 18px; }
.field .form__error { margin-top: 2px; }

.form__success { display: flex; flex-direction: column; gap: 12px; }
.form__success h3 { font-family: var(--serif); font-size: clamp(22px, 2vw, 28px); line-height: 1.2; }
.form__success p { margin: 0; font-size: 16.5px; line-height: 1.62; color: var(--muted); }

.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Подвал */

.site-footer {
  background: var(--ink);
  color: #E6E2DC;
  padding: clamp(44px, 4.6vw, 68px) var(--pad-x) 28px;
}
.site-footer a { color: #E6E2DC; }
.site-footer a:hover { color: #fff; }

.site-footer__top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: clamp(26px, 3vw, 44px);
}
.site-footer__brand { display: flex; align-items: center; gap: 14px; }
.site-footer__logo { width: auto; height: 40px; flex: 0 0 auto; }
.site-footer__ident { display: flex; flex-direction: column; gap: 3px; }
.site-footer__name { font-size: 15px; font-weight: 500; }
.site-footer__role { font-size: 12.5px; color: #9A948C; letter-spacing: .04em; }
.site-footer__note { margin: 20px 0 0; font-size: 14.5px; line-height: 1.6; color: #9A948C; max-width: 280px; }

.site-footer__col { display: flex; flex-direction: column; gap: 12px; }
.site-footer__caption { font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: #7A756E; font-weight: 400; }
.site-footer__link { font-size: 14.5px; }
.site-footer__muted { font-size: 14.5px; color: #9A948C; }
.site-footer__muted a { color: #9A948C; }
.site-footer__muted a:hover { color: #E6E2DC; }

.site-footer__bottom {
  margin-top: clamp(28px, 3vw, 42px);
  padding-top: 22px;
  border-top: 1px solid rgba(230, 226, 220, .14);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  font-size: 13px;
  color: #7A756E;
}

/* Нижняя панель на телефоне и планшете */

.mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(245, 243, 239, .94);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(42, 33, 28, .1);
}
.mobile-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  font-size: 16px;
  min-height: 52px;
  box-shadow: none;
}

/* Текстовая страница */

.page { padding: clamp(44px, 5vw, 76px) var(--pad-x) var(--pad-y); }
.page__shell { max-width: 760px; margin: 0 auto; }
.page__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -.01em;
}
.page__body { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
.page__body p { margin: 0; font-size: 16.5px; line-height: 1.7; color: var(--muted); }
.page__back { margin: 40px 0 0; font-size: 15.5px; }

/* Появление блоков при прокрутке */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }

.reveal-item {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease var(--reveal-delay, 0ms), transform .6s ease var(--reveal-delay, 0ms);
}
.reveal-item.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-item { opacity: 1; transform: none; transition: none; }
}

/* Адаптив по макету */

@media (max-width: 1080px) {
  .nav { display: none; }
  .head-cta { display: none; }
  .burger { display: block; }
  .brand { flex: 1 1 auto; min-width: 0; }
  .site-header__inner { gap: 16px; }
}

@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; padding-right: var(--pad-x); gap: 44px; }
  .hero__shot { min-height: 440px; border-radius: 22px; margin: 0; }
  .hero__shot .shot__img { object-position: 50% 22%; }
  .about__shot .shot__img { object-position: 50% 16%; }
  .split, .split--narrow-left, .split--wide-left, .split--media, .split--form { grid-template-columns: 1fr; }
  .price { grid-template-columns: 1fr; }
  .sticky-col { position: static; }
}

@media (max-width: 860px) {
  .mobile-bar { display: flex; }
  /* место под фиксированную панель отдаёт сам подвал, иначе внизу остаётся светлая полоса */
  .site-footer { padding-bottom: 112px; }
  .site-footer__col { gap: 2px; }
  .site-footer__link, .site-footer__muted { min-height: 44px; display: flex; align-items: center; }
}

@media (max-width: 640px) {
  .hero__shot { min-height: 340px; padding: 16px; border-radius: 18px; }
  .hero__shot .shot__img { object-position: 50% 30%; }
  .hero__card { padding: 16px 18px; max-width: 100%; }
  .hero__card-name { font-size: 17px; }
  .shot__label { display: none; }
  .numbers__item, .numbers--column .numbers__item { padding: 16px 0; gap: 14px; }
  .card { padding: 20px 20px; border-radius: 14px; }
  .btn--lg, .btn--md, .btn--price, .btn--form { width: 100%; text-align: center; padding-left: 20px; padding-right: 20px; }
  .quote { font-size: 19px; text-align: left; }
  .callout, .price__card, .form { padding: 20px 18px; border-radius: 16px; }
}

@media (max-width: 620px) {
  .form__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .brand__role { display: none; }
  .brand__name { font-size: 13.5px; line-height: 1.25; }
  .burger__btn { padding: 12px 14px; font-size: 0; gap: 0; }
  .burger__lines { width: 18px; }
}
