/* Service / content pages - shared prose layout */

.service-hero {
  padding: 3.5rem 1.5rem 2.5rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 100%);
}

.service-hero h1 {
  font-family: Lora, Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.service-hero__lede {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 42rem;
}

.service-content {
  padding: 3rem 1.5rem 4rem;
}

.service-content h2 {
  font-family: Lora, Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin: 2.5rem 0 0.75rem;
  color: var(--text);
}

.service-content h2:first-child {
  margin-top: 0;
}

.service-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.service-content p:last-child {
  margin-bottom: 0;
}

.service-cta {
  margin-top: 2.5rem;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-card);
  border-left: 3px solid var(--gold);
}

.service-cta h2 {
  margin-top: 0;
}

.service-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.service-cta__email {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Numbered process steps (matches home page) */
.service-content .process {
  list-style: none;
  counter-reset: step;
  margin: 0 0 2.5rem;
  padding: 0;
}

.service-content .process li {
  counter-increment: step;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: start;
}

.service-content .process li:last-child {
  border-bottom: none;
}

.service-content .process li::before {
  content: counter(step, decimal-leading-zero);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-soft);
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 6px;
}

.service-content .process h3 {
  font-family: Lora, Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.service-content .process p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.service-asides {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .service-asides {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.service-asides section {
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-card);
}

.service-asides h2 {
  font-family: Lora, Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.service-asides p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
}

.service-faq {
  margin: 0 0 1.5rem;
}

.service-faq dt {
  font-family: Lora, Georgia, serif;
  font-weight: 500;
  color: var(--text);
  margin: 1.25rem 0 0.35rem;
}

.service-faq dt:first-child {
  margin-top: 0;
}

.service-faq dd {
  margin: 0 0 0.5rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Guides: article body lists + kicker */
.service-hero__kicker {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.service-content ul {
  color: var(--text-muted);
  margin: 0 0 1rem 1.25rem;
  padding: 0;
  line-height: 1.6;
}

.service-content ul li {
  margin-bottom: 0.5rem;
}

/* Guides index listing */
.guide-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.guide-card {
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-card);
  border-left: 3px solid var(--gold);
}

.guide-card h2 {
  font-family: Lora, Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
}

.guide-card p {
  color: var(--text-muted);
  margin: 0 0 0.5rem;
  line-height: 1.55;
}

.guide-card__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
}
