/* ============================================================
   SERVICES HUB  -  /services  (alternating editorial rows)
   Mobile stacks: eyebrow, name, text, spec-list, image, link.
   Desktop: fixed-size image on a side column (alternating),
   text block centred beside it.
   ============================================================ */
.svc-list {
  background: var(--cream);
  padding-block: clamp(3.5rem, 3rem + 4vw, 6.5rem);
}

.svc-row {
  display: grid;
  gap: clamp(1.25rem, 1rem + 2vw, 1.85rem);
  padding-block: clamp(2.5rem, 2rem + 3vw, 4rem);
}
.svc-row:first-child { padding-top: 0; }
.svc-row + .svc-row { border-top: 1px solid var(--line); }

.svc-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.svc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svc-eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--wine);
  margin-bottom: var(--space-s);
}

.svc-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--step-3);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.svc-name em { font-style: italic; color: var(--wine); }

.svc-text {
  margin-top: var(--space-s);
  font-size: var(--step-0);
  line-height: 1.62;
  color: var(--ink-soft);
  max-width: 50ch;
}

/* what's-included spec list (single column, ruled) */
.svc-points {
  list-style: none;
  margin: var(--space-l) 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.svc-points li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.62rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
}
.svc-points li::before {
  content: "";
  flex: none;
  width: 18px;
  height: 1px;
  background: var(--wine);
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-l);
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
.svc-link svg { transition: transform 0.3s var(--ease); }
.svc-link:hover { color: var(--wine); }
.svc-link:hover svg { transform: translateX(4px); }

.svc-foot {
  margin-top: clamp(2.5rem, 2rem + 3vw, 4rem);
  padding-top: clamp(2rem, 1.5rem + 2vw, 3rem);
  border-top: 1px solid var(--line);
  text-align: center;
}
.svc-foot p {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--ink-soft);
}
.svc-foot a {
  color: var(--wine);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 0.3s var(--ease);
}
.svc-foot a:hover { color: var(--wine-deep); }

/* ---- desktop: fixed-size image to the side, alternating ---- */
@media (min-width: 820px) {
  .svc-row {
    grid-template-columns: 0.78fr 1fr;
    grid-template-areas:
      "media body"
      "media link";
    column-gap: clamp(2.5rem, 5vw, 4.5rem);
    row-gap: var(--space-m);
    align-items: center;
  }
  .svc-media {
    grid-area: media;
    aspect-ratio: auto;
    height: clamp(420px, 35vw, 500px);
    align-self: center;
  }
  .svc-body { grid-area: body; align-self: end; }
  .svc-link { grid-area: link; align-self: start; margin-top: 0; }

  .svc-row:nth-child(even) {
    grid-template-columns: 1fr 0.78fr;
    grid-template-areas:
      "body media"
      "link media";
  }
}