.hero-section {
  margin-top: var(--total-header-height);
  background: var(--background);
}

.hero-section__layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.38fr) minmax(560px, 0.62fr);
  min-height: calc(100vh - var(--total-header-height));
  align-items: center;
  column-gap: clamp(48px, 6vw, 120px);
}

.hero-section__content {
  display: flex;
  align-items: center;
}

.hero-section__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 520px;
  width: 100%;
  padding-left: clamp(56px, 8vw, 140px);
  padding-right: clamp(24px, 4vw, 72px);
}

.hero-section__title {
  font-size: clamp(52px, 6.2vw, 84px);
  line-height: 1.05;
}

.hero-section__subtitle {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-section__address {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-section__actions {
  display: inline-flex;
}

.hero-section__media {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 56px;
}

.hero-visual {
  position: relative;
  width: min(62vw, 760px);
}

.hero-visual__primary {
  width: 100%;
  display: block;
  border-radius: 36px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

.hero-visual__secondary {
  position: absolute;
  bottom: -120px;
  right: 40px;
  width: 42%;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  object-fit: cover;
}

.hero-visual__pagination {
  align-self: center;
  margin-top: 72px;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.hero-visual__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.25);
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.hero-visual__dot--active {
  background: var(--text-primary);
  transform: scale(1.25);
}

@media (max-width: 1024px) {
  .hero-section__layout {
    grid-template-columns: minmax(320px, 1fr);
  }

  .hero-section__media {
    align-items: center;
    gap: 48px;
  }

  .hero-visual {
    width: min(70vw, 520px);
  }

  .hero-visual__secondary {
    right: 32px;
    bottom: -72px;
    width: 48%;
  }
}

@media (max-width: 768px) {
  .hero-section__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-section__content {
    justify-content: center;
    padding: 48px 0 32px;
  }

  .hero-section__copy {
    align-items: center;
    text-align: center;
    padding: 0 32px;
  }

  .hero-section__actions {
    justify-content: center;
  }

  .hero-visual {
    width: min(80vw, 420px);
  }

  .hero-visual__secondary {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-section__title {
    font-size: 36px;
  }

  .hero-visual__pagination {
    gap: 10px;
  }
}
