/* Kitchen + bathroom service pages */

.wnb-page-content--kitchen .wnb-process,
.wnb-page-content--kitchen .wnb-clients-say--breakout {
  margin-top: 0;
}

/* Kitchen transform — carousel + content grid (port of KitchenTransformSection.tsx) */
.wnb-kitchen-transform {
  width: 100vw;
  max-width: none;
  margin-inline: calc(50% - 50vw);
  overflow-x: clip;
  background: #f5f5f5;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1rem, 4vw, 2rem);
}

/* Kitchen B&A results — white to alternate with grey transform above */
.wnb-page-content--kitchen .wnb-kitchen-results {
  background: #fff;
  border-bottom: 0;
}

.wnb-kitchen-transform__grid {
  display: grid;
  gap: 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 960px) {
  .wnb-kitchen-transform__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(2.5rem, 5vw, 4rem);
  }
}

/* Carousel column */
.wnb-kitchen-transform__carousel-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.wnb-kitchen-transform__carousel-col .wnb-intro-carousel {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eae8e4;
}

@media (min-width: 960px) {
  .wnb-kitchen-transform__carousel-col .wnb-intro-carousel {
    aspect-ratio: unset;
    height: clamp(26rem, 38vw, 34rem);
  }
}

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

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

.wnb-kitchen-transform__carousel-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, 0.42);
  color: #fff;
  font-size: 1.4rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2;
}
.wnb-kitchen-transform__carousel-col .wnb-intro-carousel__btn:hover { background: rgba(0, 0, 0, 0.72); }
.wnb-kitchen-transform__carousel-col .wnb-intro-carousel__btn--prev { left: 0.75rem; }
.wnb-kitchen-transform__carousel-col .wnb-intro-carousel__btn--next { right: 0.75rem; }

/* Dots */
.wnb-kitchen-transform__carousel-col .wnb-intro-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0;
}

.wnb-kitchen-transform__carousel-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-kitchen-transform__carousel-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-kitchen-transform__carousel-col .wnb-intro-carousel__dot.is-active::after {
  width: 2rem;
  background: #2a2928;
}

/* Content column */
.wnb-kitchen-transform__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
  font-family: var(--wnb-font-nav);
}

.wnb-kitchen-transform__content h2 {
  margin: 0;
  font-family: var(--wnb-font-nav);
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: #0a0a0a;
}

.wnb-kitchen-transform__content h3 {
  margin: 0;
  font-family: var(--wnb-font-nav);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.56;
  color: #0a0a0a;
}

/* Feature bullets — black circle ✓ icon */
.wnb-kitchen-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wnb-kitchen-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: var(--wnb-font-nav);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.02em;
  color: #0a0a0a;
}

.wnb-kitchen-features__icon {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.125rem;
  background: center / contain no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='%230a0a0a'/%3E%3Cpath fill='%23ffffff' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
}

/* Services sub-block */
.wnb-kitchen-transform__services-block {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.wnb-kitchen-transform__we-wrap {
  margin: 0;
  font-family: var(--wnb-font-nav);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: -0.02em;
  color: #0a0a0a;
}

.wnb-kitchen-transform__services {
  list-style: none;
  margin: 0.25rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.wnb-kitchen-transform__services li {
  display: flex;
  align-items: baseline;
  font-family: var(--wnb-font-nav);
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #0a0a0a;
}

.wnb-kitchen-transform__footnote {
  margin: 0;
  font-family: var(--wnb-font-nav);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: -0.02em;
  color: #0a0a0a;
}

.wnb-kitchen-transform__content .wnb-btn {
  align-self: center;
}

@media (min-width: 960px) {
  .wnb-kitchen-transform__content .wnb-btn {
    align-self: flex-start;
  }
}
