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

/* ── STATS BAR ── */
.stats-bar {
  background: var(--limestone-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 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: 2.8rem;
  font-weight: 700;
  color: var(--earth);
  line-height: 1;
}

.stats-bar__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--concrete);
  margin-top: 6px;
}

.stats-bar__divider {
  width: 1px;
  height: 44px;
  background: var(--border);
}

/* ── SERVICES ── */
.services { background: var(--offwhite); }

.services__header {
  max-width: 600px;
  margin-bottom: 56px;
}
.services__header p {
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--concrete);
}

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

.service-card {
  background: var(--card);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  border-top: 3px solid transparent;
  transition: border-color var(--transition-med);
}
.service-card:hover { border-top-color: var(--gold); }

.service-card__bg-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--limestone-deep);
  position: absolute;
  top: 12px; right: 20px;
  line-height: 1;
  user-select: none;
}

.service-card__icon {
  font-size: 1.8rem;
  margin-bottom: 18px;
  color: var(--gold);
}

.service-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--earth);
  margin-bottom: 10px;
}

.service-card__desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--concrete);
}

/* ── INTRO STRIP (short company intro, section 2 on homepage) — a dark
   band to visually separate it from the light hero/why sections above
   and below it. ── */
.intro-strip {
  background: var(--slate-dark);
  text-align: center;
}
.intro-strip__inner {
  max-width: 760px;
  margin: 0 auto;
}
.intro-strip__eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--offwhite);
  margin-bottom: 18px;
}
.intro-strip__body {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--base-rock);
}
.intro-strip__link {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold-on-dark);
  transition: color var(--transition-fast);
}
.intro-strip__link:hover { color: var(--gold-on-dark-hover); }

/* ── WHY (Specialists, Not Generalists) ── */
.why { background: var(--limestone-deep); }

.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  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: 28px;
}

.why-point {
  border-left: 3px solid var(--gold);
  padding-left: 22px;
}
.why-point strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
  color: var(--slate);
}
.why-point p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--concrete);
}

/* ── WHY RWG ── */
.why-rwg { background: var(--offwhite); }

.why-rwg__header { max-width: 600px; margin-bottom: 48px; }

.why-rwg__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.why-rwg-card {
  border-top: 3px solid var(--gold);
  padding-top: 16px;
}

.why-rwg-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--earth);
  margin-bottom: 8px;
}

.why-rwg-card__desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--concrete);
}

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

/* ── PROCESS ── */
.process { background: var(--limestone-deep); }

.process__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 48px;
}

.process-step { background: var(--limestone-deep); padding: 36px 24px; }

.process-step__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--base-rock);
  line-height: 1;
  margin-bottom: 14px;
}

.process-step__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--earth);
}

.process-step__desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--concrete);
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--offwhite);
  border-top: 1px solid var(--border);
  padding: 72px 48px;
  text-align: center;
}

.cta-strip__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  color: var(--earth);
  line-height: 1.05;
  margin-bottom: 16px;
}

.cta-strip__sub {
  color: var(--concrete);
  font-size: 1rem;
  margin-bottom: 32px;
}

/* ── FOOTER — the one deliberate dark surface, at the very bottom of
   every page. ── */
.sitefooter {
  background: var(--slate-dark);
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.sitefooter__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--offwhite);
  display: flex;
  align-items: center;
}
.sitefooter__logo span { color: var(--gold); }

.sitefooter__logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.sitefooter__copy {
  font-size: 0.82rem;
  color: var(--base-rock);
}

.sitefooter__links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.sitefooter__links a {
  font-size: 0.82rem;
  color: var(--base-rock);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.sitefooter__links a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .stats-bar { padding: 24px 20px; }
  .stats-bar__divider { display: none; }
  .services__grid { grid-template-columns: 1fr; }
  .why__inner { grid-template-columns: 1fr; gap: 40px; }
  .process__steps { grid-template-columns: 1fr 1fr; }
  .sitefooter { flex-direction: column; align-items: flex-start; padding: 32px 20px; }
  .cta-strip { padding: 52px 20px; }
}

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