/* ==========================================================================
   LUXAVE — Premium Kitchen Sinks
   Design system: "Basin Frame" — a large-radius rounded window (echoing the
   plan-view of an inset sink bowl) framed with a hairline brass rim, paired
   with a concentric "ripple" motif used as ambient texture and interaction.
   ========================================================================== */

/* -------------------------------------------------------------------------
   1. Design tokens
   ------------------------------------------------------------------------- */
:root {
  /* Color — sampled from the LUXAVE mark */
  --basalt: #14151a;        /* primary dark — cool graphite, like a granite-composite bowl */
  --basalt-deep: #0d0e11;   /* footer / deepest dark */
  --basalt-soft: #1c1e24;   /* elevated dark surface (cards on dark) */
  --brass: #b4802b;         /* primary accent — logo gold */
  --brass-light: #d9ae6b;   /* hover / gradient highlight */
  --brass-deep: #8c6420;    /* pressed state */
  --stone: #f3efe7;         /* light section background — quartz-stone ivory */
  --stone-deep: #eae2d1;    /* alternate light surface */
  --ink: #1c1b19;           /* primary text on light */
  --mist: #6b675f;          /* secondary text on light */
  --cream: #faf8f4;         /* text on dark */
  --cream-mist: rgba(250, 248, 244, 0.68);
  --hairline: rgba(20, 21, 26, 0.1);
  --hairline-dark: rgba(250, 248, 244, 0.12);

  /* Type — one geometric sans (the logo's own letterform) carried through
     display, body and utility roles for full brand consistency */
  --font-display: "Jost", "Century Gothic", "Futura", -apple-system, sans-serif;
  --font-body: "Jost", "Century Gothic", "Futura", -apple-system, sans-serif;
  --font-utility: "Jost", "Century Gothic", "Futura", -apple-system, sans-serif;

  /* Shape */
  --radius-frame: 64px;   /* Basin Frame — large radius on imagery */
  --radius-frame-sm: 28px;
  --radius-control: 3px;  /* buttons / inputs — deliberately sharp against the soft frame */

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 0.25s;
  --dur-med: 0.55s;
  --dur-slow: 0.9s;

  /* Layout */
  --container: 1240px;
  --header-h: 92px;
}

@media (max-width: 900px) {
  :root {
    --radius-frame: 36px;
    --radius-frame-sm: 20px;
    --header-h: 72px;
  }
}

/* -------------------------------------------------------------------------
   2. Reset
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--stone);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
main { display: block; }

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 32px;
}
@media (max-width: 640px) {
  .container { padding-inline: 20px; }
}

/* -------------------------------------------------------------------------
   3. Typography
   ------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
  color: inherit;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-utility);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
}
.eyebrow .drain-mark { flex-shrink: 0; }

.h1 { font-size: clamp(2.5rem, 4.6vw, 4.25rem); }
.h2 { font-size: clamp(2rem, 3.4vw, 3rem); }
.h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.15rem; letter-spacing: 0; }

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head .h2 { margin-top: 14px; }
.section-head p { margin-top: 16px; color: var(--mist); font-size: 1.05rem; }
.section-head.center { margin-inline: auto; text-align: center; }

.section-head.on-dark p { color: var(--cream-mist); }
.section-head.on-dark .h2 { color: var(--cream); }

p.lede { font-size: 1.15rem; color: var(--mist); }

p a {
  color: var(--brass);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(180, 128, 43, 0.35);
  transition: color var(--dur-fast) var(--ease-out), text-decoration-color var(--dur-fast) var(--ease-out);
}
p a:hover { color: var(--brass-deep); text-decoration-color: currentColor; }
.on-dark p a, .cta-band p a { color: var(--brass-light); text-decoration-color: rgba(217, 174, 107, 0.4); }
.on-dark p a:hover { color: var(--cream); text-decoration-color: currentColor; }

/* -------------------------------------------------------------------------
   4. Buttons
   ------------------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-utility);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-control);
  border: 1px solid transparent;
  overflow: hidden;
  isolation: isolate;
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-med) var(--ease-out);
}
.btn:hover::before { transform: scaleX(1); }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--brass);
  color: var(--basalt);
}
.btn-primary::before { background: var(--brass-deep); }
.btn-primary:hover { color: var(--cream); }

.btn-ghost-dark {
  color: var(--cream);
  border-color: var(--hairline-dark);
}
.btn-ghost-dark::before { background: var(--cream); transform-origin: left; }
.btn-ghost-dark:hover { color: var(--basalt); border-color: var(--cream); }

.btn-ghost-light {
  color: var(--ink);
  border-color: var(--hairline);
}
.btn-ghost-light::before { background: var(--ink); }
.btn-ghost-light:hover { color: var(--stone); border-color: var(--ink); }

.btn-sm { padding: 11px 22px; font-size: 0.72rem; }

/* -------------------------------------------------------------------------
   5. Header / Navigation
   ------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out), height var(--dur-med) var(--ease-out);
}
.site-header::before {
  /* Backdrop lives on a pseudo-element (not the header itself) so that
     backdrop-filter never establishes a containing block for the header's
     own position:fixed descendants (the mobile off-canvas nav). */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(20, 21, 26, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease-out);
}
.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: var(--hairline-dark);
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease-out);
}
.site-header.is-scrolled,
.site-header.menu-open {
  box-shadow: 0 12px 30px -18px rgba(0, 0, 0, 0.6);
}
.site-header.is-scrolled::before,
.site-header.menu-open::before,
.site-header.is-scrolled::after,
.site-header.menu-open::after { opacity: 1; }

body:not(.page-home) .site-header::before,
body:not(.page-home) .site-header::after { opacity: 1; }

.header-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; }
.brand img { 
  /* height: 72px; */ height: 40px;
   width: auto; }
@media (max-width: 640px) {
  .brand img { height: 48px; }
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
  font-family: var(--font-utility);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-list > li { position: relative; }
.nav-list a:not(.btn) {
  position: relative;
  color: var(--cream);
  padding: 6px 0;
}
.nav-list a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--brass);
  transition: right var(--dur-fast) var(--ease-out);
}
.nav-list a:not(.btn):hover::after,
.nav-list a:not(.btn).is-active::after { right: 0; }
.nav-list a:not(.btn).is-active { color: var(--brass-light); }

.has-mega > a { display: inline-flex; align-items: center; gap: 6px; }
.has-mega .caret { width: 9px; height: 9px; transition: transform var(--dur-fast) var(--ease-out); }
.has-mega:hover .caret,
.has-mega.is-open .caret { transform: rotate(180deg); }

.header-cta { display: flex; align-items: center; gap: 18px; }
.header-cta .btn { display: none; }
@media (min-width: 900px) {
  .header-cta .btn { display: inline-flex; }
}

.header-mobile-cta { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}
.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mega menu
   .mega-menu is an invisible hit-area: its 22px top padding is a hover
   "bridge" between the trigger link and the visible panel, so the pointer
   never crosses a dead zone (which would drop :hover and make the submenu
   unclickable). All visible styling lives on the nested .mega-panel. */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: min(760px, 88vw);
  padding-top: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--dur-fast) var(--ease-out), visibility var(--dur-fast);
}
.has-mega:hover .mega-menu,
.has-mega.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mega-panel {
  background: var(--basalt-soft);
  border: 1px solid var(--hairline-dark);
  border-radius: var(--radius-frame-sm);
  padding: 36px;
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 32px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.55);
  transform: translateY(8px);
  transition: transform var(--dur-fast) var(--ease-out);
}
.has-mega:hover .mega-panel,
.has-mega.is-open .mega-panel {
  transform: translateY(0);
}
.mega-intro .eyebrow { margin-bottom: 14px; }
.mega-intro p { color: var(--cream-mist); font-size: 0.92rem; max-width: 26ch; margin-bottom: 22px; }
.mega-intro .btn-sm { color: var(--cream); border-color: var(--hairline-dark); }

.mega-links { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 20px; }
.mega-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 10px;
  border-radius: var(--radius-control);
  color: var(--cream);
  font-size: 0.92rem;
  transition: background var(--dur-fast) var(--ease-out), padding-left var(--dur-fast) var(--ease-out);
}
.mega-links a svg { flex-shrink: 0; color: var(--brass); }
.mega-links a:hover { background: rgba(180, 128, 43, 0.12); padding-left: 16px; }
.mega-links a.view-all { grid-column: 1 / -1; color: var(--brass-light); font-weight: 500; border-top: 1px solid var(--hairline-dark); margin-top: 8px; padding-top: 16px; border-radius: 0; }
.mega-links a.view-all:hover { padding-left: 10px; background: none; }
.mega-links-single { grid-template-columns: 1fr; }

@media (max-width: 900px) {
  .header-cta a.btn.btn-sm.hide-mobile { display: none; }
  .nav-toggle { display: flex; }
  .nav-primary {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--basalt);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 24px 40px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--dur-med) var(--ease-out);
  }
  .menu-open .nav-primary { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; font-size: 1rem; }
  .nav-list > li { border-bottom: 1px solid var(--hairline-dark); }
  .nav-list a:not(.btn) { display: flex; padding: 18px 4px; }
  .nav-list a:not(.btn)::after { display: none; }
  .has-mega > a { justify-content: space-between; width: 100%; }
  .mega-menu,
  .has-mega:hover .mega-menu,
  .has-mega.is-open .mega-menu {
    position: static;
    width: auto;
    padding-top: 0;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .has-mega.is-open .mega-menu { display: block;
    transform: translateX(0%); }
  .mega-panel,
  .has-mega:hover .mega-panel,
  .has-mega.is-open .mega-panel {
    transform: none;
    grid-template-columns: 1fr;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 4px 0 20px;
  }
  .mega-links { grid-template-columns: 1fr; }
  .mega-intro { display: none; }
  .header-mobile-cta { display: block; margin-top: 24px; }
  .header-mobile-cta .btn { width: 100%; }
}

/* -------------------------------------------------------------------------
   6. Hero slider
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--basalt);
  overflow: hidden;
}
.hero-bg-texture {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 5px);
  pointer-events: none;
}
.hero-ripples {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: 62vw;
  max-width: 900px;
  opacity: 0.5;
  pointer-events: none;
}
.hero-ripples circle { animation: ripple-pulse 7s ease-in-out infinite; transform-origin: center; }
.hero-ripples circle:nth-child(2) { animation-delay: 0.6s; }
.hero-ripples circle:nth-child(3) { animation-delay: 1.2s; }
@keyframes ripple-pulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.9; }
}

.hero-slides { position: relative; z-index: 2; }
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-slow) var(--ease-out);
  padding-top: var(--header-h);
}
.hero-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
}
.hero-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 40px;
  padding-block: 60px;
}
.hero-copy { max-width: 560px; }
.hero-copy .eyebrow { opacity: 0; transform: translateY(14px); }
.hero-copy .h1 { color: var(--cream); margin-top: 20px; opacity: 0; transform: translateY(18px); }
.hero-copy p { color: var(--cream-mist); font-size: 1.1rem; margin-top: 22px; max-width: 46ch; opacity: 0; transform: translateY(18px); }
.hero-actions { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; opacity: 0; transform: translateY(18px); }

.is-active .hero-copy .eyebrow,
.is-active .hero-copy .h1,
.is-active .hero-copy p,
.is-active .hero-actions {
  opacity: 1;
  transform: translateY(0);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.is-active .hero-copy .h1 { transition-delay: 0.1s; }
.is-active .hero-copy p { transition-delay: 0.2s; }
.is-active .hero-actions { transition-delay: 0.3s; }

.basin-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-frame);
  border: 1px solid var(--hairline-dark);
  background: linear-gradient(155deg, var(--basalt-soft), var(--basalt));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12%;
  overflow: hidden;
}
/* Hero slides only: basin-frame fades/scales in with the rest of the slide. */
.hero-slide .basin-frame {
  transform: scale(0.94);
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
  transition-delay: 0.15s;
}
.hero-slide.is-active .basin-frame { opacity: 1; transform: scale(1); }
.basin-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(180, 128, 43, 0.25);
  border-radius: calc(var(--radius-frame) - 18px);
}
.basin-frame svg { width: 100%; height: 100%; color: var(--brass); }
.basin-frame .art-stroke { stroke: var(--brass); }
.basin-frame .art-stroke-light { stroke: var(--cream); opacity: 0.5; }
.basin-frame .art-fill { fill: var(--brass); }

.hero-controls {
  position: absolute;
  left: 0; right: 0;
  bottom: 42px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-arrows { display: flex; gap: 12px; }
.hero-arrow {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--hairline-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  transition: background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.hero-arrow:hover { background: var(--brass); border-color: var(--brass); color: var(--basalt); transform: translateY(-2px); }
.hero-arrow svg { width: 17px; height: 17px; }

.hero-dots { display: flex; gap: 10px; }
.hero-dot {
  width: 34px; height: 3px;
  background: var(--hairline-dark);
  position: relative;
  overflow: hidden;
}
.hero-dot span {
  position: absolute; inset: 0;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
}
.hero-dot.is-active span { animation: dot-progress 6s linear forwards; }
@keyframes dot-progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.hero-count {
  font-family: var(--font-utility);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--cream-mist);
}

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-block: 44px 32px; gap: 48px; }
  .hero-copy { max-width: none; }
  .basin-frame { max-width: 380px; margin-inline: auto; width: 100%; }
  .hero-controls { position: static; margin-top: 8px; padding-bottom: 48px; }
}

/* -------------------------------------------------------------------------
   7. Marquee strip
   ------------------------------------------------------------------------- */
.marquee-strip {
  background: var(--basalt-deep);
  border-top: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 64px;
  animation: marquee 32s linear infinite;
}
.marquee-track span {
  font-family: var(--font-utility);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-mist);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 64px;
}
.marquee-track span::after { content: "—"; color: var(--brass); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* -------------------------------------------------------------------------
   8. Generic section rhythm
   ------------------------------------------------------------------------- */
.section { padding-block: 120px; }
@media (max-width: 900px) { .section { padding-block: 80px; } }
.section.on-dark { background: var(--basalt); color: var(--cream); }
.section.on-stone-deep { background: var(--stone-deep); }
.section.tight { padding-block: 90px; }

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-reveal].in-view { opacity: 1; transform: translateY(0); }
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-reveal-stagger].in-view > * { opacity: 1; transform: translateY(0); }
[data-reveal-stagger].in-view > *:nth-child(1) { transition-delay: 0s; }
[data-reveal-stagger].in-view > *:nth-child(2) { transition-delay: 0.1s; }
[data-reveal-stagger].in-view > *:nth-child(3) { transition-delay: 0.2s; }
[data-reveal-stagger].in-view > *:nth-child(4) { transition-delay: 0.3s; }

/* -------------------------------------------------------------------------
   9. Intro / split sections
   ------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split.reverse .split-copy { order: 1; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 44px; }
  .split.reverse .split-media { order: 1; }
  .split.reverse .split-copy { order: 2; }
}
.split-copy .h2 { margin-top: 14px; }
.split-copy p { margin-top: 18px; color: var(--mist); }
.split-copy p + p { margin-top: 14px; }
.split-copy .btn { margin-top: 32px; }
.on-dark .split-copy p { color: var(--cream-mist); }

.split-media .basin-frame {
  border: 1px solid var(--hairline);
  background: linear-gradient(155deg, #ffffff, var(--stone-deep));
  aspect-ratio: 4 / 3.4;
}
.split-media .basin-frame::before { border-color: rgba(180, 128, 43, 0.22); }
.on-dark .split-media .basin-frame {
  border: 1px solid var(--hairline-dark);
  background: linear-gradient(155deg, var(--basalt-soft), var(--basalt));
}

.stat-row { display: flex; gap: 44px; margin-top: 40px; flex-wrap: wrap; }
.stat-row .stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--brass);
}
.stat-row .stat span {
  display: block;
  margin-top: 4px;
  font-size: 0.85rem;
  color: var(--mist);
  max-width: 16ch;
}

/* -------------------------------------------------------------------------
   10. Feature grid (Why Choose LUXAVE)
   ------------------------------------------------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline-dark);
  border: 1px solid var(--hairline-dark);
  border-radius: var(--radius-frame-sm);
  overflow: hidden;
}
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
}
.feature-card {
  background: var(--basalt);
  padding: 44px 34px;
  transition: background var(--dur-med) var(--ease-out);
}
.feature-card:hover { background: var(--basalt-soft); }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(180, 128, 43, 0.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--brass);
  margin-bottom: 26px;
  transition: border-color var(--dur-fast), transform var(--dur-fast) var(--ease-out);
}
.feature-card:hover .feature-icon { border-color: var(--brass); transform: rotate(-8deg); }
.feature-icon svg, .feature-icon img { width: 24px; height: 24px; }
.feature-card h3 { color: var(--cream); font-size: 1.05rem; }
.feature-card p { margin-top: 12px; font-size: 0.92rem; color: var(--cream-mist); }

/* -------------------------------------------------------------------------
   10b. Value cards (light cards on light/stone sections — About page)
   ------------------------------------------------------------------------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.value-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
  .value-grid, .value-grid.cols-3 { grid-template-columns: 1fr; }
}
.value-card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-frame-sm);
  padding: 36px;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 24px 44px -26px rgba(20, 21, 26, 0.25); }
.value-card .value-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--brass);
  margin-bottom: 6px;
}
.value-card h3 { margin-top: 14px; font-size: 1.2rem; color: var(--ink); }
.value-card p { margin-top: 12px; font-size: 0.95rem; color: var(--mist); }

/* -------------------------------------------------------------------------
   10c. Audience grid (dark section — About page "Who We Serve")
   ------------------------------------------------------------------------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 900px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .audience-grid { grid-template-columns: 1fr; }
}
.audience-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--hairline-dark);
  border-radius: var(--radius-control);
  background: var(--basalt-soft);
  color: var(--cream);
  font-size: 0.92rem;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.audience-chip svg { flex-shrink: 0; color: var(--brass); }
.audience-chip:hover { border-color: rgba(180, 128, 43, 0.4); background: #23252c; }

/* -------------------------------------------------------------------------
   11. Product cards
   ------------------------------------------------------------------------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) {
  .product-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
}
.product-card {
  display: block;
  group: card;
}
.product-card .basin-frame {
  aspect-ratio: 1 / 1;
  background: linear-gradient(155deg, #ffffff, var(--stone-deep));
  border: 1px solid var(--hairline);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}
.product-card .basin-frame::before { border-color: rgba(180, 128, 43, 0.22); }
.product-card:hover .basin-frame {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -24px rgba(20, 21, 26, 0.35);
}
.product-card:hover .basin-frame svg { transform: scale(1.05); }
.product-card .basin-frame svg { transition: transform var(--dur-med) var(--ease-out); }
.product-card-body { padding-top: 24px; display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.product-card h3 { font-size: 1.15rem; }
.product-card p { margin-top: 8px; color: var(--mist); font-size: 0.92rem; }
.product-card-arrow {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.product-card-arrow svg { width: 15px; height: 15px; }
.product-card:hover .product-card-arrow { background: var(--brass); border-color: var(--brass); color: var(--basalt); transform: rotate(45deg); }

.product-grid-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }
.product-grid-head .btn { flex-shrink: 0; }
.product-note { margin-top: 40px; font-size: 0.85rem; color: var(--mist); text-align: center; }

/* -------------------------------------------------------------------------
   11a. SKU grid (category listing pages — multiple size/finish variants)
   ------------------------------------------------------------------------- */
.sku-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 980px) {
  .sku-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .sku-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
}
.sku-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-frame-sm);
  overflow: hidden;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}
.sku-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -24px rgba(20, 21, 26, 0.32);
}
.sku-card-media {
  position: relative;
  aspect-ratio: 1402 / 1122;
  background: var(--stone-deep);
}
.sku-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sku-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--basalt);
  color: var(--cream);
  font-family: var(--font-utility);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.sku-card-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.sku-card-body h3 { font-size: 1.05rem; }
.sku-specs { display: flex; flex-wrap: wrap; gap: 8px; }
.sku-specs span {
  font-family: var(--font-utility);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  padding: 6px 12px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  color: var(--ink);
  background: var(--stone);
}
.sku-specs span b { color: var(--brass); font-weight: 600; }
.sku-card-footer {
  margin-top: auto;
  padding-top: 6px;
}
.sku-card-footer a {
  font-family: var(--font-utility);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--dur-fast) var(--ease-out), gap var(--dur-fast) var(--ease-out);
}
.sku-card-footer a svg { width: 13px; height: 13px; transition: transform var(--dur-fast) var(--ease-out); }
.sku-card-footer a:hover { color: var(--brass-deep); }
.sku-card-footer a:hover svg { transform: translateX(3px); }

/* -------------------------------------------------------------------------
   11b. FAQ
   ------------------------------------------------------------------------- */
.faq-list {
  max-width: 820px;
  margin-inline: auto;
  border-top: 1px solid var(--hairline);
}
.faq-item {
  padding-block: 30px;
  border-bottom: 1px solid var(--hairline);
}
.faq-item h3 { font-size: 1.05rem; }
.faq-item p { margin-top: 10px; color: var(--mist); font-size: 0.96rem; }

/* -------------------------------------------------------------------------
   12. About teaser (dark, centered)
   ------------------------------------------------------------------------- */
.about-teaser { text-align: center; }
.about-teaser .eyebrow { justify-content: center; }
.about-teaser .h2 { margin-top: 16px; margin-inline: auto; max-width: 16ch; }
.about-teaser p { margin-top: 20px; color: var(--cream-mist); max-width: 62ch; margin-inline: auto; font-size: 1.05rem; }
.about-teaser .btn { margin-top: 34px; }
.about-teaser-ring { position: relative; }
.about-teaser-ring svg { margin-inline: auto; margin-bottom: 8px; opacity: 0.5; }

/* -------------------------------------------------------------------------
   13. CTA band
   ------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  background: linear-gradient(120deg, var(--brass-deep), var(--brass) 55%, var(--brass-light));
  color: var(--basalt);
  padding-block: 90px;
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(20,21,26,0.14) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.5;
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-band .eyebrow { color: rgba(20, 21, 26, 0.65); }
.cta-band .h2 { margin-top: 16px; max-width: 20ch; margin-inline: auto; color: var(--basalt); }
.cta-band p { margin-top: 16px; color: rgba(20, 21, 26, 0.72); max-width: 52ch; margin-inline: auto; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.cta-band .btn-primary { background: var(--basalt); color: var(--cream); }
.cta-band .btn-primary::before { background: var(--basalt-soft); }
.cta-band .btn-ghost-dark { color: var(--basalt); border-color: rgba(20,21,26,0.3); }
.cta-band .btn-ghost-dark::before { background: var(--basalt); }
.cta-band .btn-ghost-dark:hover { color: var(--cream); }

/* -------------------------------------------------------------------------
   14. Footer
   ------------------------------------------------------------------------- */
.site-footer {
  background: var(--basalt-deep);
  color: var(--cream-mist);
  padding-top: 90px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--hairline-dark);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 44px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand img { 
  /* height: 46px; */height: 40px; 
   margin-bottom: 20px; }
.footer-brand p { max-width: 32ch; font-size: 0.92rem; }
.footer-social { display: flex; gap: 12px; margin-top: 26px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--hairline-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.footer-social a svg { width: 15px; height: 15px; }
.footer-social a:hover { background: var(--brass); border-color: var(--brass); color: var(--basalt); }

.footer-col h4 {
  font-family: var(--font-utility);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 22px;
  font-weight: 500;
}
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col a { font-size: 0.92rem; transition: color var(--dur-fast) var(--ease-out); }
.footer-col a:hover { color: var(--brass-light); }
.footer-col address { font-style: normal; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; }
.footer-contact li svg { flex-shrink: 0; width: 16px; height: 16px; margin-top: 3px; color: var(--brass); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-block: 26px;
  font-size: 0.8rem;
}
.footer-bottom-links { display: flex; gap: 24px; }

/* -------------------------------------------------------------------------
   14b. Product detail page
   ------------------------------------------------------------------------- */
.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .product-hero-grid { grid-template-columns: 1fr; gap: 40px; }
}
.product-gallery .basin-frame {
  aspect-ratio: 1402 / 1122;
  padding: 0;
  border: 1px solid var(--hairline);
  background: var(--stone-deep);
}
.product-gallery .basin-frame img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.product-gallery .basin-frame::before { display: none; }

.variant-swatches { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.variant-swatches-label { font-family: var(--font-utility); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mist); margin-right: 4px; }
.variant-swatch {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--swatch-color, #ccc);
  border: 0;
  box-shadow: 0 0 0 1px var(--hairline);
  cursor: pointer;
  padding: 0;
  transition: box-shadow var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.variant-swatch:hover { transform: translateY(-2px); }
.variant-swatch.is-active { box-shadow: 0 0 0 2px var(--stone), 0 0 0 4px var(--brass); }

.product-info .eyebrow { margin-bottom: 6px; }
.product-info .h1 { font-size: clamp(2rem, 3.4vw, 2.75rem); }
.product-info p.lede { margin-top: 16px; }

.spec-chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.spec-chip {
  font-family: var(--font-utility);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 9px 16px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
}
.spec-chip b { color: var(--brass); font-weight: 600; }

.feature-checklist { margin-top: 28px; display: grid; gap: 12px; }
.feature-checklist li { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: var(--ink); }
.feature-checklist li svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--brass); }

.product-info-actions { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; }

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 960px;
  margin-inline: auto;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-frame-sm);
  overflow: hidden;
  box-shadow: 0 30px 60px -36px rgba(20, 21, 26, 0.18);
}
@media (max-width: 900px) {
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .spec-grid { grid-template-columns: 1fr; }
}
.spec-card {
  background: #fff;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: background var(--dur-fast) var(--ease-out);
}
.spec-card:hover { background: var(--stone); }
.spec-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(180, 128, 43, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brass);
  margin-bottom: 18px;
  transition: border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.spec-card:hover .spec-icon { border-color: var(--brass); transform: rotate(-8deg); }
.spec-label {
  font-family: var(--font-utility);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist);
}
.spec-value {
  margin-top: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* -------------------------------------------------------------------------
   15. Page hero (interior pages)
   ------------------------------------------------------------------------- */
.page-hero {
  background: var(--basalt);
  color: var(--cream);
  padding-block: calc(var(--header-h) + 40px) 48px;
  position: relative;
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { justify-content: flex-start; }
.page-hero .h1 { margin-top: 16px; }
.page-hero p { margin-top: 18px; color: var(--cream-mist); max-width: 58ch; font-size: 1.08rem; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-utility);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-mist);
  margin-bottom: 22px;
}
.breadcrumb a:hover { color: var(--brass-light); }
.breadcrumb .sep { opacity: 0.5; }

.coming-note {
  margin-top: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  border: 1px solid var(--hairline-dark);
  border-radius: var(--radius-control);
  font-size: 0.88rem;
  color: var(--cream-mist);
}

/* -------------------------------------------------------------------------
   16. Utilities
   ------------------------------------------------------------------------- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute;
  left: 16px; top: -60px;
  background: var(--brass);
  color: var(--basalt);
  padding: 12px 18px;
  z-index: 200;
  border-radius: var(--radius-control);
  font-family: var(--font-utility);
  font-size: 0.82rem;
  transition: top var(--dur-fast) var(--ease-out);
}
.skip-link:focus { top: 16px; }
