.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.25));
}

.hero__content {
  width: 40%;
  padding: 64px var(--container-padding);
  position: relative;
}

.hero__inner {
  width: 560px;
  height: 344px;
  margin: 0 auto;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 72px;
  line-height: 1.05;
  margin: 0 0 4dvb;
}

.hero__description {
  max-width: 560px;
  margin: 0 0 40px;
  color: rgba(229, 231, 235, 0.95);
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 400;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero__button--primary {
  background: #506C3C;
  color: #ffffff;
}

.hero__button--secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* Tablet */
@media (max-width: 1024px) {
  .hero__content {
    width: 60%;
    padding-top: 96px;
  }
  .hero__inner {
    width: auto;
    max-width: 560px;
    height: auto;
  }
  .hero__title {
    font-size: 56px;
    line-height: 1.08;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 560px;
  }
  .hero__content {
    width: 100%;
    padding-top: 500px;
  }
  .hero__inner {
    width: 100%;
    max-width: 560px;
    height: auto;
  }
  .hero__title {
    font-size: 40px;
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .hero__description {
    font-size: 0.95rem;
  }
}
