/* ============================================================
   Kauneushoitola LeVida — landing styles (v2, точно по референсу)
   ============================================================ */

:root {
  --bg:          #f7f1e8;
  --bg-soft:     #f9f4ec;
  --card:        #fdfbf7;
  --white:       #ffffff;
  --sand:        #f0e6d7;
  --line:        #e9ddc9;
  --line-soft:   #f0e8da;
  --bronze:      #a9835a;
  --bronze-dark: #8d6a44;
  --bronze-deep: #6d5334;
  --title:       #3b2f1e;
  --text:        #463a2a;
  --muted:       #7d6c53;

  /* типографическая шкала: 5 размеров на весь сайт */
  --fs-title: 26px;   /* заголовки секций (сериф) */
  --fs-h3:    15px;   /* заголовки карточек */
  --fs-body:  14px;   /* основной текст */
  --fs-small: 13px;   /* второстепенный текст */
  --fs-tiny:  12.5px; /* служебный: кнопки, навигация, подписи */
  --shadow:      0 12px 34px rgba(109, 83, 52, .10);
  --shadow-soft: 0 4px 16px rgba(109, 83, 52, .06);
  --r-card:      16px;
  --r-btn:       8px;
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'Manrope', 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: clip;
}

/* акварельно-мраморная текстура фона (dense-версия; для отката:
   background: url("images/Compressed/bg-texture.png") center / cover no-repeat; opacity: .55;) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("images/Compressed/bg-texture-dense.png") center / cover no-repeat;
  opacity: .8;
  pointer-events: none;
  z-index: -1;
}

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

.container {
  max-width: 1392px;
  margin: 0 auto;
  padding: 0 36px;
}

/* ---------- icons ---------- */
.ic {
  width: 17px; height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
.ic--check {
  width: 14px; height: 14px;
  stroke-width: 2.4;
  color: var(--bronze);
}
/* сплошной глиф вместо контурного: на бейдже 15px обводка сливается в кашу */
.ic--solid { fill: currentColor; stroke: none; }

/* ---------- sprig ornament (веточка) ---------- */
.sprig-ic {
  display: block;
  width: 26px; height: 16px;
  margin: 8px auto 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 52 32'%3E%3Cg fill='none' stroke='%23a9835a' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M4 26 Q26 20 48 8'/%3E%3Cpath d='M14 24 q-2-8 4-12 q3 6-4 12z'/%3E%3Cpath d='M25 20 q-1-8 5-11 q2 6-5 11z'/%3E%3Cpath d='M36 15 q0-7 6-9 q1 5-6 9z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: .9;
}
.sprig-ic--left { margin-left: 0; margin-bottom: 18px; }

/* золотая точка-«мишень» для списков */
.dot-ic {
  flex: none;
  width: 14px; height: 14px;
  border: 1.4px solid var(--bronze);
  border-radius: 50%;
  position: relative;
  margin-top: 2px;
}
.dot-ic::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--bronze);
}

/* флаг Финляндии */
.flag {
  display: inline-block;
  width: 18px; height: 12px;
  border-radius: 2px;
  background:
    linear-gradient(to bottom, #fff 0 4px, #1e4f9c 4px 8px, #fff 8px 12px) 0 0 / 100% 100%,
    #fff;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
}
.flag::after {
  content: "";
  position: absolute;
  left: 5px; top: 0;
  width: 4px; height: 100%;
  background: #1e4f9c;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-btn);
  font-size: var(--fs-tiny);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: linear-gradient(180deg, #b59062 0%, #967149 100%);
  color: #fdf8f1;
  box-shadow: 0 6px 16px rgba(141, 106, 68, .28);
}
.btn--primary:hover {
  box-shadow: 0 9px 22px rgba(141, 106, 68, .4);
  transform: translateY(-1px);
}

.btn--ghost {
  background: rgba(255, 255, 255, .6);
  color: var(--bronze-dark);
  border: 1px solid var(--bronze);
}
.btn--ghost:hover { background: #fff; }

.btn--outline {
  background: transparent;
  color: var(--bronze-dark);
  border: 1px solid var(--line);
}
.btn--outline:hover { border-color: var(--bronze); background: rgba(169, 131, 90, .06); }

.btn--block { width: 100%; }
.btn--sm { padding: 11px 20px; font-size: 12px; }
.btn--xs { padding: 8px 16px; font-size: 11px; letter-spacing: .1em; }

/* ---------- реальные фото ---------- */
.photo {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.photo--interior { background-image: url("images/Compressed/salon-interior.png"); }
.photo--consult { background-image: url("images/Compressed/consult-shelf.png"); }
.photo--team { background-image: url("images/Compressed/master-team.png?v=3"); background-position: center 18%; }
.photo--hands { background-image: url("images/Compressed/procedure-hands.png?v=3"); }
.photo--face-proc { background-image: url("images/Compressed/procedure-face.png?v=3"); background-position: 58% center; }
.photo--feet { background-image: url("images/Compressed/procedure-feet.png?v=2"); }
.photo--brows { background-image: url("images/Compressed/procedure-brows.png?v=4"); }
.photo--body { background-image: url("images/Compressed/procedure-body.png"); }
.photo--wax { background-image: url("images/Compressed/procedure-wax.png?v=5"); }
.photo--candles { background-image: url("images/Compressed/hero.png"); background-position: right 30%; }
.photo--gift { background-image: url("images/Compressed/gift.png"); }
.photo--aside-face { background-image: url("images/Compressed/aside-face.png"); }
.photo--aside-feet { background-image: url("images/Compressed/aside-feet.png"); }
.photo--aside-hands { background-image: url("images/Compressed/aside-hands.png"); }
.photo--aside-brows { background-image: url("images/Compressed/aside-brows.png"); }
.photo--aside-wax { background-image: url("images/Compressed/aside-wax.png"); }
.photo--aside-body { background-image: url("images/Compressed/aside-body.png"); }

/* ---------- placeholders ---------- */
.ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background:
    radial-gradient(130% 110% at 25% 15%, rgba(255, 255, 255, .5) 0%, transparent 55%),
    linear-gradient(155deg, #eee1cf 0%, #e3d2b9 60%, #d9c6a8 100%);
  color: #ab9578;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  overflow: hidden;
  text-align: center;
}
.ph__ic {
  width: 34px; height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .75;
  flex: none;
}

/* ---------- section base ---------- */
.section { padding: 44px 0; position: relative; }
.section > .container { position: relative; z-index: 1; }

/* ---------- фоновые веточки по краям секций (как в референсе) ---------- */
#popular::before,
#about::before,
#contacts::before {
  content: "";
  position: absolute;
  left: -46px;
  bottom: -40px;
  width: 300px;
  height: 560px;
  background: url("images/Compressed/bg-branch-t.png") center / contain no-repeat;
  opacity: .5;
  pointer-events: none;
}
#about::before { width: 330px; height: 620px; bottom: -80px; }
#contacts::before { width: 270px; height: 500px; bottom: 40px; }

#why::after {
  content: "";
  position: absolute;
  right: -46px;
  top: -60px;
  width: 270px;
  height: 500px;
  background: url("images/Compressed/bg-branch-t.png") center / contain no-repeat;
  transform: scaleX(-1);
  opacity: .5;
  pointer-events: none;
}

.section__head {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}
.section__title {
  font-family: var(--serif);
  font-size: var(--fs-title);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--title);
  display: inline-block;
  position: relative;
  padding: 0 26px;
  background: transparent;
}
/* тонкие линии по бокам заголовка — флексом, без фоновой подложки */
.section__head--lines .section__title {
  display: flex;
  align-items: center;
  gap: 28px;
  width: 100%;
  padding: 0;
}
.section__head--lines .section__title::before,
.section__head--lines .section__title::after {
  content: "";
  flex: 1;
  height: 1px;
}
.section__head--lines .section__title::before {
  background: linear-gradient(to left, var(--line), transparent);
}
.section__head--lines .section__title::after {
  background: linear-gradient(to right, var(--line), transparent);
}

/* ============================================================
   TOP BAR (светлый)
   ============================================================ */
.topbar {
  background: #f3ebdf;
  border-bottom: 1px solid var(--line-soft);
  font-size: var(--fs-tiny);
  color: var(--text);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 38px;
}
.topbar__left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.topbar__sep {
  width: 1px;
  height: 14px;
  background: var(--line);
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
}
.topbar__item .ic {
  width: 14px; height: 14px;
  color: var(--bronze);
}
a.topbar__item:hover { color: var(--bronze-dark); }
.topbar__right {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
  font-weight: 500;
}
.topbar__right a:hover { color: var(--bronze-dark); }

/* переключатель языка */
.lang {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.lang__item {
  padding: 3px 7px;
  border-radius: 5px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--muted);
  transition: background .2s, color .2s;
}
.lang__item:hover { color: var(--bronze-dark); background: rgba(169, 131, 90, .1); }
.lang__item.is-active {
  background: var(--bronze);
  color: #fdf8f1;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 245, 237, .55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow .25s, background .25s;
}
.header.is-scrolled {
  background: rgba(250, 245, 237, .95);
  box-shadow: 0 6px 24px rgba(109, 83, 52, .1);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 72px;
}

/* logo: фирменная картинка, высота задаёт размер, ширина тянется по пропорции */
.logo { display: flex; align-items: center; flex: none; }
.logo__img {
  height: 46px;
  width: auto;
}

/* nav */
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
.nav__link {
  font-size: var(--fs-tiny);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--title);
  padding: 5px 0;
  position: relative;
  transition: color .2s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1.6px;
  background: var(--bronze);
  transition: right .25s ease;
}
.nav__link:hover, .nav__link.is-active { color: var(--bronze-dark); }
.nav__link:hover::after, .nav__link.is-active::after { right: 0; }
.nav__cta { display: none; }
.nav__contacts { display: none; } /* только внутри мобильной панели */

.header__cta { margin-left: 0; }

/* burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--card);
}
.burger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--bronze-deep);
  transition: transform .25s, opacity .25s;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  /* фото заходит под полупрозрачную шапку, как в референсе */
  margin-top: -72px;
  padding: 128px 0 84px;
  min-height: 660px;
  display: flex;
  align-items: center;
}
/* фоновое фото справа, мягко переходящее в фон */
.hero__photo {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 62%;
  background: url("images/Compressed/hero.png") center 20% / cover no-repeat;
  /* мягкое растворение по всем четырём краям: фото «вплывает» в фон,
     а не обрывается прямоугольником под шапкой и справа */
  --fade-x: linear-gradient(to right,
    transparent 0%, rgba(0, 0, 0, .25) 16%, #000 44%,
    #000 84%, rgba(0, 0, 0, .3) 95%, transparent 100%);
  --fade-y: linear-gradient(to bottom,
    transparent 0%, rgba(0, 0, 0, .35) 12%, #000 30%,
    #000 62%, rgba(0, 0, 0, .25) 92%, transparent 100%);
  -webkit-mask-image: var(--fade-x), var(--fade-y);
  -webkit-mask-composite: source-in;
  mask-image: var(--fade-x), var(--fade-y);
  mask-composite: intersect;
}

/* мобильный/планшетный баннер вместо фонового фото */
.hero__banner {
  display: none;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  background: url("images/Compressed/hero-mobile.png") center 32% / cover no-repeat;
  box-shadow: var(--shadow-soft);
  margin-bottom: 22px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero__content { max-width: 560px; }

.hero__title {
  font-family: var(--serif);
  font-size: clamp(40px, 4.6vw, 64px);
  font-weight: 600;
  line-height: 1.04;
  color: var(--bronze-deep);
  margin-bottom: 20px;
  max-width: 520px;
}
.hero__subtitle {
  font-size: var(--fs-body);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bronze-dark);
  line-height: 1.9;
  margin-bottom: 22px;
}
/* вводный абзац под слоганом: обычный регистр — после капса читается легче.
   Отрицательный отступ подбирает margin слогана, чтобы пара шла плотно */
.hero__lead {
  max-width: 54ch;
  font-size: var(--fs-body);
  line-height: 1.75;
  color: var(--text);
  margin: -10px 0 24px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.btn--lg { padding: 15px 32px; }

.hero__note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-small);
  color: var(--muted);
}
.hero__note .ic { width: 15px; height: 15px; color: var(--bronze); }

/* forms */
.form { display: flex; flex-direction: column; gap: 10px; }

/* ловушка для ботов: не видна и не доступна с клавиатуры */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}

.field { position: relative; }
.field--grow { flex: 1; }
.field input,
.field select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-btn);
  background: var(--white);
  font: inherit;
  font-size: var(--fs-body);
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' fill='none' stroke='%238d6a44' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 36px;
  color: var(--muted);
}
.field select:valid { color: var(--text); }
.field input::placeholder { color: var(--muted); }
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px rgba(169, 131, 90, .14);
}
/* нативная иконка календаря — в тон */
.field input[type="date"] { color: var(--text); }

.field-row { display: flex; gap: 8px; }
.field__prefix {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-btn);
  background: var(--white);
  font-size: 12.5px;
  color: var(--text);
  white-space: nowrap;
}

.form__note {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.4;
  margin-top: 2px;
}
.form__note .ic { width: 13px; height: 13px; margin-top: 1px; }

/* ============================================================
   ADVANTAGES BAR (слитная лента с разделителями)
   ============================================================ */
.advbar { padding: 26px 0 10px; }
.advbar__bar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.advbar__cell {
  position: relative;
  padding: 24px 18px 22px;
  text-align: center;
}
/* неполные вертикальные разделители с центровкой, как в референсе */
.advbar__cell + .advbar__cell::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 62%;
  width: 1px;
  background: var(--line-soft);
}
.advbar__icon {
  width: 38px; height: 38px;
  margin: 0 auto 14px;
  fill: none;
  stroke: var(--bronze);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.advbar__cell h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--title);
  line-height: 1.4;
  margin-bottom: 8px;
}
.advbar__cell p {
  font-size: var(--fs-small);
  color: var(--muted);
  line-height: 1.5;
}

/* ============================================================
   POPULAR PROCEDURES
   ============================================================ */
.popular__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}
.pcard { position: relative; }
.pcard__photo {
  aspect-ratio: 10 / 17;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}
/* плашка внутри изображения: фото видно по всем четырём граням */
.pcard__info {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 16px 14px 14px;
  box-shadow: 0 8px 22px rgba(109, 83, 52, .14);
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.pcard__info h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--title);
}
.pcard__info p {
  font-size: var(--fs-small);
  color: var(--muted);
  line-height: 1.5;
  min-height: 39px;
}

/* ============================================================
   WHY LeVida
   ============================================================ */
.why__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}
.why__card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 24px 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform .25s, box-shadow .25s;
}
.why__card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.why__icon {
  width: 36px; height: 36px;
  margin: 0 auto 14px;
  fill: none;
  stroke: var(--bronze);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why__card h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--title);
  line-height: 1.4;
  margin-bottom: 8px;
}
.why__card p {
  font-size: var(--fs-small);
  color: var(--muted);
  line-height: 1.55;
}

/* ============================================================
   SERVICES & PRICES
   ============================================================ */
/* табы-«вкладки»: каждая скруглена сверху, сидит на панели */
.tabs {
  display: flex;
  gap: 6px;
  padding: 0 16px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.tabs__btn {
  flex: 1;
  padding: 13px 18px 14px;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--text);
  background: #f1e9db;
  border: 1px solid var(--line-soft);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.tabs__btn:hover { color: var(--bronze-dark); background: #f6efe3; }
.tabs__btn.is-active {
  background: linear-gradient(180deg, #b59062 0%, #967149 100%);
  border-color: transparent;
  color: #fdf8f1;
}

/* единая панель на всю ширину: прайс + «что входит» внутри каждого таба */
.services {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  padding: 22px 28px;
  box-shadow: var(--shadow-soft);
  margin-top: -1px;
}

.panel { animation: panelIn .3s ease; }
.panel[hidden] { display: none; }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}
/* прайс на всю ширину панели */
.panel__grid { display: block; }
.panel__main { min-width: 0; }

.pricelist li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: var(--fs-body);
}
.pricelist li:last-child { border-bottom: none; }
.pricelist span { line-height: 1.45; }
.pricelist b {
  font-size: var(--fs-h3);
  font-weight: 800;
  color: var(--bronze-deep);
  white-space: nowrap;
}

/* ============================================================
   CONSULT CTA (светлый баннер)
   ============================================================ */
/* арочный портрет */
/* правое декоративное фото */

/* ============================================================
   ABOUT
   ============================================================ */
/* два равных столбца: слева текст и чипы, справа фото */
.about__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
  align-items: stretch;
}
.about__text .section__title { padding: 0; }
.about__text {
  display: flex;
  flex-direction: column;
}
.about__text > p {
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.about__chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
}
.chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 13px 16px;
  box-shadow: var(--shadow-soft);
  min-width: 0;
}
.chip__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--sand);
  flex: none;
}
.chip__icon {
  width: 19px; height: 19px;
  fill: none;
  stroke: var(--bronze-deep);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.chip__text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  min-width: 0;
}
.chip__text b {
  font-size: var(--fs-h3);
  font-weight: 800;
  color: var(--title);
}
.chip__text span {
  font-size: var(--fs-tiny);
  color: var(--muted);
}

/* фото тянется на всю высоту ряда — низ вровень с левой колонкой */
.about__media { display: flex; }
.ph--about {
  width: 100%;
  min-height: 100%;
  border-radius: var(--r-card);
  box-shadow: var(--shadow);
}

/* ============================================================
   STEPS (без карточек, со стрелками)
   ============================================================ */
/* соединительная линия через центры номеров */

/* ============================================================
   MASTER (о мастере)
   ============================================================ */
.master {
  display: grid;
  grid-template-columns: 400px minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  padding: 30px;
  box-shadow: var(--shadow-soft);
}
.master__media { position: relative; }
.master__photo {
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.master__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--bronze-dark);
  margin-bottom: 8px;
}
.master__name {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 600;
  color: var(--bronze-deep);
  line-height: 1.1;
  margin-bottom: 4px;
}
.master__role {
  font-size: var(--fs-small);
  color: var(--muted);
  margin-bottom: 16px;
}
.master__text {
  font-size: var(--fs-body);
  line-height: 1.7;
  margin-bottom: 12px;
  max-width: 640px;
}

/* ============================================================
   REVIEWS SLIDER
   ============================================================ */

/* слайдер во всю ширину контейнера: карточки на одной вертикали
   с остальными секциями, стрелки вынесены на поля */
.slider {
  --per-view: 4;
  position: relative;
}
.slider__viewport { overflow: hidden; }
.slider__track {
  display: flex;
  align-items: stretch;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}
.slide {
  flex: 0 0 calc(100% / var(--per-view));
  min-width: 0;
  padding: 4px 8px;
  display: flex;
}

/* карточка-сообщение: все одной высоты, скриншоты выровнены по верху */
.rmsg {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  padding: 14px 14px 12px;
  box-shadow: var(--shadow-soft);
}
.rmsg img {
  display: block;
  width: 100%;
  height: 330px;
  object-fit: contain;
  object-position: top center;
  border-radius: 12px;
}
.rmsg figcaption {
  margin-top: auto;
  padding-top: 14px;
  text-align: center;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--title);
}

.slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--bronze-dark);
  box-shadow: var(--shadow-soft);
  transition: background .2s, border-color .2s, transform .2s, opacity .2s;
}
.slider__arrow svg {
  width: 18px; height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.slider__arrow--prev { left: -22px; }
.slider__arrow--next { right: -22px; }
.slider__arrow:hover {
  border-color: var(--bronze);
  background: #fff;
  transform: translateY(-50%) scale(1.06);
}
.slider__arrow:disabled { opacity: .35; cursor: default; transform: translateY(-50%); }

.slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.slider__dots button {
  width: 8px; height: 8px;
  padding: 0;
  border-radius: 50%;
  background: var(--line);
  transition: background .25s, transform .25s, width .25s;
}
.slider__dots button.is-active {
  background: var(--bronze);
  width: 22px;
  border-radius: 4px;
}

/* ============================================================
   FAQ (2 колонки)
   ============================================================ */
.faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  align-items: start;
}
.faq__item {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px;
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--title);
  cursor: pointer;
  list-style: none;
  transition: color .2s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--bronze-dark); }
.faq__plus {
  position: relative;
  flex: none;
  width: 14px; height: 14px;
}
.faq__plus::before, .faq__plus::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 1.6px;
  background: var(--bronze);
  transform: translate(-50%, -50%);
  transition: transform .25s;
}
.faq__plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__plus::after { transform: translate(-50%, -50%) rotate(0); }

/* плавное раскрытие через grid-template-rows (без JS-анимации высоты) */
.faq__wrap {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  overflow: hidden;
  /* высоту анимирует JS (WAAPI); здесь только прозрачность — она композитная */
  transition: opacity .2s ease;
}
.faq__item.is-expanded .faq__wrap {
  grid-template-rows: 1fr;
  opacity: 1;
}
.faq__wrap > p {
  overflow: hidden;
  min-height: 0;
  padding: 0 18px 15px;
  font-size: var(--fs-small);
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   CONTACTS
   ============================================================ */
.contacts__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.85fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}
.ccard {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  padding: 24px 22px;
  box-shadow: var(--shadow-soft);
}
.ccard--flush { padding: 0; overflow: hidden; display: flex; flex-direction: column; }

.contacts__form h2,
.contacts__info h2 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--title);
  margin-bottom: 16px;
}
.contacts__list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 18px; }
.contacts__list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: var(--fs-body);
  line-height: 1.5;
}
.contacts__list a:hover { color: var(--bronze-dark); }
.contacts__ic { color: var(--bronze); margin-top: 1px; }

.contacts__mess { display: flex; flex-direction: column; gap: 10px; }
.mess {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--title);
  transition: color .2s;
}
.mess:hover { color: var(--bronze-dark); }
.mess__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  color: #fff;
}
.mess__icon .ic { width: 15px; height: 15px; }
.mess__icon--wa { background: #59b56b; }

/* map */
.map {
  flex: 1;
  min-height: 330px;
  position: relative;
  overflow: hidden;
}
/* iframe выше контейнера: нижняя панель OSM со ссылками уходит под обрез.
   pointer-events: none — колесо прокручивает страницу, а не зумит карту */
.map__frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 38px);
  border: 0;
  pointer-events: none;
  filter: sepia(.22) saturate(.9) hue-rotate(-8deg) brightness(1.02);
}
/* атрибуция обязательна по лицензии OSM */
.map__attr {
  position: absolute;
  right: 8px;
  bottom: 6px;
  padding: 2px 7px;
  border-radius: 5px;
  background: rgba(253, 251, 247, .8);
  font-size: 10px;
  color: var(--muted);
  pointer-events: none;
}

/* gift */
.contacts__gift { text-align: left; }
.gift__photo { flex: 1; min-height: 130px; border-radius: 0; }
.gift__body { padding: 16px 18px 20px; }
.gift__body h3 {
  font-size: var(--fs-body);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--title);
  margin-bottom: 6px;
}
.gift__body p {
  font-size: var(--fs-small);
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  margin-top: 40px;
  background: #40372b;
  color: #c8b9a4;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1fr;
  gap: 30px;
  padding-top: 44px;
  padding-bottom: 32px;
}
.footer__brand p {
  font-size: var(--fs-tiny);
  line-height: 1.7;
  color: #b3a48c;
}
.footer__col { display: flex; flex-direction: column; gap: 8px; font-size: var(--fs-tiny); }
.footer__col h4 {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #e6d9c4;
  margin-bottom: 6px;
}
.footer__col a { transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 18px;
  padding-bottom: 22px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 12px;
  color: #a3947c;
}
.footer__bottom a:hover { color: #fff; }

/* ============================================================
   MODALS
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .3s ease, visibility 0s .3s;
}
.modal.is-open {
  visibility: visible;
  opacity: 1;
  transition: opacity .3s ease;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(59, 47, 30, .45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.modal__card {
  position: relative;
  width: min(440px, 100%);
  max-height: 90dvh;
  overflow-y: auto;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 30px 28px 26px;
  box-shadow: 0 30px 70px rgba(40, 32, 20, .35);
  transform: translateY(16px) scale(.97);
  transition: transform .3s ease;
}
.modal.is-open .modal__card { transform: none; }
.modal__close {
  position: absolute;
  top: 14px; right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--bronze-deep);
  transition: background .2s, transform .2s;
}
.modal__close:hover { background: var(--line); transform: rotate(90deg); }
.modal__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--title);
  margin-bottom: 8px;
}
.modal__title .sprig-ic { margin: 0; }
.modal__sub {
  font-size: var(--fs-small);
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 18px;
}
.modal__list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 22px;
}
.modal__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-body);
}
.modal__actions { display: flex; flex-direction: column; gap: 10px; }

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 20px);
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bronze-deep);
  color: #fff;
  padding: 13px 20px;
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(64, 55, 43, .4);
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 100;
  max-width: min(92vw, 460px);
}
.toast.is-shown { opacity: 1; transform: translate(-50%, 0); }
.toast .ic { color: #b6e3c2; }
.toast.is-error { background: #8a4b3c; }
.toast.is-error .ic { color: #f3c9c0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1280px) {
  #popular::before, #about::before, #contacts::before,
  #why::after { display: none; }
  .advbar__cell { padding: 20px 12px 18px; }
  .master { grid-template-columns: 330px minmax(0, 1fr); gap: 30px; }
  .contacts__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contacts__map { grid-column: 1 / -1; order: 3; }
  .about__grid { gap: 30px; }
}

@media (max-width: 1180px) {
  .why__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .popular__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
  .advbar__cell { padding: 20px 14px 18px; }
  .tabs { padding: 0 10px; }
  .tabs__btn { flex: 1 1 32%; }
}

/* Меню сворачивается в бургер раньше остальной вёрстки: семь пунктов плюс
   кнопка записи требуют ~1240px, иначе кнопка вылезает за край шапки. */
@media (max-width: 1240px) {
  /* ВАЖНО: backdrop-filter на шапке создаёт containing block для fixed-потомков —
     из-за этого меню «прилипало» к шапке вместо вьюпорта. На мобильном блюр
     отключён, поэтому панель фиксируется относительно окна на любом скролле. */
  .header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(250, 245, 237, .93);
    /* шапка (и панель меню внутри неё) должна быть НАД затемнением:
       z-index потомков считается внутри стекового контекста шапки,
       поэтому поднимаем саму шапку выше .nav-scrim */
    z-index: 60;
  }
  .header.is-scrolled { background: rgba(250, 245, 237, .98); }

  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    height: 100dvh;
    width: min(340px, 90vw);
    background: var(--card);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 84px 26px 28px;
    overflow-y: auto;
    box-shadow: -20px 0 50px rgba(64, 55, 43, .18);
    transform: translateX(105%);
    visibility: hidden;
    transition: transform .32s ease, visibility 0s .32s;
    z-index: 60;
    margin-left: 0;
  }
  .nav.is-open { transform: none; visibility: visible; transition: transform .32s ease; }
  .nav__link {
    font-size: 13.5px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .nav__link::after { display: none; }
  .nav__cta { display: inline-flex; margin-top: 20px; }

  .nav__contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--line-soft);
  }
  .nav__contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--fs-small);
    color: var(--text);
  }
  .nav__contact .ic { width: 15px; height: 15px; color: var(--bronze); }
  .nav__contact--phone { font-weight: 700; font-size: var(--fs-body); }
  a.nav__contact:hover { color: var(--bronze-dark); }

  /* затемнение под панелью */
  .nav-scrim {
    position: fixed;
    inset: 0;
    background: rgba(59, 47, 30, .4);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility 0s .3s;
    z-index: 55;
  }
  .nav-scrim.is-open { opacity: 1; visibility: visible; transition: opacity .3s ease; }
  .header__cta { display: none; }
  .burger { display: flex; margin-left: auto; position: relative; z-index: 70; }

  /* на узком десктопе четыре скриншота отзывов становятся нечитаемыми */
  .slider { --per-view: 3; }
}

@media (max-width: 1080px) {
  /* планшет: два отзыва в кадре */
  .slider { --per-view: 2; }
  .rmsg img { height: 340px; }

  /* мобильный герой: фото — фон, текст лежит поверх него */
  .hero {
    margin-top: -72px;
    padding: 300px 0 40px;
    min-height: 0;
    display: block;
  }
  .hero__banner { display: none; }
  .hero__content { max-width: none; position: relative; }
  .hero__photo {
    display: block;
    top: 0; right: 0; left: 0; bottom: auto;
    width: 100%;
    height: 560px;
    background-image: url("images/Compressed/hero-mobile.png");
    background-position: center top;
    --fade-x: linear-gradient(to right, #000, #000);
    --fade-y: linear-gradient(to bottom,
      #000 0%, #000 40%, rgba(0, 0, 0, .55) 62%,
      rgba(0, 0, 0, .18) 80%, transparent 100%);
  }
  /* кремовая вуаль под текстом — чтобы читалось поверх фото */
  .hero__photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
      rgba(247, 241, 232, 0) 30%,
      rgba(247, 241, 232, .55) 58%,
      rgba(247, 241, 232, .92) 82%,
      var(--bg) 100%);
  }
  .hero__inner { flex-wrap: wrap; }

  /* лента преимуществ: 2+2+1 */
  .advbar__bar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .advbar__cell:nth-child(3)::before,
  .advbar__cell:nth-child(5)::before { display: none; }
  .advbar__cell:nth-child(n+3) { border-top: 1px solid var(--line-soft); }
  .advbar__cell:nth-child(5) { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .section { padding: 34px 0; }
  .section__title { font-size: 21px; padding: 0 16px; }

  .popular__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  /* планшет в портрете: «О салоне» и подвал в одну колонку — на 340px текст жмётся */
  .about__grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .about__chips { padding-top: 18px; }
  .about__media { max-width: 560px; margin: 0 auto; width: 100%; }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 30px; }
  .footer__brand { grid-column: 1 / -1; }
  .slide { padding: 4px; }
  .slider__arrow {
    width: 36px; height: 36px;
    background: rgba(253, 251, 247, .94);
  }
  .slider__arrow--prev { left: -4px; }
  .slider__arrow--next { right: -4px; }
  .slider__dots { margin-top: 14px; }
  .rmsg { padding: 12px 12px 10px; }
  /* два слайда: общая высота бокса, иначе подписи разъезжаются */
  .rmsg img { height: 360px; }
  .rmsg figcaption { padding-top: 10px; font-size: var(--fs-tiny); }
  .faq { grid-template-columns: 1fr; }
  .master { grid-template-columns: 1fr; gap: 26px; padding: 22px; }
  .master__photo { max-width: 420px; margin: 0 auto; }
  .master__media { max-width: 420px; margin: 0 auto; width: 100%; }

  /* на мобильном оставляем самое нужное — телефон и WhatsApp */
  .topbar__inner { justify-content: center; }
  .topbar__left { display: none; }
  .topbar__right { justify-content: center; gap: 14px; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }

  .hero { padding: 252px 0 36px; }
  .hero__photo { height: 470px; }
  .hero__actions .btn { flex: 1 1 100%; }

  /* один слайд: карточка видна одна, поэтому высоту не фиксируем —
     скриншот показывается в натуральных пропорциях, без пустых полей */
  .slider { --per-view: 1; }
  .rmsg img { height: auto; max-width: 400px; margin: 0 auto; }

  /* лента преимуществ: компактные строки, иконка слева */
  .advbar { padding: 20px 0 6px; }
  .advbar__bar { grid-template-columns: 1fr; }
  .advbar__cell::before { display: none !important; }
  .advbar__cell {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    column-gap: 15px;
    text-align: left;
    padding: 13px 16px;
    border-top: 1px solid var(--line-soft);
  }
  .advbar__cell:first-child { border-top: none; }
  .advbar__cell:nth-child(5) { grid-column: auto; }
  .advbar__icon {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: center;
    width: 28px; height: 28px;
    margin: 0;
  }
  .advbar__cell h3 { grid-column: 2; font-size: 14px; margin-bottom: 2px; }
  .advbar__cell p { grid-column: 2; font-size: 12px; }

  /* процедуры: компактная сетка 2×3, фото видно целиком */
  .popular__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: none;
    margin: 0;
  }
  /* карточки в ряду одной высоты: плашка тянется, кнопка прижата к низу */
  .pcard { display: flex; flex-direction: column; }
  .pcard__photo { aspect-ratio: 1 / 1.06; border-radius: 12px; flex: none; }
  .pcard__info {
    position: relative;
    left: auto; right: auto; bottom: auto;
    margin: -28px 8px 0;
    padding: 13px 12px 12px;
    gap: 6px;
    z-index: 1;
    flex: 1;
  }
  .pcard__info h3 { font-size: 13.5px; }
  .pcard__info p { font-size: 12px; min-height: 0; line-height: 1.45; flex: 1; }
  .pcard__info .btn { padding: 8px 8px; font-size: 10px; letter-spacing: .06em; }

  /* преимущества: иконка слева, текст по левому краю */
  .why__grid { grid-template-columns: 1fr; max-width: none; margin: 0; gap: 10px; }
  .why__card {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 15px;
    text-align: left;
    padding: 16px 18px;
  }
  .why__icon {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: center;
    width: 32px; height: 32px;
    margin: 0;
  }
  .why__card h3 { grid-column: 2; margin-bottom: 4px; }
  .why__card p { grid-column: 2; }

  .contacts__grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; gap: 24px; }
  .about__chips { margin-top: 20px; padding-top: 0; }

  /* чипы: иконка сверху — длинные подписи помещаются */
  .about__chips { max-width: none; gap: 10px; }
  .chip {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    padding: 14px;
  }
  .chip__icon-wrap { width: 34px; height: 34px; }
  .chip__text b { font-size: 14px; }

  /* фото салона между чипами и ценностями */
  .about__media { display: block; }
  .ph--about { aspect-ratio: 16 / 11; min-height: 0; }

  /* шаги: номера слева, вертикальный таймлайн */
  /* линия идёт от нижней грани кружка (он центрирован) до следующего шага */

  .tabs { padding: 0; gap: 5px; margin-bottom: 8px; }
  .tabs__btn { flex: 1 1 47%; font-size: 11px; padding: 10px 6px; border-radius: 8px; border-bottom: 1px solid var(--line-soft); }
  .tabs__btn.is-active { border-color: transparent; }
  .services { padding: 16px; }
  .pricelist li { font-size: 12px; }

  .master .btn { width: 100%; }

  /* футер: бренд на всю ширину, дальше аккуратная сетка 2×2 */
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 20px;
    padding-top: 34px;
    padding-bottom: 28px;
  }
  .footer__brand { grid-column: 1 / -1; }
  .footer__col h4 { margin-bottom: 2px; }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-top: 18px;
    padding-bottom: 34px;
  }

  .logo__img { height: 36px; }
}

@media (max-width: 420px) {
  .topbar__right { gap: 10px; font-size: 11.5px; }
  .pcard__info { padding: 12px 10px; }
  .pcard__info h3 { font-size: 13px; }
}
