/* ===========================================
   SERVICES OVERVIEW | Two-Umbrella Layout
   =========================================== */
.umbrella-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.home .section:not(.section--dark) .section-eyebrow {
  color: var(--forest);
}

.umbrella-card {
  background: var(--bg);
  border: 1px solid var(--border-whisper);
  border-radius: var(--r-xl);
  padding: 3rem;
  transition: all var(--t-med);
}

.umbrella-card:hover {
  box-shadow: var(--glow-md);
  border-color: var(--sage-soft);
}

.umbrella-label {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--forest);
  margin-bottom: .75rem;
  display: block;
}

.umbrella-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--text-rich);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.service-list {
  list-style: none;
  margin: 0 0 2.5rem;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border-whisper);
}

.service-list li:last-child { border-bottom: none; }

.service-list-icon {
  width: 36px;
  height: 36px;
  background: var(--bg-earth);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  font-size: .85rem;
  flex-shrink: 0;
  margin-top: .1rem;
  transition: all var(--t-fast);
}

.umbrella-card:hover .service-list-icon {
  background: var(--forest);
  color: #fff;
}

.service-list-body h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  color: var(--text-rich);
  margin-bottom: .2rem;
}

.service-list-body p {
  font-size: .88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

.umbrella-link {
  font-size: .88rem;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: gap var(--t-fast), color var(--t-fast);
}

.umbrella-link:hover { gap: .7rem; color: var(--forest); }

/* ===========================================
   CLIENT VOICES
   =========================================== */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.voice-item {
  background: var(--bg-warm);
  border: 1px solid var(--border-whisper);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.75rem 1.5rem 2.5rem;
  position: relative;
  transition: all var(--t-fast);
}

.voice-item:hover {
  background: var(--bg-earth);
  border-color: var(--sage-soft);
  transform: translateY(-2px);
  box-shadow: var(--glow-sm);
}

.voice-item::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--sage-soft);
  position: absolute;
  top: .25rem;
  left: .85rem;
  line-height: 1;
  opacity: .5;
}

.voice-item p {
  font-size: .95rem;
  color: var(--text-body);
  font-style: italic;
  margin: 0;
  line-height: 1.6;
}