/* ═══════════════════════════════════════════════════════════════════════════
   POWER WASHING PAGE STYLES
   Depends on: style.css (global), epoxy.css (svc-hero-content, svc-hero-ctas)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Hero media (picture-based hero) ───────────────────────────────────── */
.hero-media.hero-bg img,
.hero-media.hero-bg source {
  width: 100%;
  height: 100%;
}
.hero-media.hero-bg img {
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* ── Power wash trust strip ────────────────────────────────────────────── */
.powerwash-trust-strip {
  padding: 18px 24px;
  background: #111;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.powerwash-trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.powerwash-trust-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(232, 118, 26, 0.16);
  border-radius: 14px;
  padding: 16px 18px;
  text-align: center;
}
.powerwash-trust-item strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.powerwash-trust-item span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

/* ── Before/after proof layout ─────────────────────────────────────────── */
.proof-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px;
  align-items: center;
}
.proof-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}
.proof-card picture,
.proof-card img {
  display: block;
  width: 100%;
}
.proof-card img { height: auto; }
.proof-copy {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 28px;
}
.proof-copy p { color: var(--muted); line-height: 1.7; }
.proof-points { display: grid; gap: 14px; margin-top: 18px; }
.proof-point {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}
.proof-point strong { display: block; color: #fff; margin-bottom: 4px; }
.proof-point span { color: var(--muted); line-height: 1.6; }

/* ── Surface grid ──────────────────────────────────────────────────────── */
.surface-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.surface-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px;
}
.surface-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.55rem;
  color: #fff;
  margin: 0 0 10px;
}
.surface-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.surface-note {
  margin-top: 22px;
  padding: 18px 20px;
  background: rgba(232, 118, 26, 0.08);
  border: 1px solid rgba(232, 118, 26, 0.25);
  border-radius: 16px;
  color: var(--text);
  line-height: 1.7;
}
.surface-note-title {
  color: #fff;
  display: block;
  margin-bottom: 6px;
}

/* ── Surfaces section intro ────────────────────────────────────────────── */
.surfaces-intro {
  max-width: 760px;
  margin: 16px auto 0;
}

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .powerwash-trust-inner { grid-template-columns: repeat(2, 1fr); }
  .proof-wrap,
  .surface-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .powerwash-trust-inner { grid-template-columns: repeat(2, 1fr); }
  .proof-copy { padding: 22px; }
}
@media (max-width: 540px) {
  .powerwash-trust-inner { grid-template-columns: 1fr; }
}
