/* Shared section components */

/* ── Floating WhatsApp (mobile only) + back-to-top buttons (all pages except contact) ── */
.wnb-fab-whatsapp {
  position: fixed;
  bottom: clamp(1.35rem, 4vw, 2rem);
  right: clamp(1.1rem, 3.2vw, 1.65rem);
  z-index: 150;
  display: none;
  width: clamp(3.25rem, 8.5vw, 3.6rem);
  height: clamp(3.25rem, 8.5vw, 3.6rem);
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  text-decoration: none;
}

.wnb-fab-whatsapp svg {
  width: 1.75rem;
  height: 1.75rem;
}

.wnb-fab-back-top {
  position: fixed;
  right: clamp(1.1rem, 3.2vw, 1.65rem);
  bottom: calc(clamp(1.35rem, 4vw, 2rem) + clamp(3.25rem, 8.5vw, 3.6rem) + 0.7rem);
  z-index: 149;
  display: flex;
  width: 2.45rem;
  height: 2.45rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(10, 10, 10, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--wnb-text);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.wnb-fab-back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .wnb-fab-whatsapp {
    display: flex;
    bottom: 1rem;
    right: 1rem;
  }

  .wnb-fab-back-top {
    right: 1rem;
    bottom: calc(1rem + clamp(3.25rem, 8.5vw, 3.6rem) + 0.7rem);
  }
}

.wnb-btn--cta {
  font-family: var(--wnb-font-nav);
  font-size: 1.5rem;
  line-height: 1.75rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.wnb-btn--cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
}

.wnb-btn--cta-dark {
  background: #000;
  color: #fff;
  border-color: #000;
}

.wnb-section-title {
  margin: 0;
  font-family: var(--wnb-font-hero);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.12;
}

.wnb-section-lead {
  margin: 1.5rem auto 0;
  max-width: 46rem;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.75;
  color: #4a4a4a;
}

.wnb-section-center {
  max-width: var(--wnb-max-content);
  margin: 0 auto;
  text-align: center;
}

.wnb-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wnb-check-list 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-check-list__icon {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  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");
}

/* Before / after slider */
.wnb-before-after {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  background: #eae8e4;
  box-shadow: inset 0 0 0 1px rgba(10, 10, 10, 0.06);
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
}

.wnb-before-after__base,
.wnb-before-after__top {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.wnb-before-after__top {
  z-index: 1;
}

.wnb-before-after__label {
  position: absolute;
  top: 0.75rem;
  z-index: 3;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
}

.wnb-before-after__label--before { left: 0.75rem; }
.wnb-before-after__label--after { right: 0.75rem; }

.wnb-before-after__line {
  position: absolute;
  inset-block: 0;
  z-index: 2;
  width: 1px;
  background: #fff;
  box-shadow: 1px 0 0 rgba(0, 0, 0, 0.12);
  transform: translateX(-50%);
}

.wnb-before-after__handle {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(10, 10, 10, 0.08);
  transform: translate(-50%, -50%);
}

.wnb-before-after__handle-icon {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  color: #3a3836;
}

/* FAQ */
.wnb-faq-section {
  width: 100vw;
  max-width: none;
  margin-inline: calc(50% - 50vw);
  overflow-x: clip;
  padding: 3.5rem clamp(1rem, 4vw, 2rem) 4rem;
}

.wnb-faq-section__title {
  margin: 0 auto;
  max-width: 48rem;
  text-align: center;
  font-size: clamp(1.35rem, 4vw, 2.35rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.25;
}

.wnb-faq-section__grid {
  display: grid;
  gap: 2.5rem;
  margin: 3rem auto 0;
  max-width: var(--wnb-max-content);
}

@media (min-width: 768px) {
  .wnb-faq-section__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 4rem;
  }
}

.wnb-faq__item {
  padding: 1.25rem 0;
}

@media (min-width: 640px) {
  .wnb-faq__item {
    padding: 1.5rem 0;
  }
}

.wnb-faq__trigger {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 0.75rem;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.375;
  letter-spacing: 0;
  color: var(--wnb-text);
}

@media (min-width: 640px) {
  .wnb-faq__trigger {
    font-size: 1.0625rem;
  }
}

.wnb-faq__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  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' fill='none' stroke='%230a0a0a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  transition: transform 0.25s ease;
}

@media (min-width: 640px) {
  .wnb-faq__icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.wnb-faq__trigger[aria-expanded='true'] .wnb-faq__icon {
  transform: rotate(-180deg);
}

.wnb-faq__panel {
  height: 0;
  overflow: hidden;
}

.wnb-faq__answer {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.625;
  color: var(--wnb-muted);
}

@media (min-width: 640px) {
  .wnb-faq__answer {
    font-size: 1rem;
  }
}

.wnb-faq--boxed {
  border: 1px solid rgba(10, 10, 10, 0.1);
  background: #fff;
}

.wnb-faq--boxed .wnb-faq__item {
  padding: 1rem 1.5rem;
}

/* Why choose grid */
.wnb-why-choose {
  width: 100vw;
  max-width: none;
  margin-inline: calc(50% - 50vw);
  overflow-x: clip;
  background: var(--wnb-dropdown-bg);
  padding: 9.5rem clamp(1rem, 4vw, 2rem);
}

@media (min-width: 640px) {
  .wnb-why-choose {
    padding-top: 10.5rem;
    padding-bottom: 10.5rem;
  }
}

.wnb-why-choose__grid {
  display: grid;
  gap: 2.5rem;
  max-width: var(--wnb-max-content);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .wnb-why-choose__grid {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    align-items: start;
    gap: 2.5rem 3rem;
  }
}

@media (min-width: 1024px) {
  .wnb-why-choose__grid {
    gap: 2.5rem 4rem;
  }
}

.wnb-why-choose__title {
  margin: 0;
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.05;
}

.wnb-why-choose__copy {
  margin: 1.5rem 0 0;
  max-width: 36rem;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.65;
}

.wnb-why-choose__cards {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 640px) {
  .wnb-why-choose__cards {
    grid-template-columns: 1fr 1fr;
  }
}

.wnb-why-choose__card {
  display: flex;
  min-height: 11.5rem;
  flex-direction: column;
  border: 1px solid var(--wnb-text);
  padding: 1.5rem;
  background: #fff;
}

@media (min-width: 640px) {
  .wnb-why-choose__card {
    min-height: 12.5rem;
    padding: 1.75rem;
  }
}

.wnb-why-choose__card img {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.25rem;
  object-fit: contain;
}

.wnb-why-choose__card strong {
  font-size: 1.0625rem;
  line-height: 1.35;
}

.wnb-why-choose__card span {
  display: block;
  margin-top: 0.625rem;
  font-size: 0.9375rem;
  line-height: 1.625;
}

/* Clients say */
.wnb-clients-say {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(3.25rem, 8vw, 5.5rem) clamp(1rem, 4vw, 2rem);
  color: #fff;
}

.wnb-clients-say::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #2a2826 var(--wnb-clients-bg) center / cover no-repeat;
}

.wnb-clients-say::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.55);
}

.wnb-clients-say--breakout {
  width: 100vw;
  max-width: none;
  margin-inline: calc(50% - 50vw);
  overflow-x: clip;
}

.wnb-clients-say__inner {
  max-width: var(--wnb-max-content);
  margin: 0 auto;
}

.wnb-clients-say__layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .wnb-clients-say__layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.wnb-clients-say__header h2 {
  margin: 0;
  font-family: var(--wnb-font-hero);
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.wnb-clients-say__header p {
  margin: 1.5rem 0 0;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.95);
}

.wnb-clients-say__quote {
  display: none;
  flex-direction: column;
  margin: 0;
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 2.75rem);
  background: #fff;
  color: #1a1a1a;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.wnb-clients-say__quote.is-active {
  display: flex;
}

.wnb-clients-say__mark {
  font-family: var(--wnb-font-hero);
  font-size: clamp(3.25rem, 10vw, 4.75rem);
  font-weight: 700;
  line-height: 1;
  color: #000;
}

.wnb-clients-say__text-wrap {
  margin-top: 0.5rem;
  flex-shrink: 0;
  min-height: 26.775rem;
}

@media (min-width: 640px) {
  .wnb-clients-say__text-wrap {
    min-height: 21.675rem;
  }
}

.wnb-clients-say__quote blockquote {
  margin: 0;
  border: 0;
  padding: 0;
}

.wnb-clients-say__quote blockquote p {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.7;
  word-break: break-word;
  color: #1a1a1a;
}

.wnb-clients-say__quote figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

.wnb-clients-say__quote cite {
  max-width: 70%;
  font-style: normal;
  font-family: var(--wnb-font-hero);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (min-width: 640px) {
  .wnb-clients-say__quote cite {
    font-size: 0.875rem;
  }
}

.wnb-clients-say__stars {
  font-size: 1.15rem;
  color: #d4a012;
  letter-spacing: 0.02em;
  line-height: 1;
}

.wnb-clients-say__nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 1024px) {
  .wnb-clients-say__nav {
    justify-content: flex-end;
  }
}

.wnb-clients-say__nav-btn {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(2px);
  transition: background-color 0.15s ease, transform 0.15s ease;
}

.wnb-clients-say__nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.wnb-clients-say__nav-btn:active {
  transform: scale(0.95);
}

/* Process section */
.wnb-process {
  width: 100vw;
  max-width: none;
  margin-inline: calc(50% - 50vw);
  overflow-x: clip;
  background: #fff;
  padding: clamp(3.25rem, 8vw, 5.5rem) clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}

.wnb-process--breakout {
  width: 100vw;
  max-width: none;
  margin-inline: calc(50% - 50vw);
  overflow-x: clip;
}

.wnb-process--no-border {
  border-bottom: 0;
}

.wnb-process__inner {
  max-width: 80rem;
  margin: 0 auto;
}

.wnb-process h2 {
  margin: 0;
  text-align: center;
  font-family: var(--wnb-font-nav);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.98;
}

.wnb-process__steps {
  display: grid;
  gap: 3rem 2.5rem;
  margin-top: clamp(2.75rem, 6vw, 3.75rem);
}

@media (min-width: 640px) {
  .wnb-process__steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .wnb-process__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 3.5rem 2rem;
  }
}

.wnb-process .wnb-process__num {
  margin: 0;
  font-family: var(--wnb-font-nav);
  font-size: clamp(3rem, 8vw, 4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: #000;
}

.wnb-process__step h3 {
  margin: 1.5rem 0 0;
  font-family: var(--wnb-font-nav);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.wnb-process__step p {
  margin: 1rem 0 0;
  font-family: var(--wnb-font-nav);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: -0.02em;
}

.wnb-process__cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(2.75rem, 7vw, 4rem);
}

/* Diamond cards */
.wnb-diamond-cards {
  padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
  background: #fff;
}

.wnb-diamond-cards__inner {
  max-width: 80rem;
  margin: 0 auto;
}

.wnb-diamond-cards h2 {
  margin: 0;
  text-align: center;
  font-family: var(--wnb-font-nav);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.98;
}

.wnb-diamond-cards__grid {
  display: grid;
  gap: 1.25rem;
  margin-top: clamp(2.75rem, 6vw, 3.75rem);
}

@media (min-width: 640px) {
  .wnb-diamond-cards__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .wnb-diamond-cards__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.wnb-diamond-cards__card {
  border: 1px solid rgba(10, 10, 10, 0.26);
  padding: 1.5rem;
  background: #fff;
}

.wnb-diamond-cards__card img {
  width: 1.25rem;
  height: 1.25rem;
  margin-bottom: 1rem;
}

.wnb-diamond-cards__card p {
  margin: 0;
  font-family: var(--wnb-font-nav);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.65;
}

/* Transforming ideas band */
.wnb-transforming-ideas {
  position: relative;
  width: 100vw;
  max-width: none;
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
  padding: clamp(4.75rem, 12vw, 7rem) clamp(1rem, 4vw, 2rem);
  text-align: center;
  color: #fff;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.72)),
    url('../images/homepage/bg-image.webp') center / cover no-repeat;
}

.wnb-transforming-ideas__inner {
  position: relative;
  z-index: 1;
  max-width: 44rem;
  margin: 0 auto;
}

.wnb-transforming-ideas h2 {
  margin: 0;
  font-family: var(--wnb-font-hero);
  font-size: clamp(1.85rem, 4.6vw, 3.05rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.12;
}

.wnb-transforming-ideas p {
  margin: 1.5rem auto 0;
  max-width: 40rem;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.95);
}

.wnb-transforming-ideas .wnb-btn {
  margin-top: 2rem;
}

/* Intro carousel block */
.wnb-intro-carousel {
  padding: 0.5rem 0 3rem;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}

.wnb-intro-carousel__header {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.wnb-intro-carousel__header h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3.6vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.wnb-intro-carousel__lead {
  margin: 1.25rem auto 0;
  max-width: 40rem;
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--wnb-muted);
}

.wnb-intro-carousel__grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 960px) {
  .wnb-intro-carousel__grid {
    grid-template-columns: 1.05fr 1fr;
    align-items: stretch;
  }
}

.wnb-intro-carousel__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.wnb-intro-carousel__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;
}

.wnb-services-block {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.wnb-intro-carousel__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-services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.wnb-services-list 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-intro-carousel__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: var(--wnb-muted);
}

.wnb-intro-carousel__content .wnb-btn {
  align-self: center;
}

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

.wnb-carousel__viewport {
  position: relative;
  aspect-ratio: 16 / 11;
  min-height: 12rem;
  overflow: hidden;
  background: #eae8e4;
  box-shadow: inset 0 0 0 1px rgba(10, 10, 10, 0.06);
}

@media (min-width: 960px) {
  .wnb-carousel__viewport {
    aspect-ratio: auto;
    min-height: 100%;
  }
}

.wnb-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.wnb-carousel__slide.is-active {
  z-index: 1;
  opacity: 1;
}

.wnb-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wnb-carousel__dots {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.wnb-carousel__dot {
  width: 2rem;
  height: 2.75rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.wnb-carousel__dot::after {
  content: '';
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  margin: 0 auto;
  border-radius: 999px;
  background: #d4d2cd;
  transition: width 0.3s ease, background-color 0.3s ease;
}

.wnb-carousel__dot.is-active::after {
  width: 2rem;
  background: #2a2928;
}

/* Page intro band (about/gallery/residential) */
.wnb-page-intro {
  margin: 0 -1rem;
  padding: 2.5rem 1rem 3.5rem;
  text-align: center;
  background: #fff;
}

.wnb-page-intro__title {
  margin: 0 auto;
  max-width: 48rem;
  font-size: clamp(1.35rem, 4vw, 2.35rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.25;
}

.wnb-page-intro__lead {
  margin: 2.5rem auto 0;
  max-width: 48rem;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.625;
}

.wnb-page-intro__lead--bold {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wnb-page-intro__subheading {
  margin: 3.5rem 0 0;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.wnb-service-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin-top: 2rem;
}

.wnb-service-tags span {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Service cards grid */
.wnb-service-grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 3.5rem;
  text-align: left;
}

@media (min-width: 640px) {
  .wnb-service-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 720px) {
  .wnb-service-grid--3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 2rem;
  }
}

.wnb-service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(10, 10, 10, 0.08);
  background: #fff;
}

.wnb-service-card img {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
}

.wnb-service-card__body {
  padding: 1.25rem 1.5rem;
}

.wnb-service-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.375;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (min-width: 640px) {
  .wnb-service-card h3 {
    font-size: 1.0625rem;
  }
}

.wnb-service-card p {
  margin: 0.75rem 0 0;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.65;
}

.wnb-service-card__link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.wnb-gallery-grid {
  display: grid;
  gap: 0.55rem;
  padding: 2.25rem 0 3.5rem;
}

@media (min-width: 720px) {
  .wnb-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1100px) {
  .wnb-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.wnb-kitchen-results {
  width: 100vw;
  max-width: none;
  margin-inline: calc(50% - 50vw);
  overflow-x: clip;
  padding: 3rem clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}

.wnb-kitchen-results h2 {
  margin: 0 auto;
  text-align: center;
  font-family: var(--wnb-font-hero);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.98;
  max-width: var(--wnb-max-content);
}

.wnb-kitchen-results__grid {
  display: grid;
  gap: 1.5rem;
  margin: 2.5rem auto 0;
  max-width: var(--wnb-max-content);
}

@media (min-width: 640px) {
  .wnb-kitchen-results__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .wnb-kitchen-results__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Shared before/after grid — wardrobe, staircase */
.wnb-before-after-grid {
  display: grid;
  gap: 1.5rem;
  margin: 2.5rem auto 0;
  max-width: var(--wnb-max-content);
}

@media (min-width: 640px) {
  .wnb-before-after-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .wnb-before-after-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.wnb-faq-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 2rem;
}

.wnb-faq-page {
  padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}

.wnb-faq-page h2 {
  margin: 0;
  text-align: center;
  font-family: var(--wnb-font-nav);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.98;
}

.wnb-faq-page .wnb-faq {
  margin-top: clamp(2rem, 5vw, 2.75rem);
  border: 1px solid rgba(10, 10, 10, 0.1);
}

.wnb-faq-page .wnb-faq__trigger {
  font-family: var(--wnb-font-nav);
  font-size: clamp(1.25rem, 4vw, 1.875rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.wnb-faq-page .wnb-faq__answer {
  font-family: var(--wnb-font-nav);
  font-size: clamp(1.04rem, 3.33vw, 1.5625rem);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: -0.02em;
}
