/* === Páginas individuales de servicios + breadcrumbs =================== */

/* Breadcrumbs */
.breadcrumbs {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  font-size: 13px;
}
.breadcrumbs ol {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 4px 8px;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.breadcrumbs li {
  display: flex; align-items: center;
  color: var(--ink-3);
}
.breadcrumbs li + li::before {
  content: "/";
  margin-right: 8px;
  color: var(--line);
}
.breadcrumbs a {
  color: var(--ink-3);
  transition: color .15s;
  text-decoration: none;
}
.breadcrumbs a:hover { color: var(--brand); }
.breadcrumbs li[aria-current="page"] {
  color: var(--ink);
  font-weight: 500;
}

/* Service page hero (smaller than home hero) */
.svc-hero {
  padding: clamp(48px, 6vw, 80px) var(--pad-x) clamp(40px, 5vw, 64px);
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.svc-hero .container { max-width: 1120px; margin: 0 auto; }
.svc-hero h1 {
  font-family: var(--display);
  font-size: clamp(32px, 4.5vw, 52px);
  letter-spacing: -.03em;
  font-weight: 600;
  line-height: 1.05;
  margin: 8px 0 18px;
  color: var(--ink);
}
.svc-hero h1 em {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--brand);
}
.svc-hero .lede { font-size: 17px; color: var(--ink-2); line-height: 1.65; max-width: 60ch; }
.svc-hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }

/* Service page body — TOC + content */
.svc-body { padding: clamp(40px, 6vw, 80px) var(--pad-x); }
.svc-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
.svc-toc {
  position: sticky; top: 220px;
  font-size: 13.5px;
  border-left: 1px solid var(--line);
  padding-left: 20px;
}
.svc-toc-label {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 600;
  margin-bottom: 14px;
}
.svc-toc ol { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.svc-toc a {
  display: block;
  padding: 6px 0;
  color: var(--ink-2);
  line-height: 1.4;
}
.svc-toc a:hover, .svc-toc a.active { color: var(--brand); }

@media (max-width: 900px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-toc { position: static; border-left: 0; padding-left: 0; padding-bottom: 24px; border-bottom: 1px solid var(--line); margin-bottom: 24px; }
}

/* Content */
.svc-content {
  max-width: 740px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-2);
}
.svc-section {
  padding: 36px 0;
  border-top: 1px solid var(--line);
}
.svc-section:first-child { border-top: 0; padding-top: 0; }
.svc-section h2 {
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0 0 16px;
  line-height: 1.25;
  display: flex; gap: 14px; align-items: baseline;
}
.svc-section h2::before {
  content: attr(data-num);
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  color: var(--brand);
  letter-spacing: .04em;
  flex-shrink: 0;
}
.svc-content p { margin: 0 0 14px; }
.svc-content strong { color: var(--ink); font-weight: 600; }
.svc-content ul { margin: 8px 0 16px; padding: 0; list-style: none; }
.svc-content ul li {
  padding: 8px 0 8px 22px;
  position: relative;
  border-bottom: 1px solid var(--line-2);
}
.svc-content ul li:last-child { border-bottom: 0; }
.svc-content ul li::before {
  content: "✓";
  color: var(--brand);
  position: absolute; left: 0; top: 8px;
  font-weight: 700;
}

/* Steps timeline */
.svc-steps {
  list-style: none;
  counter-reset: stp;
  margin: 12px 0 0;
  padding: 0;
  display: grid; gap: 0;
}
.svc-steps li {
  counter-increment: stp;
  padding: 18px 0 18px 56px;
  position: relative;
  border-bottom: 1px solid var(--line-2);
  border-top: 0 !important;
}
.svc-steps li:last-child { border-bottom: 0; }
.svc-steps li::before {
  content: counter(stp, decimal-leading-zero);
  position: absolute;
  left: 0; top: 22px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  color: var(--brand);
  letter-spacing: .06em;
}
.svc-steps li strong { color: var(--ink); display: block; margin-bottom: 4px; font-family: var(--display); font-weight: 600; font-size: 16px; letter-spacing: -.005em; }
.svc-steps li span { font-size: 14.5px; color: var(--ink-3); line-height: 1.6; }

/* Pricing / timing callouts */
.svc-callout {
  background: var(--paper-2);
  border-left: 3px solid var(--brand);
  padding: 18px 22px;
  margin: 14px 0 0;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.6;
}
.svc-callout strong { color: var(--ink); }

/* FAQs styled like home faq */
.svc-faq details {
  border-top: 1px solid var(--line);
  padding: 0;
}
.svc-faq details:last-child { border-bottom: 1px solid var(--line); }
.svc-faq summary {
  cursor: pointer;
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 24px;
  font-family: var(--display);
  font-size: 17px; font-weight: 500;
  color: var(--ink);
  list-style: none;
  transition: color .15s;
}
.svc-faq summary::-webkit-details-marker { display: none; }
.svc-faq summary:hover { color: var(--brand); }
.svc-faq .faq-icon-inline {
  width: 24px; height: 24px;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-3);
  flex-shrink: 0;
  transition: all .2s;
}
.svc-faq details[open] .faq-icon-inline {
  background: var(--brand);
  border-color: var(--brand);
  color: white;
  transform: rotate(45deg);
}
.svc-faq details > div {
  padding: 0 0 22px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.7;
  max-width: 60ch;
}

/* Final CTA on service pages */
.svc-cta {
  margin-top: 40px;
  padding: 36px 32px;
  background: var(--brand);
  color: white;
  display: grid; grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
.svc-cta h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.015em;
  margin: 0 0 6px;
  color: white;
}
.svc-cta p { margin: 0; color: rgba(255,255,255,.78); font-size: 14.5px; line-height: 1.55; max-width: 50ch; }
.svc-cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.svc-cta .btn--white { background: white; color: var(--brand); border-color: white; }
.svc-cta .btn--white:hover { background: transparent; color: white; }
.svc-cta .btn--outline { background: transparent; color: white; border-color: rgba(255,255,255,.4); }
.svc-cta .btn--outline:hover { background: white; color: var(--brand); border-color: white; }
@media (max-width: 700px) {
  .svc-cta { grid-template-columns: 1fr; }
  .svc-cta-actions { justify-self: start; }
}

/* Related services strip */
.svc-related {
  padding: 60px var(--pad-x);
  background: var(--paper-2);
  border-top: 1px solid var(--line);
}
.svc-related .container { max-width: 1120px; margin: 0 auto; }
.svc-related h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.015em;
  margin: 0 0 24px;
  color: var(--ink);
}
.svc-rel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.svc-rel-grid a {
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--ink);
  text-decoration: none;
  transition: all .15s;
  font-family: var(--display);
  font-weight: 500;
}
.svc-rel-grid a:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-2px);
}
@media (max-width: 800px) { .svc-rel-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .svc-rel-grid { grid-template-columns: 1fr; } }
