/* «Части Тела» — страница «Контакты» (префикс ct-) */

#page-root {
  position: relative;
  overflow-x: clip;
}

.ct-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* -------- заголовок -------- */

.ct-head {
  padding-top: clamp(130px, 18vh, 190px);
  padding-bottom: clamp(40px, 6vw, 60px);
}

.ct-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;
}
.ct-crumbs a {
  color: rgba(16, 49, 47, .55);
  text-decoration: none;
  transition: color .25s ease;
}
.ct-crumbs a:hover { color: var(--teal); }
.ct-crumbs__here { color: var(--teal); }

.ct-head__eyebrow { margin-bottom: 22px; }

.ct-head__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;
}
.ct-head__title em {
  font-style: italic;
  color: var(--gold);
}

/* -------- карта и данные -------- */

.ct-main { padding-bottom: clamp(70px, 9vw, 110px); }

.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: start;
}

.ct-col {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.ct-col--map { gap: 16px; }

/* данные с моно-метками */

.ct-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ct-info__row {
  display: flex;
  gap: 14px;
  align-items: baseline;
}
.ct-info__label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  width: 58px;
  flex: none;
}
.ct-info__val {
  font-size: 16px;
  line-height: 1.65;
}
.ct-info__sub {
  color: var(--ink-60);
  font-size: 14px;
}
.ct-info__tel {
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: color .25s ease;
}
.ct-info__tel:hover { color: var(--teal); }
.ct-info__vk {
  font-size: 16px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  transition: color .25s ease;
}
.ct-info__vk:hover { color: var(--gold); }

/* карточка «Перезвоните мне» */

.ct-cb {
  background: var(--ivory);
  border: 1px solid rgba(16, 60, 58, .14);
  border-radius: 22px;
  padding: 28px;
}
.ct-cb__title {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
}
.ct-cb__lead {
  margin: 0 0 20px;
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(16, 49, 47, .65);
}

.ct-cb__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ct-cb__form.is-hidden { display: none; }

.ct-cb__field { display: block; }

.ct-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 13px;
  border: 1px solid var(--line-25);
  background: var(--cream);
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  outline: none;
  transition: border-color .25s ease;
}
.ct-input:focus { border-color: var(--teal); }
.ct-input.is-error { border-color: var(--error); }

.ct-consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  cursor: pointer;
}
.ct-consent__box {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--teal);
  flex: none;
}
.ct-consent__text {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-70);
}
.ct-consent__text a { color: var(--teal); }

.ct-cb__err {
  display: none;
  margin: 0;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--error);
}
.ct-cb__err.is-visible { display: block; }

.ct-cb__send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--pine);
  color: var(--cream);
  font-family: inherit;
  font-weight: 600;
  font-size: 14.5px;
  padding: 15px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background .3s ease, color .3s ease;
}
.ct-cb__send:hover {
  background: var(--gold);
  color: var(--pine);
}

.ct-cb__ok {
  display: none;
  align-items: center;
  gap: 14px;
  padding: 6px 0;
}
.ct-cb__ok.is-visible { display: flex; }
.ct-cb__check {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pine);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 19px;
  flex: none;
}
.ct-cb__ok-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-80);
}
.ct-cb__ok-text strong { font-weight: 600; }

/* карта-плейсхолдер */

.ct-map {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background:
    repeating-linear-gradient(0deg, rgba(23, 116, 112, .06) 0 1.5px, rgba(23, 116, 112, 0) 1.5px 44px),
    repeating-linear-gradient(90deg, rgba(23, 116, 112, .06) 0 1.5px, rgba(23, 116, 112, 0) 1.5px 44px),
    linear-gradient(150deg, #E9F1EF, #DCE9E6);
}
.ct-map__road {
  position: absolute;
  left: -5%;
  right: -5%;
}
.ct-map__road--teal {
  top: 22%;
  height: 40px;
  background: rgba(23, 116, 112, .08);
  transform: rotate(-7deg);
}
.ct-map__road--gold {
  top: 60%;
  height: 22px;
  background: rgba(185, 146, 79, .1);
  transform: rotate(4deg);
}
.ct-map__pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ct-map__pulse {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(185, 146, 79, .8);
  animation: pinPulse 2s ease-out infinite;
}
@keyframes pinPulse {
  0% { transform: scale(.6); opacity: .9; }
  100% { transform: scale(1.6); opacity: 0; }
}
.ct-map__dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--ivory);
  box-shadow: 0 6px 16px -4px rgba(11, 50, 49, .5);
}
.ct-map__addr {
  margin-top: 14px;
  font-size: 12.5px;
  font-weight: 600;
  background: var(--pine);
  color: var(--cream);
  padding: 9px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.ct-map__note {
  position: absolute;
  left: 16px;
  bottom: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--teal);
  background: rgba(252, 250, 244, .78);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 7px 12px;
  border-radius: 999px;
}

/* карточки маршрутов */

.ct-routes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ct-route {
  background: var(--ivory);
  border: 1px solid var(--line-12);
  border-radius: 20px;
  padding: 22px;
}
.ct-route__label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--gold);
}
.ct-route__text {
  margin: 8px 0 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(16, 49, 47, .75);
}

/* -------- реквизиты -------- */

.ct-req {
  background: var(--ivory);
  border-top: 1px solid rgba(16, 60, 58, .1);
}
.ct-req__inner {
  padding-top: clamp(40px, 6vw, 60px);
  padding-bottom: clamp(40px, 6vw, 60px);
  display: flex;
  gap: 18px 60px;
  flex-wrap: wrap;
  align-items: baseline;
}
.ct-req__label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--teal);
}
.ct-req__text {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(16, 49, 47, .65);
}

/* -------- мобильный брейкпоинт -------- */

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