/* =========================================================
   HOME — HERO
========================================================= */
.hero {
  background: var(--off-white);
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text {
  flex: 1;
  min-width: 320px;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.2vw, 76px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin: 16px 0 20px;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 0 30px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 520px;
  width: 100%;
  border-radius: var(--radius-lg);
}

@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }
  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-btns {
    justify-content: center;
  }
}
