.service-list {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.service-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  background: linear-gradient(160deg, rgba(245, 241, 234, 0.1), rgba(245, 241, 234, 0.03));
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(245, 241, 234, 0.14);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  box-shadow: var(--shadow-elevated), inset 0 1px 0 rgba(245, 241, 234, 0.08);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 241, 234, 0.28);
  box-shadow: var(--shadow-floating), inset 0 1px 0 rgba(245, 241, 234, 0.12);
}

.service-card__icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(245, 241, 234, 0.08);
  border: 1px solid rgba(245, 241, 234, 0.16);
  color: var(--color-sky);
  font-size: 1.25rem;
}

.service-card__body h3 {
  margin-bottom: var(--space-1);
}

.service-card__body p {
  margin: 0;
}

.service-card__extra {
  display: none;
}

@media (min-width: 48rem) {
  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 64rem) {
  .service-list {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, minmax(12rem, auto));
    grid-template-areas:
      "construction construction real-estate real-estate infrastructure infrastructure"
      "construction construction events events challenge challenge";
  }

  .service-card {
    height: 100%;
  }

  .service-card:nth-child(1) {
    grid-area: construction;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-5);
  }

  .service-card:nth-child(1) .service-card__body {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
  }

  .service-card:nth-child(1) .service-card__extra {
    display: block;
    text-align: center;
  }

  .service-card:nth-child(1) .service-card__body h3 {
    text-align: center;
  }

  .service-card:nth-child(1) .service-card__icon {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.5rem;
  }

  .service-card:nth-child(2) {
    grid-area: real-estate;
  }

  .service-card:nth-child(3) {
    grid-area: infrastructure;
  }

  .service-card:nth-child(4) {
    grid-area: events;
  }

  .service-card:nth-child(5) {
    grid-area: challenge;
  }
}

.case-study {
  background-color: var(--color-ink-elevated);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  margin-bottom: var(--space-7);
}

.case-study__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2px;
}

.case-study__gallery img {
  width: 100%;
  height: 8rem;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}

.case-study__body {
  padding: var(--space-6);
}

.case-study__tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-sky);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.case-study__narrative {
  display: grid;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.case-study__narrative h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-cream);
  margin: 0 0 var(--space-1);
}

.case-study__narrative p {
  margin: 0;
}

.case-study__quote {
  border-left: 3px solid var(--color-sky);
  padding-left: var(--space-4);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-cream);
  margin-bottom: var(--space-3);
}

.case-study__quote cite {
  display: block;
  margin-top: var(--space-2);
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.case-study__services {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

@media (min-width: 48rem) {
  .case-study__gallery img {
    height: 12rem;
  }
}
