/* ============================================================
   HERO — Above-the-fold section
   ============================================================ */

.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-block: var(--space-7) var(--space-8);
  position: relative;
  overflow: hidden;
}

/* Subtle texture via radial gradient */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 50%, rgba(45, 95, 110, 0.04), transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(184, 134, 11, 0.03), transparent 50%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
  position: relative;
}

@media (min-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-7);
  }
}

@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 3fr 2fr;
  }
}

/* Content */
.hero__content {
  order: 2;
}

@media (min-width: 768px) {
  .hero__content {
    order: 1;
  }
}

.hero__title {
  margin-top: var(--space-3);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: var(--color-accent);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero__subtitle {
  margin-top: var(--space-4);
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  max-width: 50ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-5);
}

/* Trust indicators */
.hero__trust {
  display: flex;
  gap: var(--space-5);
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border-light);
}

.hero__trust-item {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.hero__trust-item strong {
  display: block;
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 2px;
}

/* Photo */
.hero__visual {
  order: 1;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero__visual {
    order: 2;
    justify-content: flex-end;
  }
}

.hero__photo {
  width: 280px;
  height: 280px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  object-position: center top;
  box-shadow:
    var(--shadow-xl),
    0 0 0 4px var(--color-surface),
    0 0 0 5px var(--color-border-light);
}

@media (min-width: 768px) {
  .hero__photo {
    width: 360px;
    height: 360px;
  }
}

@media (min-width: 1024px) {
  .hero__photo {
    width: 420px;
    height: 420px;
    border-radius: var(--radius-xl);
  }
}
