/* ============================================================
   AGENCY BACKBONE — hero.css
   ============================================================ */

.hero {
  position: relative;
  background-color: var(--bg-primary);
  padding-block: var(--space-12) var(--space-6);
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 780px;
  margin-bottom: var(--space-12);
  animation: heroSlideIn 800ms ease forwards;
}

.hero__label {
  margin-bottom: var(--space-6);
}

.hero__headline {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: var(--size-4xl);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
}

.hero__headline .text-serif {
  line-height: inherit;
}

.hero__subheadline {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--size-md);
  line-height: 1.5;
  color: var(--text-secondary);
  max-width: 520px;
}

.hero__visual {
  position: relative;
  width: calc(100% + var(--space-32) * 2);
  margin-bottom: var(--space-10);
  animation: heroSlideIn 800ms 200ms ease both;
}

.hero__visual::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 4%;
  right: 4%;
  height: 1px;
  background: var(--gradient-gold);
  border-radius: var(--radius-full);
  opacity: 0.5;
}

.hero__visual-frame {
  position: relative;
  width: 100%;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow:
    var(--shadow-gold),
    0 40px 100px rgba(0, 0, 0, 0.7);
  transition: box-shadow var(--transition-slow);
}

.hero__visual-frame:hover {
  box-shadow:
    0 0 60px rgba(181, 139, 62, 0.25),
    0 40px 100px rgba(0, 0, 0, 0.8);
}

.hero__visual-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  animation: heroSlideIn 800ms 300ms ease both;
}

.hero__cta {
  font-size: var(--size-md);
  padding: var(--space-5) var(--space-10);
}

.hero__trust {
  font-size: var(--size-sm);
  color: var(--text-muted);
  font-weight: 400;
}

@keyframes heroSlideIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}