/* ================================
   HERO
   ================================ */

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 3rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(184,115,51,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(184,115,51,0.05) 0%, transparent 60%);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(0deg, var(--copper) 0px, transparent 1px, transparent 80px, var(--copper) 80px),
    repeating-linear-gradient(90deg, var(--copper) 0px, transparent 1px, transparent 80px, var(--copper) 80px);
}
.hero-left {
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--copper);
}
.hero-eyebrow span {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero-headline em {
  font-style: italic;
  color: var(--copper-light);
}
.hero-subhead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--stone-mid);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}
.hero-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}
.hero-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}
.hero-right {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeIn 1.2s 0.6s forwards;
}
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.home-illustration {
  width: 100%;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.6));
}
.hero-stat-cards {
  position: absolute;
  bottom: -20px;
  left: -30px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.stat-card {
  background: rgba(26,24,20,0.92);
  border: 1px solid rgba(184,115,51,0.25);
  padding: 0.75rem 1.25rem;
  backdrop-filter: blur(8px);
  min-width: 160px;
}
.stat-card .stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--copper-light);
  line-height: 1;
}
.stat-card .stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 6rem 1.5rem 3rem; }
  .hero-right { display: none; }
  .hero-stat-cards { display: none; }
}
