/* =========================================================
   HERO.CSS — Two-column video hero (content / media)
   Desktop: content left, video right.
   Mobile:  video on top, content below.
   ========================================================= */

.hero {
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(1.75rem, 3.5vw, 3rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

/* ===== Copy column ===== */
/* Hero eyebrow — compact Montserrat, no italic (Autography removed) */
.hero-eyebrow {
  font-size: 0.57rem;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-dark);
  margin-bottom: 0.15rem;
}

.hero-title {
  font-size: clamp(1.72rem, 4.26vw, 2.95rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 1.1rem;
}

.hero-sub {
  max-width: 480px;
  color: var(--text-soft);
  font-weight: 500;
  font-size: 0.86rem;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}

/* Large primary CTA (light theme) */
.btn-lg {
  padding: 0.95rem 1.7rem;
  font-size: 0.82rem;
}

.btn-cta.btn-lg {
  box-shadow: 4px 4px 0 var(--navy);
}
.btn-cta.btn-lg:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--navy);
}

/* Stats row */
.hero-stats {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
}

.hero-stats strong {
  font-size: 1.31rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
}

.hero-stats span {
  font-size: 0.64rem;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}

/* ===== Media column ===== */
.hero-media {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--navy);
  border: var(--border-1);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 8px 8px 0 rgba(105, 159, 71, 0.55);
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Play badge */
.video-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  background: var(--surface);
  border: var(--border-1);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--navy);
  box-shadow: 3px 3px 0 rgba(25, 40, 60, 0.2);
}

.video-badge [data-lucide] { width: 15px; height: 15px; color: var(--green-dark); }

/* Hero caption now uses Montserrat italic (Autography removed) */
.hero-cap {
  margin-top: 1.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-style: italic;
  color: var(--green-dark);
  text-align: center;
}

/* ===== Responsive: video on top, content below ===== */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-media { order: -1; }   /* video first */
  .hero-copy { text-align: center; }
  .hero-sub { display: none; }   /* hidden on small screens */
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
}