/* ============================================
   GrapoliX Hero Component
   DESIGN.md — Layout Components — PAGE HERO
   ============================================ */

/* ── Hero Shell ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

/* ── Hero with shorter height for inner pages ── */
.hero--page {
  min-height: 50vh;
  padding: 140px 0 80px;
}

/* ── Hero Background ── */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Subtle radial gradient — center glow */
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 40%,
    rgba(232, 213, 163, 0.04) 0%,
    transparent 70%
  );
}

/* ── Hero Container ── */
.hero__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Eyebrow Label ── */
.hero__eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid rgba(232, 213, 163, 0.3);
  border-radius: 2px;
}

/* ── Headline ── */
.hero__headline {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 900px;
}

.hero__headline span {
  color: var(--gold);
}

/* ── Subheadline ── */
.hero__sub {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 40px;
  text-transform: none;
  letter-spacing: 0;
}

/* ── Hero Actions ── */
.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Hero Divider ── */
.hero__divider {
  width: 48px;
  height: 1px;
  background: var(--silver);
  margin: 40px 0;
}

/* ── Hero Stats Bar ── */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.hero__stat-value {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.hero__stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── SVG Background Element ── */
.hero__svg-bg {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  opacity: 0.03;
  z-index: 0;
  pointer-events: none;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero--page {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero__stats {
    gap: 32px;
  }

  .hero__svg-bg {
    display: none;
  }
}
