.home-slider {
  position: relative;
  height: min(72vh, 620px);
  overflow: hidden;
  background: #0a2540;
}
.home-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
  background-size: cover;
  background-position: center;
}
.home-slider .slide.on { opacity: 1; }
.home-slider .slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,37,64,.82) 0%, rgba(10,37,64,.4) 58%, rgba(10,37,64,.18) 100%);
}
.home-slider .hero-copy {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}
.home-slider .hero-copy .wrap { color: #ffffff; }
.home-slider .kicker {
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  color: #f1f7ff;
}
.home-slider h1 {
  margin: 0 0 14px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  max-width: 16ch;
  color: #ffffff !important;
}
.home-slider .lead {
  font-size: 18px;
  max-width: 40ch;
  margin: 0 0 22px;
  color: #f1f7ff !important;
}
.home-slider .lead a { color: #f1f7ff !important; }
.home-slider .cta-row { display: flex; flex-wrap: wrap; gap: 10px; }
.home-slider .cta-row a {
  display: inline-block;
  padding: 12px 16px;
  text-decoration: none;
  font-weight: 800;
  background: #ffffff !important;
  color: #0a2540 !important;
}
.home-slider .cta-row a.btn-dark {
  background: #0a2540 !important;
  color: #ffffff !important;
  border: 1px solid #f1f7ff;
}
.home-slider .dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.home-slider .dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  cursor: pointer;
}
.home-slider .dots button.on { background: #ffffff; }
.home-slider .arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  background: rgba(10,37,64,.7);
  color: #ffffff;
  border: 0;
  width: 42px;
  height: 42px;
  cursor: pointer;
  font-size: 22px;
}
.home-slider .arrow.prev { left: 12px; }
.home-slider .arrow.next { right: 12px; }
.svc-photo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.svc-photo-grid a {
  display: block;
  background: #ffffff;
  border: 1px solid #d5e3f0;
  text-decoration: none;
  color: #0a2540;
}
.svc-photo-grid img { width: 100%; height: 140px; object-fit: cover; display: block; }
.svc-photo-grid span { display: block; padding: 12px 14px; font-weight: 800; }
