/* ============================================================
   SECTIONS.CSS â€” Stats, Services, Why, Process, CTA, Footer
   Retaining Wall Guys
============================================================ */

/* â”€â”€ STATS BAR â”€â”€ */
.stats-bar {
  background: var(--slate);
  padding: 36px 48px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.stats-bar__item { text-align: center; }

.stats-bar__num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stats-bar__label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--concrete);
  margin-top: 6px;
}

.stats-bar__divider {
  width: 1px;
  height: 52px;
  background: rgba(200,191,176,0.2);
}

/* â”€â”€ SERVICES â”€â”€ */
.services { background: var(--offwhite); }

.services__header {
  max-width: 600px;
  margin-bottom: 64px;
}
.services__header p {
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.7;
  color: #4a5568;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #d1d5db;
}

.service-card {
  background: var(--offwhite);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition-med);
}
.service-card:hover { background: var(--slate); }
.service-card:hover .service-card__name,
.service-card:hover .service-card__desc { color: var(--offwhite); }
.service-card:hover .service-card__icon { color: var(--gold); }
.service-card:hover .service-card__bg-num { color: rgba(201,168,76,0.1); }

.service-card__bg-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(28,36,48,0.06);
  position: absolute;
  top: 16px; right: 20px;
  line-height: 1;
  transition: color var(--transition-med);
  user-select: none;
}

.service-card__icon {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--earth);
  transition: color var(--transition-med);
}

.service-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 12px;
  transition: color var(--transition-med);
}

.service-card__desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #5a6270;
  transition: color var(--transition-med);
}

/* â”€â”€ WHY â”€â”€ */
.why { background: var(--slate); }

.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.why__intro {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--concrete);
  margin-top: 20px;
}

.why__points {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why-point {
  border-left: 3px solid var(--gold);
  padding-left: 24px;
}
.why-point strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
  color: var(--offwhite);
}
.why-point p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--concrete);
}

/* â”€â”€ PROCESS â”€â”€ */
.process { background: var(--concrete); }

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(28,36,48,0.15);
  margin-top: 56px;
}

.process-step { background: var(--concrete); padding: 40px 32px; }

.process-step__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--earth);
  line-height: 1;
  margin-bottom: 16px;
}

.process-step__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--slate);
}

.process-step__desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #4a3f35;
}

/* â”€â”€ CTA STRIP â”€â”€ */
.cta-strip {
  background: var(--earth);
  padding: 80px 48px;
  text-align: center;
}

.cta-strip__headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  text-transform: uppercase;
  color: var(--offwhite);
  line-height: 1;
  margin-bottom: 18px;
}

.cta-strip__sub {
  color: rgba(247,245,242,0.8);
  font-size: 1rem;
  margin-bottom: 36px;
}

/* â”€â”€ FOOTER â”€â”€ */
.sitefooter {
  background: var(--slate-dark);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.sitefooter__logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--offwhite);
}
.sitefooter__logo span { color: var(--gold); }

.sitefooter__copy {
  font-size: 0.82rem;
  color: #4a5568;
}

.sitefooter__links {
  list-style: none;
  display: flex;
  gap: 28px;
}
.sitefooter__links a {
  font-size: 0.8rem;
  color: #6b7280;
  text-decoration: none;
  transition: color var(--transition-fast);
}
.sitefooter__links a:hover { color: var(--concrete); }

/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 900px) {
  .stats-bar { padding: 28px 20px; }
  .stats-bar__divider { display: none; }
  .services__grid { grid-template-columns: 1fr; }
  .why__inner { grid-template-columns: 1fr; gap: 44px; }
  .process__steps { grid-template-columns: 1fr 1fr; }
  .sitefooter { flex-direction: column; align-items: flex-start; padding: 36px 20px; }
  .cta-strip { padding: 60px 20px; }
}

@media (max-width: 560px) {
  .process__steps { grid-template-columns: 1fr; }
}
