/* ===========================================================
   Babayan — ОБЩИЕ СТИЛИ
   Подключаются на каждой странице (навбар, футер, база)
   Мобильные стили — в конце файла
   =========================================================== */

/* ----------  Дизайн-токены  ---------- */
:root {
  --cream:      #F6F1E9;
  --cream-2:    #EFE7DA;
  --sand:       #E7DBC8;
  --line:       #E1D6C3;
  --taupe:      #8C7A66;
  --bronze:     #A98C5E;
  --bronze-dk:  #8E7444;
  --ink:        #3C322A;
  --ink-soft:   #6E6052;
  --espresso:   #2C2520;
  --espresso-2: #3A3128;

  --font-display: "Cormorant Garamond", "Noto Serif Armenian", Georgia, serif;
  --font-body:    "Jost", "Noto Sans Armenian", system-ui, -apple-system, sans-serif;

  --maxw: 1340px;
  --gutter: 30px;
  --header-h: 104px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ----------  Сброс / база  ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink-soft);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 { overflow-wrap: break-word; }

body.nav-locked { overflow: hidden; }

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

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

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

.eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bronze);
}

/* ----------  Кнопки  ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .4s var(--ease), color .4s var(--ease),
              border-color .4s var(--ease), transform .3s var(--ease);
}
.btn--solid {
  background: var(--bronze);
  color: #fff;
}
.btn--solid:hover { background: var(--bronze-dk); transform: translateY(-2px); }

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--cream); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--bronze); color: var(--bronze); }

/* ----------  Текстовая ссылка со стрелкой  ---------- */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--bronze);
  padding-bottom: 4px;
  transition: gap .35s var(--ease), color .35s var(--ease);
}
.link-arrow svg { transition: transform .35s var(--ease); }
.link-arrow:hover { gap: 16px; color: var(--bronze); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ===========================================================
   НАВБАР
   =========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .35s var(--ease);
}
.site-header.is-scrolled,
.site-header--solid.is-scrolled {
  box-shadow: 0 10px 30px -22px rgba(60, 50, 42, 0.55);
}

.nav {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 26px;
}

/* Логотип Babayan */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-right: auto;
}
.logo__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 44px;
  color: var(--taupe);
  letter-spacing: 0.01em;
}
.logo__sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.46em;
  color: var(--bronze);
  margin-top: 4px;
  padding-left: 2px;
}

/* Меню */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-menu a {
  position: relative;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ink);
  padding: 8px 0;
  white-space: nowrap;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--bronze);
  transition: width .35s var(--ease);
}
.nav-menu a:hover::after,
.nav-menu a.is-current::after { width: 100%; }
.nav-menu a.is-current { color: var(--bronze); }

/* Правый блок: язык + кнопка */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 15px;
  letter-spacing: 0.06em;
}
.lang-switch button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  padding: 4px 7px;
  transition: color .3s var(--ease);
  text-transform: uppercase;
}
.lang-switch button:hover { color: var(--bronze); }
.lang-switch button.is-active { color: var(--bronze); font-weight: 500; }
.lang-switch .sep { color: var(--line); }

.nav-book {
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 100px;
  border: 1px solid var(--ink);
  color: var(--ink);
  transition: background .35s var(--ease), color .35s var(--ease);
}
.nav-book:hover { background: var(--ink); color: var(--cream); }

/* Гамбургер */
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  border: none; background: none;
  cursor: pointer;
  position: relative;
  margin-left: 8px;
}
.nav-burger span {
  position: absolute;
  left: 8px; right: 8px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .35s var(--ease), opacity .25s var(--ease), top .35s var(--ease);
}
.nav-burger span:nth-child(1) { top: 14px; }
.nav-burger span:nth-child(2) { top: 20px; }
.nav-burger span:nth-child(3) { top: 26px; }
.nav-burger.is-open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* sticky-навбар уже занимает место в потоке — доп. отступ не нужен */
.page-offset { padding-top: 0; }

/* затемнение фона при открытом мобильном меню */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(40, 33, 27, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s var(--ease);
  z-index: 94;
}
.nav-backdrop.is-open { opacity: 1; visibility: visible; }

/* кнопка закрытия внутри мобильной панели (показывается только на мобильном) */
.nav-close {
  display: none;
  position: absolute;
  top: 22px; right: 22px;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
.nav-close::before, .nav-close::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 18px; height: 1.6px;
  background: var(--ink);
}
.nav-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.nav-close::after  { transform: translate(-50%, -50%) rotate(-45deg); }

/* ===========================================================
   ПОЯВЛЕНИЕ ПРИ ПРОКРУТКЕ
   =========================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal][data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal][data-reveal-delay="3"] { transition-delay: .24s; }

/* ===========================================================
   ФУТЕР  (#site-contact — цель для «Связь»)
   =========================================================== */
.site-footer {
  background: var(--espresso);
  color: #d8cdbf;
  padding: 84px 0 30px;
  margin-top: 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1.3fr 1fr 1.1fr;
  gap: 48px;
}
.footer-brand .logo__name { color: #efe3d2; font-size: 34px; }
.footer-brand .logo__sub  { color: var(--bronze); }
.footer-brand p {
  margin: 22px 0 0;
  max-width: 300px;
  color: #b8ab9b;
  font-size: 15px;
  line-height: 1.75;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 14px; font-size: 15px; }
.footer-col a { color: #d8cdbf; transition: color .3s var(--ease); }
.footer-col a:hover { color: #fff; }

.contact-item { margin-bottom: 18px; }
.contact-item .lbl {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8c7f6f;
  margin-bottom: 4px;
}
.contact-item .val { color: #ece1d2; font-size: 15px; line-height: 1.6; }
.contact-item .val a { display: block; }

.footer-bottom {
  margin-top: 64px;
  padding-top: 26px;
  border-top: 1px solid rgba(216, 205, 191, 0.14);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: #8c7f6f;
  letter-spacing: 0.04em;
}

/* ===========================================================
   ШАПКА ВНУТРЕННИХ СТРАНИЦ (page-hero) — общий компонент
   =========================================================== */
.page-hero {
  position: relative;
  background: var(--cream-2);
  padding: 84px 0 76px;
  overflow: hidden;
}
.page-hero__art {
  position: absolute;
  right: -40px; top: 50%;
  transform: translateY(-50%);
  width: 460px;
  max-width: 42%;
  opacity: .5;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; max-width: 640px; }
.page-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 500;
  margin: 16px 0 22px;
}
.page-hero .lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0;
}

.section { padding: 100px 0; }
.section--alt { background: var(--cream-2); }
.section-lead { margin: 0 0 46px; max-width: 660px; color: var(--ink-soft); font-size: 1.1rem; line-height: 1.8; }

/* лёгкая CTA-полоса */
.cta-band {
  background: var(--espresso);
  color: #efe3d2;
  padding: 80px 0;
  text-align: left;
}
.cta-band h2 { color: #fff; font-size: clamp(2rem, 3.6vw, 3rem); margin-bottom: 14px; max-width: 22ch; }
.cta-band p { color: #b8ab9b; max-width: 520px; margin: 0 0 32px; }
.cta-band .btn--solid { background: var(--bronze); }
.cta-band .btn--solid:hover { background: #c2a673; }

/* ===========================================================
   ВЫПАДАЮЩИЙ ВЫБОР ЯЗЫКА
   =========================================================== */
.lang-select { position: relative; }
.lang-select__toggle {
  display: inline-flex; align-items: center; gap: 7px;
  background: none; border: 1px solid var(--line); border-radius: 100px;
  padding: 9px 15px; cursor: pointer;
  font-family: var(--font-body); font-size: 15px; letter-spacing: .04em;
  color: var(--ink);
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.lang-select__toggle:hover { border-color: var(--bronze); color: var(--bronze); }
.lang-select__chev { transition: transform .3s var(--ease); margin-top: 1px; }
.lang-select.is-open .lang-select__chev { transform: rotate(180deg); }
.lang-select__menu {
  position: absolute; top: calc(100% + 10px); right: 0;
  min-width: 128px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 20px 46px -24px rgba(60, 50, 42, 0.5);
  padding: 6px; display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s var(--ease);
  z-index: 120;
}
.lang-select.is-open .lang-select__menu { opacity: 1; visibility: visible; transform: none; }
.lang-select__menu button {
  text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 16px; letter-spacing: .03em;
  color: var(--ink-soft); padding: 10px 14px; border-radius: 9px;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.lang-select__menu button:hover { background: var(--cream-2); color: var(--ink); }
.lang-select__menu button.is-active { color: var(--bronze); background: var(--cream); font-weight: 500; }

/* ===========================================================
   СОЦ-ИКОНКИ В ФУТЕРЕ
   =========================================================== */
.social-row { display: flex; gap: 12px; margin-top: 2px; }
.social-btn {
  width: 42px; height: 42px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(216, 205, 191, 0.28);
  color: #d8cdbf;
  transition: background .3s var(--ease), color .3s var(--ease),
              border-color .3s var(--ease), transform .3s var(--ease);
}
.social-btn:hover { background: var(--bronze); border-color: var(--bronze); color: #fff; transform: translateY(-2px); }

/* ===========================================================
   МОДАЛЬНОЕ ОКНО ЗАПИСИ
   =========================================================== */
.modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 24px; }
.modal[hidden] { display: none; }
.modal__overlay {
  position: absolute; inset: 0;
  background: rgba(30, 24, 19, 0.55);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0; transition: opacity .32s var(--ease);
}
.modal.is-open .modal__overlay { opacity: 1; }
.modal__dialog {
  position: relative;
  width: 100%; max-width: 520px;
  background: linear-gradient(180deg, #fffdf9, var(--cream));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 46px 44px 40px;
  box-shadow: 0 40px 90px -40px rgba(40, 33, 27, 0.7);
  opacity: 0; transform: translateY(18px) scale(.985);
  transition: opacity .34s var(--ease), transform .34s var(--ease);
  max-height: calc(100vh - 48px); overflow-y: auto;
}
.modal.is-open .modal__dialog { opacity: 1; transform: none; }
.modal__close {
  position: absolute; top: 18px; right: 18px;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; cursor: pointer;
}
.modal__close::before, .modal__close::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 16px; height: 1.6px; background: var(--ink);
}
.modal__close::before { transform: translate(-50%, -50%) rotate(45deg); }
.modal__close::after  { transform: translate(-50%, -50%) rotate(-45deg); }
.modal__close:hover { border-color: var(--bronze); }
.modal__brand { font-family: var(--font-display); font-size: 22px; color: var(--taupe); font-weight: 600; }
.modal__brand i {
  font-style: normal; font-family: var(--font-body); font-size: 10px;
  letter-spacing: .4em; color: var(--bronze); text-transform: uppercase; margin-left: 5px;
}
.modal__title { font-size: clamp(1.8rem, 3.4vw, 2.4rem); margin: 14px 0 10px; }
.modal__text { color: var(--ink-soft); font-size: 1rem; margin: 0 0 26px; }
.modal__group + .modal__group { margin-top: 22px; }
.modal__group-l {
  display: block; font-size: 12px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--bronze); margin-bottom: 12px;
}
.modal__rows { display: grid; gap: 10px; }
.mrow {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px; border: 1px solid var(--line); border-radius: 13px;
  background: #fff; color: var(--ink);
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.mrow:hover { border-color: var(--bronze); transform: translateX(3px); box-shadow: 0 14px 30px -22px rgba(60, 50, 42, 0.5); }
.mrow__ic {
  width: 40px; height: 40px; border-radius: 50%; flex: 0 0 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--cream-2); color: var(--bronze);
}
.mrow__ic--viber { background: #efeafb; color: #7360f2; }
.mrow__ic--wa    { background: #e6f5ea; color: #1faa54; }
.mrow__ic--ig    { background: #fbeaf1; color: #cf2e73; }
.mrow__v { font-size: 15px; letter-spacing: .01em; }

/* ===========================================================
   КАСТОМНЫЙ СКРОЛЛБАР МОДАЛКИ (в фирменном бронзовом цвете)
   =========================================================== */
.modal__dialog { scrollbar-width: thin; scrollbar-color: var(--bronze) transparent; scrollbar-gutter: stable; }
.modal__dialog::-webkit-scrollbar { width: 8px; }
.modal__dialog::-webkit-scrollbar-track { background: transparent; margin: 20px 0; }
.modal__dialog::-webkit-scrollbar-thumb {
  background: var(--bronze); border-radius: 100px;
  border: 2px solid transparent; background-clip: padding-box;
}
.modal__dialog::-webkit-scrollbar-thumb:hover { background: var(--bronze-dk); background-clip: padding-box; border: 2px solid transparent; }

/* ===========================================================
   ПОДСТРАНИЧНЫЙ HERO (категории / процедуры)
   =========================================================== */
.subhero { position: relative; min-height: 62vh; display: flex; align-items: center; overflow: hidden; background: var(--sand); }
.subhero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.subhero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(40,33,27,.55) 0%, rgba(40,33,27,.25) 42%, rgba(40,33,27,0) 72%);
}
.subhero__inner { position: relative; z-index: 2; padding-top: 40px; padding-bottom: 40px; }
.subhero .eyebrow { color: #e9dcc6; }
.subhero h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 500; margin: 16px 0 20px; max-width: 20ch; text-shadow: 0 2px 30px rgba(40,33,27,.3); }
.subhero .lead { color: #f1e8db; font-size: 1.08rem; max-width: 540px; margin: 0 0 32px; }
html[lang="hy"] .subhero h1 { font-size: clamp(2rem, 4vw, 3.1rem); }

/* ===========================================================
   КАРТОЧКИ-НАПРАВЛЕНИЯ / ПРОЦЕДУРЫ
   =========================================================== */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feat-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 860px; }
.feat-card {
  display: flex; flex-direction: column;
  background: #FCFAF5; border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.feat-card:hover { transform: translateY(-5px); border-color: var(--bronze); box-shadow: 0 26px 50px -32px rgba(60,50,42,.5); }
.feat-card__media { display: block; aspect-ratio: 3 / 2; overflow: hidden; background: var(--sand); }
.feat-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.feat-card:hover .feat-card__media img { transform: scale(1.05); }
.feat-card__body { padding: 28px 30px 30px; display: flex; flex-direction: column; flex-grow: 1; }
.feat-card__body h3 { font-size: 1.6rem; font-weight: 500; margin: 0 0 12px; }
.feat-card__body p { font-size: 15px; color: var(--ink-soft); margin: 0 0 22px; flex-grow: 1; line-height: 1.7; }
.feat-card__cta {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--bronze);
}
.feat-card:hover .feat-card__cta { gap: 14px; }

/* ===========================================================
   ИНФО-БЛОК ИЗОБРАЖЕНИЕ + ТЕКСТ
   =========================================================== */
.info-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.info-split + .info-split { margin-top: 72px; }
.info-split__media { border-radius: 18px; overflow: hidden; aspect-ratio: 4 / 3; background: var(--sand); }
.info-split__media img { width: 100%; height: 100%; object-fit: cover; }
.info-split__text h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 14px 0 16px; }
.info-split__text p { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.8; margin: 0 0 14px; }
.info-split--rev .info-split__media { order: 2; }

/* блоки-колонки (описание процедур) */
.blocks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.block { background: #FCFAF5; border: 1px solid var(--line); border-radius: 16px; padding: 30px 30px; }
.block h3 { font-size: 1.35rem; font-weight: 500; margin: 0 0 10px; }
.block p { color: var(--ink-soft); font-size: 15px; line-height: 1.7; margin: 0; }

/* сетка «чипов»: болезни / препараты / филлеры */
.chip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.chip { border: 1px solid var(--line); border-radius: 14px; padding: 24px 24px; background: var(--cream); transition: border-color .35s var(--ease), transform .35s var(--ease); }
.chip:hover { border-color: var(--bronze); transform: translateY(-3px); }
.chip h4 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: var(--ink); margin: 0 0 8px; }
.chip p { font-size: 14px; color: var(--ink-soft); margin: 0; line-height: 1.6; }

/* цены (женская/мужская косметология) */
.price-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.price-col h3 { font-size: 1.6rem; font-weight: 500; margin: 0 0 20px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.price-list { list-style: none; margin: 0; padding: 0; }
.price-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.price-list li span:first-child { color: var(--ink); }
.price-list li span:last-child { color: var(--bronze); white-space: nowrap; font-family: var(--font-display); font-size: 1.15rem; }
.price-note { font-size: 13px; color: var(--ink-soft); margin-top: 22px; font-style: italic; }

/* ===========================================================
   БОЛЬШИЕ БАННЕРЫ (Morpheus8 / стерилизация / сертификаты / уход)
   =========================================================== */
.banner { position: relative; overflow: hidden; border-radius: 22px; min-height: 420px; display: flex; align-items: center; }
.banner__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.banner__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(44,37,32,.86) 0%, rgba(44,37,32,.6) 42%, rgba(44,37,32,.15) 75%); }
.banner__inner { position: relative; z-index: 2; padding: 56px 52px; max-width: 640px; }
.banner .eyebrow { color: #e0cfa8; }
.banner h2 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 3rem); margin: 14px 0 16px; max-width: 18ch; }
.banner p { color: #e7ddcf; font-size: 1.05rem; line-height: 1.75; margin: 0 0 28px; max-width: 460px; }
.banner__points { list-style: none; margin: 0 0 8px; padding: 0; }
.banner__points li { display: flex; align-items: flex-start; gap: 12px; color: #efe6d8; font-size: 1.02rem; margin-bottom: 14px; }
.banner__points li::before { content: ""; flex: 0 0 auto; width: 20px; height: 20px; margin-top: 3px; border-radius: 50%; background: var(--bronze); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3'%3E%3Cpath d='M5 12l4 4 10-10'/%3E%3C/svg%3E"); background-size: 13px; background-repeat: no-repeat; background-position: center; }
.banner--light .banner__scrim { background: linear-gradient(90deg, rgba(246,241,233,.96) 0%, rgba(246,241,233,.8) 40%, rgba(246,241,233,.1) 72%); }
.banner--light h2 { color: var(--ink); }
.banner--light p { color: var(--ink-soft); }
.banner--light .eyebrow { color: var(--bronze); }

/* ===========================================================
   ДОСТУПНОСТЬ / ФОКУС
   =========================================================== */
:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ===========================================================
   ============   МОБИЛЬНЫЕ СТИЛИ (ОБЩЕЕ)   ==================
   =========================================================== */
@media (max-width: 1024px) {
  :root { --gutter: 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  :root { --gutter: 20px; --header-h: 72px; }

  .nav-burger { display: block; }

  /* боковая панель справа (~80% ширины), плавный выезд, без прозрачности */
  .nav-menu {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 80%;
    max-width: 340px;
    background: #FFFFFF;
    box-shadow: -24px 0 60px -30px rgba(40, 33, 27, 0.6);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
    transform: translateX(100%);
    transition: transform .42s var(--ease);
    z-index: 95;
    padding: 96px 32px 40px;
    overflow-y: auto;
  }
  .nav-menu.is-open { transform: translateX(0); }
  .nav-menu a {
    font-family: var(--font-display);
    font-size: 27px;
    color: var(--ink);
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid var(--line);
  }
  .nav-menu a:last-of-type { border-bottom: none; }
  .nav-menu a::after { display: none; }
  .nav-menu a.is-current { color: var(--bronze); }

  .nav-close { display: block; }
  body.nav-locked .nav-burger { display: none; }

  .nav-actions { margin-left: auto; gap: 10px; }
  .nav-book { display: none; }
  .lang-switch button { padding: 4px 5px; font-size: 14px; }

  .logo__name { font-size: 34px; }
  .logo__sub { font-size: 10px; letter-spacing: 0.4em; }

  /* футер */
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .site-footer { padding: 60px 0 26px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-brand .logo__name { font-size: 30px; }

  /* внутренние страницы */
  .page-hero { padding: 56px 0 48px; }
  .page-hero__art { display: none; }
  .section { padding: 60px 0; }
  .cta-band { padding: 56px 0; }

  /* модальное окно записи: не на весь экран, отступы со всех сторон */
  .modal { padding: 18px; align-items: center; }
  .modal__dialog {
    max-width: 100%;
    border-radius: 20px;
    padding: 26px 20px 24px;
    transform: translateY(24px) scale(.99);
    max-height: calc(100dvh - 36px);
  }
  .modal__close { top: 14px; right: 14px; width: 38px; height: 38px; }
  .modal__title { font-size: 1.6rem; margin-top: 6px; }
  .modal__brand { font-size: 20px; }

  /* новые компоненты — адаптив */
  .subhero { min-height: 56vh; }
  .subhero__scrim { background: linear-gradient(180deg, rgba(40,33,27,.3) 0%, rgba(40,33,27,.45) 55%, rgba(40,33,27,.68) 100%); }
  .subhero__inner { padding-top: 30px; padding-bottom: 40px; }

  .feat-grid, .feat-grid--2 { grid-template-columns: 1fr; gap: 20px; max-width: 440px; }
  .feat-card__media { aspect-ratio: 16 / 10; }

  .info-split { grid-template-columns: 1fr; gap: 26px; }
  .info-split + .info-split { margin-top: 44px; }
  .info-split--rev .info-split__media { order: 0; }

  .blocks { grid-template-columns: 1fr; gap: 16px; }
  .chip-grid { grid-template-columns: 1fr; gap: 14px; }
  .price-cols { grid-template-columns: 1fr; gap: 32px; }

  .banner { border-radius: 18px; min-height: 0; }
  .banner__scrim { background: linear-gradient(180deg, rgba(44,37,32,.35) 0%, rgba(44,37,32,.66) 55%, rgba(44,37,32,.9) 100%); }
  .banner--light .banner__scrim { background: linear-gradient(180deg, rgba(246,241,233,.5) 0%, rgba(246,241,233,.9) 45%, rgba(246,241,233,.98) 100%); }
  .banner__inner { padding: 40px 24px; max-width: 100%; }
}
