/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--nav-height));
  margin-top: var(--nav-height);
  min-height: 500px;
  overflow: hidden;
  background: var(--color-dark);
}

/* ─── Slideshow ───────────────────────────────────────────── */
.slideshow {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.slide.active {
  opacity: 1;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.85;
  transition: opacity 1.2s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--padding-desktop);
  padding-bottom: 60px;
}

.hero-title {
  font-size: clamp(28px, 4vw, var(--font-size-3xl));
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 0.04em;
  line-height: 1.15;
  max-width: 640px;
}

.hero-subtitle {
  margin-top: 14px;
  font-size: var(--font-size-base);
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
}

/* ─── Hero — No Image Fallback ───────────────────────────────── */
.hero--placeholder {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.hero--placeholder .hero-image {
  display: none;
}

/* ─── Page Banner (for inner pages) ─────────────────────────── */
.page-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.page-banner-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.page-banner-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 50px var(--padding-desktop) 30px;
}

.page-banner-title {
  font-size: var(--font-size-2xl);
  font-weight: 300;
  color: var(--color-text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
