/* ============================================================
   SERVICE — shared styles for service pages
   (couples-therapy, trauma-therapy, and future service pages)
   ============================================================ */

/* SERVICE HERO */
.service-hero {
  min-height: 50vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0 3.5rem 3rem clamp(3.5rem, 9vw, 10rem);
  background: linear-gradient(170deg, #111A10 0%, #1B2D1A 40%, #162530 100%);
  overflow: hidden;
}
.hero-landscape {
  position: absolute;
  inset: 0;
  background-image: url('/images/landscape-river.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.35;
  mix-blend-mode: luminosity;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 14, 0.45);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
}
.service-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  color: #F7F3EE;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}
.service-hero p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(247,243,238,0.75);
  max-width: 640px;
  margin-bottom: 2.75rem;
  line-height: 1.95;
}

/* SERVICE CONTENT */
.service-section {
  padding: 5rem 3rem;
  background: var(--cream);
}
.service-intro {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-mid);
  max-width: 900px;
  margin: 0 auto 4rem;
  line-height: 1.95;
}
.service-intro p { margin-bottom: 1.5rem; }
.service-intro strong { color: var(--walnut); font-weight: 500; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .service-hero { min-height: 45vh; padding: 0 1.5rem 2rem; }
  .service-hero h1 { font-size: 1.8rem; }
  .service-section { padding: 5rem 1.5rem; }
}
