/* ── Hero ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Background image — oversized for parallax headroom ── */
.hero__bg {
  position: absolute;
  /* Extra 10% on all sides so JS translateY has room to move without gaps */
  inset: -10%;
  z-index: 0;
  will-change: transform;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  /* Ensure crisp rendering at all sizes */
  display: block;
}

/* ── Dark overlay — exact spec: rgba(20,20,20,0.45) → rgba(20,20,20,0.55) ── */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(20, 20, 20, 0.45),
    rgba(20, 20, 20, 0.55)
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding-inline: clamp(1.5rem, 6vw, 4rem);
  max-width: 900px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-sunset-warm);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeDown 0.8s ease 0.3s forwards;
}

.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--color-sunset-warm);
  opacity: 0.6;
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 7.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--color-sunset-warm);
}

.hero__subtitle {
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}

.hero__subtitle span {
  display: inline-block;
  margin-inline: 0.5rem;
}

.hero__subtitle span:not(:last-child)::after {
  content: '·';
  margin-left: 1rem;
  opacity: 0.4;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}

/* Floating wave SVG */
.hero__wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 2;
  line-height: 0;
}

.hero__wave svg {
  width: 100%;
  display: block;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .hero__title { font-size: clamp(2.5rem, 11vw, 4rem); }
  .hero__actions { gap: 0.75rem; }
  .hero__actions .btn { padding: 0.75rem 1.5rem; font-size: 0.8rem; }
}
