/* ============================================================
   hero.css — Hero / landing section
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(184,146,42,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(184,146,42,0.05) 0%, transparent 60%);
}
.hero-lines {
  position: absolute; inset: 0; overflow: hidden; opacity: 0.04;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(184,146,42,0.5) 79px, rgba(184,146,42,0.5) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(184,146,42,0.5) 79px, rgba(184,146,42,0.5) 80px);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  padding: 6rem 2rem 5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(184,146,42,0.12);
  border: 1px solid rgba(184,146,42,0.3);
  color: var(--gold-light); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
  padding: 6px 14px; border-radius: 2px;
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
}
.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: var(--white); font-weight: 500;
  line-height: 1.1; margin-bottom: 1.5rem;
}
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero-desc {
  color: rgba(255,255,255,0.65); font-size: 1.05rem;
  line-height: 1.8; margin-bottom: 2.5rem; max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual { display: flex; flex-direction: column; gap: 1rem; }

.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,146,42,0.15);
  border-radius: 8px; padding: 1.5rem 2rem;
  display: flex; align-items: center; gap: 1.5rem;
  animation: fadeUp 0.6s both;
}
.stat-card:nth-child(2) { animation-delay: 0.1s; }
.stat-card:nth-child(3) { animation-delay: 0.2s; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 600; color: var(--gold-light);
  line-height: 1; flex-shrink: 0;
}
.stat-info { display: flex; flex-direction: column; }
.stat-label { font-size: 14px; font-weight: 500; color: var(--white); }
.stat-sub { font-size: 12px; color: rgba(255,255,255,0.45); }

.hero-left { animation: fadeUp 0.6s 0.1s both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: grid; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hero-visual { grid-template-columns: 1fr; }
}
