/* Dedicated commercial service pages — uses the sitewide ink/gold system. */
.service-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.service-hero-media { position: absolute; inset: 0; }
.service-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 34%; }
.service-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 12, 0.25) 0%, rgba(5, 8, 12, 0.35) 40%, rgba(5, 8, 12, 0.94) 100%);
}
.service-hero-copy { position: relative; z-index: 1; width: 100%; padding: 150px 0 clamp(64px, 9vw, 110px); }
.service-hero-copy .eyebrow { margin-bottom: 1.4rem; }
.service-hero h1 {
  max-width: 840px;
  margin: 0 0 1.4rem;
  color: var(--text-hi);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0.02em;
}
.service-hero p { max-width: 660px; margin: 0; color: rgba(244, 246, 248, 0.82); font-size: clamp(1rem, 1.8vw, 1.2rem); }
.service-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2rem; }
.service-actions .cta-button { display: inline-flex; align-items: center; justify-content: center; }
.service-actions .quiet-link { display: inline-flex; align-items: center; padding: 13px 22px; }

.service-intro,
.service-section { padding: clamp(80px, 10vw, 130px) 0; background: var(--ink); }
.service-intro-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(42px, 8vw, 110px); align-items: start; }
.service-intro h2,
.service-section h2 {
  color: var(--text-hi);
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.service-intro-copy p,
.service-section p { color: var(--text); font-size: 1rem; line-height: 1.9; }
.service-intro-copy p:first-child { color: var(--text-hi); font-size: 1.15rem; }

.service-section.alt { background: var(--ink-2); }
.service-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin-top: 3rem; background: var(--line); border: 1px solid var(--line); }
.service-card { padding: clamp(28px, 4vw, 46px); background: var(--ink-2); }
.alt .service-card { background: var(--ink); }
.service-card .number { display: block; margin-bottom: 1.8rem; color: var(--gold); font-size: 0.68rem; letter-spacing: 0.2em; }
.service-card h3 { margin-bottom: 1rem; color: var(--text-hi); font-size: 1rem; font-weight: 500; letter-spacing: 0.04em; text-transform: none; }
.service-card p { margin: 0; color: var(--text-dim); font-size: 0.92rem; line-height: 1.8; }

.service-proof { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-proof div { padding: 2rem; text-align: center; border-right: 1px solid var(--line); }
.service-proof div:last-child { border-right: 0; }
.service-proof strong { display: block; margin-bottom: 0.55rem; color: var(--text-hi); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em; }
.service-proof span { color: var(--text-dim); font-size: 0.78rem; line-height: 1.6; }

.service-faq { max-width: 820px; margin: 3rem auto 0; }
.service-faq details { border-top: 1px solid var(--line); }
.service-faq details:last-child { border-bottom: 1px solid var(--line); }
.service-faq summary { padding: 1.45rem 0; cursor: pointer; color: var(--text-hi); font-weight: 400; list-style: none; }
.service-faq summary::-webkit-details-marker { display: none; }
.service-faq summary::after { content: '+'; float: right; color: var(--gold); }
.service-faq details[open] summary::after { content: '−'; }
.service-faq details p { padding: 0 2rem 1.5rem 0; margin: 0; color: var(--text); }

.service-final { padding: clamp(80px, 10vw, 120px) 0; background: var(--ink-2); text-align: center; }
.service-final h2 { color: var(--text-hi); }
.service-final p { max-width: 620px; margin: 0 auto 2rem; color: var(--text); }

@media (max-width: 820px) {
  .service-hero { min-height: 68vh; }
  .service-intro-grid { grid-template-columns: 1fr; gap: 30px; }
  .service-cards { grid-template-columns: 1fr; }
  .service-proof { grid-template-columns: 1fr 1fr; }
  .service-proof div:nth-child(2) { border-right: 0; }
  .service-proof div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 520px) {
  .service-hero { min-height: 76vh; }
  .service-hero-media img { object-position: 58% center; }
  .service-proof { grid-template-columns: 1fr; }
  .service-proof div { border-right: 0; border-bottom: 1px solid var(--line); }
  .service-proof div:last-child { border-bottom: 0; }
}
