/* ---------- services page ---------- */
/* Same "normal scrolling document" setup as about.css — reuses its generic
   pieces (.eyebrow, .bullets, .timeline, .back-home, .btn) instead of
   redefining them, and only adds what's specific to this page's layout. */
body.services-page { background: #000; }
body.services-page .site-header { background: linear-gradient(180deg, rgba(0,0,0,0.9), rgba(0,0,0,0.6) 70%, rgba(0,0,0,0)); }

.services-main {
  max-width: 1080px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 64px) clamp(24px, 6vw, 90px) 0;
}

.services-hero {
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(242, 246, 244, 0.1);
}
.services-hero h1 {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
  color: var(--ink);
}
.services-hero .lead {
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 300;
  line-height: 1.6;
  color: var(--muted);
  max-width: 56ch;
  margin: 0;
}

.services-intro {
  padding: 56px 0;
  border-bottom: 1px solid rgba(242, 246, 244, 0.1);
  max-width: 68ch;
}
.services-intro p {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.75;
  font-weight: 300;
  color: rgba(242, 246, 244, 0.85);
  margin: 0 0 24px;
}
.services-intro p:last-child { margin-bottom: 0; }

/* Each of the three services (wiring, ELV, UPS) gets its own eyebrow +
   heading + a couple of storytelling paragraphs, then the same .bullets
   checklist style used on the homepage panels — same visual language,
   just with room to actually explain the "why" behind each line item. */
.service-block {
  padding: 64px 0;
  border-bottom: 1px solid rgba(242, 246, 244, 0.1);
}
.service-block h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px;
  color: var(--ink);
  max-width: 26ch;
}
/* One photo per service, right under the heading — reuses the homepage
   panels' .media-label / .media-text caption styling (already generic in
   style.css), but with its own figure wrapper since this page is a normal
   scrolling document, not the camera-driven stage those panels live in. */
.service-media {
  width: 100%;
  max-width: 760px;
  margin: 0 0 28px;
}
.service-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1000 / 540;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(242, 246, 244, 0.14);
}
.service-media figcaption {
  margin-top: 16px;
  display: flex;
  gap: 24px;
  align-items: baseline;
}

.service-copy { max-width: 68ch; }
.service-copy p {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.75;
  font-weight: 300;
  color: rgba(242, 246, 244, 0.85);
  margin: 0 0 20px;
}
.service-copy p:last-child { margin-bottom: 28px; }
.service-block .bullets { max-width: 68ch; }

.services-process {
  padding: 64px 0;
  border-bottom: 1px solid rgba(242, 246, 244, 0.1);
}
.services-process h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 8px;
  color: var(--ink);
  max-width: 28ch;
}
.services-process > .lead {
  margin: 0;
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 300;
  color: var(--muted);
  max-width: 60ch;
}

.services-quote {
  padding: 8px 0 56px;
  border-bottom: 1px solid rgba(242, 246, 244, 0.1);
  max-width: 64ch;
}
.services-quote blockquote {
  margin: 0 0 16px;
  padding: 0 0 0 24px;
  border-left: 3px solid var(--green);
  font-family: 'Sora', sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
}
.services-quote-attr {
  margin: 0;
  padding-left: 27px;
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
}

.services-cta {
  padding: 72px 0 90px;
  text-align: left;
}
.services-cta h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--ink);
  max-width: 24ch;
}
.services-cta .lead {
  margin: 0;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 300;
  color: var(--muted);
}
.services-cta .contact-cta { margin-top: 30px; }
.services-cta .back-home { margin-top: 32px; }

@media (max-width: 640px) {
  .service-block .bullets { grid-template-columns: 1fr; }
}
