/* ─────────────────────────────────────────
   css/hero.css
───────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--charcoal);
}

.hero__visual-col {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.hero__photo {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7,5,11,0.94) 0%, rgba(33,21,41,0.66) 42%, rgba(81,64,93,0.28) 72%, rgba(123,77,94,0.22) 100%),
    radial-gradient(circle at 22% 28%, rgba(184,135,152,0.36), transparent 34%),
    radial-gradient(circle at 82% 62%, rgba(154,167,167,0.22), transparent 32%),
    radial-gradient(circle at 52% 22%, rgba(238,226,214,0.14), transparent 28%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 26%, rgba(167,125,144,0.18), transparent 18%),
    radial-gradient(circle at 78% 63%, rgba(140,122,147,0.16), transparent 20%),
    radial-gradient(circle at 86% 18%, rgba(241,232,223,0.1), transparent 12%);
  filter: blur(18px);
  pointer-events: none;
}

.hero__text-col {
  max-width: 780px;
  padding: 150px var(--section-px) 110px;
  position: relative;
}

.hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 28px;
  font-weight: 500;
  opacity: 0;
  animation: fadeUp 0.9s 0.2s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(76px, 10vw, 145px);
  font-weight: 300;
  line-height: 0.9;
  color: var(--cream);
  letter-spacing: -0.035em;
  margin-bottom: 36px;
  opacity: 0;
  text-shadow: 0 18px 70px rgba(0,0,0,0.46);
  animation: fadeUp 0.9s 0.4s forwards;
}

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

.hero__desc {
  font-size: clamp(16px, 1.6vw, 23px);
  line-height: 1.72;
  color: rgba(248,240,232,0.88);
  opacity: 0;
  max-width: 660px;
  margin-bottom: 52px;
  font-weight: 300;
  animation: fadeUp 0.9s 0.6s forwards;
}

.hero__cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s forwards;
}

.hero__cta .btn-primary,
.hero__cta .btn-ghost {
  flex: 0 0 auto;
}

.hero__cta .btn-ghost[href*="merch"] {
  background: rgba(111,74,92,0.74);
  border-color: rgba(111,74,92,0.88);
}

.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  right: 40px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(241,232,223,0.62);
  writing-mode: vertical-rl;
  opacity: 0.72;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .hero {
    min-height: 92vh;
  }

  .hero__photo {
    object-position: 58% center;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(7,5,11,0.78) 0%, rgba(7,5,11,0.64) 46%, rgba(7,5,11,0.88) 100%),
      radial-gradient(circle at 20% 32%, rgba(184,135,152,0.3), transparent 38%),
      radial-gradient(circle at 82% 68%, rgba(154,167,167,0.18), transparent 34%);
  }

  .hero__text-col {
    align-self: end;
    padding: 140px var(--section-px) 72px;
  }

  .hero__title {
    font-size: clamp(68px, 18vw, 94px);
  }

  .hero__desc {
    font-size: 16px;
    max-width: 520px;
  }

  .hero__cta {
    align-items: stretch;
    flex-direction: column;
    max-width: 320px;
  }

  .hero__cta .btn-primary,
  .hero__cta .btn-ghost {
    width: 100%;
  }
}
