/* ── Services index ── */
#services-intro { background: var(--white); }
.services-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.services-intro-grid h2 { margin-top: 0.5rem; }
.services-intro-grid p  { margin-bottom: 1rem; }

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card-lg {
  border: 1px solid var(--light);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.service-card-lg:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.service-card-lg img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}
.service-card-lg:hover img { transform: scale(1.03); }
.service-card-lg-body { padding: 1.75rem; }
.service-card-lg-body h3 { margin-bottom: 0.5rem; }
.service-card-lg-body p  { font-size: 0.9rem; margin-bottom: 1.25rem; }
.service-card-lg-body a  {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}

/* ── Individual service page ── */
#service-body { background: var(--white); }
.service-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 5rem;
  align-items: start;
}

.service-content h2 { margin-bottom: 1.25rem; }
.service-content p  { margin-bottom: 1rem; font-size: 0.95rem; }
.service-content p:last-of-type { margin-bottom: 0; }
.service-content a  { color: var(--gold); border-bottom: 1px solid var(--gold); padding-bottom: 1px; }

.service-highlights {
  margin: 2rem 0;
  list-style: none;
}
.service-highlights li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--light);
  font-size: 0.92rem;
  color: var(--stone);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.service-highlights li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* Before/after for cleaning page */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.before-after figure { margin: 0; }
.before-after img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.before-after figcaption {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-top: 0.5rem;
}

/* ── Sidebar ── */
.service-sidebar { position: sticky; top: 96px; }

.service-cta-box {
  background: var(--charcoal);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.service-cta-box .section-label { color: var(--gold); }
.service-cta-box h3 { color: var(--white); margin-bottom: 0.75rem; font-size: 1.3rem; }
.service-cta-box p  { color: rgba(255,255,255,0.6); font-size: 0.88rem; max-width: none; margin-bottom: 1.5rem; }
.service-cta-box .btn-primary { display: block; text-align: center; }

.service-nav-box {
  background: var(--cream);
  padding: 1.75rem;
}
.service-nav-box p.section-label { margin-bottom: 1rem; }
.service-nav-list { list-style: none; }
.service-nav-list li { border-bottom: 1px solid #c8c0b4; }
.service-nav-list li:last-child { border-bottom: none; }
.service-nav-list a {
  display: block;
  padding: 0.6rem 0;
  font-size: 0.88rem;
  color: var(--stone);
  transition: color 0.2s;
}
.service-nav-list a:hover  { color: var(--gold); }
.service-nav-list a.active { color: var(--gold); font-weight: 600; }

/* ── Service CTA strip ── */
#service-cta { background: var(--cream); padding: 4rem 0; }
.service-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
#service-cta .section-label { color: var(--gold); }
#service-cta h2 { margin-bottom: 0.5rem; }
#service-cta p  { margin-bottom: 0; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .services-intro-grid  { grid-template-columns: 1fr; gap: 2rem; }
  .services-full-grid   { grid-template-columns: 1fr 1fr; }
  .service-layout       { grid-template-columns: 1fr; gap: 3rem; }
  .service-sidebar      { position: static; }
  .service-cta-inner    { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .services-full-grid { grid-template-columns: 1fr; }
  .before-after       { grid-template-columns: 1fr; }
}
