.footer-quick-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-quick-links a,
.footer-webmail {
  text-underline-offset: 4px;
}

.footer-card .service-more {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 999px;
  padding: 7px 14px;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: .8rem;
  cursor: pointer;
}

.footer-card .service-more:hover {
  background: var(--brand-orange, #e17e2f);
  border-color: var(--brand-orange, #e17e2f);
}

.address-note {
  display: block;
  max-width: 210px;
  margin-top: 10px;
  color: var(--footer-text, #d9dbdc);
  font-size: .68rem;
  line-height: 1.45;
  opacity: .62;
}

.service-modal {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility 0s linear .3s;
}

.service-modal.open {
  opacity: 1;
  visibility: visible;
  transition: opacity .3s ease;
}

.service-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(16, 28, 36, .76);
  backdrop-filter: blur(5px);
  cursor: pointer;
}

.service-modal-dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: min(88vh, 820px);
  overflow: auto;
  border-radius: 22px;
  background: var(--page-bg, #fff);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .34);
  transform: translateY(22px) scale(.985);
  transition: transform .32s ease;
}

.service-modal.open .service-modal-dialog { transform: none; }

.service-modal-image {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(.72) saturate(.32) contrast(.92);
  opacity: 0;
  transition: opacity .18s ease;
}

.service-modal-image.ready { opacity: .6; }

.service-modal-fade {
  position: absolute;
  z-index: 1;
  inset: 0 0 auto;
  height: 430px;
  background: linear-gradient(to bottom, rgba(255,255,255,.04) 0%, color-mix(in srgb, var(--page-bg, #fff) 32%, transparent) 45%, var(--page-bg, #fff) 88%);
  pointer-events: none;
}

.service-modal-close {
  position: sticky;
  z-index: 4;
  top: 18px;
  float: right;
  width: 44px;
  height: 44px;
  margin: 18px 18px 0 0;
  border: 1px solid rgba(31, 51, 65, .13);
  border-radius: 50%;
  background: rgba(255, 255, 255, .88);
  color: var(--brand-navy, #1f3341);
  font: 300 1.9rem/1 Arial, sans-serif;
  box-shadow: 0 5px 20px rgba(20, 35, 44, .12);
  cursor: pointer;
}

.service-modal-content {
  position: relative;
  z-index: 2;
  clear: both;
  padding: 245px clamp(28px, 7vw, 72px) 58px;
}

.service-modal-content h2 {
  margin: 0 0 22px;
  color: var(--brand-navy, #1f3341);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.08;
}

.service-modal-text {
  max-width: 610px;
  color: var(--muted, #66737b);
  font-size: 1rem;
  line-height: 1.72;
}

.service-modal-text p { margin: 0 0 16px; }

@media (max-width: 600px) {
  .service-modal { padding: 12px; }
  .service-modal-dialog { max-height: 92vh; border-radius: 16px; }
  .service-modal-image { height: 300px; }
  .service-modal-fade { height: 345px; }
  .service-modal-content { padding: 175px 25px 38px; }
  .service-modal-close { top: 12px; margin: 12px 12px 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  .service-modal,
  .service-modal-dialog { transition: none; }
}
