/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1800&q=90&fit=crop&crop=center') center/cover no-repeat;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(44, 26, 26, .55) 0%,
    rgba(44, 26, 26, .40) 50%,
    rgba(44, 26, 26, .65) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: 0 var(--section-px);
}

.hero__eyebrow {
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--blush-lt);
  margin-bottom: .8rem;
}

.hero__script {
  font-family: var(--script);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--blush-lt);
  margin-bottom: .6rem;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.hero__title em {
  font-style: italic;
  color: var(--blush-lt);
}

.hero__subtitle {
  font-family: var(--sans);
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  font-weight: 300;
  color: rgba(255, 255, 255, .8);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  z-index: 2;
}

.scroll-indicator__text {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}

.scroll-indicator__line {
  width: 1px;
  height: 40px;
  background: var(--blush-lt);
}
