/* ── HERO ── */
#hero {
  position: relative;
  width: 100%; height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 3rem;
  overflow: hidden;
}
.spline-container {
  position: absolute;
  top: 0; right: 0;
  width: 58%;
  height: 100%;
  z-index: 0;
}
#hero-canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.spline-placeholder {
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,169,110,0.07) 0%, transparent 60%),
              radial-gradient(ellipse at 30% 80%, rgba(19,34,71,0.8) 0%, transparent 50%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 6rem;
}
.spline-placeholder-text {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(201,169,110,0.25);
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 520px;
  width: 50%;
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(16px);
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 0.5px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--cream-dim);
  line-height: 1.9;
  letter-spacing: 0.04em;
  max-width: 360px;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(16px);
}
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  opacity: 0;
  transform: translateY(16px);
}
.hero-actions-row {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.btn-gold {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--cobalt);
  border: none;
  padding: 0.9rem 2.2rem;
  cursor: none;
  transition: background 0.25s, transform 0.2s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost-text {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
  background: none;
  border: none;
  cursor: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-ghost-text:hover { color: var(--gold); }

/* Hero bottom stats */
.hero-elevated {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
}
.hero-stats {
  position: absolute;
  bottom: 2.5rem; left: 3rem; right: 3rem;
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 0.5px solid rgba(201,169,110,0.2);
  opacity: 0;
  transform: translateY(12px);
  z-index: 10;
}
.stat-num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--cream-dim);
  text-transform: uppercase;
}
