/* ============================================================================
   BUILDER STOCK CABINET
   "The Warm Showroom" — premium kitchen-cabinet commerce
   HTML · CSS · Bootstrap 5.3 · vanilla JS

   Design brief pins the palette (warm neutral + brass, Playfair/Inter) and the
   feel (Apple / Studio McGee / Caesarstone). The craft lives in spacing,
   restraint, and rendering real shaker doors rather than leaning on stock gaps.

   CONTENTS
   01  Tokens              10  Collections
   02  Reset & base        11  Why-choose
   03  Type                12  Process timeline
   04  Layout              13  Testimonials
   05  Shaker door engine  14  Quote form / contact
   06  Buttons             15  CTA banner + footer
   07  Header / nav        16  Shop (filters, grid, cards)
   08  Hero                17  Product detail
   09  Trust / about / svc 18  Quote drawer + toast
                           19  Reveal / scroll UI / responsive / a11y
   ============================================================================ */

/* ==========================================================================
   01  TOKENS
   ========================================================================== */
:root {
  /* brand palette — matched to the UCI Kitchen & Bath logo (deep brick-red
     "UCI" mark with a rose-gold "Kitchen & Bath" script). Supporting
     neutrals are warm near-blacks and creamy whites to match. */
  --brass:      #9C3A2B;   /* primary accent — brand brick-red              */
  --brass-deep: #782B25;   /* logo-exact maroon (white on this ≈ 9.6:1 AAA) */
  --brass-soft: #E8AD82;   /* rose-gold — accents on dark, from script text */
  --brass-tint: #FBEEE5;   /* faint rose-cream wash for fills / sections    */
  --charcoal:   #241712;   /* warm near-black — dark surfaces + headings    */
  --charcoal-2: #35241D;   /* raised dark                                   */
  --paper:      #FBF7F4;   /* warm ivory app background                     */
  --white:      #FFFFFF;
  --ink:        #23180F;   /* warm dark headings on light                  */
  --body:       #5C4E47;   /* body text (≈7.5:1 on --paper)                */
  --muted:      #8B7A70;   /* captions                                      */
  --line:       #ECE0D8;   /* hairlines                                     */
  --line-2:     #DECCC0;

  /* wood tones for grain recipes */
  --oak:    #C8A26B;
  --walnut: #5A3B26;
  --esp:    #34241A;

  /* semantic */
  --ok:   #4E7B57;
  --err:  #B0473A;
  --star: #C9962E;

  /* type */
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --t-eyebrow: 0.75rem;
  --t-cap:  0.8125rem;
  --t-sm:   0.9375rem;
  --t-body: 1.0625rem;
  --t-lead: clamp(1.125rem, 0.4vw + 1.02rem, 1.375rem);
  --t-h6:   1rem;
  --t-h5:   clamp(1.15rem, 0.4vw + 1.05rem, 1.375rem);
  --t-h4:   clamp(1.4rem,  0.8vw + 1.15rem, 1.85rem);
  --t-h3:   clamp(1.75rem, 1.4vw + 1.3rem,  2.6rem);
  --t-h2:   clamp(2.15rem, 2.6vw + 1.4rem,  3.6rem);
  --t-h1:   clamp(2.6rem,  4.4vw + 1.3rem,  5rem);

  /* spacing — 4pt */
  --s-1:4px;  --s-2:8px;  --s-3:12px; --s-4:16px; --s-5:24px;
  --s-6:32px; --s-7:48px; --s-8:64px; --s-9:96px; --s-10:128px; --s-11:176px;

  --gutter: clamp(20px, 4vw, 72px);
  --shell:  1280px;
  --shell-wide: 1520px;
  --measure: 64ch;

  /* radius — the brief asks for 16–20px */
  --r-xs: 8px;
  --r-sm: 12px;
  --r:    18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --r-pill: 999px;

  /* elevation — soft, warm-tinted */
  --sh-1: 0 1px 2px rgba(46,46,46,.04), 0 6px 16px -8px rgba(46,46,46,.12);
  --sh-2: 0 2px 6px rgba(46,46,46,.05), 0 18px 40px -18px rgba(46,46,46,.22);
  --sh-3: 0 4px 10px rgba(46,46,46,.06), 0 40px 80px -30px rgba(46,46,46,.32);
  --sh-3-warm: 0 4px 10px rgba(46,46,46,.05), 0 34px 64px -26px rgba(156,58,43,.28);
  --sh-brass: 0 18px 40px -20px rgba(156,58,43,.5);

  /* glass */
  --glass: rgba(255,255,255,.62);
  --glass-line: rgba(255,255,255,.7);
  --glass-dark: rgba(30,30,30,.42);

  /* motion */
  --e-out: cubic-bezier(.16,.84,.34,1);
  --e-spring: cubic-bezier(.2,.9,.25,1.04);
  --d-1: 160ms; --d-2: 280ms; --d-3: 460ms; --d-4: 720ms;

  /* z */
  --z-head: 60; --z-drawer: 80; --z-modal: 100; --z-toast: 200;

  /* bootstrap bridge */
  --bs-body-font-family: var(--sans);
  --bs-body-bg: var(--paper);
  --bs-body-color: var(--body);
  --bs-border-radius: var(--r-sm);
  --bs-link-color: var(--brass-deep);
  --bs-emphasis-color: var(--ink);
}

/* ==========================================================================
   02  RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 108px; }
body {
  margin: 0; min-height: 100dvh;
  background: var(--paper); color: var(--body);
  font-family: var(--sans); font-size: var(--t-body); line-height: 1.7;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
:focus-visible { outline: 3px solid var(--brass-deep); outline-offset: 3px; border-radius: var(--r-xs); }
.on-dark :focus-visible { outline-color: var(--brass-soft); }
::selection { background: var(--brass-soft); color: var(--charcoal); }

.u-vh { position:absolute; width:1px; height:1px; margin:-1px; padding:0; overflow:hidden; clip-path:inset(50%); white-space:nowrap; }
.skip {
  position: fixed; left: var(--s-4); top: -120px; z-index: var(--z-toast);
  padding: var(--s-3) var(--s-5); background: var(--charcoal); color: var(--white);
  font-family: var(--sans); font-size: var(--t-sm); font-weight: 600; text-decoration: none;
  border-radius: var(--r-xs); transition: top var(--d-2) var(--e-out);
}
.skip:focus-visible { top: var(--s-4); }

/* ==========================================================================
   03  TYPOGRAPHY
   ========================================================================== */
h1,h2,h3,h4,h5,.display { font-family: var(--serif); font-weight: 600; color: var(--ink);
  line-height: 1.1; letter-spacing: -.01em; margin: 0 0 var(--s-4); text-wrap: balance; }
h1,.h1 { font-size: var(--t-h1); font-weight: 700; letter-spacing: -.02em; }
h2,.h2 { font-size: var(--t-h2); }
h3,.h3 { font-size: var(--t-h3); }
h4,.h4 { font-size: var(--t-h4); }
h5,.h5 { font-size: var(--t-h5); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4, .on-dark h5 { color: var(--white); }

p { margin: 0 0 var(--s-4); max-width: var(--measure); }
p:last-child { margin-bottom: 0; }
.lead { font-family: var(--sans); font-size: var(--t-lead); line-height: 1.6; color: var(--body); font-weight: 400; max-width: 56ch; }
.on-dark .lead { color: rgba(255,255,255,.82); }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-3);
  margin: 0 0 var(--s-4);
  font-family: var(--sans); font-size: var(--t-eyebrow); font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--brass-deep);
}
.eyebrow::before { content:""; width: 26px; height: 1.5px; background: linear-gradient(90deg, var(--brass-soft), var(--brass)); }
.eyebrow--center { justify-content: center; }
.eyebrow--sq::before { width: 8px; height: 8px; border-radius: 2px; background: var(--brass); }
.on-dark .eyebrow { color: var(--brass-soft); }

.serif-accent { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--brass-deep); }
.on-dark .serif-accent { color: var(--brass-soft); }

.u-measure { max-width: var(--measure); }
.text-muted-2 { color: var(--muted); }

/* ==========================================================================
   04  LAYOUT
   ========================================================================== */
.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); }
.shell--wide { max-width: var(--shell-wide); }

.section { padding-block: clamp(44px, 5.5vw, 84px); position: relative; }
.section--tight { padding-block: clamp(32px, 3.5vw, 56px); }
.section--xtight { padding-block: clamp(20px, 2.2vw, 32px); }
.section--flush-top { padding-block-start: 0; }
.section--dark { background: var(--charcoal); color: rgba(255,255,255,.82); }
.section--sand { background: var(--brass-tint); }
.section--white { background: var(--white); }

.rule { height:1px; border:0; margin:0; background: var(--line); }

.sec-head { display: grid; gap: var(--s-4); margin-bottom: clamp(28px, 3.5vw, 48px); }
.sec-head--center { text-align: center; justify-items: center; }
.sec-head--center .lead { margin-inline: auto; }
.sec-head--split { gap: var(--s-5) var(--s-8); }
@media (min-width: 900px) {
  .sec-head--split { grid-template-columns: minmax(0,1.1fr) minmax(0,.9fr); align-items: end; }
  .sec-head--split .lead { padding-bottom: 6px; }
}

/* ==========================================================================
   05  SHAKER DOOR ENGINE  (signature)
   A shaker door is a frame (stile + rail) around a recessed panel. Rendered
   here in pure CSS so all eight finishes are coherent and need no photography.
   Swap in real photos by adding background-image to .door and hiding .door__panel.
   ========================================================================== */
.door {
  position: relative; aspect-ratio: 3 / 4; width: 100%;
  border-radius: var(--r-sm);
  background: var(--fin, #EDE9E0);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
  overflow: hidden; isolation: isolate;
}
.door__grain { position:absolute; inset:0; z-index:0; opacity: var(--grain,0); mix-blend-mode: multiply; }
.door__panel {
  position: absolute; z-index: 1;
  inset: 13% 12%;
  border-radius: var(--r-xs);
  background: var(--fin, #EDE9E0);
  /* recessed: light top-left rail, shadow catch in the reveal */
  box-shadow:
    inset 0 2px 3px rgba(0,0,0,.16),
    inset 0 -1px 2px rgba(255,255,255,.35),
    0 0 0 1px rgba(0,0,0,.05),
    -3px -3px 6px rgba(0,0,0,.10),
    3px 3px 6px rgba(255,255,255,.18);
}
.door__panel::after {   /* inner bevel line of the panel */
  content:""; position:absolute; inset:7%; border-radius: 4px;
  box-shadow: inset 0 1px 2px rgba(0,0,0,.10), inset 0 -1px 1px rgba(255,255,255,.28);
}
.door__grain--panel { position:absolute; inset:20% 19%; z-index:2; opacity: var(--grain,0); mix-blend-mode: multiply; border-radius: 4px; }
/* overhead sheen so doors sit in the same light */
.door::before {
  content:""; position:absolute; inset:0; z-index:3; pointer-events:none;
  background: linear-gradient(158deg, rgba(255,255,255,.30), rgba(255,255,255,0) 42%);
}
/* brushed-brass bar pull, top-right of the door */
.door__pull {
  position: absolute; z-index: 4; top: 16%; right: 15%;
  width: 5px; height: 26%;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, #8A6A38, #E4C583 45%, #B8864B 75%, #7C5A2E);
  box-shadow: 0 2px 5px rgba(0,0,0,.3);
}
.door--wide { aspect-ratio: 4 / 3; }
.door--wide .door__pull { top: 15%; right: 42%; width: 26%; height: 5px; }
.door--sm .door__pull { width: 4px; height: 24%; }

/* wood grain layer, reused */
.grain-wood {
  background-image:
    repeating-linear-gradient(91deg,
      rgba(0,0,0,.05) 0 1px, transparent 1px 7px,
      rgba(0,0,0,.13) 7px 8px, transparent 8px 19px),
    repeating-linear-gradient(90deg,
      rgba(255,255,255,.05) 0 2px, transparent 2px 24px);
}

/* --- the eight finishes --- */
.fin-white     { --fin:#F3EFE7; }
.fin-pearl     { --fin:#E7E1D4; }
.fin-gray      { --fin:#A6A9A6; }
.fin-black     { --fin:#26282A; }
.fin-sapphire  { --fin:#2E415C; }
.fin-green     { --fin:#4C5A4A; }
.fin-espresso  { --fin:#3A2A1E; --grain:.5; }
.fin-caramelo  { --fin:#B27E48; --grain:.42; }
.fin-espresso .door__grain, .fin-caramelo .door__grain,
.fin-espresso .door__grain--panel, .fin-caramelo .door__grain--panel { background-image:
  repeating-linear-gradient(91deg, rgba(0,0,0,.06) 0 1px, transparent 1px 7px, rgba(0,0,0,.16) 7px 8px, transparent 8px 20px); }

/* a swatch chip used in filters and pickers */
.swatch { width: 26px; height: 26px; border-radius: 50%; flex: none;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.12); background: var(--fin,#ccc); }

/* ==========================================================================
   05b  REAL PHOTOGRAPHY MEDIA
   Real photography over the existing CSS gradient scenes — the gradient
   stays as a fallback if a photo source is ever unreachable, so a section
   never breaks to blank white.
   ========================================================================== */
.photo { position: relative; overflow: hidden; }
.photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.photo-dark::after { content:""; position:absolute; inset:0; z-index:2; background: linear-gradient(180deg, rgba(20,18,15,.18), rgba(20,18,15,.62)); pointer-events:none; }
.photo-fade::after { content:""; position:absolute; inset:0; z-index:2; background: linear-gradient(180deg, rgba(20,18,15,.05) 40%, rgba(20,18,15,.55) 100%); pointer-events:none; }

.gallery-strip-wrap { overflow-x: auto; overflow-y: hidden; scroll-behavior: smooth;
  scroll-snap-type: x mandatory; scrollbar-width: none; margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter); }
.gallery-strip-wrap::-webkit-scrollbar { display: none; }
.gallery-strip { display: flex; gap: var(--s-5); justify-content: center; width: max-content;
  min-width: 100%; padding-block: 4px; }
.gallery-strip__item { position: relative; flex: 0 0 clamp(280px, 26vw, 420px); aspect-ratio: 3/4;
  border-radius: var(--r-lg); overflow: hidden; scroll-snap-align: center;
  box-shadow: var(--sh-2); transition: transform var(--d-2) var(--e-out); }
.gallery-strip__item:hover { transform: translateY(-6px); }
.gallery-strip__item img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.gallery-strip__item span { position:absolute; left:16px; right:16px; bottom:16px; z-index:2;
  color:#fff; font-size: var(--t-sm); font-weight:600; text-shadow: 0 2px 8px rgba(0,0,0,.5); }
.gallery-strip__item::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.55)); }

.svc-card__img .kitchenscene, .svc-card__img.photo img { transition: transform var(--d-4) var(--e-out); }
.svc-card:hover .svc-card__img .kitchenscene, .svc-card:hover .svc-card__img.photo img { transform: scale(1.06); }


.btn-b {
  --bg: var(--charcoal); --fg: #fff; --bd: var(--charcoal);
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-3);
  min-height: 54px; padding: 15px var(--s-6);
  border: 1.5px solid var(--bd); border-radius: var(--r-pill);
  background: var(--bg); color: var(--fg);
  font-family: var(--sans); font-size: var(--t-sm); font-weight: 600; letter-spacing: .01em;
  text-decoration: none; cursor: pointer; touch-action: manipulation;
  transition: background-color var(--d-2) var(--e-out), border-color var(--d-2) var(--e-out),
              color var(--d-2) var(--e-out), transform var(--d-1) var(--e-out), box-shadow var(--d-2) var(--e-out);
}
.btn-b:hover { transform: translateY(-2px); box-shadow: var(--sh-2); }
.btn-b:active { transform: translateY(0); }
.btn-b svg { width: 18px; height: 18px; flex: none; transition: transform var(--d-2) var(--e-out); }
.btn-b:hover svg { transform: translateX(4px); }

.btn-b--brass { --bg: var(--brass-deep); --bd: var(--brass-deep); --fg:#fff;
  background-image: linear-gradient(155deg, var(--brass) 0%, var(--brass-deep) 62%); }
.btn-b--brass:hover { box-shadow: var(--sh-brass); background-image: linear-gradient(155deg, var(--brass-soft) 0%, var(--brass) 62%); }
.btn-b--ghost { --bg: transparent; --bd: var(--line-2); --fg: var(--ink); }
.btn-b--ghost:hover { --bg: var(--charcoal); --bd: var(--charcoal); --fg:#fff; }
.btn-b--glass { --bg: var(--glass); --bd: var(--glass-line); --fg: var(--ink); backdrop-filter: blur(14px) saturate(1.3); }
.btn-b--glass:hover { --bg:#fff; --bd:#fff; }
.btn-b--on-dark { --bg: transparent; --bd: rgba(255,255,255,.4); --fg:#fff; }
.btn-b--on-dark:hover { --bg:#fff; --bd:#fff; --fg: var(--charcoal); }
.btn-b--sm { min-height: 46px; padding: 11px var(--s-5); }
.btn-b--lg { min-height: 60px; padding: 18px var(--s-7); font-size: var(--t-body); }
.btn-b[disabled], .btn-b[aria-disabled="true"] { opacity: .45; pointer-events: none; }

.link-b {
  display: inline-flex; align-items: center; gap: var(--s-2);
  color: var(--brass-deep); text-decoration: none;
  font-weight: 600; font-size: var(--t-sm);
  background-image: linear-gradient(currentColor,currentColor);
  background-size: 0 1.5px; background-repeat: no-repeat; background-position: 0 100%;
  padding-block: 4px; transition: background-size var(--d-2) var(--e-out);
}
.link-b:hover { background-size: 100% 1.5px; }
.on-dark .link-b { color: var(--brass-soft); }

/* ==========================================================================
   07  HEADER / NAV
   ========================================================================== */
.topbar {
  background: var(--charcoal); color: rgba(255,255,255,.72);
  font-size: var(--t-cap);
}
.topbar__row { display: flex; align-items: center; justify-content: space-between; gap: var(--s-5); min-height: 40px; flex-wrap: wrap; }
.topbar__group { display: flex; align-items: center; gap: var(--s-5); flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,.9); text-decoration: none; display: inline-flex; align-items: center; gap: 7px; padding-block: 8px; }
.topbar a:hover { color: var(--brass-soft); }
.topbar svg { width: 14px; height: 14px; flex: none; opacity: .85; }
.topbar__promo { color: var(--brass-soft); font-weight: 600; letter-spacing: .01em; }
.topbar__note { display: none; }
@media (min-width: 992px) { .topbar__note { display: inline; } }

.header { position: sticky; top: 0; z-index: var(--z-head);
  background: rgba(248,248,246,.82); backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid transparent;
  box-shadow: inset 0 -1px 0 rgba(156,58,43,.14);
  transition: background-color var(--d-2) var(--e-out), border-color var(--d-2) var(--e-out), box-shadow var(--d-2) var(--e-out); }
.header.stuck { background: rgba(255,255,255,.9); border-bottom-color: var(--line); box-shadow: var(--sh-1), inset 0 -1px 0 rgba(156,58,43,.14); }
.header__row { display: flex; align-items: center; justify-content: space-between; gap: var(--s-5); min-height: 74px; }

.brand { display: inline-flex; align-items: center; gap: var(--s-3); text-decoration: none; }
.brand__mark { width: 64px; height: 64px; flex: none; object-fit: contain; border-radius: var(--r-xs); background: #fff; box-shadow: var(--sh-1); padding: 4px; border: 1px solid rgba(156,58,43,.16); }
.brand__mark--lg { width: 76px; height: 76px; }

.nav { display: none; }
@media (min-width: 1040px) { .nav { display: flex; align-items: center; gap: 2px; } }
.nav__link { position: relative; display: inline-flex; align-items: center; gap: 5px;
  padding: 11px 16px; min-height: 44px; border-radius: var(--r-pill);
  color: var(--ink); text-decoration: none; font-size: var(--t-sm); font-weight: 500;
  transition: background-color var(--d-1) var(--e-out); }
.nav__link:hover { background: var(--brass-tint); }
.nav__link[aria-current="true"] { color: var(--brass-deep); font-weight: 600; }
.nav__cta { display: none; }
@media (min-width: 720px) { .nav__cta { display: inline-flex; } }

.icon-btn { position: relative; width: 46px; height: 46px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--line-2); border-radius: var(--r-pill); background: transparent; color: var(--ink);
  cursor: pointer; text-decoration: none; transition: background-color var(--d-1) var(--e-out), border-color var(--d-1) var(--e-out); }
.icon-btn:hover { background: var(--brass-tint); border-color: var(--brass); }
.icon-btn svg { width: 20px; height: 20px; }
.icon-btn__n { position: absolute; top: -5px; right: -5px; min-width: 20px; height: 20px; padding: 0 5px;
  display: inline-flex; align-items: center; justify-content: center; border-radius: var(--r-pill);
  background: var(--brass-deep); color:#fff; font-size: 11px; font-weight: 700; font-variant-numeric: tabular-nums; }
.burger { display: inline-flex; }
@media (min-width: 1040px) { .burger { display: none; } }
.burger__bars { display: grid; gap: 5px; width: 20px; }
.burger__bars i { height: 2px; background: var(--ink); border-radius: 2px; }

/* drawer */
.drawer { position: fixed; inset: 0; z-index: var(--z-drawer); visibility: hidden; pointer-events: none; }
.drawer.open { visibility: visible; pointer-events: auto; }
.drawer__scrim { position:absolute; inset:0; background: rgba(30,28,24,.5); opacity:0; transition: opacity var(--d-3) var(--e-out); }
.drawer.open .drawer__scrim { opacity: 1; }
.drawer__panel { position:absolute; inset-block:0; right:0; width: min(400px, 88vw);
  background: var(--paper); padding: var(--s-5) var(--s-5) var(--s-8);
  overflow-y:auto; overscroll-behavior: contain;
  transform: translateX(100%); transition: transform var(--d-3) var(--e-out);
  padding-block-end: max(var(--s-8), env(safe-area-inset-bottom)); }
.drawer.open .drawer__panel { transform: none; }
.drawer__head { display:flex; align-items:center; justify-content: space-between; margin-bottom: var(--s-5); }
.drawer__nav { display: grid; }
.drawer__link { display:flex; align-items:center; justify-content: space-between; padding: 16px 0; min-height: 58px;
  border-bottom: 1px solid var(--line); color: var(--ink); text-decoration: none;
  font-family: var(--serif); font-size: var(--t-h5); font-weight: 600; }
.drawer__link:hover { color: var(--brass-deep); }

/* ==========================================================================
   08  HERO
   ========================================================================== */
.hero { position: relative; overflow: clip; background: var(--charcoal); color:#fff; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media video, .hero__media img { width: 100%; height: 100%; object-fit: cover; }
/* CSS kitchen fallback so the hero is never empty before a video loads */
.hero__scene { position:absolute; inset:0; z-index:0;
  background:
    radial-gradient(120% 90% at 78% 12%, rgba(156,58,43,.34), transparent 55%),
    linear-gradient(180deg, #24363d 0%, #17272d 46%, #0e1a1f 100%); }
.hero__scene::before { content:""; position:absolute; inset: 44% 0 0; z-index:1;
  background:
    repeating-linear-gradient(90deg, rgba(0,0,0,.22) 0 2px, transparent 2px 15%),
    linear-gradient(180deg, #d6dde0, #b4bfc2 60%, #98a5a9);
  box-shadow: inset 0 3px 0 rgba(255,255,255,.35); }
.hero__scene::after { content:""; position:absolute; left:0; right:0; top: 44%; height: 4%; z-index:2;
  background: linear-gradient(180deg, #eef2f3, #cfd6d8); box-shadow: 0 6px 20px rgba(0,0,0,.25); }
.hero__overlay { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,18,15,.62) 0%, rgba(20,18,15,.34) 40%, rgba(20,18,15,.72) 100%); }
.hero__inner { position: relative; z-index: 2; padding-block: clamp(80px, 11vh, 150px) clamp(88px, 12vh, 150px); }
.hero__eyebrow { color: var(--brass-soft); }
.hero h1 { max-width: 16ch; margin-bottom: var(--s-5); color: #fff; }
.hero h1 em { font-style: italic; color: var(--brass-soft); font-weight: 500; }
.hero__lead { max-width: 52ch; color: rgba(255,255,255,.86); font-size: var(--t-lead); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-6); }

/* floating feature cards */
.floaties { position: relative; z-index: 3; margin-top: clamp(-72px, -6vw, -56px); }
.floaties__grid { display: grid; gap: var(--s-3); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .floaties__grid { grid-template-columns: repeat(4, 1fr); } }
.floatie { display: flex; align-items: center; gap: var(--s-3);
  padding: var(--s-4) var(--s-5); border-radius: var(--r);
  background: var(--glass); border: 1px solid var(--glass-line);
  backdrop-filter: blur(18px) saturate(1.4); box-shadow: var(--sh-2);
  transition: transform var(--d-2) var(--e-out); }
.floatie:hover { transform: translateY(-4px); }
.floatie__ic { width: 40px; height: 40px; flex: none; border-radius: var(--r-xs);
  display: grid; place-items: center; background: var(--brass-tint); color: var(--brass-deep); }
.floatie__ic svg { width: 21px; height: 21px; }
.floatie b { display: block; font-size: var(--t-sm); font-weight: 600; color: var(--ink); }
.floatie span { font-size: var(--t-cap); color: var(--muted); }

/* ==========================================================================
   09  TRUST · ABOUT · SERVICES
   ========================================================================== */
.stats-row { display: grid; gap: var(--s-5); grid-template-columns: repeat(2,1fr); margin-bottom: var(--s-7); }
@media (min-width: 720px) { .stats-row { grid-template-columns: repeat(4,1fr); } }
.stats-row__item { text-align: center; display: grid; gap: 6px; justify-items: center; }
.stats-row__item b { font-family: var(--serif); font-size: clamp(2rem, 3vw, 2.6rem); font-weight: 700; color: var(--brass-deep); line-height: 1; }
.stats-row__item span { font-size: var(--t-sm); color: var(--body); font-weight: 500; }

.about-video__frame { position: relative; aspect-ratio: 16/9; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-3); max-width: var(--shell-wide); margin-inline: auto; }
.about-video__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.trust { display: grid; gap: var(--s-4); grid-template-columns: repeat(2,1fr); }
@media (min-width: 720px) { .trust { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1040px) { .trust { grid-template-columns: repeat(6,1fr); } }
.trust__item { text-align: center; display: grid; gap: 12px; justify-items: center; align-content: start;
  background: var(--white); border-radius: var(--r-lg); padding: var(--s-6) var(--s-4);
  box-shadow: var(--sh-1); transition: transform var(--d-2) var(--e-out), box-shadow var(--d-2) var(--e-out); }
.trust__item:hover { transform: translateY(-5px); box-shadow: var(--sh-3-warm); }
.trust__ic { width: 58px; height: 58px; display: grid; place-items: center; color: var(--brass-deep);
  background: var(--brass-tint); border-radius: 50%; }
.trust__ic svg { width: 28px; height: 28px; }
.trust__item b { font-size: var(--t-sm); font-weight: 600; color: var(--ink); font-family: var(--serif); }

/* premium partners grid (replaces the old faint slider) */
.partners-grid { display: grid; gap: var(--s-4); grid-template-columns: repeat(2,1fr); }
@media (min-width: 640px)  { .partners-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 980px)  { .partners-grid { grid-template-columns: repeat(4,1fr); } }
.partner-card { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--s-3);
  background: var(--white); border-radius: var(--r-lg); padding: var(--s-6) var(--s-4);
  box-shadow: var(--sh-1); text-decoration: none; min-height: 148px;
  transition: transform var(--d-2) var(--e-out), box-shadow var(--d-2) var(--e-out); }
.partner-card:hover { transform: translateY(-5px); box-shadow: var(--sh-3-warm); }
.partner-card__media { display: grid; place-items: center; height: 56px; width: 100%; }
.partner-card__media img { max-height: 56px; max-width: 100%; width: auto; object-fit: contain;
  filter: grayscale(1) opacity(.72); transition: filter var(--d-2); }
.partner-card:hover .partner-card__media img { filter: grayscale(0) opacity(1); }
.partner-card__name { font-size: var(--t-cap); color: var(--muted); font-weight: 600; letter-spacing: .02em; text-align: center; }

.partners-strip__item { display: inline-flex; align-items: center; height: 34px; filter: grayscale(1) opacity(.62); transition: filter var(--d-2), transform var(--d-2); }
.partners-strip__item:hover { filter: grayscale(0) opacity(1); transform: translateY(-2px); }
.partners-strip__item img { height: 100%; width: auto; max-width: 110px; object-fit: contain; }

/* partners slider — arrows + native scroll-snap track (touch swipe for free) */
.pslider { position: relative; display: flex; align-items: center; gap: var(--s-3); }
.pslider__track { display: flex; gap: clamp(28px,4vw,56px); overflow-x: auto; scroll-snap-type: x proximity;
  scrollbar-width: none; padding: 6px 2px; flex: 1; scroll-behavior: smooth; }
.pslider__track::-webkit-scrollbar { display: none; }
.pslider__slide { flex: none; scroll-snap-align: start; display: flex; align-items: center; }
.pslider__arrow { width: 42px; height: 42px; flex: none; border-radius: var(--r-pill); border: 1.5px solid var(--line-2);
  background: var(--white); color: var(--ink); cursor: pointer; display: grid; place-items: center;
  transition: background-color var(--d-1) var(--e-out); }
.pslider__arrow:hover { background: var(--brass-tint); border-color: var(--brass); }
.pslider__arrow svg { width: 18px; height: 18px; }
@media (max-width: 560px) { .pslider__arrow { width: 34px; height: 34px; } }

.split { display: grid; gap: var(--s-7); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: clamp(48px,6vw,96px); } .split--flip .split__media { order: 2; } }
.split__media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-3); aspect-ratio: 4/5; }
.split__media--wide { aspect-ratio: 5/4; }
.split__badge { position: absolute; left: var(--s-5); bottom: var(--s-5); z-index: 4;
  display: flex; align-items: center; gap: var(--s-3); padding: var(--s-3) var(--s-4);
  border-radius: var(--r); background: var(--glass); border: 1px solid var(--glass-line);
  backdrop-filter: blur(16px); box-shadow: var(--sh-1); }
.split__badge b { font-family: var(--serif); font-size: 1.4rem; color: var(--ink); }
.split__badge span { font-size: var(--t-cap); color: var(--muted); line-height: 1.3; }
.about-list { list-style: none; margin: var(--s-5) 0 0; padding: 0; display: grid; gap: var(--s-3); }
.about-list li { display: flex; gap: var(--s-3); align-items: flex-start; font-size: var(--t-sm); }
.about-list svg { width: 22px; height: 22px; flex: none; color: var(--brass-deep); margin-top: 1px; }

.svc-grid { display: grid; gap: var(--s-5); }
@media (min-width: 640px)  { .svc-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px)  { .svc-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1200px) { .svc-grid { grid-template-columns: repeat(5,1fr); } }
.svc-card { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--white);
  box-shadow: var(--sh-1); transition: transform var(--d-2) var(--e-out), box-shadow var(--d-2) var(--e-out); }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--sh-3-warm); }
.svc-card__img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.svc-card__ic { position: absolute; left: var(--s-4); top: var(--s-4); z-index: 3;
  width: 46px; height: 46px; border-radius: var(--r-xs); display: grid; place-items: center;
  background: var(--glass); border: 1px solid var(--glass-line); backdrop-filter: blur(12px); color: var(--brass-deep); }
.svc-card__ic svg { width: 24px; height: 24px; }
.svc-card__body { padding: var(--s-5); }
.svc-card__body h3 { font-size: var(--t-h5); margin-bottom: 8px; }
.svc-card__body p { font-size: var(--t-sm); color: var(--body); margin: 0; }

/* icon-forward service card (no photo) with orange arrow-link footer */
.svc2-grid { display: grid; gap: var(--s-5); }
@media (min-width: 640px) { .svc2-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .svc2-grid { grid-template-columns: repeat(3,1fr); } }
.svc2-card { background: var(--white); border-radius: var(--r-lg); padding: var(--s-6) var(--s-5) var(--s-5);
  box-shadow: var(--sh-1); display: flex; flex-direction: column; gap: var(--s-4);
  transition: transform var(--d-2) var(--e-out), box-shadow var(--d-2) var(--e-out); }
.svc2-card:hover { transform: translateY(-6px); box-shadow: var(--sh-3-warm); }
.svc2-card__ic { width: 56px; height: 56px; border-radius: var(--r); background: var(--brass-tint);
  display: grid; place-items: center; color: var(--brass-deep); }
.svc2-card__ic svg { width: 28px; height: 28px; }
.svc2-card h3 { font-size: var(--t-h5); margin: 0; }
.svc2-card p { font-size: var(--t-sm); color: var(--body); margin: 0; flex: 1; }
.svc2-card__go { width: 44px; height: 44px; border-radius: var(--r-xs); background: var(--brass-deep); color: #fff;
  display: grid; place-items: center; transition: background-color var(--d-2) var(--e-out), transform var(--d-2) var(--e-out); }
.svc2-card__go svg { width: 18px; height: 18px; }
.svc2-card:hover .svc2-card__go { background: var(--ink); transform: translateX(3px); }
.svc2-card--photo { position: relative; padding: 0; min-height: 260px; overflow: hidden; }
.svc2-card--photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* generated kitchen "photo" — warm scene, coherent with door renders */
.kitchenscene { position: absolute; inset: 0; background:
  radial-gradient(90% 70% at 72% 20%, rgba(156,58,43,.26), transparent 60%),
  linear-gradient(180deg, #eef3f4 0%, #dde6e8 52%, #ccd8db 100%); }
.kitchenscene::before { content:""; position:absolute; inset: 55% 8% 12% 8%;
  border-radius: 6px; background: var(--ks, #8aa0a6);
  box-shadow: inset 0 2px 0 rgba(255,255,255,.25), 0 10px 24px -10px rgba(0,0,0,.4);
  background-image: repeating-linear-gradient(90deg, rgba(0,0,0,.14) 0 1px, transparent 1px 14%); }
.kitchenscene::after { content:""; position:absolute; left:8%; right:8%; top: 50%; height: 5%;
  border-radius: 4px; background: linear-gradient(180deg,#f2f6f7,#d6dee0); box-shadow: 0 6px 16px rgba(0,0,0,.2); }
.ks-white    { --ks:#eae4d8; } .ks-gray { --ks:#a6a9a6; } .ks-espresso { --ks:#3a2a1e; }
.ks-sapphire { --ks:#2e415c; } .ks-green { --ks:#4c5a4a; } .ks-caramelo { --ks:#b27e48; }

/* video showcase */
.showcase { position: relative; border-radius: var(--r-xl); overflow: hidden; min-height: clamp(340px, 46vw, 560px);
  display: grid; place-items: center; text-align: center; color:#fff; isolation: isolate; }
.showcase__media { position:absolute; inset:0; z-index:0; }
.showcase__media video, .showcase__media img { width:100%; height:100%; object-fit: cover; }
.showcase__scene { position:absolute; inset:0; z-index:0; background:
  radial-gradient(80% 80% at 30% 20%, rgba(156,58,43,.4), transparent 60%),
  linear-gradient(140deg,#22343a,#101c21); }
.showcase__ov { position:absolute; inset:0; z-index:1; background: rgba(24,20,16,.5); }
.showcase__in { position: relative; z-index: 2; padding: var(--s-7); max-width: 640px; }
.play { width: 78px; height: 78px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.6);
  background: var(--glass-dark); backdrop-filter: blur(8px); color:#fff; cursor: pointer;
  display: grid; place-items: center; margin: 0 auto var(--s-5); transition: transform var(--d-2) var(--e-spring), background-color var(--d-2) var(--e-out); }
.play:hover { transform: scale(1.08); background: var(--brass-deep); }
.play svg { width: 26px; height: 26px; margin-left: 3px; }

/* ==========================================================================
   10  COLLECTIONS
   ========================================================================== */
.coll-grid { display: grid; gap: var(--s-4); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px)  { .coll-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .coll-grid { grid-template-columns: repeat(4, 1fr); } }

/* materials / countertop swatch grid */
.materials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; }
@media (min-width: 620px)  { .materials-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  { .materials-grid { grid-template-columns: repeat(5, 1fr); } }
.materials-grid__item { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--charcoal-2); }
.materials-grid__item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--d-3) var(--e-out); }
.materials-grid__item:hover img { transform: scale(1.08); }

/* premium filterable products grid (products/index page) */
.pcat-tabs { display: flex; gap: var(--s-3); flex-wrap: wrap; margin-bottom: var(--s-6); }
.pcat-tabs__btn { font-family: var(--sans); font-size: var(--t-sm); font-weight: 600; padding: 10px 22px;
  border-radius: var(--r-pill); border: 1.5px solid var(--line-2); background: var(--white); color: var(--body);
  cursor: pointer; transition: background-color var(--d-2), border-color var(--d-2), color var(--d-2); }
.pcat-tabs__btn:hover { border-color: var(--brass); }
.pcat-tabs__btn[aria-pressed="true"] { background: var(--brass-deep); border-color: var(--brass-deep); color: #fff; }
.pcat-grid { display: grid; gap: var(--s-5); grid-template-columns: repeat(2,1fr); }
@media (min-width: 640px)  { .pcat-grid { grid-template-columns: repeat(3,1fr); } }
.pcat-card { position: relative; display: block; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-1); text-decoration: none; aspect-ratio: 4/5;
  transition: transform var(--d-2) var(--e-out), box-shadow var(--d-2) var(--e-out); }
.pcat-card:hover { transform: translateY(-6px); box-shadow: var(--sh-3-warm); }
.pcat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--d-3) var(--e-out); }
.pcat-card:hover img { transform: scale(1.06); }
.pcat-card__badge { position: absolute; top: var(--s-4); left: var(--s-4); z-index: 2;
  background: var(--white); color: var(--brass-deep); font-size: var(--t-cap); font-weight: 700;
  letter-spacing: .03em; text-transform: uppercase; padding: 5px 14px; border-radius: var(--r-pill); }
.pcat-card__foot { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; display: flex; align-items: flex-end;
  justify-content: space-between; padding: var(--s-4); background: linear-gradient(0deg, rgba(20,18,15,.75), transparent); }
.pcat-card__name { color: #fff; font-family: var(--serif); font-size: var(--t-h6); font-weight: 600; }
.pcat-card__go { width: 40px; height: 40px; flex: none; border-radius: var(--r-xs); background: var(--brass-deep);
  color: #fff; display: grid; place-items: center; transition: background-color var(--d-2), transform var(--d-2); }
.pcat-card__go svg { width: 18px; height: 18px; }
.pcat-card:hover .pcat-card__go { background: #fff; color: var(--brass-deep); transform: scale(1.08); }
.coll { position: relative; display: block; border-radius: var(--r-lg); overflow: hidden;
  background: var(--white); box-shadow: var(--sh-1); text-decoration: none; color: inherit;
  transition: transform var(--d-2) var(--e-out), box-shadow var(--d-2) var(--e-out); }
.coll:hover { transform: translateY(-6px); box-shadow: var(--sh-3-warm); }
.coll__door { position: relative; padding: var(--s-6) var(--s-6) 0; }
.coll__door .door { box-shadow: var(--sh-1); transition: transform var(--d-3) var(--e-out); }
.coll:hover .coll__door .door { transform: translateY(-4px) scale(1.02); }
.coll__body { padding: var(--s-5); display: flex; align-items: center; justify-content: space-between; gap: var(--s-3); }
.coll__name { font-family: var(--serif); font-size: var(--t-h5); font-weight: 600; }
.coll__sub { font-size: var(--t-cap); color: var(--muted); margin-top: 2px; }
.coll__go { width: 42px; height: 42px; flex: none; border-radius: var(--r-pill);
  display: grid; place-items: center; background: var(--brass-tint); color: var(--brass-deep);
  transition: background-color var(--d-2) var(--e-out), color var(--d-2) var(--e-out); }
.coll__go svg { width: 18px; height: 18px; transition: transform var(--d-2) var(--e-out); }
.coll:hover .coll__go { background: var(--brass-deep); color:#fff; }
.coll:hover .coll__go svg { transform: translateX(3px); }

/* shop-by-category cards */
.cat-grid { display: grid; gap: var(--s-4); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px)  { .cat-grid { grid-template-columns: repeat(4, 1fr); } }
.cat-card { position: relative; display: block; border-radius: var(--r-lg); overflow: hidden;
  background: var(--white); box-shadow: var(--sh-1); text-decoration: none; color: inherit;
  transition: transform var(--d-2) var(--e-out), box-shadow var(--d-2) var(--e-out); }
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--sh-3-warm); }
.cat-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.cat-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--d-3) var(--e-out); }
.cat-card:hover .cat-card__media img { transform: scale(1.06); }
.cat-card__body { padding: var(--s-4) var(--s-5); }
.cat-card__name { display: block; font-family: var(--serif); font-size: var(--t-h6); font-weight: 600; }
.cat-card__count { display: block; font-size: var(--t-cap); color: var(--muted); margin-top: 2px; }

/* generic product grid — used for any product type, cabinets or otherwise */
.gp-grid { display: grid; gap: var(--s-5); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px)  { .gp-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .gp-grid { grid-template-columns: repeat(4, 1fr); } }
.gp-card { position: relative; display: block; border-radius: var(--r-lg); overflow: hidden;
  background: var(--white); box-shadow: var(--sh-1); text-decoration: none; color: inherit;
  transition: transform var(--d-2) var(--e-out), box-shadow var(--d-2) var(--e-out); }
.gp-card:hover { transform: translateY(-6px); box-shadow: var(--sh-3-warm); }
.gp-card__media { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--brass-tint); }
.gp-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--d-3) var(--e-out); }
.gp-card:hover .gp-card__media img { transform: scale(1.06); }
.gp-card__body { padding: var(--s-4) var(--s-5); }
.gp-card__name { display: block; font-family: var(--serif); font-size: var(--t-h6); font-weight: 600; }
.gp-card__meta { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; gap: var(--s-3); }
.gp-card__dims { font-size: var(--t-cap); color: var(--muted); }
.gp-card__price { font-family: var(--serif); font-weight: 600; color: var(--brass-deep); }

/* ==========================================================================
   10b BLOG
   ========================================================================== */
.blog-grid { display: grid; gap: var(--s-5); grid-template-columns: repeat(1, 1fr); }
@media (min-width: 720px)  { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blogcard { display: flex; flex-direction: column; border-radius: var(--r-lg); overflow: hidden;
  background: var(--white); box-shadow: var(--sh-1);
  transition: transform var(--d-2) var(--e-out), box-shadow var(--d-2) var(--e-out); }
.blogcard:hover { transform: translateY(-6px); box-shadow: var(--sh-3); }
.blogcard__cover { position: relative; height: 190px; overflow: hidden; }
.blogcard__tag { position: absolute; top: var(--s-4); left: var(--s-4); z-index: 1; background: var(--white);
  color: var(--brass-deep); font-size: var(--t-cap); font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; padding: 6px 14px; border-radius: var(--r-pill); }
.blogcard__body { padding: var(--s-5); display: flex; flex-direction: column; gap: var(--s-2); flex: 1; }
.blogcard__meta { font-size: var(--t-cap); color: var(--muted); }
.blogcard__title { font-family: var(--serif); font-size: var(--t-h5); font-weight: 600; color: var(--ink); line-height: 1.3; }
.blogcard__excerpt { font-size: var(--t-sm); color: var(--body); line-height: 1.6; flex: 1; }
.blogcard__more { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--brass-deep);
  margin-top: var(--s-2); }
.blogcard__more svg { width: 14px; height: 14px; transition: transform var(--d-2) var(--e-out); }
.blogcard:hover .blogcard__more svg { transform: translateX(3px); }

/* ==========================================================================
   11  WHY-CHOOSE
   ========================================================================== */
.why-grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
@media (min-width: 560px)  { .why-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px)  { .why-grid { grid-template-columns: repeat(4,1fr); } }
.why { background: var(--white); padding: var(--s-6) var(--s-5); display: grid; gap: 10px; align-content: start;
  transition: background-color var(--d-2) var(--e-out); }
.why:hover { background: var(--brass-tint); }
.why__ic { width: 42px; height: 42px; color: var(--brass-deep); }
.why__ic svg { width: 30px; height: 30px; }
.why h3 { font-size: var(--t-h6); font-family: var(--serif); margin: 0; }
.why p { font-size: var(--t-cap); color: var(--body); margin: 0; }

/* ==========================================================================
   12  PROCESS TIMELINE
   ========================================================================== */
.timeline { display: grid; gap: var(--s-4); }
@media (min-width: 760px) { .timeline { grid-template-columns: repeat(6, 1fr); gap: 0; } }
.tl { position: relative; text-align: center; padding: var(--s-5) var(--s-3); }
@media (min-width: 760px) { .tl:not(:last-child)::after { content:""; position:absolute; top: 46px; right: -1px; width: 100%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--brass-soft) 0 8px, transparent 8px 16px); z-index:0; } }
.tl__n { position: relative; z-index: 1; width: 64px; height: 64px; margin: 0 auto var(--s-4);
  border-radius: 50%; display: grid; place-items: center; background: var(--white);
  border: 2px solid var(--brass); color: var(--brass-deep);
  font-family: var(--serif); font-size: 1.3rem; font-weight: 700; box-shadow: var(--sh-1); }
.tl h3 { font-size: var(--t-h6); font-family: var(--serif); margin: 0 0 4px; }

/* premium process cards (home page) */
.process-rail { position: relative; }
.process-rail::before { content: ""; position: absolute; top: 44px; left: 5%; right: 5%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--brass-soft) 8%, var(--brass-soft) 92%, transparent);
  z-index: 0; display: none; }
@media (min-width: 900px) { .process-rail::before { display: block; } }
.process-grid { position: relative; z-index: 1; display: grid; gap: var(--s-5); grid-template-columns: repeat(2,1fr); }
@media (min-width: 640px)  { .process-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 900px)  { .process-grid { grid-template-columns: repeat(6,1fr); } }
.process-card { position: relative; background: var(--white); border-radius: var(--r-lg); padding: var(--s-6) var(--s-4) var(--s-5);
  box-shadow: var(--sh-1); text-align: center; overflow: hidden;
  transition: transform var(--d-2) var(--e-out), box-shadow var(--d-2) var(--e-out); }
.process-card:hover { transform: translateY(-6px); box-shadow: var(--sh-3-warm); }
.process-card__n { position: absolute; top: -6px; right: 2px; font-family: var(--serif); font-weight: 700;
  font-size: 3.6rem; line-height: 1; color: var(--brass-tint); z-index: 0; user-select: none; }
.process-card__ic { position: relative; z-index: 1; width: 52px; height: 52px; margin: 0 auto var(--s-4);
  border-radius: 50%; display: grid; place-items: center; background: var(--charcoal); color: var(--brass-soft);
  box-shadow: var(--sh-1); }
.process-card__ic svg { width: 24px; height: 24px; }
.process-card h3 { position: relative; z-index: 1; font-size: var(--t-h6); font-family: var(--serif); margin: 0 0 6px; }
.process-card p { position: relative; z-index: 1; font-size: var(--t-cap); color: var(--body); margin: 0; }
.tl p { font-size: var(--t-cap); color: var(--body); margin: 0 auto; max-width: 22ch; }
.section--dark .tl h3 { color: #fff; }
.section--dark .tl p { color: rgba(255,255,255,.66); }
.section--dark .tl__n { background: var(--charcoal-2); }

/* ==========================================================================
   13  TESTIMONIALS
   ========================================================================== */
.tst { position: relative; }
.tst__track { display: grid; grid-auto-flow: column; grid-auto-columns: 100%; overflow-x: auto;
  scroll-snap-type: x mandatory; scrollbar-width: none; gap: 0; }
.tst__track::-webkit-scrollbar { display: none; }
.tst__slide { scroll-snap-align: center; padding: var(--s-2); display: flex; justify-content: center; }
.tst__card { max-width: 660px; margin: 0 auto; text-align: center; padding: clamp(22px,2.6vw,34px);
  background: var(--white); border-radius: var(--r-xl); box-shadow: var(--sh-2); }
.tst__stars { display: inline-flex; gap: 3px; color: var(--star); margin-bottom: var(--s-3); }
.tst__stars svg { width: 17px; height: 17px; }
.tst__quote { font-family: var(--serif); font-size: clamp(1.05rem, 1vw + 0.85rem, 1.4rem);
  line-height: 1.38; color: var(--ink); margin: 0 auto var(--s-4); max-width: 32ch; font-weight: 500; }
.tst__by { display: inline-flex; align-items: center; gap: var(--s-3); }
.tst__ava { width: 40px; height: 40px; border-radius: 50%; flex: none; overflow: hidden;
  background: var(--brass-tint); display: grid; place-items: center; color: var(--brass-deep);
  font-family: var(--serif); font-weight: 700; font-size: 1rem; }
.tst__who b { display: block; color: var(--ink); font-weight: 600; }
.tst__who span { font-size: var(--t-cap); color: var(--muted); }
.tst__nav { display: flex; align-items: center; justify-content: center; gap: var(--s-4); margin-top: var(--s-4); }
.tst__dots { display: flex; gap: 8px; }
.tst__dot { width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0; background: var(--line-2); cursor: pointer;
  transition: width var(--d-2) var(--e-out), background-color var(--d-2) var(--e-out); }
.tst__dot[aria-current="true"] { width: 26px; border-radius: var(--r-pill); background: var(--brass-deep); }
.tst__arrow { width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--line-2);
  background: var(--white); color: var(--ink); cursor: pointer; display: grid; place-items: center;
  transition: background-color var(--d-1) var(--e-out); }
.tst__arrow:hover { background: var(--brass-tint); border-color: var(--brass); }
.tst__arrow svg { width: 20px; height: 20px; }

/* ==========================================================================
   14  QUOTE FORM / CONTACT
   ========================================================================== */
.quote-split { display: grid; gap: var(--s-7); align-items: stretch; }
@media (min-width: 940px) { .quote-split { grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: 0;
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-3); } }
.quote-visual { position: relative; min-height: 320px; overflow: hidden; }
.quote-visual__in { position: absolute; inset: 0; z-index: 2; padding: clamp(28px,4vw,56px);
  display: flex; flex-direction: column; justify-content: flex-end; color:#fff;
  background: linear-gradient(180deg, rgba(20,18,15,.15), rgba(20,18,15,.66)); }
.quote-visual h3 { color:#fff; font-size: var(--t-h3); }
.quote-form { background: var(--white); padding: clamp(28px,4vw,56px); }

.field { display: grid; gap: 8px; margin-bottom: var(--s-4); }
.field__label { font-size: var(--t-cap); font-weight: 600; color: var(--ink); display: flex; gap: 5px; align-items: center; }
.field__req { color: var(--err); }
.field__ctl { width: 100%; min-height: 52px; padding: 14px var(--s-4);
  background: var(--paper); border: 1.5px solid var(--line-2); border-radius: var(--r-sm);
  color: var(--ink); font-family: var(--sans); font-size: var(--t-body);
  transition: border-color var(--d-1) var(--e-out), background-color var(--d-1) var(--e-out), box-shadow var(--d-1) var(--e-out); }
.field__ctl::placeholder { color: #A9A49A; }
.field__ctl:hover { border-color: var(--muted); }
.field__ctl:focus { border-color: var(--brass); background:#fff; outline: none; box-shadow: 0 0 0 3px rgba(156,58,43,.18); }
textarea.field__ctl { min-height: 120px; resize: vertical; line-height: 1.6; }
select.field__ctl { appearance: none; padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%23782B25' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; }
.field__help { font-size: 12px; color: var(--muted); }
.field__err { display: none; align-items: center; gap: 6px; font-size: 12px; color: var(--err); font-weight: 500; }
.field__err svg { width: 13px; height: 13px; }
.field.invalid .field__ctl { border-color: var(--err); background: #FBF3F1; }
.field.invalid .field__err { display: flex; }
.field-grid { display: grid; gap: 0 var(--s-4); }
@media (min-width: 560px) { .field-grid--2 { grid-template-columns: 1fr 1fr; } }

.dropzone { border: 1.5px dashed var(--line-2); border-radius: var(--r-sm); padding: var(--s-5);
  text-align: center; background: var(--paper); cursor: pointer; transition: border-color var(--d-1) var(--e-out), background-color var(--d-1) var(--e-out); }
.dropzone:hover { border-color: var(--brass); background: var(--brass-tint); }
.dropzone svg { width: 26px; height: 26px; color: var(--brass-deep); margin: 0 auto 8px; }
.dropzone b { font-size: var(--t-sm); color: var(--ink); }
.dropzone span { font-size: 12px; color: var(--muted); display: block; }
.dropzone__names { margin-top: 10px; font-size: 12px; color: var(--brass-deep); font-weight: 600; }

.form-status { display: none; gap: var(--s-3); align-items: flex-start; margin-top: var(--s-4);
  padding: var(--s-4); border-radius: var(--r-sm); background: #EEF4EF; border-left: 3px solid var(--ok); font-size: var(--t-sm); }
.form-status.show { display: flex; }
.form-status svg { width: 20px; height: 20px; color: var(--ok); flex: none; margin-top: 2px; }

.info-cards { display: grid; gap: var(--s-4); }
@media (min-width: 560px) { .info-cards { grid-template-columns: repeat(2,1fr); } }
.info-card { padding: var(--s-5); border-radius: var(--r); background: var(--white); box-shadow: var(--sh-1);
  display: flex; gap: var(--s-4); align-items: flex-start; }
.info-card__ic { width: 46px; height: 46px; flex: none; border-radius: var(--r-xs); display: grid; place-items: center;
  background: var(--brass-tint); color: var(--brass-deep); }
.info-card__ic svg { width: 22px; height: 22px; }
.info-card b { display: block; font-family: var(--serif); font-size: var(--t-h6); color: var(--ink); margin-bottom: 3px; }
.info-card p, .info-card a { font-size: var(--t-sm); color: var(--body); text-decoration: none; margin: 0; }
.info-card a:hover { color: var(--brass-deep); }

.map-frame { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-1); aspect-ratio: 16/8; background: var(--white); }
.map-frame svg { width: 100%; height: 100%; }

/* ==========================================================================
   15  CTA BANNER + FOOTER
   ========================================================================== */
.cta-banner { position: relative; border-radius: var(--r-xl); overflow: hidden; padding: clamp(48px,7vw,104px) var(--gutter);
  text-align: center; color:#fff; isolation: isolate; }
.cta-banner__scene { position:absolute; inset:0; z-index:0; background:
  radial-gradient(90% 90% at 50% 0%, rgba(156,58,43,.4), transparent 60%),
  linear-gradient(160deg, #22343a, #101c21); }
.cta-banner__ov { position:absolute; inset:0; z-index:1; background: rgba(24,20,16,.35); }
.cta-banner__in { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.cta-banner h2 { color:#fff; }
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: center; margin-top: var(--s-6); }

.footer { background: var(--charcoal); color: rgba(255,255,255,.68); }
.footer__top { display: grid; gap: var(--s-7); padding-block: var(--s-9); }
@media (min-width: 900px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: var(--s-6); } }
.footer h4 { color:#fff; font-family: var(--serif); font-size: var(--t-h6); margin-bottom: var(--s-4); }
.footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.footer__links a { display: block; padding: 8px 0; min-height: 40px; color: rgba(255,255,255,.68); text-decoration: none; font-size: var(--t-sm);
  transition: color var(--d-1) var(--e-out), padding-left var(--d-2) var(--e-out); }
.footer__links a:hover { color: var(--brass-soft); padding-left: 6px; }
.footer__blurb { font-size: var(--t-sm); max-width: 40ch; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: var(--s-5);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s-4); font-size: 12px; }
.footer__bottom a { color: rgba(255,255,255,.68); text-decoration: none; }
.footer__bottom a:hover { color: var(--brass-soft); }
.social { display: flex; gap: var(--s-2); }
.social a { width: 44px; height: 44px; border-radius: var(--r-pill); display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.72);
  transition: background-color var(--d-1) var(--e-out), color var(--d-1) var(--e-out); }
.social a:hover { background: var(--brass-deep); color:#fff; border-color: var(--brass-deep); }
.social svg { width: 18px; height: 18px; }
.newsletter { display: flex; gap: var(--s-2); margin-top: var(--s-4); }
.newsletter input { flex: 1; min-width: 0; min-height: 50px; padding: 13px var(--s-4);
  background: var(--charcoal-2); border: 1px solid rgba(255,255,255,.16); border-radius: var(--r-pill); color:#fff; font-size: var(--t-sm); }
.newsletter input::placeholder { color: rgba(255,255,255,.42); }
.newsletter input:focus { border-color: var(--brass); outline: none; }

/* ==========================================================================
   16  SHOP
   ========================================================================== */
.page-hero { position: relative; overflow: clip; color:#fff; isolation: isolate; }
.page-hero__scene { position:absolute; inset:0; z-index:0; background:
  radial-gradient(90% 90% at 78% 10%, rgba(156,58,43,.34), transparent 58%),
  linear-gradient(160deg,#22343a,#16242a); }
.page-hero__ov { position:absolute; inset:0; z-index:1; background: rgba(24,20,16,.42); }
.page-hero__in { position: relative; z-index:2; padding-block: clamp(56px,9vw,120px); }
.crumbs { display: flex; align-items: center; gap: var(--s-2); flex-wrap: wrap; font-size: var(--t-cap);
  color: rgba(255,255,255,.72); margin-bottom: var(--s-4); }
.crumbs a { color: rgba(255,255,255,.72); text-decoration: none; }
.crumbs a:hover { color: var(--brass-soft); }
.crumbs span[aria-current] { color: var(--brass-soft); }

.shop { display: grid; gap: var(--s-7); align-items: start; }
@media (min-width: 992px) { .shop { grid-template-columns: 272px minmax(0,1fr); gap: var(--s-8); } }
.filters { display: grid; gap: var(--s-6); }
@media (min-width: 992px) { .filters { position: sticky; top: 100px; } }
.filter__title { font-family: var(--serif); font-size: var(--t-h6); padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--line); margin-bottom: var(--s-3); }
.filter__opts { display: grid; gap: 2px; }
.opt { display: flex; align-items: center; gap: var(--s-3); min-height: 44px; padding: 8px 10px; margin-inline: -10px;
  cursor: pointer; font-size: var(--t-sm); color: var(--ink); border-radius: var(--r-xs);
  transition: background-color var(--d-1) var(--e-out); }
.opt:hover { background: var(--brass-tint); }
.opt input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.opt__box { width: 19px; height: 19px; flex: none; border: 1.5px solid var(--muted); border-radius: 5px;
  display: grid; place-items: center; background:#fff; transition: background-color var(--d-1), border-color var(--d-1); }
.opt__box svg { width: 12px; height: 12px; color:#fff; opacity: 0; }
.opt input:checked + .opt__box { background: var(--brass-deep); border-color: var(--brass-deep); }
.opt input:checked + .opt__box svg { opacity: 1; }
.opt input:focus-visible + .opt__box { outline: 3px solid var(--brass-deep); outline-offset: 2px; }
.opt__n { margin-left: auto; font-size: 12px; color: var(--muted); }
.opt__sw { margin-left: 2px; }
.opt__box--radio { border-radius: 50%; position: relative; }
.opt__box--radio::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #fff; opacity: 0; transition: opacity var(--d-1); }
.opt input:checked + .opt__box--radio::after { opacity: 1; }

.shop-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s-4);
  padding-bottom: var(--s-5); border-bottom: 1px solid var(--line); margin-bottom: var(--s-6); }
.shop-count { font-size: var(--t-sm); color: var(--muted); }
.shop-count b { color: var(--ink); }
.shop-tools { display: flex; align-items: center; gap: var(--s-3); flex-wrap: wrap; }
.search { position: relative; display: flex; align-items: center; }
.search svg { position: absolute; left: 14px; width: 17px; height: 17px; color: var(--muted); pointer-events: none; }
.search input { min-height: 48px; min-width: 220px; padding: 12px var(--s-4) 12px 42px;
  background: var(--white); border: 1.5px solid var(--line-2); border-radius: var(--r-pill); font-size: var(--t-sm); color: var(--ink); }
.search input:focus { border-color: var(--brass); outline: none; }
.sortsel { min-height: 48px; padding: 12px 42px 12px var(--s-4); border-radius: var(--r-pill);
  background-color: var(--white); border: 1.5px solid var(--line-2); font-size: var(--t-sm); color: var(--ink);
  appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%23782B25' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; }

.prod-grid { display: grid; gap: var(--s-5); grid-template-columns: repeat(2,1fr); }
@media (min-width: 700px)  { .prod-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1100px) { .prod-grid { grid-template-columns: repeat(3,1fr); } }
.prod { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--white);
  box-shadow: var(--sh-1); display: flex; flex-direction: column;
  transition: transform var(--d-2) var(--e-out), box-shadow var(--d-2) var(--e-out); }
.prod:hover { transform: translateY(-6px); box-shadow: var(--sh-3-warm); }
.prod__media { position: relative; padding: var(--s-6) var(--s-6) 0; }
.prod__media .door { box-shadow: var(--sh-1); transition: transform var(--d-3) var(--e-out); }
.prod:hover .prod__media .door { transform: scale(1.03); }
.prod__badge { position: absolute; top: var(--s-4); left: var(--s-4); z-index: 3;
  padding: 5px 11px; border-radius: var(--r-pill); background: var(--brass-deep); color:#fff;
  font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.prod__quick { position: absolute; top: var(--s-4); right: var(--s-4); z-index: 3;
  width: 42px; height: 42px; border-radius: var(--r-pill); border: 0; cursor: pointer;
  background: var(--glass); border: 1px solid var(--glass-line); backdrop-filter: blur(12px);
  color: var(--ink); display: grid; place-items: center; opacity: 0; transform: translateY(-6px);
  transition: opacity var(--d-2) var(--e-out), transform var(--d-2) var(--e-out), background-color var(--d-1); }
.prod:hover .prod__quick, .prod__quick:focus-visible { opacity: 1; transform: none; }
.prod__quick:hover { background:#fff; }
.prod__quick svg { width: 19px; height: 19px; }
.prod__body { padding: var(--s-5); display: flex; flex-direction: column; gap: 6px; flex: 1; }
.prod__cat { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--brass-deep); font-weight: 600; }
.prod__cat--muted { color: var(--muted); text-transform: none; letter-spacing: 0; font-weight: 500; font-size: var(--t-cap); }
.prod__name { font-family: var(--serif); font-size: var(--t-h5); font-weight: 600; }
.prod__name a { color: inherit; text-decoration: none; }
.prod__name a:hover { color: var(--brass-deep); }
.prod__sku { font-size: 12px; color: var(--muted); font-variant-numeric: tabular-nums; }
.prod__foot { margin-top: auto; padding-top: var(--s-4); display: flex; align-items: center; justify-content: space-between; gap: var(--s-3); }
.prod__price { font-family: var(--serif); font-size: 1.4rem; color: var(--ink); font-variant-numeric: tabular-nums; }
.prod__price em { font-style: normal; font-size: 12px; color: var(--muted); font-family: var(--sans); }
.prod__add { border: 1.5px solid var(--charcoal); background: var(--charcoal); color:#fff; border-radius: var(--r-pill);
  min-height: 44px; padding: 10px var(--s-4); font-size: var(--t-cap); font-weight: 600; cursor: pointer; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 7px; transition: background-color var(--d-1), transform var(--d-1); text-decoration: none; }
.prod__add:hover { background: var(--brass-deep); border-color: var(--brass-deep); }
.prod__add:active { transform: scale(.97); }
.prod__add svg { width: 16px; height: 16px; }
.prod__add.added { background: var(--ok); border-color: var(--ok); }

.empty { grid-column: 1/-1; text-align: center; padding: var(--s-9) var(--s-5);
  border: 1.5px dashed var(--line-2); border-radius: var(--r-lg); display: none; }
.empty.show { display: block; }

/* quick-view / product modal */
.qv { position: fixed; inset: 0; z-index: var(--z-modal); display: grid; place-items: center; padding: var(--gutter);
  background: rgba(30,26,20,.6); backdrop-filter: blur(5px); opacity: 0; visibility: hidden; transition: opacity var(--d-3), visibility var(--d-3); }
.qv.open { opacity: 1; visibility: visible; }
.qv__card { position: relative; width: min(880px, 100%); max-height: 88vh; overflow-y: auto;
  background: var(--paper); border-radius: var(--r-xl); box-shadow: var(--sh-3);
  transform: scale(.96); transition: transform var(--d-3) var(--e-spring); }
.qv.open .qv__card { transform: none; }
.qv__grid { display: grid; }
@media (min-width: 720px) { .qv__grid { grid-template-columns: 1fr 1fr; } }
.qv__media { padding: var(--s-7); background: var(--brass-tint); display: grid; place-items: center; }
.qv__media .door { max-width: 300px; box-shadow: var(--sh-2); }
.qv__body { padding: var(--s-6); }
.qv__close { position: absolute; top: var(--s-4); right: var(--s-4); z-index: 3; width: 44px; height: 44px;
  border-radius: var(--r-pill); border: 0; background: var(--glass); border: 1px solid var(--glass-line); backdrop-filter: blur(10px);
  color: var(--ink); cursor: pointer; display: grid; place-items: center; }
.qv__close:hover { background:#fff; }
.qv__close svg { width: 20px; height: 20px; }

/* ==========================================================================
   17  PRODUCT DETAIL
   ========================================================================== */
.pd { display: grid; gap: var(--s-7); align-items: start; }
@media (min-width: 900px) { .pd { grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr); gap: clamp(40px,5vw,80px); } }
.pd__gallery { display: grid; gap: var(--s-4); }
@media (min-width: 900px) { .pd__gallery { position: sticky; top: 100px; } }
.pd__main { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--brass-tint);
  padding: clamp(28px,4vw,56px); display: grid; place-items: center; }
.pd__main .door { max-width: 360px; box-shadow: var(--sh-2); }
.pd__zoom { position: absolute; top: var(--s-4); right: var(--s-4); z-index: 3; width: 44px; height: 44px;
  border-radius: var(--r-pill); border: 0; background: var(--glass); border: 1px solid var(--glass-line); backdrop-filter: blur(10px);
  color: var(--ink); cursor: pointer; display: grid; place-items: center; }
.pd__thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--s-3); }
.pd__thumb { border: 1.5px solid var(--line-2); border-radius: var(--r-sm); overflow: hidden; padding: var(--s-3);
  background: var(--white); cursor: pointer; aspect-ratio: 1; display: grid; place-items: center; transition: border-color var(--d-1); }
.pd__thumb[aria-current="true"] { border-color: var(--brass); }
.pd__thumb .door { aspect-ratio: 1; }

.pd__cat { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--brass-deep); font-weight: 600; }
.pd__title { font-size: var(--t-h2); margin: 8px 0 var(--s-3); }
.pd__price { display: flex; align-items: baseline; gap: var(--s-3); margin-bottom: var(--s-4); }
.pd__price b { font-family: var(--serif); font-size: 2rem; color: var(--ink); }
.pd__price em { font-style: normal; font-size: var(--t-sm); color: var(--muted); }
.pd__rating { display: inline-flex; align-items: center; gap: 8px; margin-bottom: var(--s-5); font-size: var(--t-sm); color: var(--muted); }
.pd__rating .stars { display: inline-flex; gap: 2px; color: var(--star); }
.pd__rating svg { width: 16px; height: 16px; }
.pd__desc { color: var(--body); margin-bottom: var(--s-5); }
.pd__finishes { margin-bottom: var(--s-5); }
.pd__finishes b { display: block; font-size: var(--t-cap); font-weight: 600; color: var(--ink); margin-bottom: var(--s-3); }
.pd__swatches { display: flex; flex-wrap: wrap; gap: var(--s-3); }
.pd__sw { position: relative; cursor: pointer; }
.pd__sw input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.pd__sw span { display: block; width: 40px; height: 40px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0,0,0,.12);
  transition: box-shadow var(--d-1); }
.pd__sw input:checked + span { box-shadow: inset 0 0 0 1px rgba(0,0,0,.12), 0 0 0 2px var(--paper), 0 0 0 4px var(--brass-deep); }
.pd__sw input:focus-visible + span { box-shadow: inset 0 0 0 1px rgba(0,0,0,.12), 0 0 0 2px var(--paper), 0 0 0 4px var(--brass-deep); }
.pd__qty-row { display: flex; gap: var(--s-3); flex-wrap: wrap; align-items: center; margin-bottom: var(--s-5); }
.stepper { display: inline-flex; align-items: center; border: 1.5px solid var(--line-2); border-radius: var(--r-pill); overflow: hidden; }
.stepper button { width: 46px; height: 50px; border: 0; background: var(--white); color: var(--ink); font-size: 18px; cursor: pointer; }
.stepper button:hover { background: var(--brass-tint); }
.stepper input { width: 52px; height: 50px; text-align: center; border: 0; background: var(--white); font-size: var(--t-body); font-variant-numeric: tabular-nums; }
.pd__actions { display: flex; gap: var(--s-3); flex-wrap: wrap; }
.pd__meta { list-style: none; margin: var(--s-6) 0 0; padding: var(--s-5) 0 0; border-top: 1px solid var(--line);
  display: grid; gap: 10px; font-size: var(--t-sm); }
.pd__meta li { display: flex; gap: var(--s-3); }
.pd__meta svg { width: 20px; height: 20px; color: var(--brass-deep); flex: none; }

.accordion-b { margin-top: var(--s-6); border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__btn { display: flex; align-items: center; justify-content: space-between; gap: var(--s-4); width: 100%;
  min-height: 64px; padding: var(--s-4) 0; background: transparent; border: 0; cursor: pointer; text-align: left;
  font-family: var(--serif); font-size: var(--t-h6); font-weight: 600; color: var(--ink); }
.acc__btn:hover { color: var(--brass-deep); }
.acc__sign { position: relative; width: 16px; height: 16px; flex: none; }
.acc__sign::before, .acc__sign::after { content:""; position:absolute; inset: 50% 0 auto; height: 2px; background: currentColor; transition: transform var(--d-2) var(--e-out); }
.acc__sign::after { transform: rotate(90deg); }
.acc__btn[aria-expanded="true"] .acc__sign::after { transform: rotate(0); }
.acc__panel { overflow: hidden; height: 0; transition: height var(--d-3) var(--e-out); }
.acc__in { padding-bottom: var(--s-5); color: var(--body); font-size: var(--t-sm); }
.acc__in table { width: 100%; border-collapse: collapse; }
.acc__in th, .acc__in td { text-align: left; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: var(--t-sm); }
.acc__in th { font-weight: 600; color: var(--ink); width: 44%; }

/* ==========================================================================
   18  QUOTE DRAWER + TOAST
   ========================================================================== */
.qdrawer { position: fixed; inset: 0; z-index: var(--z-drawer); visibility: hidden; pointer-events: none; }
.qdrawer.open { visibility: visible; pointer-events: auto; }
.qdrawer__scrim { position:absolute; inset:0; background: rgba(30,26,20,.5); opacity:0; transition: opacity var(--d-3); }
.qdrawer.open .qdrawer__scrim { opacity: 1; }
.qdrawer__panel { position:absolute; inset-block:0; right:0; width: min(440px, 92vw);
  background: var(--paper); display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform var(--d-3) var(--e-out); }
.qdrawer.open .qdrawer__panel { transform: none; }
.qdrawer__head { display:flex; align-items:center; justify-content: space-between; padding: var(--s-5); border-bottom: 1px solid var(--line); }
.qdrawer__head h3 { margin: 0; font-size: var(--t-h5); }
.qdrawer__body { flex: 1; overflow-y: auto; padding: var(--s-5); }
.qdrawer__foot { padding: var(--s-5); border-top: 1px solid var(--line); background: var(--white); }
.qitem { display: grid; grid-template-columns: 64px 1fr auto; gap: var(--s-3); align-items: center;
  padding-bottom: var(--s-4); margin-bottom: var(--s-4); border-bottom: 1px solid var(--line); }
.qitem__door { border-radius: var(--r-xs); overflow: hidden; }
.qitem__door .door { aspect-ratio: 1; border-radius: var(--r-xs); }
.qitem b { display: block; font-family: var(--serif); font-size: var(--t-sm); color: var(--ink); }
.qitem span { font-size: 12px; color: var(--muted); }
.qitem__price { font-variant-numeric: tabular-nums; font-weight: 600; color: var(--ink); font-size: var(--t-sm); }
.qitem__del { background: transparent; border: 0; color: var(--muted); cursor: pointer; font-size: 12px; padding: 4px 0; }
.qitem__del:hover { color: var(--err); }
.qitem__qty { display: inline-flex; align-items: center; gap: 8px; margin-top: 4px; }
.qitem__qty button { width: 26px; height: 26px; border: 1px solid var(--line-2); background:#fff; border-radius: 6px; cursor: pointer; }
.qitem__qty span { font-variant-numeric: tabular-nums; min-width: 20px; text-align: center; }
.qempty { text-align: center; padding: var(--s-8) var(--s-4); color: var(--muted); }
.qempty svg { width: 48px; height: 48px; color: var(--line-2); margin: 0 auto var(--s-4); }
.qtotal { display: flex; justify-content: space-between; margin-bottom: var(--s-4); font-size: var(--t-body); }
.qtotal b { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); }

.toast { position: fixed; z-index: var(--z-toast); right: var(--s-5); bottom: max(var(--s-5), env(safe-area-inset-bottom));
  max-width: min(380px, calc(100vw - 2*var(--s-5))); display: flex; align-items: center; gap: var(--s-3);
  padding: var(--s-4); border-radius: var(--r); background: var(--white); box-shadow: var(--sh-3);
  opacity: 0; transform: translateY(14px); pointer-events: none; transition: opacity var(--d-3), transform var(--d-3) var(--e-spring); }
.toast.show { opacity: 1; transform: none; pointer-events: auto; }
.toast__ic { width: 40px; height: 40px; flex: none; border-radius: var(--r-xs); display: grid; place-items: center; background: var(--ok); color:#fff; }
.toast__ic svg { width: 20px; height: 20px; }
.toast__body b { display: block; font-size: var(--t-sm); color: var(--ink); font-weight: 600; }
.toast__body span { font-size: 12px; color: var(--muted); }
.toast__go { margin-left: auto; flex: none; font-size: var(--t-cap); font-weight: 600; color: var(--brass-deep); text-decoration: none; white-space: nowrap; }

/* ==========================================================================
   19  REVEAL / SCROLL UI / RESPONSIVE / A11Y
   ========================================================================== */
/* content stays fully visible at all times — the reveal is a subtle slide-in
   accent only, never a hide/show gate, so nothing can appear blank while
   scrolling (fast flicks, slow JS, or a failed observer all still show content) */
[data-reveal] { transform: translateY(14px); transition: transform var(--d-4) var(--e-out); transition-delay: var(--dl, 0ms); }
[data-reveal].in { transform: none; }

.to-top { position: fixed; right: var(--s-5); bottom: max(var(--s-5), env(safe-area-inset-bottom)); z-index: var(--z-head);
  width: 50px; height: 50px; border-radius: var(--r-pill); border: 0; cursor: pointer;
  background: var(--charcoal); color:#fff; display: grid; place-items: center;
  opacity: 0; transform: translateY(12px) scale(.9); pointer-events: none;
  transition: opacity var(--d-2), transform var(--d-2) var(--e-spring), background-color var(--d-1); box-shadow: var(--sh-2); }
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--brass-deep); }
.to-top svg { width: 20px; height: 20px; }
@media (max-width: 719.98px) { .to-top { bottom: calc(58px + var(--s-3) + env(safe-area-inset-bottom)); } }

/* sticky mobile CTA */
.mbar { position: fixed; inset-inline: 0; bottom: 0; z-index: var(--z-head); display: grid; grid-template-columns: 1fr 1fr;
  background: var(--charcoal); padding-bottom: env(safe-area-inset-bottom); transform: translateY(100%); transition: transform var(--d-3) var(--e-out); }
.mbar.show { transform: none; }
.mbar a { min-height: 58px; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  color:#fff; text-decoration: none; font-size: var(--t-sm); font-weight: 600; }
.mbar a + a { background: var(--brass-deep); }
.mbar svg { width: 17px; height: 17px; }
@media (min-width: 720px) { .mbar { display: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
@media print {
  .topbar, .header, .mbar, .to-top, .drawer, .qdrawer, .toast, .qv { display: none !important; }
  body { background:#fff; }
  .section--dark, .hero, .footer, .cta-banner { background:#fff !important; color:#000 !important; }
}
@media (forced-colors: active) {
  .door, .btn-b, .prod, .coll, .svc-card, .info-card { border: 1px solid CanvasText; }
  .door::before, .hero__overlay, .glass { display: none; }
}
