/* ============================================================
   HOMEPAGE HERO — Full-bleed video section
   ============================================================ */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Video background */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* Multi-layer overlay: darkens bottom for text legibility,
   adds a warm vignette at the top */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.15) 0%,
      rgba(0, 0, 0, 0.05) 30%,
      rgba(0, 0, 0, 0.40) 70%,
      rgba(0, 0, 0, 0.72) 100%
    );
}

/* Subtle radial vignette for depth */
.hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 60% 40%,
    rgba(0, 0, 0, 0.08) 0%,
    transparent 70%
  );
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Content */
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding-inline: var(--container-pad);
  max-width: 900px;
  width: 100%;
}

.hero__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 7.5vw, 6rem);
  font-weight: var(--weight-medium);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: var(--space-6);
  animation: fadeUp var(--duration-slower) var(--ease-out) 150ms both;
}

/* Italic accent on second line (legacy — not used by the split variant) */
.hero__heading em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
}

/* Name-over-location treatment: both lines equal weight and size, fully bold */
.hero__heading--split {
  font-weight: var(--weight-semi);
}

.hero__subheading {
  font-family: var(--font-sans);
  font-size: clamp(var(--text-base), 1.6vw, var(--text-lg));
  font-weight: var(--weight-regular);
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.01em;
  max-width: 460px;
  margin-inline: auto;
  margin-bottom: var(--space-9);
  animation: fadeUp var(--duration-slower) var(--ease-out) 320ms both;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  animation: fadeUp var(--duration-slower) var(--ease-out) 480ms both;
}

/* Thin divider line below hero content */
.hero__divider {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
  animation: fadeIn var(--duration-slower) var(--ease-out) 900ms both;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.5);
  animation: fadeIn var(--duration-slower) var(--ease-out) 1000ms both;
}

.hero__scroll-text {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

.hero__scroll-arrow {
  animation: scrollBounce 2s ease-in-out infinite;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 640px) {
  .hero {
    height: 100svh;
    min-height: 500px;
    max-height: none;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 300px;
    margin-inline: auto;
  }

  .hero__actions .btn {
    text-align: center;
  }
}
