/* ========================================
   Stone & Grain — Services Grid
   3x2 full-service offering
   ======================================== */

.services {
  background: var(--warm-white);
  padding: var(--section-py) 0;
}

.services__header {
  margin-bottom: 60px;
}

.services__heading em {
  color: var(--charcoal);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.services__item {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s ease;
}

.services__item:nth-child(3n) {
  border-right: none;
}

.services__item:nth-child(n+4) {
  border-bottom: none;
}

.services__item:hover {
  background: var(--cream);
}

.services__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
  color: var(--accent);
}

.services__icon svg {
  width: 100%;
  height: 100%;
}

.services__item-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.services__item-desc {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--warm-gray);
}
