/* ─── MAIN HERO ─── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 0;
  padding: 0 var(--container-pad);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero__bg--gradient {
  background:
    radial-gradient(ellipse 90% 70% at 15% 80%, rgba(58,31,96,0.9) 0%, transparent 55%),
    radial-gradient(ellipse 70% 90% at 85% 15%, rgba(92,61,130,0.6) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 55% 55%, rgba(24,6,46,0.5) 0%, transparent 65%),
    linear-gradient(145deg, #0E0518 0%, #1C0A34 35%, #2A1250 60%, #120826 100%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(18,6,46,0.72) 0%,
    rgba(58,31,96,0.55) 45%,
    rgba(18,6,46,0.80) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  max-width: 780px;
}

/* Logo in hero */
.hero__logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 0 0 8px rgba(255,255,255,0.06), 0 12px 40px rgba(0,0,0,0.3);
  margin-bottom: var(--space-sm);
}
.hero__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__eyebrow {
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-lavender);
}

.hero__title {
  font-size: var(--text-hero);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--color-cream);
  line-height: 1.05;
}

.hero__sub {
  font-size: clamp(var(--text-sm), 2vw, var(--text-md));
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(253,252,251,0.7);
  max-width: 520px;
  line-height: 1.75;
}

.hero__cta {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--space-xs);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.4);
  animation: scrollBounce 2.2s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.hero__scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.hero__scroll svg { width: 20px; height: 20px; stroke: currentColor; fill: none; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 0.8; }
}

/* ─── PAGE HERO (sub-pages) ─── */
.page-hero {
  padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-xl);
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(var(--text-2xl), 5vw, var(--text-3xl));
  font-weight: 300;
  letter-spacing: 0.03em;
  color: var(--color-ink);
}
.page-hero p {
  max-width: 560px;
  margin: var(--space-sm) auto 0;
  font-size: var(--text-md);
  color: var(--color-ink-muted);
  line-height: 1.8;
}
