/* ============================================================
   Service pages (/color-change-wrap-naples/ /chrome-delete-naples/
   /fleet-wraps-naples/). Loaded on top of styles.css and only on
   these pages; reuses the site tokens so the pages match the
   studio look without duplicating the design system.
   ============================================================ */

.sp-hero {
  padding: clamp(3rem, 2rem + 5vw, 5.5rem) 0 clamp(2.6rem, 2rem + 3vw, 4.2rem);
  background: linear-gradient(180deg, var(--bg-deep), var(--bg));
}

.sp-crumbs {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 2rem;
}
.sp-crumbs a {
  color: var(--muted);
  text-decoration: none;
  transition: color 200ms var(--ease);
}
.sp-crumbs a:hover { color: var(--yellow); }
.sp-crumbs .sp-crumbs__sep { margin-inline: 0.45em; }

.sp-hero__eyebrow {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--yellow);
  margin-bottom: 0.9rem;
}

.sp-hero__h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.3rem, 1.5rem + 3.6vw, 4.2rem);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  max-width: 16ch;
}
.sp-hero__h .dot { color: var(--yellow); }

.sp-hero__lead {
  max-width: 56ch;
  margin-top: 1.4rem;
  font-size: var(--text-lead);
  color: var(--ink-2);
}
.sp-tag { color: var(--yellow); font-weight: 700; white-space: nowrap; }

.sp-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}
.sp-hero__note { margin-top: 1.2rem; color: var(--muted); font-size: 0.95rem; }

.sp-intro {
  max-width: 68ch;
  margin-top: clamp(2rem, 1.5rem + 2vw, 3rem);
  font-size: var(--text-body);
  color: var(--ink-2);
  line-height: 1.65;
}

.sp-section {
  padding: clamp(3rem, 2rem + 4vw, 5.5rem) 0;
  border-top: 1px solid var(--line-soft);
}

.sp-prose {
  max-width: 68ch;
  margin-top: 1.1rem;
  font-size: var(--text-body);
  color: var(--ink-2);
  line-height: 1.65;
}
.sp-prose strong { color: var(--ink); font-weight: 600; }
.sp-prose a,
.sp-cross a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-color: var(--yellow);
}
.sp-prose a:hover,
.sp-cross a:hover { color: var(--yellow); }

.sp-list {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  max-width: 72ch;
}
.sp-list li {
  margin-top: 1.1rem;
  padding-left: 1.2rem;
  border-left: 2px solid var(--line);
  color: var(--ink-2);
  line-height: 1.6;
}
.sp-list li strong { color: var(--ink); font-weight: 700; }

.sp-steps {
  list-style: none;
  counter-reset: sp;
  padding: 0;
  margin: 1.6rem 0 0;
  max-width: 72ch;
}
.sp-steps li {
  counter-increment: sp;
  position: relative;
  margin-top: 1.4rem;
  padding-left: 2.6rem;
  color: var(--ink-2);
  line-height: 1.6;
}
.sp-steps li::before {
  content: counter(sp);
  position: absolute;
  left: 0;
  top: 0.05em;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--yellow);
}
.sp-steps li strong { color: var(--ink); font-weight: 700; }

.sp-cta { background: var(--surface); }
/* styles.css keeps .book__note on one line for the home page's short suffix;
   the notes on these pages are full clauses, so let them wrap. */
.sp-cta .book__note { white-space: normal; }
.sp-cross { margin-top: 2.2rem; color: var(--muted); max-width: 68ch; }
