.hero-visual {
  position: relative;
  overflow: hidden;
  background: #0d1728;
}

.hero-visual img {
  width: 100%;
  height: 720px;
  object-fit: cover;
  display: block;
  filter: saturate(1.08) contrast(1.04);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 23, 40, 0.72), rgba(13, 23, 40, 0.18) 45%, rgba(13, 23, 40, 0.1));
}

.hero-copy {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 580px;
  color: #fff;
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1 {
  font-size: clamp(3rem, 5vw, 6rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.hero-copy p {
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.hero-btn,
.hero-btn.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 52px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-btn {
  background: linear-gradient(135deg, #ff3e3e 0%, #ff7a6d 100%);
  color: #fff;
  box-shadow: 0 18px 28px rgba(255, 62, 62, 0.3);
}

.hero-btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.trip-highlight {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.trip-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 600;
}

.trip-chip i {
  color: #ffcf5c;
}

@media (max-width: 768px) {
  .hero-visual img {
    height: 560px;
  }

  .hero-copy {
    left: 20px;
    right: 20px;
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-btn,
  .hero-btn.secondary {
    width: 220px;
  }
}
