/* ── Services page styles ─────────────────────────────────────────────── */

/* Page hero */
.svc-hero {
  padding-bottom: 0;
}
.svc-hero .page-inner {
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

/* Service blocks wrapper */
.svc-blocks {
  padding: 72px 48px;
}
.svc-inner {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* Individual service block */
.svc-block {
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}
.svc-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Block header: icon + title + meta */
.svc-block-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}
.svc-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-top: 2px;
}
.svc-meta {
  flex: 1;
}
.svc-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.svc-pricing-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.svc-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
}
.svc-turnaround {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--white);
}

/* Description paragraph */
.svc-description {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 760px;
}

/* Deliverables box */
.svc-deliverables {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 16px;
}
.svc-deliverables-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.svc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--slate);
  line-height: 1.55;
}
.svc-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 7px;
}

/* Estimate note */
.svc-estimate-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  font-style: italic;
}

/* CTA band */
.svc-cta {
  background: var(--navy);
  padding: 88px 48px;
  text-align: center;
}
.svc-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}
.svc-cta .hero-rule {
  background: var(--gold);
}
.svc-cta-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.svc-cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 300;
}
.btn-cta-lg {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  font-family: 'Source Sans 3', sans-serif;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.15s;
}
.btn-cta-lg:hover {
  opacity: 0.88;
}
.svc-cta-note {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.svc-email-link {
  color: rgba(255,255,255,0.75);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.svc-email-link:hover {
  color: var(--white);
}

/* Mobile */
@media (max-width: 768px) {
  .svc-blocks { padding: 48px 24px; }
  .svc-inner { gap: 48px; }
  .svc-block { padding-bottom: 48px; }
  .svc-cta { padding: 64px 24px; }
  .svc-deliverables { padding: 20px; }
}
@media (max-width: 480px) {
  .svc-block-header { gap: 14px; }
  .svc-title { font-size: 22px; }
  .svc-icon { width: 40px; height: 40px; }
}
