/* =====================================================
   CITY WARE® — Luxury Light Theme
   ===================================================== */

/* ── TOKENS ────────────────────────────────────────── */
:root {
  --white:         #FFFFFF;
  --ivory:         #FAF8F4;
  --soft-grey:     #F5F5F5;
  --grey-100:      #EDEDED;
  --grey-200:      #D8D8D8;
  --charcoal:      #1A1A1A;
  --charcoal-60:   rgba(26,26,26,0.6);
  --charcoal-30:   rgba(26,26,26,0.3);
  --charcoal-10:   rgba(26,26,26,0.06);

  --gold:          #C8A96E;
  --gold-light:    #E8D5A8;
  --gold-pale:     #F5EDD8;
  --gold-deep:     #A8854A;
  --silver:        #9EA8B0;
  --silver-light:  #CDD4D9;
  --silver-pale:   #EEF1F3;

  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-title:    'Cinzel', serif;
  --font-body:     'Inter', system-ui, sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout:    cubic-bezier(0.65, 0, 0.35, 1);

  --section-pad:   clamp(80px, 10vw, 140px);
  --container:     1200px;
  --header-h:      72px;
  --radius:        4px;
  --radius-lg:     12px;
}

/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; } /* Lenis handles this */
body {
  background: var(--white);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }
ul { list-style: none; }

/* ── LOADER ─────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0;
  background: var(--white);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}
#loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes loader-pulse {
  0%, 100% { opacity: 0.5; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1); }
}
.loader-bar-wrap {
  width: 200px; height: 1px;
  background: var(--grey-200);
  position: relative;
}
.loader-bar {
  height: 1px;
  background: var(--gold);
  width: 0%;
  transition: width 0.1s linear;
}
.loader-pct {
  font-family: var(--font-title);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--charcoal-60);
}


/* ── ACCESSIBILITY ──────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── TYPOGRAPHY ─────────────────────────────────────── */
.section-eyebrow {
  display: block;
  font-family: var(--font-title);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--charcoal);
}
.section-title em {
  font-style: italic;
  color: var(--gold-deep);
}
.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}

/* ── LAYOUT ─────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* ── BUTTONS ────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.3s, transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
}
.btn-primary:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(168, 133, 74, 0.25);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 32px;
  border: 1px solid var(--charcoal-30);
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ── NAVIGATION ─────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 900;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--grey-100);
  transition: border-color 0.4s, box-shadow 0.4s;
}
#site-header.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.logo-main {
  font-family: var(--font-title);
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--charcoal);
}
.logo-reg {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--gold);
  vertical-align: super;
}

/* SVG Logo */
.logo-svg {
  height: 36px;
  width: auto;
  color: var(--charcoal);
  display: block;
  transition: opacity 0.2s;
}
.nav-logo:hover .logo-svg { opacity: 0.75; }

/* Loader SVG logo */
.loader-logo-svg {
  width: 44px;
  height: 52px;
  animation: loader-pulse 1.6s ease-in-out infinite;
}

/* Mobile menu logo mark */
.mobile-logo-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.mobile-logo-mark svg {
  width: 36px;
  height: auto;
}
.mobile-logo-mark span {
  font-family: var(--font-title);
  font-size: 16px;
  letter-spacing: 0.12em;
  color: var(--charcoal);
}
.mobile-logo-mark sup {
  font-size: 8px;
  color: var(--gold);
  vertical-align: super;
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-60);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s var(--ease-out-expo);
}
.nav-link:hover { color: var(--charcoal); }
.nav-link:hover::after { right: 0; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-cta {
  padding: 9px 22px;
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.25s, color 0.25s;
}
.nav-cta:hover { background: var(--gold); color: var(--white); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--charcoal);
  transition: transform 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--white);
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out-expo);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 24px; text-align: center; }
.mobile-menu ul a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--charcoal);
  transition: color 0.2s;
}
.mobile-menu ul a:hover { color: var(--gold-deep); }
.mobile-menu-close {
  position: absolute; top: 24px; right: 28px;
  font-size: 20px; color: var(--charcoal-60);
  transition: color 0.2s;
}
.mobile-menu-close:hover { color: var(--charcoal); }
.mobile-tagline {
  font-family: var(--font-title);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── HERO ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--ivory);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
}

/* Water SVG background */
.hero-water-bg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.water-svg { width: 100%; height: 100%; }
.stream {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: stream-fall 2.8s ease-in-out infinite;
}
.s1  { animation-delay: 0.0s; }
.s2  { animation-delay: 0.2s; }
.s3  { animation-delay: 0.4s; }
.s4  { animation-delay: 0.6s; }
.s5  { animation-delay: 0.8s; }
.s6  { animation-delay: 1.0s; }
.s7  { animation-delay: 1.2s; }
.s8  { animation-delay: 0.1s; }
.s9  { animation-delay: 0.3s; }
.s10 { animation-delay: 0.5s; }
.s11 { animation-delay: 0.7s; }
.s12 { animation-delay: 0.9s; }
.s13 { animation-delay: 1.1s; }
.s14 { animation-delay: 1.3s; }
.s15 { animation-delay: 0.15s; }
@keyframes stream-fall {
  0%   { stroke-dashoffset: 900; opacity: 0; }
  10%  { opacity: 1; }
  80%  { opacity: 0.8; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  padding-top: 80px;
  padding-bottom: 120px;
}
.hero-eyebrow {
  font-family: var(--font-title);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 128px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--charcoal);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(40px);
}
.hero-title em {
  font-style: italic;
  color: var(--gold-deep);
}
.hero-sub {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-60);
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
}

/* Shower illustration */
.hero-product-float {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}
.hero-shower-illus {
  position: relative;
  width: clamp(120px, 18vw, 260px);
  animation: float-hero 4s ease-in-out infinite;
}
@keyframes float-hero {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.shower-head-shape {
  width: 100%;
  padding-bottom: 30%;
  background: linear-gradient(135deg, var(--silver-light), var(--silver));
  border-radius: 12px 12px 8px 8px;
  box-shadow:
    0 20px 60px rgba(158,168,176,0.3),
    inset 0 2px 8px rgba(255,255,255,0.8),
    inset 0 -2px 6px rgba(0,0,0,0.05);
  position: relative;
}
.shower-head-shape::before {
  content: '';
  position: absolute;
  top: 25%; left: 10%; right: 10%; bottom: 25%;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.4) 0px,
    rgba(255,255,255,0.4) 1px,
    transparent 1px,
    transparent 8px
  ),
  repeating-linear-gradient(
    0deg,
    rgba(255,255,255,0.4) 0px,
    rgba(255,255,255,0.4) 1px,
    transparent 1px,
    transparent 8px
  );
  border-radius: 4px;
}
.shower-streams-illus {
  display: flex;
  gap: 8%;
  justify-content: center;
  margin-top: 6px;
  padding: 0 8%;
}
.sh-stream {
  width: 1.5px;
  background: linear-gradient(to bottom, var(--silver), transparent);
  border-radius: 1px;
  animation: sh-fall 1.8s ease-in-out infinite;
  opacity: 0.6;
}
.sh-s1  { height: clamp(40px, 6vw, 90px); animation-delay: 0.0s; }
.sh-s2  { height: clamp(35px, 5vw, 75px); animation-delay: 0.15s; }
.sh-s3  { height: clamp(50px, 7vw, 100px); animation-delay: 0.3s; }
.sh-s4  { height: clamp(40px, 6vw, 85px); animation-delay: 0.05s; }
.sh-s5  { height: clamp(45px, 6.5vw, 95px); animation-delay: 0.2s; }
.sh-s6  { height: clamp(38px, 5.5vw, 80px); animation-delay: 0.35s; }
.sh-s7  { height: clamp(48px, 7vw, 90px); animation-delay: 0.1s; }
.sh-s8  { height: clamp(42px, 6vw, 88px); animation-delay: 0.25s; }
@keyframes sh-fall {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  30%  { transform: scaleY(1); opacity: 0.6; }
  80%  { opacity: 0.5; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-drop 1.8s ease-in-out infinite;
}
@keyframes scroll-drop {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.hero-scroll-hint span {
  font-family: var(--font-title);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal-30);
}

/* ── COLLECTIONS ────────────────────────────────────── */
.section-collections {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 2px;
}
.cat-card {
  background: var(--soft-grey);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: background 0.4s;
}
.cat-card.cat-large {
  grid-column: span 2;
}
.cat-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
  transition: transform 0.6s var(--ease-out-expo);
}
.cat-card.cat-large .cat-inner { min-height: 360px; }
.cat-card:not(.cat-large) .cat-inner { grid-template-columns: 1fr; min-height: 280px; }
.cat-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.cat-info {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.cat-label {
  font-family: var(--font-title);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.cat-info h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  color: var(--charcoal);
}
.cat-info p {
  font-size: 13px;
  color: var(--charcoal-60);
  line-height: 1.6;
}
.cat-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.cat-link:hover { gap: 12px; }
.cat-card:hover { background: var(--gold-pale); }
.cat-card:hover .cat-inner { transform: scale(0.98); }

/* Category visuals — Shower */
.cat-shower-vis {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cat-shower-head {
  width: 90px; height: 28px;
  background: linear-gradient(135deg, var(--silver-light) 0%, var(--silver) 100%);
  border-radius: 6px 6px 4px 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1), inset 0 1px 4px rgba(255,255,255,0.7);
  position: relative;
}
.cat-shower-arm {
  width: 4px; height: 60px;
  background: linear-gradient(90deg, var(--silver-light), var(--silver));
  transform-origin: top;
  transform: rotate(15deg) translateX(-20px);
  margin-bottom: -4px;
  order: -1;
  border-radius: 2px;
}
.cat-water-curtain {
  display: flex;
  gap: 5px;
  padding-top: 4px;
}
.cat-water-curtain span {
  width: 1.5px;
  background: linear-gradient(to bottom, var(--silver), transparent);
  border-radius: 1px;
  animation: water-drip 1.6s ease-in-out infinite;
  animation-play-state: paused;
}
.cat-water-curtain span:nth-child(1)  { height: 36px; animation-delay: 0.0s; }
.cat-water-curtain span:nth-child(2)  { height: 42px; animation-delay: 0.1s; }
.cat-water-curtain span:nth-child(3)  { height: 38px; animation-delay: 0.2s; }
.cat-water-curtain span:nth-child(4)  { height: 44px; animation-delay: 0.05s; }
.cat-water-curtain span:nth-child(5)  { height: 40px; animation-delay: 0.15s; }
.cat-water-curtain span:nth-child(6)  { height: 36px; animation-delay: 0.25s; }
.cat-water-curtain span:nth-child(7)  { height: 43px; animation-delay: 0.1s; }
.cat-water-curtain span:nth-child(8)  { height: 39px; animation-delay: 0.2s; }
.cat-water-curtain span:nth-child(9)  { height: 42px; animation-delay: 0.0s; }
.cat-water-curtain span:nth-child(10) { height: 37px; animation-delay: 0.3s; }
@keyframes water-drip {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  20%  { transform: scaleY(1); opacity: 0.7; }
  80%  { opacity: 0.5; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* Mirror visual */
.cat-mirror-vis {
  position: relative;
  width: 100px; height: 130px;
}
.cat-mirror-frame {
  position: absolute; inset: 0;
  border: 6px solid var(--silver-light);
  border-radius: 50%;
  background: linear-gradient(135deg, #e8eef2 0%, #d0dce3 100%);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.cat-mirror-glow {
  position: absolute; inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,110,0.2) 0%, transparent 70%);
  animation: mirror-pulse 2.5s ease-in-out infinite;
}
@keyframes mirror-pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.02); }
}
.cat-mirror-reflect {
  position: absolute;
  top: 15%; left: 15%; width: 25%; height: 40%;
  background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, transparent 100%);
  border-radius: 50%;
  animation: reflect-sweep 3s ease-in-out infinite;
}
@keyframes reflect-sweep {
  0%, 100% { transform: translate(0,0) rotate(0deg); opacity: 0.4; }
  50% { transform: translate(12px, 12px) rotate(15deg); opacity: 0.8; }
}

/* Towel rod visual */
.cat-towel-vis {
  position: relative;
  width: 120px;
}
.cat-rod {
  width: 100%; height: 10px;
  background: linear-gradient(90deg, var(--silver-light), var(--silver), var(--silver-light));
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.cat-towel-drape {
  width: 50px; height: 60px;
  background: linear-gradient(160deg, #f0ece4 0%, #e8e2d6 100%);
  margin: 0 auto;
  border-radius: 0 0 12px 12px;
  box-shadow: 4px 8px 20px rgba(0,0,0,0.06);
}

/* Shelf visual */
.cat-shelf-vis {
  position: relative;
  width: 110px;
}
.cat-shelf-body {
  width: 100%; height: 10px;
  background: linear-gradient(90deg, rgba(255,255,255,0.9), rgba(220,235,245,0.8), rgba(255,255,255,0.9));
  border-radius: 3px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1), 0 1px 0 rgba(255,255,255,0.8);
  border: 1px solid rgba(200,230,240,0.5);
}
.cat-shelf-item {
  position: absolute;
  background: linear-gradient(180deg, #e8d5a8 0%, #c8a96e 100%);
  border-radius: 4px 4px 0 0;
  bottom: 10px;
}
.cat-shelf-item.s1 { width: 14px; height: 44px; left: 12px; }
.cat-shelf-item.s2 { width: 12px; height: 36px; left: 34px; }
.cat-shelf-item.s3 { width: 14px; height: 50px; left: 54px; }

/* Soap dish visual */
.cat-soap-vis {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.cat-soap-dish {
  width: 80px; height: 22px;
  background: linear-gradient(135deg, var(--silver-light), var(--silver));
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12), inset 0 1px 4px rgba(255,255,255,0.7);
}
.cat-soap-bar {
  width: 52px; height: 28px;
  background: linear-gradient(135deg, #f5f0e8, #ece5d4);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transform: translateY(-20px);
}

/* Fitting visual */
.cat-fitting-vis {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.cat-valve-body {
  width: 40px; height: 60px;
  background: linear-gradient(180deg, var(--silver-light), var(--silver));
  border-radius: 8px 8px 4px 4px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.cat-valve-handle {
  width: 70px; height: 12px;
  background: linear-gradient(90deg, var(--silver), var(--silver-light), var(--silver));
  border-radius: 6px;
  margin-top: -6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ── PRODUCTS SECTION ───────────────────────────────── */
.section-products {
  padding: var(--section-pad) 0;
  background: var(--ivory);
}
.product-filter {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.pf-btn {
  padding: 9px 22px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-60);
  border: 1px solid var(--grey-200);
  border-radius: 100px;
  transition: all 0.25s;
}
.pf-btn:hover, .pf-btn.active {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
  position: relative;
}
.prod-card {
  background: var(--white);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.4s, transform 0.4s var(--ease-out-expo);
}
.prod-card.hidden {
  display: none;
}
/* Shine overlay on hover */
.prod-card-shine {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.5) 50%, transparent 60%);
  transform: translateX(-100%);
  pointer-events: none;
  z-index: 2;
  transition: transform 0.6s var(--ease-out-expo);
}
.prod-card:hover .prod-card-shine { transform: translateX(100%); }
.prod-card-body {
  padding: 40px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  transition: transform 0.4s var(--ease-out-expo);
}
.prod-card:hover .prod-card-body { transform: translateY(-4px); }
.prod-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  z-index: 2;
}
.prod-icon {
  width: 80px; height: 80px;
  color: var(--silver);
  transition: color 0.3s, transform 0.4s var(--ease-out-expo);
}
.prod-card:hover .prod-icon { color: var(--gold); transform: scale(1.05); }
.prod-icon svg { width: 100%; height: 100%; }

/* LED card gold tint */
.prod-card--led .prod-icon { color: var(--gold-light); }
.prod-card--led:hover { background: #FDF9F0; }

/* Water drop animation */
.prod-icon .drop {
  animation: drop-fall 1.8s ease-in infinite;
  transform-origin: center top;
}
.prod-card:hover .drop { opacity: 1; }
.drop.d1 { animation-delay: 0.0s; }
.drop.d2 { animation-delay: 0.2s; }
.drop.d3 { animation-delay: 0.4s; }
.drop.d4 { animation-delay: 0.1s; }
.drop.d5 { animation-delay: 0.3s; }
.drop.d6 { animation-delay: 0.5s; }
.drop.d7 { animation-delay: 0.15s; }
.drop.d8 { animation-delay: 0.35s; }
.drop.d9 { animation-delay: 0.45s; }
@keyframes drop-fall {
  0%   { transform: translateY(0); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 0.6; }
  100% { transform: translateY(14px); opacity: 0; }
}
/* LED line glow */
.led-line {
  animation: led-glow 2s ease-in-out infinite alternate;
}
@keyframes led-glow {
  from { opacity: 0.3; filter: brightness(1); }
  to   { opacity: 1;   filter: brightness(1.5) drop-shadow(0 0 4px currentColor); }
}
.led-ring {
  animation: led-ring-spin 8s linear infinite;
}
@keyframes led-ring-spin {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -80; }
}
.prod-info { flex: 1; }
.prod-series {
  font-family: var(--font-title);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.prod-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.prod-desc {
  font-size: 13px;
  color: var(--charcoal-60);
  line-height: 1.65;
  margin-bottom: 16px;
}
.prod-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.prod-material, .prod-sizes {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.prod-material {
  background: var(--silver-pale);
  color: var(--charcoal-60);
}
.prod-sizes {
  background: var(--gold-pale);
  color: var(--gold-deep);
}
.prod-hover-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-30);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s, color 0.3s;
}
.prod-card:hover .prod-hover-cta {
  opacity: 1;
  transform: translateY(0);
  color: var(--gold-deep);
}

/* ── CABINET DEMO ───────────────────────────────────── */
.section-demo {
  padding: var(--section-pad) 0;
  background: var(--soft-grey);
  overflow: hidden;
}
.demo-split {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.demo-left .section-title { margin-bottom: 20px; }
.demo-desc {
  font-size: 15px;
  color: var(--charcoal-60);
  line-height: 1.7;
  margin-bottom: 28px;
}
.demo-features {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.demo-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--charcoal-60);
}
.feat-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Cabinet illustration */
.demo-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cabinet-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}
.cabinet-body {
  position: relative;
  width: clamp(220px, 26vw, 340px);
  aspect-ratio: 0.7;
  border-radius: var(--radius-lg) var(--radius-lg) 6px 6px;
}
/* Interior (behind door) */
.cabinet-interior {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #f8f5f0 0%, #efe8df 100%);
  border-radius: inherit;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.cabinet-interior-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top, rgba(200,169,110,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cabinet-shelf {
  background: linear-gradient(90deg, transparent, rgba(200,169,110,0.3), transparent);
  height: 2px;
  position: relative;
  margin: 4px 0;
}
.shelf-item {
  position: absolute;
  bottom: 2px;
  background: linear-gradient(180deg, #d4c5a8, #b8a888);
  border-radius: 3px 3px 0 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.top-shelf .item-tall   { width: 14px; height: 50px; left: 8px; }
.top-shelf .item-med    { width: 12px; height: 38px; left: 28px; }
.top-shelf .item-small  { width: 10px; height: 28px; left: 46px; }
.mid-shelf .item-med    { width: 12px; height: 36px; left: 8px; }
.mid-shelf .item-small  { width: 10px; height: 26px; left: 26px; }
.mid-shelf .item-tall-2 { width: 14px; height: 44px; left: 42px; }
.mid-shelf .item-small:last-child { left: 62px; }
.cabinet-toothbrush-bar {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: auto;
}
.tb-slot {
  width: 12px; height: 40px;
  background: linear-gradient(180deg, rgba(200,169,110,0.4), rgba(200,169,110,0.1));
  border-radius: 6px 6px 0 0;
  border: 1px solid rgba(200,169,110,0.3);
}
/* LED Frame */
.cabinet-led-frame {
  position: absolute; inset: -3px;
  border-radius: 14px;
  background: transparent;
  border: 3px solid transparent;
  box-shadow: 0 0 0 0 rgba(200,169,110,0);
  transition: box-shadow 0.6s, border-color 0.6s;
  z-index: 5;
  pointer-events: none;
}
.cabinet-wrapper:hover .cabinet-led-frame,
.cabinet-wrapper.is-open .cabinet-led-frame {
  border-color: rgba(200,169,110,0.5);
  box-shadow: 0 0 20px rgba(200,169,110,0.3), inset 0 0 20px rgba(200,169,110,0.1);
}
/* Door */
.cabinet-door {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #e8eef2 0%, #d4dfe6 60%, #c8d8e2 100%);
  border-radius: inherit;
  transform-origin: left center;
  transform: perspective(800px) rotateY(0deg);
  transition: transform 0.8s var(--ease-out-expo);
  z-index: 3;
  overflow: hidden;
  box-shadow: 4px 0 24px rgba(0,0,0,0.12);
}
.cabinet-wrapper:hover .cabinet-door,
.cabinet-wrapper.is-open .cabinet-door {
  transform: perspective(800px) rotateY(-75deg);
}
.cabinet-mirror-surface {
  position: absolute; inset: 8px;
  background: linear-gradient(135deg, #dde8f0, #c4d4e0);
  border-radius: 4px;
  overflow: hidden;
}
.cabinet-mirror-sheen {
  position: absolute; top: 0; left: 0;
  width: 50%; height: 70%;
  background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 100%);
  animation: sheen-slide 3.5s ease-in-out infinite;
}
@keyframes sheen-slide {
  0%, 100% { transform: translateX(-30%) translateY(-10%) rotate(15deg); }
  50%       { transform: translateX(80%) translateY(30%) rotate(15deg); }
}
.cabinet-mirror-sheen-2 {
  position: absolute; bottom: 10%; right: 10%;
  width: 20%; height: 30%;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  filter: blur(8px);
}
.cabinet-door-edge {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 8px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.08));
}
.cabinet-open-hint {
  font-family: var(--font-title);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal-30);
  transition: opacity 0.3s;
}
.cabinet-wrapper.is-open .cabinet-open-hint { opacity: 0; }

/* ── WHY SECTION ────────────────────────────────────── */
.section-why {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: var(--section-pad);
}
.why-intro .section-title { margin-bottom: 20px; }
.why-intro p { font-size: 15px; color: var(--charcoal-60); line-height: 1.8; }
.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.stat-block {
  background: var(--soft-grey);
  padding: 36px 28px;
  position: relative;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  display: inline;
  vertical-align: top;
  margin-top: 8px;
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-60);
  margin-top: 8px;
}
.pillars-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.pillar {
  background: var(--soft-grey);
  padding: 36px 28px;
  transition: background 0.3s, transform 0.3s;
}
.pillar:hover { background: var(--gold-pale); transform: translateY(-4px); }
.pillar-icon {
  width: 40px; height: 40px;
  color: var(--gold);
  margin-bottom: 20px;
}
.pillar-icon svg { width: 100%; height: 100%; }
.pillar h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.pillar p { font-size: 13px; color: var(--charcoal-60); line-height: 1.65; }

/* ── MIRROR SECTION ─────────────────────────────────── */
.section-mirror {
  padding: var(--section-pad) 0;
  background: var(--ivory);
  overflow: hidden;
}
.mirror-showcase-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mirror-text .section-title { margin-bottom: 20px; }
.mirror-text p { font-size: 15px; color: var(--charcoal-60); line-height: 1.7; margin-bottom: 36px; }
.mirror-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
.spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-top: 1px solid var(--grey-200);
}
.spec-label {
  font-family: var(--font-title);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.spec-val { font-size: 13px; color: var(--charcoal); font-weight: 500; }

/* LED Mirror animation */
.mirror-display { display: flex; align-items: center; justify-content: center; }
.led-mirror-anim {
  position: relative;
  width: clamp(200px, 26vw, 340px);
  aspect-ratio: 0.85;
  cursor: pointer;
}
.lm-outer-glow {
  position: absolute; inset: -20px;
  border-radius: 16px;
  background: radial-gradient(ellipse, rgba(200,169,110,0.15) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity 0.6s;
  opacity: 0;
}
.led-mirror-anim.led-on .lm-outer-glow { opacity: 1; }
.lm-frame {
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
/* LED edges */
.lm-led-top, .lm-led-bottom, .lm-led-left, .lm-led-right {
  position: absolute;
  background: rgba(200,169,110,0);
  transition: background 0.8s, box-shadow 0.8s;
  border-radius: 2px;
}
.lm-led-top    { top: 8px; left: 8px; right: 8px; height: 4px; }
.lm-led-bottom { bottom: 8px; left: 8px; right: 8px; height: 4px; }
.lm-led-left   { left: 8px; top: 8px; bottom: 8px; width: 4px; }
.lm-led-right  { right: 8px; top: 8px; bottom: 8px; width: 4px; }
.led-mirror-anim.led-on .lm-led-top,
.led-mirror-anim.led-on .lm-led-bottom,
.led-mirror-anim.led-on .lm-led-left,
.led-mirror-anim.led-on .lm-led-right {
  background: rgb(200,169,110);
  box-shadow: 0 0 12px 4px rgba(200,169,110,0.5), 0 0 30px 8px rgba(200,169,110,0.2);
}
.lm-glass {
  position: absolute;
  inset: 20px;
  background: linear-gradient(145deg, #b8ccd4, #a0b8c4);
  border-radius: 4px;
  overflow: hidden;
}
.lm-reflection {
  position: absolute;
  background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 100%);
  border-radius: 50%;
  pointer-events: none;
}
.lm-reflection.r1 { top: 5%; left: 5%; width: 40%; height: 50%; }
.lm-reflection.r2 { bottom: 10%; right: 8%; width: 25%; height: 30%; animation: reflect-2 4s ease-in-out infinite; }
@keyframes reflect-2 {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}
.lm-toggle {
  position: absolute;
  bottom: -50px; left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.lm-toggle-label {
  font-family: var(--font-title);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal-30);
}

/* ── GALLERY SECTION ────────────────────────────────── */
.section-gallery {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.gallery-swiper-wrap {
  padding: 0 clamp(20px, 5vw, 60px);
  position: relative;
}
.gallery-swiper { overflow: visible; }
.gallery-slide { width: clamp(280px, 36vw, 480px); }
.gallery-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--soft-grey);
  cursor: pointer;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
}
.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.1);
}
.gc-visual {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.gc-label {
  padding: 28px 28px 32px;
  border-top: 1px solid var(--grey-100);
}
.gc-cat {
  font-family: var(--font-title);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.gc-label h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.gc-label p { font-size: 13px; color: var(--charcoal-60); }

/* Gallery visual scenes */
.gc-shower-scene {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  width: 100%;
}
.gc-overhead {
  width: 140px; height: 36px;
  background: linear-gradient(135deg, var(--silver-light), var(--silver));
  border-radius: 8px 8px 4px 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), inset 0 2px 4px rgba(255,255,255,0.6);
}
.gc-shower-wall { position: absolute; inset: 0; background: linear-gradient(180deg, #f8f9fa, #eef1f3); }
.gc-water-fall {
  display: flex; gap: 6px; z-index: 1; margin-top: 8px;
}
.gc-water-fall span {
  width: 1.5px;
  background: linear-gradient(to bottom, var(--silver), transparent);
  border-radius: 1px;
  animation: water-drip 1.4s ease-in-out infinite;
}
.gc-water-fall span:nth-child(1)  { height: 120px; animation-delay: 0.0s; }
.gc-water-fall span:nth-child(2)  { height: 140px; animation-delay: 0.1s; }
.gc-water-fall span:nth-child(3)  { height: 130px; animation-delay: 0.2s; }
.gc-water-fall span:nth-child(4)  { height: 150px; animation-delay: 0.05s; }
.gc-water-fall span:nth-child(5)  { height: 125px; animation-delay: 0.15s; }
.gc-water-fall span:nth-child(6)  { height: 145px; animation-delay: 0.25s; }
.gc-water-fall span:nth-child(7)  { height: 132px; animation-delay: 0.08s; }
.gc-water-fall span:nth-child(8)  { height: 148px; animation-delay: 0.18s; }

/* Mirror gallery scene */
.gc-mirror-scene { display: flex; align-items: center; justify-content: center; width: 100%; }
.gc-mirror-frame-big {
  position: relative;
  width: 160px; height: 200px;
  background: linear-gradient(145deg, #1e1e1e, #141414);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  overflow: visible;
}
.gc-mirror-led-glow {
  position: absolute; inset: -2px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(200,169,110,0.6), 0 0 60px rgba(200,169,110,0.3);
  background: linear-gradient(145deg, rgba(200,169,110,0.4), transparent 40%);
  border: 2px solid rgba(200,169,110,0.5);
  animation: led-breathe 2.5s ease-in-out infinite;
}
@keyframes led-breathe {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}
.gc-mirror-glass-big {
  position: absolute; inset: 12px;
  background: linear-gradient(145deg, #b0c4cc, #98b0b8);
  border-radius: 4px;
  overflow: hidden;
}
.gc-refl-sweep {
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: sweep-across 3.5s ease-in-out infinite;
}
@keyframes sweep-across {
  0% { left: -60%; }
  100% { left: 120%; }
}

/* Shelf gallery scene */
.gc-shelf-scene { display: flex; align-items: flex-end; justify-content: center; width: 100%; padding-bottom: 20px; }
.gc-wall-shelf { position: relative; width: 200px; }
.gc-shelf-surface {
  width: 100%; height: 10px;
  background: linear-gradient(90deg, rgba(200,220,230,0.5), rgba(180,200,215,0.9), rgba(200,220,230,0.5));
  border-radius: 3px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.gc-shelf-item {
  position: absolute;
  bottom: 10px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  border-radius: 4px 4px 0 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  animation: item-float 3s ease-in-out infinite;
}
.gc-i1 { width: 18px; height: 64px; left: 20px; animation-delay: 0.0s; }
.gc-i2 { width: 14px; height: 48px; left: 46px; animation-delay: 0.3s; }
.gc-i3 { width: 16px; height: 72px; left: 68px; animation-delay: 0.15s; }
@keyframes item-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.gc-shelf-bracket {
  position: absolute;
  bottom: 10px;
  width: 4px; height: 32px;
  background: var(--silver);
  border-radius: 2px;
}
.gc-shelf-bracket.l { right: 20px; }
.gc-shelf-bracket.r { left: 20px; }

/* Towel gallery scene */
.gc-towel-scene { display: flex; flex-direction: column; align-items: center; gap: 0; width: 100%; }
.gc-wall-bg { position: absolute; inset: 0; background: linear-gradient(180deg, #f0ece8, #e8e2da); }
.gc-towel-rod-big {
  width: 200px; height: 12px;
  background: linear-gradient(90deg, var(--silver-light), var(--silver), var(--silver-light));
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12), inset 0 2px 4px rgba(255,255,255,0.7);
  position: relative; z-index: 1;
}
.gc-towel-hang {
  width: 130px; height: 160px;
  background: linear-gradient(180deg, #e8ddd0, #d8cec0);
  border-radius: 0 0 16px 16px;
  box-shadow: 6px 12px 32px rgba(0,0,0,0.08);
  position: relative; z-index: 1;
}

/* Cabinet gallery scene */
.gc-cabinet-scene { display: flex; align-items: center; justify-content: center; width: 100%; }
.gc-cabinet-body {
  position: relative;
  width: 160px; height: 200px;
  background: linear-gradient(145deg, #e8d8d4, #d8c8c4);
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  overflow: hidden;
}
.gc-cabinet-interior {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #f5f0ec, #e8e0d8);
  display: flex; flex-direction: column; justify-content: space-evenly;
  padding: 16px 12px;
}
.gc-int-shelf {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(200,169,110,0.5), transparent);
}
.gc-cabinet-door-open {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 50%;
  transform-origin: left center;
  transform: perspective(400px) rotateY(-60deg);
  background: linear-gradient(145deg, #d0dce4, #b8c8d2);
  border-radius: 8px 0 0 8px;
  overflow: hidden;
  box-shadow: 4px 0 20px rgba(0,0,0,0.15);
}
.gc-cd-mirror {
  position: absolute; inset: 8px;
  background: linear-gradient(135deg, #c0d0d8, #a8c0c8);
  border-radius: 3px;
}

/* Swiper customizations */
.gallery-pagination { margin-top: 40px !important; }
.gallery-pagination .swiper-pagination-bullet {
  width: 24px; height: 2px; border-radius: 1px;
  background: var(--grey-200); opacity: 1;
  transition: background 0.3s, width 0.3s;
}
.gallery-pagination .swiper-pagination-bullet-active {
  background: var(--gold); width: 40px;
}
.gallery-prev, .gallery-next {
  width: 48px; height: 48px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  color: var(--charcoal) !important;
  transition: background 0.25s, transform 0.25s;
}
.gallery-prev:hover, .gallery-next:hover {
  background: var(--gold-pale);
  transform: scale(1.05);
}
.gallery-prev::after, .gallery-next::after {
  font-size: 14px !important;
  font-weight: 600 !important;
}

/* ── CONTACT ────────────────────────────────────────── */
.section-contact {
  padding: var(--section-pad) 0;
  background: var(--ivory);
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-left .section-title { margin-bottom: 20px; }
.contact-left > p { font-size: 15px; color: var(--charcoal-60); line-height: 1.7; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.cd-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--grey-200);
}
.cd-item:last-child { border-bottom: none; }
.cd-icon { color: var(--gold); font-size: 10px; margin-top: 4px; flex-shrink: 0; }
.cd-item div { display: flex; flex-direction: column; gap: 2px; }
.cd-item strong { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal); }
.cd-item span { font-size: 14px; color: var(--charcoal-60); }

/* Form */
.contact-form {
  background: var(--white);
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 48px rgba(0,0,0,0.06);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-60);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
/* FIX: restore dropdown arrow removed by -webkit-appearance:none */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231A1A1A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-success {
  margin-top: 16px;
  padding: 14px 16px;
  background: #F0F8F0;
  border: 1px solid #C8E6C9;
  border-radius: var(--radius);
  font-size: 14px;
  color: #2E7D32;
  display: none;          /* hidden by default; JS removes [hidden] to show */
  align-items: center;
  gap: 8px;
}
.form-success:not([hidden]) {
  display: flex;
}

/* ── FOOTER ─────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 72px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 56px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo {
  font-family: var(--font-title);
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.04em;
}
.footer-logo sup { font-size: 11px; color: var(--gold); }
.footer-brand p { font-size: 13px; line-height: 1.8; }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h5 {
  font-family: var(--font-title);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
}
.footer-made { color: rgba(255,255,255,0.3); font-style: italic; }

/* ── SCROLL REVEAL ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .cat-card.cat-large { grid-column: span 2; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .pillars-row { grid-template-columns: repeat(2, 1fr); }
  .mirror-showcase-wrap { grid-template-columns: 1fr; gap: 60px; }
  .mirror-display { order: -1; }
  .demo-split { grid-template-columns: 1fr; gap: 60px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card.cat-large { grid-column: span 1; }
  .cat-inner { grid-template-columns: 1fr !important; min-height: auto !important; }
  .cat-visual { display: none; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .stat-block { padding: 24px 20px; }
  .pillars-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .why-stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-product-float { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; justify-content: center; }
  .contact-form { padding: 28px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}