/* Wall Panels Pillar — self-contained bundle (kitchen-cabinets + wardrobes chain) */
/* ============================================================
   KITCHEN CABINETS PILLAR PAGE — page-specific layout
   ============================================================ */

html { scroll-padding-top: 88px; scroll-behavior: smooth; }

/* ----- Hero ----- */
.kc-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--color-surface-dark);
  color: #fff;
  padding-top: 100px;
  padding-bottom: var(--space-16);
  overflow: hidden;
}
.kc-hero .hero-bg img {
  object-position: center 30%;
}
.kc-hero .hero-inner { width: 100%; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: var(--space-6);
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color var(--transition-interactive);
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb span[aria-hidden] { opacity: 0.5; }

/* ----- Collection cards (image bg) ----- */
.kc-collections-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 900px) {
  .kc-collections-grid { grid-template-columns: repeat(3, 1fr); }
}

.kc-collection-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}
.kc-collection-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.kc-collection-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.kc-collection-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.kc-collection-card:hover .kc-collection-card__bg img {
  transform: scale(1.06);
}
.kc-collection-card__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 18, 16, 0.15) 0%, rgba(19, 18, 16, 0.75) 55%, rgba(19, 18, 16, 0.92) 100%);
}
.kc-collection-card__body {
  position: relative;
  z-index: 1;
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.kc-collection-card__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  line-height: 1.15;
}
.kc-collection-card__desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  max-width: 36ch;
}
.kc-collection-card__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-copper);
  margin-top: var(--space-2);
}

/* ----- Style cards (large cinematic) ----- */
.kc-style-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.kc-style-card {
  position: relative;
  display: block;
  aspect-ratio: 18 / 10;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}
.kc-style-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.kc-style-card:hover img { transform: scale(1.04); }
.kc-style-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(19, 18, 16, 0.82) 0%, rgba(19, 18, 16, 0.35) 55%, rgba(19, 18, 16, 0.2) 100%);
  z-index: 1;
}
.kc-style-card__body {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-10);
  max-width: 480px;
}
.kc-style-card__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-copper);
  margin-bottom: var(--space-3);
}
.kc-style-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: var(--space-4);
}
.kc-style-card__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

/* ----- Material blocks ----- */
.kc-materials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 600px) { .kc-materials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .kc-materials-grid { grid-template-columns: repeat(4, 1fr); } }

.kc-material-block {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 360px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  border: 1px solid var(--color-divider);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}
.kc-material-block:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.kc-material-block__bg {
  position: absolute;
  inset: 0;
}
.kc-material-block__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.kc-material-block:hover .kc-material-block__bg img { transform: scale(1.05); }
.kc-material-block__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 18, 16, 0.1) 0%, rgba(19, 18, 16, 0.88) 100%);
}
.kc-material-block__body {
  position: relative;
  z-index: 1;
  padding: var(--space-6);
}
.kc-material-block__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  margin-bottom: var(--space-2);
}
.kc-material-block__desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

/* ----- Capabilities (dark + bg image) ----- */
.kc-capabilities-section {
  position: relative;
  overflow: hidden;
  color: #fff;
}
.kc-capabilities-section .kc-section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.kc-capabilities-section .kc-section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kc-capabilities-section .kc-section-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 18, 16, 0.88) 0%, rgba(19, 18, 16, 0.94) 100%);
}
.kc-capabilities-section .container {
  position: relative;
  z-index: 1;
}
.kc-capabilities-section .section-title { color: #fff; }
.kc-capabilities-section .section-intro { color: rgba(255, 255, 255, 0.72); }
.kc-capabilities-section .eyebrow { color: rgba(255, 255, 255, 0.55); }
.kc-capabilities-section .eyebrow::before { background: rgba(255, 255, 255, 0.35); }

.kc-cap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 600px) { .kc-cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .kc-cap-grid { grid-template-columns: repeat(3, 1fr); } }

.kc-cap-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-8);
  backdrop-filter: blur(8px);
  transition: background var(--transition-interactive), border-color var(--transition-interactive);
}
.kc-cap-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(181, 137, 94, 0.35);
}
.kc-cap-icon {
  width: 36px;
  height: 36px;
  color: var(--color-copper);
  margin-bottom: var(--space-5);
}
.kc-cap-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  color: #fff;
  margin-bottom: var(--space-3);
}
.kc-cap-desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

/* ----- Feature cards ----- */
.kc-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 600px) { .kc-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .kc-features-grid { grid-template-columns: repeat(3, 1fr); } }

.kc-feature-card {
  position: relative;
  min-height: 280px;
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid var(--color-divider);
  background: var(--color-surface-offset);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}
.kc-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.kc-feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(247, 245, 240, 0.05) 0%, rgba(247, 245, 240, 0.92) 70%),
    linear-gradient(135deg, #D4C4B0 0%, #A89888 40%, #8B7355 100%);
  opacity: 0.35;
  transition: opacity var(--transition-interactive);
}
.kc-feature-card:hover::before { opacity: 0.5; }
.kc-feature-card:nth-child(2)::before {
  background: linear-gradient(135deg, #C8B8A8 0%, #9A8878 50%, #6B5D4F 100%);
}
.kc-feature-card:nth-child(3)::before {
  background: linear-gradient(135deg, #E8DDD0 0%, #B8A898 50%, #887868 100%);
}
.kc-feature-card:nth-child(4)::before {
  background: linear-gradient(135deg, #D0C0B0 0%, #A09080 50%, #706050 100%);
}
.kc-feature-card:nth-child(5)::before {
  background: linear-gradient(135deg, #E0D4C8 0%, #B0A090 50%, #807060 100%);
}
.kc-feature-card:nth-child(6)::before {
  background: linear-gradient(135deg, #C8B8A0 0%, #988870 50%, #685848 100%);
}
.kc-feature-num {
  position: relative;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}
.kc-feature-title {
  position: relative;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  margin-bottom: var(--space-3);
}
.kc-feature-desc {
  position: relative;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ----- Projects showcase ----- */
.kc-projects-wrap {
  position: relative;
  border: 1px solid var(--color-divider);
  overflow: hidden;
  background: var(--color-surface-dark);
}
.kc-projects-bg {
  position: absolute;
  inset: 0;
  opacity: 0.25;
}
.kc-projects-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kc-projects-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(247, 245, 240, 0.95) 0%, rgba(247, 245, 240, 0.88) 100%);
}
.kc-projects-inner {
  position: relative;
  z-index: 1;
  padding: var(--space-12) var(--space-6);
}
@media (min-width: 900px) {
  .kc-projects-inner { padding: var(--space-16); }
}
.kc-projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-top: var(--space-10);
}
@media (min-width: 900px) {
  .kc-projects-grid { grid-template-columns: repeat(3, 1fr); }
}
.kc-project-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-divider);
  padding: var(--space-8);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}
.kc-project-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.kc-project-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  margin-bottom: var(--space-5);
}
.kc-project-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
}
.kc-project-spec dt {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: 2px;
}
.kc-project-spec dd {
  color: var(--color-text);
  font-weight: 500;
}

/* ----- Trust cards (dark) ----- */
.kc-trust-section {
  background: var(--color-surface-dark);
  color: #fff;
}
.kc-trust-section .section-title { color: #fff; }
.kc-trust-section .section-intro { color: rgba(255, 255, 255, 0.72); }
.kc-trust-section .eyebrow { color: rgba(255, 255, 255, 0.55); }
.kc-trust-section .eyebrow::before { background: rgba(255, 255, 255, 0.35); }

.kc-trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 600px) { .kc-trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .kc-trust-grid { grid-template-columns: repeat(3, 1fr); } }

.kc-trust-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-8);
  transition: background var(--transition-interactive), border-color var(--transition-interactive);
}
.kc-trust-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(181, 137, 94, 0.3);
}
.kc-trust-icon {
  width: 32px;
  height: 32px;
  color: var(--color-copper);
  margin-bottom: var(--space-5);
}
.kc-trust-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  color: #fff;
  margin-bottom: var(--space-3);
}
.kc-trust-desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* ----- Catalog CTA ----- */
.kc-catalog-section {
  background: var(--color-surface-offset);
  text-align: center;
}
.kc-catalog-inner {
  max-width: 560px;
  margin-inline: auto;
}
.kc-catalog-form {
  margin-top: var(--space-10);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  text-align: left;
}
@media (min-width: 600px) {
  .kc-catalog-form { grid-template-columns: 1fr 1fr; }
}
.kc-catalog-form .form-row.full { grid-column: 1 / -1; }
.kc-catalog-form .form-row label {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: var(--space-2);
}
.kc-catalog-form .form-row input {
  background: var(--color-surface-2);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-sm);
  padding: var(--space-3) var(--space-4);
  width: 100%;
  font-family: inherit;
  font-size: var(--text-base);
}
.kc-catalog-form .form-row input:focus {
  outline: none;
  border-color: var(--color-accent);
}
.kc-catalog-form .form-submit {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: var(--space-4);
}

/* ----- FAQ (details accordion) ----- */
.kc-faq-list {
  max-width: 800px;
  margin-inline: auto;
  margin-top: var(--space-12);
}
.kc-faq-list details {
  border-bottom: 1px solid var(--color-divider);
  padding-block: var(--space-2);
}
.kc-faq-list details:first-child {
  border-top: 1px solid var(--color-divider);
}
.kc-faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-text);
}
.kc-faq-list summary::-webkit-details-marker { display: none; }
.kc-faq-list summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--color-accent);
  transition: transform var(--transition-interactive);
}
.kc-faq-list details[open] summary::after {
  transform: rotate(45deg);
}
.kc-faq-list details p {
  padding-bottom: var(--space-5);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 65ch;
}

/* ----- Final CTA with bg image ----- */
.kc-inquiry-section {
  position: relative;
  overflow: hidden;
}
.kc-inquiry-section .kc-section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.kc-inquiry-section .kc-section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kc-inquiry-section .kc-section-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(19, 18, 16, 0.92) 0%, rgba(19, 18, 16, 0.85) 100%);
}
.kc-inquiry-section .container {
  position: relative;
  z-index: 1;
}

/* ----- Mobile sticky CTA ----- */
.kc-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: var(--space-3) var(--space-5);
  padding-bottom: max(var(--space-3), env(safe-area-inset-bottom));
  background: rgba(247, 245, 240, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--color-divider);
  box-shadow: 0 -8px 24px rgba(26, 24, 21, 0.08);
  gap: var(--space-3);
}
.kc-mobile-cta .btn {
  flex: 1;
  justify-content: center;
}
@media (max-width: 767px) {
  .kc-mobile-cta { display: flex; }
  body { padding-bottom: 72px; }
  .kc-style-card { aspect-ratio: 16 / 11; }
  .kc-style-card__body { padding: var(--space-6); }
  .kc-collection-card { min-height: 340px; }
  .kc-material-block { min-height: 300px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ============================================================
   WARDROBES PILLAR — Luxury Storage Systems Hub
   Poliform / Rimadesio / Molteni&C aesthetic
   ============================================================ */


:root {
  --wd-walnut: #3A2A1E;
  --wd-taupe: #A8998B;
  --wd-stone: #E8E4DF;
  --wd-bronze: #B8A88A;
  --wd-ink: #1A1410;
  --wd-bg-light: #F2EFEB;
  --wd-bg-white: #FAF9F7;
  --wd-text-dark: #2A2018;
  --wd-text-medium: #6B5E52;
  --wd-font-display: 'Playfair Display', Georgia, serif;
  --wd-font-body: 'Inter', system-ui, sans-serif;
  --wd-ease: cubic-bezier(0.16, 1, 0.3, 1);

  --color-accent: var(--wd-bronze);
  --color-accent-hover: #9A8A72;
  --color-copper: var(--wd-bronze);
  --color-surface-dark: var(--wd-ink);
  --font-display: var(--wd-font-display);
}

html { scroll-padding-top: 88px; }

body.page-wardrobes {
  font-family: var(--wd-font-body);
}

.page-wardrobes .hero-title,
.page-wardrobes .section-title,
.page-wardrobes .cta-title,
.page-wardrobes .kc-collection-card__title,
.page-wardrobes .kc-cap-title,
.page-wardrobes .kc-project-title,
.page-wardrobes .kc-faq-list summary {
  font-family: var(--wd-font-display);
}

/* ----- Hero (100vh) ----- */
.wd-hero {
  min-height: 100vh;
  min-height: 100dvh;
}
.wd-hero .hero-bg img {
  object-position: center 40%;
}
.wd-hero .hero-eyebrow,
.wd-hero .breadcrumb a:hover {
  color: var(--wd-bronze);
}
.wd-hero .trust-item svg {
  color: var(--wd-bronze);
}

/* ----- Section rhythm ----- */
.wd-section {
  padding: clamp(72px, 10vw, 100px) 0;
}
.wd-section--light {
  background: var(--wd-bg-light);
}
.wd-section--white {
  background: var(--wd-bg-white);
}

.wd-eyebrow-accent::before {
  background: var(--wd-bronze);
}

/* ----- Why custom (split) ----- */
.wd-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}
@media (min-width: 900px) {
  .wd-why-grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 6vw, 80px);
  }
}

.wd-why-copy .section-intro {
  margin-top: var(--space-5);
  max-width: 52ch;
}

.wd-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-top: var(--space-10);
}

.wd-highlight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--color-surface-2);
  border: 1px solid var(--color-divider);
  transition: border-color var(--transition-interactive), box-shadow var(--transition-slow);
}
.wd-highlight:hover {
  border-color: rgba(184, 168, 138, 0.45);
  box-shadow: var(--shadow-sm);
}
.wd-highlight__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wd-bronze);
  background: rgba(58, 42, 30, 0.06);
  border-radius: var(--radius-sm);
}
.wd-highlight h3 {
  font-family: var(--wd-font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  margin-bottom: var(--space-2);
  color: var(--wd-text-dark);
}
.wd-highlight p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: none;
}

.wd-why-visual {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 1px solid var(--color-divider);
}
.wd-why-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--wd-ease);
}
.wd-why-visual:hover img {
  transform: scale(1.03);
}

/* ----- Collections (4-card grid) ----- */
.wd-collections-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 700px) {
  .wd-collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.wd-collections-grid .kc-collection-card {
  min-height: 400px;
}
.wd-collections-grid .kc-collection-card__link {
  color: var(--wd-bronze);
}

/* ----- Materials (full-width cinematic) ----- */
.wd-materials-band {
  position: relative;
  overflow: hidden;
  background: var(--wd-ink);
}
.wd-materials-band__img {
  width: 100%;
  aspect-ratio: 2 / 1;
  max-height: 520px;
  object-fit: cover;
  display: block;
}
@media (min-width: 900px) {
  .wd-materials-band__img {
    max-height: 560px;
  }
}
.wd-materials-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 20, 16, 0.35) 0%,
    rgba(26, 20, 16, 0.72) 55%,
    rgba(26, 20, 16, 0.92) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: clamp(var(--space-8), 6vw, var(--space-16));
}
.wd-materials-inner {
  width: 100%;
  max-width: var(--container-wide, 1280px);
  margin-inline: auto;
  padding-inline: var(--space-6);
}
@media (min-width: 900px) {
  .wd-materials-inner {
    padding-inline: var(--space-10);
  }
}

.wd-materials-band .section-title {
  color: #fff;
  margin-bottom: var(--space-4);
}
.wd-materials-band .section-intro {
  color: rgba(232, 228, 223, 0.78);
  max-width: 56ch;
  margin-bottom: var(--space-8);
}

.wd-material-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.wd-material-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--wd-stone);
  text-decoration: none;
  border: 1px solid rgba(232, 228, 223, 0.25);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  transition: background var(--transition-interactive), border-color var(--transition-interactive);
}
.wd-material-chip:hover {
  background: rgba(184, 168, 138, 0.2);
  border-color: var(--wd-bronze);
  color: #fff;
}
.wd-material-chip--static {
  cursor: default;
  pointer-events: none;
}
.wd-material-links {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4) var(--space-8);
}
.wd-material-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--wd-bronze);
  text-decoration: none;
}
.wd-material-links a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ----- Organization (split) ----- */
.wd-org-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}
@media (min-width: 900px) {
  .wd-org-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(48px, 6vw, 72px);
  }
}

.wd-org-visual {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 1px solid var(--color-divider);
  order: -1;
}
@media (min-width: 900px) {
  .wd-org-visual { order: 0; }
}
.wd-org-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wd-org-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: var(--space-8);
}
@media (min-width: 600px) {
  .wd-org-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.wd-org-feature {
  padding: var(--space-5);
  border: 1px solid var(--color-divider);
  background: var(--color-surface-2);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}
.wd-org-feature:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.wd-org-feature span {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wd-taupe);
}
.wd-org-feature h3 {
  font-family: var(--wd-font-display);
  font-size: var(--text-base);
  font-weight: 400;
  margin: var(--space-2) 0 var(--space-2);
  color: var(--wd-text-dark);
}
.wd-org-feature p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
  max-width: none;
}

/* ----- Manufacturing ----- */
.wd-mfg-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: clamp(80px, 12vw, 120px) 0;
}
.wd-mfg-section .kc-section-bg img {
  object-position: center 50%;
}
.wd-mfg-section .kc-section-bg::after {
  background: linear-gradient(
    180deg,
    rgba(26, 20, 16, 0.88) 0%,
    rgba(58, 42, 30, 0.9) 50%,
    rgba(26, 20, 16, 0.94) 100%
  );
}
.wd-mfg-section .eyebrow {
  color: rgba(232, 228, 223, 0.55);
}
.wd-mfg-section .eyebrow::before {
  background: var(--wd-bronze);
}
.wd-mfg-section .section-title em {
  color: var(--wd-bronze);
  font-style: italic;
}
.wd-mfg-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: var(--space-10);
  counter-reset: wd-step;
}
@media (min-width: 600px) {
  .wd-mfg-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .wd-mfg-steps { grid-template-columns: repeat(3, 1fr); }
}

.wd-mfg-step {
  counter-increment: wd-step;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 228, 223, 0.12);
  padding: var(--space-7);
  backdrop-filter: blur(6px);
  transition: background var(--transition-interactive), border-color var(--transition-interactive);
}
.wd-mfg-step:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(184, 168, 138, 0.35);
}
.wd-mfg-step::before {
  content: counter(wd-step, decimal-leading-zero);
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  color: var(--wd-bronze);
  margin-bottom: var(--space-4);
}
.wd-mfg-step h3 {
  font-family: var(--wd-font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  color: #fff;
  margin-bottom: var(--space-3);
}
.wd-mfg-step p {
  font-size: var(--text-sm);
  color: rgba(232, 228, 223, 0.68);
  line-height: 1.6;
  max-width: none;
}

/* ----- Projects ----- */
.wd-projects-wrap {
  position: relative;
  border: 1px solid var(--color-divider);
  overflow: hidden;
  background: var(--wd-ink);
}
.wd-projects-wrap .kc-projects-bg::after {
  background: linear-gradient(
    180deg,
    rgba(242, 239, 235, 0.96) 0%,
    rgba(232, 228, 223, 0.9) 100%
  );
}
.wd-projects-wrap .section-title em {
  color: var(--wd-walnut);
  font-style: italic;
}

/* ----- FAQ accent ----- */
.page-wardrobes .kc-faq-list summary::after {
  color: var(--wd-bronze);
}
.page-wardrobes .kc-faq-list details[open] summary {
  color: var(--wd-walnut);
}

/* ----- CTA (700px) ----- */
.wd-cta-section {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  display: flex;
  align-items: center;
  color: #fff;
}
.wd-cta-section .kc-section-bg img {
  object-position: center 45%;
}
.wd-cta-section .kc-section-bg::after {
  background: linear-gradient(
    135deg,
    rgba(26, 20, 16, 0.9) 0%,
    rgba(58, 42, 30, 0.82) 50%,
    rgba(26, 20, 16, 0.92) 100%
  );
}
.wd-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  padding: var(--space-16) var(--space-6);
}
.wd-cta-inner .eyebrow {
  color: rgba(232, 228, 223, 0.6);
  justify-content: center;
}
.wd-cta-inner .eyebrow::before {
  background: var(--wd-bronze);
}
.wd-cta-title {
  font-family: var(--wd-font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.12;
  margin-top: var(--space-5);
}
.wd-cta-title em {
  font-style: italic;
  color: var(--wd-bronze);
}
.wd-cta-text {
  margin-top: var(--space-6);
  font-size: var(--text-base);
  color: rgba(232, 228, 223, 0.78);
  line-height: 1.7;
  max-width: 52ch;
  margin-inline: auto;
}
.wd-cta-actions {
  margin-top: var(--space-8);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

/* ----- Mobile CTA ----- */
.wd-mobile-cta .btn-primary {
  background: var(--wd-walnut);
  border-color: var(--wd-walnut);
}
.wd-mobile-cta .btn-secondary {
  color: var(--wd-walnut);
}

@media (max-width: 767px) {
  .wd-collections-grid .kc-collection-card {
    min-height: 340px;
  }
  .wd-materials-band__img {
    aspect-ratio: 4 / 3;
    max-height: none;
  }
  .wd-cta-section {
    min-height: 560px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wd-why-visual img,
  .wd-collections-grid .kc-collection-card__bg img {
    transition: none;
  }
}
