/* =========================================================
   WeLUX — global styles
   ========================================================= */

/* ---------- Fonts (локально) ---------- */
@font-face {
  font-family: "Wix Madefor Display";
  src: url("../fonts/WixMadeforDisplay-Regular-Cyrillic.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Wix Madefor Display";
  src: url("../fonts/WixMadeforDisplay-Regular-Latin.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Wix Madefor Display";
  src: url("../fonts/WixMadeforDisplay-Medium-Cyrillic.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Wix Madefor Display";
  src: url("../fonts/WixMadeforDisplay-Medium-Latin.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Wix Madefor Display";
  src: url("../fonts/WixMadeforDisplay-Bold-Cyrillic.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Wix Madefor Display";
  src: url("../fonts/WixMadeforDisplay-Bold-Latin.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

/* ---------- CSS variables ---------- */
:root {
  /* colors */
  --color-bg: #ffffff;
  --color-beige: #f4f4e1; /* header / footer bg */
  --color-beige-2: #ccaf83; /* "Как добраться" */
  --color-text: #1c1c1c;
  --color-muted: #8a8a8a;
  --color-olive: #4a5040; /* фирменный тёмно-оливковый */
  --color-dark: #565541; /* "Обратный звонок" / dark accent */
  --color-line: rgba(0, 0, 0, 0.12);

  /* typography */
  --font-primary: "Wix Madefor Display", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Wix Madefor Display", "Helvetica Neue", Arial, sans-serif;

  /* layout */
  --container-max: 1440px;
  --container-pad: 40px;
  --header-h: 80px;

  /* transitions */
  --tr: 0.25s ease;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  min-height: 100vh;
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}
img,
svg {
  display: block;
  max-width: 100%;
}
img {
  height: auto;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition:
    opacity var(--tr),
    color var(--tr);
}
a:hover {
  opacity: 0.7;
}
a:focus-visible {
  outline: 2px solid var(--color-olive);
  outline-offset: 2px;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
address {
  font-style: normal;
}
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.screen-reader-text:focus {
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px 16px;
  clip: auto;
  background: #fff;
  color: var(--color-text);
  z-index: 1000;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ---------- Layout skeleton ---------- */
.main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

/* ==========================================================
   HEADER
   ========================================================== */
.header {
  background: var(--color-beige);
  position: sticky;
  top: 0;
  z-index: 20;
}
.header__inner {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.header__logo {
  justify-self: center;
  display: inline-flex;
  align-items: center;
}
.header__logo-img {
  display: block;
  height: 40px;
  width: auto;
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
}
.menu-item > a {
  color: var(--color-text);
}
.menu-item.current-menu-item > a,
.menu-item [aria-current] {
  color: var(--color-olive);
}
.menu-item-has-children > a::after {
  content: " ▾";
  font-size: 0.8em;
  opacity: 0.6;
}
.sub-menu {
  display: none;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-self: end;
}
.header__services {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
}
.header__service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.icon {
  flex-shrink: 0;
}

.header__burger {
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.header__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-text);
  transition:
    transform var(--tr),
    opacity var(--tr);
}
.header__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.header__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.header__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ==========================================================
   ERROR 404
   ========================================================== */
.error {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: clamp(60px, 10vh, 140px);
  background: var(--color-bg);
  width: 100%;
}
.error__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(24px, 4vh, 48px);
}
.error__code {
  font-family: var(--font-display);
  font-weight: 200;
  color: var(--color-olive);
  font-size: clamp(140px, 22vw, 320px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0;
}
.error__text {
  max-width: 560px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.55;
}
.error__link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  position: relative;
  background: var(--color-beige);
  overflow: hidden;
  isolation: isolate;
}
.footer__bg {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px #9d9b7a4d;
  text-stroke: 1px #9d9b7a4d;
  font-size: clamp(220px, 30vw, 520px);
  line-height: 0.8;
  letter-spacing: -0.02em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.footer__inner {
  position: relative;
  z-index: 1;
  padding-block: 80px 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.footer__col {
  min-width: 0;
}
.footer__title {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--color-text);
  margin-bottom: 20px;
  font-weight: 600;
}

/* map */
.footer__map {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #d9d3c5;
  position: relative;
}
.footer__map img,
.footer__map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  display: block;
}

/* hours */
.footer__hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
  margin-bottom: 28px;
}
.footer__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 260px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-align: center;
  transition:
    background var(--tr),
    color var(--tr),
    opacity var(--tr);
  cursor: pointer;
}
.btn--dark {
  background: var(--color-dark);
  color: #fff;
}
.btn--dark:hover {
  background: #6b6a52;
  opacity: 1;
}
.btn--beige {
  background: var(--color-beige-2);
  color: #fff;
}
.btn--beige:hover {
  background: #b89c73;
  opacity: 1;
}
.btn--olive {
  background: var(--color-olive);
  color: #fff;
  border-radius: 999px;
  min-height: 40px;
  padding: 10px 20px;
  font-size: 13px;
}
.btn--olive:hover {
  background: #3a3f31;
  opacity: 1;
}
.btn:focus-visible {
  outline: 2px solid var(--color-olive);
  outline-offset: 2px;
}

/* contacts */
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 15px;
  margin-bottom: 14px;
}
.footer__address {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 24px;
}

/* accordion */
.accordion {
  border-top: 1px solid var(--color-line);
  margin-bottom: 24px;
}
.accordion__item {
  border-bottom: 1px solid var(--color-line);
}
.accordion__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 15px;
  text-align: left;
}
.accordion__icon {
  font-size: 20px;
  line-height: 1;
  transition: transform var(--tr);
}
.accordion__head[aria-expanded="true"] .accordion__icon {
  transform: rotate(45deg);
}
.accordion__body {
  padding: 0 0 14px;
}
.footer__sublinks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--color-muted);
}

/* footer links */
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--color-muted);
}

/* footer bottom */
.footer__bottom {
  position: relative;
  z-index: 1;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--color-line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  color: var(--color-muted);
}
.footer__copy {
  grid-column: 1;
}
.footer__license {
  grid-column: 2;
  text-align: center;
  line-height: 1.4;
}
.footer__pay {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer__pay-list {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 26px;
  padding: 0 8px;
  background: #fff;
  border: 1px solid var(--color-line);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-text);
}

/* ==========================================================
   HOME HERO (index)
   ========================================================== */
.header--overlay {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
}
.header--overlay .menu > .menu-item > a {
  color: #2d2d2d;
}
.header--overlay .header__services {
  color: #2d2d2d;
}
.header__services-sep {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-beige-2);
  display: inline-block;
}
.header--overlay .menu > .menu-item > a:hover {
  color: var(--color-beige-2);
  opacity: 1;
}
.header__service-link--underline span {
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

/* brand (в строку: значок + WeLUX) */
.brand--row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #2d2d2d;
  line-height: 1;
}
.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2d2d2d;
}
.brand__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* hero section */
.hero {
  position: relative;
  min-height: clamp(700px, 92vh, 900px);
  width: 100%;
  color: #2d2d2d;
  overflow: hidden;
  isolation: isolate;
  display: flex;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #e8dece;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.05) 60%,
    rgba(0, 0, 0, 0.05) 100%
  );
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  min-height: inherit;
  text-align: center;
}

.hero__content--center {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #2d2d2d;
  margin-bottom: 28px;
}
.hero__desc {
  max-width: 620px;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.65;
  color: #4a4a4a;
  margin-bottom: 36px;
}
.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.btn--olive-lg {
  background: var(--color-olive);
  color: #fff;
  border-radius: 10px;
  min-height: 52px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
}
.btn--olive-lg:hover {
  background: #3a3f31;
  opacity: 1;
}
.btn--outline-dark {
  background: #ccaf83;
  color: #fff;
  border: 1px solid #ccaf83;
  border-radius: 10px;
  min-height: 52px;
  padding: 14px 28px;
  font-size: 15px;
}
.btn--outline-dark:hover {
  background: #b89c73;
  border-color: #b89c73;
  color: #fff;
  opacity: 1;
}

/* hero slider */
.hero-slider {
  margin-top: auto;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.hero-slider__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}
.hero-slider__label {
  font-size: 15px;
}
.hero-slider__counter {
  font-size: 15px;
}
.hero-slider__counter-current {
  color: #fff;
  font-weight: 600;
}
.hero-slider__counter-sep,
.hero-slider__counter-total {
  color: rgba(255, 255, 255, 0.5);
}

.hero-slider__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.hero-slide {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  transition: opacity var(--tr);
  opacity: 0.75;
}
.hero-slide:last-child {
  border-right: 0;
}
.hero-slide.is-active {
  opacity: 1;
}
.hero-slide__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  color: #fff;
  margin: 0;
}
.hero-slide__desc {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.hero-slide__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: #fff;
  font-size: 14px;
}
.hero-slide__more:hover {
  color: var(--color-beige-2);
  opacity: 1;
}
.hero-slide__more-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-beige-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform var(--tr);
}
.hero-slide__more:hover .hero-slide__more-circle {
  transform: translateX(3px);
}

/* ==========================================================
   INTRO METHOD — «Знакомство с методикой Welux»
   ========================================================== */
.intro-method {
  background: #f4f4e1;
  padding-block: clamp(60px, 8vw, 100px);
  width: 100%;
}
.intro-method__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.15;
  color: #2d2d2d;
  margin-bottom: 40px;
}
.intro-method__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.method-card {
  display: block;
}
.method-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 300 / 380;
  border-radius: 14px;
  overflow: hidden;
  background: #b39178;
  isolation: isolate;
}
.method-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.method-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
  z-index: 1;
}
.method-card__num {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ccaf83;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.method-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 18px 18px 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.method-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
.method-card__desc {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.method-card__more {
  align-self: flex-start;
  font-size: 12px;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 4px;
}
.method-card__more:hover {
  opacity: 1;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .intro-method__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 560px) {
  .intro-method__list {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   REASONS — «5 причин доверить нам своё здоровье»
   ========================================================== */
.reasons {
  background: #565541;
  padding-block: clamp(60px, 8vw, 100px);
  width: 100%;
  color: #fff;
}
.reasons__top {
  display: grid;
  grid-template-columns: 1fr 1.9fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
  min-height: 520px;
}
.reasons__intro {
  padding: 20px 0 20px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.reasons__label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
}
.reasons__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 28px;
}
.reasons__btn {
  background: #ccaf83;
  color: #fff;
  border-radius: 8px;
  min-height: 44px;
  padding: 10px 28px;
  font-size: 14px;
}
.reasons__btn:hover {
  background: #b89c73;
  opacity: 1;
}

.reasons__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.reason-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #2f2f26;
  isolation: isolate;
  min-height: 420px;
  display: flex;
}
.reason-card--big {
  min-height: 520px;
  height: 100%;
}
.reason-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.reason-card__glass {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 32px);
  padding: 22px;
  background: rgba(60, 60, 45, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: #fff;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  align-items: center;
}
.reason-card--big .reason-card__glass {
  left: auto;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 46%;
  max-width: 420px;
  padding: 32px;
  gap: 14px;
}
.reason-card__num {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
}
.reason-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
.reason-card--big .reason-card__title {
  font-size: 20px;
}
.reason-card__desc {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
.reason-card--big .reason-card__desc {
  font-size: 13px;
}

@media (max-width: 1024px) {
  .reasons__top {
    grid-template-columns: 1fr;
  }
  .reason-card--big {
    min-height: 380px;
  }
  .reason-card--big .reason-card__glass {
    position: absolute;
    inset: auto 18px 18px 18px;
    width: auto;
    max-width: none;
    top: auto;
  }
  .reasons__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .reasons__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   SERVICES BLOCK (главная — «Услуги»)
   ========================================================== */
.services-block {
  background: #fff;
  padding-block: clamp(60px, 7vw, 90px);
  width: 100%;
}
.services-block__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.services-block__label {
  font-size: 14px;
  color: #6a6a6a;
}
.services-block__switch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #8a8a8a;
}
.services-block__switch-label {
  line-height: 1;
}
.services-block__switch-label.is-active {
  color: #2d2d2d;
}

.services-block__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.svc-card {
  position: relative;
  display: block;
  aspect-ratio: 320 / 380;
  border-radius: 14px;
  overflow: hidden;
  background: #d9c8b3;
  isolation: isolate;
}
.svc-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.svc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 45%,
    rgba(0, 0, 0, 0.45) 100%
  );
  z-index: 1;
}
.svc-card__arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(204, 175, 131, 0.85);
  backdrop-filter: blur(4px);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform var(--tr),
    background var(--tr);
}
.svc-card:hover .svc-card__arrow {
  background: #b89c73;
  transform: rotate(-10deg);
  opacity: 1;
}
.svc-card:hover {
  opacity: 1;
}
.svc-card__title {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.2;
}

.services-block__cta {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
.services-block__btn {
  background: #ccaf83;
  color: #fff;
  border-radius: 8px;
  min-height: 44px;
  padding: 10px 30px;
  font-size: 14px;
}
.services-block__btn:hover {
  background: #b89c73;
  opacity: 1;
}

@media (max-width: 1024px) {
  .services-block__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .services-block__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   OFFERS — «Специальные предложения»
   ========================================================== */
.offers {
  background: #fff;
  padding-block: clamp(50px, 6vw, 80px);
  width: 100%;
}
.offers__head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
}
.offers__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 34px);
  color: #2d2d2d;
  text-align: center;
}
.offers__nav {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.offers__arrow {
  color: #b7b7b7;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color var(--tr);
}
.offers__arrow:hover {
  color: #2d2d2d;
}
.offers__dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.offers__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d0d0d0;
  transition:
    background var(--tr),
    width var(--tr);
}
.offers__dot.is-active {
  background: #2d2d2d;
  width: 20px;
  border-radius: 999px;
}

.offers__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* base banner */
.offer-banner {
  position: relative;
  display: grid;
  border-radius: 16px;
  overflow: hidden;
  min-height: 200px;
  isolation: isolate;
}

/* beige banner */
.offer-banner--beige {
  background: #c9b497;
  grid-template-columns: 1.05fr 1fr 1fr;
  align-items: stretch;
}
.offer-banner--beige .offer-banner__left {
  padding: 22px 20px 22px 26px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.offer-banner__heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.05em;
  color: #fff;
  margin: 0;
}
.offer-banner__text {
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 240px;
}
.offer-banner__media {
  position: relative;
  overflow: hidden;
  background: #b79a78;
}
.offer-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.offer-banner--beige .offer-banner__right {
  padding: 22px 26px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 6px;
  background: #c9b497;
}

/* dark banner */
.offer-banner--dark {
  background: #4a4b36;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: stretch;
}
.offer-banner--dark .offer-banner__center {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.offer-banner__date {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.15);
  padding: 4px 12px;
  border-radius: 999px;
}
.offer-banner__date--dark {
  background: rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.85);
}

.offer-banner__big {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1;
  color: #fff;
  letter-spacing: 0.02em;
}
.offer-banner__big--light {
  color: #fff;
}
.offer-banner__sub {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #fff;
}
.offer-banner__sub--light {
  color: #fff;
}

.offer-banner__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 4px;
}
.offer-banner__more:hover {
  opacity: 1;
  text-decoration: none;
}
.offer-banner__more-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ccaf83;
  display: inline-block;
}

@media (max-width: 1024px) {
  .offers__grid {
    grid-template-columns: 1fr;
  }
  .offer-banner--beige,
  .offer-banner--dark {
    grid-template-columns: 1fr 1fr;
  }
  .offer-banner--beige .offer-banner__media,
  .offer-banner--dark .offer-banner__media--right {
    display: none;
  }
}
@media (max-width: 560px) {
  .offer-banner--beige,
  .offer-banner--dark {
    grid-template-columns: 1fr;
  }
  .offer-banner--dark .offer-banner__media--left {
    display: none;
  }
  .offer-banner__text {
    max-width: none;
  }
}

/* ==========================================================
   PROGRAMS-HOME — «Комплексные программы» (главная)
   ========================================================== */
.programs-home {
  background: #fff;
  padding-block: clamp(50px, 6vw, 80px);
  width: 100%;
}
.programs-home__head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}
.programs-home__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 2.8vw, 36px);
  color: #2d2d2d;
  text-align: center;
}
.programs-home__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
  margin-bottom: 48px;
}

/* картинка карточки на главной — чуть ниже */
.programs-home .program-card__media {
  aspect-ratio: 300 / 340;
  background: #c9b497;
}

/* ===== Индивидуальный подбор программы ===== */
.picker {
  position: relative;
  background: #d6b98a;
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 380px;
  isolation: isolate;
}
.picker__content {
  padding: clamp(24px, 3vw, 42px);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  max-width: 520px;
}
.picker__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1;
  color: #fff;
  margin: 0;
}
.picker__text {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 420px;
}
.picker__meta {
  display: grid;
  grid-template-columns: auto auto;
  gap: 8px 40px;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.picker__row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.picker__row dt {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}
.picker__row dd {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.picker__note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  margin: 6px 0 4px;
}
.picker__btn {
  align-self: flex-start;
  background: #2f3628;
  color: #fff;
  border-radius: 8px;
  min-height: 46px;
  padding: 12px 22px;
  font-size: 14px;
}
.picker__btn:hover {
  background: #1f251a;
  opacity: 1;
}

.picker__media {
  position: relative;
  overflow: hidden;
}
.picker__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1024px) {
  .programs-home__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .picker {
    grid-template-columns: 1fr;
  }
  .picker__media {
    min-height: 260px;
    position: relative;
  }
}
@media (max-width: 560px) {
  .programs-home__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   COSMETICS PAGE — «Уход»
   ========================================================== */
.cosmetics {
  background: #fff;
  padding-block: clamp(40px, 5vw, 70px);
  width: 100%;
}
.cosmetics__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.cosmetics__label {
  font-size: 14px;
  color: #2d2d2d;
}
.cosmetics__all {
  font-size: 14px;
  color: #2d2d2d;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cosmetics__all:hover {
  opacity: 1;
  text-decoration: none;
}

.cosmetics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* product card */
.prod-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.prod-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 300 / 300;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  margin-bottom: 8px;
}
.prod-card__media--light {
  background: #ededed;
}
.prod-card__media--dark {
  background: #4c5040;
}
.prod-card__media img {
  max-width: 78%;
  max-height: 82%;
  object-fit: contain;
  display: block;
  z-index: 1;
}
.prod-card__tags {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  z-index: 2;
}
.prod-card__tags li {
  font-size: 10px;
  color: #6a6a6a;
  background: rgba(255, 255, 255, 0.7);
  padding: 3px 8px;
  border-radius: 6px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.prod-card__tags--dark li {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.prod-card__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #2d2d2d;
  text-transform: uppercase;
  margin-top: 6px;
}
.prod-card__price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}
.prod-card__price-label {
  font-size: 12px;
  color: var(--color-muted);
}
.prod-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.prod-card__price-new {
  font-size: 18px;
  font-weight: 700;
  color: #2d2d2d;
}
.prod-card__price-old {
  font-size: 14px;
  color: #b5b5b5;
  text-decoration: line-through;
}
.prod-card__buy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-size: 13px;
  color: #2d2d2d;
  text-decoration: underline;
  text-underline-offset: 3px;
  align-self: flex-start;
}
.prod-card__buy:hover {
  opacity: 1;
  text-decoration: none;
}
.prod-card__buy-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #ccaf83;
  display: inline-block;
}

@media (max-width: 1024px) {
  .cosmetics__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .cosmetics__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   GIFT — «Подарочные сертификаты»
   ========================================================== */
.gift {
  background: #fff;
  padding-block: clamp(30px, 4vw, 60px);
  width: 100%;
}
.gift__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: stretch;
  background: #565541;
  border-radius: 20px;
  overflow: hidden;
  min-height: 300px;
  isolation: isolate;
}
.gift__content {
  padding: clamp(28px, 3.5vw, 48px);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  max-width: 460px;
}
.gift__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.05;
  color: #fff;
  margin: 0 0 4px;
}
.gift__lead {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
}
.gift__text {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 380px;
}
.gift__btn {
  align-self: flex-start;
  background: #ccaf83;
  color: #fff;
  border-radius: 8px;
  min-height: 44px;
  padding: 10px 24px;
  font-size: 14px;
  margin-top: 6px;
}
.gift__btn:hover {
  background: #b89c73;
  opacity: 1;
}
.gift__note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 8px 0 0;
  max-width: 360px;
}
.gift__media {
  position: relative;
  overflow: hidden;
}
.gift__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 1024px) {
  .gift__inner {
    grid-template-columns: 1fr;
  }
  .gift__media {
    min-height: 260px;
  }
}

/* ==========================================================
   SPECIALISTS-HOME — «Наши специалисты» (главная)
   ========================================================== */
.specialists-home {
  background: #fff;
  padding-block: clamp(50px, 6vw, 80px);
  width: 100%;
}
.specialists-home__head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}
.specialists-home__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 2.8vw, 36px);
  color: #2d2d2d;
  text-align: center;
}
.specialists-home__all {
  justify-self: center;
  grid-column: 2;
  grid-row: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #2d2d2d;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 6px;
}
.specialists-home__all:hover {
  opacity: 1;
  text-decoration: none;
}
.specialists-home__all-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-beige-2);
  display: inline-block;
}
.specialists-home .specialists__grid {
  gap: 40px 24px;
}

/* ==========================================================
   COZY — «Комфортный и уютный дизайн»
   ========================================================== */
.cozy {
  background: #fff;
  padding-block: clamp(40px, 5vw, 70px);
  width: 100%;
}
.cozy__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.cozy__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 2.8vw, 36px);
  color: #2d2d2d;
  margin: 0;
}
.cozy__media {
  width: 100%;
  aspect-ratio: 1400 / 520;
  border-radius: 20px;
  overflow: hidden;
  background: #e8dece;
}
.cozy__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .cozy__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .cozy__media {
    aspect-ratio: 4 / 3;
  }
}

/* ==========================================================
   TIPS — «Делимся опытом и советами» (главная, ре-юз блога)
   ========================================================== */
.tips {
  background: #fff;
  padding-block: clamp(50px, 6vw, 80px);
  width: 100%;
}
.tips__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.tips__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 42px);
  color: #2d2d2d;
  margin: 0;
}
.tips .blog__grid {
  align-items: start;
}
@media (max-width: 768px) {
  .tips__head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================
   REVIEWS — «Отзывы клиентов»
   ========================================================== */
.reviews {
  background: #fff;
  padding-block: clamp(50px, 6vw, 80px);
  width: 100%;
}
.reviews__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 42px);
  color: #2d2d2d;
  margin: 0 0 24px;
}
.reviews__ratings {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.rating-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #2d2d2d;
}
.rating-item__logo {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
}
.rating-item__logo--yandex .rating-item__ya-y {
  color: #ff3d00;
  font-weight: 700;
}
.rating-item__logo--yandex .rating-item__ya-ndex {
  color: #111;
  font-weight: 700;
}
.rating-item__logo--2gis {
  color: #19b336;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.rating-item__gis-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #19b336;
  position: relative;
  display: inline-block;
}
.rating-item__gis-icon::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #fff;
}
.rating-item__logo--google {
  font-family: var(--font-display);
  font-weight: 500;
  color: #5f6368;
  font-size: 22px;
}
.rating-item__star {
  color: #ccaf83;
  font-size: 16px;
}
.rating-item__value {
  font-size: 15px;
  color: #2d2d2d;
}

.reviews__nav {
  margin-left: auto;
}

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 28px;
}

.review {
  background: #f4f1df;
  border-radius: 14px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review__head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #2d2d2d;
}
.review__name {
  font-weight: 500;
}
.review__star {
  color: #ccaf83;
}
.review__rating {
  color: #2d2d2d;
}
.review__date {
  margin-left: auto;
  color: #8a8a8a;
  font-size: 12px;
}
.review__text {
  font-size: 12px;
  line-height: 1.55;
  color: #333;
  margin: 0;
}
.review__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #2d2d2d;
  text-decoration: underline;
  text-underline-offset: 3px;
  align-self: flex-start;
}
.review__more:hover {
  opacity: 1;
  text-decoration: none;
}
.review__more-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccaf83;
  display: inline-block;
}
.review__photos {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.review__photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: #d6cbb5;
  flex-shrink: 0;
  display: inline-block;
}
.review__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.review__photos-next {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: transparent;
  color: #ccaf83;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.review__doctor {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.review__doctor-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.review__doctor-spec {
  font-size: 12px;
  color: #8a8a8a;
}
.review__doctor-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #2d2d2d;
}
.review__doctor-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  background: #d6cbb5;
  display: inline-block;
  flex-shrink: 0;
}
.review__doctor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviews__btn {
  background: #2f3628;
  color: #fff;
  border-radius: 8px;
  min-height: 44px;
  padding: 10px 22px;
  font-size: 14px;
  align-self: flex-start;
  display: inline-flex;
}
.reviews__btn:hover {
  background: #1f251a;
  opacity: 1;
}

@media (max-width: 1024px) {
  .reviews__grid {
    grid-template-columns: 1fr;
  }
  .reviews__nav {
    margin-left: 0;
  }
}

/* ==========================================================
   SOCIALS — «Мы в социальных сетях»
   ========================================================== */
.socials {
  background: #fff;
  padding-block: clamp(40px, 6vw, 80px);
  width: 100%;
}
.socials__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: center;
}
.socials__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 460px;
}
.socials__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1;
  color: #2d2d2d;
  margin: 0;
}
.socials__text {
  font-size: 13px;
  line-height: 1.55;
  color: #6a6a6a;
  margin: 0;
  max-width: 380px;
}
.socials__list {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
}
.soc {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid #e2e1d6;
  background: #fff;
  color: #67634b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--tr),
    color var(--tr),
    border-color var(--tr);
}
.soc:hover {
  background: #67634b;
  color: #fff;
  border-color: #67634b;
  opacity: 1;
}
.socials__media {
  width: 100%;
  aspect-ratio: 720 / 380;
  border-radius: 20px;
  overflow: hidden;
  background: #c9b497;
}
.socials__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1024px) {
  .socials__inner {
    grid-template-columns: 1fr;
  }
  .socials__media {
    aspect-ratio: 4 / 3;
  }
}

/* ==========================================================
   DETOX HERO — «Детокс-модуль IYASHI DOME»
   ========================================================== */
.page--detox .header--overlay {
  background: #f4f4e1;
  position: sticky;
}
.detox-hero {
  position: relative;
  width: 100%;
  background: #ccaf83;
  padding-top: var(--header-h);
  overflow: hidden;
  isolation: isolate;
}
.detox-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0;
  align-items: stretch;
  min-height: 640px;
}
.detox-hero__left {
  padding: clamp(40px, 5vw, 80px) clamp(24px, 4vw, 60px) clamp(40px, 5vw, 80px)
    clamp(24px, 5vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  color: #2d2d2d;
  max-width: 640px;
  background: #ccaf83;
}
.detox-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
}
.detox-hero__tags li {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 8px;
  font-size: 12px;
  color: #2d2d2d;
  line-height: 1.2;
}
.detox-hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.05;
  color: #2d2d2d;
  margin: 0;
}
.detox-hero__desc {
  font-size: 13px;
  line-height: 1.55;
  color: #4a4a4a;
  margin: 0;
  max-width: 460px;
}
.detox-hero__desc-em {
  color: #2d2d2d;
}
.detox-hero__btn {
  align-self: flex-start;
  margin-top: 4px;
  background: #565541;
}
.detox-hero__btn:hover {
  background: #3f3e2f;
}
.detox-hero__note {
  font-size: 13px;
  line-height: 1.55;
  color: #4a4a4a;
  margin: 20px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  max-width: 400px;
}

/* right side — image + overlaid cards */
.detox-hero__right {
  position: relative;
  min-height: 640px;
}
.detox-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #b79a78;
}
.detox-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.detox-hero__cards {
  position: absolute;
  right: clamp(24px, 4vw, 60px);
  bottom: clamp(60px, 8vw, 100px);
  display: flex;
  gap: 12px;
  z-index: 2;
}
.detox-card {
  width: 150px;
  min-height: 150px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(60, 60, 45, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}
.detox-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.detox-card__text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.25;
  color: #fff;
}

/* marquee */
.detox-hero__marquee {
  position: relative;
  background: #c9b497;
  color: #fff;
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}
.detox-hero__marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: detox-marquee 32s linear infinite;
  padding-left: 40px;
}
.detox-hero__marquee-track span {
  font-size: 14px;
  letter-spacing: 0.04em;
  position: relative;
  padding-right: 40px;
}
.detox-hero__marquee-track span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
}
@keyframes detox-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1024px) {
  .detox-hero__inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .detox-hero__right {
    min-height: 480px;
  }
  .detox-hero__cards {
    right: 20px;
    bottom: 20px;
  }
}
@media (max-width: 560px) {
  .detox-card {
    width: 130px;
    min-height: 130px;
    padding: 12px;
  }
}

/* ==========================================================
   DETOX SERVICES — «Услуги»
   ========================================================== */
.detox-services {
  background: #fff;
  padding-block: clamp(50px, 6vw, 90px);
  width: 100%;
}
.detox-services__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 3.6vw, 46px);
  color: #2d2d2d;
  margin-bottom: 28px;
}
.detox-services__card {
  border: 1px solid #e6e6e1;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.detox-services__head {
  background: #f4f1df;
  padding: 18px 28px;
  border-bottom: 1px solid #e6e6e1;
}
.detox-services__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: #2d2d2d;
  margin: 0;
}
.detox-services__list {
  display: flex;
  flex-direction: column;
}
.detox-srv {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px 28px;
  border-bottom: 1px solid #efefea;
}
.detox-srv:last-child {
  border-bottom: 0;
}
.detox-srv__name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2d2d2d;
}
.detox-srv__col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.detox-srv__label {
  font-size: 12px;
  color: var(--color-muted);
}
.detox-srv__value {
  font-size: 18px;
  font-weight: 700;
  color: #2d2d2d;
}
.detox-srv__value--old {
  font-size: 15px;
  font-weight: 400;
  color: #b5b5b5;
}
.detox-srv__value--old s {
  text-decoration: line-through;
}
.detox-srv__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #2d2d2d;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.detox-srv__more:hover {
  opacity: 1;
  text-decoration: none;
}
.detox-srv__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-beige-2);
  display: inline-block;
}

@media (max-width: 768px) {
  .detox-srv {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 18px 20px;
  }
  .detox-srv__name {
    grid-column: 1 / -1;
  }
  .detox-srv__more {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }
}

/* ==========================================================
   DETOX HISTORY — «История IYASHI DOME»
   ========================================================== */
.detox-history {
  background: #fff;
  padding-block: clamp(30px, 4vw, 60px);
  width: 100%;
}
.detox-history__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
}
.detox-history__media {
  width: 100%;
  aspect-ratio: 520 / 460;
  border-radius: 14px;
  overflow: hidden;
  background: #e8dece;
}
.detox-history__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.detox-history__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.detox-history__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  color: #2d2d2d;
  margin: 0 0 8px;
}
.detox-history__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}
.detox-hist {
  padding-top: 18px;
  border-top: 1px solid #e6e6e1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.detox-hist__num {
  font-size: 12px;
  color: var(--color-muted);
  letter-spacing: 0.04em;
}
.detox-hist__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: #2d2d2d;
  margin: 0;
}
.detox-hist__text {
  font-size: 13px;
  line-height: 1.55;
  color: #6a6a6a;
  margin: 0;
}
@media (max-width: 1024px) {
  .detox-history__inner {
    grid-template-columns: 1fr;
  }
  .detox-history__media {
    aspect-ratio: 4 / 3;
  }
}

/* ==========================================================
   DETOX PROBLEMS — «Рекомендуется при следующих проблемах»
   ========================================================== */
.detox-problems {
  background: #fff;
  padding-block: clamp(50px, 6vw, 90px);
  overflow: hidden;
}
.detox-problems__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 44px);
  color: #2d2d2d;
  text-align: center;
  margin-bottom: 40px;
}
.detox-problems__rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.detox-problems__row {
  width: 100%;
  overflow: hidden;
}
.detox-problems__list {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  margin: 0;
  padding: 0 20px;
  list-style: none;
  min-width: max-content;
}
.detox-problems__row--offset .detox-problems__list {
  padding-left: 100px;
}
.detox-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 8px;
  background: #f4f1df;
  border-radius: 999px;
  height: 52px;
  white-space: normal;
  max-width: 320px;
  flex-shrink: 0;
}
.detox-pill__ava {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #d6cbb5 center/cover no-repeat;
  flex-shrink: 0;
}
.detox-pill__text {
  font-size: 12px;
  line-height: 1.3;
  color: #2d2d2d;
}
@media (max-width: 768px) {
  .detox-problems__row--offset .detox-problems__list {
    padding-left: 40px;
  }
}

/* ==========================================================
   DETOX EFFECT — «Эффект детокс-модуля YASHI DOME»
   ========================================================== */
.detox-effect {
  position: relative;
  width: 100%;
  min-height: clamp(420px, 46vw, 640px);
  overflow: hidden;
  isolation: isolate;
  background: #d8cbb4;
}
.detox-effect__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.detox-effect__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.detox-effect__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: clamp(40px, 6vw, 90px) var(--container-pad);
  min-height: inherit;
}
.detox-effect__title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.15;
  color: #fff;
  text-align: center;
  margin: 0;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}
.detox-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
  transition: background var(--tr);
}
.detox-chip:hover {
  background: rgba(255, 255, 255, 0.5);
}
.detox-chip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
}
.detox-chip--tl {
  top: 26%;
  left: 12%;
}
.detox-chip--tr {
  top: 30%;
  right: 10%;
}
.detox-chip--mr {
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
}
.detox-chip--bl {
  bottom: 22%;
  left: 18%;
}
.detox-chip--bc {
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

@media (max-width: 768px) {
  .detox-effect__title {
    position: static;
    transform: none;
    margin: 0 0 20px;
    white-space: normal;
  }
  .detox-effect__inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .detox-chip {
    position: static;
    transform: none;
    align-self: flex-start;
  }
}

/* ==========================================================
   DETOX PROC — «Что из себя представляет процедура?»
   ========================================================== */
.detox-proc {
  background: #fff;
  padding-block: clamp(50px, 6vw, 90px);
}
.detox-proc__head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}
.detox-proc__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 40px);
  color: #2d2d2d;
  text-align: center;
  margin: 0;
}
.detox-proc__nav {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.detox-proc__arrow {
  color: #b7b7b7;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color var(--tr);
}
.detox-proc__arrow:hover {
  color: #2d2d2d;
}
.detox-proc__dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.detox-proc__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d0d0d0;
  transition:
    background var(--tr),
    width var(--tr);
}
.detox-proc__dot.is-active {
  background: #2d2d2d;
  width: 20px;
  border-radius: 999px;
}

.detox-proc__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.detox-proc__card {
  border-radius: 14px;
  padding: 28px 24px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.detox-proc__card--light {
  background: #efebdc;
  color: #2d2d2d;
}
.detox-proc__card--dark {
  background: #6c6c4e;
  color: #fff;
}
.detox-proc__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  opacity: 0.85;
  margin-bottom: 18px;
}
.detox-proc__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: inherit;
  margin: 0;
  text-transform: uppercase;
}
.detox-proc__text {
  font-size: 12px;
  line-height: 1.55;
  color: inherit;
  opacity: 0.75;
  margin: auto 0 0;
}

@media (max-width: 1024px) {
  .detox-proc__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .detox-proc__grid {
    grid-template-columns: 1fr;
  }
  .detox-proc__head {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .detox-proc__title {
    text-align: left;
  }
  .detox-proc__nav {
    justify-self: start;
  }
}

/* ==========================================================
   DETOX COMPARE — «Сравнение с физическими упражнениями»
   ========================================================== */
.detox-compare {
  background: #fff;
  padding-block: clamp(50px, 6vw, 90px);
}
.detox-compare__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.25;
  color: #2d2d2d;
  margin: 0 0 28px;
}
.detox-compare__table {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.detox-compare__head,
.detox-compare__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.detox-compare__th {
  background: #c9b497;
  color: #fff;
  text-align: center;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
}
.detox-compare__cell {
  background: #fff;
  border: 1px solid #e6e6e1;
  border-radius: 4px;
  padding: 16px 20px;
  text-align: center;
  font-size: 13px;
  color: #2d2d2d;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .detox-compare__head {
    display: none;
  }
  .detox-compare__row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   DETOX BEFORE/AFTER — «До/после»
   ========================================================== */
.detox-ba {
  background: #fff;
  padding-block: clamp(50px, 6vw, 90px);
}
.detox-ba__head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
}
.detox-ba__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 30px);
  color: #2d2d2d;
  text-align: center;
  margin: 0;
}
.detox-ba__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.detox-ba__item {
  position: relative;
  width: 100%;
  aspect-ratio: 560 / 340;
  border-radius: 8px;
  overflow: hidden;
  background: #eee;
}
.detox-ba__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.detox-ba__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #fff;
  border-radius: 4px;
  padding: 6px 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.detox-ba__handle i {
  width: 0;
  height: 0;
  border-style: solid;
  display: inline-block;
}
.detox-ba__handle--h::before,
.detox-ba__handle--v::before {
  content: "";
  position: absolute;
  background: #fff;
  z-index: -1;
}
.detox-ba__handle--h::before {
  left: -100vw;
  right: -100vw;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
}
.detox-ba__handle--v::before {
  top: -100vw;
  bottom: -100vw;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
}
.detox-ba__handle--h i:first-child {
  border-width: 5px 7px 5px 0;
  border-color: transparent #2d2d2d transparent transparent;
}
.detox-ba__handle--h i:last-child {
  border-width: 5px 0 5px 7px;
  border-color: transparent transparent transparent #2d2d2d;
}
.detox-ba__handle--v i:first-child {
  border-width: 0 5px 7px 5px;
  border-color: transparent transparent #2d2d2d transparent;
}
.detox-ba__handle--v i:last-child {
  border-width: 7px 5px 0 5px;
  border-color: #2d2d2d transparent transparent transparent;
}

@media (max-width: 768px) {
  .detox-ba__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   DETOX FAQ — «Отвечаем на ваши вопросы»
   ========================================================== */
.detox-faq {
  background: #fff;
  padding-block: clamp(30px, 4vw, 60px);
}
.detox-faq__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
}
.detox-faq__media {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.detox-faq__label {
  font-size: 13px;
  color: var(--color-muted);
}
.detox-faq__img {
  width: 100%;
  aspect-ratio: 380 / 380;
  border-radius: 8px;
  overflow: hidden;
  background: #e8dece;
}
.detox-faq__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.detox-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.detox-faq__item {
  border-bottom: 1px solid #e6e6e1;
  padding: 22px 0;
  position: relative;
}
.detox-faq__item:first-child {
  padding-top: 0;
}
.detox-faq__num {
  display: block;
  font-size: 11px;
  color: var(--color-muted);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.detox-faq__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}
.detox-faq__q {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.25;
  color: #2d2d2d;
}
.detox-faq__toggle {
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  color: #2d2d2d;
  flex-shrink: 0;
}
.detox-faq__body {
  margin-top: 16px;
  padding: 18px 20px;
  border: 1px solid #e6e6e1;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.detox-faq__body p {
  font-size: 12px;
  line-height: 1.55;
  color: #6a6a6a;
  margin: 0;
}
.detox-faq__item:not(.is-open) .detox-faq__body {
  display: none;
}

@media (max-width: 768px) {
  .detox-faq__inner {
    grid-template-columns: 1fr;
  }
  .detox-faq__img {
    aspect-ratio: 4 / 3;
  }
}

/* ==========================================================
   WordPress editor content (глобальные утилиты)



   ========================================================== */
.alignleft {
  float: left;
  margin: 0 24px 16px 0;
}
.alignright {
  float: right;
  margin: 0 0 16px 24px;
}
.alignwide {
  max-width: 1100px;
  margin-inline: auto;
}
.alignfull {
  width: 100%;
}
.wp-caption {
  max-width: 100%;
}
.entry-content table {
  width: 100%;
  border-collapse: collapse;
}
.entry-content table th,
.entry-content table td {
  padding: 10px;
  border-bottom: 1px solid var(--color-line);
  text-align: left;
}
.entry-content blockquote {
  border-left: 3px solid var(--color-olive);
  padding: 8px 0 8px 20px;
  color: var(--color-muted);
  margin: 20px 0;
}
.entry-content ul,
.entry-content ol {
  padding-left: 20px;
}
.entry-content ul li {
  list-style: disc;
}
.entry-content ol li {
  list-style: decimal;
}

/* ==========================================================
   PRICE PAGE
   ========================================================== */
.price {
  width: 100%;
  padding-block: 32px 120px;
  background: #fafaf6;
}
.breadcrumbs {
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 32px;
}
.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.breadcrumbs__list li + li::before {
  content: "/";
  margin-right: 6px;
  color: var(--color-muted);
}
.breadcrumbs a:hover {
  color: var(--color-text);
  opacity: 1;
}
.breadcrumbs [aria-current] {
  color: var(--color-text);
}

.price__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 40px;
}

.price__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 72px;
  max-width: 1100px;
}
.price__desc,
.price__note {
  font-size: 15px;
  line-height: 1.6;
  color: #4a4a4a;
  max-width: 460px;
}

/* Category accordion */
.cats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cats__item {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: box-shadow var(--tr);
}
.cats__head {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 32px 18px 18px;
  min-height: 96px;
  text-align: left;
  color: var(--color-text);
}
.cats__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f4f4e1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.cats__icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}
.cats__name {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}
.cats__toggle {
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  color: var(--color-text);
  transition: transform var(--tr);
  width: 32px;
  text-align: center;
}
.cats__head[aria-expanded="true"] .cats__toggle {
  transform: rotate(45deg);
}
.cats__body {
  padding: 0 32px 24px;
}
.cats__head:focus-visible {
  outline: 2px solid var(--color-olive);
  outline-offset: -2px;
}

/* Services list */
.services {
  border-top: 1px solid var(--color-line);
  display: flex;
  flex-direction: column;
}
.service {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-line);
}
.service:last-child {
  border-bottom: 0;
}
.service__name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text);
}
.service__price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.service__label {
  font-size: 12px;
  color: var(--color-muted);
}
.service__price--sale .service__value {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
}
.service__price--old .service__value {
  font-size: 16px;
  color: #b5b5b5;
}
.service__price--old s {
  text-decoration: line-through;
}
.service__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text);
  white-space: nowrap;
}
.service__more:hover {
  opacity: 0.6;
}
.service__dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-beige-2);
}

/* ==========================================================
   PRIVACY / POLICY PAGE
   ========================================================== */
.policy {
  width: 100%;
  background: #fff;
  padding-block: 48px 120px;
}
.policy__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #111;
  text-align: left;
  margin-bottom: 40px;
  max-width: 900px;
}
.policy__box {
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  background: #fff;
  padding: clamp(24px, 4vw, 56px);
}
.policy__box p {
  font-size: 14px;
  line-height: 1.7;
  color: #111;
  margin-bottom: 14px;
}
.policy__h2 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: #111;
  margin-top: 32px;
  margin-bottom: 16px;
  line-height: 1.3;
}
.policy__h2:first-child {
  margin-top: 0;
}
.policy__h3 {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  margin-top: 20px;
  margin-bottom: 12px;
}

/* ==========================================================
   ARTICLE PAGE
   ========================================================== */
.article {
  width: 100%;
  background: #fff;
  padding-block: 32px 120px;
}

.article__head {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: start;
  gap: 40px;
  margin-bottom: 40px;
}

.article__author {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.article__author-photo {
  width: 120px;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  background: #eee;
  flex-shrink: 0;
}
.article__author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.article__author-label {
  font-size: 12px;
  color: var(--color-muted);
  margin-top: 6px;
}
.article__author-label:first-child {
  margin-top: 0;
}
.article__author-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
}

.article__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-align: center;
  color: var(--color-text);
  align-self: center;
}

.article__meta {
  justify-self: end;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}
.article__date {
  font-size: 14px;
  color: var(--color-text);
  font-weight: 500;
}
.article__reading {
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 8px;
}
.article__btn {
  align-self: flex-end;
}

.article__intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
  max-width: 1100px;
}
.article__intro p {
  font-size: 15px;
  line-height: 1.65;
  color: #333;
}

/* info cards */
.info-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  padding: 40px;
  border: 1px solid #e2e2e2;
  border-radius: 32px;
  background: #fff;
  margin-bottom: 32px;
}
.info-card--reverse .info-card__media {
  order: 0;
}
.info-card--text {
  grid-template-columns: 1fr;
}
.info-card__text {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}
.info-card__text--wide {
  max-width: none;
}
.info-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.25;
  color: var(--color-text);
  margin-bottom: 6px;
}
.info-card__text p {
  font-size: 14px;
  line-height: 1.65;
  color: #333;
}
.info-card__media {
  border-radius: 24px;
  overflow: hidden;
  background: #eee;
  min-height: 320px;
}
.info-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.info-card__media--tall {
  min-height: 460px;
}

/* ==========================================================
   BLOG (Полезные статьи)
   ========================================================== */
.blog {
  width: 100%;
  background: #fff;
  padding-block: 32px 120px;
}
.blog__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #2d2d2d;
  margin-bottom: 48px;
}

/* toolbar */
.blog__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
.search {
  flex: 1 1 auto;
  max-width: 520px;
}
.search__field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  background: #ffffff;
  border: 1px solid #cfcfcf;
  border-radius: 999px;
}
.search__icon {
  color: #afafaf;
  flex-shrink: 0;
}
.search__input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 14px;
  color: var(--color-text);
}
.search__input::placeholder {
  color: #afafaf;
}

.slider-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.slider-nav__btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #bebebe;
  border-radius: 50%;
  transition: color var(--tr);
}
.slider-nav__btn:hover {
  color: #67634b;
}
.slider-nav__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.slider-nav__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #bebebe;
  transition:
    background var(--tr),
    width var(--tr);
}
.slider-nav__dot.is-active {
  width: 24px;
  border-radius: 999px;
  background: #67634b;
}

/* grid */
.blog__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.blog__col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* card base */
.post {
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.post__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.post__date,
.post__reading {
  font-size: 12px;
  color: #bdb7a2;
  line-height: 1.4;
}
.post__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: 0.02em;
  color: #2d2d2d;
  margin-top: 12px;
  margin-bottom: 8px;
  line-height: 1.1;
}
.post__desc {
  font-size: 14px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 16px;
}
.post__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #5a5a5a;
  align-self: flex-start;
}
.post__more-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #d7b985;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--tr);
}
.post__more:hover {
  opacity: 1;
}
.post__more:hover .post__more-circle {
  transform: translateX(3px);
}

.post__media {
  width: 100%;
  overflow: hidden;
  background: #eee;
}
.post__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* large left card — matches height of right column */
.post--large {
  background: #f4f4e1;
  padding: 32px;
  width: 100%;
  height: 100%;
}
.post--large .post__body {
  padding: 12px 12px 20px;
}
.post--large .post__media {
  flex: 1 1 auto;
  margin-top: auto;
  border-radius: 20px;
  min-height: 0;
}

/* right cards — same width as left, height auto to fit text */
.post--olive {
  background: #a9a983;
  flex-direction: row;
  align-items: stretch;
  padding: 24px;
  gap: 24px;
  width: 100%;
  min-height: 230px;
}
.post--olive .post__body {
  flex: 1;
  color: #fff;
  padding: 4px 8px;
  gap: 2px;
  min-width: 0;
  overflow: hidden;
}
.post--olive .post__title,
.post--olive .post__desc,
.post--olive .post__date,
.post--olive .post__reading,
.post--olive .post__more {
  color: #fff;
}
.post--olive .post__title {
  font-size: clamp(22px, 2vw, 28px);
  margin-top: 4px;
  margin-bottom: 6px;
}
.post--olive .post__desc {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 12px;
}
.post--olive .post__media {
  flex: 0 0 38%;
  align-self: stretch;
  border-radius: 16px;
}
.post--olive.post--dark {
  background: #757355;
}

/* ==========================================================
   CART PAGE
   ========================================================== */
.cart {
  width: 100%;
  background: #fff;
  padding-block: 70px 120px;
}
.cart__head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 40px;
}
.cart__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #2d2d2d;
}
.cart__count {
  font-size: 15px;
  color: var(--color-muted);
}

.cart__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 16px;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  margin-bottom: 40px;
}
.cart__actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.cart__action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text);
  transition: opacity var(--tr);
}
.cart__action:hover {
  opacity: 0.65;
}
.cart__action--muted {
  color: var(--color-muted);
}

/* checkbox (shared) */
.check {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}
.check__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.check__box {
  width: 18px;
  height: 18px;
  border: 1.5px solid #b8b8b8;
  border-radius: 3px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--tr),
    border-color var(--tr);
  flex-shrink: 0;
}
.check__input:checked + .check__box {
  background: var(--color-olive);
  border-color: var(--color-olive);
}
.check__input:checked + .check__box::after {
  content: "";
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}
.check__input:focus-visible + .check__box {
  outline: 2px solid var(--color-olive);
  outline-offset: 2px;
}
.check__label {
  font-size: 14px;
  color: var(--color-text);
}

/* grid */
.cart__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}
.cart__items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* item */
.cart-item {
  display: grid;
  grid-template-columns: auto 270px 1fr;
  gap: 28px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-line);
}
.cart-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.cart-item__check {
  align-self: start;
  padding-top: 6px;
}

.cart-item__media {
  width: 270px;
  height: 270px;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-item__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-item__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.cart-item__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.15;
  color: #2d2d2d;
}
.cart-item__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-muted);
  max-width: 420px;
}
.cart-item__prices {
  display: flex;
  gap: 60px;
  margin-top: 6px;
}
.price-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.price-col__label {
  font-size: 12px;
  color: var(--color-muted);
}
.price-col__value--sale {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
}
.price-col__value--old {
  font-size: 16px;
  color: #b5b5b5;
}

/* quantity */
.qty {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid #dadada;
  border-radius: 6px;
  width: 120px;
  height: 44px;
  overflow: hidden;
  margin-top: 6px;
}
.qty__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--color-text);
  transition: background var(--tr);
}
.qty__btn:hover {
  background: #f5f4ec;
  opacity: 1;
}
.qty__value {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--color-text);
  border-inline: 1px solid #dadada;
}

/* summary */
.summary {
  background: var(--color-beige);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 520px;
  justify-self: end;
}
.summary__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.05;
  color: #2d2d2d;
  margin-bottom: 8px;
}
.summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  color: var(--color-text);
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.summary__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.summary__total-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.summary__total-label {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
}
.summary__total-note {
  font-size: 12px;
  color: var(--color-muted);
}
.summary__total-value {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
}
.btn--olive-wide {
  background: var(--color-olive);
  color: #fff;
  border-radius: 8px;
  min-height: 52px;
  padding: 14px 24px;
  font-size: 15px;
  width: 100%;
}
.btn--olive-wide:hover {
  background: #3a3f31;
  opacity: 1;
}
.summary__divider {
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  margin: 4px 0 0;
}
.summary__promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: var(--color-text);
  padding: 4px 0;
}
.summary__promo:hover {
  opacity: 0.7;
}

/* ==========================================================
   SPECIALISTS PAGE
   ========================================================== */
.specialists {
  width: 100%;
  background: #fff;
  padding-block: 40px 100px;
}
.specialists .breadcrumbs {
  margin-bottom: 24px;
}
.specialists__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #2d2d2d;
  margin-bottom: 40px;
}

.specialists__filters {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

/* select */
.select {
  position: relative;
}
.select__btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 240px;
  height: 48px;
  padding: 0 16px;
  background: #fff;
  border: 1px solid #cfcfcf;
  border-radius: 8px;
  font-size: 14px;
  color: var(--color-text);
  cursor: pointer;
  transition: border-color var(--tr);
}
.select__btn:hover {
  border-color: #9d9d9d;
}
.select__btn svg {
  color: #8a8a8a;
  flex-shrink: 0;
}

/* small search variant used on specialists filters */
.search--sm {
  flex: 0 0 auto;
  max-width: none;
  width: 170px;
}
.search--sm .search__field {
  height: 48px;
  padding: 0 14px;
  border-radius: 8px;
  border-color: #cfcfcf;
}
.search--sm .search__input {
  font-size: 14px;
}

/* grid: 4 columns */
.specialists__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 30px;
}

/* card */
.spec-card {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "photo photo"
    "name  name"
    "role  stage-label"
    "role2 stage-value"
    "btn   btn";
  align-content: start;
  row-gap: 8px;
}
.spec-card__photo {
  grid-area: photo;
  width: 100%;
  aspect-ratio: 370 / 250;
  border-radius: 12px;
  overflow: hidden;
  background: #f4f4e1;
  margin-bottom: 12px;
}
.spec-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.spec-card__name {
  grid-area: name;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.2;
  color: #2d2d2d;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}
.spec-card__label {
  grid-area: role;
  font-size: 13px;
  color: var(--color-muted);
}
.spec-card__label--top {
  grid-area: stage-label;
  justify-self: end;
  text-align: right;
}
.spec-card__value {
  grid-area: stage-value;
  justify-self: end;
  font-size: 16px;
  color: var(--color-text);
  font-weight: 500;
}
.spec-card__btn {
  grid-area: btn;
  justify-self: start;
  margin-top: 14px;
}

/* gold button */
.btn--gold {
  background: var(--color-beige-2);
  color: #fff;
  border-radius: 8px;
  min-height: 42px;
  padding: 10px 22px;
  font-size: 14px;
  min-width: 140px;
}
.btn--gold:hover {
  background: #b89c73;
  opacity: 1;
}

/* ==========================================================
   PROGRAMS PAGE (Комплексные программы)
   ========================================================== */
.programs {
  width: 100%;
  background: #fff;
  padding-block: 40px 100px;
}
.programs .breadcrumbs {
  margin-bottom: 24px;
}
.programs__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #2d2d2d;
  margin-bottom: 40px;
}
.programs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 56px 24px;
}

.program-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* media: photo + tags + cta overlay */
.program-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 380 / 440;
  border-radius: 16px;
  overflow: hidden;
  background: #b79a78;
  margin-bottom: 8px;
}
.program-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.program-card__tags {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  z-index: 2;
}
.program-card__tags li {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: rgba(90, 90, 80, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-size: 12px;
  border-radius: 8px;
  line-height: 1.2;
}
.program-card__cta {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: rgba(204, 175, 131, 0.9);
  color: #fff;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.2;
  text-align: center;
  transition:
    background var(--tr),
    opacity var(--tr);
}
.program-card__cta:hover {
  background: var(--color-beige-2);
  opacity: 1;
}

/* text */
.program-card__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.15;
  color: #2d2d2d;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-top: 8px;
}
.program-card__sub {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.5;
  margin-top: -4px;
}

/* meta as columns */
.program-card__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 32px;
  margin: 10px 0 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.program-card__row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.program-card__row dt {
  font-size: 12px;
  color: var(--color-muted);
  font-weight: 400;
}
.program-card__row dd {
  margin: 0;
  font-size: 16px;
  color: var(--color-text);
  font-weight: 700;
}

/* price */
.program-card__price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.program-card__price-label {
  font-size: 12px;
  color: var(--color-muted);
}
.program-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.program-card__price-new {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
}
.program-card__price-old {
  font-size: 15px;
  color: #b5b5b5;
  text-decoration: line-through;
}

/* more link */
.program-card__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  font-size: 14px;
  color: #2d2d2d;
  text-decoration: underline;
  text-underline-offset: 3px;
  align-self: flex-start;
}
.program-card__more:hover {
  opacity: 1;
  text-decoration: none;
}
.program-card__more-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-beige-2);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--tr);
}
.program-card__more:hover .program-card__more-circle {
  transform: translateX(3px);
}

/* ==========================================================
   DOCUMENTS PAGE
   ========================================================== */
.docs {
  width: 100%;
  background: #fff;
  padding-block: 40px 100px;
}
.docs .breadcrumbs {
  margin-bottom: 24px;
}
.docs__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #2d2d2d;
  margin-bottom: 56px;
}
.docs__block {
  margin-bottom: 110px;
}
.docs__block:last-child {
  margin-bottom: 0;
}
.docs__block-head {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 28px;
}
.docs__subtitle {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  color: #2d2d2d;
  margin-bottom: 20px;
}
.docs__block--licenses .docs__block-head {
  margin-top: -60px;
  margin-bottom: 24px;
}

.docs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* doc card */
.doc-card {
  border-radius: 12px;
  padding: 24px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.doc-card--cream {
  background: #f7f4e8;
}
.doc-card--outline {
  background: #fff;
  border: 1px solid #c7c7c7;
}
.doc-card__num {
  font-size: 12px;
  color: var(--color-muted);
  letter-spacing: 0.05em;
}
.doc-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.doc-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.25;
  color: #2d2d2d;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.doc-card__sub {
  font-size: 13px;
  color: #6a6a6a;
  line-height: 1.5;
}
.doc-card__more {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: #5a5a5a;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.doc-card__more-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--tr);
}
.doc-card__more-circle--beige {
  background: var(--color-beige-2);
}
.doc-card__more-circle--dark {
  background: var(--color-olive);
}
.doc-card__more:hover {
  opacity: 1;
}
.doc-card__more:hover .doc-card__more-circle {
  transform: translateX(3px);
}

/* ==========================================================
   DIRECTIONS PAGE
   ========================================================== */
.directions {
  width: 100%;
  background: #ededed;
  padding-block: 40px 100px;
}
.directions .breadcrumbs {
  margin-bottom: 20px;
  color: #8a8a8a;
}
.directions__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #2d2d2d;
  margin-bottom: 20px;
}

.directions__switch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  font-size: 13px;
  color: #8a8a8a;
}
.directions__switch-label {
  line-height: 1;
}
.directions__switch-label.is-active {
  color: #2d2d2d;
}

/* toggle */
.toggle {
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
}
.toggle__track {
  width: 42px;
  height: 22px;
  background: #c9c9c9;
  border-radius: 999px;
  position: relative;
  display: inline-block;
  transition: background var(--tr);
}
.toggle__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: #2d2d2d;
  border-radius: 50%;
  transition: transform var(--tr);
}
.toggle[aria-pressed="true"] .toggle__thumb {
  transform: translateX(20px);
}

/* list */
.dir-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dir-item {
  list-style: none;
}
.dir-item__link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 999px;
  padding: 14px 18px;
  min-height: 76px;
  transition:
    box-shadow var(--tr),
    transform var(--tr);
}
.dir-item__link:hover {
  opacity: 1;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}
.dir-item__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f4f4e1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.dir-item__icon img,
.dir-item__icon svg {
  width: 60%;
  height: 60%;
  object-fit: contain;
  display: block;
}
.dir-item__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: #2d2d2d;
}
.dir-item__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-beige-2);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform var(--tr),
    background var(--tr);
}
.dir-item__link:hover .dir-item__arrow {
  transform: rotate(-10deg);
  background: #b89c73;
}

/* «+» справа (страница Услуги — По задаче) */
.dir-item__plus {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  color: #2d2d2d;
  transition: transform var(--tr);
  flex-shrink: 0;
}
.dir-item__link:hover .dir-item__plus {
  transform: rotate(90deg);
}

/* На странице «Услуги» карточки — прямоугольные со скруглением, как на макете */
.services-page .dir-item__link {
  border-radius: 14px;
  padding: 14px 22px 14px 16px;
  min-height: 72px;
}

/* ==========================================================
   SERVICES (по направлению) — аккордеон
   ========================================================== */
.srv {
  width: 100%;
  background: #f7f7f5;
  padding-block: 70px 100px;
}
.srv .breadcrumbs {
  margin-bottom: 20px;
}
.srv__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #2d2d2d;
  margin-bottom: 28px;
}
.srv__switch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  font-size: 13px;
  color: #8a8a8a;
}
.srv__switch-label {
  line-height: 1;
}
.srv__switch-label.is-active {
  color: #2d2d2d;
}

.srv-acc {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.srv-acc__item {
  background: #fff;
  border: 1px solid #e6e6e1;
  border-radius: 12px;
  overflow: hidden;
  transition: background var(--tr);
}
.srv-acc__item.is-open {
  background: #f4f1e1;
}
.srv-acc__head {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px 24px 14px 14px;
  min-height: 80px;
  text-align: left;
  color: #2d2d2d;
  background: transparent;
}
.srv-acc__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f4f4e1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.srv-acc__item.is-open .srv-acc__icon {
  background: #fff;
}
.srv-acc__icon svg {
  color: #2d2d2d;
  width: 22px;
  height: 22px;
}
.srv-acc__icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  display: block;
}
.srv-acc__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: #2d2d2d;
}
.srv-acc__plus {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  color: #2d2d2d;
  transition: transform var(--tr);
  flex-shrink: 0;
}
.srv-acc__head[aria-expanded="true"] .srv-acc__plus {
  transform: rotate(45deg);
}
.srv-acc__body {
  padding: 0 24px 24px 78px;
}

/* tags (услуги внутри раскрытого раздела) */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #e2e1d6;
  border-radius: 999px;
  padding: 8px 8px 8px 20px;
  height: 48px;
  font-size: 14px;
  color: #2d2d2d;
  transition:
    border-color var(--tr),
    box-shadow var(--tr);
}
.tag:hover {
  opacity: 1;
  border-color: #cfcbb0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}
.tag__arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-beige-2);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  transition: transform var(--tr);
}
.tag:hover .tag__arrow {
  transform: rotate(-10deg);
}

/* anchor offset under sticky header */
[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1280px) {
  :root {
    --container-pad: 32px;
  }
  .footer__grid {
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .header__services span {
    display: none;
  } /* оставляем только иконки */
  .header__services {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  :root {
    --container-pad: 20px;
    --header-h: 64px;
  }

  .header__inner {
    grid-template-columns: auto 1fr auto;
  }
  .header__nav {
    display: none;
  }
  body.is-menu-open {
    overflow: hidden;
  }
  body.is-menu-open .header__nav {
    position: fixed;
    inset: var(--header-h) 0 0;
    z-index: 19;
    display: block;
    padding: 24px var(--container-pad) 40px;
    overflow-y: auto;
    background: var(--color-beige);
  }
  body.is-menu-open .header__nav .menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    font-size: 20px;
  }
  body.is-menu-open .header__nav .menu-item > a {
    display: block;
    padding: 16px 0;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-line);
  }
  .header__logo {
    justify-self: start;
  }
  .header__logo-img {
    height: 28px;
  }
  .header__services {
    display: none;
  }
  .header__actions {
    gap: 8px;
  }

  .error__text {
    font-size: 15px;
    padding-inline: 8px;
  }

  .footer__inner {
    padding-block: 48px 24px;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer__col--map .footer__map {
    aspect-ratio: 16 / 10;
  }
  .footer__buttons {
    max-width: 100%;
  }

  .footer__bg {
    right: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    text-align: center;
    transform: none;
    font-size: clamp(160px, 42vw, 320px);
    bottom: 80px;
  }

  /* Price responsive */
  .price {
    padding-block: 24px 64px;
  }
  .price__intro {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }
  .cats__head {
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    padding: 14px 20px 14px 14px;
    min-height: 80px;
  }
  .cats__icon {
    width: 52px;
    height: 52px;
  }
  .cats__name {
    font-size: 16px;
  }
  .cats__body {
    padding: 0 20px 20px;
  }
  .service {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .service__name {
    grid-column: 1 / -1;
  }
  .service__more {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  /* Article responsive */
  .article {
    padding-block: 24px 64px;
  }
  .article__head {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: left;
  }
  .article__title {
    text-align: left;
  }
  .article__meta {
    justify-self: start;
    text-align: left;
    align-items: flex-start;
  }
  .article__btn {
    align-self: flex-start;
  }
  .info-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px;
    border-radius: 24px;
  }
  .info-card--reverse .info-card__media {
    order: -1;
  }
  .info-card__media,
  .info-card__media--tall {
    min-height: 220px;
  }

  /* Blog responsive */
  .blog {
    padding-block: 24px 64px;
  }
  .blog__toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .search {
    max-width: 100%;
  }
  .slider-nav {
    justify-content: center;
  }
  .blog__grid {
    grid-template-columns: 1fr;
  }

  /* Cart responsive */
  .cart {
    padding-block: 32px 64px;
  }
  .cart__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cart-item {
    grid-template-columns: auto 1fr;
  }
  .cart-item__media {
    grid-column: 1 / -1;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    max-width: 100%;
  }
  .cart-item__body {
    grid-column: 1 / -1;
  }
  .cart-item__prices {
    gap: 32px;
  }
  .summary {
    max-width: 100%;
    justify-self: stretch;
    padding: 24px;
  }

  /* Programs responsive */
  .programs {
    padding-block: 24px 64px;
  }
  .programs__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
  .program-card__tags li {
    font-size: 12px;
    padding: 6px 12px;
  }

  /* Specialists responsive */
  .specialists {
    padding-block: 24px 64px;
  }
  .specialists__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }
  .specialists__filters {
    flex-direction: column;
    align-items: stretch;
  }
  .select__btn,
  .search--sm {
    width: 100%;
  }

  /* Documents responsive */
  .docs {
    padding-block: 24px 64px;
  }
  .docs__block {
    margin-bottom: 64px;
  }
  .docs__block--licenses .docs__block-head {
    margin-top: 0;
  }
  .docs__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .doc-card {
    min-width: 0;
    min-height: 240px;
    padding: 20px;
  }

  /* Directions responsive */
  .directions {
    padding-block: 24px 64px;
  }
  .dir-item__link {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    padding: 10px 12px;
    min-height: 68px;
  }
  .dir-item__icon {
    width: 48px;
    height: 48px;
  }
  .dir-item__name {
    font-size: 16px;
  }
  .dir-item__arrow {
    width: 40px;
    height: 40px;
  }
  .post__body {
    padding: 24px;
  }
  .post--olive {
    flex-direction: column;
  }
  .post--olive .post__media {
    flex: none;
    width: 100%;
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .footer__bottom {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
    margin-top: 40px;
  }
  .footer__copy,
  .footer__license,
  .footer__pay {
    grid-column: 1;
    justify-self: center;
  }
  .footer__license {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .programs__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* Hero responsive */
@media (max-width: 1024px) {
  .hero-slider__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
  .hero-slide {
    border-right: 0;
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }
  .hero__inner {
    gap: 40px;
    padding-bottom: 60px;
  }
  .hero__title {
    font-size: clamp(34px, 8vw, 48px);
  }
  .hero__desc {
    font-size: 15px;
  }
  .hero-slider__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .brand__name {
    font-size: 18px;
    letter-spacing: 0.12em;
  }
}

@media (max-width: 390px) {
  :root {
    --container-pad: 16px;
  }
  .error__container {
    gap: 20px;
  }
}

@media (max-width: 375px) {
  .footer__pay {
    flex-direction: column;
    gap: 8px;
  }
}

/* =========================================================
   SERVICES · Комплексы (страница «По задаче»)
   ========================================================= */
.complex__title {
  font-family: var(--font-display, inherit);
  font-size: 28px;
  font-weight: 500;
  color: #2d2d2d;
  margin: 24px 0 20px;
  line-height: 1.1;
}
.complex-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 35px;
}
.complex-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: transparent;
}
.complex-card__media {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
  border-radius: 12px;
}
.complex-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.complex-card__title {
  font-family: var(--font-display, inherit);
  font-size: 30px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.05;
  text-transform: uppercase;
  margin: 4px 0 0;
}
.complex-card__desc {
  font-size: 14px;
  line-height: 1.45;
  color: #6c6c6c;
  margin: 0;
}
.complex-card__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #2d2d2d;
  text-decoration: none;
  margin-top: auto;
}
.complex-card__more-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #c9a96a;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}
.complex-card__more:hover .complex-card__more-circle {
  transform: translateX(3px);
}

/* toggle active state (для соответствия «По задаче») */
.toggle.is-on .toggle__thumb {
  transform: translateX(18px);
}

@media (max-width: 1280px) {
  .complex-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .complex-card__title {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .complex-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .complex__title {
    font-size: 22px;
  }
  .complex-card__title {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .complex-grid {
    grid-template-columns: 1fr;
  }
}

/* ==== OFFERS PAGE ==== */
/* ============ OFFERS PAGE ============ */

/* Hero */
.offer-hero {
  position: relative;
  width: 100%;
  min-height: 580px;
  background: #c9ab7a;
  overflow: hidden;
}
.offer-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 35% 65%;
  min-height: 580px;
}
.offer-hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 60px 60px 110px;
  color: #fff;
  z-index: 2;
}
.offer-hero__badge {
  display: inline-block;
  background: #e6d9bf;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  margin-bottom: 26px;
}
.offer-hero__title {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.05;
  color: #fff;
  max-width: 520px;
  margin: 0 0 30px;
}
.offer-hero__subtitle {
  font-size: 20px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  max-width: 430px;
  margin: 0 0 40px;
}
.offer-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 150px;
  background: #54513f;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: opacity 0.2s;
}
.offer-hero__btn:hover {
  opacity: 0.9;
}

.offer-hero__right {
  position: relative;
  background:
    linear-gradient(135deg, rgba(150, 110, 60, 0.35), rgba(90, 60, 30, 0.55)),
    #8b6a44;
  background-blend-mode: multiply;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 40px 90px 40px 40px;
  overflow: hidden;
}
.offer-hero__right::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/ceaedd1d7efcbb37f087639adebc84ea35b47c4d.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
}
.offer-hero__w {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 620px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  pointer-events: none;
  z-index: 1;
  font-family: Georgia, serif;
}
.offer-hero__discount {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: #fff;
  text-align: right;
}
.offer-hero__percent {
  font-size: 210px;
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.offer-hero__label {
  font-size: 90px;
  font-weight: 300;
  line-height: 1;
  margin-top: -10px;
}

/* Section 2. About */
.offer-about {
  padding: 90px 0;
}
.offer-about__inner {
  display: grid;
  grid-template-columns: minmax(0, 48fr) minmax(0, 52fr);
  gap: 60px;
  align-items: start;
}
.offer-about__photo {
  width: 100%;
  aspect-ratio: 620 / 720;
  border-radius: 20px;
  overflow: hidden;
}
.offer-about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.offer-about__content {
  min-width: 0;
  padding-left: 20px;
}
.offer-about__title {
  font-size: 58px;
  font-weight: 600;
  line-height: 1.1;
  max-width: 650px;
  margin: 0 0 45px;
  color: #1a1a1a;
}
.offer-about__block {
  margin-bottom: 35px;
}
.offer-about__block:last-child {
  margin-bottom: 0;
}
.offer-about__step {
  display: block;
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
}
.offer-about__subtitle {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 14px;
  color: #1a1a1a;
}
.offer-about__text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin: 0;
}
.offer-about__list {
  padding-left: 20px;
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}
.offer-about__list li {
  margin-bottom: 6px;
}

/* Section 3. Procedures */
.offer-procedures {
  background: #f6f1e6;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.offer-procedures__inner {
  position: relative;
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 40px;
  align-items: start;
}
.offer-procedures__w {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 700px;
  font-weight: 700;
  color: rgba(201, 171, 122, 0.1);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  font-family: Georgia, serif;
}
.offer-procedures__left {
  position: relative;
  z-index: 1;
}
.offer-procedures__title {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 30px;
  color: #1a1a1a;
}
.offer-procedures__list {
  padding-left: 20px;
  margin: 0 0 30px;
  font-size: 16px;
  line-height: 1.6;
  color: #6a6a6a;
}
.offer-procedures__list li {
  margin-bottom: 10px;
}
.offer-procedures__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 26px;
  background: #3f4a2f;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: opacity 0.2s;
}
.offer-procedures__btn:hover {
  opacity: 0.9;
}

.offer-procedures__cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.offer-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.offer-card__media {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.offer-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.offer-card__btn {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;
  background: #c9ab7a;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.offer-card__btn:hover {
  background: #b8996a;
}

.offer-card__body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.offer-card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 4px;
  color: #1a1a1a;
  letter-spacing: 0.02em;
}
.offer-card__row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.offer-card__label {
  font-size: 13px;
  color: #999;
}
.offer-card__value {
  font-size: 15px;
  color: #333;
}
.offer-card__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.offer-card__price b {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
}
.offer-card__price s {
  font-size: 14px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 1100px) {
  .offer-hero__title {
    font-size: 44px;
  }
  .offer-hero__percent {
    font-size: 150px;
  }
  .offer-hero__label {
    font-size: 60px;
  }
  .offer-hero__w {
    font-size: 400px;
  }
  .offer-about__title {
    font-size: 42px;
  }
  .offer-procedures__title {
    font-size: 42px;
  }
}
@media (max-width: 860px) {
  .offer-hero__inner {
    grid-template-columns: 1fr;
  }
  .offer-hero__left {
    padding: 50px 30px;
  }
  .offer-hero__right {
    min-height: 340px;
    padding: 30px;
  }
  .offer-about__inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .offer-about__content {
    padding-left: 0;
  }
  .offer-procedures__inner {
    grid-template-columns: 1fr;
  }
  .offer-procedures__cards {
    grid-template-columns: 1fr;
  }
}
/* ============ COMPLEX PROGRAM PAGE ============ */
.complex-hero {
  background: #f3ecdd;
  padding-bottom: 0;
}
.complex-hero__inner {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 640px;
}
.complex-hero__left {
  padding: 60px 60px 60px 90px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.complex-hero__tags {
  list-style: none;
  padding: 0;
  margin: 0 0 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.complex-hero__tags li {
  background: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  color: #444;
  border: 1px solid #e6d9bf;
}
.complex-hero__title {
  font-size: 68px;
  font-weight: 600;
  line-height: 1.05;
  color: #1a1a1a;
  margin: 0 0 24px;
}
.complex-hero__desc {
  font-size: 16px;
  line-height: 1.55;
  color: #444;
  max-width: 460px;
  margin: 0 0 32px;
}
.complex-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  width: 140px;
  background: #2f3524;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 50px;
  transition: opacity 0.2s;
}
.complex-hero__btn:hover {
  opacity: 0.9;
}
.complex-hero__divider {
  height: 1px;
  background: #d9cdb2;
  margin-bottom: 24px;
}
.complex-hero__note {
  font-size: 15px;
  line-height: 1.55;
  color: #333;
  margin: 0;
  font-weight: 500;
}

.complex-hero__right {
  position: relative;
  overflow: hidden;
}
.complex-hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.complex-hero__cards {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: flex;
  gap: 16px;
  z-index: 2;
}
.complex-hero__card {
  width: 180px;
  min-height: 150px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 18px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.complex-hero__card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
}
.complex-hero__card-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

@media (max-width: 1100px) {
  .complex-hero__title {
    font-size: 52px;
  }
  .complex-hero__left {
    padding: 50px 40px;
  }
}
@media (max-width: 860px) {
  .complex-hero__inner {
    grid-template-columns: 1fr;
  }
  .complex-hero__right {
    min-height: 460px;
  }
  .complex-hero__left {
    padding: 40px 24px;
  }
  .complex-hero__title {
    font-size: 40px;
  }
  .complex-hero__tags {
    margin-bottom: 30px;
  }
  .complex-hero__card {
    width: 150px;
    min-height: 130px;
  }
}
/* ============ COMPLEX INCLUDES ============ */
.complex-includes {
  background: #fff;
  padding: 60px 0 90px;
}
.complex-includes__title {
  font-size: 28px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 30px;
}
.complex-includes__list {
  list-style: none;
  padding: 0;
  margin: 0 0 50px;
}
.complex-includes__row {
  display: grid;
  grid-template-columns: 260px 160px 1fr 130px;
  gap: 30px;
  align-items: center;
  padding: 26px 0;
  border-top: 1px solid #e4dbc4;
}
.complex-includes__row:last-child {
  border-bottom: 1px solid #e4dbc4;
}
.complex-includes__name {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.04em;
}
.complex-includes__dur {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: #888;
}
.complex-includes__dur b {
  font-size: 18px;
  color: #1a1a1a;
  font-weight: 700;
}
.complex-includes__desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #555;
  max-width: 460px;
}
.complex-includes__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #1a1a1a;
  font-size: 14px;
  justify-self: end;
}
.complex-includes__more span:first-child {
  text-decoration: underline;
}
.complex-includes__more-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #c9ab7a;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Итоговая стоимость */
.complex-total {
  position: relative;
  background: #8f8f6a;
  background: linear-gradient(180deg, #9c9a6d, #7f7d54);
  border-radius: 14px;
  padding: 40px 50px;
  color: #fff;
  overflow: hidden;
  min-height: 260px;
}
.complex-total__w {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 340px;
  font-family: Georgia, serif;
  color: rgba(255, 255, 255, 0.14);
  line-height: 1;
  pointer-events: none;
}
.complex-total__title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0 0 24px;
}
.complex-total__prices {
  display: flex;
  gap: 40px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.complex-total__price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.complex-total__price span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}
.complex-total__price b {
  font-size: 24px;
  font-weight: 700;
}
.complex-total__price s {
  opacity: 0.8;
  font-weight: 700;
}
.complex-total__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 24px;
  background: #c9ab7a;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.complex-total__hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 10px;
  position: relative;
  z-index: 1;
}
.complex-total__ask {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 22px;
  background: #2f3524;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .complex-includes__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .complex-includes__more {
    justify-self: start;
  }
  .complex-total {
    padding: 30px 24px;
  }
  .complex-total__prices {
    flex-direction: column;
    gap: 16px;
  }
  .complex-total__w {
    font-size: 200px;
    right: -30px;
  }
}

/* ============ COMPLEX UNIQUE ============ */
.complex-unique {
  background: #fff;
  padding: 60px 0 100px;
}
.complex-unique__inner {
  display: grid;
  grid-template-columns: minmax(0, 44fr) minmax(0, 56fr);
  gap: 50px;
  align-items: stretch;
}
.complex-unique__media {
  min-width: 0;
  border-radius: 16px;
  overflow: hidden;
  min-height: 500px;
}
.complex-unique__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.complex-unique__content {
  min-width: 0;
  padding-top: 6px;
}
.complex-unique__title {
  font-size: 40px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.1;
  margin: 0 0 34px;
}
.complex-unique__item {
  padding-top: 22px;
  margin-top: 22px;
  border-top: 1px solid #e4dbc4;
}
.complex-unique__item:first-of-type {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}
.complex-unique__num {
  display: block;
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
}
.complex-unique__subtitle {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px;
  line-height: 1.3;
}
.complex-unique__text {
  font-size: 13px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}
@media (max-width: 900px) {
  .complex-unique__inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .complex-unique__media {
    min-height: 300px;
    aspect-ratio: 4/3;
  }
  .complex-unique__title {
    font-size: 30px;
  }
}

@media (max-width: 560px) {
  .docs__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .complex-unique__inner {
    gap: 32px;
  }

  .complex-unique__media {
    min-height: 0;
    width: 100%;
  }
}

/* ============ SPECIALIST HERO ============ */
.spec-hero {
  background: #f8f8eb;
  position: relative;
  overflow: hidden;
}
.spec-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 620px;
}
.spec-hero__left {
  padding: 40px 40px 120px 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.spec-hero__crumbs {
  position: absolute;
  top: 30px;
  left: 90px;
  font-size: 12px;
  color: #999;
}
.spec-hero__crumbs a {
  color: #999;
  text-decoration: none;
}
.spec-hero__crumbs span {
  color: #666;
}
.spec-hero__tags {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.spec-hero__tags li {
  background: #2f3524;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
}
.spec-hero__title {
  font-size: 68px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.05;
  margin: 0 0 26px;
}
.spec-hero__desc {
  font-size: 15px;
  line-height: 1.55;
  color: #555;
  max-width: 420px;
  margin: 0 0 32px;
}
.spec-hero__actions {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.spec-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.2s;
}
.spec-hero__btn:hover {
  opacity: 0.9;
}
.spec-hero__btn--dark {
  background: #2f3524;
  color: #fff;
}
.spec-hero__btn--beige {
  background: #c9ab7a;
  color: #fff;
}
.spec-hero__socials {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
}
.spec-hero__socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e4dbc4;
  color: #2f3524;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.spec-hero__right {
  position: relative;
  overflow: hidden;
  background: #c9ab7a;
}
.spec-hero__right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.spec-hero__anchors {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  gap: 28px;
  z-index: 3;
  font-size: 13px;
}
.spec-hero__anchors a {
  color: #666;
  text-decoration: none;
}
.spec-hero__anchors a:hover {
  color: #1a1a1a;
}

@media (max-width: 900px) {
  .spec-hero__inner {
    grid-template-columns: 1fr;
  }
  .spec-hero__left {
    padding: 60px 24px 40px;
  }
  .spec-hero__crumbs {
    left: 24px;
  }
  .spec-hero__title {
    font-size: 44px;
  }
  .spec-hero__right {
    min-height: 400px;
  }
  .spec-hero__anchors {
    position: static;
    transform: none;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
  }
}

/* ============ SPECIALIST SERVICES ============ */
.spec-services {
  background: #fff;
  padding: 70px 0 90px;
}
.spec-services__head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-bottom: 32px;
}
.spec-services__title {
  font-size: 36px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0;
  text-align: center;
}
.spec-services__nav {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #b0b0b0;
}
.spec-services__nav button {
  background: none;
  border: 0;
  font-size: 22px;
  color: #b0b0b0;
  cursor: pointer;
}
.spec-services__dots {
  display: inline-flex;
  gap: 6px;
}
.spec-services__dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8d8d8;
  display: inline-block;
}
.spec-services__dots i.is-active {
  background: #1a1a1a;
  width: 22px;
  border-radius: 4px;
}

.spec-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-bottom: 36px;
}
.spec-svc {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.spec-svc__media {
  width: 100%;
  aspect-ratio: 280 / 220;
  border-radius: 14px;
  overflow: hidden;
  background: #e8dece;
}
.spec-svc__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.spec-svc__title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.04em;
  margin: 6px 0 0;
}
.spec-svc__prices {
  display: flex;
  gap: 30px;
  margin-top: 4px;
}
.spec-svc__prices > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.spec-svc__prices span {
  font-size: 12px;
  color: #999;
}
.spec-svc__prices b {
  font-size: 18px;
  color: #1a1a1a;
  font-weight: 700;
}
.spec-svc__prices s {
  font-size: 14px;
  color: #b5b5b5;
}
.spec-svc__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #1a1a1a;
  text-decoration: none;
  margin-top: 6px;
}
.spec-svc__more span {
  text-decoration: underline;
}
.spec-svc__more i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #c9ab7a;
  display: inline-block;
}
.spec-services__cta {
  display: flex;
  justify-content: center;
}
.spec-services__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 30px;
  background: #2f3524;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
}
@media (max-width: 900px) {
  .spec-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .spec-services__grid {
    grid-template-columns: 1fr;
  }
}

/* ============ SPECIALIST SKILLS ============ */
.spec-skills {
  background: #fff;
  padding: 30px 0 90px;
}
.spec-skills__title {
  font-size: 40px;
  font-weight: 500;
  color: #1a1a1a;
  text-align: center;
  line-height: 1.15;
  margin: 0 0 26px;
}
.spec-skills__tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}
.spec-skills__tabs button {
  background: #fff;
  border: 1px solid #e4dbc4;
  border-radius: 8px;
  height: 40px;
  padding: 0 20px;
  font-size: 14px;
  color: #1a1a1a;
  cursor: pointer;
}
.spec-skills__tabs button.is-active {
  background: #f4eedc;
  border-color: #e4dbc4;
}
.spec-skills__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.spec-skill {
  background: #f4eedc;
  border-radius: 14px;
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 320px;
}
.spec-skill h3 {
  font-size: 24px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.15;
}
.spec-skill ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.spec-skill ul li {
  position: relative;
  padding-left: 12px;
  font-size: 12px;
  color: #444;
  line-height: 1.4;
}
.spec-skill ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #c9ab7a;
}
.spec-skill p {
  font-size: 12px;
  line-height: 1.55;
  color: #555;
  margin: 0;
}
.spec-skill__more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #1a1a1a;
  font-size: 14px;
}
.spec-skill__more span {
  text-decoration: underline;
}
.spec-skill__more i {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #c9ab7a;
  display: inline-block;
}
@media (max-width: 1100px) {
  .spec-skills__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .spec-skills__grid {
    grid-template-columns: 1fr;
  }
  .spec-skills__title {
    font-size: 28px;
  }
}

/* ============ SPECIALIST CERTIFICATES ============ */
.spec-certs {
  background: #fff;
  padding: 30px 0 60px;
}
.spec-certs__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.spec-certs__label {
  font-size: 13px;
  color: #999;
}
.spec-certs__all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #1a1a1a;
  text-decoration: underline;
}
.spec-certs__all i {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #c9ab7a;
  display: inline-block;
}
.spec-certs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.spec-cert {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.spec-cert__media {
  width: 100%;
  aspect-ratio: 280 / 220;
  border-radius: 8px;
  overflow: hidden;
  background: #efefef;
  margin-bottom: 12px;
}
.spec-cert__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.spec-cert h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #1a1a1a;
  margin: 6px 0 8px;
  line-height: 1.25;
}
.spec-cert__label {
  font-size: 12px;
  color: #999;
}
.spec-cert__date {
  font-size: 13px;
  color: #333;
}

@media (max-width: 900px) {
  .spec-certs__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .spec-certs__grid {
    grid-template-columns: 1fr;
  }
}

/* ============ SPECIALIST FAQ ============ */
.spec-faq {
  background: #fff;
  padding: 40px 0 90px;
}
.spec-faq__inner {
  display: grid;
  grid-template-columns: 34% 1fr;
  gap: 40px;
  align-items: start;
}
.spec-faq__media {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.spec-faq__label {
  font-size: 13px;
  color: #999;
}
.spec-faq__media img {
  width: 100%;
  aspect-ratio: 380 / 460;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.spec-faq__list {
  display: flex;
  flex-direction: column;
}
.spec-faq__item {
  border-bottom: 1px solid #e4dbc4;
  padding: 22px 0;
}
.spec-faq__item:first-child {
  padding-top: 6px;
}
.spec-faq__num {
  font-size: 12px;
  color: #999;
  display: block;
  margin-bottom: 8px;
}
.spec-faq__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.spec-faq__head h3 {
  font-size: 38px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.15;
}
.spec-faq__head button {
  background: none;
  border: 0;
  font-size: 30px;
  font-weight: 300;
  color: #1a1a1a;
  cursor: pointer;
  line-height: 1;
}
.spec-faq__body {
  margin-top: 18px;
  border: 1px solid #e4dbc4;
  border-radius: 8px;
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.spec-faq__body p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: #555;
}
.spec-faq__body b {
  color: #1a1a1a;
  font-weight: 700;
}
.spec-faq__item:not(.is-open) .spec-faq__body {
  display: none;
}

@media (max-width: 900px) {
  .spec-faq__inner {
    grid-template-columns: 1fr;
  }
  .spec-faq__head h3 {
    font-size: 26px;
  }
}

/* ============ SPECIALIST VIDEO ============ */
.spec-video {
  background: #fff;
  padding: 30px 0 60px;
}
.spec-video__head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-bottom: 24px;
}
.spec-video__title {
  font-size: 32px;
  font-weight: 500;
  color: #1a1a1a;
  text-align: center;
  margin: 0;
}
.spec-video__nav {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #b0b0b0;
}
.spec-video__nav button {
  background: none;
  border: 0;
  font-size: 20px;
  color: #b0b0b0;
  cursor: pointer;
}
.spec-video__dots {
  display: inline-flex;
  gap: 6px;
}
.spec-video__dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8d8d8;
  display: inline-block;
}
.spec-video__dots i.is-active {
  background: #1a1a1a;
  width: 22px;
  border-radius: 4px;
}
.spec-video__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.spec-video__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.spec-video__media {
  width: 100%;
  aspect-ratio: 280 / 260;
  border-radius: 10px;
  overflow: hidden;
  background: #c9ab7a;
}
.spec-video__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.spec-video__item h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #1a1a1a;
  margin: 6px 0 0;
}
@media (max-width: 900px) {
  .spec-video__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .spec-video__grid {
    grid-template-columns: 1fr;
  }
}

/* ============ SPECIALIST REVIEWS ============ */
.spec-reviews {
  background: #fff;
  padding: 40px 0 80px;
}
.spec-reviews__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.spec-reviews__title {
  font-size: 32px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0;
}
.spec-reviews__nav {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #b0b0b0;
}
.spec-reviews__nav button {
  background: none;
  border: 0;
  font-size: 20px;
  color: #b0b0b0;
  cursor: pointer;
}
.spec-reviews__dots {
  display: inline-flex;
  gap: 6px;
}
.spec-reviews__dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8d8d8;
  display: inline-block;
}
.spec-reviews__dots i.is-active {
  background: #1a1a1a;
  width: 22px;
  border-radius: 4px;
}
.spec-reviews__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.spec-review {
  background: #f4eedc;
  border-radius: 12px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.spec-review__head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #333;
}
.spec-review__head b {
  font-weight: 600;
  color: #1a1a1a;
}
.spec-review__star {
  color: #c9ab7a;
}
.spec-review__date {
  margin-left: auto;
  color: #999;
  font-size: 11px;
}
.spec-review p {
  font-size: 12px;
  line-height: 1.5;
  color: #444;
  margin: 0;
}
.spec-review__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #1a1a1a;
  text-decoration: none;
  align-self: flex-start;
}
.spec-review__more::before {
  content: "";
}
.spec-review__more {
}
.spec-review__more i {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #c9ab7a;
  display: inline-block;
}
.spec-review__more {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.spec-review__photos {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  gap: 8px;
}
.spec-review__photos li {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  background: #d6cbb5;
}
.spec-review__photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.spec-review__doctor {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.spec-review__spec {
  font-size: 11px;
  color: #999;
}
.spec-review__doc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #1a1a1a;
}
.spec-review__ava {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #d6cbb5;
  display: inline-block;
}
.spec-reviews__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;
  background: #2f3524;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
}
@media (max-width: 900px) {
  .spec-reviews__grid {
    grid-template-columns: 1fr;
  }
}

/* ============ ABOUT HERO ============ */
.about-hero {
  background: #fff;
  padding: 40px 0 0;
}
.about-hero__inner {
  display: grid;
  grid-template-columns: 34% 1fr;
  gap: 50px;
  align-items: start;
  padding: 0 60px;
}
.about-hero__left {
  padding-top: 40px;
}
.about-hero__title {
  font-size: 44px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.1;
  margin: 0 0 22px;
}
.about-hero__desc {
  font-size: 13px;
  line-height: 1.6;
  color: #555;
  margin: 0 0 30px;
  max-width: 340px;
}
.about-hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.about-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 22px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: opacity 0.2s;
}
.about-hero__btn--dark {
  background: #2f3524;
  color: #fff;
}
.about-hero__btn--beige {
  background: #c9ab7a;
  color: #fff;
}
.about-hero__btn:hover {
  opacity: 0.9;
}

.about-hero__right {
  position: relative;
  width: 100%;
  aspect-ratio: 800 / 500;
  border-radius: 8px;
  overflow: hidden;
  background: #e8dece;
}
.about-hero__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-hero__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.about-hero__dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8d8d8;
  display: inline-block;
}
.about-hero__dots i.is-active {
  background: #1a1a1a;
  width: 22px;
  border-radius: 4px;
}

/* ============ ABOUT TAGLINE ============ */
.about-tagline {
  background: #fff;
  padding: 70px 0 40px;
  text-align: center;
}
.about-tagline__text {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.35;
  color: #1a1a1a;
  max-width: 1100px;
  margin: 0 auto 30px;
}
.about-tagline__text em {
  font-style: normal;
  color: #c9ab7a;
  font-weight: 500;
}
.about-tagline__w {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid #1a1a1a;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  vertical-align: middle;
  margin: 0 4px;
}
.about-tagline__note {
  font-size: 12px;
  color: #999;
  margin: 0;
}

@media (max-width: 900px) {
  .about-hero__inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
  .about-hero__title {
    font-size: 32px;
  }
  .about-tagline__text {
    font-size: 20px;
  }
}

/* ============ ABOUT PRINCIPLES ============ */
.about-principles {
  background: #fff;
  padding: 20px 60px 40px;
}
.about-principles__head {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 14px;
}
.about-principles__nav {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #b0b0b0;
}
.about-principles__nav button {
  background: none;
  border: 0;
  font-size: 20px;
  color: #b0b0b0;
  cursor: pointer;
}
.about-principles__dots {
  display: inline-flex;
  gap: 6px;
}
.about-principles__dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8d8d8;
  display: inline-block;
}
.about-principles__dots i.is-active {
  background: #1a1a1a;
  width: 22px;
  border-radius: 4px;
}
.about-principles__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.about-principle {
  border-radius: 14px;
  padding: 26px 24px 28px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.about-principle__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.about-principle h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 0;
}
.about-principle p {
  font-size: 11px;
  line-height: 1.55;
  margin: 0;
  opacity: 0.85;
}
.about-principle--beige {
  background: #f3ecdd;
  color: #1a1a1a;
}
.about-principle--olive {
  background: #8f8f6a;
  color: #fff;
}
.about-principle--dark {
  background: #3f4a2f;
  color: #fff;
}

/* ============ ABOUT STATS ============ */
.about-stats {
  background: #3f4a2f;
  padding: 30px 60px 60px;
}
.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.about-stats__card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 380px;
  background: #333;
}
.about-stats__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}
.about-stats__panel {
  position: absolute;
  left: 14px;
  right: 14px;
  top: 14px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 16px 18px;
  color: #1a1a1a;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-stats__panel--top {
  background: rgba(60, 60, 45, 0.35);
  color: #fff;
}
.about-stats__panel--bottom {
  top: auto;
  bottom: 14px;
  background: rgba(60, 60, 45, 0.35);
  color: #fff;
}
.about-stats__label {
  font-size: 11px;
  opacity: 0.8;
}
.about-stats__label--light {
  color: rgba(255, 255, 255, 0.85);
}
.about-stats__big {
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
  color: #c9ab7a;
}
.about-stats__big--light {
  color: #fff;
  font-weight: 400;
}
.about-stats__note {
  font-size: 11px;
  opacity: 0.7;
}
.about-stats__note--light {
  color: rgba(255, 255, 255, 0.8);
}
.about-stats__rate {
  background: #fff;
  border-radius: 8px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}
.about-stats__rate b {
  font-weight: 600;
}
.about-stats__rate span {
  color: #c9ab7a;
}
.about-stats__ava {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
.about-stats__ava li {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #d6cbb5;
  border: 2px solid rgba(255, 255, 255, 0.35);
  margin-left: -8px;
}
.about-stats__ava li:first-child {
  margin-left: 0;
}
.about-stats__title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  margin: 0;
  line-height: 1.25;
}

@media (max-width: 1100px) {
  .about-principles__grid,
  .about-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .about-principles,
  .about-stats {
    padding-left: 20px;
    padding-right: 20px;
  }
  .about-principles__grid,
  .about-stats__grid {
    grid-template-columns: 1fr;
  }
}

/* ============ ABOUT COZY ============ */
.about-cozy {
  background: #f4f4e1;
  padding: 60px 40px;
  text-align: center;
}
.about-cozy__text {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.35;
  color: #1a1a1a;
  max-width: 1100px;
  margin: 0 auto;
}
.about-cozy__text em {
  font-style: normal;
  color: #c9ab7a;
  font-weight: 500;
}
.about-cozy__w {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1.5px solid #1a1a1a;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  vertical-align: middle;
  margin: 0 4px;
}

/* ============ ABOUT EQUIP ============ */
.about-equip {
  background: #fff;
  padding: 40px 60px 80px;
}
.about-equip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
}
.about-equip__title-wrap {
  grid-column: 1;
  grid-row: 1;
  padding-top: 6px;
}
.about-equip__title {
  font-size: 32px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0 0 14px;
}
.about-equip__desc {
  font-size: 11px;
  line-height: 1.55;
  color: #666;
  margin: 0;
  max-width: 240px;
}
.about-equip__item {
  border-radius: 12px;
  overflow: hidden;
  background: #e8dece;
}
.about-equip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-equip__item--a {
  grid-column: 2;
  grid-row: 1;
}
.about-equip__item--b {
  grid-column: 3 / span 2;
  grid-row: 1;
}
.about-equip__item--c {
  grid-column: 1 / span 2;
  grid-row: 2;
}
.about-equip__item--d {
  grid-column: 3;
  grid-row: 2;
}
.about-equip__item--e {
  grid-column: 4;
  grid-row: 2;
}
.about-equip__dots {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  margin-top: 18px;
}
.about-equip__dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8d8d8;
  display: inline-block;
}
.about-equip__dots i.is-active {
  background: #1a1a1a;
  width: 22px;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .about-cozy__text {
    font-size: 20px;
  }
  .about-equip__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .about-equip__title-wrap,
  .about-equip__item {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}

/* ============ ABOUT COSMETICS ============ */
.about-cosm {
  background: #fff;
  padding: 40px 60px 80px;
}
.about-cosm__inner {
  background: #5a5a3f;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 32% 1fr 320px;
  min-height: 220px;
  overflow: hidden;
  color: #fff;
}
.about-cosm__left {
  padding: 34px 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.about-cosm__title {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.15;
  color: #fff;
  margin: 0;
}
.about-cosm__text {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 320px;
}
.about-cosm__btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 22px;
  background: #c9ab7a;
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  text-decoration: none;
  margin-top: 6px;
  transition: opacity 0.2s;
}
.about-cosm__btn:hover {
  opacity: 0.9;
}
.about-cosm__mid {
  background: #d8d3c2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.about-cosm__mid img {
  max-height: 200px;
  width: auto;
  object-fit: contain;
}
.about-cosm__right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.about-cosm__right img {
  max-height: 200px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 900px) {
  .about-cosm__inner {
    grid-template-columns: 1fr;
  }
  .about-cosm__mid,
  .about-cosm__right {
    min-height: 220px;
  }
}

/* ============ ABOUT FEEDBACK ============ */
.about-feedback {
  background: #565541;
  padding: 40px 60px;
}
.about-feedback__inner {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 40px;
  align-items: stretch;
  min-height: 260px;
}
.about-feedback__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0 20px 20px;
  color: #fff;
}
.about-feedback__title {
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 20px;
  line-height: 1.15;
}
.about-feedback__desc {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 10px;
}
.about-feedback__desc--small {
  margin-bottom: 24px;
}
.about-feedback__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.about-feedback__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 22px;
  background: #c9ab7a;
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.about-feedback__btn:hover {
  opacity: 0.9;
}
.about-feedback__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #fff;
  text-decoration: none;
}
.about-feedback__link i {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #c9ab7a;
  display: inline-block;
}
.about-feedback__right {
  border-radius: 12px;
  overflow: hidden;
  min-height: 220px;
  background: #333;
}
.about-feedback__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .about-feedback {
    padding: 30px 24px;
  }
  .about-feedback__inner {
    grid-template-columns: 1fr;
  }
  .about-feedback__title {
    font-size: 24px;
  }
  .about-feedback__right {
    min-height: 240px;
  }
}

/* ============ ABOUT FIND ============ */
.about-find {
  background: #fff;
  padding: 60px 0 40px;
}
.about-find__inner {
  padding: 0 60px;
}
.about-find__title {
  font-size: 40px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0 0 24px;
}
.about-find__tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}
.about-find__tabs button {
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  color: #1a1a1a;
  cursor: pointer;
}
.about-find__tabs button.is-active {
  background: #f4eedc;
  border-color: #e4dbc4;
}
.about-find__crumbs {
  font-size: 12px;
  color: #999;
  margin-bottom: 24px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.about-find__crumbs a {
  color: #666;
  text-decoration: none;
}
.about-find__crumbs span {
  color: #bbb;
}
.about-find__grid {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 60px;
  align-items: start;
}
.about-find__video {
  position: relative;
  aspect-ratio: 480 / 340;
  border-radius: 12px;
  overflow: hidden;
  background: #999;
}
.about-find__video img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-find__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  border: 0;
  font-size: 22px;
  color: #1a1a1a;
  cursor: pointer;
  z-index: 2;
}
.about-find__player {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: rgba(30, 30, 30, 0.55);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 10px 14px;
  color: #fff;
  z-index: 2;
}
.about-find__controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-find__controls button {
  background: none;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
}
.about-find__bar {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  position: relative;
}
.about-find__bar i {
  display: block;
  height: 100%;
  width: 40%;
  background: #fff;
  border-radius: 2px;
}
.about-find__time {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.85);
}
.about-find__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about-find__text h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 12px 0 4px;
}
.about-find__text p {
  font-size: 12px;
  line-height: 1.55;
  color: #555;
  margin: 0;
}
@media (max-width: 900px) {
  .about-find__inner {
    padding: 0 24px;
  }
  .about-find__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ============ ABOUT RULES ============ */
.about-rules {
  background: #fff;
  padding: 40px 0 90px;
}
.about-rules__inner {
  padding: 0 60px;
  display: grid;
  grid-template-columns: 32% 1fr;
  gap: 60px;
  align-items: start;
}
.about-rules__title {
  font-size: 14px;
  font-weight: 500;
  color: #666;
  margin: 0 0 20px;
}
.about-rules__lead {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px;
}
.about-rules__desc {
  font-size: 12px;
  line-height: 1.55;
  color: #555;
  margin: 0;
  max-width: 320px;
}
.about-rules__list {
  display: flex;
  flex-direction: column;
}
.about-rules__item {
  border-bottom: 1px solid #e4dbc4;
  padding: 22px 0;
}
.about-rules__item:first-child {
  border-top: 1px solid #e4dbc4;
}
.about-rules__num {
  display: block;
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
}
.about-rules__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.about-rules__head h3 {
  font-size: 38px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.15;
}
.about-rules__toggle {
  background: none;
  border: 0;
  font-size: 26px;
  font-weight: 300;
  color: #1a1a1a;
  cursor: pointer;
  line-height: 1;
}
.about-rules__body {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 13px;
  line-height: 1.6;
  color: #444;
}
.about-rules__body ol {
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-rules__body p {
  margin: 0;
}
.about-rules__body b {
  color: #1a1a1a;
  font-weight: 700;
}
.about-rules__item:not(.is-open) .about-rules__body {
  display: none;
}
@media (max-width: 900px) {
  .about-rules__inner {
    padding: 0 24px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-rules__head h3 {
    font-size: 26px;
  }
}

/* ============ COMPLEX EQUIP ============ */
.complex-equip {
  background: #fff;
  padding: 40px 0 100px;
}
.complex-equip__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}
.complex-equip__title {
  grid-column: 1 / span 2;
  grid-row: 1;
  font-size: 26px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  align-self: start;
  padding-top: 6px;
}
.complex-equip__item {
  border-radius: 14px;
  overflow: hidden;
  background: #e8dece;
}
.complex-equip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* row 1 */
.complex-equip__item--a {
  grid-column: 3 / span 2;
  grid-row: 1;
}
.complex-equip__item--b {
  grid-column: 5 / span 2;
  grid-row: 1;
}
/* row 2 */
.complex-equip__item--c {
  grid-column: 1 / span 3;
  grid-row: 2;
}
.complex-equip__item--d {
  grid-column: 4 / span 2;
  grid-row: 2;
}
.complex-equip__item--e {
  grid-column: 6 / span 1;
  grid-row: 2;
  height: 86px;
}
.complex-equip__item--f {
  grid-column: 6 / span 1;
  grid-row: 2;
  align-self: end;
  height: 86px;
}

@media (max-width: 900px) {
  .complex-equip__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .complex-equip__title {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .complex-equip__item {
    grid-column: auto !important;
    grid-row: auto !important;
    height: auto !important;
  }
}
