/* ============================================================
   HERO.CSS â€” Hero Section
   Retaining Wall Guys
============================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;

  /* Soil cross-section strata */
  background: linear-gradient(180deg,
    #6B8BA4 0%,   #6B8BA4 22%,
    #8A9E6B 22%,  #8A9E6B 26%,
    #9C7A5B 26%,  #9C7A5B 44%,
    #7A5C42 44%,  #7A5C42 64%,
    #5C4430 64%,  #5C4430 80%,
    #3D2E20 80%,  #3D2E20 100%
  );
}

/* Block/stone texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      0deg,
      transparent, transparent 38px,
      rgba(0,0,0,0.07) 38px, rgba(0,0,0,0.07) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent, transparent 118px,
      rgba(0,0,0,0.05) 118px, rgba(0,0,0,0.05) 120px
    );
}

/* Legibility gradient */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(28,36,48,0.55) 0%,
    rgba(28,36,48,0.20) 40%,
    rgba(28,36,48,0.75) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 48px;
  max-width: 900px;
}

.hero__eyebrow {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4rem, 9vw, 9rem);
  line-height: 0.92;
  color: var(--offwhite);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero__headline em {
  font-style: normal;
  color: var(--gold);
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--concrete);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 900px) {
  .hero__content { padding: 0 20px; }
  .hero { padding-bottom: 72px; }
}
