/* Bathroom page shares kitchen layout rules — see kitchen.css */

/* Alternating section backgrounds — intro gets dropdown-bg so pattern is:
   dropdown-bg → white(process) → dropdown-bg(why) → dark(clients) → white(faq) */
.wnb-page-content--kitchen .wnb-intro-carousel {
  width: 100vw;
  max-width: none;
  margin-inline: calc(50% - 50vw);
  overflow-x: clip;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1rem, 4vw, 2rem) clamp(3rem, 7vw, 5rem);
  background: var(--wnb-dropdown-bg);
  border-bottom: 0;
}

/* Tighten the grid gap slightly so the carousel and content feel balanced */
.wnb-page-content--kitchen .wnb-intro-carousel__grid {
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

/* Carousel widget — image box */
.wnb-page-content--kitchen .wnb-intro-carousel__img-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wnb-page-content--kitchen .wnb-intro-carousel__widget {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eae8e4;
  box-shadow: 0 0 0 1px rgba(10, 10, 10, .06);
}

@media (min-width: 960px) {
  .wnb-page-content--kitchen .wnb-intro-carousel__widget {
    aspect-ratio: unset;
    flex: 1 1 auto;
    min-height: clamp(26rem, 38vw, 34rem);
  }
}

.wnb-page-content--kitchen .wnb-intro-carousel__img-col .wnb-intro-carousel__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.wnb-page-content--kitchen .wnb-intro-carousel__img-col .wnb-intro-carousel__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.wnb-page-content--kitchen .wnb-intro-carousel__img-col .wnb-intro-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: rgba(0, 0, 0, .42);
  color: #fff;
  font-size: 1.4rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2;
}
.wnb-page-content--kitchen .wnb-intro-carousel__img-col .wnb-intro-carousel__btn:hover { background: rgba(0, 0, 0, .72); }
.wnb-page-content--kitchen .wnb-intro-carousel__img-col .wnb-intro-carousel__btn--prev { left: 0.75rem; }
.wnb-page-content--kitchen .wnb-intro-carousel__img-col .wnb-intro-carousel__btn--next { right: 0.75rem; }

.wnb-page-content--kitchen .wnb-intro-carousel__img-col .wnb-intro-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0;
}

.wnb-page-content--kitchen .wnb-intro-carousel__img-col .wnb-intro-carousel__dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.wnb-page-content--kitchen .wnb-intro-carousel__img-col .wnb-intro-carousel__dot::after {
  content: '';
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: #d4d2cd;
  transition: width 0.3s ease, background-color 0.3s ease;
}

.wnb-page-content--kitchen .wnb-intro-carousel__img-col .wnb-intro-carousel__dot.is-active::after {
  width: 2rem;
  background: #2a2928;
}

/* Remove double-spacing between sections */
.wnb-page-content--kitchen .wnb-process--breakout,
.wnb-page-content--kitchen .wnb-clients-say--breakout {
  margin-top: 0;
}

/* Stretch why-choose and faq sections edge-to-edge to match intro */
.wnb-page-content--kitchen .wnb-diamond-cards,
.wnb-page-content--kitchen .wnb-faq-page {
  margin-left: calc(-1 * clamp(1rem, 4vw, 2rem));
  margin-right: calc(-1 * clamp(1rem, 4vw, 2rem));
  padding-left: clamp(1rem, 4vw, 2rem);
  padding-right: clamp(1rem, 4vw, 2rem);
}

