:root {
  --rose-950: #3f1e2b;
  --rose-800: #713246;
  --rose-650: #a94e6c;
  --rose-500: #d87598;
  --rose-300: #f2b6c9;
  --rose-150: #fde4ec;
  --rose-050: #fff8fb;
  --cream: #fffdf9;
  --sage: #7d9082;
  --shadow: 0 22px 70px rgba(113, 50, 70, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--rose-500) var(--rose-150);
  scrollbar-width: thin;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--rose-950);
  font-family: "Manrope", Arial, sans-serif;
  background: var(--rose-050);
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(180deg, var(--rose-050), var(--rose-150));
}

::-webkit-scrollbar-thumb {
  border: 3px solid var(--rose-150);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--rose-300), var(--rose-500));
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--rose-500), var(--rose-650));
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  z-index: 60;
  top: 18px;
  left: 50%;
  display: flex;
  width: min(1180px, calc(100% - 32px));
  min-height: 78px;
  align-items: center;
  justify-content: flex-start;
  gap: 34px;
  padding: 12px 18px 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  background: rgba(255, 248, 251, 0.88);
  box-shadow: 0 20px 60px rgba(113, 50, 70, 0.1);
  opacity: 0;
  transform: translate(-50%, -22px);
  transition:
    opacity 700ms ease,
    transform 700ms ease,
    background 250ms ease,
    box-shadow 250ms ease;
  backdrop-filter: blur(12px);
}

.is-ready .site-header {
  opacity: 1;
  transform: translate(-50%, 0);
}

.site-header.is-scrolled {
  background: rgba(255, 248, 251, 0.96);
  box-shadow: var(--shadow);
}

.logo {
  display: inline-flex;
  flex: 0 0 248px;
  align-items: center;
  gap: 12px;
}

.logo img {
  display: block;
  width: 58px;
  height: auto;
  max-height: 54px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(42%) sepia(23%) saturate(1331%) hue-rotate(290deg) brightness(92%) contrast(89%);
}

.logo__text {
  display: grid;
  gap: 2px;
  color: #6d263d;
  font-weight: 800;
  line-height: 1.08;
  white-space: nowrap;
}

.logo__text span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 21px;
  font-weight: 700;
}

.logo__text small {
  color: #8d4b61;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 34px);
  color: #6f4352;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a,
.header-phone,
.hero__phone {
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--rose-500);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: center;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.main-nav a:hover,
.header-phone:hover,
.hero__phone:hover {
  color: var(--rose-650);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-phone {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  flex: 0 0 auto;
  align-items: center;
  border: 1px solid rgba(169, 78, 108, 0.18);
  border-radius: 999px;
  padding: 0 16px 0 34px;
  color: var(--rose-800);
  font-size: 14px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.34);
  white-space: nowrap;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.header-phone::before {
  position: absolute;
  left: 15px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose-500);
  box-shadow: 0 0 0 4px rgba(216, 117, 152, 0.16);
  content: "";
}

.header-phone:hover {
  border-color: rgba(169, 78, 108, 0.34);
  background: rgba(255, 255, 255, 0.56);
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.header-cta {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  color: var(--cream);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--rose-650), var(--rose-500));
  box-shadow: 0 14px 28px rgba(169, 78, 108, 0.22);
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(169, 78, 108, 0.3);
}

.burger-button {
  position: relative;
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(169, 78, 108, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.46);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.burger-button span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--rose-800);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.burger-button span:nth-child(1) {
  transform: translateY(-6px);
}

.burger-button span:nth-child(3) {
  transform: translateY(6px);
}

.burger-button:hover,
.burger-button:focus-visible {
  border-color: rgba(169, 78, 108, 0.34);
  background: rgba(255, 255, 255, 0.72);
}

.burger-button.is-open span:nth-child(1) {
  transform: rotate(45deg);
}

.burger-button.is-open span:nth-child(2) {
  opacity: 0;
}

.burger-button.is-open span:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 70;
  top: 100px;
  right: 16px;
  display: none;
  width: min(344px, calc(100vw - 24px));
  max-height: calc(100svh - 116px);
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  padding: 18px;
  background: rgba(255, 248, 251, 0.98);
  box-shadow: 0 24px 70px rgba(113, 50, 70, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px) scale(0.98);
  transform-origin: top right;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
  backdrop-filter: blur(14px);
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--rose-800);
  font-weight: 800;
}

.mobile-menu__close {
  position: relative;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border: 1px solid rgba(169, 78, 108, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
}

.mobile-menu__close::before,
.mobile-menu__close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: var(--rose-800);
  content: "";
}

.mobile-menu__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu__nav {
  display: grid;
  gap: 8px;
}

.mobile-menu__nav a {
  position: relative;
  display: flex;
  min-height: 48px;
  align-items: center;
  border-bottom: 1px solid rgba(216, 117, 152, 0.2);
  color: #6f4352;
  font-weight: 800;
  transition:
    color 180ms ease,
    padding-left 180ms ease;
}

.mobile-menu__nav a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--rose-500);
  content: "";
  opacity: 0;
  transform: scaleX(0.25);
  transform-origin: left;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.mobile-menu__nav a:hover,
.mobile-menu__nav a:focus-visible {
  color: var(--rose-650);
  padding-left: 8px;
}

.mobile-menu__nav a:hover::after,
.mobile-menu__nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.mobile-menu__actions {
  display: grid;
  gap: 12px;
}

.mobile-menu__phone,
.mobile-menu__cta {
  width: 100%;
  justify-content: center;
}

@media (max-width: 1080px) {
  .site-header {
    gap: 22px;
    padding-left: 18px;
  }

  .logo {
    flex-basis: 220px;
  }

  .main-nav {
    gap: 18px;
  }

  .header-actions {
    gap: 16px;
  }

  .header-cta {
    padding: 0 18px;
  }

}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .burger-button {
    display: inline-flex;
    margin-left: auto;
  }

  .mobile-menu {
    display: flex;
  }
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  padding: 140px clamp(24px, 8vw, 132px) 76px;
  background-image:
    linear-gradient(90deg, rgba(255, 250, 252, 0.92) 0%, rgba(255, 246, 249, 0.68) 42%, rgba(255, 234, 242, 0.2) 100%),
    url("img/hero-bg.webp");
  background-position: center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: min(560px, 66vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.26);
  content: "";
  filter: blur(2px);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(820px, 62vw);
}

[data-reveal] {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    filter 700ms ease,
    transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

[data-reveal="photo"] {
  filter: blur(10px);
  transform: translateY(34px) scale(0.965);
}

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

.rating-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.rating-badge {
  display: grid;
  min-width: 168px;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 10px;
  row-gap: 2px;
  border: 1px solid rgba(169, 78, 108, 0.14);
  border-radius: 18px;
  padding: 12px 15px;
  color: var(--rose-800);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 16px 42px rgba(113, 50, 70, 0.08);
  backdrop-filter: blur(10px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.rating-badge:hover {
  border-color: rgba(169, 78, 108, 0.28);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 48px rgba(113, 50, 70, 0.12);
  transform: translateY(-2px);
}

.rating-badge__source {
  grid-column: 1 / -1;
  color: #7f4a5c;
  font-size: 12px;
  font-weight: 800;
}

.rating-badge__score {
  color: var(--rose-950);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 1;
}

.rating-badge__meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(63, 30, 43, 0.72);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.rating-badge__star {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, #f4c15e, #d9922b);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 35%);
  filter: drop-shadow(0 2px 4px rgba(217, 146, 43, 0.24));
}

.hero__location {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(169, 78, 108, 0.14);
  border-radius: 999px;
  margin: 0 0 14px;
  padding: 0 14px 0 30px;
  color: var(--rose-800);
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 12px 30px rgba(113, 50, 70, 0.08);
}

.hero__location::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-left: -15px;
  margin-right: 9px;
  background: var(--rose-500);
  box-shadow: 0 0 0 4px rgba(216, 117, 152, 0.16);
  content: "";
}

.hero__eyebrow {
  margin: 0 0 18px;
  color: var(--sage);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  color: var(--rose-950);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 700;
  line-height: 1.04;
}

.hero__text {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(63, 30, 43, 0.76);
  font-size: clamp(15px, 1.55vw, 18px);
  line-height: 1.72;
}

.hero__divider {
  display: flex;
  width: min(260px, 52vw);
  height: 10px;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
}

.hero__divider::before,
.hero__divider::after {
  display: block;
  content: "";
}

.hero__divider::before {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--rose-500);
  box-shadow:
    15px 0 0 rgba(216, 117, 152, 0.48),
    30px 0 0 rgba(216, 117, 152, 0.22);
}

.hero__divider::after {
  flex: 1;
  height: 1px;
  margin-left: 30px;
  background: linear-gradient(90deg, rgba(169, 78, 108, 0.28), rgba(169, 78, 108, 0));
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 26px;
  margin-top: 38px;
}

.primary-button {
  position: relative;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 30px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.primary-button {
  color: var(--cream);
  background: linear-gradient(135deg, var(--rose-650), var(--rose-500));
  box-shadow: 0 18px 38px rgba(169, 78, 108, 0.28);
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 46px rgba(169, 78, 108, 0.34);
}

.primary-button:active {
  transform: translateY(0);
}

.primary-button:focus-visible,
.header-cta:focus-visible,
.header-phone:focus-visible,
.hero__phone:focus-visible,
.main-nav a:focus-visible,
.mobile-menu__close:focus-visible {
  outline: 3px solid rgba(216, 117, 152, 0.35);
  outline-offset: 4px;
}

.hero__phone {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  border: 1px solid rgba(169, 78, 108, 0.18);
  border-radius: 999px;
  padding: 0 18px 0 38px;
  color: var(--rose-800);
  font-size: 16px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: 0 16px 34px rgba(113, 50, 70, 0.08);
  white-space: nowrap;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.hero__phone::before {
  position: absolute;
  left: 17px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose-500);
  box-shadow: 0 0 0 4px rgba(216, 117, 152, 0.16);
  content: "";
}

.hero__phone:hover {
  border-color: rgba(169, 78, 108, 0.34);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 20px 42px rgba(113, 50, 70, 0.12);
}

.primary-button.is-sent {
  background: linear-gradient(135deg, var(--sage), #9aa78d);
}

.cta-attention {
  animation: ctaPulse 3.8s ease-in-out infinite;
}

.cta-attention::after {
  position: absolute;
  top: -45%;
  bottom: -45%;
  left: -42%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  content: "";
  transform: translateX(-120%) rotate(18deg);
  animation: ctaShine 4.6s ease-in-out infinite;
  pointer-events: none;
}

.cta-attention:hover {
  animation-play-state: paused;
}

.cta-attention:hover::after {
  animation-play-state: paused;
}

.about__actions {
  display: flex;
  margin-top: 34px;
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 18px 38px rgba(169, 78, 108, 0.26);
  }

  50% {
    box-shadow:
      0 22px 46px rgba(169, 78, 108, 0.38),
      0 0 0 8px rgba(216, 117, 152, 0.08);
  }
}

@keyframes ctaShine {
  0%,
  52% {
    transform: translateX(-140%) rotate(18deg);
  }

  72%,
  100% {
    transform: translateX(420%) rotate(18deg);
  }
}

.about {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 9vw, 132px) clamp(24px, 8vw, 132px);
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 255, 255, 0.86), transparent 34%),
    linear-gradient(180deg, #fff8fb 0%, #fde9f0 100%);
}

.about::before {
  position: absolute;
  top: 12%;
  right: -180px;
  width: 520px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(242, 182, 201, 0.3);
  content: "";
}

.about__inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  margin: 0;
  grid-template-columns: minmax(0, 620px) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(42px, 6vw, 86px);
}

.section-kicker {
  margin: 0 0 16px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.about h2 {
  max-width: 620px;
  margin: 0;
  color: var(--rose-950);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 4.7vw, 66px);
  line-height: 1.04;
}

.about__content > p {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(63, 30, 43, 0.76);
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.78;
}

.about__features {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.about__feature {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 14px;
  row-gap: 4px;
  border-top: 1px solid rgba(169, 78, 108, 0.16);
  padding-top: 16px;
}

.about__feature span {
  grid-row: span 2;
  color: var(--rose-500);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.about__feature strong {
  color: var(--rose-800);
  font-size: 16px;
}

.about__feature p {
  margin: 0;
  color: rgba(63, 30, 43, 0.68);
  font-size: 14px;
  line-height: 1.55;
}

.about__gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: minmax(330px, 36vw) 156px;
  gap: 14px;
}

.about__photo {
  position: relative;
  min-height: 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 24px 58px rgba(113, 50, 70, 0.12);
}

.about__photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(63, 30, 43, 0.14));
  content: "";
  pointer-events: none;
}

.about__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.about__photo:hover img {
  transform: scale(1.035);
}

.about__photo--large {
  grid-column: 1 / -1;
  border-radius: 30px;
}

.about__photo--reception img {
  object-position: center center;
}

.about__photo--building img {
  object-position: center 58%;
}

.about__photo--waiting img {
  object-position: center center;
}

.about__photo--entrance img {
  object-position: center 62%;
}

.doctors {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 9vw, 132px) clamp(24px, 8vw, 132px);
  background:
    radial-gradient(circle at 88% 18%, rgba(242, 182, 201, 0.36), transparent 32%),
    linear-gradient(180deg, #fde9f0 0%, #fff8fb 100%);
}

.doctors::before {
  position: absolute;
  bottom: -240px;
  left: -160px;
  width: 560px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.64);
  content: "";
}

.doctors__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.doctors__head {
  max-width: 680px;
}

.doctors__head h2 {
  margin: 0;
  color: var(--rose-950);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 4.4vw, 60px);
  line-height: 1;
}

.doctors__head > p:not(.section-kicker) {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(63, 30, 43, 0.72);
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.68;
}

.doctors__layout {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(26px, 4vw, 56px);
  margin-top: clamp(30px, 4.4vw, 52px);
}

.doctors__tabs {
  display: grid;
  align-content: start;
  gap: 10px;
}

.doctor-tab {
  position: relative;
  min-height: 64px;
  border: 1px solid rgba(169, 78, 108, 0.14);
  border-radius: 18px;
  padding: 0 48px 0 22px;
  color: #6f4352;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  text-align: left;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 16px 42px rgba(113, 50, 70, 0.07);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.doctor-tab::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  opacity: 0.55;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 180ms ease;
}

.doctor-tab:hover,
.doctor-tab.is-active {
  border-color: rgba(169, 78, 108, 0.3);
  color: var(--rose-800);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 48px rgba(113, 50, 70, 0.12);
  transform: translateX(4px);
}

.doctor-tab.is-active::after {
  opacity: 1;
  transform: translateY(-50%) rotate(45deg) scale(1.15);
}

.doctors__cards {
  min-width: 0;
}

.doctor-card {
  display: grid;
  min-height: 440px;
  grid-template-columns: minmax(250px, 0.86fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 28px 72px rgba(113, 50, 70, 0.14);
}

.doctor-card[hidden] {
  display: none;
}

.doctor-card__photo {
  position: relative;
  display: grid;
  min-height: 100%;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 36% 24%, rgba(255, 255, 255, 0.72), transparent 26%),
    linear-gradient(145deg, #f8c9d8, #d87598);
}

.doctor-card__photo::before {
  position: absolute;
  bottom: -28%;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 42% 42% 0 0;
  background: rgba(255, 255, 255, 0.62);
  content: "";
}

.doctor-card__photo::after {
  position: absolute;
  top: 23%;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  content: "";
  box-shadow: 0 18px 38px rgba(113, 50, 70, 0.14);
}

.doctor-card__photo span {
  position: relative;
  z-index: 1;
  margin-top: 88px;
  color: var(--rose-800);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(54px, 6vw, 86px);
  font-weight: 700;
}

.doctor-card__photo--image {
  background: linear-gradient(145deg, #fde4ec, #d87598);
}

.doctor-card__photo--image::before,
.doctor-card__photo--image::after {
  display: none;
}

.doctor-card__photo--image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.doctor-card__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(28px, 3.6vw, 48px);
}

.doctor-card__label {
  margin: 0 0 12px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.doctor-card h3 {
  margin: 0;
  color: var(--rose-950);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.04;
}

.doctor-card__info > p:not(.doctor-card__label) {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(63, 30, 43, 0.74);
  font-size: 15px;
  line-height: 1.64;
}

.doctor-card ul {
  display: grid;
  gap: 9px;
  margin: 22px 0 28px;
  padding: 0;
  color: rgba(63, 30, 43, 0.76);
  font-size: 14px;
  line-height: 1.5;
  list-style: none;
}

.doctor-card li {
  position: relative;
  padding-left: 22px;
}

.doctor-card li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose-500);
  box-shadow: 0 0 0 4px rgba(216, 117, 152, 0.14);
  content: "";
}

.services {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 9vw, 132px) clamp(24px, 8vw, 132px);
  background:
    radial-gradient(circle at 14% 18%, rgba(242, 182, 201, 0.28), transparent 34%),
    linear-gradient(180deg, #fff8fb 0%, #fde8ef 54%, #fff8fb 100%);
}

.services::before {
  position: absolute;
  top: 18%;
  right: -220px;
  width: 540px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  content: "";
}

.services__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.services__head {
  max-width: 760px;
}

.services__head h2 {
  margin: 0;
  color: var(--rose-950);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 4.7vw, 66px);
  line-height: 1.04;
}

.services__head > p:not(.section-kicker) {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(63, 30, 43, 0.72);
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.76;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(34px, 5vw, 58px);
}

.service-card {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border: 1px solid rgba(169, 78, 108, 0.13);
  border-radius: 24px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 20px 54px rgba(113, 50, 70, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.service-card::after {
  position: absolute;
  right: -44px;
  bottom: -54px;
  width: 148px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(242, 182, 201, 0.28);
  content: "";
}

.service-card:hover {
  border-color: rgba(169, 78, 108, 0.26);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 26px 64px rgba(113, 50, 70, 0.13);
  transform: translateY(-4px);
}

.service-card__number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--rose-800);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 21px;
  font-weight: 700;
  background: var(--rose-150);
}

.service-card h3 {
  max-width: 260px;
  margin: 22px 0 0;
  color: var(--rose-950);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(27px, 2.4vw, 34px);
  line-height: 1.04;
}

.service-card p {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  color: rgba(63, 30, 43, 0.72);
  font-size: 14px;
  line-height: 1.62;
}

.services__bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 16px;
  margin-top: 16px;
}

.services__notice,
.services__steps {
  border: 1px solid rgba(169, 78, 108, 0.14);
  border-radius: 28px;
  padding: clamp(26px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 22px 58px rgba(113, 50, 70, 0.1);
}

.services__notice h3,
.services__steps h3 {
  margin: 0;
  color: var(--rose-950);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.05;
}

.services__notice p {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(63, 30, 43, 0.72);
  font-size: 15px;
  line-height: 1.72;
}

.symptom-tags {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin-top: 26px;
}

.symptom-tags span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(169, 78, 108, 0.16);
  border-radius: 999px;
  padding: 0 15px;
  color: var(--rose-800);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  background: rgba(253, 228, 236, 0.56);
}

.services__checkup {
  margin-top: 24px;
  border-left: 3px solid var(--rose-500);
  padding: 4px 0 4px 16px;
  color: rgba(63, 30, 43, 0.74);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.62;
}

.services__steps ol {
  display: grid;
  gap: 12px;
  margin: 20px 0 28px;
  padding: 0;
  list-style: none;
  counter-reset: services-step;
}

.services__steps li {
  position: relative;
  min-height: 34px;
  padding-left: 48px;
  color: rgba(63, 30, 43, 0.76);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  counter-increment: services-step;
}

.services__steps li::before {
  position: absolute;
  top: -2px;
  left: 0;
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--cream);
  font-size: 12px;
  font-weight: 800;
  background: var(--rose-500);
  content: counter(services-step);
  box-shadow: 0 10px 22px rgba(169, 78, 108, 0.2);
}

.quiz {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 9vw, 132px) clamp(24px, 8vw, 132px);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.8), transparent 34%),
    linear-gradient(180deg, #fff8fb 0%, #fde8ef 100%);
}

.quiz::before {
  position: absolute;
  right: -190px;
  bottom: -210px;
  width: 560px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(242, 182, 201, 0.34);
  content: "";
}

.quiz__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
}

.quiz__content h2 {
  max-width: 620px;
  margin: 0;
  color: var(--rose-950);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 4.7vw, 66px);
  line-height: 1.04;
}

.quiz__content > p:not(.section-kicker) {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(63, 30, 43, 0.72);
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.76;
}

.quiz-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 32px;
  padding: clamp(26px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 28px 72px rgba(113, 50, 70, 0.14);
}

.quiz-card__top {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.quiz-card__counter {
  color: var(--sage);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.quiz-card__progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(253, 228, 236, 0.9);
}

.quiz-card__progress span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--rose-650), var(--rose-300));
  transition: width 260ms ease;
}

.quiz-step,
.quiz-result {
  animation: quizFade 260ms ease both;
}

.quiz-step h3,
.quiz-result h3 {
  margin: 0;
  color: var(--rose-950);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.04;
}

.quiz-options {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.quiz-options button {
  position: relative;
  min-height: 58px;
  border: 1px solid rgba(169, 78, 108, 0.15);
  border-radius: 18px;
  padding: 0 48px 0 20px;
  color: #6f4352;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  text-align: left;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.quiz-options button::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  opacity: 0.55;
  transform: translateY(-50%) rotate(45deg);
}

.quiz-options button:hover,
.quiz-options button:focus-visible {
  border-color: rgba(169, 78, 108, 0.3);
  color: var(--rose-800);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(113, 50, 70, 0.11);
  transform: translateY(-2px);
}

.quiz-card__back {
  align-self: flex-end;
  margin-top: 22px;
  border: 0;
  padding: 0;
  color: var(--rose-800);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  background: transparent;
  cursor: pointer;
}

.quiz-result__mark {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  color: var(--rose-800);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  background: var(--rose-150);
}

.quiz-result h3 {
  margin-top: 22px;
}

.quiz-result p {
  max-width: 560px;
  margin: 18px 0 30px;
  color: rgba(63, 30, 43, 0.72);
  font-size: 15px;
  line-height: 1.72;
}

@keyframes quizFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.contacts {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 9vw, 132px) clamp(24px, 8vw, 132px);
  background:
    radial-gradient(circle at 86% 22%, rgba(242, 182, 201, 0.32), transparent 34%),
    linear-gradient(180deg, #fff8fb 0%, #fde7ef 100%);
}

.contacts::before {
  position: absolute;
  bottom: -220px;
  left: -180px;
  width: 560px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  content: "";
}

.contacts__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(420px, 682px) minmax(360px, 1fr);
  align-items: stretch;
  gap: clamp(28px, 4vw, 56px);
}

.contacts__map {
  width: min(100%, 682px);
  min-height: 570px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 28px 72px rgba(113, 50, 70, 0.14);
}

.contacts__map > ymaps,
.contacts__map > iframe,
.contacts__map > div {
  width: 100% !important;
  height: 100% !important;
}

.contacts__map ymaps,
.contacts__map iframe {
  border-radius: 32px;
}

.contacts__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.contacts__content h2 {
  max-width: 560px;
  margin: 0;
  color: var(--rose-950);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 4.7vw, 66px);
  line-height: 1.04;
}

.contacts__list {
  display: grid;
  gap: 12px;
  width: 100%;
  margin: 32px 0 28px;
}

.contact-card {
  border: 1px solid rgba(169, 78, 108, 0.13);
  border-radius: 22px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 16px 42px rgba(113, 50, 70, 0.08);
}

.contact-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card p {
  margin: 0;
  color: rgba(63, 30, 43, 0.76);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.56;
}

.contact-card p + p {
  margin-top: 5px;
}

.contact-card a {
  color: var(--rose-800);
  transition: color 180ms ease;
}

.contact-card a:hover {
  color: var(--rose-650);
}

.site-footer {
  padding: 56px clamp(24px, 8vw, 132px) 28px;
  color: var(--rose-800);
  background:
    radial-gradient(circle at 86% 0%, rgba(242, 182, 201, 0.3), transparent 30%),
    linear-gradient(180deg, #fde7ef 0%, #fff8fb 100%);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(240px, 0.72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  border-top: 1px solid rgba(169, 78, 108, 0.16);
  padding-top: 34px;
}

.site-footer__brand {
  max-width: 430px;
}

.site-footer__brand .logo {
  flex-basis: auto;
}

.site-footer__brand p {
  margin: 18px 0 0;
  color: rgba(63, 30, 43, 0.68);
  font-size: 14px;
  line-height: 1.7;
}

.site-footer__nav,
.site-footer__contacts {
  display: grid;
  gap: 12px;
}

.site-footer__nav a,
.site-footer__contacts a,
.site-footer__contacts span,
.site-footer__bottom a,
.site-footer__bottom span {
  color: rgba(63, 30, 43, 0.76);
  font-size: 14px;
  font-weight: 700;
}

.site-footer__nav a,
.site-footer__contacts a,
.site-footer__bottom a {
  transition: color 180ms ease;
}

.site-footer__nav a:hover,
.site-footer__contacts a:hover,
.site-footer__bottom a:hover {
  color: var(--rose-650);
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  border-top: 1px solid rgba(169, 78, 108, 0.12);
  margin-top: 34px;
  padding-top: 20px;
}

@media (max-width: 1080px) {
  .about__inner {
    grid-template-columns: 1fr;
  }

  .about__gallery {
    grid-template-rows: 360px 170px;
  }

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

  .doctors__tabs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
  }

  .doctor-tab {
    min-width: 260px;
    scroll-snap-align: start;
  }

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

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

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

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

  .contacts__map {
    min-height: 460px;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 12px;
    min-height: 66px;
    gap: 12px;
    padding: 10px 12px 10px 14px;
  }

  .logo {
    flex: 1 1 auto;
  }

  .logo img {
    width: 46px;
    max-height: 46px;
  }

  .logo__text span {
    font-size: 17px;
  }

  .logo__text small {
    font-size: 9px;
  }

  .header-phone {
    display: none;
  }

  .header-actions {
    margin-left: 0;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 16px;
    font-size: 12px;
  }

  .mobile-menu {
    top: 86px;
    right: 12px;
    max-height: calc(100svh - 98px);
  }

  .mobile-menu__phone {
    display: inline-flex;
  }

  .mobile-menu__cta {
    min-height: 46px;
    padding: 0 18px;
  }

  .hero {
    align-items: end;
    padding: 112px 22px 44px;
    background-image:
      linear-gradient(180deg, rgba(255, 250, 252, 0.78) 0%, rgba(255, 248, 251, 0.94) 58%, rgba(255, 248, 251, 0.98) 100%),
      url("img/hero-bg.webp");
  }

  .hero__content {
    width: min(100%, 620px);
  }

  .rating-badges {
    gap: 10px;
    margin-bottom: 22px;
  }

  .rating-badge {
    min-width: min(100%, 158px);
    border-radius: 16px;
    padding: 10px 12px;
  }

  .rating-badge__score {
    font-size: 26px;
  }

  .hero h1 {
    font-size: clamp(36px, 11vw, 52px);
    line-height: 1.06;
  }

  .hero__text {
    margin-top: 20px;
    line-height: 1.62;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 30px;
  }

  .primary-button {
    width: 100%;
  }

  .hero__phone {
    margin-top: 2px;
    width: 100%;
    justify-content: center;
  }

  .about {
    padding: 72px 20px;
  }

  .about__inner {
    gap: 34px;
  }

  .about__features {
    margin-top: 28px;
  }

  .about__gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-auto-rows: 220px;
    gap: 12px;
  }

  .about__photo {
    border-radius: 18px;
  }

  .about__photo--large,
  .about__photo--building,
  .about__photo--waiting,
  .about__photo--entrance {
    grid-column: auto;
    grid-row: auto;
  }

  .about__photo--large {
    min-height: 260px;
  }

  .doctors {
    padding: 72px 20px;
  }

  .doctors__layout {
    margin-top: 34px;
  }

  .doctor-card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .doctor-card__photo {
    min-height: 270px;
  }

  .doctor-card__photo span {
    margin-top: 74px;
  }

  .doctor-card__info {
    padding: 28px 22px 30px;
  }

  .services {
    padding: 72px 20px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-card {
    min-height: 0;
    border-radius: 20px;
    padding: 22px;
  }

  .services__bottom {
    gap: 12px;
  }

  .services__notice,
  .services__steps {
    border-radius: 22px;
    padding: 24px 20px;
  }

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

  .quiz {
    padding: 72px 20px;
  }

  .quiz-card {
    min-height: 0;
    border-radius: 24px;
  }

  .quiz-options button {
    min-height: 54px;
    border-radius: 16px;
    font-size: 14px;
  }

  .contacts {
    padding: 72px 20px;
  }

  .contacts__map {
    min-height: 360px;
    border-radius: 24px;
  }

  .contacts__map ymaps,
  .contacts__map iframe {
    border-radius: 24px;
  }

  .contact-card {
    border-radius: 18px;
    padding: 18px;
  }

  .site-footer {
    padding: 46px 20px 24px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 420px) {
  .logo {
    gap: 8px;
  }

  .logo__text span {
    font-size: 15px;
  }

  .logo__text small {
    font-size: 8px;
  }

  .header-cta {
    max-width: 150px;
    padding: 0 14px;
    font-size: 11px;
  }

  .burger-button {
    width: 42px;
    height: 42px;
  }

  .mobile-menu {
    width: calc(100vw - 24px);
    border-radius: 24px;
    padding: 16px;
  }

  .mobile-menu__cta {
    max-width: none;
    font-size: 12px;
  }

  .about__feature {
    grid-template-columns: 34px 1fr;
  }

  .about__gallery {
    grid-auto-rows: 190px;
  }

  .about__photo--large {
    min-height: 220px;
  }

  .doctor-tab {
    min-width: 238px;
    min-height: 64px;
    padding-left: 18px;
    font-size: 14px;
  }

  .doctor-card {
    border-radius: 24px;
  }

  .doctor-card__photo {
    min-height: 230px;
  }

  .doctor-card__info .primary-button {
    width: 100%;
  }

  .services__steps .primary-button {
    width: 100%;
  }

  .symptom-tags {
    grid-template-columns: 1fr;
  }

  .quiz-card {
    padding: 24px 18px;
  }

  .quiz-result .primary-button {
    width: 100%;
  }

  .contacts__content .primary-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .cta-attention,
  .cta-attention::after {
    animation: none;
  }
}
