/* ═══════════════════════════════════════════════
   HERO SECTION — Full redesign
   ─────────────────────────────────────────────
   • Real photo background with layered gradients
   • Title 5.5–6.5 rem
   • Larger CTA button
   • Stats bar as proper grid row
   ═══════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  background: var(--green-dk);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;   /* content row + stats row */
  overflow: hidden;
}

/* ── Real photo background ── */
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('../assets/hero-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  /* subtle parallax handled by JS if available */
  z-index: 0;
}

/* ── Layered dark gradient overlay — ensures text legibility ── */
#hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg,
      rgba(13, 38, 32, 0.94) 0%,
      rgba(13, 38, 32, 0.82) 45%,
      rgba(13, 38, 32, 0.50) 70%,
      rgba(13, 38, 32, 0.30) 100%),
    linear-gradient(to bottom,
      rgba(13, 38, 32, 0.55) 0%,
      transparent 40%,
      rgba(13, 38, 32, 0.7) 100%);
  z-index: 1;
}

/* ── Hero left column ── */
.hero-left {
  grid-column: 1;
  grid-row: 1;
  position: relative; z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 3rem 3rem 7rem;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.70rem; font-weight: 400;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.2s forwards;
  display: flex; align-items: center; gap: 1rem;
}
.hero-eyebrow::before {
  content: ''; width: 2.5rem; height: 1px;
  background: var(--gold); flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.5vw, 6.2rem);
  font-weight: 300; color: var(--white);
  line-height: 1.03; letter-spacing: -0.015em;
  margin-bottom: 0.4rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.35s forwards;
}
.hero-title em     { font-style: italic; color: var(--gold-lt); display: block; }
.hero-title strong { font-weight: 700; display: block; }

.hero-divider {
  width: 4rem; height: 1.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.8rem 0;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.5s forwards;
}

.hero-desc {
  font-size: 1rem; font-weight: 300;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8; max-width: 420px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.65s forwards;
}

.hero-actions {
  display: flex; gap: 1.5rem; align-items: center;
  margin-top: 2.2rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.8s forwards;
}

/* ── Primary CTA — bigger ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.8rem;
  background: var(--gold); color: var(--black);
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; padding: 1.15rem 2.8rem;
  border: none; cursor: none;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
  box-shadow: 0 8px 24px rgba(196, 168, 74, 0.3);
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(-110%) skewX(-20deg);
  transition: transform 0.5s var(--ease);
}
.btn-primary:hover::after { transform: translateX(110%) skewX(-20deg); }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(196, 168, 74, 0.45);
  background: var(--gold-lt);
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 3px;
  transition: color 0.3s, border-color 0.3s;
}
.btn-ghost:hover { color: var(--white); border-color: var(--gold); }

/* ── Hero right column (SVG globe) ── */
.hero-right {
  grid-column: 2;
  grid-row: 1;
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  padding: 4rem 5rem 4rem 3rem;
}

.hero-logo-wrap {
  opacity: 0;
  animation: fadeIn 1.6s var(--ease) 0.6s forwards;
  filter: drop-shadow(0 0 60px rgba(196,168,74,0.12));
}

/* SVG animations */
.orbit-ring {
  animation: spin 22s linear infinite;
  transform-origin: 160px 160px;
}
.orbit-ring-2 {
  animation: spin 35s linear infinite reverse;
  transform-origin: 160px 160px;
}
.orbit-dot {
  animation: spin 14s linear infinite;
  transform-origin: 160px 160px;
}

/* ── Stats bar ── */
.hero-stats {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(13, 38, 32, 0.6);
  backdrop-filter: blur(8px);
  position: relative; z-index: 2;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1.2s forwards;
}

.stat-item {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 1.6rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 600; color: var(--gold);
  display: block; line-height: 1;
}
.stat-label {
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.40);
  display: block; margin-top: 0.4rem;
}
