/* ── HERO ── */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-logo {
  position: absolute;
  top: 8px;
  left: 12px;
  z-index: 2;
  width: clamp(150px, 24vw, 360px);
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.08));
}

.hero-tagline {
  position: absolute;
  /* tighter gap: logo height ≈ 60% of its width, minus a little overlap */
  top: calc(8px + clamp(150px, 24vw, 360px) * 0.58);
  left: 12px;
  width: clamp(150px, 24vw, 360px);
  z-index: 2;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: bold;
  font-size: clamp(0.75rem, 1.4vw, 0.95rem);
  color: white;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

/* ── Small screens ── */
@media (max-width: 600px) {
  .hero-logo {
    width: 52vw;
  }

  .hero-tagline {
    top: calc(8px + 52vw * 0.58);
    width: 52vw;
    font-size: 3vw;
  }
}