.hero {
  background-color: var(--deep-navy);
  overflow: hidden;
  position: relative;
}

.hero__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1rem;
  position: relative;
}

.hero__content {
  flex: 1;
  min-width: 0;
  z-index: 2;
}

.hero__title {
  font-family: "Rubik", sans-serif;
  font-weight: 900;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.1;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  color: var(--light-grey);
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero__image {
  flex-shrink: 0;
  width: 500px;
  position: relative;
  z-index: 1;
}

.hero__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
}

@media (max-width: 1024px) {
  .hero__image {
    width: 380px;
  }
}

@media (max-width: 768px) {
  .hero__inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .hero__subtitle {
    max-width: 100%;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__image {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
}
