.service-grid {
  background: var(--ivory);
}

.concierge-band {
  text-align: center;
  background: var(--navy);
  color: #fff;
}

.concierge-band .eyebrow,
.concierge-band h2 {
  color: #fff;
}

.concierge-band h2 {
  max-width: 850px;
  margin: .35rem auto 1.25rem;
}

.concierge-band p:not(.eyebrow) {
  max-width: 790px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, .82);
}

.concierge-band p a {
  color: #fff;
  text-decoration: none;
}

.concierge-band .button {
  background: #fff;
  color: var(--navy);
}

/* Two therapies per desktop row; let the seventh fill the final row. */
.service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-grid .service-card:last-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 2fr);
}

.service-grid .service-card:last-child > img {
  width: 100%;
  height: 100%;
  min-height: 440px;
}

@media (max-width: 760px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-grid .service-card:last-child {
    display: flex;
    grid-column: auto;
  }

  .service-grid .service-card:last-child > img {
    height: 400px;
    min-height: 0;
  }
}
