/* hero.css — hero section layout. Matches design/homepage.html hero. */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #F1F7F7 0%, var(--bg) 78%);
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 56px;
  align-items: center;
  padding-top: 84px;
  padding-bottom: 92px;
}
.hero h1 {
  font-size: var(--h1);
  letter-spacing: -.01em;
  margin-bottom: 22px;
}
.hero .lede {
  margin-bottom: 30px;
  font-size: 1.1875rem;
  color: var(--soft-text);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.trust-bar {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px 18px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--small);
  color: var(--soft-text);
  font-weight: 500;
  white-space: nowrap;
}
.trust-item .star {
  color: #C6862B;
}
.trust-item svg {
  color: var(--primary);
  flex: 0 0 auto;
}

.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(150deg, var(--sage), #5E9A9E);
  box-shadow: var(--shadow-hover);
}
.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% center;
}

@media (max-width: 900px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 52px;
    padding-bottom: 64px;
  }
  .hero-photo {
    aspect-ratio: 16 / 11;
    order: -1;
  }
}
@media (max-width: 767px) {
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta .btn {
    width: 100%;
  }
  .trust-bar {
    flex-wrap: wrap;
  }
}
