/* ================================================================
   Riverside Plumbing — site overrides on top of ghost-screen.css
   (the rv-* bespoke CSS was retired 2026-07-23 when the theme became
   a faithful Ghost-DOM parity port; see visual-parity-comparison.md)

   Contains ONLY intentional deviations from the live Ghost site:
   1. Mobile fix — live's .image-grid* imgs (max-width:150px) overflow
      their 3-per-row columns below ~600px, causing 20px horizontal
      scroll. Cap them to their column instead.
   2. Modernized footer (.site-foot) replacing live's slim blue bar.
   ================================================================ */

/* --- 1. Mobile image-grid overflow fix ------------------------- */
@media (max-width: 600px) {
  /* !important: the competing max-width:150px lives in <style> blocks inside
     the page content (after this sheet), so order+specificity can't win. */
  .image-grid img,
  .image-grid-2 img,
  .image-grid-3 img {
    max-width: 100% !important;
  }
}

/* --- 2. Modern footer ------------------------------------------ */
.site-foot {
  margin-top: auto; /* pin to bottom of the .site flex column */
  background-color: #15171a;
  color: #9aa1a6;
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, #0c73ba, #8dc63f) 1;
  font-size: 1.5rem;
  line-height: 1.6;
}

.site-foot-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px max(4vmin, 20px) 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}

.site-foot-logo {
  display: inline-block;
  background: #fff;
  border-radius: 10px;
  padding: 10px 16px;
}

.site-foot-logo img {
  width: 170px;
  height: auto;
}

.site-foot-blurb {
  margin-top: 18px;
  max-width: 320px;
}

.site-foot h4 {
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.site-foot-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-foot-col li + li {
  margin-top: 8px;
}

.site-foot a {
  color: #cfd4d8;
  text-decoration: none;
}

.site-foot a:hover {
  color: #8dc63f;
  opacity: 1;
}

.site-foot-tel {
  font-size: 2rem;
  font-weight: 700;
  color: #fff !important;
}

.site-foot-tel:hover {
  color: #8dc63f !important;
}

.site-foot-hours {
  margin-top: 10px;
}

.site-foot-hours strong {
  color: #cfd4d8;
}

.site-foot-cta {
  display: inline-block;
  margin-top: 18px;
  background: #8dc63f;
  color: #fff !important;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 999px;
}

.site-foot-cta:hover {
  background: #7cb32f;
  color: #fff !important;
}

.site-foot-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px max(4vmin, 20px);
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 1.3rem;
}

@media (max-width: 767px) {
  .site-foot-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 44px;
  }

  .site-foot-bottom {
    flex-direction: column;
    text-align: center;
  }
}
