.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.4rem;
  align-items: stretch;
}

.home-hero-copy {
  padding: 1.5rem;
}

.home-hero-copy h1 {
  margin-top: 0;
  margin-bottom: 0.45rem;
  font-size: clamp(2.3rem, 4.8vw, 3.85rem);
  line-height: 1.08;
}

.home-hero-subtitle {
  margin-top: 0;
  margin-bottom: 0.9rem;
  font-size: clamp(1.7rem, 3.8vw, 3.1rem);
  line-height: 1.12;
}

.home-hero-copy p {
  margin-bottom: 1.1rem;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.home-hero-media {
  position: relative;
  overflow: hidden;
}

.home-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-hero-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(12, 17, 29, 0.83);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 0.65rem;
  padding: 0.65rem 0.75rem;
}

.home-hero-badge p {
  margin: 0;
  color: #f4f8fd;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-team-wrap {
  margin-top: 1.5rem;
  overflow: hidden;
}

.home-team-photo {
  width: 100%;
  height: auto;
  min-height: 320px;
  display: block;
  object-fit: cover;
}

.home-priorities {
  margin-top: 1.5rem;
}

.home-signature {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  border-radius: var(--kk-radius-lg);
  border: 1px solid var(--kk-border);
  padding: 1rem 1.1rem;
  background: rgba(13, 20, 31, 0.76);
}

.home-signature p {
  margin: 0;
  font-size: 1.08rem;
  color: rgba(244, 248, 252, 0.95);
}

.home-signature img {
  max-width: 220px;
  width: 100%;
  height: auto;
}

@media (max-width: 1199px) {
  .home-hero {
    grid-template-columns: 1fr;
  }

  .home-hero-media {
    min-height: 320px;
  }
}

@media (max-width: 767px) {
  .home-hero-copy {
    padding: 1.1rem;
  }

  .home-team-photo {
    min-height: 260px;
  }

  .home-signature {
    grid-template-columns: 1fr;
  }

  .home-signature img {
    max-width: 180px;
  }
}
