/* =========================================================
   Barez — Кожгалантерея оптом
   Направление «Мастеровая»: сланец + коньячная кожа,
   Unbounded / Manrope, сквозной седельный шов (stitch).
   ========================================================= */

:root {
  /* Палитра */
  --slate:        #34495E;
  --slate-deep:   #243342;
  --ink:          #1C2A36;
  --cognac:       #B8763E;
  --cognac-dark:  #9A5F2E;
  --cognac-soft:  #D89A5E;
  --sand:         #EFE7DA;
  --sand-deep:    #E4D8C6;
  --cream:        #FAF8F4;
  --white:        #FFFFFF;
  --muted:        #6B7A89;
  --muted-light:  #A9B6C2;
  --line:         #DED2BF;

  /* Типографика */
  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body:    "Manrope", system-ui, -apple-system, sans-serif;

  /* Радиусы и тени */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(28,42,54,.06);
  --shadow:    0 14px 40px -18px rgba(28,42,54,.30);
  --shadow-lg: 0 30px 70px -28px rgba(28,42,54,.45);

  /* Сетка */
  --maxw: 1180px;
  --gut:  clamp(20px, 5vw, 40px);

  /* Седельный шов (stitch) — наклонные стежки */
  --stitch: repeating-linear-gradient(115deg,
      var(--cognac) 0 9px, transparent 9px 19px);
}

/* ------------------------------ База ------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

/* hidden-атрибут должен побеждать любые display из классов (.form, .field и т.п.) */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--slate);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.ico { width: 1.15em; height: 1.15em; flex: none; }

/* ------------------------------ Eyebrow / заголовки секций ------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .80rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}
.eyebrow--cognac { color: var(--cognac-dark); }

.section { padding-block: clamp(64px, 9vw, 116px); }
.section--sand  { background: var(--sand); }
.section--label { background: var(--cream); }

.section__head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section__title {
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  font-weight: 800;
}
.section__title--light { color: var(--white); }
.section__note, .section__head .section__note { color: var(--muted); margin: 14px 0 0; }

/* ------------------------------ Седельный шов ------------------- */
.stitch { height: 10px; width: 100%; background-image: var(--stitch); opacity: .9; }
.stitch--hero { margin-top: clamp(40px, 6vw, 72px); opacity: .5; }
.stitch--inset { height: 8px; opacity: .35; margin-block: 6px;
  -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }

/* ------------------------------ Кнопки ------------------------------ */
.btn {
  --btn-bg: var(--slate);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .98rem;
  line-height: 1;
  color: var(--btn-fg);
  background: var(--btn-bg);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--cognac); outline-offset: 3px; }

.btn--primary { --btn-bg: var(--cognac); box-shadow: 0 12px 26px -12px rgba(184,118,62,.8); }
.btn--primary:hover { --btn-bg: var(--cognac-dark); box-shadow: 0 16px 32px -12px rgba(184,118,62,.9); }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--ink);
  border: 1.5px solid rgba(28,42,54,.22);
}
.btn--ghost:hover { --btn-bg: rgba(28,42,54,.05); border-color: rgba(28,42,54,.4); }

.btn--wa { --btn-bg: #25D366; --btn-fg: #04361b; }
.btn--wa:hover { --btn-bg: #20bd5a; }
.btn--tg { --btn-bg: #2AABEE; --btn-fg: #042c42; }
.btn--tg:hover { --btn-bg: #1f9bdb; }

.btn--lg { padding: 17px 30px; font-size: 1.05rem; }
.btn--block { width: 100%; }

.btn__spinner { display: none; width: 18px; height: 18px; border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,.45); border-top-color: #fff; animation: spin .7s linear infinite; }
.btn.is-loading { pointer-events: none; opacity: .85; }
.btn.is-loading .btn__spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ------------------------------ Шапка ------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250,248,244,.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; gap: 24px; height: 72px; }

.brand { display: flex; align-items: baseline; gap: 10px; }
.brand__mark {
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  display: grid; place-items: center; width: 38px; height: 38px;
  color: var(--cream); background: var(--slate-deep);
  border-radius: 10px; align-self: center;
  box-shadow: inset 0 0 0 1.5px rgba(184,118,62,.5);
}
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: var(--ink); letter-spacing: -.02em; }
.brand__tag { font-size: .72rem; color: var(--muted); letter-spacing: .04em; text-transform: lowercase; }

.header__nav { display: flex; gap: 26px; margin-left: auto; }
.header__nav a { font-weight: 600; font-size: .94rem; color: var(--slate); position: relative; padding: 4px 0; }
.header__nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--cognac); transition: width .22s ease; }
.header__nav a:hover { color: var(--ink); }
.header__nav a:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 12px; }
.header__phone { font-weight: 700; color: var(--ink); font-size: .98rem; }
.header__phone:hover { color: var(--cognac-dark); }
.header__actions .btn { padding: 10px 16px; font-size: .9rem; }

/* ------------------------------ HERO ------------------------------ */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 88% -10%, rgba(184,118,62,.10), transparent 55%),
    linear-gradient(180deg, var(--cream), var(--cream));
  padding-top: clamp(48px, 7vw, 88px);
  padding-bottom: 0;
}
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }

.hero__title {
  font-size: clamp(2.5rem, 6.4vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 8px 0 22px;
}
.hero__title .hl {
  color: var(--cognac);
  position: relative;
  white-space: nowrap;
}
.hero__title .hl::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .04em; height: 7px;
  background-image: var(--stitch); opacity: .85;
}

.hero__sub { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--slate); max-width: 560px; margin: 0 0 30px; }
.hero__sub strong { color: var(--ink); }

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }

.hero__trust { list-style: none; display: flex; flex-wrap: wrap; gap: 14px 28px; padding: 0; margin: 0; }
.hero__trust li { font-size: .92rem; color: var(--muted); display: flex; flex-direction: column; line-height: 1.25; }
.hero__trust strong { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; color: var(--ink); }

/* Hero showcase */
.hero__showcase { position: relative; min-height: 420px; }
.showcase__card { position: absolute; background: var(--white); border-radius: var(--r-lg); padding: 14px; box-shadow: var(--shadow-lg); border: 1px solid rgba(28,42,54,.06); }
.showcase__card--main { left: 4%; top: 6%; width: 70%; z-index: 2; }
.showcase__card--a { right: 0; top: 0; width: 40%; z-index: 3; }
.showcase__card--b { right: 6%; bottom: 4%; width: 42%; z-index: 3; }

.showcase__meta { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; padding: 0 4px; }
.chip { font-size: .78rem; font-weight: 600; color: var(--muted); }
.price { font-family: var(--font-display); font-weight: 700; color: var(--cognac-dark); font-size: 1.05rem; }
.price--sm { font-size: .92rem; display: block; margin-top: 8px; padding-left: 4px; }

.showcase__badge {
  position: absolute; left: 0; bottom: -16px; z-index: 4;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--slate-deep); color: var(--cream);
  font-size: .82rem; font-weight: 600; padding: 9px 15px; border-radius: 999px;
  box-shadow: var(--shadow);
}
.showcase__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #34d17a; box-shadow: 0 0 0 4px rgba(52,209,122,.25); }

/* ------------------------------ Плейсхолдеры фото ------------------ */
.ph {
  position: relative; width: 100%; border-radius: var(--r);
  background:
    repeating-linear-gradient(135deg, rgba(28,42,54,.035) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, var(--sand) 0%, var(--sand-deep) 100%);
  display: grid; place-items: center; overflow: hidden;
}
.ph span { font-size: .82rem; font-weight: 600; letter-spacing: .03em; color: var(--muted); text-transform: uppercase; }
.ph::after { content: ""; position: absolute; inset: 10px; border: 1.5px dashed rgba(107,122,137,.35); border-radius: calc(var(--r) - 6px); pointer-events: none; }
.ph--4x3 { aspect-ratio: 4 / 3; }
.ph--1x1 { aspect-ratio: 1 / 1; }
.ph--label { aspect-ratio: 5 / 4; border-radius: var(--r-lg); }

/* ------------------------------ Сетки / карточки ------------------ */
.grid { display: grid; gap: clamp(16px, 2vw, 22px); }
.grid--benefits   { grid-template-columns: repeat(3, 1fr); }
.grid--catalog    { grid-template-columns: repeat(3, 1fr); }
.grid--guarantees { grid-template-columns: repeat(4, 1fr); }

.card { background: var(--white); border: 1px solid rgba(28,42,54,.07); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease; }
.card--benefit { padding: 28px; }
.card--benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(184,118,62,.35); }
.card--benefit h3 { font-size: 1.18rem; margin: 16px 0 8px; }
.card--benefit p { margin: 0; color: var(--muted); font-size: .98rem; }

.card__ico {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(140deg, var(--sand), var(--sand-deep));
  color: var(--cognac-dark);
}
.card__ico svg { width: 26px; height: 26px; }

/* Гарантии */
.card--guarantee { padding: 24px; display: flex; flex-direction: column; gap: 8px; }
.card--guarantee strong { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 1.05rem; }
.card--guarantee span { color: var(--muted); font-size: .92rem; }

/* ------------------------------ Селлеры (тёмный блок) ------------- */
.section--dark { background: var(--slate-deep); color: var(--cream);
  background-image: radial-gradient(100% 80% at 100% 0%, rgba(184,118,62,.16), transparent 60%); }
.sellers__inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.sellers__lead { color: var(--muted-light); font-size: 1.1rem; margin: 0 0 26px; max-width: 540px; }

.sellers__list { list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 16px; }
.sellers__list li { display: flex; gap: 14px; align-items: flex-start; }
.sellers__list strong { color: var(--white); }
.sellers__list div { color: var(--muted-light); font-size: .98rem; }
.tick { flex: none; display: grid; place-items: center; width: 26px; height: 26px; border-radius: 8px; background: rgba(184,118,62,.2); color: var(--cognac-soft); font-weight: 800; font-size: .85rem; }

.sellers__panel {
  background: linear-gradient(165deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  padding: 28px;
  backdrop-filter: blur(4px);
}
.panel__row { display: flex; flex-direction: column; padding: 10px 0; }
.panel__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--cognac-soft); line-height: 1; }
.panel__lbl { color: var(--muted-light); font-size: .9rem; margin-top: 6px; }
.panel__marks { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); }
.mark { font-size: .82rem; font-weight: 600; color: var(--cream); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); padding: 6px 12px; border-radius: 999px; }

/* ------------------------------ Ассортимент ------------------ */
.cat { background: var(--white); border: 1px solid rgba(28,42,54,.07); border-radius: var(--r-lg); padding: 12px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .25s ease; }
.cat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cat__meta { display: flex; align-items: center; justify-content: space-between; padding: 14px 8px 8px; gap: 12px; }
.cat__meta h3 { font-size: 1.02rem; font-weight: 700; }

/* Реальные фото товаров (hotlink с barez.ru). Если картинка не загрузится —
   под ней остаётся песочный плейсхолдер с подписью (.ph background + span). */
.ph--img { background: #fff; }
.ph--img::after { display: none; }
.ph--img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.ph--img span { z-index: 0; }
.cat:hover .ph--img img, .showcase__card:hover .ph--img img { transform: scale(1.05); }

/* Плитка-CTA в конце сетки ассортимента */
.cat--cta { background: var(--slate-deep); border: 0; padding: 0; overflow: hidden;
  background-image: radial-gradient(120% 100% at 100% 0%, rgba(184,118,62,.28), transparent 60%); }
.cat--cta a { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 8px; height: 100%; padding: 28px; color: var(--cream); }
.cat--cta__num { font-family: var(--font-display); font-weight: 800; font-size: 2.3rem; color: var(--cognac-soft); line-height: 1; }
.cat--cta__cap { color: var(--muted-light); font-size: .95rem; }
.cat--cta__link { margin-top: 14px; font-weight: 700; color: #fff; display: inline-flex; align-items: center; gap: 6px; }
.cat--cta:hover { transform: translateY(-4px); }
.cat--cta:hover .cat--cta__link { color: var(--cognac-soft); }

/* ------------------------------ Private label ------------------ */
.label__inner { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.label__copy p { color: var(--muted); }
.label__points { list-style: none; padding: 0; margin: 20px 0 28px; display: grid; gap: 10px; }
.label__points li { position: relative; padding-left: 26px; color: var(--ink); font-weight: 500; }
.label__points li::before { content: ""; position: absolute; left: 0; top: .5em; width: 14px; height: 6px; background-image: var(--stitch); }

/* ------------------------------ Как работаем (шаги) ------------------ */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 24px); counter-reset: s; }
.step { position: relative; background: var(--white); border: 1px solid rgba(28,42,54,.07); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow-sm); }
.step__num { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: var(--cognac); display: inline-block; margin-bottom: 12px; }
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { margin: 0; color: var(--muted); font-size: .95rem; }
/* шов-соединитель между шагами */
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 40px; right: -16px; width: 16px; height: 8px;
  background-image: var(--stitch); z-index: 2;
}

/* ------------------------------ Доверие: логотипы / отзывы ------- */
.logos { margin-top: clamp(40px, 5vw, 56px); text-align: center; }
.logos__label { display: block; font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.logos__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.logo-ph { display: grid; place-items: center; min-width: 130px; height: 56px; border: 1.5px dashed var(--line); border-radius: 12px; color: var(--muted-light); font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; }

.reviews { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.review { margin: 0; background: var(--sand); border-radius: var(--r-lg); padding: 28px; border-left: 4px solid var(--cognac); }
.review p { font-size: 1.08rem; color: var(--ink); margin: 0 0 14px; }
.review footer { color: var(--muted); font-weight: 600; font-size: .92rem; }

/* ------------------------------ Форма (тёмный блок) ------------------ */
.section--lead { background: var(--slate); color: var(--cream);
  background-image: radial-gradient(90% 120% at 0% 0%, rgba(184,118,62,.18), transparent 55%); }
.lead__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.lead__sub { color: var(--muted-light); font-size: 1.08rem; max-width: 460px; }
.lead__bul { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 12px; }
.lead__bul li { position: relative; padding-left: 28px; color: var(--cream); }
.lead__bul li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--cognac-soft); font-weight: 800; }

.lead__formwrap { position: relative; background: var(--cream); color: var(--slate); border-radius: var(--r-lg); padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow-lg); }

.form { display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label, .field__label { font-weight: 700; font-size: .92rem; color: var(--ink); }
.req { color: var(--cognac-dark); }

.field input[type=text], .field input[type=tel], .field select {
  width: 100%; padding: 14px 16px; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--white); border: 1.5px solid var(--line); border-radius: var(--r-sm);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field input::placeholder { color: var(--muted-light); }
.field input:focus, .field select:focus { outline: none; border-color: var(--cognac); box-shadow: 0 0 0 4px rgba(184,118,62,.16); }
.field input.is-invalid { border-color: #d9534f; box-shadow: 0 0 0 4px rgba(217,83,79,.14); }
.field__err { color: #c33; font-size: .85rem; font-weight: 600; }

.choices { display: flex; flex-wrap: wrap; gap: 10px; }
.choice { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border: 1.5px solid var(--line); border-radius: 999px; cursor: pointer; font-weight: 600; font-size: .92rem; transition: all .16s ease; }
.choice input { accent-color: var(--cognac); }
.choice:has(input:checked) { border-color: var(--cognac); background: rgba(184,118,62,.1); color: var(--cognac-dark); }
.choice:hover { border-color: var(--cognac-soft); }

.consent { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: var(--muted); cursor: pointer; }
.consent input { margin-top: 3px; accent-color: var(--cognac); width: 17px; height: 17px; flex: none; }
.consent a { color: var(--cognac-dark); text-decoration: underline; }

.form__hint { font-size: .82rem; color: var(--muted); margin: -4px 0 0; }
.form__error { background: rgba(217,83,79,.12); color: #b3322e; border-radius: var(--r-sm); padding: 12px 14px; font-size: .9rem; font-weight: 600; margin: 0; }

/* Экран успеха */
.success { text-align: center; padding: 18px 8px; }
.success__ico { display: grid; place-items: center; width: 68px; height: 68px; margin: 0 auto 18px; border-radius: 50%; background: rgba(52,209,122,.16); color: #1f9d5b; }
.success__ico svg { width: 34px; height: 34px; }
.success h3 { font-size: 1.5rem; margin-bottom: 10px; }
.success p { color: var(--muted); margin: 0 auto 22px; max-width: 360px; }
.success__alt { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.success__alt .btn { flex: 1 1 160px; }

/* ------------------------------ Футер ------------------------------ */
.site-footer { background: var(--ink); color: var(--muted-light); padding-block: clamp(48px, 6vw, 72px) 28px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer__col h4 { color: var(--white); font-size: 1rem; margin-bottom: 14px; font-family: var(--font-body); font-weight: 700; }
.footer__col a { display: block; color: var(--muted-light); padding: 4px 0; transition: color .16s ease; }
.footer__col a:hover { color: var(--cognac-soft); }
.footer__brand .brand__mark { margin-bottom: 14px; }
.footer__name { font-family: var(--font-display); font-weight: 800; color: var(--white); font-size: 1.4rem; margin: 0 0 6px; }
.footer__desc { font-size: .92rem; max-width: 280px; }
.footer__addr, .footer__legal { font-size: .85rem; margin-top: 10px; color: var(--muted); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .82rem; color: var(--muted); }

/* ------------------------------ Sticky CTA (моб.) ------------------ */
.mobilebar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(36,51,66,.94); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.1);
}
.mobilebar__main { flex: 1; }
.mobilebar__icon { width: 52px; flex: none; padding: 0; }

/* ------------------------------ Reveal-анимации ------------------ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal.is-in { opacity: 1; transform: none; }

/* ============================ Адаптив ============================ */
@media (max-width: 980px) {
  .grid--benefits, .grid--catalog { grid-template-columns: repeat(2, 1fr); }
  .grid--guarantees { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child)::after { display: none; }
  .hero__inner, .sellers__inner, .label__inner, .lead__inner { grid-template-columns: 1fr; }
  .hero__showcase { min-height: 360px; max-width: 460px; }
  .label__inner .label__media { order: 2; }
  .header__nav { display: none; }
  .reviews { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  /* Unbounded — широкий шрифт: уменьшаем дисплейные размеры, чтобы длинные
     слова («Кожгалантерея») не распирали контейнер за пределы экрана. */
  .hero__title { font-size: clamp(1.9rem, 8.5vw, 2.5rem); }
  .section__title { font-size: clamp(1.55rem, 7vw, 2rem); }
  h1, h2, h3, .hero__title, .section__title { overflow-wrap: anywhere; }
  .eyebrow { font-size: .72rem; letter-spacing: .1em; }
  .header__actions .btn span { display: none; }
  .header__actions .btn { padding: 10px; }
  .header__phone { display: none; }
  .grid--benefits, .grid--catalog, .grid--guarantees, .steps { grid-template-columns: 1fr; }
  .grid--catalog { grid-template-columns: repeat(2, 1fr); }
  .hero__cta .btn { width: 100%; }
  .mobilebar { display: flex; }
  body { padding-bottom: 76px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .hero__showcase { display: none; } /* экономим высоту первого экрана на мобиле */
}

@media (max-width: 380px) {
  .grid--catalog { grid-template-columns: 1fr; }
}

/* Доступность: уважение к reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card--benefit:hover, .cat:hover { transform: none; }
  .btn__spinner { animation: none; }
}
