/* ============================================
   HERO — fullwidth photo + H1 overlay
   ============================================ */

.hero {
  position: relative;
  min-height: 60vw;
  max-height: 620px;
  overflow: hidden;
  background-color: #1a4a6b;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      #1a4a6b 0%,
      #2271a3 40%,
      #5BBCE4 70%,
      #95C032 100%
    );
}

.hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.35) 55%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 60vw;
  max-height: 620px;
  padding-bottom: var(--s-10);
  padding-top: var(--s-8);
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--r-xl);
  padding: var(--s-1) var(--s-4);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--c-white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
  width: fit-content;
}

.hero__title {
  color: var(--c-white);
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1.2;
  max-width: 760px;
  margin-bottom: var(--s-4);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  flex-wrap: wrap;
}

.hero__stars {
  color: var(--c-orange);
  font-size: var(--text-md);
  letter-spacing: 3px;
}

.hero__location {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.hero__location::before {
  content: '📍';
  font-size: var(--text-base);
}

.hero__cta-row {
  margin-top: var(--s-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  align-items: center;
}

@media (min-width: 768px) {
  .hero { min-height: 480px; }
  .hero__content { min-height: 480px; }
  .hero__title { font-size: var(--text-3xl); }
}

@media (min-width: 1024px) {
  .hero { min-height: 560px; max-height: 620px; }
  .hero__content { min-height: 560px; }
  .hero__title { font-size: var(--text-4xl); }
}
