.hero__intro { max-width: 1100px; margin: 0 auto 24px; text-align: center; }
.hero__slider { position: relative; max-width: 1100px; margin: 0 auto; width: 100%; }
.hero__slider-viewport { overflow: hidden; width: 100%; border-radius: var(--card-radius, 8px); }
.hero__slider-track { display: flex; transition: transform 0.5s ease; will-change: transform; }
.hero__slide { flex-shrink: 0; box-sizing: border-box; }
.hero__slide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 8px 0;
  width: 100%;
}
.hero__slide-text { min-width: 0; }
.hero__slide .hero__photo {
  text-align: center;
  min-height: min(320px, 72vw);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__slide .hero__photo img {
  display: block;
  width: min(320px, 72vw);
  height: min(320px, 72vw);
  object-fit: cover;
  border-radius: var(--photo-radius, 50%);
  box-shadow: var(--photo-shadow, 0 8px 24px rgba(45,90,61,0.25));
}
.hero__role { font-weight: 600; color: var(--accent); margin-bottom: 8px; font-size: 1rem; }
.hero__tagline { opacity: 0.9; line-height: 1.5; }
.hero__contacts { margin-top: 12px; font-size: 0.95rem; opacity: 0.9; }
.hero__contacts a { text-decoration: none; }
.hero__contacts a:hover { text-decoration: underline; }
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--accent);
  color: var(--btn-text, #fff);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.hero__arrow:hover { opacity: 1; }
.hero__arrow--prev { left: -52px; }
.hero__arrow--next { right: -52px; }
.hero__slide-grid { padding: 8px 4px; }
.hero__slider-viewport { touch-action: pan-y; }
.hero__dots { display: flex; justify-content: center; gap: 10px; margin-top: 16px; }
.hero__contact-sep { opacity: 0.7; }
.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--border, #ccc);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.hero__dot.active { background: var(--accent); transform: scale(1.2); }
.hero__motto-wrap { max-width: 1100px; margin: 24px auto 0; text-align: center; }
.hero__cta { text-align: center; margin-top: 20px; }

@media (max-width: 768px) {
  .hero__slider {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    gap: 12px 10px;
    align-items: center;
  }
  .hero__slider-viewport { grid-column: 1 / -1; grid-row: 1; }
  .hero__slide-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 8px 0;
    width: 100%;
  }
  .hero__slide .hero__photo { order: -1; min-height: auto; }
  .hero__slide .hero__photo img {
    width: min(58vw, 240px);
    height: min(58vw, 240px);
  }
  .hero__slide-text { width: 100%; }
  .hero__contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .hero__contact-sep { display: none; }
  .hero__arrow {
    position: static;
    transform: none;
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
    justify-self: center;
  }
  .hero__arrow--prev { grid-column: 1; grid-row: 2; left: auto; }
  .hero__arrow--next { grid-column: 3; grid-row: 2; right: auto; }
  .hero__dots { grid-column: 2; grid-row: 2; margin-top: 0; }
}

.contacts__team { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.contacts__person { background: var(--card-bg); padding: 24px; border-radius: var(--card-radius, 8px); border: 1px solid var(--border, transparent); }
.contacts__person h3 { color: var(--accent); margin-bottom: 6px; font-family: var(--font-heading, inherit); }
.contacts__person .contacts__role { margin-bottom: 12px; opacity: 0.85; }

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