/* =========================================================
   NORTHSTAR SELECTED — Hero Section
   ========================================================= */

.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--color-black);
}

/* ── Background Image ───────────────────────────────────── */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center;
  animation: heroZoom 12s var(--ease-out) forwards;
}

/* Placeholder when no image */
.hero__bg-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #1a1a1a 0%, #0c0c0c 60%, #1a1008 100%);
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.00); }
}

/* ── Gradient Overlay ───────────────────────────────────── */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0.15) 70%,
    transparent 100%
  );
}

/* ── Content ────────────────────────────────────────────── */
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--container-pad) clamp(var(--sp-16), 8vh, var(--sp-32));
  max-width: var(--container-max);
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}

.hero__eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--color-gold);
}

.hero__eyebrow-text {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--color-gold);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: var(--fw-light);
  line-height: var(--lh-tight);
  color: var(--color-white);
  max-width: 900px;
  margin-bottom: var(--sp-8);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.6s forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--color-gold-light);
}

.hero__subtitle {
  font-size: clamp(var(--fs-base), 1.5vw, var(--fs-md));
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-10);
  font-weight: var(--fw-light);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.8s forwards;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 1s forwards;
}

/* ── Scroll Indicator ───────────────────────────────────── */
.hero__scroll {
  position: absolute;
  right: var(--container-pad);
  bottom: clamp(var(--sp-12), 8vh, var(--sp-20));
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.4s forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-gold);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { top: -100%; }
  100% { top: 200%; }
}

.hero__scroll-label {
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* ── Stats bar ──────────────────────────────────────────── */
.hero__stats {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  display: flex;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-left: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.2s forwards;
}

.hero__stat {
  padding: var(--sp-5) var(--sp-8);
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.hero__stat:last-child {
  border-right: none;
}

.hero__stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-light);
  color: var(--color-white);
  line-height: 1;
}

.hero__stat-label {
  display: block;
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: var(--sp-1);
}

