/* «Части Тела» — страница «Услуги» (хаб направлений), префикс sv- */

/* -------- шапка страницы -------- */

.sv-hero {
  padding-top: clamp(130px, 18vh, 190px);
  padding-bottom: clamp(30px, 4vw, 50px);
}

.sv-crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(16, 49, 47, .55);
  margin-bottom: 26px;
}
.sv-crumbs a {
  color: rgba(16, 49, 47, .55);
  text-decoration: none;
  transition: color .25s ease;
}
.sv-crumbs a:hover { color: var(--teal); }
.sv-crumbs__here { color: var(--teal); }

.sv-hero__eyebrow {
  display: flex;
  gap: 10px;
  margin: 0 0 22px;
}

.sv-hero__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.sv-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(42px, 6.4vw, 92px);
  line-height: 1.02;
  letter-spacing: -.015em;
  max-width: 14ch;
}
.sv-hero__title em {
  font-style: italic;
  color: var(--gold);
}
.sv-hero__lead {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(16, 49, 47, .75);
  max-width: 38ch;
}

.sv-hint {
  margin: 26px 0 0;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(16, 49, 47, .45);
}

/* -------- список направлений -------- */

.sv-list-sec { padding-bottom: clamp(60px, 8vw, 100px); }

.sv-list { border-top: 1px solid rgba(16, 60, 58, .14); }

.sv-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 10px 22px;
  align-items: center;
  padding: clamp(20px, 3vw, 30px) 8px;
  border-bottom: 1px solid rgba(16, 60, 58, .14);
  text-decoration: none;
  color: var(--ink);
  transition: background .3s ease, padding .3s ease;
}
.sv-row:hover {
  background: rgba(23, 116, 112, .05);
  padding-left: 20px;
}

.sv-row__num {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--teal);
}
.sv-row__body {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.sv-row__titleline {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.sv-row__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 3.6vw, 50px);
  line-height: 1.08;
}
.sv-row__sub {
  font-size: 13px;
  color: rgba(16, 49, 47, .58);
  letter-spacing: .02em;
}

.sv-chip {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  white-space: nowrap;
}
.sv-chip--gold {
  background: var(--gold);
  color: var(--pine);
}
.sv-chip--teal {
  background: var(--teal);
  color: var(--ivory);
}

.sv-row__meta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.sv-row__price {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: rgba(16, 49, 47, .65);
  white-space: nowrap;
}
.sv-row__arrow {
  color: var(--teal);
  font-size: 19px;
}

@media (max-width: 920px) {
  .sv-row { grid-template-columns: 40px 1fr; }
  .sv-row__meta {
    grid-column: 2 / -1;
    justify-self: start;
    margin-top: 2px;
  }
}

/* -------- тёмная CTA-секция -------- */

.sv-cta {
  background: var(--pine);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.sv-cta__glow {
  position: absolute;
  top: -220px;
  right: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(59, 150, 143, .25), rgba(59, 150, 143, 0));
  pointer-events: none;
}
.sv-cta__inner {
  padding-top: clamp(64px, 9vw, 110px);
  padding-bottom: clamp(64px, 9vw, 110px);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  position: relative;
}
.sv-cta__title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.08;
}
.sv-cta__title em {
  font-style: italic;
  color: var(--gold);
}
.sv-cta__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(247, 242, 233, .72);
  max-width: 46ch;
}
.sv-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.sv-cta__btn {
  font-size: 15.5px;
  transition: background .3s ease;
}
.sv-cta__ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid rgba(247, 242, 233, .3);
  color: var(--cream);
  font-weight: 600;
  font-size: 15.5px;
  padding: 16px 29px;
  border-radius: 999px;
  text-decoration: none;
  transition: border-color .3s ease, color .3s ease;
}
.sv-cta__ghost:hover {
  border-color: rgba(185, 146, 79, .8);
  color: var(--gold);
}

@media (max-width: 920px) {
  .sv-cta__inner { grid-template-columns: 1fr; }
}

/* -------- плавающее фото-превью за курсором -------- */

.sv-float {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 700;
  width: 250px;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  transform: translate(-999px, -999px);
  box-shadow: 0 34px 70px -30px rgba(11, 50, 49, .55);
  will-change: transform;
}
.sv-float__bg {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(23, 116, 112, .1) 0 11px, rgba(23, 116, 112, 0) 11px 24px),
    linear-gradient(155deg, #E3EEEB, #D2E2DE);
}
.sv-float__label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink);
  background: rgba(252, 250, 244, .82);
  padding: 6px 10px;
  border-radius: 999px;
}
