/* ================================================================
   HERO — Full-Bleed with Layered Gradient
   ================================================================ */

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

.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  will-change: transform;
}
.hero__bg-video {
  pointer-events: none;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10,10,10,0.55) 0%,
      rgba(10,10,10,0.15) 35%,
      rgba(10,10,10,0.10) 55%,
      rgba(10,10,10,0.65) 100%),
    linear-gradient(90deg,
      rgba(10,10,10,0.45) 0%,
      transparent 55%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--gutter);
}

.hero__tag {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  opacity: 0;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3.8rem, 11vw, 10rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--ivory);
  margin-bottom: 2rem;
}
.hero__title-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.05em;
}
.hero__title-line > span {
  display: inline-block;
  will-change: transform;
}

.hero__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 3.5rem;
  opacity: 0;
}

.hero__scroll-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
  opacity: 0;
}
.hero__scroll-cta:hover { color: var(--ivory); }
.hero__scroll-cta svg { transition: transform 0.4s var(--ease-out); }
.hero__scroll-cta:hover svg { transform: translateY(5px); }

/* ── Scroll Indicator — animated gold dot sliding down a track ── */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 70px;
  background: rgba(255,255,255,0.10);
  overflow: hidden;
}
.hero__scroll-dot {
  width: 1px;
  height: 24px;
  background: var(--gold);
  animation: scrollDot 2.2s var(--ease-in-out) infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(-24px); }
  100% { transform: translateY(70px); }
}
