@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@400;500;700&display=swap');

:root {
  --ink: #17201f;
  --text: #26302d;
  --muted: #65716c;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --mist: #dff3f2;
  --sage: #4aada9;
  --sage-dark: #35908b;
  --rose: #c77d83;
  --clay: #b86f4b;
  --steel: #536878;
  --line: #dde3df;
  --shadow: 0 18px 50px rgba(23, 32, 31, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font-family: 'Inter', "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 247, 0.9);
  border-bottom: 1px solid rgba(221, 227, 223, 0.86);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 200;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.site-brand-mark {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--sage);
  box-shadow: 0 0 0 3px rgba(74, 173, 169, 0.18), 0 2px 8px rgba(74, 173, 169, 0.20);
  background: var(--mist);
}

.brand-logo-img {
  display: block;
  width: 46px;
  height: 46px;
  min-width: 46px;
  object-fit: cover;
  object-position: center 15%;
}

.site-brand strong,
.site-brand small {
  display: block;
  overflow-wrap: anywhere;
}

.site-brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

/* Мобильный toggle */
.nav-toggle-input { display: none; }
.nav-toggle-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  order: 3;
  transition: background var(--t-fast);
}
.nav-toggle-btn:hover { background: var(--mist); }
.nav-toggle-btn span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  display: block;
  transition: transform 0.3s cubic-bezier(.22,.68,0,1.2), opacity 0.22s ease, background 0.2s;
}
.nav-toggle-input:checked ~ .nav-toggle-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle-input:checked ~ .nav-toggle-btn span:nth-child(2) { opacity: 0; }
.nav-toggle-input:checked ~ .nav-toggle-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex-wrap: nowrap;
  min-width: 0;
  overflow: visible;
}

.site-nav > a,
.nav-dropdown-toggle {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  white-space: nowrap;
}

.site-nav > a:hover,
.nav-item:hover > .nav-dropdown-toggle {
  background: var(--mist);
}

/* Dropdown nav */
.nav-item {
  position: relative;
}
.nav-dropdown-toggle {
  cursor: pointer;
  gap: 4px;
}
.nav-caret {
  font-size: 9px;
  opacity: 0.5;
  display: inline-block;
  transition: transform 0.18s;
}
.nav-item:hover .nav-caret,
.nav-dropdown-toggle.dd-open .nav-caret {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 210px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 10px 32px rgba(23, 32, 31, 0.12);
  z-index: 100;
  padding: 6px 0;
  animation: dropdown-in 0.12s ease;
}
@keyframes dropdown-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-dropdown-menu.dd-open {
  display: block;
}
.nav-dropdown-menu a {
  display: block;
  padding: 9px 16px;
  font-size: 0.88rem;
  color: var(--ink);
  min-height: 0;
  border-radius: 0;
  white-space: nowrap;
  transition: background 0.1s, color 0.1s;
}
.nav-dropdown-menu a:hover {
  background: var(--mist);
  color: var(--sage);
}
.nav-dropdown-sep {
  border-top: 1px solid var(--line) !important;
  margin-top: 4px;
  padding-top: 11px !important;
  color: var(--sage) !important;
  font-weight: 600;
}

/* ── Дерево категорий в dropdown ──────────────────────── */
.nav-dd-cat {
  border-top: 1px solid var(--line);
}
.nav-dd-cat:first-of-type {
  border-top: none;
}
.nav-dd-row {
  display: flex;
  align-items: stretch;
}
.nav-dd-cat-link {
  flex: 1;
  display: block;
  padding: 9px 16px;
  font-size: 0.88rem;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background 0.1s, color 0.1s;
}
.nav-dd-cat-link:hover {
  background: var(--mist);
  color: var(--sage);
}
.nav-dd-chevron {
  padding: 8px 12px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.6rem;
  line-height: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: transform 0.2s, color 0.1s;
}
.nav-dd-chevron:hover { color: var(--sage); }
.nav-dd-cat.nav-dd-open .nav-dd-chevron { transform: rotate(90deg); }
.nav-dd-subs {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  background: var(--paper);
  padding: 0;
  transition: max-height 0.28s ease, opacity 0.22s ease, padding 0.28s ease;
}
.nav-dd-cat.nav-dd-open .nav-dd-subs {
  max-height: 800px;
  opacity: 1;
  padding: 2px 0 4px;
}
.nav-dd-sub {
  display: block;
  padding: 7px 16px 7px 28px;
  font-size: 0.84rem;
  color: var(--muted);
  white-space: nowrap;
  transition: background 0.1s, color 0.1s;
}
.nav-dd-sub:hover {
  background: var(--mist);
  color: var(--sage);
}

/* Кнопка «Записаться» в навигации */
.nav-book-btn {
  background: var(--sage) !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 8px 16px !important;
  margin-left: 4px;
}
.nav-book-btn:hover {
  background: var(--sage-dark) !important;
}

.hero {
  min-height: 76vh;
  min-height: 76svh;
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr);
  padding: clamp(28px, 6vw, 72px);
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(14, 24, 23, 0.82), rgba(14, 24, 23, 0.42) 52%, rgba(14, 24, 23, 0.14)),
    var(--img-hero) center / cover;
}

.hero-content {
  width: min(760px, 100%);
  padding-bottom: clamp(26px, 6vh, 62px);
}

.eyebrow,
.section-kicker,
.card-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0c5bd;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.08;
  overflow-wrap: anywhere;
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.hero h1,
.hero h2,
.hero h3,
.page-hero h1,
.page-hero h2,
.page-hero h3 {
  color: #ffffff;
}

.hero h1 {
  max-width: 760px;
  margin: 10px 0 16px;
  font-size: 56px;
}

.hero-copy {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  line-height: 1.58;
}

.hero-actions,
.success-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.site-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 11px 16px;
  cursor: pointer;
  font-weight: 700;
  text-align: center;
  white-space: normal;
}

.site-button.primary {
  background: var(--sage);
  color: #ffffff;
}

.site-button.primary:hover {
  background: var(--sage-dark);
}

.site-button.secondary {
  background: #ffffff;
  border-color: var(--line);
  color: var(--ink);
}

.site-button.secondary:hover {
  border-color: var(--rose);
}

.hero-panel {
  width: min(660px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
}

.hero-panel span {
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  text-align: center;
  padding: 8px;
  backdrop-filter: blur(10px);
  overflow-wrap: anywhere;
}

.slogan-band {
  text-align: center;
  padding: 36px clamp(18px, 4vw, 56px);
  background: var(--mist);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(22px, 2.6vw, 34px);
  font-style: italic;
  color: var(--sage-dark);
  letter-spacing: 0.03em;
}

.intro-band,
.content-section,
.booking-band,
.promo-band,
.booking-page-grid,
.site-footer {
  padding: clamp(34px, 6vw, 74px) clamp(18px, 4vw, 56px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1fr);
  gap: 34px;
  align-items: start;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.intro-band h2,
.section-head h2,
.booking-copy h2,
.visit-notes h2,
.catalog-title h2,
.image-copy h2 {
  font-size: 34px;
  margin-bottom: 0;
}

.intro-band p,
.image-copy p,
.booking-copy p,
.visit-notes p,
.catalog-item p,
.service-card p,
.specialist-card p,
.page-hero p,
.site-footer p {
  color: var(--muted);
  line-height: 1.62;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.section-head a,
.card-link,
.footer-links a {
  color: var(--sage);
  font-weight: 700;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.specialist-card,
.catalog-item,
.booking-surface,
.success-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 265px;
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 20px;
}

.service-card h3,
.specialist-card h3,
.catalog-item h3,
.promo-list h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.service-meta,
.tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.service-meta span,
.tag-row span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  background: #dff3f2;
  color: #1d6e6a;
  padding: 5px 9px;
  font-size: 13px;
}

.image-band {
  min-height: 430px;
  display: flex;
  align-items: end;
  padding: clamp(34px, 6vw, 74px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.96), rgba(251, 250, 247, 0.72) 48%, rgba(251, 250, 247, 0.08)),
    var(--img-band) center / cover;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.image-copy {
  width: min(560px, 100%);
}

.specialist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.specialist-card {
  min-height: 255px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-content: start;
  padding: 20px;
}

.specialist-card .card-link {
  grid-column: 1 / -1;
}

.specialist-avatar {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #f3e6e4;
  color: #7c3e34;
  font-weight: 800;
}

.promo-band {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 22px;
  background: #1a3330;
  color: #ffffff;
}

.promo-band .section-kicker {
  color: #f4c6b8;
}

.promo-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.promo-list article {
  border-left: 3px solid var(--rose);
  padding-left: 14px;
}

.promo-list h3 {
  color: #ffffff;
}

.promo-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.booking-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: start;
  background: #e8f4f3;
}

.booking-band.compact {
  border-top: 1px solid var(--line);
}

.booking-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.booking-form label {
  display: grid;
  gap: 7px;
}

.booking-form label span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--text);
  padding: 11px 12px;
}

.booking-form textarea {
  resize: vertical;
}

.consent-line {
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
}

.consent-line input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.site-alert {
  border: 1px solid #e5b6b6;
  border-radius: 8px;
  background: #fff3f1;
  color: #8d3838;
  padding: 12px 14px;
  margin-bottom: 14px;
}

.page-hero {
  min-height: 380px;
  display: flex;
  align-items: end;
  padding: clamp(28px, 6vw, 72px);
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(14, 24, 23, 0.82), rgba(14, 24, 23, 0.38)),
    var(--img-page-hero) center / cover;
}

.page-hero > div {
  width: min(760px, 100%);
}

.page-hero h1 {
  margin: 10px 0 14px;
  font-size: 46px;
}

.page-hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.catalog-stack {
  display: grid;
  gap: 30px;
}

.catalog-group {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  scroll-margin-top: 90px;
}

.catalog-subs {
  display: grid;
  gap: 0;
  min-width: 0;
}

.catalog-list {
  display: grid;
  gap: 12px;
}

.catalog-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 220px);
  gap: 18px;
  padding: 18px;
  overflow: hidden;
}

.catalog-item-img {
  grid-column: 1 / -1;
  width: calc(100% + 36px);
  margin: -18px -18px 0;
  height: 220px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  display: block;
}

.catalog-item-body {
  display: grid;
  align-content: start;
  gap: 6px;
}

.catalog-item-full {
  font-size: 0.9rem;
  color: var(--muted);
  white-space: pre-line;
}

.catalog-cat-desc {
  color: var(--muted);
  margin-top: 4px;
  font-size: 0.95rem;
}

.catalog-sub {
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 90px;
}
.catalog-sub:first-child {
  border-top: 1px solid var(--line);
}
/* категория без подкатегорий: списку не от чего отступать, у него нет заголовка */
.catalog-sub--plain {
  padding-top: 10px;
}

.catalog-sub-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sage-dark);
  padding: 14px 0;
  margin: 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
}
.catalog-sub-title::-webkit-details-marker { display: none; }
.catalog-sub-title::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--sage);
  flex-shrink: 0;
  line-height: 1;
}
details[open] > .catalog-sub-title::after {
  content: "−";
}

.catalog-sub-desc {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 12px;
}

.sub-strip {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.sub-strip-link {
  color: var(--muted);
  font-size: 0.85rem;
  text-decoration: none;
  padding: 3px 0;
  transition: color 0.2s;
  display: block;
}
.sub-strip-link:hover {
  color: var(--sage);
}

.price-sub {
  padding: 12px 0 0;
  scroll-margin-top: 90px;
}

.price-sub-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--sage-dark);
  padding: 8px 20px;
  background: var(--bg);
  border-left: 3px solid var(--accent, #4aada9);
  margin-bottom: 0;
}

.catalog-side {
  display: grid;
  justify-items: start;
  gap: 8px;
}

.catalog-side span {
  color: var(--sage-dark);
  font-weight: 800;
}

.catalog-side small {
  color: var(--muted);
}

.booking-page-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1.25fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: start;
}

.visit-notes ul {
  display: grid;
  gap: 12px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.6;
}

.booking-surface {
  padding: 22px;
}

.success-page {
  min-height: calc(100vh - 76px);
  min-height: calc(100svh - 76px);
  display: grid;
  place-items: center;
  padding: clamp(28px, 6vw, 72px);
  background:
    linear-gradient(rgba(251, 250, 247, 0.9), rgba(251, 250, 247, 0.9)),
    var(--img-promo) center / cover;
}

.success-card {
  width: min(620px, 100%);
  padding: clamp(24px, 5vw, 44px);
  text-align: center;
}

.success-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 8px;
  background: var(--sage);
  color: #ffffff;
  font-size: 28px;
  font-weight: 900;
}

.success-card h1 {
  font-size: 38px;
}

.success-card p {
  color: var(--muted);
  line-height: 1.62;
}

.success-actions {
  justify-content: center;
}

.empty-public {
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--muted);
  padding: 26px;
  text-align: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  background: var(--ink);
  color: #ffffff;
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: start;
}

.footer-links a {
  color: #f4c6b8;
}

/* ── Топбар с контактами ─────────────────────────────────── */
.site-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px clamp(18px, 4vw, 56px);
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  font-size: 13px;
}

.topbar-contacts {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar-contacts a {
  color: #ffffff;
  font-weight: 600;
}

.topbar-contacts a:hover {
  color: var(--sage);
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-icon {
  min-width: 32px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 8px;
  gap: 5px;
  transition: border-color 0.15s;
}

.topbar-icon:hover {
  border-color: var(--sage);
  color: var(--sage);
}

/* ── Блок преимуществ ────────────────────────────────────── */
.benefits-section {
  padding: clamp(34px, 6vw, 74px) clamp(18px, 4vw, 56px);
  background: var(--paper);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}

.benefit-card {
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--mist);
  color: var(--sage);
  font-size: 20px;
  margin-bottom: 14px;
}

.benefit-img {
  display: block;
  width: calc(100% + 44px);
  margin: -26px -22px 18px;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.result-img {
  display: block;
  width: calc(100% + 3.2rem);
  margin: -1.4rem -1.6rem 1rem;
  height: auto;
  border-radius: 8px 8px 0 0;
}

.benefit-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

/* ── Секция мессенджеров ─────────────────────────────────── */
.messenger-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding: clamp(34px, 5vw, 60px) clamp(18px, 4vw, 56px);
  background: var(--sage);
  color: #ffffff;
}

.messenger-band h2 {
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 8px;
}

.messenger-band p {
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 0;
}

.messenger-band .section-kicker {
  color: rgba(255,255,255,0.7);
}

.messenger-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.messenger-band .site-button.primary {
  background: #ffffff;
  color: var(--sage-dark);
}

.messenger-band .site-button.primary:hover {
  background: var(--mist);
}

.messenger-band .site-button.secondary {
  background: transparent;
  border-color: rgba(255,255,255,0.45);
  color: #ffffff;
}

.messenger-band .site-button.secondary:hover {
  border-color: #ffffff;
}

/* ── Обновлённый футер ───────────────────────────────────── */
.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) minmax(180px, 1fr) minmax(160px, 0.8fr);
  gap: 32px;
}

.footer-brand strong {
  display: block;
  font-size: 18px;
  margin-bottom: 2px;
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.footer-brand small {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  margin-bottom: 12px;
}

.footer-contacts strong {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
}

.footer-contacts a,
.footer-contacts span {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  margin-bottom: 6px;
}

.footer-contacts a:hover {
  color: var(--sage);
}

.footer-social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  color: rgba(255,255,255,0.8) !important;
  font-size: 13px;
}

.footer-social a:hover {
  border-color: var(--sage);
  color: var(--sage) !important;
}

.footer-nav strong {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
}

.footer-nav a {
  display: block;
  color: rgba(255,255,255,0.8) !important;
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-nav a:hover {
  color: var(--sage) !important;
}

/* ── Аккордеон прайса ─────────────────────────────── */
.price-accordion {
  border-top: 1px solid var(--line);
  max-width: 820px;
}

.price-group {
  border-bottom: 1px solid var(--line);
}

.price-group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem 0;
  cursor: pointer;
  list-style: none;
  font-size: 1.05rem;
  font-weight: 600;
  gap: 16px;
  color: var(--ink);
}

.price-group-header::-webkit-details-marker { display: none; }

.price-group-header::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--sage);
  flex-shrink: 0;
  line-height: 1;
}

details[open] > .price-group-header::after { content: "−"; }

.price-group-count {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 400;
  margin-left: auto;
  margin-right: 8px;
  white-space: nowrap;
}

.price-list {
  list-style: none;
  padding: 0 0 1rem;
  margin: 0;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.7rem 0;
  border-top: 1px solid var(--line);
}

.price-name-block {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-name { flex: 1; min-width: 0; }

.price-desc {
  color: var(--muted);
  font-size: 0.82rem;
}

.price-meta {
  color: var(--muted);
  font-size: 0.88rem;
  white-space: nowrap;
}

.site-button.sm {
  padding: 0.32rem 0.9rem;
  font-size: 0.82rem;
  white-space: nowrap;
}

.section-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.price-page {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 64px) clamp(18px, 4vw, 56px);
}

/* ── Topbar адрес-ссылка ─────────────────────────── */
.topbar-address {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: inherit;
}
.topbar-address:hover {
  color: var(--sage);
}

/* ── Stub-заглушки для новых страниц ─────────────── */
.stub-notice {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.stub-icon {
  font-size: 2rem;
  color: var(--sage);
  margin-bottom: 4px;
}
.stub-notice h2 { margin: 0; }
.stub-notice p  { color: var(--muted); margin: 0; line-height: 1.65; }

/* ── О студии ────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 52px;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}
.about-text p { color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.about-values { display: grid; gap: 22px; }
.value-item strong { display: block; color: var(--ink); font-weight: 700; margin-bottom: 4px; font-size: 1rem; }
.value-item p { color: var(--muted); margin: 0; font-size: 0.9rem; line-height: 1.6; }

/* ── Отзывы ──────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.review-rating { color: var(--clay); font-size: 1.1rem; letter-spacing: 2px; }
.review-text   { margin: 0; line-height: 1.65; }
.review-meta   { color: var(--muted); font-size: 0.85rem; margin: 0; margin-top: auto; }

/* ══ НОВЫЕ СЕКЦИИ ШАБЛОНОВ ══════════════════════════════════════════════════ */

/* ── content-section (базовый макет страничных секций) ── */
.content-section {
  max-width: 980px;
  margin: 0 auto;
}

/* ── Футер: 3-колоночная сетка через .footer-col ────── */
.site-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.site-footer .footer-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-footer .footer-col strong {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.site-footer .footer-col a,
.site-footer .footer-col span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.15s;
}

.site-footer .footer-col a:hover {
  color: var(--sage);
}

/* ── Акции (home page) ───────────────────────────────── */
.promo-section {
  /* inherits padding from .content-section / .intro-band rules */
}

.promo-cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.promo-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.4rem 1.6rem;
  background: var(--surface);
}

.promo-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.promo-card-body {
  color: var(--muted);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.promo-card-price {
  display: inline-block;
  font-weight: 700;
  color: var(--sage);
  font-size: 1rem;
}

/* ── Проблемы/решения (results page) ────────────────── */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.problem-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--surface);
}

.problem-head h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.problem-text {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

.solution-line {
  display: flex;
  gap: 0.5rem;
  font-size: 0.92rem;
  border-top: 1px solid var(--line);
  padding-top: 0.75rem;
}

.solution-label {
  font-weight: 600;
  white-space: nowrap;
}

/* ── Галерея (site_gallery.html) ──────────────────── */
.gallery-section {
  max-width: 1100px;
}

.gallery-block {
  margin-bottom: 3rem;
}
.gallery-block + .gallery-block {
  border-top: 1px solid var(--line);
  padding-top: 2.75rem;
}

.gallery-block-head {
  text-align: center;
  margin-bottom: 1.75rem;
}
.gallery-block-head h2 {
  margin: 0 0 0.3rem;
  font-size: 2rem;
}
.gallery-block-date {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
  letter-spacing: 0.02em;
}

.gallery-videos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.gallery-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  background: #111;
  border-radius: 10px;
  overflow: hidden;
}
.gallery-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.gallery-video-link {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  text-decoration: none;
}
.gallery-video-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2.2rem;
  background: var(--surface);
  color: var(--sage);
  font-size: 0.95rem;
  font-weight: 500;
  transition: background .15s;
}
.gallery-video-link:hover .gallery-video-placeholder {
  background: var(--mist);
}

.gallery-photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}
.gallery-photo-item {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}
.gallery-photo-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.15s;
}
.gallery-photo-item:hover img {
  opacity: 0.88;
}

/* ── Сотрудники (staff page) ─────────────────────────── */
.staff-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.staff-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.staff-avatar {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #f3e6e4;
  color: #7c3e34;
  font-weight: 800;
  font-size: 1rem;
}

.staff-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.staff-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.staff-role {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.staff-exp {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ── Яндекс-карта (about page) ───────────────────────── */
.yandex-map-wrap {
  height: clamp(280px, 45vw, 460px);
  overflow: hidden;
}
.yandex-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ── Информация/контакты (about page) ────────────────── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.info-block h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.info-block p {
  margin: 0;
  line-height: 1.6;
}

.info-block--full {
  grid-column: 1 / -1;
}

.info-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  margin-bottom: 2px;
}

.info-value {
  font-size: 0.97rem;
  color: var(--text);
}

.info-value a,
a.info-value {
  color: var(--sage);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.info-hours {
  white-space: pre-line;
  line-height: 1.8;
  margin: 0;
  font-size: 0.95rem;
}

/* ── Стрип категорий (services / price pages) ─────────── */
.cat-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  padding: 1rem 0 1.5rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2rem;
}

.cat-strip-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: color 0.2s;
}

.cat-strip-link:hover {
  color: var(--sage);
}

/* ── Сертификаты (certificates page) ─────────────────── */
.cert-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

.cert-description ul {
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 2;
}

.cert-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cert-cta .messenger-buttons {
  flex-direction: column;
}

/* ── Отзывы: социальный призыв ────────────────────────── */
.reviews-social-prompt {
  text-align: center;
}

.reviews-social-prompt .messenger-buttons {
  justify-content: center;
}

/* ── Мобильный оверлей гамбургера ────────────────── */
#nav-overlay {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(23, 32, 31, 0.45);
  z-index: 150;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s;
}
#nav-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ── Медиа: аккордеон на мобильном ───────────────── */
@media (max-width: 620px) {
  .price-row {
    flex-wrap: wrap;
  }
  .price-name { flex: 1 1 100%; }
  .price-meta { flex: 1; }
  .site-button.sm { margin-left: auto; }
}

@media (max-width: 1120px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .specialist-grid,
  .promo-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-group {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 960px) {
  .intro-band,
  .booking-band,
  .booking-page-grid,
  .promo-band {
    grid-template-columns: 1fr;
  }

  .specialist-grid,
  .promo-list {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1400px) {
  .nav-toggle-btn { display: flex; }

  .site-header {
    position: sticky;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
  }

  .site-brand { flex: 1; }

  @keyframes nav-slide-in {
    from { opacity: 0; transform: translateY(-18px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes nav-slide-out {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0; transform: translateY(-12px); }
  }

  .site-nav {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 10px 16px 20px;
    flex-wrap: nowrap;
    max-height: calc(100vh - 76px);
    max-height: calc(100svh - 76px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 12px 40px rgba(23, 32, 31, 0.18);
    z-index: 190;
  }

  .nav-toggle-input:checked ~ .site-nav {
    display: flex;
    animation: nav-slide-in 0.32s cubic-bezier(.22,.68,0,1.1) both;
  }

  .site-nav.nav-closing {
    display: flex !important;
    animation: nav-slide-out 0.26s ease both;
  }

  .site-nav > a,
  .nav-dropdown-toggle {
    padding: 11px 12px;
    border-radius: 8px;
    width: 100%;
    font-size: 1rem;
  }

  .nav-item {
    width: 100%;
  }

  .nav-dropdown-menu {
    display: none;
    position: static;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--mist);
    border-radius: 0;
    background: transparent;
    padding: 0 0 4px 12px;
    animation: none;
    margin-bottom: 4px;
  }

  .nav-dropdown-menu.is-open {
    display: block;
  }

  .nav-dropdown-menu a {
    padding: 8px 12px;
    font-size: 0.9rem;
    border-radius: 6px;
  }

  .nav-caret {
    display: inline-block;
    transition: transform 0.2s;
  }

  .nav-dropdown-toggle.is-open .nav-caret {
    transform: rotate(180deg);
  }

  .nav-book-btn {
    margin-left: 0 !important;
    margin-top: 8px;
    text-align: center;
    justify-content: center;
  }

  /* Дерево в гамбургере */
  .nav-dd-cat-link {
    white-space: normal;
    padding: 11px 12px;
    font-size: 0.95rem;
  }
  .nav-dd-sub {
    white-space: normal;
    padding: 9px 12px 9px 22px;
    font-size: 0.9rem;
  }
  .nav-dd-chevron {
    padding: 10px 14px;
    font-size: 0.7rem;
  }
  .nav-dd-subs {
    border-left: 3px solid var(--mist);
    margin-left: 8px;
    padding-left: 4px;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: 72svh;
    padding: 30px 18px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 40px;
  }

  .hero-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-band,
  .booking-band,
  .booking-page-grid,
  .promo-band,
  .catalog-item,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .messenger-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .intro-band h2,
  .section-head h2,
  .booking-copy h2,
  .visit-notes h2,
  .catalog-title h2,
  .image-copy h2 {
    font-size: 28px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .problems-grid {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .cert-content {
    grid-template-columns: 1fr;
  }

  .catalog-side {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
  }

  .catalog-side a.site-button {
    margin-left: auto;
  }

}

@media (max-width: 620px) {
  .site-brand {
    min-width: 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 34px;
  }

  .hero-copy,
  .page-hero p {
    font-size: 16px;
  }

  .service-grid,
  .specialist-grid,
  .promo-list,
  .form-row {
    grid-template-columns: 1fr;
  }

  .specialist-card {
    grid-template-columns: 1fr;
  }

  .image-band {
    min-height: 360px;
  }

  .topbar-address,
  .topbar-social { display: none; }
  .site-topbar { justify-content: flex-start; }
}

/* ══ ОБЪЁМ, ГЛУБИНА И АНИМАЦИИ ══════════════════════════════════════════ */

/* ── Расширенная система теней ───────────────────── */
:root {
  --shadow-sm:    0 2px 8px rgba(23,32,31,.06), 0 1px 2px rgba(23,32,31,.03);
  --shadow:       0 4px 16px rgba(23,32,31,.09), 0 1px 4px rgba(23,32,31,.05);
  --shadow-md:    0 8px 28px rgba(23,32,31,.12), 0 2px 8px rgba(23,32,31,.06);
  --shadow-hover: 0 18px 48px rgba(23,32,31,.16), 0 6px 16px rgba(23,32,31,.08);
  --t:      0.22s ease;
  --t-fast: 0.15s ease;
  --t-slow: 0.35s ease;
}

/* ── Кнопки ──────────────────────────────────────── */
.site-button {
  transition: background var(--t), border-color var(--t), box-shadow var(--t),
              transform var(--t-fast), color var(--t);
}
.site-button:hover  { transform: translateY(-2px); }
.site-button:active { transform: translateY(0); }

.site-button.primary:hover {
  background: var(--sage-dark);
  box-shadow: 0 6px 22px rgba(74,173,169,.38);
}
.site-button.secondary:hover {
  border-color: var(--sage);
  box-shadow: 0 4px 14px rgba(23,32,31,.10);
}

/* ── Nav: Записаться — пульс ─────────────────────── */
@keyframes book-pulse {
  0%, 100% { box-shadow: 0 0 0 0   rgba(74,173,169,.45); }
  60%       { box-shadow: 0 0 0 9px rgba(74,173,169,0);   }
}
.nav-book-btn {
  animation: book-pulse 2.8s ease-in-out infinite;
  transition: background var(--t), transform var(--t-fast),
              box-shadow var(--t-fast) !important;
}
.nav-book-btn:hover {
  transform: translateY(-2px) !important;
  animation: none !important;
  box-shadow: 0 6px 20px rgba(74,173,169,.42) !important;
}

/* ── Логотип — свечение при наведении ───────────── */
.site-brand-mark {
  transition: box-shadow var(--t), transform var(--t-slow);
}
.site-brand:hover .site-brand-mark {
  box-shadow: 0 0 0 3px rgba(74,173,169,.28), 0 4px 20px rgba(74,173,169,.32);
  transform: rotate(-4deg) scale(1.08);
}

/* ── Nav ссылки ──────────────────────────────────── */
.site-nav > a,
.nav-dropdown-toggle {
  transition: background var(--t-fast), color var(--t-fast);
}
.nav-dropdown-menu a {
  transition: background var(--t-fast), color var(--t-fast);
}
@keyframes dropdown-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Topbar icons ────────────────────────────────── */
.topbar-icon {
  transition: border-color var(--t-fast), color var(--t-fast),
              background var(--t-fast), transform var(--t);
}
.topbar-icon:hover {
  transform: translateY(-2px);
  background: rgba(74,173,169,.12);
}
.topbar-contacts a { transition: color var(--t-fast); }

/* ── Карточки — lift + shadow ────────────────────── */
.service-card,
.specialist-card,
.catalog-item,
.benefit-card,
.review-card,
.staff-card,
.promo-card,
.problem-card {
  transition: transform var(--t-slow), box-shadow var(--t-slow);
  box-shadow: var(--shadow-sm);
  will-change: transform;
}
.service-card:hover,
.specialist-card:hover,
.catalog-item:hover,
.benefit-card:hover,
.review-card:hover,
.staff-card:hover,
.promo-card:hover,
.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

/* ── Booking / success surfaces ──────────────────── */
.booking-surface,
.success-card {
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--t-slow);
}

/* ── Аватары ─────────────────────────────────────── */
.specialist-avatar,
.staff-avatar {
  transition: transform var(--t), box-shadow var(--t);
}
.specialist-card:hover .specialist-avatar,
.staff-card:hover .staff-avatar {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(124,62,52,.24);
}

/* ── Promo: левая полоска ────────────────────────── */
.promo-list article {
  transition: border-left-color var(--t), padding-left var(--t);
}
.promo-list article:hover {
  border-left-color: var(--clay);
  padding-left: 22px;
}

/* ── Отзывы: звёзды ──────────────────────────────── */
.review-rating {
  transition: letter-spacing var(--t), color var(--t);
}
.review-card:hover .review-rating {
  letter-spacing: 5px;
  color: #e09a20;
}

/* ── Галерея: фото ───────────────────────────────── */
.gallery-photo-item {
  transition: transform var(--t-slow), box-shadow var(--t-slow);
  box-shadow: var(--shadow-sm);
}
.gallery-photo-item:hover {
  transform: scale(1.04) translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.gallery-photo-item img {
  transition: transform var(--t-slow), opacity var(--t);
}
.gallery-photo-item:hover img {
  transform: scale(1.07);
  opacity: 1;
}

/* ── Галерея: видео-ссылка ───────────────────────── */
.gallery-video-link {
  transition: transform var(--t-slow), box-shadow var(--t-slow);
  box-shadow: var(--shadow-sm);
}
.gallery-video-link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.gallery-video-placeholder {
  transition: background var(--t-fast);
}

/* ── Footer social ───────────────────────────────── */
.footer-social a {
  transition: border-color var(--t-fast), color var(--t-fast), transform var(--t);
}
.footer-social a:hover {
  transform: translateY(-2px);
}

/* ── Footer / footer-col links ───────────────────── */
.site-footer .footer-col a,
.footer-nav a,
.footer-contacts a {
  transition: color var(--t-fast), padding-left var(--t);
  padding-left: 0;
}
.site-footer .footer-col a:hover,
.footer-nav a:hover,
.footer-contacts a:hover {
  padding-left: 5px;
  color: var(--sage) !important;
}

/* ── Sub-strip / cat-strip ───────────────────────── */
.sub-strip-link,
.cat-strip-link,
.nav-dd-cat-link,
.nav-dd-sub {
  transition: color var(--t-fast), padding-left var(--t);
}
.sub-strip-link:hover,
.cat-strip-link:hover {
  padding-left: 5px;
}

/* ── Inputs: фокус-свечение ──────────────────────── */
.booking-form input,
.booking-form select,
.booking-form textarea {
  transition: border-color var(--t), box-shadow var(--t);
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(74,173,169,.18);
}

/* ── Hero: анимация появления контента ──────────── */
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content {
  animation: hero-rise 0.9s cubic-bezier(.22,.68,0,1.2) 0.15s both;
}
.hero-panel {
  animation: hero-rise 0.9s cubic-bezier(.22,.68,0,1.2) 0.3s both;
}

/* ── Hero panel: glassmorphism lift ──────────────── */
.hero-panel span {
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.hero-panel span:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.55);
  transform: translateY(-2px);
}

/* ── Header & topbar: появление ─────────────────── */
@keyframes header-drop {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.site-topbar { animation: header-drop 0.4s ease 0s both; }
.site-header  { animation: header-drop 0.4s ease 0.05s both; }

/* ── Аккордеон: нажимаемость ─────────────────────── */
.catalog-sub-title,
.price-group-header {
  transition: color var(--t-fast);
}
.catalog-sub-title:hover,
.price-group-header:hover {
  color: var(--sage-dark);
}

/* ── Messenger band кнопки ───────────────────────── */
.messenger-band .site-button {
  transition: background var(--t), color var(--t), transform var(--t-fast),
              box-shadow var(--t), border-color var(--t);
}
.messenger-band .site-button.primary:hover {
  background: var(--mist) !important;
  box-shadow: 0 6px 20px rgba(255,255,255,.28);
}
.messenger-band .site-button.secondary:hover {
  border-color: #fff;
  box-shadow: 0 4px 14px rgba(255,255,255,.15);
}

/* ── Scroll-reveal (класс добавляется JS-ом) ─────── */
.js-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(.22,.68,0,1.2);
}
.js-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
