/* ==========================================================================
   TALIYA — style.css (v4)
   Sidebar layout + cream palette + split hero
   ========================================================================== */

/* ===== 1. DESIGN TOKENS ===== */
:root {
  /* Palette */
  --color-cream: #E5DDCE;
  --color-cream-soft: #F5F1E8;
  --color-cream-deep: #D5C9B8;
  --color-white: #FFFFFF;
  --color-off-white: #FBFAF6;

  --color-sage-deep: #A3A282;   /* palette swatch 1: main olive */
  --color-sage: #BBB89A;
  --color-sage-soft: #D6D3BD;
  --color-sage-pale: #EFECDF;
  --color-sage-ink: #465149;    /* palette swatch 2: text + shapes */

  --color-accent: #E8734A;      /* warm orange CTA accent */
  --color-accent-dark: #C65E39;
  --color-accent-soft: #F3A07E;

  --color-text: #202622;
  --color-text-muted: #6F746B;
  --color-text-soft: #8D9288;
  --color-border: rgba(26, 26, 26, 0.08);
  --color-border-strong: rgba(26, 26, 26, 0.16);

  --color-light-text: #FFFFFF;
  --color-light-muted: rgba(255, 255, 255, 0.76);
  --color-light-border: rgba(255, 255, 255, 0.28);

  /* Typography */
  --font-serif: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-weight-heading: 500;

  --font-size-xs: 13px;
  --font-size-sm: 15px;
  --font-size-md: 17px;
  --font-size-lg: 20px;
  --font-size-xl: 24px;
  --font-size-2xl: 30px;
  --font-size-3xl: 42px;
  --font-size-4xl: 58px;
  --font-size-5xl: 74px;

  --line-height-tight: 1.15;
  --line-height-base: 1.55;
  --line-height-relaxed: 1.75;

  --letter-spacing-tight: -0.02em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.05em;
  --letter-spacing-xwide: 0.18em;

  /* Spacing */
  --space-xs: 6px;
  --space-sm: 12px;
  --space-md: 18px;
  --space-lg: 28px;
  --space-xl: 40px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* Layout */
  --sidebar-width: 260px;
  --sidebar-width-lg: 280px;
  --topbar-height: 64px;
  --container-max: 1280px;
  --container-narrow: 860px;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-2xl: 44px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(26, 26, 26, 0.06);
  --shadow-sm: 0 4px 12px rgba(26, 26, 26, 0.06);
  --shadow-md: 0 10px 28px rgba(26, 26, 26, 0.09);
  --shadow-lg: 0 22px 60px rgba(26, 26, 26, 0.12);
  --shadow-xl: 0 30px 80px rgba(26, 26, 26, 0.18);
  --shadow-accent: 0 12px 28px rgba(232, 115, 74, 0.28);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 180ms;
  --duration-base: 320ms;
  --duration-slow: 520ms;
}

/* ===== 2. RESET + BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  font-size: var(--font-size-md);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-text);
  margin: 0;
}
h1 { font-weight: 600; }
h2 { font-weight: 500; }
h3, h4 { font-weight: 600; }

p { margin: 0; }

::selection { background: var(--color-accent); color: var(--color-white); }

/* ===== 3. LAYOUT WRAPPER ===== */
body.has-sidebar {
  padding-left: var(--sidebar-width);
  min-height: 100vh;
}

.page {
  display: block;
  min-height: calc(100vh - var(--topbar-height));
  background: var(--color-cream);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  padding: 0 clamp(20px, 4vw, 56px);
  margin: 0 auto;
}
.container--narrow { max-width: var(--container-narrow); }

.section {
  padding: clamp(64px, 8vw, 120px) 0;
  position: relative;
}

.section__header {
  max-width: 720px;
  margin: 0 auto var(--space-2xl);
  text-align: center;
}
.section__title {
  font-size: clamp(30px, 4vw, var(--font-size-3xl));
  margin: var(--space-sm) 0 var(--space-md);
}
.section__title--light { color: var(--color-light-text); }
.section__subtitle {
  font-size: var(--font-size-md);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: var(--letter-spacing-xwide);
  text-transform: uppercase;
  color: var(--color-sage);
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px; height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.eyebrow--light { color: var(--color-light-muted); }

/* ===== 4. SIDEBAR ===== */
.sidebar {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: var(--sidebar-width);
  background: var(--color-white);
  border-right: 1px solid var(--color-border);
  z-index: 80;
  display: flex;
  flex-direction: column;
  transform: translateX(0);
  transition: transform var(--duration-base) var(--ease);
  overflow-y: auto;
  scrollbar-width: thin;
}
.sidebar::-webkit-scrollbar { width: 4px; }
.sidebar::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 4px; }

.sidebar__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100vh;
  padding: 28px 22px 24px;
  gap: var(--space-xl);
}

.sidebar__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.sidebar__logo-img {
  max-width: 200px;
  max-height: 88px;
  height: auto;
  width: auto;
  object-fit: contain;
  display: block;
}
.sidebar__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.sidebar__logo-name {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-sage-ink);
  letter-spacing: var(--letter-spacing-tight);
}
.sidebar__logo-tagline {
  font-size: 10px;
  letter-spacing: var(--letter-spacing-xwide);
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* Navigation */
.sidebar__nav { flex: 1 1 auto; }
.sidebar__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sidebar__nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 14px;
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-md);
  transition: background var(--duration-fast) var(--ease), color var(--duration-fast) var(--ease);
  position: relative;
  cursor: pointer;
}
.sidebar__nav-link::before {
  content: "";
  position: absolute;
  left: 14px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: transparent;
  opacity: 0;
  transition: all var(--duration-fast) var(--ease);
}
.sidebar__nav-link > span { transition: transform var(--duration-fast) var(--ease); }
.sidebar__nav-link:hover {
  background: var(--color-cream);
  color: var(--color-sage-ink);
}
.sidebar__nav-link:hover > span { transform: translateX(14px); }
.sidebar__nav-link:hover::before { opacity: 1; background: var(--color-accent); }

.sidebar__nav-link--active {
  background: var(--color-sage-deep);
  color: var(--color-sage-ink);
}
.sidebar__nav-link--active::before { opacity: 1; background: var(--color-accent); }
.sidebar__nav-link--active > span { transform: translateX(14px); }

.sidebar__nav-caret {
  width: 14px; height: 14px;
  transition: transform var(--duration-base) var(--ease);
  flex-shrink: 0;
}
.sidebar__nav-item--expandable.sidebar__nav-item--open .sidebar__nav-caret {
  transform: rotate(180deg);
}
.sidebar__subnav {
  list-style: none;
  padding: 4px 0 4px 14px;
  margin: 0;
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease);
}
.sidebar__nav-item--expandable.sidebar__nav-item--open .sidebar__subnav {
  max-height: 600px;
}
.sidebar__subnav-link {
  display: block;
  padding: 7px 14px;
  font-size: 12.5px;
  color: var(--color-text-muted);
  border-left: 1px solid var(--color-border);
  transition: color var(--duration-fast) var(--ease), border-color var(--duration-fast) var(--ease), transform var(--duration-fast) var(--ease);
}
.sidebar__subnav-link:hover {
  color: var(--color-sage-ink);
  border-left-color: var(--color-accent);
  transform: translateX(2px);
}

/* Contacts */
.sidebar__contacts {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  background: var(--color-cream);
  border-radius: var(--radius-md);
}
.sidebar__phone {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-sage-ink);
  letter-spacing: var(--letter-spacing-tight);
  line-height: 1.2;
  transition: color var(--duration-fast) var(--ease);
}
.sidebar__phone:hover { color: var(--color-accent); }
.sidebar__phone--secondary { font-size: 17px; color: var(--color-text-muted); }
.sidebar__address {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-top: 8px;
}

/* Socials */
.sidebar__socials {
  display: flex;
  gap: 8px;
  align-items: center;
}
.sidebar__social {
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cream);
  border-radius: 50%;
  color: var(--color-sage-ink);
  transition: background var(--duration-fast) var(--ease), color var(--duration-fast) var(--ease), transform var(--duration-fast) var(--ease);
}
.sidebar__social i { width: 16px; height: 16px; }
.sidebar__social:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Sidebar backdrop (mobile only) */
.sidebar-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-base) var(--ease);
  z-index: 70;
}
.sidebar-backdrop--visible {
  opacity: 1;
  pointer-events: auto;
}

/* ===== 5. TOPBAR (MOBILE) ===== */
.topbar {
  display: none;
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--topbar-height);
  background: rgba(243, 236, 223, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
}
.topbar__logo {
  display: inline-flex;
  align-items: center;
}
.topbar__logo img {
  max-height: 38px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.topbar__logo-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-sage-ink);
}
.topbar__burger {
  width: 44px; height: 44px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 50%;
  background: var(--color-sage-deep);
  transition: background var(--duration-fast) var(--ease);
}
.topbar__burger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--color-sage-ink);
  border-radius: 1px;
  transition: transform var(--duration-base) var(--ease), opacity var(--duration-fast) var(--ease);
}
.topbar__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.topbar__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.topbar__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.topbar__burger:hover { background: var(--color-accent); }

/* ===== 6. BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  font-family: var(--font-sans);
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: var(--letter-spacing-wide);
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--duration-fast) var(--ease), box-shadow var(--duration-fast) var(--ease), background var(--duration-fast) var(--ease), color var(--duration-fast) var(--ease), border-color var(--duration-fast) var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
  line-height: 1;
}
.btn i { width: 16px; height: 16px; stroke-width: 2; }
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--color-white);
  color: var(--color-sage-ink);
  box-shadow: 0 10px 24px rgba(70, 81, 73, 0.14);
}
.btn--primary:hover {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.btn--accent {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: var(--shadow-accent);
}
.btn--accent:hover {
  background: var(--color-accent-dark);
  box-shadow: 0 18px 40px rgba(232, 115, 74, 0.38);
}

.btn--secondary {
  background: var(--color-cream);
  color: var(--color-sage-ink);
  border-color: var(--color-border-strong);
}
.btn--secondary:hover {
  background: var(--color-white);
  border-color: var(--color-sage-deep);
}

.btn--ghost-light {
  background: transparent;
  color: var(--color-light-text);
  border-color: var(--color-light-border);
}
.btn--ghost-light:hover {
  background: rgba(70, 81, 73, 0.08);
  border-color: var(--color-light-text);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border-strong);
}
.btn--outline:hover {
  background: var(--color-white);
  border-color: var(--color-sage-deep);
}

.btn--lg { padding: 16px 32px; font-size: var(--font-size-md); }
.btn--sm { padding: 10px 20px; font-size: var(--font-size-xs); }

/* ===== 7. SPLIT HERO ===== */
.hero-split {
  padding: clamp(8px, 0.8vw, 16px) clamp(16px, 3vw, 40px) clamp(16px, 2vw, 32px);
  min-height: auto;
  display: flex;
  align-items: stretch;
}
/* On desktop, lock hero to fit viewport height */
@media (min-width: 1025px) {
  .hero-split {
    min-height: calc(100vh - 16px);
    max-height: calc(100vh - 16px);
  }
  .hero-split__grid { height: 100%; }
  .hero-split__card {
    overflow-y: auto;
    scrollbar-width: none;
  }
  .hero-split__card::-webkit-scrollbar { display: none; }
}

/* Brand heading block: ТАЛИЯ / license */
.hero-split__heading {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-split__brand {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: var(--color-light-text);
  margin: 0;
  text-transform: uppercase;
}
.hero-split__brand::after {
  content: "";
  display: block;
  width: 48px; height: 3px;
  background: var(--color-accent);
  margin-top: 10px;
  border-radius: 2px;
}
.hero-split__subbrand {
  font-family: var(--font-serif);
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 400;
  color: var(--color-light-muted);
  margin: 8px 0 0;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-split__license {
  font-size: 12px;
  color: var(--color-light-muted);
  opacity: 0.75;
  margin: 6px 0 0;
  letter-spacing: 0.02em;
}

/* Positioning phrase under license */
.hero-split__positioning {
  position: relative;
  z-index: 2;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.5;
  color: var(--color-light-muted);
  max-width: 480px;
  margin: 2px 0 0;
}

/* Compact contact row under "Записаться" on service pages */
.contact-quick-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}
.contact-quick-row__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  color: var(--color-text);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 180ms var(--ease-out), border-color 180ms var(--ease-out), color 180ms var(--ease-out);
  white-space: nowrap;
}
.contact-quick-row__btn i { width: 14px; height: 14px; }
.contact-quick-row__btn:hover {
  background: var(--color-white);
  border-color: var(--color-sage-deep);
  color: var(--color-sage-ink);
}

/* Variant inside dark booking-cta block */
.booking-cta .contact-quick-row__btn {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-light-border);
  color: var(--color-light-text);
}
.booking-cta .contact-quick-row__btn:hover {
  background: rgba(232, 115, 74, 0.2);
  border-color: rgba(232, 115, 74, 0.5);
}

/* UTP list with pulsing dots */
.hero-utp {
  position: relative;
  z-index: 2;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 20px;
}
.hero-utp li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--color-light-text);
  letter-spacing: 0.01em;
}
.hero-utp__dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 0 rgba(232, 115, 74, 0.55);
  animation: utpPulse 2.2s var(--ease-out) infinite;
}
.hero-utp li:nth-child(2) .hero-utp__dot { animation-delay: 0.3s; }
.hero-utp li:nth-child(3) .hero-utp__dot { animation-delay: 0.6s; }
.hero-utp li:nth-child(4) .hero-utp__dot { animation-delay: 0.9s; }
.hero-utp li:nth-child(5) .hero-utp__dot { animation-delay: 1.2s; }
.hero-utp li:nth-child(6) .hero-utp__dot { animation-delay: 1.5s; }
@keyframes utpPulse {
  0%   { box-shadow: 0 0 0 0 rgba(232, 115, 74, 0.55); transform: scale(1); }
  60%  { box-shadow: 0 0 0 8px rgba(232, 115, 74, 0); transform: scale(1.25); }
  100% { box-shadow: 0 0 0 0 rgba(232, 115, 74, 0); transform: scale(1); }
}

/* Compact buttons inside hero card to keep row on one line */
.hero-split__cta .btn--lg {
  padding: 10px 18px;
  font-size: 14px;
}
.hero-split__cta .btn--lg i { width: 16px; height: 16px; }

/* Compact buttons inside hero card to keep row on one line */
.hero-split__cta .btn--lg {
  padding: 10px 18px;
  font-size: 14px;
}
.hero-split__cta .btn--lg i { width: 16px; height: 16px; }

/* Social / direct booking row */
.hero-social {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.hero-social__label {
  font-size: 12px;
  color: var(--color-light-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-right: 4px;
}
.hero-social__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  white-space: nowrap;
  flex: 0 1 auto;
  min-width: 0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-pill);
  color: var(--color-light-text);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: background 200ms var(--ease-out), border-color 200ms var(--ease-out);
}
.hero-social__btn i { width: 14px; height: 14px; }
.hero-social__btn:hover {
  background: rgba(232, 115, 74, 0.18);
  border-color: rgba(232, 115, 74, 0.45);
}
.hero-split__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(18px, 2.5vw, 28px);
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  align-items: stretch;
}

/* Left green card */
.hero-split__card {
  background: var(--color-sage-deep);
  color: var(--color-light-text);
  border-radius: var(--radius-2xl);
  padding: clamp(18px, 2vw, 30px);
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1vw, 14px);
  position: relative;
  overflow: hidden;
  min-height: 0;
}
.hero-split__card::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 115, 74, 0.22), transparent 70%);
  pointer-events: none;
}
.hero-split__card::after {
  content: "";
  position: absolute;
  bottom: -100px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 179, 136, 0.14), transparent 70%);
  pointer-events: none;
}

.hero-split__card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-md);
  position: relative;
  z-index: 2;
}

.hero-split__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: var(--letter-spacing-xwide);
  text-transform: uppercase;
  color: var(--color-light-muted);
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-pill);
}
.hero-split__eyebrow i { color: var(--color-accent-soft); }

.hero-split__counter {
  font-family: var(--font-serif);
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: var(--color-light-text);
  line-height: 1;
}
.hero-split__counter-num {
  font-size: 48px;
  font-weight: 600;
  color: var(--color-accent);
}
.hero-split__counter-sep {
  font-size: 28px;
  color: var(--color-light-muted);
  margin: 0 2px;
}
.hero-split__counter-total {
  font-size: 22px;
  color: var(--color-light-muted);
}

/* Hero slides — text track (crossfade stack) */
.hero-split__slides-text {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
}
.hero-split__slide-text {
  grid-row: 1;
  grid-column: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.hero-split__slide-text.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-split__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-light-text);
  margin: 0;
}
.hero-split__title::after {
  content: "";
  display: block;
  width: 64px; height: 3px;
  background: var(--color-accent);
  margin-top: 20px;
  border-radius: 2px;
}

.hero-split__subtitle {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: var(--line-height-relaxed);
  color: var(--color-light-muted);
  max-width: 520px;
  margin: 0;
}

.hero-split__promo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius-pill);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-white);
  align-self: flex-start;
  position: relative;
  z-index: 2;
}

.hero-split__cta {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-sm);
  position: relative;
  z-index: 2;
}

.hero-split__notes {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
}
.hero-split__note {
  grid-row: 1;
  grid-column: 1;
  font-size: 11.5px;
  color: var(--color-light-muted);
  line-height: 1.5;
  max-width: 520px;
  opacity: 0;
  transition: opacity 600ms var(--ease-out);
  pointer-events: none;
  margin: 0;
}
.hero-split__note.is-active { opacity: 1; pointer-events: auto; }

.hero-split__arrows {
  display: inline-flex;
  gap: 10px;
  position: relative;
  z-index: 2;
  align-self: flex-start;
}
.hero-split__arrow {
  width: 46px; height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--color-light-border);
  color: var(--color-light-text);
  transition: background var(--duration-fast) var(--ease), border-color var(--duration-fast) var(--ease), transform var(--duration-fast) var(--ease);
}
.hero-split__arrow i { width: 18px; height: 18px; }
.hero-split__arrow:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
}

.hero-split__meta {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-light-border);
  position: relative;
  z-index: 2;
}
.hero-split__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-split__meta-label {
  font-size: 10px;
  letter-spacing: var(--letter-spacing-xwide);
  text-transform: uppercase;
  color: var(--color-accent-soft);
}
.hero-split__meta-value {
  font-size: var(--font-size-sm);
  color: var(--color-light-text);
  line-height: 1.4;
}

/* Right photo */
.hero-split__media {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: var(--color-cream-deep);
  min-height: 0;
}
.hero-split__media-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}
.hero-split__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 700ms var(--ease-out), transform 8s ease-out;
}
.hero-split__image.is-active {
  opacity: 1;
  transform: scale(1);
}
.hero-split__media:hover .hero-split__image.is-active { transform: scale(1.04); }

.hero-split__phone-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px 14px 14px;
  background: rgba(243, 236, 223, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  transition: transform var(--duration-fast) var(--ease);
  color: var(--color-text);
}
.hero-split__phone-badge:hover { transform: translateY(-2px); }
.hero-split__phone-badge i {
  width: 18px; height: 18px;
  color: var(--color-white);
  background: var(--color-accent);
  border-radius: 50%;
  padding: 9px;
  box-sizing: content-box;
  flex-shrink: 0;
}
.hero-split__phone-label {
  display: block;
  font-size: 10px;
  letter-spacing: var(--letter-spacing-xwide);
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.hero-split__phone-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--color-sage-ink);
}

.hero-split__tag {
  position: absolute;
  top: 24px; left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(243, 236, 223, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  color: var(--color-sage-ink);
}
.hero-split__tag i { color: var(--color-accent); }

/* ===== 8. PROMO CAROUSEL ===== */
.promo-carousel {
  padding: clamp(56px, 6vw, 96px) 0;
  background: var(--color-cream-soft);
  position: relative;
}
.promo-carousel__inner {
  max-width: var(--container-max);
  padding: 0 clamp(20px, 4vw, 56px);
  margin: 0 auto;
}
.promo-carousel__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}
.promo-carousel__heading { max-width: 620px; }
.promo-carousel__title {
  font-size: clamp(28px, 3.5vw, var(--font-size-3xl));
  margin: var(--space-sm) 0 var(--space-sm);
}
.promo-carousel__subtitle {
  color: var(--color-text-muted);
  font-size: var(--font-size-md);
  line-height: var(--line-height-relaxed);
}
.promo-carousel__controls {
  display: flex;
  gap: 10px;
}
.promo-carousel__btn {
  width: 48px; height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-sage-ink);
  border: 1px solid var(--color-border);
  transition: all var(--duration-fast) var(--ease);
}
.promo-carousel__btn i { width: 18px; height: 18px; }
.promo-carousel__btn:hover {
  background: var(--color-sage-deep);
  color: var(--color-sage-ink);
  border-color: var(--color-sage-deep);
  transform: translateY(-2px);
}

.promo-carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius-xl);
}
.promo-carousel__track {
  display: flex;
  width: 100%;
  transition: transform var(--duration-slow) var(--ease-out);
  will-change: transform;
}
.promo-slide {
  min-width: 100%;
  padding: 0;
}
.promo-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 360px;
  box-shadow: var(--shadow-sm);
}
.promo-card__media {
  position: relative;
  background: linear-gradient(135deg, var(--color-sage-deep), var(--color-sage));
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.promo-card__icon {
  position: relative;
  z-index: 1;
  width: 96px; height: 96px;
  background: rgba(70, 81, 73, 0.08);
  border: 1px solid var(--color-light-border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.promo-card__icon i { width: 42px; height: 42px; color: var(--color-light-text); }

.promo-card__body {
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  justify-content: center;
}
.promo-card__badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 14px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  border-radius: var(--radius-pill);
}
.promo-card__title {
  font-size: clamp(22px, 2.6vw, 30px);
  color: var(--color-text);
  margin: 0;
}
.promo-card__description {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
}

.promo-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-lg);
}
.promo-carousel__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-border-strong);
  transition: all var(--duration-fast) var(--ease);
}
.promo-carousel__dot:hover { background: var(--color-sage); }
.promo-carousel__dot--active {
  background: var(--color-accent);
  width: 28px;
  border-radius: var(--radius-pill);
}

/* ===== 9. BENEFITS ===== */
.benefits { background: var(--color-cream); }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
}
.benefit-card {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: transform var(--duration-base) var(--ease), box-shadow var(--duration-base) var(--ease), border-color var(--duration-base) var(--ease);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-sage-soft);
}
.benefit-card__icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--color-sage-deep);
  color: var(--color-sage-ink);
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.benefit-card__icon i { width: 22px; height: 22px; }
.benefit-card__title {
  font-size: var(--font-size-lg);
  font-family: var(--font-serif);
  margin-bottom: 6px;
}
.benefit-card__text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
}

/* ===== 10. SERVICES ===== */
.services-section { background: var(--color-cream-soft); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--color-border);
  transition: transform var(--duration-base) var(--ease), box-shadow var(--duration-base) var(--ease), border-color var(--duration-base) var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-sage-soft);
}
.service-card__image-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: var(--color-cream-deep);
}
.service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.service-card:hover .service-card__image { transform: scale(1.06); }

.service-card__body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex: 1;
}
.service-card__discount {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 10px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  border-radius: var(--radius-pill);
}
.service-card__name {
  font-family: var(--font-serif);
  font-size: var(--font-size-xl);
  font-weight: 500;
  color: var(--color-text);
  margin: 0;
}
.service-card__brief {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: calc(1.5em * 3);
}
.service-card__body {
  justify-content: space-between;
}
.service-card__bottom {
  margin-top: auto;
}
.service-card__price { display: none !important; }
.service-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-top: var(--space-xs);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border);
}
.service-card__more {
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  color: var(--color-sage-ink);
}
.service-card__arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--color-cream);
  color: var(--color-sage-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast) var(--ease);
}
.service-card__arrow i { width: 16px; height: 16px; }
.service-card:hover .service-card__arrow {
  background: var(--color-accent);
  color: var(--color-white);
  transform: rotate(-20deg);
}

/* ===== 11. ABOUT CTA ===== */
.about-cta { background: var(--color-cream); }
.about-cta__panel {
  background: var(--color-sage-deep);
  color: var(--color-light-text);
  border-radius: var(--radius-2xl);
  padding: clamp(40px, 5vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}
.about-cta__panel::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 115, 74, 0.2), transparent 70%);
}
.about-cta__panel::after {
  content: "";
  position: absolute;
  bottom: -120px; left: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 179, 136, 0.14), transparent 70%);
}
.about-cta__panel > * { position: relative; z-index: 2; }

.about-cta__panel .section__title {
  color: var(--color-light-text);
  margin: var(--space-sm) auto var(--space-md);
  max-width: 720px;
}
.about-cta__text {
  color: var(--color-light-muted);
  font-size: var(--font-size-md);
  line-height: var(--line-height-relaxed);
  max-width: 680px;
  margin: 0 auto var(--space-lg);
}
.about-cta__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(232, 115, 74, 0.14);
  border: 1px solid rgba(232, 115, 74, 0.35);
  border-radius: var(--radius-pill);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-accent-soft);
  margin-bottom: var(--space-lg);
}
.about-cta__chip i { width: 16px; height: 16px; color: var(--color-accent); }
.about-cta__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== 12. CONTACT PREVIEW ===== */
.contact-preview { background: var(--color-cream-soft); }
.contact-preview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.contact-card {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: transform var(--duration-base) var(--ease), border-color var(--duration-base) var(--ease);
}
.contact-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-sage-soft);
}
.contact-card__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-sage-deep);
  color: var(--color-sage-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-card__icon i { width: 18px; height: 18px; }
.contact-card__body { display: flex; flex-direction: column; gap: 4px; }
.contact-card__label {
  font-size: 10px;
  letter-spacing: var(--letter-spacing-xwide);
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.contact-card__value {
  font-size: var(--font-size-md);
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.4;
}
.contact-card__value a { color: inherit; transition: color var(--duration-fast) var(--ease); }
.contact-card__value a:hover { color: var(--color-accent); }

.contact-preview__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
}
.contact-preview__rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: var(--font-size-sm);
  font-weight: 700;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-accent);
}

/* ===== 13. PAGE HERO (inner pages) ===== */
.page-hero {
  padding: clamp(56px, 7vw, 96px) clamp(20px, 4vw, 56px) clamp(48px, 5vw, 72px);
  background: var(--color-cream);
}
.page-hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  text-align: center;
}
.page-hero__title {
  font-size: clamp(32px, 5vw, var(--font-size-4xl));
  margin: var(--space-sm) 0 var(--space-sm);
  color: var(--color-text);
}
.page-hero__subtitle {
  font-size: var(--font-size-md);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  max-width: 640px;
  margin: 0 auto;
}

/* ===== 14. PROMOTIONS PAGE ===== */
.promotions__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-lg);
}
.promotion-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  transition: transform var(--duration-base) var(--ease), box-shadow var(--duration-base) var(--ease), border-color var(--duration-base) var(--ease);
}
.promotion-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-sage-soft);
}
.promotion-card__badge {
  display: inline-flex;
  padding: 6px 14px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);
}
.promotion-card__title {
  font-family: var(--font-serif);
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
}
.promotion-card__description {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
}

/* ===== 15. FOOTER ===== */
.footer {
  background: var(--color-sage-deep);
  color: var(--color-light-text);
  padding: var(--space-3xl) 0 var(--space-lg);
  position: relative;
}
.footer__container { padding-left: clamp(20px, 4vw, 56px); padding-right: clamp(20px, 4vw, 56px); }
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--color-light-border);
}
.footer__col { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer__heading {
  font-family: var(--font-serif);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-light-text);
}
.footer__tagline, .footer__company, .footer__license, .footer__requisites {
  color: var(--color-light-muted);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
}
.footer__requisites { font-size: var(--font-size-xs); opacity: 0.85; }
.footer__links, .footer__contacts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__link {
  color: var(--color-light-muted);
  font-size: var(--font-size-sm);
  transition: color var(--duration-fast) var(--ease);
}
.footer__link:hover { color: var(--color-accent-soft); }

.footer__contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--color-light-muted);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-base);
}
.footer__contact-icon {
  width: 16px; height: 16px;
  color: var(--color-accent-soft);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__socials {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--font-size-sm);
  color: var(--color-light-muted);
  padding: 6px 0;
  transition: color var(--duration-fast) var(--ease);
}
.footer__social i { width: 16px; height: 16px; }
.footer__social:hover { color: var(--color-accent-soft); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  padding-top: var(--space-lg);
}
.footer__copyright {
  color: var(--color-light-muted);
  font-size: var(--font-size-xs);
}
.footer__legal-links {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.footer__legal-link {
  color: var(--color-light-muted);
  font-size: var(--font-size-xs);
  transition: color var(--duration-fast) var(--ease);
}
.footer__legal-link:hover { color: var(--color-accent-soft); }

/* Medical disclaimer (ФЗ-38 ст. 24) */
.med-disclaimer {
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin: var(--space-md) 0 0;
  letter-spacing: 0.01em;
}
.med-disclaimer--dark {
  position: relative;
  z-index: 2;
  color: var(--color-light-muted);
  margin: 0;
  font-size: 11px;
}
.footer__disclaimer {
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-light-border);
  margin-top: var(--space-lg);
}
.med-disclaimer--footer {
  color: var(--color-light-muted);
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}
.footer__authorities {
  text-align: center;
  font-size: var(--font-size-xs);
  color: var(--color-light-muted);
  opacity: 0.8;
  margin: 8px 0 0;
  line-height: 1.6;
}
.footer__authorities a {
  color: var(--color-light-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__authorities a:hover { color: var(--color-accent-soft); }

/* Age mark 18+ (ФЗ-436) */
.footer__age-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  padding: 2px 7px;
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  color: var(--color-light-muted);
  vertical-align: middle;
}

/* ===== 16. FLOATING BUTTONS ===== */
.whatsapp-float, .booking-float {
  position: fixed;
  bottom: 22px;
  z-index: 90;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lg);
  transition: transform var(--duration-fast) var(--ease), box-shadow var(--duration-fast) var(--ease);
}
.whatsapp-float {
  left: calc(var(--sidebar-width) + 20px);
  width: 56px; height: 56px;
  background: #25D366;
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.whatsapp-float i { width: 28px; height: 28px; }
.whatsapp-float:hover { transform: scale(1.08); }

.booking-float {
  right: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: 600;
  font-size: var(--font-size-sm);
  letter-spacing: var(--letter-spacing-wide);
}
.booking-float i { width: 18px; height: 18px; }
.booking-float:hover { transform: translateY(-2px); background: var(--color-accent-dark); }

/* ===== 17. COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 22px;
  left: calc(var(--sidebar-width) + 20px);
  right: 22px;
  max-width: 640px;
  z-index: 100;
  padding: 18px 22px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: none;
}
.cookie-banner__content {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: space-between;
}
.cookie-banner__content p {
  font-size: var(--font-size-sm);
  color: var(--color-text);
  flex: 1;
  min-width: 220px;
}
.cookie-banner__btn {
  padding: 10px 22px;
  background: var(--color-sage-deep);
  color: var(--color-sage-ink);
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: background var(--duration-fast) var(--ease);
}
.cookie-banner__btn:hover { background: var(--color-accent); }
.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-banner__btn--ghost {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
}
.cookie-banner__btn--ghost:hover {
  background: var(--color-cream-deep);
  color: var(--color-text);
}
.link-inline { color: var(--color-sage-ink); text-decoration: underline; }

/* ===== 18. FADE-IN ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.service-price.fade-in {
  opacity: 1;
  transform: none;
}
.delay-1 { transition-delay: 80ms; }
.delay-2 { transition-delay: 160ms; }
.delay-3 { transition-delay: 240ms; }
.delay-4 { transition-delay: 320ms; }
.delay-5 { transition-delay: 400ms; }
.delay-6 { transition-delay: 480ms; }

/* ===== 19. SERVICE DETAIL PAGE ===== */
.service-hero {
  position: relative;
  min-height: clamp(420px, 60vh, 620px);
  padding: clamp(48px, 6vw, 96px) clamp(20px, 4vw, 56px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-sage-pale, #e9ecdd);
}
.service-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.service-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(253,248,238,0.55) 0%, rgba(253,248,238,0.92) 100%);
  z-index: 1;
}
.service-hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0;
  width: 100%;
}
.service-hero__inner { max-width: 1000px; margin: 0 auto; position: relative; z-index: 2; }
.service-hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 11px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
}
.service-hero__breadcrumb a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease);
}
.service-hero__breadcrumb a:hover { color: var(--color-sage-ink); }
.service-hero__breadcrumb svg, .service-hero__breadcrumb i { color: var(--color-text-muted); opacity: 0.5; }
.service-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5.5vw, 60px);
  line-height: 1.05;
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-text);
  margin: 0 0 var(--space-md);
  max-width: 820px;
}
.service-hero__subtitle {
  color: var(--color-text-muted);
  font-size: var(--font-size-md);
  line-height: var(--line-height-relaxed);
  max-width: 640px;
  margin-bottom: var(--space-lg);
}
.service-hero__description {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.6;
  color: var(--color-text);
  max-width: 620px;
  margin: 0 0 var(--space-lg);
}
.service-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-lg);
}
.service-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}
.service-hero__cta--stack {
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
}
.service-hero__cta--stack > .btn { align-self: flex-start; }
.service-hero__cta-note {
  font-size: 12px;
  color: var(--color-text-muted);
  margin: 4px 0 0;
  max-width: 480px;
  line-height: 1.5;
}
.btn--max-chat {
  background: var(--color-text);
  color: var(--color-white);
}
.btn--max-chat:hover {
  background: #2C2C2C;
  color: var(--color-white);
  transform: translateY(-2px);
}

.tezisy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}
.service-advantages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.advantage-card {
  background: var(--color-white);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
}
.advantage-card__icon {
  width: 40px; height: 40px;
  background: var(--color-sage-deep);
  color: var(--color-sage-ink);
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  flex-shrink: 0;
}
.advantage-card__icon i, .advantage-card__icon svg { width: 18px; height: 18px; }
.advantage-card__body { min-width: 0; }
.advantage-card__title {
  font-family: var(--font-serif);
  font-size: var(--font-size-md);
  font-weight: 600;
  margin: 0 0 4px;
  line-height: 1.25;
}
.advantage-card__text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
}
@media (max-width: 640px) {
  .service-advantages__grid { grid-template-columns: 1fr; }
}

.service-doctors__grid,
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
  justify-content: center;
  gap: var(--space-lg);
}
.service-doctors .section__title,
.service-doctors .section__subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.doctor-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--duration-base) var(--ease), box-shadow var(--duration-base) var(--ease), border-color var(--duration-base) var(--ease);
}
.doctor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-sage-soft, #c3cba8);
}
.doctor-card__photo-wrapper,
.doctor-card__photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 0;
  overflow: hidden;
  background: var(--color-cream-soft, #f5efe3);
  display: block;
}
.doctor-card__photo img,
.doctor-card__photo-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
  display: block;
}
.doctor-card:hover .doctor-card__photo img,
.doctor-card:hover .doctor-card__photo-wrapper img { transform: scale(1.04); }
.doctor-card__body,
.doctor-card > :not(.doctor-card__photo-wrapper):not(.doctor-card__photo) {
  padding: 0 var(--space-lg);
}
.doctor-card__body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.doctor-card__name {
  font-family: var(--font-serif);
  font-size: var(--font-size-xl);
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
  color: var(--color-text);
}
.doctor-card__role {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-sage-ink);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  margin: 0;
}
.doctor-card__bio {
  font-size: var(--font-size-sm);
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
}
.doctor-card__experience {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 4px 12px;
  background: var(--color-cream-soft, #f5efe3);
  color: var(--color-sage-ink);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  margin: 0;
}
.doctor-card:last-child { margin-bottom: 0; }

.price-group { border-bottom: 1px solid var(--color-border); }
.price-group__header {
  width: 100%;
  padding: var(--space-md) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  text-align: left;
  font-family: var(--font-serif);
  font-size: var(--font-size-lg);
  cursor: pointer;
  color: var(--color-text);
}
.price-group__caret {
  width: 20px; height: 20px;
  transition: transform var(--duration-base) var(--ease);
  color: var(--color-sage-ink);
}
.price-group--open .price-group__caret { transform: rotate(180deg); }
.price-group__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease);
}
.price-group--open .price-group__body { max-height: 2400px; }
.price-group__list { list-style: none; padding: 0 0 var(--space-md); margin: 0; }
.price-group__item {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 10px 0;
  border-top: 1px dashed var(--color-border);
  font-size: var(--font-size-sm);
}
.price-group__item-name { color: var(--color-text); flex: 1; }
.price-group__item-price { font-weight: 600; color: var(--color-sage-ink); white-space: nowrap; }

.sanpin-marquee {
  padding: var(--space-md) 0;
  background: var(--color-sage-deep);
  color: var(--color-light-text);
  overflow: hidden;
  white-space: nowrap;
}
.sanpin-marquee__track {
  display: inline-flex;
  gap: var(--space-xl);
  animation: marquee 40s linear infinite;
}
.sanpin-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--font-size-xs);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  color: var(--color-light-muted);
}
.sanpin-marquee__item i { width: 14px; height: 14px; color: var(--color-accent-soft); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.booking-cta {
  padding: clamp(48px, 5vw, 80px) clamp(20px, 4vw, 56px);
  text-align: center;
  background: var(--color-cream);
}

/* ===== 20. CALLBACK FORM ===== */
.callback {
  padding: clamp(56px, 6vw, 96px) 0;
  background: var(--color-cream);
}
.callback__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  text-align: center;
}
.callback__panel {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 4vw, 56px);
  box-shadow: var(--shadow-sm);
}
.callback__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.callback__form input, .callback__form textarea {
  padding: 14px 18px;
  font-size: var(--font-size-sm);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-cream-soft);
  color: var(--color-text);
  transition: border-color var(--duration-fast) var(--ease);
}
.callback__form input:focus, .callback__form textarea:focus {
  outline: none;
  border-color: var(--color-sage-deep);
}
.callback__form textarea {
  grid-column: 1 / -1;
  min-height: 100px;
  resize: vertical;
  font-family: inherit;
}
.callback__form button { grid-column: 1 / -1; justify-self: center; }

/* ===== 21. RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root { --sidebar-width: 240px; }
  .hero-split__grid { grid-template-columns: 1fr; }
  .hero-split__media { min-height: 380px; }
  .promo-card { grid-template-columns: 1fr; }
  .promo-card__media { min-height: 220px; }
}

@media (max-width: 900px) {
  body.has-sidebar { padding-left: 0; }
  .topbar { display: block; }
  .sidebar {
    transform: translateX(-100%);
    width: 300px;
    box-shadow: var(--shadow-xl);
  }
  .sidebar--open { transform: translateX(0); }
  .whatsapp-float { left: 20px; }
  .cookie-banner { left: 14px; right: 14px; bottom: 14px; }
}

@media (max-width: 640px) {
  .hero-split { padding: 8px 16px 32px; min-height: auto; }
  .hero-split__card { padding: 26px 22px; min-height: auto; }
  .hero-split__brand { font-size: 54px; }
  .hero-split__subbrand { font-size: 17px; }
  .hero-split__positioning { font-size: 14px; }
  .hero-social__btn span { display: none; }
  .hero-social__btn { padding: 8px; }
  .hero-social__btn i { width: 16px; height: 16px; }
  .hero-split__media { min-height: 300px; }
  .hero-split__title { font-size: 34px; }
  .hero-split__meta { grid-template-columns: 1fr; }
  .hero-split__counter-num { font-size: 36px; }
  .hero-split__phone-badge { padding: 10px 14px 10px 10px; bottom: 16px; right: 16px; }
  .hero-split__phone-num { font-size: 15px; }
  .hero-split__tag { top: 16px; left: 16px; font-size: 10px; }
  .section { padding: 56px 0; }
  .callback__form { grid-template-columns: 1fr; }
  .footer__legal-links { justify-content: center; }
  .footer__bottom { justify-content: center; text-align: center; }
  .booking-float span { display: none; }
  .booking-float { padding: 14px; border-radius: 50%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in { opacity: 1; transform: none; }
}

/* ===== PRICE ACCORDION + TABLE (service page) ===== */
.service-price { background: var(--color-off-white); }
.price-accordion { display: flex; flex-direction: column; gap: var(--space-sm); margin-top: var(--space-lg); }
.price-accordion__item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-soft);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}
.price-accordion__item:hover { border-color: var(--color-sage-light); }
.price-accordion__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  background: var(--color-white);
  text-align: left;
  cursor: pointer;
  border: none;
  transition: background var(--transition-fast);
}
.price-accordion__header:hover { background: var(--color-off-white); }
.price-accordion__title {
  font-family: var(--font-sans);
  font-size: var(--font-size-md);
  font-weight: 600;
  color: var(--color-black);
  margin: 0;
  letter-spacing: 0;
  flex: 1;
}
.price-accordion__count {
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  padding: 4px 10px;
  background: var(--color-off-white);
  border-radius: var(--radius-pill);
}
.price-accordion__icon {
  display: inline-flex;
  transition: transform var(--transition-base);
  flex-shrink: 0;
  color: var(--color-text-muted);
}
.price-accordion__item--open .price-accordion__icon { transform: rotate(180deg); }
.price-accordion__body {
  border-top: 1px solid var(--color-border-soft);
}

.price-table-wrapper { padding: var(--space-md) var(--space-xl) var(--space-lg); overflow-x: auto; }
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--font-size-sm);
}
.price-table th,
.price-table td {
  padding: var(--space-md) var(--space-sm);
  text-align: left;
  border-bottom: 1px solid var(--color-border-soft);
  vertical-align: top;
}
.price-table th {
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  color: var(--color-text-muted);
  background: transparent;
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover td { background: var(--color-off-white); }
.price-cell {
  font-weight: 700;
  color: var(--color-sage-ink);
  white-space: nowrap;
}
.price-cell--discount { color: var(--color-accent); }

.service-price__item-name { display: block; color: var(--color-text); line-height: 1.4; font-weight: 600; }
.service-price__item-desc {
  display: block;
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin-top: 4px;
  line-height: 1.4;
  font-weight: 400;
}
.service-price__note {
  font-size: var(--font-size-sm);
  color: var(--color-text);
  margin-top: var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  background: var(--color-sage-pale);
  border-radius: var(--radius-md);
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

@media (max-width: 640px) {
  .price-table th,
  .price-table td { padding: 10px 8px; font-size: 13px; }
  .price-accordion__header { padding: var(--space-md) var(--space-lg); }
  .price-table-wrapper { padding: var(--space-sm) var(--space-md) var(--space-md); }
}

/* ==========================================================================
   RESTORED BLOCKS (v4.1)
   ========================================================================== */

/* Utility */
.bg-off-white { background: var(--color-cream-soft, #f5efe3); }
.required { color: var(--color-accent); margin-left: 2px; }
.link-inline { color: var(--color-sage-ink); border-bottom: 1px solid currentColor; text-decoration: none; }
.link-inline:hover { color: var(--color-accent); }

/* ===== PAGE HERO (inner pages: contacts, about, gallery, promotions) ===== */
.page-hero {
  position: relative;
  padding: clamp(56px, 6vw, 96px) clamp(20px, 4vw, 56px) clamp(40px, 4vw, 64px);
  background: var(--color-cream);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-sage-soft, #c3cba8) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}
.page-hero__overlay { display: none; }
.page-hero__content,
.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-max, 1200px);
  margin: 0 auto;
  text-align: left;
}
.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: var(--letter-spacing-tight);
  margin: 0 0 var(--space-sm);
  color: var(--color-text);
}
.page-hero__subtitle {
  font-size: var(--font-size-md);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  max-width: 640px;
  margin: 0;
}

/* ===== SECTION hero variant (team/about/etc.) ===== */
.section--hero {
  padding: clamp(56px, 6vw, 96px) 0 clamp(24px, 3vw, 40px);
  background: var(--color-cream);
}
.section--hero .hero-content { text-align: left; max-width: 820px; }
.section--hero .section__title { text-align: left; }
.section--hero .section__subtitle { text-align: left; max-width: 640px; }

/* ===== TEZISY (service page benefits) ===== */
.service-tezisy { background: var(--color-white); }
.tezisy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
.tezis-card {
  padding: var(--space-lg);
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: transform var(--duration-base) var(--ease), box-shadow var(--duration-base) var(--ease);
  border: 1px solid var(--color-border);
}
.tezis-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-sage-soft, #c3cba8);
}
.tezis-card__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--color-sage-deep);
  color: var(--color-sage-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tezis-card__icon i, .tezis-card__icon svg { width: 22px; height: 22px; }
.tezis-card__text {
  font-size: var(--font-size-md);
  line-height: 1.5;
  color: var(--color-text);
  margin: 0;
}

/* ===== SERVICE PROTOCOL CARD ===== */
.service-protocol { background: var(--color-cream-soft, #f5efe3); }
.service-protocol__card {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(28px, 3vw, 48px);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}
.service-protocol__icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--color-sage-deep);
  color: var(--color-sage-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}
.service-protocol__icon i, .service-protocol__icon svg { width: 28px; height: 28px; }
.service-protocol__title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.5vw, 32px);
  margin: 0 0 var(--space-sm);
}
.service-protocol__text {
  color: var(--color-text);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

/* ===== SERVICE MEDIA (gallery/video) ===== */
.service-media { background: var(--color-cream); }
.service-media__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.service-media__item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-cream-soft, #f5efe3);
}
.service-media__item img,
.service-media__item video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}
.service-media__item:hover img,
.service-media__item:hover video { transform: scale(1.05); }
.service-media__video, .video-wrapper {
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-text);
  margin-top: var(--space-lg);
}
.service-media__video iframe, .video-wrapper iframe,
.service-media__video video, .video-wrapper video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ===== SERVICE DETAILS ===== */
.service-details { background: var(--color-white); }
.service-details__text {
  font-size: var(--font-size-md);
  line-height: var(--line-height-relaxed);
  color: var(--color-text);
  max-width: 760px;
  margin: 0 auto;
}
.service-details__text p { margin: 0 0 var(--space-md); }
.service-details__text p:last-child { margin-bottom: 0; }

/* ===== SANPIN BANNER ===== */
.service-sanpin-banner {
  background: var(--color-sage-deep);
  color: var(--color-light-text);
  padding: var(--space-md) 0;
  overflow: hidden;
}
.service-sanpin-banner .sanpin-marquee { padding: 0; background: transparent; }

/* ===== BOOKING CTA (after price) ===== */
.service-booking-cta, .booking-cta {
  background: var(--color-sage-deep);
  color: var(--color-light-text);
  padding: clamp(48px, 5vw, 80px) clamp(20px, 4vw, 56px);
  text-align: center;
}
.booking-cta__content {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.booking-cta__highlight {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-md);
}
.booking-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 46px);
  color: var(--color-light-text);
  margin: 0 0 var(--space-sm);
  line-height: 1.1;
}
.booking-cta__subtitle {
  font-size: var(--font-size-md);
  color: rgba(253,248,238,0.78);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--space-lg);
}
.booking-cta__actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== CONTACTS LAYOUT ===== */
.contacts { background: var(--color-cream); }
.contacts__layout {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: var(--space-2xl);
  align-items: start;
}
.contacts__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.contacts__map {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-cream-soft, #f5efe3);
  border: 1px solid var(--color-border);
}
.contacts__map iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}
.contacts__map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  color: var(--color-text-muted);
}

/* ===== SOCIAL CARDS ===== */
.contacts-socials { background: var(--color-cream-soft, #f5efe3); }
.contacts-socials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.contacts-socials__card {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  color: var(--color-text);
  text-decoration: none;
  transition: transform var(--duration-base) var(--ease), box-shadow var(--duration-base) var(--ease), border-color var(--duration-base) var(--ease);
}
.contacts-socials__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-sage-soft, #c3cba8);
}
.contacts-socials__card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-sage-deep);
  color: var(--color-sage-ink);
  flex-shrink: 0;
}
.contacts-socials__card-icon i, .contacts-socials__card-icon svg { width: 22px; height: 22px; }
.contacts-socials__card-label { font-weight: 600; font-size: var(--font-size-md); }
.contacts-socials__card--vk .contacts-socials__card-icon { background: #0077FF; }
.contacts-socials__card--max .contacts-socials__card-icon { background: var(--color-accent); }


/* ===== CALLBACK FORM (new wrapper) ===== */
.section--callback { background: var(--color-cream); }
.callback-form-wrapper {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(32px, 4vw, 56px);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.callback-form-wrapper .section__title { margin-bottom: var(--space-sm); font-size: clamp(26px, 3vw, 38px); }
.callback-form-wrapper .section__subtitle { margin-bottom: var(--space-xl); }
.callback-form-wrapper form,
form.callback-form {
  display: grid;
  gap: var(--space-md);
  text-align: left;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group--checkbox { gap: 8px; }
.form-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 13px 16px;
  font-family: inherit;
  font-size: var(--font-size-md);
  color: var(--color-text);
  background: var(--color-cream-soft, #f5efe3);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--duration-fast) var(--ease), box-shadow var(--duration-fast) var(--ease), background var(--duration-fast) var(--ease);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--color-text-muted); opacity: 0.7; }
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  background: var(--color-white);
  border-color: var(--color-sage-deep);
  box-shadow: 0 0 0 4px rgba(70, 81, 73, 0.08);
}
.form-textarea { resize: vertical; min-height: 110px; font-family: inherit; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23777' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.form-error {
  display: none;
  font-size: 12px;
  color: var(--color-accent);
}
.form-error:not(:empty) { display: block; }
.form-hint {
  font-size: 11px;
  color: var(--color-text-muted);
  align-self: flex-end;
}
.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.form-checkbox {
  margin-top: 3px;
  width: 18px; height: 18px;
  accent-color: var(--color-sage-deep);
  flex-shrink: 0;
}
.checkbox-label {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
  text-align: left;
}
.callback-submit,
.callback-form button[type="submit"] {
  justify-self: start;
  margin-top: var(--space-sm);
}
.form-message {
  margin-top: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  font-size: 14px;
}
.form-message .message-content { display: flex; align-items: flex-start; gap: 12px; }
.form-message strong { display: block; margin-bottom: 4px; }
.form-message p { margin: 0; font-size: 13px; }
.form-message--success {
  background: rgba(70, 81, 73, 0.08);
  color: var(--color-sage-ink);
  border: 1px solid rgba(70, 81, 73, 0.2);
}
.form-message--error {
  background: rgba(232, 115, 74, 0.08);
  color: var(--color-accent);
  border: 1px solid rgba(232, 115, 74, 0.25);
}

/* ===== TEAM PAGE ===== */
.section--team { background: var(--color-cream); }
.team-section-group + .team-section-group {
  margin-top: var(--space-2xl);
}
.team-section-group__title {
  font-size: clamp(28px, 3vw, var(--font-size-3xl));
  margin-bottom: var(--space-lg);
  text-align: center;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
  justify-content: center;
  gap: var(--space-lg);
}
.team-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--duration-base) var(--ease), box-shadow var(--duration-base) var(--ease), border-color var(--duration-base) var(--ease);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-sage-soft, #c3cba8);
}
.team-card__photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--color-cream-soft, #f5efe3);
}
.team-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}
.team-card:hover .team-card__photo img { transform: scale(1.04); }
.team-card__content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.team-card__name {
  font-family: var(--font-serif);
  font-size: var(--font-size-xl);
  margin: 0;
  color: var(--color-text);
  line-height: 1.2;
}
.team-card__role {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-sage-ink);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  margin: 0;
}
.team-card__experience {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 4px 12px;
  background: var(--color-cream-soft, #f5efe3);
  color: var(--color-sage-ink);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  margin: 0;
}
.team-card__credential {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12.5px;
  color: var(--color-text-muted);
  line-height: 1.45;
  margin: 0;
}
.team-card__credential i,
.team-card__credential .lucide {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-accent);
}
.team-card__bio {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin: 0;
}
.team-card__specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.specialty-tag {
  display: inline-flex;
  padding: 4px 10px;
  background: var(--color-sage-deep);
  color: var(--color-sage-ink);
  font-size: 11px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
}

/* ===== GALLERY (simple grid) ===== */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--space-lg);
  justify-content: flex-start;
}
.filter-btn {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--color-text);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease);
}
.filter-btn:hover { border-color: var(--color-sage-deep); color: var(--color-sage-ink); }
.filter-btn--active {
  background: var(--color-sage-deep);
  color: var(--color-sage-ink);
  border-color: var(--color-sage-deep);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-cream-soft, #f5efe3);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20,30,10,0.75) 100%);
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease);
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__content { color: var(--color-cream); }
.gallery-item__title { font-family: var(--font-serif); font-size: var(--font-size-lg); margin: 0 0 4px; }
.gallery-item__description { font-size: 13px; opacity: 0.85; margin: 0; }

/* ===== ABOUT PAGE ===== */
.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  color: var(--color-sage-ink);
  padding: 6px 14px;
  background: rgba(70, 81, 73, 0.08);
  border-radius: var(--radius-pill);
  margin: 0 0 var(--space-md);
}

.about-stats {
  padding: 0 clamp(20px, 4vw, 56px);
  margin: calc(-1 * clamp(28px, 4vw, 48px)) 0 0;
  position: relative;
  z-index: 2;
}
.about-stats__inner {
  max-width: var(--container-max, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  padding: var(--space-xl);
  background: var(--color-sage-deep);
  color: var(--color-light-text);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 var(--space-md);
  border-left: 1px solid rgba(253,248,238,0.15);
}
.about-stat:first-child { border-left: none; padding-left: 0; }
.about-stat__num {
  font-family: var(--font-serif);
  font-size: clamp(34px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 1;
  color: var(--color-light-text);
}
.about-stat__label {
  font-size: 12px;
  line-height: 1.4;
  color: rgba(253,248,238,0.7);
  letter-spacing: 0.02em;
}

.about-story { background: var(--color-cream); padding: clamp(48px, 6vw, 96px) clamp(20px, 4vw, 56px); }
.about-story--alt { background: var(--color-cream-soft, #f5efe3); }
.about-split {
  max-width: var(--container-max, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.about-split--reverse .about-split__text { order: 2; }
.about-split--reverse .about-split__media { order: 1; }
.about-split__eyebrow,
.section__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  color: var(--color-sage-ink);
  margin-bottom: var(--space-sm);
}
.about-split__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1;
  margin: 0 0 var(--space-md);
  color: var(--color-text);
  letter-spacing: var(--letter-spacing-tight);
}
.about-split__para {
  font-size: var(--font-size-md);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-muted);
  margin: 0 0 var(--space-md);
}
.about-split__para:last-of-type { margin-bottom: var(--space-lg); }
.about-split__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-sage-pale, #e9ecdd);
  box-shadow: var(--shadow-lg);
}
.about-split__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}
.about-split__media:hover img { transform: scale(1.03); }
.about-split__badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(253,248,238,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-sage-ink);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

.section__heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-xl);
}
.section__heading .section__title { margin-bottom: var(--space-sm); }
.section__heading .section__subtitle { margin: 0 auto; }

/* ===== VALUES ===== */
.about-values { background: var(--color-cream-soft, #f5efe3); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
}
.value-card {
  padding: var(--space-xl) var(--space-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform var(--duration-base) var(--ease), box-shadow var(--duration-base) var(--ease), border-color var(--duration-base) var(--ease);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-sage-soft, #c3cba8);
}
.value-card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--color-sage-deep);
  color: var(--color-sage-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}
.value-card__icon i, .value-card__icon svg { width: 26px; height: 26px; }
.value-card__title {
  font-family: var(--font-serif);
  font-size: var(--font-size-lg);
  margin: 0 0 var(--space-sm);
  color: var(--color-text);
}
.value-card__description {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 0;
}

/* ===== SALON GALLERY (masonry-ish) ===== */
.about-gallery { background: var(--color-cream); }
.about-gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 150px;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}
.about-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-cream-soft, #f5efe3);
  grid-column: span 2;
  grid-row: span 2;
}
.about-gallery__item--0 { grid-column: span 3; grid-row: span 2; }
.about-gallery__item--1 { grid-column: span 3; grid-row: span 2; }
.about-gallery__item--2 { grid-column: span 2; grid-row: span 2; }
.about-gallery__item--3 { grid-column: span 2; grid-row: span 2; }
.about-gallery__item--4 { grid-column: span 2; grid-row: span 2; }
.about-gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}
.about-gallery__item:hover img { transform: scale(1.06); }
.about-gallery__cta { text-align: center; }

/* ===== COMPANY INFO CARDS ===== */
.about-info { background: var(--color-cream-soft, #f5efe3); }
.about-info__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
}
.about-info__card {
  padding: var(--space-xl);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: transform var(--duration-base) var(--ease), box-shadow var(--duration-base) var(--ease);
}
.about-info__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.about-info__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(70, 81, 73, 0.1);
  color: var(--color-sage-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}
.about-info__icon i, .about-info__icon svg { width: 22px; height: 22px; }
.about-info__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0 0 6px;
}
.about-info__text {
  font-family: var(--font-serif);
  font-size: var(--font-size-lg);
  line-height: 1.35;
  color: var(--color-text);
  margin: 0;
}

/* ===== RESPONSIVE (extensions) ===== */
@media (max-width: 900px) {
  .contacts__layout { grid-template-columns: 1fr; gap: var(--space-lg); }
  .booking-cta__actions { flex-direction: column; align-items: stretch; }
  .booking-cta__actions .btn { justify-content: center; }
  .service-hero { min-height: auto; padding: 48px 20px; }
  .about-stats__inner { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); padding: var(--space-lg); }
  .about-stat { border-left: none; padding: var(--space-sm) 0; border-top: 1px solid rgba(253,248,238,0.15); }
  .about-stat:nth-child(-n+2) { border-top: none; }
  .about-split { grid-template-columns: 1fr; gap: var(--space-xl); }
  .about-split--reverse .about-split__text,
  .about-split--reverse .about-split__media { order: initial; }
  .about-gallery__grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 120px; }
  .about-gallery__item,
  .about-gallery__item--0,
  .about-gallery__item--1,
  .about-gallery__item--2,
  .about-gallery__item--3,
  .about-gallery__item--4 { grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 640px) {
  .tezisy-grid, .service-media__gallery, .team-grid,
  .gallery-grid, .contacts-socials__grid { grid-template-columns: 1fr; }
  .service-hero__title { font-size: 34px; }
  .page-hero__title { font-size: 32px; }
  .callback-form-wrapper { padding: 24px 20px; }
  .section--hero { padding-top: 40px; }
}

/* ===== COMPACT HERO TWEAKS ===== */
/* Tighter CTA buttons */
.hero-split__cta { gap: 10px; margin-top: 4px; }
.hero-split__cta .btn--lg { padding: 8px 16px; font-size: 13px; min-height: 0; }
.hero-split__cta .btn--lg i { width: 14px; height: 14px; }

/* Icon-only social buttons (VK + MAX) */
.hero-social.hero-social--icons { gap: 8px; margin-top: 8px; }
.hero-social.hero-social--icons .hero-social__btn {
  width: 36px; height: 36px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.hero-social.hero-social--icons .hero-social__btn span { display: none; }
.hero-social.hero-social--icons .hero-social__btn svg { width: 16px; height: 16px; display: block; }
.hero-social.hero-social--icons .hero-social__btn i { width: 16px; height: 16px; }

/* Note smaller, tucked tight */
.hero-split__notes { margin-top: -2px; }
.hero-split__note { font-size: 11px; line-height: 1.45; }

/* Smaller, sleeker arrows */
.hero-split__arrows { gap: 8px; margin-top: 2px; }
.hero-split__arrow { width: 36px; height: 36px; }
.hero-split__arrow i { width: 15px; height: 15px; }

/* Meta strip: single horizontal row with dot separators */
.hero-split__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  grid-template-columns: none;
  padding-top: 12px;
  margin-top: 10px;
}
.hero-split__meta-item {
  flex-direction: row;
  align-items: baseline;
  gap: 8px;
}
.hero-split__meta-label {
  font-size: 9.5px;
  letter-spacing: 0.16em;
}
.hero-split__meta-value { font-size: 13px; line-height: 1.35; }
.hero-split__meta-item + .hero-split__meta-item::before {
  content: "";
  display: inline-block;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--color-light-border);
  margin-right: 10px;
  align-self: center;
  transform: translateY(-1px);
}

/* Mobile: stack meta again */
@media (max-width: 640px) {
  .hero-split__meta { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-split__meta-item + .hero-split__meta-item::before { display: none; }
  .hero-social { flex-wrap: wrap; }
}

/* ===== PROMO COUNTER ON RIGHT MEDIA SHAPE ===== */
.hero-split__media-counter {
  position: absolute;
  top: 20px; right: 20px;
  z-index: 3;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  padding: 10px 16px 10px 18px;
  background: rgba(155, 176, 116, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(70, 81, 73, 0.16);
  border-radius: var(--radius-pill);
  font-family: var(--font-serif);
  color: var(--color-sage-ink);
  line-height: 1;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(70, 81, 73, 0.16);
}
.hero-split__media-counter-num {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-accent);
  font-variant-numeric: tabular-nums;
}
.hero-split__media-counter-sep {
  font-size: 18px;
  color: rgba(70, 81, 73, 0.55);
  margin: 0 1px;
}
.hero-split__media-counter-total {
  font-size: 15px;
  color: rgba(70, 81, 73, 0.75);
  font-variant-numeric: tabular-nums;
}
@media (max-width: 768px) {
  .hero-split__media-counter { top: 12px; right: 12px; padding: 8px 12px 8px 14px; }
  .hero-split__media-counter-num { font-size: 22px; }
  .hero-split__media-counter-sep { font-size: 14px; }
  .hero-split__media-counter-total { font-size: 13px; }
}
