/* ==========================================================================
   14 · SERVICES
   Service cards, the services grid, and the single service header.
   ========================================================================== */

.services-grid { row-gap: var(--s-6); }


/* --- Card -----------------------------------------------------------------
   A bordered panel rather than the image-led catalogue card: a service has no
   artwork of its own, so the type and the list do the work. */

.card--service .card__link {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  height: 100%;
  padding: var(--s-6);
  background: var(--card);
  border: var(--border);
  transition: border-color 0.25s var(--ease);
}

.card--service .card__link:hover { border-color: var(--mulberry); }

.service__icon img {
  width: 38px;
  height: 38px;
  margin-bottom: var(--s-2);
}

.service__title {
  font-family: var(--font-display);
  font-size: var(--fs-600);
  line-height: var(--lh-snug);
}

.service__summary {
  color: var(--ink-2);
  font-size: var(--fs-300);
}

.service__items {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  margin-top: var(--s-2);
  color: var(--ink-2);
  font-size: var(--fs-200);
}

.service__items li {
  position: relative;
  padding-left: var(--s-4);
}

.service__items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 1px;
  background: var(--gilt);
}

.service__foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-4);
  margin-top: auto;
  padding-top: var(--s-5);
  border-top: 1px solid var(--rule-soft);
}

.service__price {
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: var(--fs-200);
  font-variant-numeric: tabular-nums;
}

.service__more {
  color: var(--mulberry);
  font-size: var(--fs-100);
  font-weight: 600;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
}


/* --- Single service header ------------------------------------------------ */

.section--service-head { padding-bottom: var(--s-7); }

.service-head {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: start;
  gap: clamp(32px, 6vw, 96px);
}

.service-head__intro .lede { margin-top: var(--s-4); }

.service-head__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-5);
  margin-top: var(--s-6);
}

.service-head__price {
  color: var(--ink-2);
  font-family: var(--font-mono);
  font-size: var(--fs-300);
  font-variant-numeric: tabular-nums;
}

.service-head__items {
  padding: var(--s-6);
  background: var(--linen);
  border: var(--border);
}

.service-head__items-title {
  margin-bottom: var(--s-4);
  color: var(--ink-3);
  font-family: var(--font-body);
  font-size: var(--fs-100);
  font-weight: 600;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
}


/* --- Checklist ------------------------------------------------------------
   A drawn tick rather than a font glyph, so it matches the hairline language. */

.checklist {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  font-size: var(--fs-300);
}

.checklist li {
  position: relative;
  padding-left: var(--s-6);
  color: var(--ink-2);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.36em;
  width: 12px;
  height: 6px;
  border-left: 1px solid var(--olive);
  border-bottom: 1px solid var(--olive);
  transform: rotate(-45deg);
}

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