.service-band {
  gap: 18px;
  padding: 28px 4vw;
  border: 0;
  background: linear-gradient(135deg, #fffaf7, #f8eee8);
  align-items: stretch;
}

.service-band article,
.service-band aside {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 12px 30px rgba(27, 33, 64, .08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.service-band aside {
  background: linear-gradient(150deg, #edc9be, #f6ded6);
}

.service-band article::after,
.service-band aside::after {
  position: absolute;
  inset: auto -30% -60% 20%;
  height: 65%;
  content: "";
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  pointer-events: none;
  transition: transform .3s ease;
}

.service-band article:focus-visible,
.service-band aside:focus-visible,
.steps article:focus-visible {
  outline: 3px solid rgba(181, 82, 65, .35);
  outline-offset: 4px;
}

.promise-carousel {
  position: relative;
  min-width: 0;
  padding-bottom: 36px;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 24px 48px rgba(27, 33, 64, .12);
}

.promise-carousel .gallery.carousel-track {
  display: flex;
  width: 100%;
  max-width: none;
  transform: translate3d(0, 0, 0);
  transition: transform .55s cubic-bezier(.22, .75, .25, 1);
}

.promise-carousel .gallery.carousel-track > .carousel-slide {
  display: flex;
  flex: 0 0 100%;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 100%;
  height: 300px;
  min-height: 300px;
  margin: 0;
  padding: 42px;
  border: 0;
  color: var(--ink);
  text-align: center;
}

.promise-carousel .carousel-slide span {
  font-family: Georgia, serif;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.12;
  color: #a34838;
}

.promise-carousel .slide-soft { background: linear-gradient(135deg, #e7d6cc, #f1e6df); }
.promise-carousel .slide-rose { background: linear-gradient(135deg, #e0bcb3, #f6e6e1); }
.promise-carousel .slide-light { background: linear-gradient(135deg, #faf8f6, #ded2ca); }
.promise-carousel .slide-quote { background: linear-gradient(135deg, #f4d7cd, #fbe9e3); }

.promise-carousel blockquote.carousel-slide {
  flex-direction: column;
  font-family: Georgia, serif;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.15;
}

.promise-carousel blockquote small {
  display: block;
  margin-top: 22px;
  color: #b55241;
  font-size: 15px;
  letter-spacing: .12em;
}

.carousel-button {
  position: absolute;
  z-index: 2;
  top: 132px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  background: rgba(17, 26, 55, .82);
  box-shadow: 0 8px 20px rgba(17, 26, 55, .2);
  color: #fff;
  cursor: pointer;
  font: 32px/1 Georgia, serif;
  transition: transform .2s ease, background .2s ease;
}

.carousel-button.previous { left: 16px; }
.carousel-button.next { right: 16px; }

.carousel-button:focus-visible {
  outline: 3px solid rgba(181, 82, 65, .4);
  outline-offset: 3px;
}

.carousel-dots {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 9px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid #b55241;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

.carousel-dot[aria-current="true"] {
  width: 28px;
  border-radius: 999px;
  background: #b55241;
}

.steps article {
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(27, 33, 64, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.steps article::after {
  position: absolute;
  right: -30px;
  bottom: -42px;
  width: 100px;
  height: 100px;
  content: "";
  border-radius: 50%;
  background: rgba(232, 185, 174, .22);
  transform: scale(.6);
  transition: transform .3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .service-band article:hover,
  .service-band aside:hover,
  .service-band article:focus-visible,
  .service-band aside:focus-visible,
  .steps article:hover,
  .steps article:focus-visible {
    z-index: 1;
    transform: translateY(-8px);
    border-color: rgba(181, 82, 65, .5);
    box-shadow: 0 22px 42px rgba(27, 33, 64, .15);
  }

  .service-band article:hover::after,
  .service-band aside:hover::after,
  .steps article:hover::after {
    transform: scale(1.35);
  }

  .carousel-button:hover {
    transform: scale(1.08);
    background: #b55241;
  }
}

@media (max-width: 760px) {
  .service-band { gap: 16px; padding: 20px; }
  .promise-carousel .gallery.carousel-track > .carousel-slide {
    height: 260px;
    min-height: 260px;
    padding: 34px 56px;
  }
  .carousel-button { top: 108px; width: 40px; height: 40px; }
  .carousel-button.previous { left: 10px; }
  .carousel-button.next { right: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .promise-carousel .gallery.carousel-track,
  .service-band article,
  .service-band aside,
  .steps article,
  .carousel-button,
  .carousel-dot {
    scroll-behavior: auto;
    transition: none;
  }
}
