/* LaserSkin Design System */
:root {
  --color-primary: #590416;
  --color-primary-dark: #420310;
  --color-primary-light: #6d051a;
  --color-gold: #c4a962;
  --color-gold-light: #e8d5a3;
  --color-bg: #ffffff;
  --color-bg-alt: #f5f5f5;
  --color-bg-hero: #ffffff;
  --color-text: #1a1a1a;
  --color-text-muted: #6b6b6b;
  --color-footer-bg: #1c1818;
  --color-footer-accent: #c8a18e;
  --color-footer-text: rgba(255, 255, 255, 0.72);
  --color-border: #e5e5e5;
  --color-error: #d32f2f;
  --color-success: #2e7d32;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --container-max: 1280px;
  --header-height: 72px;
  --mobile-bar-height: 64px;
  --hero-height: 77vh;
  --radius: 4px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 12px 32px rgba(38, 8, 16, 0.1);
  --shadow-lg: 0 24px 60px rgba(38, 8, 16, 0.14);
  --transition: 0.2s ease;
  --ease-premium: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

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

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-primary-dark);
}

::selection {
  background: var(--color-primary);
  color: #fff;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-premium), transform 0.8s var(--ease-premium);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

h3 {
  font-size: 1.25rem;
  font-family: var(--font-sans);
  font-weight: 600;
}

.lead {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }
}

.container--narrow {
  max-width: 800px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
  backdrop-filter: blur(12px);
  transition: background-color 0.25s var(--ease-premium), box-shadow 0.25s var(--ease-premium), border-color 0.25s var(--ease-premium);
}

.header__shell {
  height: 100%;
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  gap: 1rem;
}

/* Desktop: floating pill nav aligned to .container width */
@media (min-width: 1024px) {
  .page-home .header,
  body:not(.page-home) .header,
  .page-home .header.is-scrolled,
  body:not(.page-home) .header.is-scrolled {
    height: var(--header-height);
    padding-top: 10px;
    background: transparent;
    border-bottom: none;
    backdrop-filter: none;
    box-shadow: none;
  }

  .header.is-scrolled::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    pointer-events: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
  }

  .header__shell {
    display: flex;
    align-items: stretch;
    height: 100%;
  }

  .header__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 62px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 999px;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 0 0.5rem 0 1.75rem;
    transition: background-color 0.25s var(--ease-premium), box-shadow 0.25s var(--ease-premium), border-color 0.25s var(--ease-premium);
  }

  .header.is-scrolled .header__inner {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.14);
    backdrop-filter: none;
    box-shadow:
      0 0 0 1px rgba(0, 0, 0, 0.05),
      0 4px 10px rgba(0, 0, 0, 0.08),
      0 14px 32px rgba(0, 0, 0, 0.16);
  }

  .btn.header__cta {
    border-radius: 999px;
    height: 40px;
    padding: 0 0.45rem 0 1rem;
    gap: 0.5rem;
    box-sizing: border-box;
  }

  .btn.header__cta .btn__icon {
    width: 24px;
    height: 24px;
  }
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-primary);
  justify-self: start;
}

.header__logo:hover {
  color: var(--color-primary-dark);
}

.header__logo-img {
  display: block;
  height: 52px;
  width: auto;
  flex-shrink: 0;
  transition: opacity var(--transition), filter var(--transition);
}

.header__logo:hover .header__logo-img {
  opacity: 0.88;
}

.header__nav {
  display: none;
  justify-self: center;
}

.header__nav-links {
  display: contents;
}

.header__mobile-call,
.header__mobile-book,
.mobile-drawer {
  display: none;
}

@media (min-width: 1024px) {
  .header__nav,
  .header__nav--desktop {
    display: flex;
    gap: 1.75rem;
    align-items: center;
  }

  .header__nav-links {
    display: flex;
    gap: 1.75rem;
    align-items: center;
  }
}

.header__nav-link {
  color: var(--color-text);
  font-size: 0.875rem;
  white-space: nowrap;
}

.header__nav-link:hover {
  color: var(--color-primary);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-self: end;
}

.header__phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--color-text);
  white-space: nowrap;
}

@media (min-width: 768px) {
  .header__phone {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .header__phone {
    height: 40px;
    padding: 0 0.9rem 0 0.35rem;
    background: var(--color-bg-alt);
    border: 1px solid rgba(89, 4, 22, 0.08);
    border-radius: 999px;
    box-sizing: border-box;
  }

  .header__phone-icon {
    width: 24px;
    height: 24px;
  }
}

.header__phone-icon {
  display: none;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  color: var(--color-primary);
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .header__phone-icon {
    display: inline-flex;
  }
}

.header__cta {
  white-space: nowrap;
}

.header__burger {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.header__burger-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 24px;
  height: 18px;
}

.header__burger-box span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 1px;
  transition: transform 0.3s var(--ease-premium), opacity 0.3s var(--ease-premium);
  transform-origin: center;
}

@media (min-width: 1024px) {
  .header__burger {
    display: none;
  }
}

.header__more {
  display: none;
  position: relative;
}

@media (min-width: 1024px) {
  .header__more {
    display: block;
  }
}

.header__more-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header__more-toggle:hover {
  background: var(--color-primary-dark);
}

.header__more-toggle:active {
  transform: scale(0.96);
}

.header__more-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 16px;
}

.header__more-box span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: #fff;
}

.header__more-menu {
  position: absolute;
  top: calc(100% + 18px);
  right: 0;
  min-width: 240px;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
  z-index: 150;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(89, 4, 22, 0.1);
  border-radius: 18px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.65) inset,
    0 8px 24px rgba(38, 8, 16, 0.1),
    0 20px 48px rgba(38, 8, 16, 0.12);
  transform-origin: top right;
  animation: header-more-in 0.22s var(--ease-premium);
}

@keyframes header-more-in {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .header__more-menu {
    animation: none;
  }
}

.header__more-menu[hidden] {
  display: none;
}

.header__more-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0.75rem 0.7rem 0.95rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--color-text);
  text-decoration: none;
  transition:
    background 0.2s var(--ease-premium),
    color 0.2s var(--ease-premium),
    transform 0.2s var(--ease-premium);
}

.header__more-link:hover {
  background: rgba(89, 4, 22, 0.06);
  color: var(--color-primary);
}

.header__more-link:active {
  background: rgba(89, 4, 22, 0.1);
  transform: scale(0.98);
}

.header__more-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  color: var(--color-primary);
  background: rgba(89, 4, 22, 0.06);
  transition:
    background 0.2s var(--ease-premium),
    color 0.2s var(--ease-premium),
    transform 0.2s var(--ease-premium);
}

.header__more-arrow .icon {
  width: 12px;
  height: 12px;
}

.header__more-link:hover .header__more-arrow {
  background: var(--color-primary);
  color: #fff;
  transform: translateX(2px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 12px 24px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.35s var(--ease-premium), border-color 0.35s var(--ease-premium), color 0.35s var(--ease-premium), transform 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(89, 4, 22, 0.28);
}

.btn--outline-white:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--white {
  background: #fff;
  color: var(--color-primary);
}

.btn--white:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary-dark);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn--outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

.btn__icon .icon {
  display: block;
}

.btn--outline-white .btn__icon {
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--outline .btn__icon,
.btn__icon--dark {
  border-color: var(--color-border);
  color: var(--color-text);
}

.btn--primary .btn__icon {
  color: #fff;
}

.btn--lg {
  padding: 14px 28px;
  font-size: 0.9375rem;
}

.btn--sm {
  padding: 10px 18px;
  font-size: 0.8125rem;
}

.btn--block {
  display: flex;
  width: 100%;
}

/* Icons & links */
.icon {
  display: block;
  flex-shrink: 0;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-primary);
  white-space: nowrap;
}

.link-arrow:hover {
  color: var(--color-primary-dark);
}

.link-arrow__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.link-arrow:hover .link-arrow__icon {
  transform: translateX(2px);
}

.link-arrow--back {
  margin-top: 2rem;
}

.link-arrow--back .link-arrow__icon {
  transform: rotate(180deg);
}

.link-arrow--back:hover .link-arrow__icon {
  transform: rotate(180deg) translateX(2px);
}

.section-header__link {
  font-size: 0.875rem;
}

/* Home fold — hero + stats visible in first screen */
.page-home .home-fold {
  display: flex;
  flex-direction: column;
  min-height: calc(100dvh - var(--header-height));
}

.page-home .home-fold .hero {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.page-home .home-fold .hero>.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  min-height: 0;
}

.page-home .home-fold .hero__grid {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 0;
  max-height: none;
  padding: 1rem 0;
}

@media (min-width: 768px) {
  .page-home .home-fold .hero__grid {
    padding: 1.25rem 0;
  }
}

@media (min-width: 1024px) {
  .page-home .home-fold .hero__grid {
    padding: 1.5rem 0;
  }
}

.page-home .home-fold .hero__content {
  margin-right: auto;
  margin-left: 0;
  justify-content: flex-start;
}

.page-home .home-fold .hero__title {
  margin-bottom: 1rem;
}

.page-home .home-fold .hero__subtitle {
  margin-bottom: 1.5rem;
}

.page-home .home-fold .stats-bar {
  flex-shrink: 0;
  margin-top: auto;
  padding: 1rem 0 1.25rem;
  box-shadow: none;
  border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .page-home .home-fold .stats-bar {
    padding: 1.125rem 0 1.5rem;
  }
}

@media (max-height: 740px) and (min-width: 768px) {
  .page-home .home-fold .hero__grid {
    padding: 1.25rem 0;
  }

  .page-home .home-fold .hero__title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 0.75rem;
  }

  .page-home .home-fold .hero__subtitle {
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    line-height: 1.6;
  }

  .page-home .home-fold .stats-bar {
    padding: 1rem 0;
  }

  .page-home .home-fold .stats-bar__value {
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  }

  .page-home .home-fold .stats-bar__label {
    margin-top: 0.375rem;
    font-size: 0.6875rem;
  }
}

@media (max-width: 767px) {
  .page-home .home-fold .stats-bar__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem 0.375rem;
  }

  .page-home .home-fold .stats-bar__item {
    padding: 0 0.25rem;
  }

  .page-home .home-fold .stats-bar__value {
    font-size: clamp(1.25rem, 5vw, 1.625rem);
  }

  .page-home .home-fold .stats-bar__label {
    font-size: 0.625rem;
    line-height: 1.3;
    margin-top: 0.375rem;
  }
}

/* Hero — unified height on all pages */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-hero);
  padding-top: var(--header-height);
  margin-top: calc(-1 * var(--header-height));
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--color-bg-hero);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
}

.hero__bg--custom,
.hero--custom-bg .hero__bg {
  background-image: var(--hero-bg-image);
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(90deg, var(--color-bg-hero) 0%, rgba(255, 255, 255, 0.85) 30%, rgba(255, 255, 255, 0.35) 48%, rgba(255, 255, 255, 0) 62%);
}

@media (max-width: 767px) {

  /* Inner pages */
  body:not(.page-home) .hero__scrim {
    background-image: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.15) 0%,
      rgba(255, 255, 255, 0.65) 50%,
      var(--color-bg-hero) 100%
    );
  }

  body:not(.page-home) .hero__bg {
    background-position: center 18%;
  }

  /* Home — same light editorial layout as desktop */
  .page-home .home-fold {
    min-height: auto;
    background: var(--color-bg-hero);
  }

  .page-home .hero {
    background: var(--color-bg-hero);
    overflow: hidden;
  }

  .page-home .hero__bg {
    position: absolute;
    inset: 0;
    background-position: 64% 28%;
    background-size: cover;
  }

  .page-home .hero__scrim {
    background-image: linear-gradient(
      90deg,
      var(--color-bg-hero) 0%,
      var(--color-bg-hero) 38%,
      rgba(255, 255, 255, 0.96) 48%,
      rgba(255, 255, 255, 0.72) 58%,
      rgba(255, 255, 255, 0.2) 72%,
      transparent 86%
    );
  }

  .page-home .hero > .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
  }

  .page-home .home-fold .hero {
    flex: 1 1 auto;
    min-height: 0;
  }

  .page-home .home-fold .hero__grid {
    align-items: center;
    justify-content: flex-start;
    flex: 1;
    min-height: 0;
    padding: 1rem 0;
  }

  .page-home .home-fold .hero__content {
    position: relative;
    z-index: 2;
    max-width: min(58vw, 240px);
    width: 100%;
  }

  .page-home .home-fold .hero__title {
    font-size: clamp(1.625rem, 7.5vw, 2rem);
    line-height: 1.16;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    overflow-wrap: anywhere;
  }

  .page-home .home-fold .hero__subtitle {
    font-size: 0.8125rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    max-width: 100%;
    color: var(--color-text-muted);
  }

  .page-home .home-fold .hero__actions {
    align-items: flex-start;
    gap: 1.125rem;
    max-width: 100%;
  }

  .page-home .home-fold .hero__actions .btn--lg {
    width: auto;
    max-width: 100%;
    padding: 13px 18px;
    font-size: 0.8125rem;
  }

  .page-home .home-fold .stats-bar {
    background: #fff;
    border-top: 1px solid var(--color-border);
    padding: 1rem 0;
  }

  .page-home .hero__video-link {
    justify-content: flex-start;
    font-size: 0.8125rem;
    color: var(--color-text);
  }

  .page-home .hero__play {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(89, 4, 22, 0.35);
  }

  .page-home .hero__title,
  .page-home .hero__subtitle,
  .page-home .hero__actions {
    animation: none;
    opacity: 1;
  }
}

.page-home .hero>.container {
  position: relative;
  z-index: 2;
}

.page-home .header {
  position: sticky;
  top: 0;
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
}

.hero__grid {
  display: flex;
  align-items: center;
  padding: 1.5rem 0;
  min-height: var(--hero-height);
}

@media (min-width: 768px) {
  .hero__grid {
    padding: 1.75rem 0;
  }
}

@media (min-width: 1024px) {
  .hero__grid {
    padding: 2rem 0;
  }

  .page-home .home-fold .hero__grid {
    flex: 1;
    min-height: 0;
    max-height: none;
  }
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
  z-index: 2;
}

.hero__title {
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.12;
  font-family: var(--font-serif);
  opacity: 0;
  animation: heroFadeUp 0.9s var(--ease-premium) 0.15s both;
}

.hero__accent {
  color: var(--color-primary);
  font-style: italic;
  font-weight: 400;
}

.hero__subtitle {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  max-width: 440px;
  font-size: 0.9375rem;
  line-height: 1.75;
  opacity: 0;
  animation: heroFadeUp 0.9s var(--ease-premium) 0.32s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  opacity: 0;
  animation: heroFadeUp 0.9s var(--ease-premium) 0.48s both;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {

  .hero__title,
  .hero__subtitle,
  .hero__actions {
    animation: none;
    opacity: 1;
  }
}

.hero__video-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text);
  font-size: 0.875rem;
}

button.hero__video-link {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.hero__video-link:hover {
  color: var(--color-primary);
}

.hero__play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(89, 4, 22, 0.4);
  color: var(--color-primary);
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.5);
}

/* Inner pages hero — same layout as home */
body:not(.page-home) .hero {
  display: flex;
  flex-direction: column;
}

body:not(.page-home) .hero>.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  position: relative;
  z-index: 2;
}

body:not(.page-home) .header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(89, 4, 22, 0.14);
  backdrop-filter: blur(16px);
  box-shadow:
    0 1px 0 rgba(89, 4, 22, 0.06),
    0 6px 20px rgba(38, 8, 16, 0.1);
}

body:not(.page-home) .hero__title,
body:not(.page-home) .hero__subtitle,
body:not(.page-home) .hero__actions {
  opacity: 1;
  animation: none;
}

body:not(.page-home) .hero__grid {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: var(--hero-height);
  max-height: none;
  padding: 1rem 0;
}

@media (min-width: 768px) {
  body:not(.page-home) .hero__grid {
    padding: 1.25rem 0;
  }
}

@media (min-width: 1024px) {
  body:not(.page-home) .hero__grid {
    padding: 1.5rem 0;
  }
}

body:not(.page-home) .hero__content {
  margin-right: auto;
  margin-left: 0;
  justify-content: flex-start;
}

.hero--inner .hero__bg,
.hero--custom-bg .hero__bg {
  background-image: var(--hero-bg-image);
}

/* Equipment catalog — keep device/table visible on the right */
body.page-catalog--oborudovanie .hero__bg,
body.page-catalog-detail--oborudovanie .hero__bg {
  background-position: 70% center;
}

.hero__title--lines>span {
  display: block;
}

.hero__secondary-link {
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero__secondary-link:hover {
  color: var(--color-primary);
}

.hero__title--services .hero__accent,
.hero__title--lines .hero__accent {
  color: var(--color-primary);
  font-style: italic;
}

body.page-services .hero__title--services .hero__accent {
  white-space: nowrap;
}

/* Page hero (legacy blocks — kept for reference) */
.page-hero-block {
  overflow: hidden;
  background: linear-gradient(105deg, var(--color-bg-hero) 0%, #ffffff 42%, #f0f0f0 100%);
}

.page-hero-block__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 0 0;
}

@media (min-width: 1024px) {
  .page-hero-block__grid {
    grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
    gap: 1.5rem;
    padding: 2.25rem 0;
    min-height: 280px;
    max-height: 340px;
  }
}

.page-hero-block__content {
  max-width: 520px;
  z-index: 2;
}

.page-hero-block__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.page-hero-block__subtitle {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 1rem;
}

.page-hero-block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  align-items: center;
}

.page-hero-block__secondary {
  color: var(--color-text);
}

.page-hero-block__secondary:hover {
  color: var(--color-primary);
}

.page-hero-block__media {
  position: relative;
  width: 100%;
  min-height: 200px;
}

@media (min-width: 1024px) {
  .page-hero-block__media {
    align-self: stretch;
    min-height: 240px;
    height: 100%;
  }
}

.page-hero-block__pattern {
  position: absolute;
  right: 5%;
  top: 8%;
  width: min(380px, 75%);
  aspect-ratio: 1;
  background-image: radial-gradient(rgba(89, 4, 22, 0.2) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  border-radius: 50%;
  mask-image: radial-gradient(circle, #000 0%, #000 52%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.page-hero-block__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  object-position: center top;
}

@media (min-width: 1024px) {
  .page-hero-block__media img {
    min-height: 240px;
  }
}

/* Stats */
.stats-bar {
  position: relative;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 2.75rem 0;
  box-shadow: 0 -24px 40px -24px rgba(38, 8, 16, 0.16);
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1rem;
}

@media (min-width: 768px) {
  .stats-bar__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .stats-bar__grid--5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

.stats-bar__item {
  text-align: center;
  position: relative;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .stats-bar__item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 8%;
    bottom: 8%;
    width: 1px;
    background: var(--color-border);
  }
}

.stats-bar__value {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.75rem);
  color: var(--color-primary);
  line-height: 1;
}

.stats-bar__label {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 0.625rem;
  line-height: 1.45;
  max-width: 140px;
  margin-left: auto;
  margin-right: auto;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section--advantages {
  background: var(--color-bg-alt);
}

.section--doctors {
  background: var(--color-bg-alt);
}

.section--promotions {
  background: #fff;
}

.page-home .section--promotions {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.page-home .promo-grid--home {
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 768px) {
  .page-home .promo-grid--home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.section--services {
  background: #fff;
}

.page-home .before-after-section {
  background: #fff;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.before-after-grid .before-after-slider__container {
  aspect-ratio: 4 / 3;
}

.before-after-slider__caption {
  margin-top: 1rem;
}

.before-after-slider__caption-title {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-text);
}

.before-after-slider__caption-meta {
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.section__title {
  margin-bottom: 2.5rem;
}

.section__title--center {
  text-align: center;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1rem;
}

.section-header__title {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.section-header__intro {
  max-width: 640px;
}

.section-header__subtitle {
  margin-top: 0.625rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-text-muted);
}

@media (max-width: 767px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}

/* Grid */
.grid {
  display: grid;
  gap: 1.25rem;
}

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

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

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

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

@media (min-width: 640px) {

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (min-width: 1024px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid--5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .services-grid {
    gap: 1rem;
  }

  .doctors-grid {
    gap: 1rem;
  }

  .page-home .doctors-grid--home {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .page-home .doctors-grid--home .doctor-card-v__info {
    padding: 1rem 1rem 1.125rem;
  }
}

/* Service Card */
.service-card {
  position: relative;
  display: block;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 6 / 5;
  color: #fff;
  transition: transform 0.45s var(--ease-premium), box-shadow 0.45s var(--ease-premium);
}

.service-card--baked .service-card__overlay,
.service-card--baked .service-card__content {
  display: none;
}

.service-card:hover {
  color: #fff;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card__image {
  position: absolute;
  inset: 0;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-premium);
}

.service-card:hover .service-card__image img {
  transform: scale(1.06);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.05) 35%, rgba(0, 0, 0, 0.05) 55%, rgba(0, 0, 0, 0.72) 100%);
}

.service-card__content {
  position: absolute;
  inset: 0;
  padding: 1.125rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 1;
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.3;
  max-width: 90%;
}

.service-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.4);
  align-self: flex-start;
  margin-top: auto;
  color: #fff;
}

.service-card__arrow .icon {
  width: 12px;
  height: 12px;
}

/* Doctor Card */
.doctor-card {
  display: flex;
  align-items: stretch;
  background: var(--color-bg-alt);
  color: var(--color-text);
  transition: box-shadow 0.4s var(--ease-premium), transform 0.4s var(--ease-premium);
  min-height: 180px;
}

.doctor-card:hover {
  box-shadow: var(--shadow-md);
  color: var(--color-text);
  transform: translateY(-3px);
}

.doctor-card__photo {
  flex: 0 0 40%;
  overflow: hidden;
  background: var(--color-bg-alt);
  align-self: stretch;
}

.doctor-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease-premium);
}

.doctor-card__photo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 180px;
  background: var(--color-bg-alt);
}

.doctor-card__photo-fallback .circle-icon {
  width: 44px;
  height: 44px;
}

.doctor-card:hover .doctor-card__photo img {
  transform: none;
}

.doctor-card__info {
  flex: 1;
  min-width: 0;
  padding: 0.875rem 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
}

.doctor-card__name {
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.doctor-card__position {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.doctor-card__experience {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.doctor-card__link {
  margin-top: 0.625rem;
  font-size: 0.75rem;
}

/* Advantages */
.advantages {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .advantages {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
}

@media (min-width: 1024px) {
  .advantages {
    grid-template-columns: repeat(4, 1fr);
  }
}

.advantage {
  text-align: center;
  padding: 1.25rem 1.5rem;
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
  border-radius: 12px;
  transition:
    transform 0.35s var(--ease-premium),
    background-color 0.35s var(--ease-premium),
    box-shadow 0.35s var(--ease-premium);
}

a.advantage:hover {
  color: inherit;
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(38, 8, 16, 0.08);
}

a.advantage:hover .advantage__icon {
  color: var(--color-primary);
  transform: scale(1.06);
}

a.advantage:hover .advantage__title {
  color: var(--color-primary);
}

@media (min-width: 1024px) {
  .advantage:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 12%;
    bottom: 12%;
    width: 1px;
    background: rgba(0, 0, 0, 0.08);
    pointer-events: none;
    transition: opacity 0.35s var(--ease-premium);
  }

  a.advantage:hover::after {
    opacity: 0;
  }
}

.advantage__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 1.125rem;
  color: var(--color-gold);
  transition: color 0.35s var(--ease-premium), transform 0.35s var(--ease-premium);
}

.advantage__title {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text);
  transition: color 0.35s var(--ease-premium);
}

.advantage__text {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 240px;
  margin: 0 auto;
}

/* Skin Problems — component tokens (design-system layer) */
.section--skin-problems {
  background: var(--color-bg-alt);
  --skin-problem-card-bg: var(--color-bg);
  --skin-problem-card-border: var(--color-border);
  --skin-problem-card-icon-bg: var(--color-bg-hero);
  --skin-problem-card-icon-color: var(--color-primary);
  --skin-problem-card-accent: var(--color-gold);
  --skin-problem-card-radius: var(--radius);
}

.skin-problems {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
}

@media (min-width: 640px) {
  .skin-problems {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .skin-problems {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.skin-problems--page {
  max-width: 960px;
  margin: 0 auto;
}

.skin-problem-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  min-height: 0;
  padding: 0;
  background: var(--skin-problem-card-bg);
  border: 1px solid var(--skin-problem-card-border);
  border-radius: 12px;
  color: var(--color-text);
  cursor: pointer;
  text-align: left;
  overflow: hidden;
  transition:
    transform 0.35s var(--ease-premium),
    box-shadow 0.35s var(--ease-premium),
    border-color 0.35s var(--ease-premium);
}

.skin-problem-card--static {
  cursor: default;
}

.skin-problem-card--static:hover {
  transform: none;
  border-color: var(--skin-problem-card-border);
  box-shadow: none;
}

.skin-problem-card--static:hover::before {
  opacity: 0;
}

.skin-problem-card--static:hover .skin-problem-card__image {
  transform: none;
}

.skin-problem-card:hover {
  color: inherit;
  transform: translateY(-4px);
  border-color: rgba(89, 4, 22, 0.14);
  box-shadow: 0 14px 32px rgba(38, 8, 16, 0.1);
}

.skin-problem-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--skin-problem-card-accent);
  opacity: 0;
  z-index: 1;
  transition: opacity 0.35s var(--ease-premium);
}

.skin-problem-card:hover::before,
.skin-problem-card:focus-visible::before {
  opacity: 1;
}

.skin-problem-card:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.skin-problem-card__media {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--skin-problem-card-icon-bg);
}

.skin-problem-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease-premium);
}

.skin-problem-card:hover .skin-problem-card__image {
  transform: scale(1.05);
}

.skin-problem-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--skin-problem-card-icon-bg);
  color: var(--skin-problem-card-icon-color);
}

.skin-problem-card:focus-visible .skin-problem-card__icon {
  background: var(--color-primary);
  color: #fff;
}

.skin-problem-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.skin-problem-icon svg {
  display: block;
}

.skin-problem-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: 1rem 1.125rem 1.125rem;
}

.skin-problem-card__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-text);
}

.skin-problem-card__desc {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Before/After Slider */
.before-after-section {
  padding: 5rem 0;
}

.before-after-slider__container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 16 / 7;
  cursor: ew-resize;
  user-select: none;
}

.before-after-slider__before,
.before-after-slider__after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after-slider__after {
  clip-path: inset(0 0 0 50%);
}

.before-after-slider__label {
  position: absolute;
  bottom: 18px;
  z-index: 3;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
  padding: 0;
}

.before-after-slider__label--before {
  left: 20px;
}

.before-after-slider__label--after {
  right: 20px;
}

.before-after-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: ew-resize;
  touch-action: none;
}

.before-after-slider__handle-icon {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.06);
  color: var(--color-text);
  cursor: grab;
  flex-shrink: 0;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.before-after-slider__handle:hover .before-after-slider__handle-icon,
.before-after-slider__handle.is-dragging .before-after-slider__handle-icon {
  transform: scale(1.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.before-after-slider__handle.is-dragging .before-after-slider__handle-icon {
  cursor: grabbing;
}

/* CTA Section */
.cta-section {
  display: grid;
}

.container>.cta-section {
  border-radius: var(--radius);
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-section {
    grid-template-columns: 1fr 1fr;
    height: 320px;
  }
}

.cta-section__content {
  background: var(--color-primary);
  color: #fff;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  gap: 1rem;
  min-height: 0;
}

@media (min-width: 768px) {
  .cta-section__content {
    padding-left: max(2rem, calc((100vw - var(--container-max)) / 2 + 20px));
  }
}

@media (min-width: 1024px) {
  .cta-section__content {
    padding: 2.5rem 2.5rem;
    padding-left: max(2.5rem, calc((100vw - var(--container-max)) / 2 + 40px));
  }
}

.cta-section__content h2 {
  color: #fff;
  font-size: clamp(1.625rem, 2.75vw, 2.125rem);
}

.cta-section__content p {
  font-size: 0.9375rem;
  line-height: 1.65;
  opacity: 0.92;
  max-width: 420px;
}

.cta-section__content .btn {
  width: auto;
  align-self: flex-start;
}

.cta-section__image {
  overflow: hidden;
  min-height: 0;
}

@media (min-width: 768px) {
  .cta-section__image {
    height: 100%;
  }
}

.cta-section__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

/* Review Card */
.review-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem 1.625rem 1.375rem;
  background: #fff;
  border: 1px solid rgba(89, 4, 22, 0.08);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(89, 4, 22, 0.05);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.review-card:hover {
  box-shadow: 0 16px 36px rgba(89, 4, 22, 0.08);
  transform: translateY(-2px);
}

.review-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  flex-wrap: wrap;
}

.review-card__who {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

/* Page */
.page-hero {
  padding: 2rem 0 1.25rem;
  background: var(--color-bg-alt);
}

.page-hero h1 {
  margin-top: 0.5rem;
}

.detail-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .detail-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 2.5rem;
    align-items: start;
  }

  .detail-layout .detail-content {
    order: -1;
  }
}

.detail-photo {
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.detail-photo--fallback {
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
}

.detail-photo--fallback .circle-icon {
  width: 56px;
  height: 56px;
}

.detail-photo--wide {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .detail-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 1rem);
    align-self: start;
  }
}

.price-box {
  background: var(--color-bg-alt);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  text-align: center;
}

.price-box__label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.price-box__value {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-primary);
}

.prose {
  line-height: 1.8;
}

.prose h2 {
  margin: 2rem 0 1rem;
}

.prose p {
  margin-bottom: 1rem;
}

.prose h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
}

.prose ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.prose li + li {
  margin-top: 0.35rem;
}

.legal-content .staff-entry {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.legal-content .staff-entry:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.tag-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-list a,
.tag-list span {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--color-bg-alt);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin-bottom: 1.125rem;
  font-size: 0.8125rem;
  max-width: 100%;
  overflow: visible;
}

.breadcrumbs__link,
.breadcrumbs__current {
  line-height: 1.45;
}

.breadcrumbs__link {
  color: var(--color-text-muted);
}

.breadcrumbs__link:hover {
  color: var(--color-primary);
}

.breadcrumbs__sep {
  color: var(--color-gold);
  font-style: italic;
}

.breadcrumbs__current {
  color: var(--color-text);
  font-weight: 500;
}

/* Price page */
.page-hero-block__title--prices>span {
  display: block;
}

.page-hero-block__title--prices .page-hero-block__accent {
  color: var(--color-primary);
  font-style: italic;
}

.price-tabs__hint {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-align: center;
}

.price-tabs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 0;
  position: relative;
  z-index: 1;
}

.page-prices > .container.price-tabs-wrap {
  position: relative;
  z-index: 5;
  margin-top: -4rem;
}

.price-tabs-panel {
  padding: 1.25rem 1.25rem 1.5rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(38, 8, 16, 0.1);
}

@media (min-width: 1024px) {
  .price-tabs-panel {
    padding: 1.25rem 1.5rem 1.5rem;
  }
}

@media (min-width: 768px) {
  .page-prices > .container.price-tabs-wrap {
    margin-top: -5rem;
  }

  .price-tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.875rem;
  }
}

.price-tabs__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 1.15rem;
  color: var(--color-text);
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(89, 4, 22, 0.12);
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(38, 8, 16, 0.08);
  overflow: hidden;
  min-width: 0;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  cursor: pointer;
}

.price-tabs__item:hover {
  background: #fff;
  border-color: rgba(196, 169, 98, 0.55);
  color: var(--color-primary);
  box-shadow: 0 10px 32px rgba(38, 8, 16, 0.12);
  transform: translateY(-2px);
}

.price-tabs__item:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.price-tabs__arrow {
  flex-shrink: 0;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: rgba(89, 4, 22, 0.06);
  color: var(--color-primary);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.price-tabs__item:hover .price-tabs__arrow {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(2px);
}

.price-tabs__arrow .icon {
  width: 14px;
  height: 14px;
}

.price-tabs__num {
  flex-shrink: 0;
  display: block;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--color-gold);
  min-width: 1.75rem;
}

.price-tabs__label {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.2;
}

.prices-section {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
  background:
    linear-gradient(180deg, #fff 0%, var(--color-bg-alt) 18%, var(--color-bg-alt) 100%);
}

.price-block {
  margin-bottom: 3.5rem;
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.price-block:last-child {
  margin-bottom: 0;
}

.price-block__head {
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(89, 4, 22, 0.08);
}

.price-block__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.625rem, 3vw, 2.125rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--color-primary);
}

.price-card {
  border: 1px solid rgba(89, 4, 22, 0.08);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(38, 8, 16, 0.05);
}

.price-card__head {
  padding: 1rem 1.35rem;
  background: linear-gradient(180deg, var(--color-bg-hero) 0%, #fff 100%);
  border-bottom: 1px solid rgba(89, 4, 22, 0.06);
}

.price-card__lead {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.price-sheet {
  border: 1px solid rgba(89, 4, 22, 0.08);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  overflow-x: auto;
  box-shadow: 0 8px 28px rgba(38, 8, 16, 0.05);
  -webkit-overflow-scrolling: touch;
}

.price-sheet__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(1.5rem, 2fr) max-content;
  align-items: end;
  gap: 0 0.65rem;
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid rgba(89, 4, 22, 0.06);
}

.price-sheet__row:last-child {
  border-bottom: 0;
}

.price-sheet__name {
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--color-text);
}

.price-sheet__leader {
  border-bottom: 1px dotted rgba(89, 4, 22, 0.22);
  margin-bottom: 0.32em;
  min-width: 1.25rem;
}

.price-sheet__value {
  font-size: 0.9375rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  color: var(--color-primary);
  text-align: right;
}

@media (max-width: 639px) {
  .price-sheet__row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
    padding: 0.85rem 1.25rem;
    align-items: start;
  }

  .price-sheet__leader {
    display: none;
  }

  .price-sheet__value {
    text-align: left;
    font-size: 0.875rem;
  }
}

.price-card__table-wrap,
.price-sheet .price-table {
  width: 100%;
}

.price-card__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.price-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  table-layout: fixed;
  --price-text-size: 0.875rem;
  --price-text-line: 1.45;
  --price-font: var(--font-sans);
}

.price-table--two-cols .price-table__service {
  width: auto;
}

.price-table__group {
  width: 32%;
  vertical-align: top;
  padding: 1rem 1.25rem 1rem 1.35rem;
  border-right: 1px solid rgba(89, 4, 22, 0.06);
}

.price-table__group-title {
  display: block;
  /* font-family: var(--font-serif); */
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  font-weight: 900;
  line-height: 1.35;
  color: var(--color-primary);
}

.price-table__group-note {
  display: block;
  margin-top: 0.4rem;
  font-family: var(--font-sans);
  font-size: var(--price-text-size);
  font-weight: 400;
  line-height: var(--price-text-line);
  color: #4a4a4a;
}

.price-table__service {
  vertical-align: top;
  padding: 0.65rem 1rem 0.65rem 1.25rem;
  font-family: var(--price-font);
  font-size: var(--price-text-size);
  font-weight: 400;
  line-height: var(--price-text-line);
  color: var(--color-text);
}

.price-table__price {
  width: 6.25rem;
  vertical-align: top;
  padding: 0.65rem 1.35rem 0.65rem 0;
  font-family: var(--price-font);
  font-size: var(--price-text-size);
  font-weight: 600;
  line-height: var(--price-text-line);
  font-variant-numeric: tabular-nums;
  text-align: right;
  white-space: nowrap;
  color: var(--color-primary);
}

.price-table__row + .price-table__row .price-table__service,
.price-table__row + .price-table__row .price-table__price {
  border-top: 1px solid rgba(89, 4, 22, 0.07);
}

.price-table__row + .price-table__row .price-table__group {
  border-top: none;
}

.price-table__divider td {
  padding: 0;
  height: 0;
  line-height: 0;
  border-bottom: 1px solid rgba(89, 4, 22, 0.14);
}

.price-table__divider + .price-table__row .price-table__group,
.price-table__divider + .price-table__row .price-table__service,
.price-table__divider + .price-table__row .price-table__price {
  padding-top: 1rem;
}

.price-table__row:first-child .price-table__group,
.price-table__row:first-child .price-table__service,
.price-table__row:first-child .price-table__price {
  padding-top: 1rem;
}

.price-table__divider + .price-table__row:first-child .price-table__group,
.price-table__divider + .price-table__row:first-child .price-table__service,
.price-table__divider + .price-table__row:first-child .price-table__price {
  padding-top: 1rem;
}

.price-card__placeholder {
  font-weight: 500;
  color: var(--color-text-muted);
}

.price-block__disclaimer {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.price-group {
  margin-bottom: 0;
  background: transparent;
  box-shadow: none;
}

.price-sheet__placeholder {
  font-weight: 500;
  color: var(--color-text-muted);
}

.price-group__badge {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
  flex-shrink: 0;
  padding: 0.65rem 0.9rem;
  background: #fff;
  border: 1px solid rgba(196, 169, 98, 0.35);
}

.price-group__badge span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.price-group__badge strong {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-primary);
  font-variant-numeric: tabular-nums;
}

.price-group__disclaimer {
  margin: 0;
  padding: 0.75rem 1.25rem 1rem;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  background: var(--color-bg-alt);
  border-top: 1px solid rgba(89, 4, 22, 0.1);
}

@media (max-width: 767px) {
  .price-table {
    --price-text-size: 0.8125rem;
    min-width: 0;
    display: block;
  }

  .price-table tbody {
    display: block;
  }

  .price-table__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 0.875rem;
    align-items: start;
  }

  .price-table__row td {
    display: block;
    width: auto !important;
  }

  .price-table__group {
    grid-column: 1 / -1;
    width: 100%;
    padding: 0.75rem 1rem;
    border-right: none;
    border-bottom: 1px solid rgba(89, 4, 22, 0.08);
    background: var(--color-bg-alt);
  }

  .price-table__row:first-child .price-table__group,
  .price-table__row:first-child .price-table__service,
  .price-table__row:first-child .price-table__price,
  .price-table__divider + .price-table__row .price-table__group,
  .price-table__divider + .price-table__row .price-table__service,
  .price-table__divider + .price-table__row .price-table__price {
    padding-top: 0.75rem;
  }

  .price-table__row:first-child .price-table__group {
    padding-top: 0.875rem;
  }

  .price-table__group-title {
    font-size: 0.9375rem;
    line-height: 1.35;
  }

  .price-table__service {
    padding: 0.65rem 0 0.65rem 1rem;
  }

  .price-table__price {
    width: auto;
    padding: 0.65rem 1rem 0.65rem 0;
    text-align: right;
  }

  .price-table__row:not(:has(.price-table__group)) {
    border-top: 1px solid rgba(89, 4, 22, 0.07);
  }

  .price-table__row + .price-table__row .price-table__service,
  .price-table__row + .price-table__row .price-table__price {
    border-top: none;
  }

  .price-table__divider {
    display: block;
  }

  .price-table__divider td {
    display: block;
    height: 0;
    padding: 0;
    margin: 0.625rem 0;
    border-bottom: 1px solid rgba(89, 4, 22, 0.12);
  }

  .price-sheet {
    overflow-x: visible;
  }
}

@media (max-width: 640px) {
  .price-tabs__item {
    padding: 1.1rem 1.15rem;
  }

  .price-group__badge {
    align-items: flex-start;
  }
}

/* Forms */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-group input.is-invalid,
.form-group textarea.is-invalid {
  border-color: rgba(89, 4, 22, 0.45);
  background: #fffafa;
}

.phone-field:has(input.is-invalid) {
  border-color: rgba(89, 4, 22, 0.45);
  background: #fffafa;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-message {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: var(--radius);
}

.form-message.is-success {
  background: #e8f5e9;
  color: var(--color-success);
}

.form-message.is-error {
  background: #ffebee;
  color: var(--color-error);
}

/* Contacts */
.contacts-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .contacts-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.contacts-map {
  min-height: 300px;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
}

.booking-section {
  padding-top: 0;
}

.booking-widget__frame {
  display: block;
  width: 100%;
  min-height: 780px;
  border: 0;
  border-radius: var(--radius);
  background: #fff;
}

.booking-fallback {
  text-align: center;
  padding: 3rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
}

/* Booking modal */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.booking-modal[hidden] {
  display: none;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 14, 16, 0.72);
  backdrop-filter: blur(4px);
}

.booking-modal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(100%, 560px);
  max-height: min(92vh, 860px);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.booking-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
  background: #fff;
}

.booking-modal__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-text);
}

.booking-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-text);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.booking-modal__close:hover {
  background: var(--color-bg-hero);
  color: var(--color-primary);
}

.booking-modal__body {
  flex: 1;
  min-height: 0;
  background: #fff;
}

.booking-modal__frame {
  display: block;
  width: 100%;
  height: min(78vh, 780px);
  min-height: 520px;
  border: 0;
  background: #fff;
}

body.booking-modal-open {
  overflow: hidden;
}

/* Hero video modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 320;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.video-modal[hidden] {
  display: none;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 14, 16, 0.78);
  backdrop-filter: blur(6px);
}

.video-modal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(100%, 420px);
  max-height: min(92vh, 900px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

@media (min-width: 768px) {
  .video-modal__dialog {
    width: min(100%, 480px);
  }
}

.video-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
  background: #fff;
}

.video-modal__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--color-text);
}

.video-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-text);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.video-modal__close:hover {
  background: var(--color-bg-hero);
  color: var(--color-primary);
}

.video-modal__body {
  position: relative;
  background: #111;
}

.video-modal__preview {
  position: relative;
  margin: 0;
  background: #111;
}

.video-modal__preview-img {
  display: block;
  width: 100%;
  max-height: min(72vh, 720px);
  object-fit: contain;
  margin: 0 auto;
}

.video-modal__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(20, 14, 16, 0.18);
  cursor: pointer;
  transition: background 0.2s ease;
}

.video-modal__play:hover {
  background: rgba(20, 14, 16, 0.32);
}

.video-modal__play:disabled {
  cursor: not-allowed;
}

.video-modal__play:disabled .video-modal__play-icon {
  opacity: 0.55;
}

.video-modal__play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-primary);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.24);
}

.video-modal__play-icon .icon {
  width: 1.125rem;
  height: 1.125rem;
  margin-left: 0.15rem;
}

.video-modal__player {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
}

.video-modal__player--shorts {
  aspect-ratio: 9 / 16;
}

@media (min-width: 768px) {
  .video-modal__player {
    aspect-ratio: 16 / 9;
  }

  .video-modal__player--shorts {
    aspect-ratio: 9 / 16;
    max-width: 22rem;
    margin: 0 auto;
  }
}

.video-modal__frame-host,
.video-modal__frame-host iframe,
.video-modal__native {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal__frame-host {
  width: 100%;
  height: 100%;
}

.video-modal__native {
  object-fit: contain;
  background: #000;
}

.video-modal__fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  text-align: center;
}

.video-modal__fallback[hidden] {
  display: none;
}

.video-modal__fallback-text {
  margin: 0;
  max-width: 26rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.video-modal__fallback-text code {
  font-size: 0.8125rem;
  color: #fff;
}

.video-modal__fallback-btn {
  min-width: 14rem;
}

.video-modal__frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

body.video-modal-open {
  overflow: hidden;
}

/* Lead form success modal */
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 320;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.lead-modal[hidden] {
  display: none;
}

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 14, 16, 0.68);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: leadModalFadeIn 0.28s var(--ease-premium) both;
}

.lead-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  padding: 2.25rem 2rem 2rem;
  text-align: center;
  background:
    linear-gradient(180deg, #fff 0%, #ffffff 100%);
  border: 1px solid rgba(89, 4, 22, 0.08);
  border-radius: 16px;
  box-shadow: 0 28px 80px rgba(38, 8, 16, 0.22);
  animation: leadModalSlideUp 0.34s var(--ease-premium) both;
}

.lead-modal__close {
  position: absolute;
  top: 0.875rem;
  right: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 50%;
  background: rgba(89, 4, 22, 0.05);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lead-modal__close:hover {
  background: rgba(89, 4, 22, 0.1);
  color: var(--color-primary);
}

.lead-modal__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
}

.lead-modal__icon[hidden] {
  display: none !important;
}

.lead-modal__icon--success {
  background: linear-gradient(135deg, rgba(196, 169, 98, 0.18) 0%, rgba(245, 245, 245, 0.95) 100%);
  color: var(--color-primary);
  box-shadow: inset 0 0 0 1px rgba(196, 169, 98, 0.35);
}

.lead-modal__icon--error {
  background: linear-gradient(135deg, rgba(89, 4, 22, 0.1) 0%, rgba(245, 245, 245, 0.95) 100%);
  color: var(--color-primary);
  box-shadow: inset 0 0 0 1px rgba(89, 4, 22, 0.14);
}

.lead-modal--error .lead-modal__title {
  color: var(--color-primary);
}

.lead-modal__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 1.75rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--color-text);
}

.lead-modal__text {
  margin: 0 auto 1.75rem;
  max-width: 28rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.lead-modal__action {
  min-width: 11rem;
}

body.lead-modal-open {
  overflow: hidden;
}

@keyframes leadModalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes leadModalSlideUp {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 767px) {
  .lead-modal__dialog {
    padding: 2rem 1.5rem 1.75rem;
  }

  .lead-modal__action {
    width: 100%;
  }
}

/* Footer */
.footer {
  margin-top: 0;
  color: var(--color-footer-text);
}

.footer__shell {
  background: var(--color-footer-bg);
  padding: 2.75rem 0 0;
  overflow: hidden;
}

.footer a {
  color: inherit;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: #fff;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1.5rem 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(200, 161, 142, 0.14);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: #fff;
}

.footer__logo:hover {
  color: #fff;
}

.footer__logo-img {
  display: block;
  height: 45px;
  width: auto;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 500;
  justify-self: end;
}

.footer__phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-footer-accent);
}

.footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 44px;
  padding: 0.625rem 1.25rem;
  border: 1px solid rgba(200, 161, 142, 0.55);
  border-radius: 999px;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.footer__cta:hover {
  background: rgba(200, 161, 142, 0.1);
  border-color: var(--color-footer-accent);
  color: #fff;
}

.footer__cta-icon {
  display: inline-flex;
  color: var(--color-footer-accent);
}

.footer__cta-icon .icon {
  width: 14px;
  height: 14px;
}

.footer__nav {
  display: grid;
  gap: 2rem 1.5rem;
  grid-template-columns: 1fr;
  padding: 2.5rem 0;
}

@media (min-width: 640px) {
  .footer__nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer__nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem 1.25rem;
    align-items: start;
  }
}

.footer__title {
  color: var(--color-footer-accent);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1.125rem;
  font-family: var(--font-sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1.75rem;
  height: 1px;
  background: var(--color-footer-accent);
}

.footer__links,
.footer__contacts {
  list-style: none;
}

.footer__links li,
.footer__contacts li {
  margin-bottom: 0.625rem;
  font-size: 0.8125rem;
  line-height: 1.55;
}

.footer__links a {
  display: inline-block;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer__links a:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer__contacts li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.footer__contact-icon {
  display: inline-flex;
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--color-footer-accent);
}

.footer__contact-text--multiline {
  white-space: pre-line;
}

.address-lines {
  display: flex;
  flex-direction: column;
}

.address-lines__line--primary {
  white-space: nowrap;
}

.footer__contacts a {
  color: #fff;
  font-weight: 500;
}

.footer__director-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  padding: 2rem 0 2.25rem;
  border-top: 1px solid rgba(200, 161, 142, 0.14);
}

.footer__director-info {
  flex: 1 1 16rem;
  min-width: 0;
  max-width: 36rem;
}

.footer__title--director {
  margin-bottom: 0.625rem;
  padding-bottom: 0.625rem;
}

.footer__director-text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
}

.footer__cta--director {
  flex-shrink: 0;
}

.footer__aside-text {
  position: relative;
  z-index: 1;
  max-width: 18rem;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
}

.footer__monogram {
  position: absolute;
  right: -0.5rem;
  bottom: -1.5rem;
  font-family: var(--font-serif);
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(200, 161, 142, 0.12);
  pointer-events: none;
  user-select: none;
}

.footer__legal-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(200, 161, 142, 0.14);
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(200, 161, 142, 0.45);
  border-radius: 50%;
  color: #fff;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.footer__social a:hover {
  background: rgba(200, 161, 142, 0.12);
  border-color: var(--color-footer-accent);
  color: #fff;
}

.footer__social .icon--social {
  width: 18px;
  height: 18px;
}

.footer__company-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  flex: 1;
  min-width: min(100%, 520px);
}

.footer__star {
  display: inline-flex;
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--color-footer-accent);
}

.footer__company {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.6875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.48);
}

.footer__company p {
  margin: 0;
  overflow-wrap: anywhere;
}

.footer__company strong {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 600;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0 1.75rem;
  border-top: 1px solid rgba(200, 161, 142, 0.14);
}

.footer__copy {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
}

.footer__legal a:hover {
  color: #fff;
}

.footer__legal-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  user-select: none;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0 1rem;
  pointer-events: none;
}

.cookie-banner:not([hidden]) {
  animation: cookie-banner-in 0.4s var(--ease-premium) both;
}

@keyframes cookie-banner-in {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-banner__card {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 960px;
  margin: 0 auto;
  padding: 0.875rem 1.125rem;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
  pointer-events: auto;
}

.cookie-banner__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--color-bg-hero);
  color: var(--color-primary);
}

.cookie-banner__text {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-shrink: 0;
}

.cookie-banner__link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: none;
  white-space: nowrap;
}

.cookie-banner__link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Services page */
.services-catalog {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background: #fff;
}

.services-catalog__layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .services-catalog__layout {
    grid-template-columns: 260px 1fr;
    gap: 2.5rem;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .services-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 1rem);
  }
}

.services-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.services-sidebar__link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.875rem;
  border-radius: var(--radius);
  color: var(--color-text);
  font-size: 0.8125rem;
  line-height: 1.3;
}

.services-sidebar__link:hover {
  background: var(--color-bg-alt);
  color: var(--color-text);
}

.services-sidebar__link--active {
  background: var(--color-primary);
  color: #fff;
}

.services-sidebar__link--active:hover {
  background: var(--color-primary-dark);
  color: #fff;
}

.services-sidebar__link--active .services-sidebar__icon {
  color: rgba(255, 255, 255, 0.9);
}

.services-sidebar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-gold);
}

.services-sidebar__help {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.services-sidebar__help-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 0.75rem;
  color: var(--color-gold);
  border: 1px solid rgba(196, 169, 98, 0.35);
  border-radius: 50%;
  background: #fff;
}

.services-sidebar__help-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.services-sidebar__help-text {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.services-sidebar__help-link {
  font-size: 0.8125rem;
}

.services-catalog__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1.5rem;
}

.services-catalog__count {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
}

.services-catalog__prices-link {
  font-size: 0.8125rem;
}

.products-category + .products-category {
  margin-top: 3.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(89, 4, 22, 0.1);
}

.products-category__title {
  margin: 0 0 1.75rem;
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--color-primary);
}

.services-catalog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .services-catalog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .services-catalog__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.catalog-service-card {
  display: flex;
  flex-direction: column;
  color: var(--color-text);
  background: #fff;
  border: 1px solid rgba(89, 4, 22, 0.07);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.catalog-service-card:hover {
  color: var(--color-text);
  border-color: rgba(196, 169, 98, 0.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.catalog-service-card--hidden {
  display: none;
}

.catalog-service-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.page-catalog--preparaty .catalog-service-card__image {
  background: #fff;
  padding: 0.75rem;
}

body.page-catalog--preparaty .catalog-service-card__image img {
  object-fit: contain;
}

body.page-catalog--preparaty .catalog-service-card--static {
  cursor: default;
}

body.page-catalog--preparaty .catalog-service-card--static:hover {
  transform: none;
  border-color: rgba(89, 4, 22, 0.07);
  box-shadow: none;
}

body.page-catalog--preparaty .catalog-service-card--static .catalog-service-card__desc.prose p {
  margin: 0;
}

body.page-catalog--preparaty .catalog-service-card--static .catalog-service-card__desc {
  margin-bottom: 0;
}

body.page-catalog--certificates .services-catalog__grid--certificates {
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  body.page-catalog--certificates .services-catalog__grid--certificates {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  body.page-catalog--certificates .services-catalog__grid--certificates {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

body.page-catalog--certificates .catalog-service-card__image {
  aspect-ratio: 16 / 10;
  background: #fff;
  padding: 0.75rem;
}

body.page-catalog--certificates .catalog-service-card__image img {
  object-fit: contain;
}

body.page-catalog--certificates .catalog-service-card--static {
  cursor: default;
}

body.page-catalog--certificates .catalog-service-card--static:hover {
  transform: none;
  border-color: rgba(89, 4, 22, 0.07);
  box-shadow: none;
}

body.page-catalog--certificates .catalog-service-card--static .catalog-service-card__desc.prose p {
  margin: 0;
}

body.page-catalog--certificates .catalog-service-card__body {
  align-items: center;
  text-align: center;
}

body.page-catalog--certificates .catalog-service-card__title,
body.page-catalog--certificates .catalog-service-card__desc {
  text-align: center;
}

body.page-catalog--certificates .gift-certificate-card__actions {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 1.25rem;
}

.certificate-order-modal__dialog {
  width: min(100%, 480px);
  max-height: min(92vh, 720px);
}

.certificate-order-modal__body {
  padding: 1.25rem;
  overflow-y: auto;
}

.certificate-order-modal__selected {
  margin: 0 0 1.25rem;
  padding: 0.875rem 1rem;
  background: var(--color-bg-alt, var(--color-bg-hero));
  border-radius: var(--radius, 10px);
}

.certificate-order-modal__selected-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted, #6b6b6b);
}

.certificate-order-modal__selected strong {
  display: block;
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--color-primary, #590416);
}

.certificate-order-modal .form-group + .form-group {
  margin-top: 0.875rem;
}

.certificate-order-modal .btn--block {
  width: 100%;
  margin-top: 0.25rem;
}

.certificate-order-modal .consent-row {
  margin-top: 1rem;
}

.certificates-section + .certificates-section {
  margin-top: 3rem;
}

.certificates-section__title {
  margin: 0 0 1.5rem;
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  color: var(--color-primary, #590416);
  text-align: center;
}

.promo-section.section {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(4rem, 7vw, 5rem);
  background: #fff;
}

.promo-section__title {
  margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--color-text);
}

.promo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .page-promotions .promo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .page-promotions .promo-tile__body {
    padding: 1.25rem 1.35rem 1.35rem;
  }

  .page-promotions .promo-tile__title {
    font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  }
}

.promo-tile {
  scroll-margin-top: calc(var(--header-height) + 1rem);
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid rgba(89, 4, 22, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(38, 8, 16, 0.08);
}

.promo-tile__visual {
  position: relative;
  flex-shrink: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.promo-tile__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-tile__badge {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  right: auto;
  min-width: 3rem;
  height: 3rem;
  padding: 0 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-primary);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  box-shadow: 0 4px 14px rgba(89, 4, 22, 0.28);
}

.promo-tile__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.15rem 1.15rem 1.25rem;
}

.promo-tile__date {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--color-text-muted);
}

.promo-tile__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-text);
}

.promo-tile__desc {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.promo-tile__subtitle {
  margin: 0 0 0.35rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-primary);
}

.promo-tile__offers {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.promo-tile__offer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.65rem 0.75rem;
  padding: 0.7rem 0.8rem;
  background: #fff;
  border: 1px solid rgba(89, 4, 22, 0.07);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(38, 8, 16, 0.04);
}

.promo-tile__offer-name {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--color-text);
}

.promo-tile__offer-note {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.promo-tile__offer-prices {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
  text-align: right;
}

.promo-tile__offer-price {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-primary);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.promo-tile__offer-old {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  line-height: 1.2;
  text-decoration: line-through;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.promo-tile__conditions {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.promo-tile__btn.btn--outline {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  border-color: rgba(89, 4, 22, 0.22);
  color: var(--color-primary);
  font-weight: 500;
}

.promo-tile__btn.btn--outline:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.promo-tile__btn.btn--outline .btn__icon {
  border-color: rgba(89, 4, 22, 0.22);
  color: var(--color-primary);
}

.promo-tile__btn.btn--outline:hover .btn__icon {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.catalog-service-card__image-fallback {
  display: flex;
  color: var(--color-gold);
  opacity: 0.55;
}

.catalog-service-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.15rem 1.15rem 1.25rem;
}

.catalog-service-card__category {
  margin: 0 0 0.4rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.catalog-service-card__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.3;
}

.catalog-service-card__desc {
  margin: 0 0 1rem;
  flex: 1;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.catalog-service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(89, 4, 22, 0.06);
}

.catalog-service-card__price {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--color-primary);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.catalog-service-card__link {
  font-size: 0.75rem;
}

.catalog-service-card__meta {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.services-catalog__more {
  margin-top: 2rem;
  text-align: center;
}

.services-catalog__more-btn {
  min-width: 220px;
}

.service-detail__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.service-detail__from {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-primary);
}

.service-detail__layout {
  display: grid;
  gap: 2rem;
}

.service-detail__section {
  padding-top: 3.5rem;
  padding-bottom: 5rem;
  background: var(--color-bg);
}

/* Service detail — editorial layout */
.service-detail__content {
  min-width: 0;
}

.page-service-detail .service-detail__content .content-heading {
  margin: 3.25rem 0 1.75rem;
}

.page-service-detail .service-detail__content .content-heading h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 2.5vw, 1.625rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--color-text);
}

.service-detail__content > .service-detail__block:first-child .content-heading,
.service-detail__intro .content-heading {
  margin-top: 0;
}

.service-detail__intro .content-heading {
  margin-bottom: 1.5rem;
}

.service-detail__block {
  padding-bottom: 3.25rem;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(89, 4, 22, 0.07);
}

.service-detail__block:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.service-detail__block--prices .price-group {
  margin: 0;
}

.service-detail__block--prices .price-group__note {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.service-detail__intro {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .service-detail__intro {
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    gap: 3rem;
  }

  .service-detail__photo {
    position: sticky;
    top: calc(var(--header-height) + 1.25rem);
    align-self: start;
  }
}

.service-detail__photo {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(38, 8, 16, 0.1);
}

.service-detail__photo-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}

.service-detail__photo-btn img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.service-detail__intro-copy {
  min-width: 0;
}

.service-detail__split {
  display: grid;
  gap: 2.25rem;
  align-items: start;
}

@media (min-width: 768px) {
  .service-detail__split {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
    gap: 2.75rem;
  }

  .service-detail__aside-media {
    position: sticky;
    top: calc(var(--header-height) + 1.25rem);
    align-self: start;
  }
}

.service-detail__aside-media {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(38, 8, 16, 0.08);
}

.service-detail__aside-media img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.page-service-detail .service-detail__prose {
  line-height: 1.85;
}

.page-service-detail .service-detail__prose > p {
  margin: 0 0 1.35rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.page-service-detail .service-detail__prose > p:last-child {
  margin-bottom: 0;
}

.page-service-detail .service-detail__prose > p:first-of-type {
  font-size: 1rem;
  color: var(--color-text);
}

.page-service-detail .service-detail__prose h2 {
  display: none;
}

.page-service-detail .service-detail__prose h3,
.page-service-detail .service-detail__prose > p:has(+ ul) {
  margin: 2rem 0 0.85rem;
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-primary);
}

.page-service-detail .service-detail__prose h3:first-child,
.page-service-detail .service-detail__prose > p:first-of-type:has(+ ul) {
  margin-top: 0;
}

.page-service-detail .service-detail__prose ul + p {
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(89, 4, 22, 0.07);
}

.page-service-detail .service-detail__prose ul:not(.service-type-list),
.page-service-detail .service-detail__prose ol {
  margin: 0 0 1.5rem;
  padding: 1.25rem 1.4rem;
  background: #fff;
  border: 1px solid rgba(89, 4, 22, 0.08);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(38, 8, 16, 0.04);
  list-style: none;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .page-service-detail .service-detail__prose ul:not(.service-type-list),
  .page-service-detail .service-detail__prose ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 1.75rem;
    padding: 1.35rem 1.5rem;
  }
}

.page-service-detail .service-detail__prose ul:not(.service-type-list) li,
.page-service-detail .service-detail__prose ol li {
  position: relative;
  margin: 0;
  padding: 0.25rem 0 0.25rem 1.35rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.page-service-detail .service-detail__prose ul:not(.service-type-list) li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.35em;
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 700;
}

.page-service-detail .service-detail__intro-copy .service-detail__prose > h3 {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(89, 4, 22, 0.07);
}

.page-service-detail .service-detail__intro-copy .service-detail__prose > h3:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.page-service-detail .service-feature-grid {
  gap: 1rem;
  margin: 1.75rem 0 0.5rem;
}

@media (min-width: 768px) {
  .page-service-detail .service-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .page-service-detail .service-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
  }
}

.page-service-detail .service-feature {
  padding: 1.35rem 1.4rem;
  background: #fff;
  border: 1px solid rgba(89, 4, 22, 0.08);
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(38, 8, 16, 0.04);
}

.page-service-detail .service-feature h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.page-service-detail .service-feature p {
  font-size: 0.875rem;
  line-height: 1.6;
}

.service-detail__list {
  display: grid;
  gap: 0.85rem;
  margin: 0.25rem 0 0;
  padding: 1.35rem 1.5rem;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(89, 4, 22, 0.08);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(38, 8, 16, 0.04);
}

@media (min-width: 768px) {
  .service-detail__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 1.5rem;
    padding: 1.5rem 1.65rem;
  }
}

.service-detail__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.service-detail__list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  margin-top: 0.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(89, 4, 22, 0.08);
  color: var(--color-primary);
  font-size: 0.65rem;
  font-weight: 700;
}

.service-detail__list--contra {
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  border-color: rgba(89, 4, 22, 0.1);
}

.service-detail__list--contra li::before {
  content: "×";
  background: rgba(89, 4, 22, 0.06);
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1;
}

.service-detail__steps {
  display: grid;
  gap: 1rem;
  margin: 0.25rem 0 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .service-detail__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.25rem;
  }
}

.service-detail__steps li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  background: #fff;
  border: 1px solid rgba(89, 4, 22, 0.08);
  border-radius: 14px;
}

.service-detail__step-num {
  flex-shrink: 0;
  width: 2.125rem;
  height: 2.125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.service-detail__step-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  padding-top: 0.15rem;
}

.service-detail__block .service-related-grid,
.service-detail__block .faq-list,
.service-detail__block .grid--3 {
  margin-top: 0.25rem;
}

.service-detail__block .service-related-grid {
  gap: 1.25rem;
}

.page-service-detail .service-detail__block .faq-list {
  gap: 0.75rem;
}

.service-detail__block--prices .price-sheet {
  max-width: none;
}

.service-detail__block--prices .price-group__disclaimer {
  margin-top: 0.75rem;
  padding: 0.85rem 1.5rem 0;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

@media (min-width: 1024px) {
  .service-detail__layout:not(.service-detail__layout--single) {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 2.5rem;
    align-items: start;
  }
}

.service-showcase {
  margin: 0 0 1.75rem;
}

.service-showcase__open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(38, 8, 16, 0.1);
}

.service-showcase__open:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.service-showcase__open img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.service-showcase__open:hover img {
  transform: scale(1.02);
}

.service-detail__main h2 {
  margin: 2rem 0 1rem;
  font-family: var(--font-serif);
  font-weight: 400;
}

.service-detail__about {
  margin-bottom: 0;
}

.service-section {
  background: var(--color-bg-alt);
  border-radius: 12px;
  padding: 1.5rem 1.625rem;
  margin-bottom: 1.25rem;
}

.service-section--intro {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(38, 8, 16, 0.04);
}

.service-section--prices {
  padding: 0;
  background: transparent;
}

.service-section--prices .price-group {
  margin: 0;
}

.service-section--plain {
  background: transparent;
  padding: 0;
}

.service-related-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

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

.service-related-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(89, 4, 22, 0.08);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.service-related-card:hover {
  border-color: rgba(89, 4, 22, 0.18);
  box-shadow: 0 10px 28px rgba(38, 8, 16, 0.08);
  transform: translateY(-2px);
}

.service-related-card__media {
  aspect-ratio: 16 / 10;
  background: var(--color-bg-alt);
  overflow: hidden;
}

.service-related-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-related-card__body {
  padding: 1rem 1.1rem 1.15rem;
}

.service-related-card__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--color-primary);
}

.service-related-card__meta {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.service-section .content-heading {
  margin: 0 0 1.125rem;
}

.service-section .content-heading:first-child {
  margin-top: 0;
}

.service-section__body .prose ul,
.service-section__body ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-section__body .prose ul li,
.service-section__body ul li {
  margin: 0;
  padding: 0.75rem 1rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.service-section__body .prose ol,
.service-section__body ol {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: service-step;
}

.service-section__body .prose ol li,
.service-section__body ol li {
  counter-increment: service-step;
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  margin: 0;
  padding: 0.875rem 1rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.service-section__body .prose ol li::before,
.service-section__body ol li::before {
  content: counter(service-step);
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-bg-hero);
  color: var(--color-primary);
  font-size: 0.8125rem;
  font-weight: 600;
}

.page-service-detail .service-detail__about.prose h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(89, 4, 22, 0.08);
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--color-primary);
}

.page-service-detail .service-detail__about.prose h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.page-service-detail .service-detail__about.prose h3 {
  margin-top: 1.75rem;
  font-size: 1.125rem;
  color: var(--color-primary);
}

.page-service-detail .service-detail__about.prose > p:first-of-type {
  font-size: 1.0625rem;
  line-height: 1.75;
}

.service-section--intro .service-detail__about ul:not(.service-type-list) {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr;
  list-style: none;
  margin: 1rem 0 1.25rem;
  padding: 0;
}

@media (min-width: 640px) {
  .service-section--intro .service-detail__about ul:not(.service-type-list) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.service-section--intro .service-detail__about ul:not(.service-type-list) li {
  margin: 0;
  padding: 0.85rem 1rem;
  background: var(--color-bg-alt);
  border: 1px solid rgba(89, 4, 22, 0.06);
  border-radius: 12px;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-text);
}

.service-section--intro .service-type-list li {
  background: var(--color-bg-alt);
}

.service-feature-grid {
  display: grid;
  gap: 0.85rem;
  margin: 1.25rem 0;
  grid-template-columns: 1fr;
}

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

.service-feature {
  padding: 1.15rem 1.2rem;
  background: var(--color-bg-alt);
  border-radius: 14px;
  border: 1px solid rgba(89, 4, 22, 0.07);
}

.service-feature h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text);
}

.service-feature p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.service-type-list {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}

.service-type-list li {
  padding: 1rem 1.15rem;
  background: var(--color-bg-alt);
  border-radius: 12px;
  border: 1px solid rgba(89, 4, 22, 0.06);
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.service-type-list strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--color-primary);
  font-weight: 600;
}

.service-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 0.5rem;
  padding: 1.75rem 2rem;
  background: linear-gradient(135deg, var(--color-bg-hero) 0%, #f0f0f0 100%);
  border-radius: 12px;
  border: 1px solid rgba(89, 4, 22, 0.08);
}

.service-cta__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--color-text);
}

.service-cta__text {
  margin: 0;
  max-width: 36rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.service-cta.service-cta--maroon {
  margin-top: 3.5rem;
  padding: 2.25rem 2.5rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border: 0;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(89, 4, 22, 0.22);
}

.service-cta.service-cta--maroon .service-cta__title {
  color: #fff;
}

.service-cta.service-cta--maroon .service-cta__text {
  color: rgba(255, 255, 255, 0.88);
}

.service-cta.service-cta--maroon .btn--white {
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.service-cta.service-cta--maroon .btn--white:hover {
  background: #fff;
  color: var(--color-primary-dark);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
}

/* ── Service detail page (mockup layout) ── */
.svc-section-title {
  margin: 0 0 1.75rem;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.8vw, 1.875rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--color-text);
}

.svc-section-title--center {
  text-align: center;
}

.page-service-detail .svc-prose {
  line-height: 1.85;
}

.page-service-detail .svc-prose > p {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.page-service-detail .svc-prose > p:first-of-type {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.page-service-detail .svc-prose h2,
.page-service-detail .svc-prose h3 {
  display: none;
}

.page-service-detail .svc-prose ul:not(.service-type-list),
.page-service-detail .svc-prose ol {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.page-service-detail .svc-prose ul:not(.service-type-list) li,
.page-service-detail .svc-prose ol li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.page-service-detail .svc-prose ul:not(.service-type-list) li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.page-service-detail .service-feature-grid {
  display: grid;
  gap: 0.85rem;
  margin: 1rem 0;
}

@media (min-width: 768px) {
  .page-service-detail .service-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.page-service-detail .service-feature {
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid rgba(89, 4, 22, 0.08);
  border-radius: 12px;
}

.page-service-detail .service-feature p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* About */
.svc-about {
  padding: 3.5rem 0 2.5rem;
  background: var(--color-bg);
}

.svc-about__grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .svc-about__grid {
    grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
    gap: 3.5rem;
  }

  .svc-about__photo {
    position: sticky;
    top: calc(var(--header-height) + 1.25rem);
  }
}

.svc-about__photo {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(38, 8, 16, 0.12);
}

.svc-about__photo-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}

.svc-about__photo-btn img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.svc-about__copy {
  min-width: 0;
}

/* Meta facts */
.svc-meta {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(89, 4, 22, 0.08);
}

@media (min-width: 640px) {
  .svc-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .svc-meta {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.svc-meta__item {
  display: grid;
  gap: 0.35rem;
  padding: 1.25rem 1.35rem;
  background: var(--color-bg-alt);
  border-radius: 14px;
  border: 1px solid rgba(89, 4, 22, 0.06);
}

.svc-meta__icon {
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.15rem;
  border-radius: 50%;
  background: rgba(89, 4, 22, 0.08) center / 1.1rem no-repeat;
}

.svc-meta__icon--clock {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%23590416' stroke-width='1.5'%3E%3Ccircle cx='9' cy='9' r='6.5'/%3E%3Cpath d='M9 5.5V9l2.5 1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.svc-meta__icon--recovery {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%23590416' stroke-width='1.5'%3E%3Cpath d='M9 3v3l2 1.5M9 15a6 6 0 100-12 6 6 0 000 12z' stroke-linecap='round'/%3E%3C/svg%3E");
}

.svc-meta__icon--course {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%23590416' stroke-width='1.5'%3E%3Crect x='3' y='5' width='12' height='10' rx='1.5'/%3E%3Cpath d='M3 8.5h12M6 3v2.5M12 3v2.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.svc-meta__icon--result {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%23590416' stroke-width='1.5'%3E%3Cpath d='M9 3l1.8 3.6L15 7.3l-3 2.9.7 4.1L9 12.1 6.3 14.3 7 10.2 4 7.3l4.2-.7L9 3z' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.svc-meta__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.svc-meta__value {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--color-primary);
}

/* Indications */
.svc-indications {
  padding: 3.5rem 0;
  background: var(--color-bg-alt);
}

.svc-indications__grid {
  display: grid;
  gap: 1rem 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .svc-indications__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem 1.75rem;
  }
}

.svc-indication {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.svc-indication__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(89, 4, 22, 0.08);
  color: var(--color-primary);
}

.svc-indication__icon .circle-icon {
  width: 1.35rem;
  height: 1.35rem;
}

.svc-indication__icon .circle-icon svg {
  width: 100%;
  height: 100%;
}

.svc-indication__text {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  padding-top: 0.35rem;
}

/* Process steps */
.svc-process {
  padding: 3.5rem 0;
  background: var(--color-bg);
}

.svc-process__track {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 900px) {
  .svc-process__track {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }

  .svc-process__step {
    flex: 1;
    position: relative;
    padding-right: 2rem;
  }

  .page-service-detail .svc-process__step:not(:last-child)::after {
    content: none;
  }

  .svc-process__step:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: 0.35rem;
    top: 0.85rem;
    font-size: 1.125rem;
    color: rgba(89, 4, 22, 0.35);
    pointer-events: none;
  }
}

.svc-process__step {
  text-align: center;
  padding: 0 0.5rem;
}

.svc-process__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.svc-process__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--color-text);
}

.svc-process__text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* Pros & cons */
.svc-pros-cons {
  padding: 3.5rem 0;
  background: var(--color-bg);
}

.svc-pros-cons__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .svc-pros-cons__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }

  .svc-pros-cons__grid--single {
    grid-template-columns: minmax(0, 1fr);
  }
}

.svc-pros,
.svc-cons {
  position: relative;
  padding: 2rem 1.75rem;
  border-radius: 16px;
  background: var(--color-bg-alt);
  border: 1px solid rgba(89, 4, 22, 0.06);
  overflow: hidden;
}

.svc-pros::after {
  content: "";
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  width: 8rem;
  height: 8rem;
  opacity: 0.06;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  pointer-events: none;
}

.svc-pros .svc-section-title,
.svc-cons .svc-section-title {
  margin-bottom: 1.25rem;
}

.svc-pros__list,
.svc-cons__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.svc-pros__list li,
.svc-cons__list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.svc-pros__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--color-primary);
  font-size: 0.8125rem;
  font-weight: 700;
}

.svc-cons__list li::before {
  content: "×";
  position: absolute;
  left: 0;
  top: 0.05em;
  color: var(--color-primary);
  font-size: 1rem;
  line-height: 1;
}

/* Equipment */
.svc-equipment {
  padding: 3.5rem 0;
  background: var(--color-bg-alt);
}

.svc-equipment__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .svc-equipment__grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 3.5rem;
  }
}

.svc-equipment__subtitle {
  margin: -1rem 0 1.25rem;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--color-primary);
}

.svc-equipment__media {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(38, 8, 16, 0.1);
}

.svc-equipment__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.svc-equipment__link {
  display: inline-flex;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.svc-equipment__link:hover {
  color: var(--color-primary-dark);
}

/* Extra sections */
.svc-extra {
  padding: 2rem 0 3.5rem;
  background: var(--color-bg);
}

.svc-extra__block {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(89, 4, 22, 0.07);
}

.svc-extra__block:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.svc-extra .content-heading {
  margin: 0 0 1.5rem;
}

/* Pricing */
.svc-pricing {
  padding: 3.5rem 0;
  background: var(--color-bg);
}

.svc-pricing__grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .svc-pricing__grid {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    gap: 2.5rem;
  }
}

.svc-pricing__note {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.svc-pricing__list .price-sheet {
  max-width: none;
}

.svc-pricing__aside {
  padding: 1.75rem 1.5rem;
  background: var(--color-bg-alt);
  border: 1px solid rgba(89, 4, 22, 0.08);
  border-radius: 16px;
  text-align: center;
}

.svc-pricing__aside-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(89, 4, 22, 0.08);
  color: var(--color-primary);
}

.svc-pricing__aside-icon .circle-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.svc-pricing__aside-text {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

/* Secondary blocks */
.svc-secondary {
  padding: 2rem 0 3.5rem;
  background: var(--color-bg);
}

.svc-secondary__block {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(89, 4, 22, 0.07);
}

.svc-secondary__block:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.svc-secondary .content-heading {
  margin: 0 0 1.5rem;
}

.svc-secondary .content-heading h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 2.5vw, 1.625rem);
  font-weight: 400;
}

/* CTA banner */
.svc-banner {
  padding: 0 0 5rem;
  background: var(--color-bg);
}

.svc-banner__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2rem;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  box-shadow: 0 20px 56px rgba(89, 4, 22, 0.24);
  overflow: hidden;
}

@media (min-width: 900px) {
  .svc-banner__inner {
    padding: 3rem 2.5rem;
    padding-right: min(42%, 22rem);
  }
}

.svc-banner__copy {
  flex: 1 1 280px;
  min-width: 0;
}

.svc-banner__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 2.8vw, 1.875rem);
  font-weight: 400;
  line-height: 1.25;
  color: #fff;
}

.svc-banner__text {
  margin: 0;
  max-width: 36rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.svc-banner__btn {
  flex-shrink: 0;
}

.svc-banner__btn.btn--white {
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.svc-banner__btn.btn--white:hover {
  background: #fff;
  color: var(--color-primary-dark);
}

.svc-banner__decor {
  display: none;
}

@media (min-width: 900px) {
  .svc-banner__decor {
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: min(38%, 280px);
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.35;
    mask-image: linear-gradient(to left, #000 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, #000 40%, transparent 100%);
    pointer-events: none;
  }
}

.price-sheet__placeholder {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.price-box--muted {
  background: var(--color-bg-alt);
}

.price-box__value--sm {
  font-size: 1.125rem;
  line-height: 1.35;
}

.service-detail__prices {
  margin-top: 0;
}

.service-detail__aside {
  display: flex;
  flex-direction: column;
}

.service-detail__aside-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid rgba(89, 4, 22, 0.08);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(38, 8, 16, 0.06);
}

.service-detail__price {
  padding: 1.25rem 1rem;
  text-align: center;
  background: transparent;
  border: 1px solid rgba(89, 4, 22, 0.12);
  border-radius: 10px;
  color: var(--color-text);
}

.service-detail__price--muted {
  background: transparent;
  border-color: rgba(89, 4, 22, 0.08);
  color: var(--color-text);
}

.service-detail__price-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.service-detail__price--muted .service-detail__price-label {
  color: var(--color-text-muted);
}

.service-detail__price-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
  color: var(--color-primary);
}

.service-detail__price-note {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

@media (min-width: 1024px) {
  .service-detail__aside {
    position: sticky;
    top: calc(var(--header-height) + 1rem);
    align-self: start;
  }
}

.service-card__price {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.92);
}

.cta-section--services .cta-section__content h2 {
  max-width: 380px;
}

/* Doctors page */
.page-hero-block__title--doctors>span {
  display: block;
}

.page-hero-block__title--doctors .page-hero-block__accent {
  color: var(--color-primary);
}

.doctor-stats {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 2rem 1.5rem;
  margin-top: 2rem;
  position: relative;
  z-index: 3;
}

.page-doctors > .container {
  position: relative;
  z-index: 5;
}

.page-doctors .doctor-stats {
  margin-top: -4rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .page-doctors .doctor-stats {
    margin-top: -5rem;
  }
}

.doctor-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem 1rem;
}

@media (min-width: 768px) {
  .doctor-stats__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
}

.doctor-stats__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0 0.75rem;
  position: relative;
}

@media (min-width: 768px) {
  .doctor-stats__item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 4px;
    bottom: 4px;
    width: 1px;
    background: var(--color-border);
  }
}

.doctor-stats__icon {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.doctor-stats__value {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--color-text);
  line-height: 1;
}

.doctor-stats__label {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  margin-top: 0.5rem;
}

/* Vertical doctor card (doctors listing page) */
.doctor-card-v {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--color-bg-alt);
  color: var(--color-text);
  transition: box-shadow 0.4s var(--ease-premium), transform 0.4s var(--ease-premium);
}

.doctor-card-v:hover {
  box-shadow: var(--shadow-md);
  color: var(--color-text);
  transform: translateY(-3px);
}

.doctor-card-v__photo {
  overflow: hidden;
  background: #fff;
  aspect-ratio: auto;
  height: auto;
  line-height: 0;
  flex-shrink: 0;
}

.doctor-card-v__photo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 280px;
  background: var(--color-bg-alt);
}

.doctor-card-v__photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: unset;
  object-position: center top;
  transition: transform 0.6s var(--ease-premium);
}

.doctor-card-v:hover .doctor-card-v__photo img {
  transform: none;
}

.doctor-card-v__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.25rem 1.5rem;
  background: var(--color-bg-alt);
}

.doctor-card-v__name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 0.625rem;
}

.doctor-card-v__name span {
  display: block;
}

.doctor-card-v__lastname {
  color: var(--color-primary);
}

.doctor-card-v__position {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.doctor-card-v__experience {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: 0.2rem;
}

.doctor-card-v__link {
  margin-top: auto;
  padding-top: 0.875rem;
  font-size: 0.8125rem;
}

.page-doctors .doctors-grid {
  align-items: stretch;
}

.page-home .doctors-grid--home {
  align-items: stretch;
}

.page-home .doctors-grid--home .doctor-card-v {
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-home .doctors-grid--home .doctor-card-v__photo {
  aspect-ratio: auto;
  height: auto;
  background: #fff;
  line-height: 0;
  flex-shrink: 0;
}

.page-home .doctors-grid--home .doctor-card-v__photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: unset;
  object-position: center top;
}

.page-home .doctors-grid--home .doctor-card-v__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--color-bg-alt);
}

.page-home .doctors-grid--home .doctor-card-v__link {
  margin-top: auto;
}

/* Doctor advantages */
.doctor-advantages {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .doctor-advantages {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .doctor-advantages {
    grid-template-columns: repeat(4, 1fr);
  }
}

.doctor-advantage-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.doctor-advantage-card .advantage__icon {
  margin-bottom: 1rem;
}

.doctor-advantage-card .advantage__title {
  margin-bottom: 0.5rem;
}

.doctor-advantage-card .advantage__text {
  max-width: none;
}

.cta-section__video-link {
  color: #fff;
}

.cta-section__video-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.cta-section__video-link .hero__play {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.cta-section .hero__actions {
  flex-wrap: wrap;
}

/* Contacts page */
.page-hero-block__title--contacts>span {
  display: block;
}

.page-hero-block__title--contacts .page-hero-block__accent {
  color: var(--color-primary);
  font-style: italic;
}

.contact-info-bar {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.75rem;
  margin-top: 2rem;
  position: relative;
  z-index: 3;
}

.contact-info-bar__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .contact-info-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .contact-info-bar__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.contact-info-bar__item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding-right: 1rem;
  position: relative;
}

@media (min-width: 1200px) {
  .contact-info-bar__item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 4px;
    bottom: 4px;
    width: 1px;
    background: var(--color-border);
  }
}

.contact-info-bar__icon {
  color: var(--color-primary);
  flex-shrink: 0;
}

.contact-info-bar__title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.contact-info-bar__text {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  white-space: normal;
}

.contact-info-bar__text--multiline {
  white-space: pre-line;
}

.contact-info-bar__text--stacked {
  white-space: normal;
}

.contact-info-bar__text--stacked a {
  display: block;
}

.contact-info-bar__text a {
  color: var(--color-text-muted);
}

.contact-info-bar__text a:hover {
  color: var(--color-primary);
}

.find-us {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .find-us {
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: center;
  }
}

.find-us__map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
}

@media (min-width: 1024px) {
  .find-us__map {
    min-height: 420px;
  }
}

.find-us__map img,
.yandex-map {
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.find-us__map img {
  object-fit: cover;
}

.yandex-map {
  display: block;
}

.yandex-map--widget {
  border: 0;
  min-height: 280px;
  aspect-ratio: 4 / 3;
}

@media (min-width: 1024px) {
  .yandex-map--widget {
    min-height: 420px;
  }
}

.find-us__eyebrow {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.find-us__title {
  margin-bottom: 1.75rem;
}

.find-us__title .page-hero-block__accent,
.find-us__title .hero__accent,
.find-us__title-accent {
  color: var(--color-primary);
}

@media (max-width: 1023px) {
  .find-us__title-line,
  .find-us__title-accent {
    display: block;
  }

  .find-us__title-accent {
    white-space: nowrap;
  }
}

.find-us__list {
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
}

.find-us__row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.find-us__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-primary);
  flex-shrink: 0;
}

.find-us__row-title {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.find-us__row-text {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.find-us__row-links a {
  color: var(--color-primary);
  text-decoration: none;
}

.find-us__row-links a:hover {
  text-decoration: underline;
}

.contact-form-section {
  background: var(--color-bg-hero);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .contact-form-section {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form-section__form {
  padding: 2.5rem 2rem;
}

@media (min-width: 1024px) {
  .contact-form-section__form {
    padding: 3rem;
  }
}

.contact-form-section__title {
  margin-bottom: 0.75rem;
}

.contact-form-section__title .hero__accent {
  color: var(--color-primary);
  font-style: italic;
}

.contact-form-section__text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 380px;
}

.contact-form-section__social {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.contact-form-section__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  background: #fff;
}

.contact-form-section__social a:hover {
  border-color: var(--color-primary);
}

.contact-form-section__social .icon--social {
  display: block;
  flex-shrink: 0;
}

.contact-form-section__media {
  position: relative;
  min-height: 260px;
}

@media (min-width: 1024px) {
  .contact-form-section__media {
    min-height: 100%;
  }
}

.contact-form-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-field {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0 0.875rem;
  background: #fff;
}

.phone-field__flag {
  font-size: 1.125rem;
  flex-shrink: 0;
}

.phone-field input {
  border: none;
  padding: 0.75rem 0;
}

.phone-field input:focus {
  outline: none;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-top: 1.25rem;
  cursor: pointer;
  padding: 0.25rem 0;
}

.consent-row input {
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  accent-color: var(--color-primary);
}

.instagram-section {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
}

.instagram-section__layout {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

@media (min-width: 1024px) {
  .instagram-section__layout {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
  }
}

.instagram-section__heading {
  flex-shrink: 0;
}

.instagram-section__handle {
  color: var(--color-primary);
  font-style: italic;
}

.instagram-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  flex: 1;
}

@media (min-width: 640px) {
  .instagram-section__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.instagram-section__grid img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius);
}

.instagram-post {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-bg-alt);
  transition: transform 0.25s var(--ease-premium), box-shadow 0.25s var(--ease-premium);
}

.instagram-post:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.instagram-post img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease-premium);
  background: var(--color-bg-alt);
}

.instagram-post:hover img {
  transform: scale(1.03);
}

.instagram-post__badge {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-primary);
  box-shadow: var(--shadow);
}

.instagram-post__badge .icon {
  width: 12px;
  height: 12px;
}

.instagram-section__link {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.875rem;
}

/* About page */
.page-hero-block__title--about span {
  display: block;
}

.page-hero-block__title--about .page-hero-block__accent {
  color: var(--color-primary);
}

.circle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(196, 169, 98, 0.16);
  color: var(--color-primary);
  flex-shrink: 0;
}

.mission {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .mission {
    flex-direction: row;
    gap: 3rem;
  }
}

.mission__content {
  max-width: 400px;
}

.mission__eyebrow {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.mission__title {
  margin-bottom: 1.25rem;
}

.mission__text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.mission__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
}

@media (min-width: 768px) {
  .mission__card {
    flex-direction: row;
  }
}

.mission__photo {
  flex: 1.7;
  min-height: 320px;
}

.mission__photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.mission__list {
  flex: 1;
  background: var(--color-primary);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  justify-content: center;
}

.mission__list .circle-icon {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  width: 44px;
  height: 44px;
}

.mission__row {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.mission__row-title {
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.mission__row-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8125rem;
  line-height: 1.55;
}

.about-advantages {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .about-advantages {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .about-advantages {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-advantage-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: box-shadow 0.4s var(--ease-premium), transform 0.4s var(--ease-premium);
}

.about-advantage-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.about-advantage-card .circle-icon {
  margin: 0 auto 1.125rem;
}

.media-carousel {
  position: relative;
}

.media-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(50% - 0.5rem);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  border-radius: var(--radius);
}

@media (min-width: 768px) {
  .media-carousel__track {
    grid-auto-columns: calc(25% - 0.75rem);
  }
}

.media-carousel__track::-webkit-scrollbar {
  display: none;
}

.media-carousel__track img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  scroll-snap-align: start;
}

.media-carousel__nav {
  display: none;
}

@media (max-width: 1199px) {
  .media-carousel {
    position: relative;
    padding-bottom: 3.25rem;
  }

  .media-carousel__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: auto;
    bottom: 0;
    transform: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--shadow);
    border: 1px solid var(--color-border);
    color: var(--color-primary);
    cursor: pointer;
    z-index: 2;
    touch-action: manipulation;
  }

  .media-carousel__nav--prev {
    left: calc(50% - 52px);
  }

  .media-carousel__nav--next {
    right: calc(50% - 52px);
    left: auto;
  }
}

@media (min-width: 1200px) {
  .media-carousel {
    padding-bottom: 0;
  }

  .media-carousel__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--shadow);
    border: none;
    color: var(--color-primary);
    cursor: pointer;
    z-index: 2;
  }

  .media-carousel__nav--prev {
    left: -22px;
  }

  .media-carousel__nav--next {
    right: -22px;
  }
}

.certs-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(50% - 0.5rem);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

@media (min-width: 768px) {
  .certs-carousel__track {
    grid-auto-columns: calc(25% - 0.75rem);
  }
}

.certs-carousel__track::-webkit-scrollbar {
  display: none;
}

.certs-carousel__item {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 1.25rem;
  scroll-snap-align: start;
}

.certs-carousel__open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  border-radius: calc(var(--radius) - 2px);
  transition: opacity 0.2s ease;
}

.certs-carousel__open:hover {
  opacity: 0.92;
}

.certs-carousel__open:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.certs-carousel__open img,
.certs-carousel__item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: contain;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 320;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(20, 14, 16, 0.88);
  backdrop-filter: blur(6px);
  cursor: zoom-out;
}

.image-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 960px);
  max-height: min(92vh, 920px);
}

.image-lightbox__close {
  position: absolute;
  top: -0.25rem;
  right: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-text);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: background 0.2s ease, color 0.2s ease;
}

.image-lightbox__close:hover {
  background: #fff;
  color: var(--color-primary);
}

.image-lightbox__figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  max-height: min(92vh, 920px);
  margin: 0;
}

.image-lightbox__img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: min(82vh, 860px);
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.image-lightbox__caption {
  max-width: 100%;
  margin: 0;
  padding: 0 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
}

body.image-lightbox-open {
  overflow: hidden;
}

.certs-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  cursor: pointer;
}

.certs-carousel__nav:hover {
  border-color: var(--color-primary);
}

/* ==========================================================================
   Shared premium components — used across detail/list pages (level 1-4 pass)
   ========================================================================== */

/* Star rating (CSS-only, no JS) */
.star-rating {
  position: relative;
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 3px;
  flex-shrink: 0;
}

.star-rating__track {
  color: var(--color-border);
}

.star-rating__fill {
  position: absolute;
  inset: 0;
  overflow: hidden;
  width: calc(var(--rating, 0) / 5 * 100%);
  color: var(--color-gold);
  white-space: nowrap;
}

.star-rating--lg {
  font-size: 1.375rem;
  letter-spacing: 4px;
}

/* Empty state (list pages awaiting content) */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3.5rem 1.5rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  color: var(--color-text-muted);
}

.empty-state__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(196, 169, 98, 0.35);
  color: var(--color-gold);
}

.empty-state__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.empty-state__text {
  font-size: 0.875rem;
  line-height: 1.65;
  max-width: 360px;
  margin: 0 auto;
}

.empty-state__cta {
  margin-top: 1.5rem;
}

/* Content heading — small circle-icon accent before an <h2> section title */
.content-heading {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin: 2.75rem 0 1.25rem;
}

.content-heading:first-child {
  margin-top: 0;
}

.content-heading .circle-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.content-heading h2 {
  margin: 0;
}

/* Icon-row — reusable "circle icon + title + text" row (education, causes, steps…) */
.icon-row-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.icon-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.icon-row__title {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--color-text);
}

.icon-row__text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.icon-row-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem 2rem;
}

@media (min-width: 640px) {
  .icon-row-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Quick facts card (doctor/service/catalog sidebar) */
.quick-facts {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1rem;
}

.quick-facts__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  font-size: 0.875rem;
}

.quick-facts__row:not(:first-child) {
  border-top: 1px solid var(--color-border);
}

.quick-facts__label {
  color: var(--color-text-muted);
}

.quick-facts__value {
  font-weight: 600;
  color: var(--color-text);
  text-align: right;
}

.quick-facts__row--stacked {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.375rem;
}

.quick-facts__row--stacked .quick-facts__value {
  text-align: left;
  line-height: 1.45;
}

/* Doctor credentials — card sections instead of bullet lists */
.doctor-credential-block {
  background: var(--color-bg-alt);
  border-radius: 12px;
  padding: 1.5rem 1.625rem;
  margin-bottom: 1.25rem;
}

.doctor-credential-block:last-child {
  margin-bottom: 0;
}

.doctor-credential-block .content-heading {
  margin: 0 0 1.125rem;
}

.doctor-credential-block .content-heading h2 {
  font-size: 1.25rem;
}

.doctor-credential-block__body .prose {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.credential-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(38, 8, 16, 0.04);
}

.credential-item__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.credential-item--timeline {
  gap: 1rem;
}

.credential-item__year {
  flex-shrink: 0;
  min-width: 2.75rem;
  padding-top: 0.125rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-primary);
}

.credential-list--timeline {
  position: relative;
  gap: 0.5rem;
}

.page-doctor-detail .detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page-doctor-detail .detail-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0;
  box-shadow: var(--shadow-md);
}

.page-doctor-detail .detail-photo--fallback {
  margin-bottom: 0;
}

.page-doctor-detail .quick-facts {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(38, 8, 16, 0.04);
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .page-doctor-detail .detail-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .page-doctor-detail .doctor-credential-block {
    padding: 1.75rem 2rem;
  }
}

/* FAQ accordion — native details/summary, no JS */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1.125rem 1.25rem;
  font-weight: 500;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  transition: background var(--transition);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  background: var(--color-bg-alt);
}

.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-right: 1.5px solid var(--color-gold);
  border-bottom: 1.5px solid var(--color-gold);
  transform: rotate(45deg);
  transition: transform 0.3s var(--ease-premium);
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
}

.faq-item__body {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Before/After card (list grid) */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .ba-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

.ba-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.4s var(--ease-premium), transform 0.4s var(--ease-premium);
}

.ba-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.ba-card .before-after-slider__container {
  border-radius: 0;
  aspect-ratio: 4 / 3;
}

.ba-card__body {
  padding: 1.25rem 1.375rem 1.5rem;
}

.ba-card__title {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.375rem;
  color: var(--color-text);
}

.ba-card__meta {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* Review card (reviews page) */
.reviews-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2.5rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  margin-bottom: 2.5rem;
}

.reviews-summary__score {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  color: var(--color-primary);
  line-height: 1;
}

.reviews-summary__meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.reviews-summary__count {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.reviews-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  margin-bottom: 2.5rem;
  padding: 2rem 2.25rem;
  background: linear-gradient(135deg, rgba(89, 4, 22, 0.04) 0%, rgba(200, 161, 142, 0.12) 100%);
  border: 1px solid rgba(89, 4, 22, 0.08);
  border-radius: 16px;
}

.reviews-panel__label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.reviews-panel__rating {
  display: flex;
  align-items: center;
  gap: 0.875rem 1rem;
}

.reviews-panel__score {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--color-primary);
}

.reviews-panel__rating .star-rating {
  display: inline-flex;
  align-items: center;
  align-self: center;
  line-height: 1;
  transform: translateY(0.2em);
}

.reviews-panel__count {
  margin: 0.625rem 0 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.reviews-panel__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.875rem;
}

.yandex-reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.yandex-reviews__frame-wrap {
  width: 100%;
  max-width: 760px;
  height: min(800px, 80vh);
  min-height: 500px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(89, 4, 22, 0.08);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.yandex-reviews__frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.yandex-reviews__note {
  margin: 0;
  text-align: center;
}

.reviews-yandex-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  margin-bottom: 2.5rem;
  padding: 1.75rem 2rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
}

.reviews-yandex-header__badge iframe {
  display: block;
  width: 150px;
  height: 50px;
  border: 0;
}

.reviews-yandex-header__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
  flex: 1 1 16rem;
  justify-content: space-between;
}

.reviews-summary--compact {
  margin-bottom: 0;
  padding: 0;
  background: transparent;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.review-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(89, 4, 22, 0.92), rgba(120, 24, 44, 0.88));
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1rem;
  flex-shrink: 0;
}

.review-card__avatar--photo {
  display: block;
  object-fit: cover;
  background: #f0f0f0;
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px rgba(89, 4, 22, 0.08);
}

.review-card__author {
  display: flex;
  flex-direction: column;
}

.review-card__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
}

.review-card__date {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.review-card__text {
  flex: 1;
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.75;
  margin: 0 0 1rem;
}

.review-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.875rem;
  margin-top: auto;
  padding-top: 0.875rem;
  border-top: 1px solid rgba(89, 4, 22, 0.06);
}

.review-card__source {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(89, 4, 22, 0.55);
}

.review-card__tag {
  font-size: 0.8125rem;
  color: var(--color-primary);
}

/* Article byline (blog detail author) */
.byline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 2rem;
}

.byline__meta {
  display: flex;
  flex-direction: column;
}

.byline__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.byline__date {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* Step list (booking "how it works", service preparation/aftercare) */
.step-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  counter-reset: step;
}

@media (min-width: 768px) {
  .step-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.step-list__item {
  position: relative;
  padding: 1.75rem 1.5rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  counter-increment: step;
}

.step-list__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--color-bg-hero);
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: 1rem;
}

.step-list__num::before {
  content: counter(step);
}

.step-list__title {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.step-list__text {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Booking widget card */
.booking-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.booking-widget__frame {
  display: block;
  border-radius: var(--radius);
}

/* 404 */
.page-404 {
  min-height: 100vh;
  min-height: 100dvh;
  color: var(--color-text);
}

.page-404 .error-404 {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--color-bg-hero);
  padding-top: 0;
  margin-top: 0;
  display: flex;
  flex-direction: column;
}

.page-404 .error-404 > .container {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.page-404 .hero__grid {
  align-items: center;
  justify-content: flex-start;
  min-height: min(72vh, 560px);
  padding: 2rem 0;
}

.page-404 .hero__content {
  max-width: 620px;
}

.page-404 .hero__title,
.page-404 .hero__subtitle,
.page-404 .hero__actions {
  opacity: 1;
  animation: none;
}

.error-404__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--color-bg-hero);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
}

.error-404__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(
    90deg,
    var(--color-bg-hero) 0%,
    rgba(255, 255, 255, 0.85) 30%,
    rgba(255, 255, 255, 0.35) 48%,
    rgba(255, 255, 255, 0) 62%
  );
}

.error-404__code {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 4.5rem);
  line-height: 1;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.error-404__code .hero__accent {
  font-style: italic;
}

@media (max-width: 767px) {
  .error-404__bg {
    background-position: 66% 8%;
  }

  .error-404__scrim {
    background-image: linear-gradient(
      90deg,
      var(--color-bg-hero) 0%,
      rgba(255, 255, 255, 0.97) 18%,
      rgba(255, 255, 255, 0.88) 32%,
      rgba(255, 255, 255, 0.55) 48%,
      rgba(255, 255, 255, 0.15) 62%,
      transparent 78%
    );
  }

  .page-404 .hero__grid {
    min-height: min(58vh, 460px);
    padding: 1rem 0 1.5rem;
  }

  .page-404 .hero__content {
    max-width: 100%;
  }

  .page-404 .hero__title {
    font-size: clamp(1.75rem, 8vw, 2.125rem);
    line-height: 1.16;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
  }

  .page-404 .hero__subtitle {
    font-size: 0.875rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    max-width: none;
  }

  .page-404 .hero__actions {
    align-items: stretch;
    width: 100%;
  }

  .page-404 .hero__actions .btn--lg {
    width: 100%;
    max-width: 100%;
    padding: 14px 20px;
    font-size: 0.875rem;
  }
}

/* Payment methods */
.payment-methods__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .payment-methods__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .payment-methods__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.payment-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  padding: 1.5rem 1.5rem 1.25rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.35s var(--ease-premium), transform 0.35s var(--ease-premium), border-color 0.35s var(--ease-premium);
}

.payment-card--link {
  color: inherit;
  text-decoration: none;
}

.payment-card--link:hover,
.payment-card--link:focus-visible {
  color: inherit;
  transform: translateY(-3px);
  border-color: rgba(89, 4, 22, 0.12);
  box-shadow: var(--shadow-md);
}

.payment-card__content {
  position: relative;
  z-index: 1;
  max-width: 78%;
}

.payment-card__title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--color-text);
  margin-bottom: 0.625rem;
}

.payment-card__text {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.payment-card__media {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin-top: 1.25rem;
  min-height: 72px;
}

.payment-card__media img {
  display: block;
  max-width: 140px;
  max-height: 88px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.payment-card__img--blend {
  mix-blend-mode: multiply;
}

.payment-card__img--card {
  max-width: 118px;
  max-height: 76px;
  border-radius: 4px;
  box-shadow: 0 6px 16px rgba(38, 8, 16, 0.1);
}

.payment-card__img--qr {
  max-width: 88px;
  max-height: 88px;
  padding: 4px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: #fff;
}

@media (max-width: 767px) {
  .payment-card {
    min-height: 200px;
    padding: 1.25rem;
  }

  .payment-card__content {
    max-width: 100%;
    padding-right: 5rem;
  }

  .payment-card__media {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    margin-top: 0;
  }
}

/* Legal list */
.legal-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 720px;
}

.legal-card-list a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.125rem 1.375rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  font-size: 0.9375rem;
  transition: box-shadow 0.3s var(--ease-premium), border-color 0.3s var(--ease-premium);
}

.legal-card-list a:hover {
  box-shadow: var(--shadow);
  border-color: transparent;
  color: var(--color-text);
}

.legal-card-list__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-primary);
  flex-shrink: 0;
}

.legal-card-list__title {
  flex: 1;
}

.legal-card-list .link-arrow__icon {
  color: var(--color-gold);
}

/* ==========================================================================
   Mobile experience — touch-first, premium, site-wide
   ========================================================================== */

@media (max-width: 1023px) {
  :root {
    --header-height: 60px;
  }

  body {
    -webkit-tap-highlight-color: rgba(89, 4, 22, 0.08);
  }

  body.nav-open {
    overflow: hidden;
    touch-action: none;
  }

  .container {
    padding: 0 16px;
  }

  /* Header — compact bar + slide-in drawer */
  .header {
    position: sticky;
    z-index: 300;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(89, 4, 22, 0.04);
    transition: background-color 0.25s var(--ease-premium), box-shadow 0.25s var(--ease-premium), border-color 0.25s var(--ease-premium);
  }

  .header.is-scrolled {
    background: #fff;
    border-bottom-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  }

  .page-home .header,
  body:not(.page-home) .header {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--color-border);
    backdrop-filter: blur(16px);
  }

  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .header.nav-open {
    background: #fff;
  }

  .header__logo {
    min-width: 0;
    flex: 1;
  }

  .header__logo-img {
    height: 38px;
  }

  .header__actions {
    flex-shrink: 0;
    gap: 0.5rem;
  }

  .header__phone,
  .header__cta {
    display: none;
  }

  .header__mobile-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--color-primary);
    background: var(--color-bg-hero);
    border: 1px solid rgba(89, 4, 22, 0.1);
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .header__mobile-call:active {
    background: #fff;
    transform: scale(0.96);
  }

  .header__mobile-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 14px rgba(89, 4, 22, 0.22);
  }

  .header__mobile-book:active {
    background: var(--color-primary-dark);
    transform: scale(0.96);
  }

  .header__burger {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .header__burger-box span {
    background: #fff;
  }

  .header__burger:active {
    transform: scale(0.96);
  }

  .header.nav-open .header__burger {
    background: var(--color-bg-alt);
  }

  .header.nav-open .header__burger-box span {
    background: var(--color-text);
  }

  .header.nav-open .header__burger-box span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .header.nav-open .header__burger-box span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .header.nav-open .header__burger-box span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header__nav--desktop {
    display: none !important;
  }

  /* Mobile drawer — outside header to avoid backdrop-filter clipping */
  .mobile-drawer {
    display: block;
    pointer-events: none;
  }

  .mobile-drawer.is-open {
    pointer-events: auto;
  }

  .mobile-drawer__backdrop {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: rgba(20, 10, 12, 0.52);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease-premium), visibility 0.35s;
  }

  .mobile-drawer.is-open .mobile-drawer__backdrop {
    opacity: 1;
    visibility: visible;
  }

  .mobile-drawer__panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 501;
    display: flex;
    flex-direction: column;
    width: min(88vw, 360px);
    background: #fff;
    box-shadow: -12px 0 48px rgba(38, 8, 16, 0.18);
    transform: translateX(100%);
    transition: transform 0.38s var(--ease-premium);
    overflow: hidden;
  }

  .mobile-drawer.is-open .mobile-drawer__panel {
    transform: translateX(0);
  }

  .mobile-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-shrink: 0;
    min-height: var(--header-height);
    padding: 0 1.25rem;
    padding-top: env(safe-area-inset-top, 0px);
    background: var(--color-primary);
    color: #fff;
  }

  .mobile-drawer__label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .mobile-drawer__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: transparent;
    color: #fff;
    cursor: pointer;
    flex-shrink: 0;
  }

  .mobile-drawer__close:active {
    background: rgba(255, 255, 255, 0.12);
  }

  .mobile-drawer__links {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 0;
  }

  .mobile-drawer__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 54px;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-text);
    border-bottom: 1px solid rgba(89, 4, 22, 0.06);
    transition: background 0.2s ease, color 0.2s ease;
  }

  .mobile-drawer__link:active,
  .mobile-drawer__link:hover {
    background: var(--color-bg-hero);
    color: var(--color-primary);
  }

  .mobile-drawer__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-bg-alt);
    color: var(--color-gold);
    flex-shrink: 0;
  }

  .mobile-drawer__arrow .icon {
    width: 12px;
    height: 12px;
  }

  .mobile-drawer__foot {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-shrink: 0;
    padding: 1.25rem;
    padding-bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
  }

  .mobile-drawer__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    min-height: 52px;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: #fff;
  }

  .mobile-drawer__phone:active {
    color: var(--color-primary);
  }

  .mobile-drawer__foot .btn {
    min-height: 50px;
    font-size: 0.9375rem;
  }

  /* Mobile bottom bar — removed */
  .mobile-bar {
    display: none !important;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .footer__phone {
    justify-self: start;
  }

  .footer__cta {
    width: 100%;
    justify-content: center;
  }

  .footer__director-bar {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 1rem;
    padding: 1.5rem 0 1.75rem;
  }

  .footer__director-info {
    flex: none;
  }

  .footer__cta--director {
    align-self: flex-start;
    width: auto;
  }

  .footer__legal-bar {
    flex-direction: column;
    gap: 1.25rem;
  }

  .footer__company-wrap {
    min-width: 0;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .footer__legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .footer__legal-sep {
    display: none;
  }

  /* Services sidebar — horizontal pills */
  .services-sidebar__nav {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    gap: 0.5rem;
    margin: 0 0 1.25rem;
    padding: 0 0 0.5rem;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    width: 100%;
    max-width: 100%;
  }

  .services-sidebar__nav::-webkit-scrollbar {
    display: none;
  }

  .services-sidebar__link {
    flex-shrink: 0;
    scroll-snap-align: start;
    white-space: nowrap;
    padding: 0.625rem 1rem;
    border: 1px solid var(--color-border);
    background: #fff;
    color: var(--color-text);
    border-radius: 999px;
  }

  .services-sidebar__link--active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    box-shadow: 0 4px 14px rgba(89, 4, 22, 0.18);
    font-weight: 600;
  }

  .services-sidebar__link--active:hover {
    background: var(--color-primary-dark);
    color: #fff;
    border-color: var(--color-primary-dark);
  }

  .services-sidebar__link--active .services-sidebar__icon {
    color: rgba(255, 255, 255, 0.95);
  }

  .services-sidebar__help {
    margin-top: 0.5rem;
  }

  .page-services .services-sidebar__help {
    display: none;
  }

  .page-services .services-sidebar {
    position: sticky;
    top: var(--header-height);
    z-index: 25;
    margin: 0 0 1rem;
    padding: 0.625rem 0 0.875rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(89, 4, 22, 0.08);
    box-shadow: 0 4px 20px rgba(38, 8, 16, 0.06);
    overflow: visible;
    min-width: 0;
  }

  .page-services .services-sidebar__nav {
    margin: 0;
    padding: 0.25rem 0 0.5rem;
    gap: 0.625rem;
    scroll-padding-inline: 0;
  }

  .page-services .services-sidebar__link {
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(89, 4, 22, 0.1);
    box-shadow: 0 1px 4px rgba(38, 8, 16, 0.05);
  }

  .page-services .services-sidebar__link--active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    box-shadow: 0 4px 14px rgba(89, 4, 22, 0.16);
    font-weight: 600;
  }

  .page-services .services-sidebar__link--active:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: #fff;
  }

  .page-services .services-sidebar__icon {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 56px;
    --mobile-bar-height: 60px;
    --hero-height: min(58vh, 480px);
  }

  .page-home {
    --hero-height: calc(100vh - var(--header-height));
  }

  .page-services {
    --hero-height: calc(100vh - var(--header-height));
  }

  .page-service-detail {
    --hero-height: calc(100vh - var(--header-height));
  }

  .page-doctors {
    --hero-height: calc(100vh - var(--header-height));
  }

  .page-doctor-detail {
    --hero-height: calc(100vh - var(--header-height));
  }

  .page-before-after {
    --hero-height: calc(100vh - var(--header-height));
  }

  .page-prices {
    --hero-height: calc(100vh - var(--header-height));
  }

  .page-about {
    --hero-height: calc(100vh - var(--header-height));
  }

  .page-contacts {
    --hero-height: calc(100vh - var(--header-height));
  }

  .page-catalog {
    --hero-height: calc(100vh - var(--header-height));
  }

  .page-catalog-detail {
    --hero-height: calc(100vh - var(--header-height));
  }

  .page-reviews {
    --hero-height: calc(100vh - var(--header-height));
  }

  .page-blog {
    --hero-height: calc(100vh - var(--header-height));
  }

  .page-blog-detail {
    --hero-height: calc(100vh - var(--header-height));
  }

  .btn {
    white-space: normal;
    text-align: center;
  }

  h1 {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  h2,
  .section-header__title {
    font-size: clamp(1.5rem, 5.5vw, 1.875rem);
  }

  .section {
    padding: 3rem 0;
  }

  .before-after-section {
    padding: 3rem 0;
  }

  .before-after-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .section-header {
    margin-bottom: 1.75rem;
  }

  .section__title {
    margin-bottom: 1.75rem;
  }

  .lead {
    font-size: 1rem;
  }

  /* Buttons — full width in hero/CTA */
  .btn {
    touch-action: manipulation;
  }

  .btn--lg {
    padding: 14px 20px;
    width: 100%;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__video-link {
    justify-content: center;
    padding: 0.5rem 0;
  }

  .page-home .hero__video-link {
    justify-content: flex-start;
  }

  .hero__grid {
    padding: 1rem 0 1.25rem;
    min-height: min(52vh, 420px);
  }

  .page-home .home-fold .hero__grid {
    min-height: var(--hero-height);
    padding-bottom: 1.75rem;
  }

  body:not(.page-home) .hero__grid {
    min-height: min(48vh, 380px);
  }

  .hero__subtitle {
    max-width: none;
    margin-bottom: 1.5rem;
  }

  body:not(.page-home) .home-fold {
    min-height: auto;
  }

  /* Stats */
  .stats-bar {
    padding: 1.75rem 0;
  }

  .stats-bar__grid {
    gap: 1.25rem 0.75rem;
  }

  .stats-bar__label {
    font-size: 0.75rem;
    max-width: none;
  }

  .page-home .home-fold .stats-bar__label {
    font-size: 0.625rem;
    line-height: 1.3;
  }

  /* Cards & grids */
  .grid {
    gap: 1rem;
  }

  .service-card {
    aspect-ratio: 5 / 4;
  }

  .service-card__title {
    font-size: 1.125rem;
  }

  .doctor-card {
    flex-direction: column;
    min-height: 0;
  }

  .doctor-card__photo {
    flex: none;
    width: 100%;
    aspect-ratio: 3 / 4;
  }

  .doctor-card__photo img,
  .doctor-card__photo-fallback {
    min-height: 0;
    height: 100%;
    object-fit: cover;
  }

  .doctor-card__photo-fallback {
    aspect-ratio: auto;
    min-height: 100%;
  }

  .doctor-card__info {
    padding: 1rem 1.125rem 1.25rem;
  }

  .doctor-card__name {
    font-size: 1.0625rem;
  }

  /* Home — horizontal card carousels */
  .page-home .services-grid,
  .page-home .doctors-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1rem;
    margin: 0;
    padding: 0 0 0.5rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }

  .page-home .services-grid::-webkit-scrollbar,
  .page-home .doctors-grid::-webkit-scrollbar {
    display: none;
  }

  .page-home .services-grid .service-card {
    flex: 0 0 min(78vw, 300px);
    scroll-snap-align: start;
    aspect-ratio: 4 / 5;
  }

  .page-home .doctors-grid .doctor-card-v {
    flex: 0 0 min(72vw, 260px);
    scroll-snap-align: start;
  }

  .advantage {
    padding: 1.25rem 0.5rem 1.5rem;
  }

  .advantage:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 1.75rem;
  }

  .skin-problem-card {
    min-height: 0;
  }

  .skin-problem-card__body {
    padding: 0.875rem 1rem 1rem;
  }

  /* Before/After */
  .before-after-slider__container {
    aspect-ratio: 4 / 3;
    border-radius: 6px;
  }

  .before-after-slider__handle-icon {
    width: 52px;
    height: 52px;
  }

  .before-after-slider__label {
    font-size: 0.75rem;
    bottom: 12px;
  }

  /* CTA */
  .cta-section {
    height: auto;
  }

  .cta-section__content {
    padding: 2rem 1.5rem;
    text-align: left;
    align-items: flex-start;
  }

  .cta-section__content p {
    max-width: none;
  }

  body:not(.page-home) .hero__content {
    max-width: 100%;
  }

  .hero__title--lines > span {
    overflow-wrap: anywhere;
  }

  .catalog-service-card__title,
  .service-card__title,
  .doctor-card__name,
  .doctor-card-v__name {
    overflow-wrap: anywhere;
  }

  .cta-section__content .btn {
    width: 100%;
    align-self: stretch;
  }

  .cta-section__image img {
    height: auto;
    max-height: 220px;
  }

  /* Detail pages */
  .detail-layout {
    gap: 1.5rem;
  }

  .price-box {
    position: sticky;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
    z-index: 10;
    box-shadow: var(--shadow-lg);
    margin-bottom: 0;
  }

  body.page-booking .price-box {
    position: static;
    box-shadow: none;
  }

  .quick-facts {
    margin-bottom: 0.75rem;
  }

  /* Prices */
  .price-group__badge {
    align-self: flex-start;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: space-between;
  }

  /* Contacts & forms */
  .contact-form-section__form {
    padding: 2rem 1.25rem;
  }

  .contact-form-section__media {
    min-height: 200px;
  }

  .contact-info-bar {
    padding: 1.5rem 1.25rem;
    margin-top: 1.25rem;
  }

  .find-us {
    gap: 1.5rem;
  }

  .instagram-section {
    padding: 2rem 1.25rem;
  }

  .instagram-section__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
  }

  /* Booking */
  .booking-card {
    padding: 1rem;
    margin: 0;
    border-radius: 8px;
  }

  .booking-modal {
    padding: 0;
    align-items: flex-end;
  }

  .booking-modal__dialog {
    width: 100%;
    max-height: 94vh;
    border-radius: 16px 16px 0 0;
  }

  .booking-modal__frame {
    height: 72vh;
    min-height: 420px;
  }

  .step-list__item {
    padding: 1.5rem 1.25rem;
  }

  /* Reviews */
  .reviews-summary {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.25rem;
    margin-bottom: 1.75rem;
  }

  .reviews-summary__score {
    font-size: 2.25rem;
  }

  /* About */
  .mission__photo {
    min-height: 240px;
  }

  .mission__photo img {
    min-height: 240px;
  }

  .mission__list {
    padding: 1.75rem 1.25rem;
    gap: 1.25rem;
  }

  .doctor-stats {
    padding: 1rem 0;
    margin-top: 0;
  }

  /* Doctors page — mobile layout aligned with home / services */
  body.page-doctors .hero {
    background: var(--color-bg-hero);
    min-height: 100vh;
    min-height: 100dvh;
  }

  body.page-doctors .hero__bg {
    background-position: center 22%;
  }

  body.page-doctors .hero__scrim {
    background-image: linear-gradient(
      90deg,
      var(--color-bg-hero) 0%,
      var(--color-bg-hero) 38%,
      rgba(255, 255, 255, 0.96) 48%,
      rgba(255, 255, 255, 0.72) 58%,
      rgba(255, 255, 255, 0.2) 72%,
      transparent 86%
    );
  }

  body.page-doctors .hero > .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
  }

  body.page-doctors .hero__grid {
    flex: 1;
    align-items: center;
    justify-content: flex-start;
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
    padding: 1rem 0 1.75rem;
  }

  body.page-doctors .hero__content {
    position: relative;
    z-index: 2;
    max-width: min(58vw, 240px);
    width: 100%;
  }

  body.page-doctors .breadcrumbs {
    margin-bottom: 0.75rem;
  }

  body.page-doctors .hero__title {
    font-size: clamp(1.625rem, 7.5vw, 2rem);
    margin-bottom: 1rem;
    line-height: 1.16;
    letter-spacing: -0.02em;
    overflow-wrap: anywhere;
  }

  body.page-doctors .hero__title--lines > span {
    display: block;
  }

  body.page-doctors .hero__subtitle {
    font-size: 0.8125rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    max-width: 100%;
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
  }

  body.page-doctors .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
    width: 100%;
    max-width: 100%;
  }

  body.page-doctors .hero__actions .btn--lg {
    width: auto;
    max-width: 100%;
    padding: 13px 18px;
    font-size: 0.8125rem;
  }

  body.page-doctors > .container {
    padding-top: 0;
    position: static;
  }

  body.page-doctors .doctor-stats {
    margin: 0;
    padding: 1rem 0;
    background: #fff;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
    box-shadow: none;
  }

  body.page-doctors .doctor-stats__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem 0.25rem;
    overflow: visible;
    padding-bottom: 0;
  }

  body.page-doctors .doctor-stats__item {
    flex: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.25rem;
    padding: 0 0.125rem;
    min-width: 0;
  }

  body.page-doctors .doctor-stats__item:last-child:nth-child(odd) {
    grid-column: auto;
    justify-self: stretch;
    max-width: none;
  }

  body.page-doctors .doctor-stats__icon {
    margin-top: 0;
  }

  body.page-doctors .doctor-stats__icon svg {
    width: 18px;
    height: 18px;
  }

  body.page-doctors .doctor-stats__value {
    font-size: clamp(1rem, 4vw, 1.25rem);
  }

  body.page-doctors .doctor-stats__label {
    font-size: 0.5rem;
    line-height: 1.25;
    margin-top: 0.125rem;
  }

  body.page-doctors .section {
    padding: 2.5rem 0;
  }

  body.page-doctors .section-header {
    margin-bottom: 1.25rem;
  }

  body.page-doctors .section-header__link {
    display: none;
  }

  body.page-doctors .doctors-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1rem;
    margin: 0;
    padding: 0 0 0.5rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    grid-template-columns: unset;
  }

  body.page-doctors .doctors-grid::-webkit-scrollbar {
    display: none;
  }

  body.page-doctors .doctors-grid .doctor-card-v {
    flex: 0 0 min(78vw, 300px);
    scroll-snap-align: start;
    overflow: hidden;
    border-radius: 2px;
  }

  body.page-doctors .doctor-card-v__photo-fallback {
    min-height: 220px;
  }

  body.page-doctors .doctor-card-v__info {
    padding: 1rem 1.125rem 1.25rem;
  }

  body.page-doctors .doctor-card-v__name {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }

  body.page-doctors .doctor-card-v__position {
    font-size: 0.8125rem;
    line-height: 1.45;
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
  }

  body.page-doctors .doctor-card-v__experience {
    display: block;
    font-size: 0.75rem;
    margin-top: 0.25rem;
  }

  body.page-doctors .doctor-card-v__link {
    margin-top: 0.75rem;
    font-size: 0.75rem;
  }

  body.page-doctors .doctor-advantages {
    gap: 0.75rem;
  }

  body.page-doctors .doctor-advantage-card {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 1rem;
    row-gap: 0.35rem;
    padding: 1.125rem 1.125rem;
    text-align: left;
    align-items: start;
  }

  body.page-doctors .doctor-advantage-card .advantage__icon {
    grid-row: 1 / span 2;
    margin: 0;
    width: 44px;
    height: 44px;
    align-self: start;
    justify-content: flex-start;
  }

  body.page-doctors .doctor-advantage-card .advantage__icon svg {
    width: 32px;
    height: 32px;
  }

  body.page-doctors .doctor-advantage-card .advantage__title {
    grid-column: 2;
    font-size: 1rem;
    margin-bottom: 0;
  }

  body.page-doctors .doctor-advantage-card .advantage__text {
    grid-column: 2;
    font-size: 0.875rem;
    line-height: 1.6;
  }

  body.page-doctors .section--alt {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  body.page-doctors .section--alt .section__title {
    margin-bottom: 1.5rem;
    font-size: clamp(1.5rem, 5.5vw, 1.875rem);
    text-align: left;
  }

  body.page-doctors .cta-section__content {
    text-align: left;
    align-items: flex-start;
    padding: 2rem 1.25rem;
  }

  body.page-doctors .cta-section__content h2 {
    font-size: clamp(1.375rem, 5.5vw, 1.75rem);
    max-width: none;
  }

  body.page-doctors .cta-section__content p {
    font-size: 0.875rem;
    line-height: 1.6;
  }

  body.page-doctors .cta-section .hero__actions {
    align-items: flex-start;
    width: 100%;
  }

  body.page-doctors .cta-section__content .btn {
    width: auto;
    align-self: flex-start;
  }

  body.page-doctors .cta-section__video-link {
    justify-content: flex-start;
    font-size: 0.8125rem;
  }

  body.page-doctors .cta-section__image img {
    min-height: 180px;
    max-height: 220px;
  }

  /* Catalog toolbar */
  .services-catalog__toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .catalog-service-card__body {
    padding: 1rem;
  }

  .catalog-service-card__footer {
    flex-wrap: wrap;
  }

  /* Services catalog — mobile layout aligned with home */
  body.page-services .hero {
    background: var(--color-bg-hero);
    min-height: 100vh;
    min-height: 100dvh;
  }

  body.page-services .hero__bg {
    background-position: 85% 22%;
  }

  body.page-services--apparatnaya-kosmetologiya .hero__bg{
    background-position: 38% 22%;
  }

  body.page-services--lazernaya-epilyatsiya .hero__bg{
    background-position: 55% 22%;
  }

  body.page-services--uhodovaya-kosmetologiya .hero__bg{
    background-position: 62% 22%;
  }

  body.page-services--inyektsionnaya-kosmetologiya .hero__bg{
    background-position: 54% 22%;
  }

  body.page-services .hero__scrim {
    background-image: linear-gradient(
      90deg,
      var(--color-bg-hero) 0%,
      var(--color-bg-hero) 38%,
      rgba(255, 255, 255, 0.96) 48%,
      rgba(255, 255, 255, 0.72) 58%,
      rgba(255, 255, 255, 0.2) 72%,
      transparent 86%
    );
  }

  body.page-services .hero > .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
  }

  body.page-services .hero__grid {
    flex: 1;
    align-items: center;
    justify-content: flex-start;
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
    padding: 1rem 0 1.75rem;
  }

  body.page-services .hero__content {
    position: relative;
    z-index: 2;
    max-width: min(58vw, 240px);
    width: 100%;
  }

  body.page-services .breadcrumbs {
    margin-bottom: 0.75rem;
  }

  body.page-services .hero__title {
    font-size: clamp(1.625rem, 7.5vw, 2rem);
    margin-bottom: 1rem;
    line-height: 1.16;
    letter-spacing: -0.02em;
    overflow-wrap: anywhere;
  }

  body.page-services .hero__title--services > span {
    display: block;
  }

  body.page-services .hero__title--services .hero__accent {
    display: inline;
  }

  body.page-services .hero__subtitle {
    font-size: 0.8125rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    max-width: 100%;
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
  }

  body.page-services .hero__actions {
    align-items: flex-start;
    gap: 1.125rem;
    width: 100%;
    max-width: 100%;
  }

  body.page-services .hero__actions .btn--lg {
    width: auto;
    max-width: 100%;
    padding: 13px 18px;
    font-size: 0.8125rem;
  }

  body.page-services .hero__secondary-link {
    display: inline-flex;
    justify-content: flex-start;
    font-size: 0.8125rem;
  }

  body.page-services .services-catalog {
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
  }

  body.page-services .services-catalog__layout {
    gap: 0;
    min-width: 0;
  }

  body.page-services .services-sidebar {
    margin-bottom: 0.25rem;
    padding-top: 0.625rem;
    padding-bottom: 0.75rem;
  }

  body.page-services .services-sidebar__nav {
    gap: 0.5rem;
    padding-bottom: 0.75rem;
  }

  body.page-services .services-catalog__toolbar {
    margin-bottom: 1rem;
    padding-top: 0.5rem;
  }

  body.page-services .services-catalog__count {
    font-size: 0.8125rem;
  }

  body.page-services .services-catalog__grid {
    gap: 1rem;
  }

  body.page-services .catalog-service-card {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    border-radius: 2px;
    overflow: hidden;
  }

  body.page-services .catalog-service-card__image {
    width: 100%;
    min-width: 0;
    max-width: none;
    aspect-ratio: 4 / 3;
  }

  body.page-services .catalog-service-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  body.page-services .catalog-service-card__body {
    padding: 1rem 1.125rem 1.25rem;
    min-width: 0;
  }

  body.page-services .catalog-service-card__category {
    margin-bottom: 0.35rem;
    font-size: 0.6875rem;
  }

  body.page-services .catalog-service-card__title {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }

  body.page-services .catalog-service-card__desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.8125rem;
    line-height: 1.55;
    margin-bottom: 0.75rem;
  }

  body.page-services .catalog-service-card__footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 0.75rem;
    margin-top: auto;
    border-top: 1px solid rgba(89, 4, 22, 0.08);
  }

  body.page-services .catalog-service-card__price {
    font-size: 1rem;
  }

  body.page-services .catalog-service-card__link {
    font-size: 0.75rem;
    flex-shrink: 0;
  }

  body.page-services .cta-section--services .cta-section__content {
    padding: 2rem 1.25rem;
  }

  body.page-services .cta-section--services .cta-section__content h2 {
    font-size: clamp(1.375rem, 5.5vw, 1.75rem);
  }

  body.page-services .cta-section--services .cta-section__image img {
    min-height: 180px;
    max-height: 220px;
  }


  /* Service detail — mobile layout aligned with services catalog / home */
  body.page-service-detail .hero {
    background: var(--color-bg-hero);
    min-height: 100vh;
    min-height: 100dvh;
  }

  body.page-service-detail .hero__bg {
    background-position: 85% 22%;
  }

  body.page-service-detail .hero__scrim {
    background-image: linear-gradient(
      90deg,
      var(--color-bg-hero) 0%,
      var(--color-bg-hero) 38%,
      rgba(255, 255, 255, 0.96) 48%,
      rgba(255, 255, 255, 0.72) 58%,
      rgba(255, 255, 255, 0.2) 72%,
      transparent 86%
    );
  }

  body.page-service-detail .hero > .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
  }

  body.page-service-detail .hero__grid {
    flex: 1;
    align-items: center;
    justify-content: flex-start;
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
    padding: 1rem 0 1.75rem;
  }

  body.page-service-detail .hero__content {
    position: relative;
    z-index: 2;
    max-width: min(58vw, 240px);
    width: 100%;
  }

  body.page-service-detail .hero__title,
  body.page-service-detail .hero__subtitle,
  body.page-service-detail .hero__actions {
    max-width: 100%;
  }

  body.page-service-detail .hero__content .breadcrumbs {
    max-width: 100%;
    width: 100%;
    overflow: visible;
  }

  body.page-service-detail .breadcrumbs {
    margin-bottom: 0.75rem;
  }

  body.page-service-detail .service-detail__eyebrow {
    margin-bottom: 0.5rem;
    font-size: 0.625rem;
    line-height: 1.35;
  }

  body.page-service-detail .hero__title {
    font-size: clamp(1.375rem, 6.5vw, 1.75rem);
    margin-bottom: 1rem;
    line-height: 1.16;
    letter-spacing: -0.02em;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: auto;
  }

  body.page-service-detail .hero__subtitle {
    font-size: 0.8125rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    max-width: 100%;
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
  }

  body.page-service-detail .hero__actions {
    align-items: flex-start;
    gap: 1.125rem;
    width: 100%;
    max-width: 100%;
  }

  body.page-service-detail .hero__actions .btn--lg {
    width: auto;
    max-width: 100%;
    padding: 13px 18px;
    font-size: 0.8125rem;
  }

  body.page-service-detail .service-detail__from {
    font-size: 1.0625rem;
    line-height: 1.2;
  }

  body.page-service-detail .hero__secondary-link {
    display: inline-flex;
    justify-content: flex-start;
    font-size: 0.8125rem;
  }

  body.page-service-detail .section {
    padding: 2.75rem 0 3.5rem;
  }

  body.page-service-detail .service-detail__content .content-heading {
    margin: 2.5rem 0 1.25rem;
  }

  body.page-service-detail .service-detail__block {
    padding-bottom: 2.25rem;
  }

  body.page-service-detail .service-detail__intro {
    grid-template-columns: 1fr;
  }

  body.page-service-detail .service-detail__split {
    grid-template-columns: 1fr;
  }

  body.page-service-detail .service-detail__steps,
  body.page-service-detail .service-detail__prose ul,
  body.page-service-detail .service-detail__prose ol {
    grid-template-columns: 1fr;
  }

  body.page-service-detail .service-detail__main {
    min-width: 0;
  }

  body.page-service-detail .service-detail__about {
    margin-bottom: 1.75rem;
    font-size: 0.9375rem;
    line-height: 1.75;
  }

  body.page-service-detail .media-carousel {
    margin-bottom: 1.75rem;
    padding-bottom: 0;
  }

  body.page-service-detail .media-carousel__nav {
    display: none;
  }

  body.page-service-detail .media-carousel__track {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.75rem;
    margin: 0;
    padding: 0 0 0.5rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }

  body.page-service-detail .media-carousel__track::-webkit-scrollbar {
    display: none;
  }

  body.page-service-detail .media-carousel__track img {
    flex: 0 0 min(78vw, 280px);
    width: auto;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 2px;
    scroll-snap-align: start;
  }

  body.page-service-detail .service-detail__prices {
    margin-bottom: 1.75rem;
  }

  body.page-service-detail .price-group {
    border-radius: 2px;
    overflow: hidden;
  }

  body.page-service-detail .price-group__title {
    font-size: 1.25rem;
  }

  body.page-service-detail .content-heading {
    margin: 1.5rem 0 0.875rem;
    gap: 0.75rem;
  }

  body.page-service-detail .content-heading h2 {
    font-size: clamp(1.375rem, 5.5vw, 1.625rem);
    line-height: 1.25;
  }

  body.page-service-detail .prose {
    font-size: 0.9375rem;
    line-height: 1.75;
  }

  body.page-service-detail .faq-list {
    gap: 0.625rem;
  }

  body.page-service-detail .service-detail__main .grid--3 {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1rem;
    margin: 0;
    padding: 0 0 0.5rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }

  body.page-service-detail .service-detail__main .grid--3::-webkit-scrollbar {
    display: none;
  }

  body.page-service-detail .service-detail__main .grid--3 .doctor-card {
    flex: 0 0 min(78vw, 300px);
    scroll-snap-align: start;
    flex-direction: column;
  }

  body.page-service-detail .reviews-grid {
    gap: 0.75rem;
  }

  /* Doctor detail — mobile layout aligned with home / doctors list */
  body.page-doctor-detail .hero {
    background: var(--color-bg-hero);
    min-height: 100vh;
    min-height: 100dvh;
  }

  body.page-doctor-detail .hero__bg {
    background-position: center 22%;
  }

  body.page-doctor-detail .hero__scrim {
    background-image: linear-gradient(
      90deg,
      var(--color-bg-hero) 0%,
      var(--color-bg-hero) 38%,
      rgba(255, 255, 255, 0.96) 48%,
      rgba(255, 255, 255, 0.72) 58%,
      rgba(255, 255, 255, 0.2) 72%,
      transparent 86%
    );
  }

  body.page-doctor-detail .hero > .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
  }

  body.page-doctor-detail .hero__grid {
    flex: 1;
    align-items: center;
    justify-content: flex-start;
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
    padding: 1rem 0 1.75rem;
  }

  body.page-doctor-detail .hero__content {
    position: relative;
    z-index: 2;
    max-width: min(58vw, 240px);
    width: 100%;
  }

  body.page-doctor-detail .hero__title,
  body.page-doctor-detail .hero__subtitle,
  body.page-doctor-detail .hero__actions {
    max-width: 100%;
  }

  body.page-doctor-detail .hero__content .breadcrumbs {
    max-width: 100%;
    width: 100%;
    overflow: visible;
  }

  body.page-doctor-detail .breadcrumbs {
    margin-bottom: 0.75rem;
  }

  body.page-doctor-detail .hero__title {
    font-size: clamp(1.5rem, 7vw, 1.875rem);
    margin-bottom: 1rem;
    line-height: 1.16;
    letter-spacing: -0.02em;
    overflow-wrap: anywhere;
  }

  body.page-doctor-detail .hero__subtitle {
    font-size: 0.8125rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    max-width: 100%;
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
  }

  body.page-doctor-detail .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
    width: 100%;
    max-width: 100%;
  }

  body.page-doctor-detail .hero__actions .btn--lg {
    width: auto;
    max-width: 100%;
    padding: 13px 18px;
    font-size: 0.8125rem;
  }

  body.page-doctor-detail .section {
    padding: 2rem 0 3rem;
  }

  body.page-doctor-detail .detail-layout {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
  }

  body.page-doctor-detail .detail-sidebar {
    position: static;
    order: -1;
  }

  body.page-doctor-detail .detail-photo {
    display: block;
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 0 auto 1.25rem;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
  }

  body.page-doctor-detail .detail-photo--fallback {
    width: 100%;
    max-width: 280px;
    margin: 0 auto 1.25rem;
  }

  body.page-doctor-detail .quick-facts {
    max-width: 280px;
    margin: 0 auto 1rem;
    padding: 1rem 1.125rem;
    border: 1px solid rgba(89, 4, 22, 0.08);
    background: #fff;
  }

  body.page-doctor-detail .quick-facts__row {
    padding: 0.625rem 0;
    font-size: 0.8125rem;
  }

  body.page-doctor-detail .doctor-credential-block {
    padding: 1.25rem 1.125rem;
    border-radius: 10px;
  }

  body.page-doctor-detail .doctor-credential-block .content-heading {
    margin-bottom: 1rem;
  }

  body.page-doctor-detail .doctor-credential-block .content-heading h2 {
    font-size: 1.0625rem;
  }

  body.page-doctor-detail .credential-item {
    padding: 0.75rem 0.875rem;
  }

  body.page-doctor-detail .credential-item__text {
    font-size: 0.8125rem;
    line-height: 1.6;
  }

  body.page-doctor-detail .credential-item__year {
    min-width: 2.5rem;
    font-size: 0.75rem;
  }

  body.page-doctor-detail .detail-sidebar > .btn--block {
    display: none;
  }

  body.page-doctor-detail .detail-content {
    min-width: 0;
  }

  body.page-doctor-detail .detail-content > .content-heading {
    margin: 1.75rem 0 0.875rem;
  }

  body.page-doctor-detail .content-heading {
    margin: 1.75rem 0 0.875rem;
    gap: 0.75rem;
  }

  body.page-doctor-detail .content-heading h2 {
    font-size: 1.125rem;
  }

  body.page-doctor-detail .prose {
    font-size: 0.9375rem;
    line-height: 1.75;
  }

  body.page-doctor-detail .detail-content .grid--3 {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1rem;
    margin: 0;
    padding: 0 0 0.5rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    grid-template-columns: unset;
  }

  body.page-doctor-detail .detail-content .grid--3::-webkit-scrollbar {
    display: none;
  }

  body.page-doctor-detail .detail-content .grid--3 .service-card {
    flex: 0 0 min(78vw, 300px);
    scroll-snap-align: start;
    aspect-ratio: 4 / 5;
  }

  body.page-doctor-detail .reviews-grid {
    gap: 0.75rem;
  }

  /* Before/After — mobile hero aligned with site pages */
  body.page-before-after .hero {
    background: var(--color-bg-hero);
    min-height: 100vh;
    min-height: 100dvh;
  }

  body.page-before-after .hero__bg {
    background-position: center 22%;
  }

  body.page-before-after .hero__scrim {
    background-image: linear-gradient(
      90deg,
      var(--color-bg-hero) 0%,
      var(--color-bg-hero) 38%,
      rgba(255, 255, 255, 0.96) 48%,
      rgba(255, 255, 255, 0.72) 58%,
      rgba(255, 255, 255, 0.2) 72%,
      transparent 86%
    );
  }

  body.page-before-after .hero > .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
  }

  body.page-before-after .hero__grid {
    flex: 1;
    align-items: center;
    justify-content: flex-start;
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
    padding: 1rem 0 1.75rem;
  }

  body.page-before-after .hero__content {
    position: relative;
    z-index: 2;
    max-width: min(58vw, 240px);
    width: 100%;
  }

  body.page-before-after .breadcrumbs {
    margin-bottom: 0.75rem;
  }

  body.page-before-after .hero__title {
    font-size: clamp(1.625rem, 7.5vw, 2rem);
    margin-bottom: 1rem;
    line-height: 1.16;
    letter-spacing: -0.02em;
    overflow-wrap: anywhere;
  }

  body.page-before-after .hero__subtitle {
    font-size: 0.8125rem;
    line-height: 1.65;
    margin-bottom: 0;
    max-width: 100%;
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
  }

  /* Promotions — mobile */
  body.page-promotions .promo-section.section {
    padding: 2rem 0 3rem;
  }

  body.page-promotions .promo-section__title {
    margin-bottom: 1.5rem;
    font-size: clamp(1.5rem, 6vw, 1.875rem);
  }

  body.page-promotions .promo-grid {
    gap: 1.25rem;
  }

  body.page-promotions .promo-tile__visual {
    aspect-ratio: 16 / 10;
  }

  body.page-promotions .promo-tile__title {
    font-size: 1.125rem;
  }

  body.page-promotions .promo-tile__body {
    padding: 1rem 1rem 1.15rem;
  }

  body.page-promotions .promo-tile__offer {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }

  body.page-promotions .promo-tile__offer-prices {
    flex-direction: row;
    align-items: baseline;
    gap: 0.5rem;
  }

  /* About — mobile layout aligned with site pages */
  body.page-about .hero {
    background: var(--color-bg-hero);
    min-height: 100vh;
    min-height: 100dvh;
  }

  body.page-about .hero__bg {
    background-position: 89% 22%;
  }

  body.page-about .hero__scrim {
    background-image: linear-gradient(
      90deg,
      var(--color-bg-hero) 0%,
      var(--color-bg-hero) 38%,
      rgba(255, 255, 255, 0.96) 48%,
      rgba(255, 255, 255, 0.72) 58%,
      rgba(255, 255, 255, 0.2) 72%,
      transparent 86%
    );
  }

  body.page-about .hero > .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
  }

  body.page-about .hero__grid {
    flex: 1;
    align-items: center;
    justify-content: flex-start;
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
    padding: 1rem 0 1.75rem;
  }

  body.page-about .hero__content {
    position: relative;
    z-index: 2;
    max-width: min(58vw, 240px);
    width: 100%;
    overflow: visible;
  }

  body.page-about .breadcrumbs {
    margin-bottom: 0.75rem;
  }

  body.page-about .hero__title {
    font-size: clamp(1.625rem, 7.5vw, 2rem);
    margin-bottom: 1rem;
    line-height: 1.16;
    letter-spacing: -0.02em;
    overflow-wrap: normal;
    word-break: normal;
  }

  body.page-about .hero__title--lines > span {
    display: block;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  body.page-about .hero__title--lines .hero__accent {
    white-space: nowrap;
  }

  body.page-about .hero__subtitle {
    font-size: 0.8125rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    max-width: 100%;
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
  }

  body.page-about .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
    width: 100%;
    max-width: 100%;
  }

  body.page-about .hero__actions .btn--lg {
    width: auto;
    max-width: 100%;
    padding: 13px 18px;
    font-size: 0.8125rem;
  }

  body.page-about .hero__video-link {
    justify-content: flex-start;
    font-size: 0.8125rem;
  }

  body.page-about .stats-bar {
    margin: 0;
    padding: 1rem 0;
    background: #fff;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    box-shadow: none;
  }

  body.page-about .stats-bar__grid--5 {
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem 0.5rem;
  }

  body.page-about .stats-bar__item:nth-child(-n+3) {
    grid-column: span 2;
  }

  body.page-about .stats-bar__item:nth-child(4) {
    grid-column: 2 / span 2;
  }

  body.page-about .stats-bar__item:nth-child(5) {
    grid-column: 4 / span 2;
  }

  body.page-about .stats-bar__item {
    padding: 0 0.25rem;
    min-width: 0;
  }

  body.page-about .stats-bar__value {
    font-size: clamp(1.125rem, 4.5vw, 1.375rem);
  }

  body.page-about .stats-bar__label {
    font-size: 0.625rem;
    line-height: 1.3;
    margin-top: 0.25rem;
  }

  body.page-about .section {
    padding: 2.5rem 0;
  }

  body.page-about .mission {
    gap: 1.5rem;
  }

  body.page-about .mission__content {
    max-width: none;
  }

  body.page-about .mission__title {
    font-size: clamp(1.375rem, 5.5vw, 1.75rem);
    line-height: 1.25;
  }

  body.page-about .mission__text {
    font-size: 0.875rem;
    line-height: 1.65;
  }

  body.page-about .mission__photo {
    min-height: 200px;
  }

  body.page-about .mission__photo img {
    min-height: 200px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  body.page-about .mission__list {
    padding: 1.5rem 1.125rem;
    gap: 1.125rem;
  }

  body.page-about .mission__row {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 0.875rem;
    row-gap: 0.25rem;
    align-items: start;
  }

  body.page-about .mission__row .circle-icon {
    grid-row: 1 / span 2;
    width: 40px;
    height: 40px;
  }

  body.page-about .mission__row-title {
    font-size: 0.875rem;
  }

  body.page-about .mission__row-text {
    font-size: 0.75rem;
    line-height: 1.5;
  }

  body.page-about .section--alt {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  body.page-about .section--alt .section__title {
    margin-bottom: 1.5rem;
    font-size: clamp(1.5rem, 5.5vw, 1.875rem);
    text-align: left;
  }

  body.page-about .about-advantage-card {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 1rem;
    row-gap: 0.35rem;
    padding: 1.125rem;
    text-align: left;
    align-items: start;
  }

  body.page-about .about-advantage-card .circle-icon {
    grid-row: 1 / span 2;
    margin: 0;
    width: 44px;
    height: 44px;
    align-self: start;
  }

  body.page-about .about-advantage-card .advantage__title {
    grid-column: 2;
    font-size: 1rem;
    margin-bottom: 0;
  }

  body.page-about .about-advantage-card .advantage__text {
    grid-column: 2;
    font-size: 0.875rem;
    line-height: 1.6;
  }

  body.page-about .media-carousel {
    margin-bottom: 0;
    padding-bottom: 0.5rem;
  }

  body.page-about .media-carousel__nav {
    display: none;
  }

  body.page-about .media-carousel__track {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.75rem;
    margin: 0;
    padding: 0 0 0.5rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    grid-auto-flow: unset;
    grid-auto-columns: unset;
  }

  body.page-about .media-carousel__track::-webkit-scrollbar {
    display: none;
  }

  body.page-about .media-carousel__track img {
    flex: 0 0 min(78vw, 280px);
    width: auto;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 2px;
    scroll-snap-align: start;
  }

  body.page-about .cta-section__content {
    text-align: left;
    align-items: flex-start;
    padding: 2rem 1.25rem;
  }

  body.page-about .cta-section__content h2 {
    font-size: clamp(1.375rem, 5.5vw, 1.75rem);
    max-width: none;
  }

  body.page-about .cta-section__content p {
    font-size: 0.875rem;
    line-height: 1.6;
  }

  body.page-about .cta-section .hero__actions {
    align-items: flex-start;
    width: 100%;
  }

  body.page-about .cta-section__content .btn {
    width: auto;
    align-self: flex-start;
  }

  body.page-about .cta-section__video-link {
    justify-content: flex-start;
    font-size: 0.8125rem;
  }

  body.page-about .cta-section__image img {
    min-height: 180px;
    max-height: 220px;
  }

  body.page-about .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  body.page-about .certs-carousel__track {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.75rem;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }

  body.page-about .certs-carousel__item {
    flex: 0 0 min(65vw, 240px);
    padding: 1rem;
    scroll-snap-align: start;
  }

  /* Contacts — mobile layout aligned with site pages */
  body.page-contacts .hero {
    background: var(--color-bg-hero);
    min-height: 100vh;
    min-height: 100dvh;
  }

  body.page-contacts .hero__bg {
    background-position: 87% 22%;
  }

  body.page-contacts .hero__scrim {
    background-image: linear-gradient(
      90deg,
      var(--color-bg-hero) 0%,
      var(--color-bg-hero) 38%,
      rgba(255, 255, 255, 0.96) 48%,
      rgba(255, 255, 255, 0.72) 58%,
      rgba(255, 255, 255, 0.2) 72%,
      transparent 86%
    );
  }

  body.page-contacts .hero > .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
  }

  body.page-contacts .hero__grid {
    flex: 1;
    align-items: center;
    justify-content: flex-start;
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
    padding: 1rem 0 1.75rem;
  }

  body.page-contacts .hero__content {
    position: relative;
    z-index: 2;
    max-width: min(58vw, 240px);
    width: 100%;
    overflow: visible;
  }

  body.page-contacts .breadcrumbs {
    margin-bottom: 0.75rem;
  }

  body.page-contacts .hero__title {
    font-size: clamp(1.5rem, 7vw, 1.875rem);
    margin-bottom: 1rem;
    line-height: 1.16;
    letter-spacing: -0.02em;
    overflow-wrap: normal;
    word-break: normal;
  }

  body.page-contacts .hero__title--lines > span {
    display: block;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  body.page-contacts .hero__subtitle {
    font-size: 0.8125rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    max-width: 100%;
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
  }

  body.page-contacts .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
    width: 100%;
    max-width: 100%;
  }

  body.page-contacts .hero__actions .btn--lg {
    width: auto;
    max-width: 100%;
    padding: 13px 18px;
    font-size: 0.8125rem;
  }

  body.page-contacts > .container {
    position: relative;
    z-index: 3;
    margin-top: -1.75rem;
    padding-bottom: 0;
  }

  body.page-contacts .contact-info-bar {
    margin-top: 0;
    padding: 0.25rem 1.125rem;
    border-radius: 2px;
    box-shadow: var(--shadow-md);
  }

  body.page-contacts .contact-info-bar__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  body.page-contacts .contact-info-bar__item {
    padding: 1.125rem 0;
    gap: 0.875rem;
    align-items: flex-start;
  }

  body.page-contacts .contact-info-bar__item:not(:last-child) {
    border-bottom: 1px solid var(--color-border);
  }

  body.page-contacts .contact-info-bar__title {
    font-size: 0.875rem;
    margin-bottom: 0.375rem;
  }

  body.page-contacts .contact-info-bar__text {
    font-size: 0.8125rem;
    line-height: 1.55;
  }

  body.page-contacts .contact-info-bar__text--stacked a,
  body.page-contacts .contact-info-bar__text a[href^="tel:"] {
    white-space: nowrap;
  }

  body.page-contacts .section {
    padding: 2.5rem 0;
  }

  body.page-contacts .find-us {
    gap: 1.5rem;
  }

  body.page-contacts .find-us__map {
    min-height: 220px;
    border-radius: 2px;
  }

  body.page-contacts .yandex-map--widget {
    min-height: 220px;
    aspect-ratio: 4 / 3;
    border-radius: 2px;
  }

  body.page-contacts .find-us__title {
    font-size: clamp(1.375rem, 5.5vw, 1.75rem);
    line-height: 1.25;
    margin-bottom: 1.25rem;
    text-align: left;
  }

  body.page-contacts .find-us__list {
    gap: 1rem;
  }

  body.page-contacts .find-us__row {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 0.875rem;
    row-gap: 0.25rem;
    align-items: start;
  }

  body.page-contacts .find-us__row .find-us__icon,
  body.page-contacts .find-us__row > svg,
  body.page-contacts .find-us__row > [class*="icon"] {
    grid-row: 1 / span 2;
  }

  body.page-contacts .find-us__icon {
    width: 36px;
    height: 36px;
  }

  body.page-contacts .find-us__row-title {
    font-size: 0.875rem;
  }

  body.page-contacts .find-us__row-text {
    font-size: 0.8125rem;
    line-height: 1.55;
  }

  body.page-contacts .contact-form-section {
    border-radius: 2px;
  }

  body.page-contacts .contact-form-section__form {
    padding: 1.75rem 1.125rem;
  }

  body.page-contacts .contact-form-section__title {
    font-size: clamp(1.375rem, 5.5vw, 1.75rem);
    line-height: 1.25;
    text-align: left;
  }

  body.page-contacts .contact-form-section__text {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  body.page-contacts .contact-form-section__social {
    margin-top: 1.5rem;
    margin-bottom: 0;
  }

  body.page-contacts .contact-form-section__media {
    min-height: 200px;
    max-height: 240px;
  }

  body.page-contacts .contact-form-section__media img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  body.page-contacts .instagram-section {
    padding: 1.75rem 1.125rem;
    border-radius: 2px;
  }

  body.page-contacts .instagram-section__layout {
    gap: 1.25rem;
  }

  body.page-contacts .instagram-section__heading .find-us__title {
    font-size: clamp(1.375rem, 5.5vw, 1.75rem);
    line-height: 1.25;
    text-align: left;
    margin-bottom: 0;
  }

  body.page-contacts .instagram-section__grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    grid-template-columns: unset;
  }

  body.page-contacts .instagram-section__grid::-webkit-scrollbar {
    display: none;
  }

  body.page-contacts .instagram-section__grid .instagram-post,
  body.page-contacts .instagram-section__grid > img {
    flex: 0 0 min(42vw, 160px);
    width: min(42vw, 160px);
    scroll-snap-align: start;
    border-radius: 2px;
  }

  body.page-contacts .instagram-section__link {
    justify-content: flex-start;
    margin-top: 1.25rem;
    font-size: 0.8125rem;
  }

  /* Catalog (equipment, products, cosmeceutics) — mobile layout */
  body.page-catalog .hero {
    background: var(--color-bg-hero);
    min-height: 100vh;
    min-height: 100dvh;
  }

  body.page-catalog .hero__bg {
    background-position: center 22%;
  }

  body.page-catalog--oborudovanie .hero__bg {
    background-position: 88% 30%;
  }

  body.page-catalog .hero__scrim {
    background-image: linear-gradient(
      90deg,
      var(--color-bg-hero) 0%,
      var(--color-bg-hero) 38%,
      rgba(255, 255, 255, 0.96) 48%,
      rgba(255, 255, 255, 0.72) 58%,
      rgba(255, 255, 255, 0.2) 72%,
      transparent 86%
    );
  }

  body.page-catalog .hero > .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
  }

  body.page-catalog .hero__grid {
    flex: 1;
    align-items: center;
    justify-content: flex-start;
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
    padding: 1rem 0 1.75rem;
  }

  body.page-catalog .hero__content {
    position: relative;
    z-index: 2;
    max-width: min(58vw, 240px);
    width: 100%;
    overflow: visible;
  }

  body.page-catalog .breadcrumbs {
    margin-bottom: 0.75rem;
  }

  body.page-catalog .hero__title {
    font-size: clamp(1.5rem, 7vw, 1.875rem);
    margin-bottom: 1rem;
    line-height: 1.16;
    letter-spacing: -0.02em;
    overflow-wrap: normal;
    word-break: normal;
  }

  body.page-catalog .hero__title--lines > span {
    display: block;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  body.page-catalog .hero__title--lines .hero__accent {
    white-space: nowrap;
  }

  body.page-catalog .hero__subtitle {
    font-size: 0.8125rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    max-width: 100%;
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
  }

  body.page-catalog .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
    width: 100%;
    max-width: 100%;
  }

  body.page-catalog .hero__actions .btn--lg {
    width: auto;
    max-width: 100%;
    padding: 13px 18px;
    font-size: 0.8125rem;
  }

  body.page-catalog .services-catalog {
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
  }

  body.page-catalog .services-catalog__count {
    font-size: 0.8125rem;
    margin-bottom: 1rem;
  }

  body.page-catalog .services-catalog__grid {
    gap: 1rem;
  }

  body.page-catalog .catalog-service-card {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    border-radius: 2px;
    overflow: hidden;
  }

  body.page-catalog .catalog-service-card__image {
    width: 100%;
    min-width: 0;
    max-width: none;
    aspect-ratio: 4 / 3;
  }

  body.page-catalog .catalog-service-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  body.page-catalog .catalog-service-card__body {
    padding: 1rem 1.125rem 1.25rem;
    min-width: 0;
  }

  body.page-catalog .catalog-service-card__category {
    margin-bottom: 0.35rem;
    font-size: 0.6875rem;
  }

  body.page-catalog .catalog-service-card__title {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }

  body.page-catalog .catalog-service-card__desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.8125rem;
    line-height: 1.55;
    margin-bottom: 0.75rem;
  }

  body.page-catalog .catalog-service-card__footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 0.75rem;
    margin-top: auto;
    border-top: 1px solid rgba(89, 4, 22, 0.08);
  }

  body.page-catalog .catalog-service-card__link {
    font-size: 0.75rem;
    flex-shrink: 0;
  }

  /* Catalog detail — mobile layout */
  body.page-catalog-detail .hero {
    background: var(--color-bg-hero);
    min-height: 100vh;
    min-height: 100dvh;
  }

  body.page-catalog-detail .hero__bg {
    background-position: center 22%;
  }

  body.page-catalog-detail--oborudovanie .hero__bg {
    background-position: 88% 30%;
  }

  body.page-catalog-detail .hero__scrim {
    background-image: linear-gradient(
      90deg,
      var(--color-bg-hero) 0%,
      var(--color-bg-hero) 38%,
      rgba(255, 255, 255, 0.96) 48%,
      rgba(255, 255, 255, 0.72) 58%,
      rgba(255, 255, 255, 0.2) 72%,
      transparent 86%
    );
  }

  body.page-catalog-detail .hero > .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
  }

  body.page-catalog-detail .hero__grid {
    flex: 1;
    align-items: center;
    justify-content: flex-start;
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
    padding: 1rem 0 1.75rem;
  }

  body.page-catalog-detail .hero__content {
    position: relative;
    z-index: 2;
    max-width: min(62vw, 280px);
    width: 100%;
    overflow: visible;
  }

  body.page-catalog-detail .breadcrumbs {
    margin-bottom: 0.75rem;
  }

  body.page-catalog-detail .hero__title {
    font-size: clamp(1.375rem, 6.5vw, 1.75rem);
    margin-bottom: 1rem;
    line-height: 1.16;
    letter-spacing: -0.02em;
    overflow-wrap: normal;
    word-break: normal;
  }

  body.page-catalog-detail .hero__subtitle {
    font-size: 0.8125rem;
    line-height: 1.65;
    margin-bottom: 0;
    max-width: 100%;
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
  }

  body.page-catalog-detail .section {
    padding: 2rem 0 3rem;
  }

  body.page-catalog-detail .detail-layout {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
  }

  body.page-catalog-detail .detail-sidebar {
    position: static;
    order: -1;
  }

  body.page-catalog-detail .detail-photo {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 0 1.25rem;
    border-radius: 2px;
    object-fit: contain;
    background: #fff;
  }

  body.page-catalog-detail .quick-facts {
    padding: 1rem 1.125rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(89, 4, 22, 0.08);
    background: #fff;
    border-radius: 2px;
  }

  body.page-catalog-detail .quick-facts__row {
    padding: 0.625rem 0;
    font-size: 0.8125rem;
  }

  body.page-catalog-detail .detail-sidebar > .btn--block {
    display: none;
  }

  body.page-catalog-detail .detail-content {
    min-width: 0;
  }

  body.page-catalog-detail .content-heading {
    margin: 1.75rem 0 0.875rem;
    gap: 0.75rem;
  }

  body.page-catalog-detail .content-heading h2 {
    font-size: 1.125rem;
  }

  body.page-catalog-detail .prose {
    font-size: 0.9375rem;
    line-height: 1.75;
  }

  body.page-catalog-detail .detail-content .grid--3 {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1rem;
    margin: 0;
    padding: 0 0 0.5rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    grid-template-columns: unset;
  }

  body.page-catalog-detail .detail-content .grid--3::-webkit-scrollbar {
    display: none;
  }

  body.page-catalog-detail .detail-content .grid--3 .service-card {
    flex: 0 0 min(78vw, 280px);
    scroll-snap-align: start;
  }

  /* Reviews — mobile layout aligned with site pages */
  body.page-reviews .hero {
    background: var(--color-bg-hero);
    min-height: 100vh;
    min-height: 100dvh;
  }

  body.page-reviews .hero__bg {
    background-position: center 22%;
  }

  body.page-reviews .hero__scrim {
    background-image: linear-gradient(
      90deg,
      var(--color-bg-hero) 0%,
      var(--color-bg-hero) 38%,
      rgba(255, 255, 255, 0.96) 48%,
      rgba(255, 255, 255, 0.72) 58%,
      rgba(255, 255, 255, 0.2) 72%,
      transparent 86%
    );
  }

  body.page-reviews .hero > .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
  }

  body.page-reviews .hero__grid {
    flex: 1;
    align-items: center;
    justify-content: flex-start;
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
    padding: 1rem 0 1.75rem;
  }

  body.page-reviews .hero__content {
    position: relative;
    z-index: 2;
    max-width: min(58vw, 240px);
    width: 100%;
    overflow: visible;
  }

  body.page-reviews .breadcrumbs {
    margin-bottom: 0.75rem;
  }

  body.page-reviews .hero__title {
    font-size: clamp(1.5rem, 7vw, 1.875rem);
    margin-bottom: 1rem;
    line-height: 1.16;
    letter-spacing: -0.02em;
    overflow-wrap: normal;
    word-break: normal;
  }

  body.page-reviews .hero__title--lines > span {
    display: block;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  body.page-reviews .hero__title--lines .hero__accent {
    white-space: nowrap;
  }

  body.page-reviews .hero__subtitle {
    font-size: 0.8125rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    max-width: 100%;
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
  }

  body.page-reviews .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
    width: 100%;
    max-width: 100%;
  }

  body.page-reviews .hero__actions .btn--lg {
    width: auto;
    max-width: 100%;
    padding: 13px 18px;
    font-size: 0.8125rem;
  }

  body.page-reviews .section {
    padding: 2rem 0 2.5rem;
  }

  body.page-reviews [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  body.page-reviews .reviews-panel {
    flex-direction: column;
    align-items: stretch;
    padding: 1.375rem 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
  }

  body.page-reviews .reviews-panel__score {
    font-size: 2.25rem;
  }

  body.page-reviews .reviews-panel__rating .star-rating {
    transform: translateY(0.16em);
  }

  body.page-reviews .reviews-panel__actions {
    width: 100%;
  }

  body.page-reviews .reviews-panel__actions .btn {
    width: 100%;
    justify-content: center;
  }

  body.page-reviews .reviews-grid {
    gap: 1rem;
  }

  body.page-reviews .review-card {
    padding: 1.125rem 1.25rem;
    border-radius: 12px;
  }

  body.page-reviews .review-card__header {
    margin-bottom: 0.75rem;
    align-items: flex-start;
  }

  body.page-reviews .review-card__name {
    font-size: 0.875rem;
  }

  body.page-reviews .review-card__text {
    font-size: 0.8125rem;
    line-height: 1.65;
    margin-bottom: 0.625rem;
  }

  body.page-reviews .review-card__tag {
    display: block;
    font-size: 0.75rem;
    line-height: 1.45;
  }

  body.page-reviews .review-card__tag + .review-card__tag {
    margin-top: 0.25rem;
  }

  /* Blog — mobile layout aligned with site pages */
  body.page-blog .hero {
    background: var(--color-bg-hero);
    min-height: 100vh;
    min-height: 100dvh;
  }

  body.page-blog .hero__bg {
    background-position: center 22%;
  }

  body.page-blog .hero__scrim {
    background-image: linear-gradient(
      90deg,
      var(--color-bg-hero) 0%,
      var(--color-bg-hero) 38%,
      rgba(255, 255, 255, 0.96) 48%,
      rgba(255, 255, 255, 0.72) 58%,
      rgba(255, 255, 255, 0.2) 72%,
      transparent 86%
    );
  }

  body.page-blog .hero > .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
  }

  body.page-blog .hero__grid {
    flex: 1;
    align-items: center;
    justify-content: flex-start;
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
    padding: 1rem 0 1.75rem;
  }

  body.page-blog .hero__content {
    position: relative;
    z-index: 2;
    max-width: min(58vw, 240px);
    width: 100%;
    overflow: visible;
  }

  body.page-blog .breadcrumbs {
    margin-bottom: 0.75rem;
  }

  body.page-blog .hero__title {
    font-size: clamp(1.5rem, 7vw, 1.875rem);
    margin-bottom: 1rem;
    line-height: 1.16;
    letter-spacing: -0.02em;
    overflow-wrap: normal;
    word-break: normal;
  }

  body.page-blog .hero__title--lines > span {
    display: block;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  body.page-blog .hero__title--lines .hero__accent {
    white-space: nowrap;
  }

  body.page-blog .hero__subtitle {
    font-size: 0.8125rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    max-width: 100%;
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
  }

  body.page-blog .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
    width: 100%;
    max-width: 100%;
  }

  body.page-blog .hero__actions .btn--lg {
    width: auto;
    max-width: 100%;
    padding: 13px 18px;
    font-size: 0.8125rem;
  }

  body.page-blog .services-catalog {
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
  }

  body.page-blog .services-catalog__grid {
    gap: 1rem;
  }

  body.page-blog .catalog-service-card {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    border-radius: 2px;
    overflow: hidden;
  }

  body.page-blog .catalog-service-card__image {
    width: 100%;
    min-width: 0;
    max-width: none;
    aspect-ratio: 4 / 3;
  }

  body.page-blog .catalog-service-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  body.page-blog .catalog-service-card__body {
    padding: 1rem 1.125rem 1.25rem;
    min-width: 0;
  }

  body.page-blog .catalog-service-card__category {
    margin-bottom: 0.35rem;
    font-size: 0.6875rem;
  }

  body.page-blog .catalog-service-card__title {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }

  body.page-blog .catalog-service-card__desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.8125rem;
    line-height: 1.55;
    margin-bottom: 0.75rem;
  }

  body.page-blog .catalog-service-card__footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 0.75rem;
    margin-top: auto;
    border-top: 1px solid rgba(89, 4, 22, 0.08);
  }

  body.page-blog .catalog-service-card__meta {
    font-size: 0.75rem;
    color: var(--color-text-muted);
  }

  body.page-blog .catalog-service-card__link {
    font-size: 0.75rem;
    flex-shrink: 0;
  }

  /* Blog detail — mobile layout */
  body.page-blog-detail .hero {
    background: var(--color-bg-hero);
    min-height: 100vh;
    min-height: 100dvh;
  }

  body.page-blog-detail .hero__bg {
    background-position: center 22%;
  }

  body.page-blog-detail .hero__scrim {
    background-image: linear-gradient(
      90deg,
      var(--color-bg-hero) 0%,
      var(--color-bg-hero) 38%,
      rgba(255, 255, 255, 0.96) 48%,
      rgba(255, 255, 255, 0.72) 58%,
      rgba(255, 255, 255, 0.2) 72%,
      transparent 86%
    );
  }

  body.page-blog-detail .hero > .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
  }

  body.page-blog-detail .hero__grid {
    flex: 1;
    align-items: center;
    justify-content: flex-start;
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
    padding: 1rem 0 1.75rem;
  }

  body.page-blog-detail .hero__content {
    position: relative;
    z-index: 2;
    max-width: min(72vw, 300px);
    width: 100%;
    overflow: visible;
  }

  body.page-blog-detail .breadcrumbs {
    margin-bottom: 0.75rem;
  }

  body.page-blog-detail .service-detail__eyebrow {
    margin-bottom: 0.5rem;
    font-size: 0.625rem;
  }

  body.page-blog-detail .hero__title {
    font-size: clamp(1.375rem, 6vw, 1.75rem);
    margin-bottom: 1rem;
    line-height: 1.16;
    letter-spacing: -0.02em;
    overflow-wrap: normal;
    word-break: normal;
  }

  body.page-blog-detail .hero__subtitle {
    font-size: 0.8125rem;
    line-height: 1.65;
    margin-bottom: 0;
    max-width: 100%;
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
  }

  body.page-blog-detail .section {
    padding: 2rem 0 2.5rem;
  }

  body.page-blog-detail .byline {
    margin-bottom: 1.25rem;
  }

  body.page-blog-detail .detail-photo--wide {
    width: 100%;
    max-height: none;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 2px;
    margin-bottom: 1.5rem;
  }

  body.page-blog-detail .prose {
    font-size: 0.9375rem;
    line-height: 1.75;
  }

  body.page-blog-detail .tag-list {
    margin-top: 1.5rem;
    gap: 0.5rem;
  }

  body.page-blog-detail .tag-list span {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }

  body.page-blog-detail .content-heading {
    margin: 1.75rem 0 0.875rem;
    gap: 0.75rem;
  }

  body.page-blog-detail .content-heading h2 {
    font-size: 1.125rem;
  }

  body.page-blog-detail .grid--3 {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1rem;
    margin: 0 0 1.5rem;
    padding: 0 0 0.5rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    grid-template-columns: unset;
  }

  body.page-blog-detail .grid--3::-webkit-scrollbar {
    display: none;
  }

  body.page-blog-detail .grid--3 .service-card {
    flex: 0 0 min(78vw, 280px);
    scroll-snap-align: start;
  }

  body.page-blog-detail .detail-content > .btn--primary {
    width: auto;
    padding: 13px 18px;
    font-size: 0.8125rem;
  }

  /* Prices — mobile layout aligned with site pages */
  body.page-prices .hero {
    background: var(--color-bg-hero);
    min-height: 100vh;
    min-height: 100dvh;
  }

  body.page-prices .hero__bg {
    background-position: center 22%;
  }

  body.page-prices .hero__scrim {
    background-image: linear-gradient(
      90deg,
      var(--color-bg-hero) 0%,
      var(--color-bg-hero) 38%,
      rgba(255, 255, 255, 0.96) 48%,
      rgba(255, 255, 255, 0.72) 58%,
      rgba(255, 255, 255, 0.2) 72%,
      transparent 86%
    );
  }

  body.page-prices .hero > .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
  }

  body.page-prices .hero__grid {
    flex: 1;
    align-items: center;
    justify-content: flex-start;
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
    padding: 1rem 0 1.75rem;
  }

  body.page-prices .hero__content {
    position: relative;
    z-index: 2;
    max-width: min(58vw, 240px);
    width: 100%;
  }

  body.page-prices .breadcrumbs {
    margin-bottom: 0.75rem;
  }

  body.page-prices .hero__title {
    font-size: clamp(1.625rem, 7.5vw, 2rem);
    margin-bottom: 1rem;
    line-height: 1.16;
    letter-spacing: -0.02em;
    overflow-wrap: normal;
    word-break: normal;
  }

  body.page-prices .hero__title--lines > span {
    display: block;
  }

  body.page-prices .hero__subtitle {
    font-size: 0.8125rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    max-width: 100%;
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
  }

  body.page-prices .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
    width: 100%;
    max-width: 100%;
  }

  body.page-prices .hero__actions .btn--lg {
    width: auto;
    max-width: 100%;
    padding: 13px 18px;
    font-size: 0.8125rem;
  }

  body.page-prices > .container.price-tabs-wrap {
    position: static;
    z-index: auto;
    margin-top: 0;
  }

  body.page-prices .price-tabs-panel {
    padding: 1rem 0 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }

  body.page-prices .price-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    margin: 0 0 1rem;
    padding: 0.625rem 0 0.75rem;
    position: sticky;
    top: var(--header-height);
    z-index: 25;
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(89, 4, 22, 0.08);
    box-shadow: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
  }

  body.page-prices .price-tabs::-webkit-scrollbar {
    display: none;
  }

  body.page-prices .price-tabs__item {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: auto;
    padding: 0.625rem 0.875rem 0.625rem 1rem;
    border: 1px solid rgba(89, 4, 22, 0.12);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(38, 8, 16, 0.07);
    white-space: nowrap;
    transform: none;
  }

  body.page-prices .price-tabs__item:hover {
    transform: none;
    border-color: rgba(196, 169, 98, 0.55);
    background: var(--color-bg-hero);
  }

  body.page-prices .price-tabs__hint {
    display: none;
  }

  body.page-prices .price-tabs__arrow {
    width: 1.5rem;
    height: 1.5rem;
    margin-left: 0.15rem;
    flex-shrink: 0;
  }

  body.page-prices .price-tabs__num {
    display: none;
  }

  body.page-prices .price-tabs__label {
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.3;
  }

  body.page-prices .prices-section {
    padding-top: 0.5rem;
    padding-bottom: 2.5rem;
    background: #fff;
  }

  body.page-prices .price-block {
    margin-bottom: 2.25rem;
    scroll-margin-top: calc(var(--header-height) + 4.5rem);
  }

  body.page-prices .price-block__head {
    margin-bottom: 0.75rem;
    padding-bottom: 0.65rem;
  }

  body.page-prices .price-block__title {
    font-size: clamp(1.5rem, 6vw, 1.875rem);
  }

  body.page-prices .price-sheet {
    border-radius: 12px;
  }

  body.page-prices .price-block__disclaimer {
    margin-top: 0.875rem;
    font-size: 0.6875rem;
    line-height: 1.5;
  }

  body.page-prices .cta-section__content {
    text-align: left;
    align-items: flex-start;
    padding: 2rem 1.25rem;
  }

  body.page-prices .cta-section__content h2 {
    font-size: clamp(1.375rem, 5.5vw, 1.75rem);
    max-width: none;
  }

  body.page-prices .cta-section__content p {
    font-size: 0.875rem;
    line-height: 1.6;
  }

  body.page-prices .cta-section__content .btn {
    width: auto;
    align-self: flex-start;
  }

  body.page-prices .cta-section__image img {
    min-height: 180px;
    max-height: 220px;
  }

  /* Cookie banner above mobile bar */
  .cookie-banner {
    bottom: calc(var(--mobile-bar-height) + env(safe-area-inset-bottom, 0px) + 0.75rem);
    padding: 0 0.75rem;
  }

  body.page-booking .cookie-banner {
    bottom: calc(env(safe-area-inset-bottom, 0px) + 0.75rem);
  }

  .cookie-banner__card {
    flex-direction: column;
    align-items: stretch;
    gap: 0.875rem;
    padding: 1rem;
  }

  .cookie-banner__icon {
    display: none;
  }

  .cookie-banner__text {
    font-size: 0.8125rem;
    line-height: 1.5;
  }

  .cookie-banner__actions {
    justify-content: space-between;
  }

  .cookie-banner .btn {
    flex: 1;
    justify-content: center;
  }

  .breadcrumbs {
    font-size: 0.6875rem;
    gap: 0.2rem 0.3rem;
    row-gap: 0.2rem;
    margin-bottom: 0.75rem;
    max-width: 100%;
    overflow: visible;
  }

  /* Content */
  .content-heading {
    margin: 2rem 0 1rem;
    gap: 0.75rem;
  }

  .content-heading .circle-icon {
    width: 40px;
    height: 40px;
  }

  .faq-item summary {
    padding: 1rem;
    font-size: 0.875rem;
  }

  .faq-item__body {
    padding: 0 1rem 1rem;
  }

  .empty-state {
    padding: 2.5rem 1.25rem;
  }

  .legal-card-list a {
    padding: 1rem;
    font-size: 0.875rem;
  }

  .prose,
  .detail-content,
  .legal-content {
    overflow-wrap: anywhere;
  }

  .contact-form-section__text {
    max-width: none;
  }

  .find-us__map {
    min-height: 220px;
  }

  .yandex-map {
    min-height: 220px;
  }

  .footer__shell {
    padding-top: 2rem;
  }

  .footer__nav {
    gap: 1.75rem;
  }

  body.page-prices .price-tabs {
    margin-top: 0;
  }

  .services-sidebar__nav {
    overscroll-behavior-x: contain;
    touch-action: pan-x;
  }

  /* Disable hover lift on touch */
  .service-card:hover,
  .doctor-card:hover,
  .doctor-card-v:hover,
  .catalog-service-card:hover,
  .ba-card:hover,
  .skin-problem-card:hover,
  .about-advantage-card:hover {
    transform: none;
    box-shadow: none;
  }

  .btn--primary:hover {
    transform: none;
  }
}

@media (min-width: 1024px) {
  .mobile-bar,
  .mobile-drawer {
    display: none !important;
  }

  .header__mobile-call,
  .header__mobile-book {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-drawer__panel {
    transition: none;
  }
}