/* ─── HERO ─── */
.hero {
  background: var(--surface);
  padding: 25px 0 40px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: var(--r-lg);
  min-height: 460px;
  overflow: hidden;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 52px 48px 52px 60px;
}

.hero__title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
}

/* Правая колонка: адреса */
.hero__addr {
  padding: 52px 60px 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.hero__addr-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
}

/* ─── КОНТАКТЫ В HERO (левая колонка) ─── */
.ct-phone {
  display: block;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--red);
  line-height: 1.2;
  transition: opacity .15s;
}
.ct-phone:hover { opacity: .8; }

.ct-phone-note {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 4px;
}

.ct-phone2 {
  display: block;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 12px;
  transition: color .15s;
}
.ct-phone2:hover { color: var(--red); }

.ct-link {
  display: block;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 6px;
  transition: color .15s;
}
.ct-link:hover { color: var(--red); }

.ct-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 0;
}

/* Кнопки прижаты к низу колонок — выравниваются на одном уровне */
.hero__content > .btn,
.hero__addr > .btn {
  margin-top: auto;
}
.ct-social__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background .15s;
  flex-shrink: 0;
}
.ct-social__icon:hover { background: var(--border); }
.ct-social__label {
  font-size: 14px;
  color: var(--muted);
  transition: color .15s;
}
.ct-social__label:hover { color: var(--red); }

/* ─── АДРЕСА В HERO (правая колонка) ─── */
.ct-addr-block {
  margin-bottom: 28px;
}

.ct-addr-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.ct-addr-text {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.65;
}

/* ─── КОМАНДА ─── */
.ct-team {
  padding: 0 0 40px;
}

.ct-team__title {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--ink);
}

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

.team-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.team-card__photo-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.team-card__body {
  padding: 14px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.team-card__dept {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}

.team-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.team-card__phone {
  font-size: 13px;
  color: var(--ink);
  transition: color .15s;
}
.team-card__phone:hover { color: var(--red); }

.team-card__email {
  font-size: 13px;
  color: var(--muted);
  transition: color .15s;
}
.team-card__email:hover { color: var(--red); }

/* ─── КАРТА ─── */
.ct-map {
  padding: 0 0 40px;
}

.ct-map__card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 52px 56px;
}

.ct-map__title {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 28px;
  color: var(--ink);
}

.ct-map__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.ct-map__block strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}

.ct-map__block p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

.ct-map__embed {
  border-radius: var(--r-md);
  overflow: hidden;
}

.ct-map__embed iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* ─── АДАПТИВ ─── */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__content {
    padding: 40px 32px 32px;
  }

  .hero__addr {
    padding: 0 32px 40px;
  }

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

  .ct-map__card {
    padding: 36px 32px;
  }

  .ct-map__info {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

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

  .ct-map__card {
    padding: 28px 24px;
  }

  .ct-map__embed iframe {
    height: 280px;
  }
}
