/* ============================================================
   LifeShaping METHOD™ — Hero CSS
   Homepage hero section styles.
   This file is referenced by method.html for structural consistency
   with the full site stylesheet chain.
   Homepage-specific. No method page classes defined here.
   ============================================================ */

.hero {
  background: linear-gradient(155deg, #240436 0%, #0b0b0d 50%, #000000 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 96px;
}

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  max-width: 780px;
}

.hero__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C9A227;
  margin: 0 0 24px;
}

.hero__h1 {
  font-family: 'League Spartan', 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: #FFFFFF;
  line-height: 1.1;
  margin: 0 0 28px;
  letter-spacing: -0.02em;
}

.hero__h2 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin: 0 0 48px;
  max-width: 600px;
}

.hero__trust-signal {
  max-width: 760px;
  margin: 0 0 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero__cta-primary {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 0.9375rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #0B0B0D;
  background-color: #C9A227;
  text-decoration: none;
  padding: 18px 44px;
  min-width: 178px;
  text-align: center;
  border-radius: 2px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hero__cta-primary:hover {
  background-color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.34);
}

.hero__cta-secondary {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.56);
  text-decoration: none;
  transition: color 0.2s ease;
}

.hero__cta-secondary:hover {
  color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 768px) {
  .hero {
    padding: 96px 0 72px;
    min-height: auto;
  }

  .hero__inner {
    padding: 0 24px;
  }

  .hero__trust-signal {
  max-width: 760px;
  margin: 0 0 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.hero__ctas {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
