/* ============================================================
   BATHROOM VANITIES HUB — Wellness / Spa / Hotel Luxury
   Antonio Lupi · Falper · Boffi aesthetic
   ============================================================ */

@import url('../kitchen-cabinets/kitchen-cabinets.css');

:root {
  --bv-travertine: #C4B5A0;
  --bv-stone: #E8E2D8;
  --bv-oak: #A89278;
  --bv-bronze: #B8A078;
  --bv-taupe: #8A7E72;
  --bv-ink: #1C1814;
  --bv-bg-light: #F5F2ED;
  --bv-bg-white: #FAF8F5;
  --bv-text-dark: #2A2420;
  --bv-font-display: 'Playfair Display', Georgia, serif;
  --bv-font-body: 'Inter', system-ui, sans-serif;
  --bv-ease: cubic-bezier(0.16, 1, 0.3, 1);

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

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

body.page-bathroom-vanities {
  font-family: var(--bv-font-body);
}

.page-bathroom-vanities .hero-title,
.page-bathroom-vanities .section-title,
.page-bathroom-vanities .kc-collection-card__title,
.page-bathroom-vanities .kc-project-title,
.page-bathroom-vanities .kc-faq-list summary,
.page-bathroom-vanities .bv-cta-title,
.page-bathroom-vanities .kc-feature-title {
  font-family: var(--bv-font-display);
}

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

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

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

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

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

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

.bv-pillar {
  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);
}
.bv-pillar:hover {
  border-color: rgba(184, 160, 120, 0.45);
  box-shadow: var(--shadow-sm);
}
.bv-pillar__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bv-bronze);
  background: rgba(196, 181, 160, 0.15);
  border-radius: var(--radius-sm);
}
.bv-pillar h3 {
  font-family: var(--bv-font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  margin-bottom: var(--space-2);
  color: var(--bv-text-dark);
}
.bv-pillar p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

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

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

/* ----- Features (wellness + configurations) ----- */
.bv-features-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
  margin-bottom: clamp(48px, 8vw, 80px);
}
@media (min-width: 900px) {
  .bv-features-intro {
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 6vw, 72px);
  }
}

.bv-features-visual {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 1px solid var(--color-divider);
}
.bv-features-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bv-experience-points {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.bv-experience-point h3 {
  font-family: var(--bv-font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  margin-bottom: var(--space-2);
  color: var(--bv-text-dark);
}
.bv-experience-point p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 48ch;
}

.bv-config-block {
  padding-top: clamp(48px, 8vw, 72px);
  border-top: 1px solid var(--color-divider);
}

.bv-config-block .section-title em {
  color: var(--bv-oak);
  font-style: italic;
}

.page-bathroom-vanities .kc-feature-card::before {
  background:
    linear-gradient(180deg, rgba(250, 248, 245, 0.05) 0%, rgba(250, 248, 245, 0.92) 70%),
    linear-gradient(135deg, #D4C8B8 0%, #B8A898 40%, #9A8878 100%);
  opacity: 0.4;
}
.page-bathroom-vanities .kc-feature-card:nth-child(2)::before {
  background: linear-gradient(135deg, #C8BCAC 0%, #A89888 50%, #887868 100%);
}
.page-bathroom-vanities .kc-feature-card:nth-child(3)::before {
  background: linear-gradient(135deg, #E0D4C4 0%, #B0A090 50%, #807060 100%);
}
.page-bathroom-vanities .kc-feature-card:nth-child(4)::before {
  background: linear-gradient(135deg, #D8CCC0 0%, #A89080 50%, #786858 100%);
}
.page-bathroom-vanities .kc-feature-card:nth-child(5)::before {
  background: linear-gradient(135deg, #E4DAD0 0%, #B4A498 50%, #847868 100%);
}
.page-bathroom-vanities .kc-feature-card:nth-child(6)::before {
  background: linear-gradient(135deg, #C4B8A8 0%, #988878 50%, #685848 100%);
}
.page-bathroom-vanities .kc-feature-num {
  color: var(--bv-taupe);
}

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

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

.bv-material-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.bv-material-chip {
  display: inline-flex;
  align-items: center;
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--bv-stone);
  border: 1px solid rgba(232, 226, 216, 0.25);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}
.bv-material-links {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4) var(--space-8);
}
.bv-material-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--bv-bronze);
  text-decoration: none;
}
.bv-material-links a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ----- Manufacturing ----- */
.bv-mfg-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: clamp(80px, 12vw, 120px) 0;
}
.bv-mfg-section .kc-section-bg img {
  object-position: center 50%;
}
.bv-mfg-section .kc-section-bg::after {
  background: linear-gradient(
    180deg,
    rgba(28, 24, 20, 0.88) 0%,
    rgba(42, 36, 32, 0.9) 50%,
    rgba(28, 24, 20, 0.94) 100%
  );
}
.bv-mfg-section .eyebrow {
  color: rgba(232, 226, 216, 0.55);
}
.bv-mfg-section .eyebrow::before {
  background: var(--bv-bronze);
}
.bv-mfg-section .section-title em {
  color: var(--bv-bronze);
  font-style: italic;
}

.bv-mfg-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: var(--space-10);
  counter-reset: bv-step;
}
@media (min-width: 600px) {
  .bv-mfg-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .bv-mfg-steps { grid-template-columns: repeat(3, 1fr); }
}

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

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

/* ----- FAQ ----- */
.page-bathroom-vanities .kc-faq-list summary::after {
  color: var(--bv-bronze);
}
.page-bathroom-vanities .kc-faq-list details[open] summary {
  color: var(--bv-text-dark);
}

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

/* ----- Mobile CTA ----- */
.bv-mobile-cta .btn-primary {
  background: var(--bv-ink);
  border-color: var(--bv-ink);
}
.bv-mobile-cta .btn-secondary {
  color: var(--bv-text-dark);
}

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

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