/* Homepage service imagery — desktop refinement only */
.service-media {
  display: none;
}

@media (min-width: 1025px) {
  #services.section-pad {
    padding-top: 96px;
    padding-bottom: 104px;
  }

  #services .services-header {
    margin-bottom: 52px;
  }

  #services .services-grid {
    gap: 24px;
  }

  #services .service-link {
    height: 100%;
  }

  #services .service-link:focus-visible {
    outline: 2px solid var(--gold-light, #e8c97a);
    outline-offset: 5px;
  }

  #services .service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0 30px 30px;
    cursor: pointer;
    background: var(--dark2, #1a1a1a);
    border: 1px solid rgba(201, 168, 76, 0.12);
    transition: background-color 260ms ease-out, border-color 260ms ease-out;
  }

  #services .service-media {
    position: relative;
    display: block;
    flex: 0 0 auto;
    width: calc(100% + 60px);
    aspect-ratio: 16 / 10;
    margin: 0 -30px 27px;
    overflow: hidden;
    background: #11110f;
  }

  #services .service-media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 9, 8, 0.02) 45%, rgba(9, 9, 8, 0.52) 100%);
    pointer-events: none;
    content: "";
  }

  #services .service-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) saturate(0.78) contrast(1.04);
    transform: scale(1.001);
    transition: filter 360ms ease-out, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  #services .service-image-airport {
    object-position: 52% 52%;
  }

  #services .service-image-corporate {
    object-position: 50% 48%;
  }

  #services .service-image-weddings {
    object-position: 50% 55%;
  }

  #services .service-image-hospital {
    object-position: 52% 53%;
  }

  #services .service-image-long-distance {
    object-position: 50% 58%;
  }

  #services .service-image-group-hire {
    object-position: 52% 52%;
  }

  #services .service-number {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 30px;
    margin: 0;
    color: var(--gold-light, #e8c97a);
    font-family: var(--sans, "Jost", sans-serif);
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.14em;
    background: rgba(9, 9, 8, 0.76);
    border: 1px solid rgba(201, 168, 76, 0.42);
    backdrop-filter: blur(8px);
  }

  #services .service-icon {
    display: none;
  }

  #services .service-name {
    margin-bottom: 11px;
    font-size: 24px;
    line-height: 1.15;
  }

  #services .service-desc {
    flex: 1 1 auto;
    color: #aaa59b;
    font-size: 14px;
    line-height: 1.7;
  }

  #services .service-card:hover,
  #services .service-link:focus-visible .service-card {
    background: var(--dark3, #222222);
    border-color: rgba(201, 168, 76, 0.36);
  }

  #services .service-card:hover .service-media img,
  #services .service-link:focus-visible .service-media img {
    filter: brightness(0.9) saturate(0.86) contrast(1.04);
    transform: scale(1.02);
  }
}

@media (min-width: 1025px) and (prefers-reduced-motion: reduce) {
  #services .service-card,
  #services .service-media img {
    transition: none;
  }
}
