/* =========================================================
   Sunny Cleans — Suburb Pages (Design Pass #1)
   Scope: /assets/css/pages/suburb.css only
   Strategy: align suburb pages with service/hub band system
   ========================================================= */

:root{
  --suburb-copy-max: 78ch;
}

/* Consistent band rhythm (avoid huge gaps) */
.page-suburb .band{
  padding: clamp(26px, 3.2vw, 54px) 0;
}

/* Hero band */
.page-suburb .suburb-hero{
  padding: clamp(28px, 3.2vw, 56px) 0;
}

.page-suburb .suburb-hero-card{
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  box-shadow: var(--shadow-sm);
  padding: clamp(28px, 3vw, 44px);
}

.page-suburb .suburb-hero-card h1{
  font-size: clamp(2.1rem, 3.2vw, 3.1rem);
  line-height: 1.08;
  font-weight: 950;
}

.page-suburb .suburb-hero-card .lead{
  max-width: var(--suburb-copy-max);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ---------- Breadcrumbs (match service/hub pages) ---------- */
.page-suburb .crumbs{
  max-width: var(--max);
  margin: 14px auto 0;
  font-size: 0.86rem;
  color: rgba(11,18,32,.62);
}

.page-suburb .crumbs ol{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.page-suburb .crumbs li{
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.page-suburb .crumbs li + li::before{
  content: "›";
  color: rgba(11,18,32,.32);
}

.page-suburb .crumbs a{
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(11,18,32,.18);
}

.page-suburb .crumbs a:hover{
  border-bottom-color: rgba(11,18,32,.35);
}

/* Body layout */
.page-suburb .suburb-body .wrap{
  max-width: var(--max);
}

.page-suburb .suburb-service-cards{
  margin-top: 0;           /* no inline margin anymore */
  gap: 18px;
}

.page-suburb .suburb-service-cards > .card{
  box-shadow: var(--shadow-sm);
}

.page-suburb .suburb-stack{
  margin-top: 16px;
  gap: 14px;
}

.page-suburb .suburb-panel{
  box-shadow: var(--shadow-sm);
}

.page-suburb .suburb-panel h2{
  margin: 0 0 12px 0;
  font-size: 1.25rem;
  font-weight: 950;
}

/* Make suburb link lists nicer if long */
.page-suburb .suburb-panel ul{
  margin: 0;
  padding-left: 1.1rem;
  line-height: 1.7;
}

.page-suburb .suburb-panel li + li{
  margin-top: 6px;
}

/* Mobile */
@media (max-width: 720px){
  .page-suburb .suburb-hero-card{
    padding: 22px;
  }
}
