/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */

#hero {
  min-height: 100svh;
  padding-top: 6rem;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 55% 45%, rgba(26, 58, 92, .07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 15% 80%, rgba(192, 154, 90, .06) 0%, transparent 60%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content { padding: var(--gap) 0; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp .8s .1s ease both;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--ink);
  opacity: 0;
  animation: fadeUp .9s .2s ease both;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-subtitle {
  margin-top: 1.75rem;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 42ch;
  opacity: 0;
  animation: fadeUp .9s .35s ease both;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s .5s ease both;
}

.hero-visual {
  opacity: 0;
  animation: fadeIn 1.2s .5s ease both;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}

.hero-stat {
  background: var(--paper);
  padding: 2rem 1.75rem;
}

.hero-stat .number {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  color: var(--accent);
  white-space: pre-line;
}

.hero-stat .desc {
  margin-top: .4rem;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.4;
}
