/* ============================================================
   SERVICES.CSS
   ============================================================ */

/* ─── Services Hero ─── */
.services-hero {
  background: var(--parchment);
  padding: 150px 0 88px;
  text-align: center;
}
.services-hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  color: var(--green-deep);
  margin-bottom: 16px;
}
.services-hero p {
  color: var(--text-mid);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── Quick Nav ─── */
.services-quicknav {
  background: #fff;
  border-bottom: 1px solid rgba(26,46,26,0.09);
}
.services-quicknav ul {
  display: flex;
  list-style: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  overflow-x: auto;
}
.services-quicknav a {
  display: block;
  padding: 16px 22px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  border-bottom: 3px solid transparent;
  transition: color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.services-quicknav a:hover {
  color: var(--green-deep);
  border-bottom-color: var(--sage);
}

/* ─── Service Sections ─── */
.service-section {
  padding: 110px 0;
}
.service-section:nth-child(odd) {
  background: #fff;
}
.service-section:nth-child(even) {
  background: var(--parchment);
}

.service-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.service-section.reverse .service-section__image { order: 2; }
.service-section.reverse .service-section__content { order: 1; }

.service-section__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
  display: block;
}

.service-section__content .section-tag { margin-bottom: 16px; }
.service-section__content h2 {
  font-size: clamp(1.85rem, 2.8vw, 2.5rem);
  color: var(--green-deep);
  margin-bottom: 24px;
}
.service-section__content p {
  color: var(--text-mid);
  line-height: 1.82;
  margin-bottom: 18px;
}

.service-features {
  list-style: none;
  margin: 24px 0 36px;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  font-size: 0.9rem;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(26,46,26,0.06);
}
.service-features li:first-child { border-top: 1px solid rgba(26,46,26,0.06); }
.service-features li::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .service-section .container { gap: 52px; }
}
@media (max-width: 768px) {
  .services-hero { padding: 120px 0 60px; }
  .service-section .container { grid-template-columns: 1fr; gap: 36px; }
  .service-section.reverse .service-section__image { order: 0; }
  .service-section.reverse .service-section__content { order: 0; }
  .service-section__image img { height: 280px; }
}
