/* ============================================================
   hero.css — Tela 0 (intro/hero)
   ============================================================ */

.hero-section{
  text-align: center;
  padding-top: 24px;
}

.hero-eyebrow{
  font-family: var(--font-h);
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(198,156,109,.04);
}

h1.hero{
  font-family: var(--font-h);
  font-weight: 800;
  font-size: clamp(28px, 7.5vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0 0 22px;
  color: #ffffff;
}
h1.hero .foil{
  font-weight: 900;
}

.hero-divider{
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 32px auto;
  opacity: .4;
}

.lead{
  font-size: 16px;
  color: var(--warm);
  font-style: italic;
  margin: 0 0 12px;
  font-weight: 300;
}
.lead-body{
  font-size: 15px;
  color: var(--sand);
  opacity: .85;
  margin: 0 0 36px;
  font-weight: 300;
}

.hero-meta{
  font-family: var(--font-h);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--warm);
  margin-top: 28px;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-meta span{
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-meta span::before{
  content: "·";
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
}
.hero-meta span:first-child::before{ display: none; }
