/* ═══════════════════════════════════════
   SERVICES.CSS — Out Shine Web Design
═══════════════════════════════════════ */

.services-hero {
  background: var(--teal);
  padding: calc(var(--nav-height) + 5rem) 5rem 5rem;
  color: var(--cream);
}
.services-hero .eyebrow { color: rgba(255,255,255,0.6); }
.services-hero h1 { color: var(--cream); margin-bottom: 1.25rem; }
.services-hero .lead { color: rgba(255,255,255,0.75); }

/* ── ESSAY LAYOUT ── */
.services-essay {
  background: var(--bg);
  padding: var(--section-pad);
}

.essay-inner {
  max-width: 740px;
  justify-self: center;
}

.essay-block {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(17,85,98,0.1);
}
.essay-block:first-child {
  padding-top: 0;
}
.essay-block:last-child {
  border-bottom: none;
}

.essay-block .eyebrow {
  margin-bottom: 0.75rem;
}

.essay-block h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.essay-block p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--ink);
  max-width: none;
  margin-bottom: 1.25rem;
}
.essay-block p:last-child {
  margin-bottom: 0;
}

/* ── CTA ── */
.services-cta {
  background: var(--teal);
  text-align: center;
  padding: 7rem 5rem;
  position: relative;
  overflow: hidden;
}
.services-cta::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
}
.services-cta .eyebrow { color: rgba(255,255,255,0.6); position: relative; z-index: 2; }
.services-cta h2 { color: var(--cream); position: relative; z-index: 2; }
.services-cta .lead { color: rgba(255,255,255,0.7); margin: 0 auto 2.5rem; text-align: center; position: relative; z-index: 2; }
.services-cta .btn-primary { position: relative; z-index: 2; }

@media (max-width: 1100px) {
  .services-hero { padding: calc(var(--nav-height) + 3.5rem) 3rem 3.5rem; }
  .services-cta { padding: 5rem 3rem; }
}
@media (max-width: 768px) {
  .services-hero { padding: calc(var(--nav-height) + 2.5rem) 1.5rem 3rem; }
  .essay-block { padding: 3rem 0; }
  .services-cta { padding: 5rem 1.5rem; }
}