/* =====================================================================
   MAIA STONE COMPANY — Design System
   A premium, component-based stylesheet for the static build.
   Structure mirrors a future Laravel/Blade component library:
     1. Tokens (CSS custom properties)
     2. Base / reset
     3. Typography
     4. Layout primitives (container, section, grid)
     5. Components (buttons, header, hero, cards, forms, footer…)
     6. Utilities & animation
     7. Responsive
   ===================================================================== */

/* ============================ 1. TOKENS ============================ */
:root {
  /* Brand palette — derived from the MAIA logo (black wordmark + antique gold) */
  --ink:        #16130F;   /* primary near-black, warm */
  --ink-soft:   #2A2520;
  --ink-90:     #221E18;
  --ink-70:     #3A342C;
  --gold:       #B6924B;   /* logo gold — primary accent */
  --gold-light: #CDA862;
  --gold-deep:  #8C6E33;
  --gold-wash:  #F3E9D6;

  --paper:      #FFFFFF;
  --cream:      #F8F4ED;   /* warm section background */
  --sand:       #EFE8DB;   /* deeper warm tone */
  --stone:      #6B6258;   /* muted body text on light */
  --stone-soft: #8A8077;

  --line:       rgba(22, 19, 15, 0.12);
  --line-soft:  rgba(22, 19, 15, 0.07);
  --line-light: rgba(255, 255, 255, 0.14);

  /* Typography */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Jost", "Helvetica Neue", Arial, sans-serif;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;

  /* Radius & shadow */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 4px 16px rgba(22, 19, 15, 0.06);
  --shadow-md: 0 18px 50px -20px rgba(22, 19, 15, 0.28);
  --shadow-lg: 0 40px 90px -40px rgba(22, 19, 15, 0.45);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.25s;
  --t-med: 0.45s;
  --t-slow: 0.8s;

  /* Layout */
  --container: 1240px;
  --container-narrow: 920px;
  --header-h: 88px;
}

/* ============================ 2. BASE ============================ */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
input, textarea, select, button { font-family: inherit; }

::selection { background: var(--gold); color: #fff; }

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

/* ============================ 3. TYPOGRAPHY ============================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.display-1 { font-size: clamp(3rem, 7vw, 6.25rem); font-weight: 600; }
.display-2 { font-size: clamp(2.4rem, 5vw, 4.25rem); }
.h-section { font-size: clamp(2.1rem, 4vw, 3.4rem); }
.h-sub     { font-size: clamp(1.5rem, 2.4vw, 2.1rem); }

p { color: var(--stone); }
.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.75;
  color: var(--ink-70);
}

/* Eyebrow / kicker label — geometric, gold, tracked-out */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow--center::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow--light { color: var(--gold-light); }

.text-gold { color: var(--gold-deep); }
.italic-accent { font-style: italic; color: var(--gold-deep); }

/* ============================ 4. LAYOUT ============================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(4rem, 9vw, 9rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 5.5rem); }
.section--cream { background: var(--cream); }
.section--sand { background: var(--sand); }
.section--ink { background: var(--ink); color: #fff; }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }
.section--ink p { color: rgba(255,255,255,0.72); }

.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1.2rem; }
.section-head h2 { margin-bottom: 1.2rem; }

.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

/* ============================ 5. COMPONENTS ============================ */

/* ---- Buttons ---- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65em;
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1px solid var(--btn-bg);
  border-radius: 2px;
  overflow: hidden;
  transition: color var(--t-med) var(--ease), border-color var(--t-med) var(--ease), transform var(--t-fast) var(--ease);
  isolation: isolate;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease);
  z-index: -1;
}
.btn:hover { color: #fff; border-color: var(--gold); transform: translateY(-2px); }
.btn:hover::after { transform: scaleX(1); }
.btn .btn-ico { transition: transform var(--t-med) var(--ease); }
.btn:hover .btn-ico { transform: translateX(4px); }

.btn--gold { --btn-bg: var(--gold); --btn-fg: #fff; border-color: var(--gold); }
.btn--gold::after { background: var(--ink); }
.btn--gold:hover { border-color: var(--ink); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--line);
}
.btn--ghost::after { background: var(--ink); }
.btn--ghost:hover { color: #fff; }

.btn--ghost-light {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border-color: rgba(255,255,255,0.3);
}
.btn--ghost-light::after { background: var(--gold); }

.btn--lg { padding: 1.15rem 2.5rem; }
.btn--sm { padding: 0.7rem 1.4rem; font-size: 0.72rem; }
.btn--block { display: flex; width: 100%; }

/* Text link with animated underline */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 4px;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size var(--t-med) var(--ease), color var(--t-fast) var(--ease);
}
.link-arrow:hover { background-size: 100% 1px; color: var(--gold-deep); }
.link-arrow .btn-ico { transition: transform var(--t-med) var(--ease); }
.link-arrow:hover .btn-ico { transform: translateX(4px); }
.link-arrow--light { color: #fff; }

/* ---- Badges / pills ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  padding: 0.3em 0.75em;
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 100px;
  background: var(--gold-wash);
  color: var(--gold-deep);
}
.badge--new { background: var(--ink); color: #fff; }
.badge--sale { background: #8a2f2f; color: #fff; }
.badge--soon { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.badge--single { background: #efe8db; color: var(--ink-70); }
.badge--out { background: #e9e5df; color: var(--stone); }
.badge--instock { background: #2f6b46; color: #fff; }
.badge--dot::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* ---- Header / Navigation ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: height var(--t-med) var(--ease), background var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}
/* transparent over hero */
.site-header[data-transparent="true"]:not(.is-scrolled) {
  background: transparent;
}
.site-header[data-transparent="true"]:not(.is-scrolled) .nav-link,
.site-header[data-transparent="true"]:not(.is-scrolled) .nav-toggle {
  color: #fff;
}
.site-header.is-scrolled {
  height: 72px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--line-soft);
}
/* solid header default (interior pages) */
.site-header:not([data-transparent="true"]) {
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line-soft);
}

.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand-logo {
  height: 58px;
  width: auto;
  display: block;
  transition: height var(--t-med) var(--ease);
}
.site-header.is-scrolled .brand-logo { height: 46px; }
/* Light (white) logo only shows over the transparent hero header */
.brand-logo--light { display: none; }
.site-header[data-transparent="true"]:not(.is-scrolled) .brand-logo--dark { display: none; }
.site-header[data-transparent="true"]:not(.is-scrolled) .brand-logo--light { display: block; }

.nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.2vw, 2.2rem); }
.nav-link {
  position: relative;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-70);
  padding: 0.4rem 0;
  transition: color var(--t-fast) var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t-med) var(--ease);
}
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--gold-deep); }
.nav-link:hover::after, .nav-link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

/* nav dropdown (Collections mega-lite) */
.has-dropdown { position: relative; }
.has-dropdown > .nav-link { display: inline-flex; align-items: center; gap: 0.35em; }
.has-dropdown > .nav-link svg { transition: transform var(--t-fast) var(--ease); }
.has-dropdown:hover > .nav-link svg, .has-dropdown:focus-within > .nav-link svg { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 280px; padding: 0.75rem;
  background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: var(--radius-md); box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden;
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease), visibility var(--t-med);
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.dropdown a { display: flex; align-items: center; gap: 0.9rem; padding: 0.7rem 0.85rem; border-radius: var(--radius-sm); transition: background var(--t-fast) var(--ease); }
.dropdown a:hover { background: var(--cream); }
.dropdown__dot { width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; border: 1px solid var(--line); }
.dropdown__name { font-size: 0.92rem; color: var(--ink); letter-spacing: 0.02em; text-transform: none; }
.dropdown__count { margin-left: auto; font-size: 0.74rem; color: var(--stone); }

.nav-actions { display: flex; align-items: center; gap: 1.25rem; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: inherit;
}
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.nav-toggle span {
  position: relative;
  width: 24px; height: 2px;
  background: currentColor;
  transition: background var(--t-fast) var(--ease);
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0;
  width: 24px; height: 2px; background: currentColor;
  transition: transform var(--t-med) var(--ease);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 2rem clamp(1.5rem, 6vw, 3rem) 3rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--t-med) var(--ease);
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 3rem;
}
.mobile-nav__close { width: 44px; height: 44px; color: #fff; font-size: 1.6rem; display:flex; align-items:center; justify-content:center; }
.mobile-nav__links { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav__links a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  transition: color var(--t-fast) var(--ease), padding-left var(--t-med) var(--ease);
}
.mobile-nav__links a:hover { color: var(--gold-light); padding-left: 0.5rem; }
.mobile-nav__footer { margin-top: auto; padding-top: 2.5rem; color: rgba(255,255,255,0.6); }
.mobile-nav__footer a { color: var(--gold-light); }

body.nav-open { overflow: hidden; }

.nav-scrim {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(0,0,0,0.5);
  opacity: 0; visibility: hidden;
  transition: opacity var(--t-med) var(--ease), visibility var(--t-med) var(--ease);
}
.nav-scrim.is-open { opacity: 1; visibility: visible; }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; background: var(--ink); overflow: hidden; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 62%;
  will-change: transform;
  animation: heroIntro 1.8s var(--ease) both, heroDrift 30s ease-in-out 1.8s infinite alternate;
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    /* darken the left where the copy sits, fade to clear over the imagery on the right */
    linear-gradient(98deg, rgba(15,12,9,0.94) 0%, rgba(15,12,9,0.78) 26%, rgba(15,12,9,0.3) 54%, rgba(15,12,9,0) 80%),
    /* gentle top + heavier bottom for nav + headline anchoring */
    linear-gradient(180deg, rgba(15,12,9,0.55) 0%, rgba(15,12,9,0.12) 24%, rgba(15,12,9,0.18) 55%, rgba(15,12,9,0.85) 100%);
}
@keyframes heroIntro { from { transform: scale(1.14); opacity: 0.35; } to { transform: scale(1.04); opacity: 1; } }
@keyframes heroDrift { from { transform: scale(1.04) translate3d(0,0,0); } to { transform: scale(1.11) translate3d(-1.6%, -1.4%, 0); } }

.hero__inner { width: 100%; padding-bottom: clamp(3.5rem, 7vw, 6.5rem); padding-top: 8rem; }
.hero__eyebrow { margin-bottom: 1.6rem; }
.hero h1 {
  color: #fff;
  max-width: 16ch;
  margin-bottom: 1.8rem;
}
.hero__lead { color: rgba(255,255,255,0.82); max-width: 48ch; margin-bottom: 2.5rem; font-size: clamp(1.05rem,1.4vw,1.2rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__scroll {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3rem);
  bottom: clamp(3.5rem, 7vw, 6.5rem);
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  font-size: 0.66rem; letter-spacing: 0.25em; text-transform: uppercase;
  writing-mode: vertical-rl;
  color: rgba(255,255,255,0.7);
}
.hero__scroll-line { width: 1px; height: 60px; background: rgba(255,255,255,0.4); position: relative; overflow: hidden; }
.hero__scroll-line::after {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 40%;
  background: var(--gold);
  animation: scrollLine 2s var(--ease) infinite;
}
@keyframes scrollLine { 0% { transform: translateY(-100%);} 100% { transform: translateY(250%);} }

/* Hero stats strip */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.hero-stats__item { padding: clamp(1.75rem,3vw,2.5rem) clamp(1rem,2vw,2rem); border-right: 1px solid var(--line); }
.hero-stats__item:last-child { border-right: none; }
.hero-stats__num { font-family: var(--font-display); font-size: clamp(2.2rem, 3.5vw, 3.2rem); font-weight: 600; color: var(--ink); line-height: 1; }
.hero-stats__num .unit { color: var(--gold); }
.hero-stats__label { font-size: 0.8rem; letter-spacing: 0.08em; color: var(--stone); margin-top: 0.6rem; }

/* ---- Material / category cards ---- */
.material-card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}
.material-card__img { position: absolute; inset: 0; }
.material-card__img img, .material-card__img .swatch {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.material-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,12,9,0) 30%, rgba(15,12,9,0.85) 100%);
  transition: background var(--t-med) var(--ease);
}
.material-card:hover .material-card__img img,
.material-card:hover .material-card__img .swatch { transform: scale(1.08); }
.material-card__body {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: clamp(1.25rem, 2vw, 1.75rem);
}
.material-card__count {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 0.4rem;
}
.material-card__title { font-size: clamp(1.5rem, 2vw, 1.9rem); color: #fff; }
.material-card__cta {
  display: inline-flex; align-items: center; gap: 0.5em;
  margin-top: 0.75rem; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  opacity: 0; transform: translateY(8px);
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.material-card:hover .material-card__cta { opacity: 1; transform: translateY(0); }

/* Featured large material card */
.material-card--tall { aspect-ratio: auto; height: 100%; min-height: 420px; }

/* Collections bento layout */
.collections-bento {
  display: grid; grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(150px, 18vw, 215px);
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}
.collections-bento .material-card { aspect-ratio: auto; height: 100%; }
.c-6 { grid-column: span 6; } .c-3 { grid-column: span 3; } .c-12 { grid-column: span 12; }
.r-2 { grid-row: span 2; }
@media (max-width: 860px) {
  .collections-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: clamp(180px, 36vw, 240px); }
  .collections-bento .c-6, .collections-bento .c-3, .collections-bento .c-12 { grid-column: span 1; }
  .collections-bento .r-2 { grid-row: span 1; }
}
@media (max-width: 480px) {
  .collections-bento { grid-template-columns: 1fr; }
}

/* ---- Product cards ---- */
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line); }
.product-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--sand);
}
.product-card__media img, .product-card__media .swatch {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.product-card:hover .product-card__media img,
.product-card:hover .product-card__media .swatch { transform: scale(1.06); }
.product-card__badges { position: absolute; top: 0.9rem; left: 0.9rem; display: flex; flex-wrap: wrap; gap: 0.4rem; z-index: 2; }
.product-card__fav {
  position: absolute; top: 0.75rem; right: 0.75rem; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.9); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(-6px);
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease), background var(--t-fast) var(--ease);
}
.product-card:hover .product-card__fav { opacity: 1; transform: translateY(0); }
.product-card__fav:hover { background: var(--gold); color: #fff; }
.product-card__quick {
  position: absolute; left: 0.9rem; right: 0.9rem; bottom: 0.9rem; z-index: 2;
  opacity: 0; transform: translateY(12px);
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.product-card:hover .product-card__quick { opacity: 1; transform: translateY(0); }

.product-card__body { padding: 1.25rem 1.25rem 1.4rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.product-card__cat { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); }
.product-card__title { font-size: 1.45rem; font-weight: 600; line-height: 1.15; }
.product-card__title a { transition: color var(--t-fast) var(--ease); }
.product-card__title a:hover { color: var(--gold-deep); }
.product-card__meta {
  margin-top: auto; padding-top: 0.9rem; border-top: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.82rem; color: var(--stone);
}
.product-card__avail { display: inline-flex; align-items: center; gap: 0.45em; }
.product-card__avail .dot { width: 7px; height: 7px; border-radius: 50%; background: #2f6b46; }
.product-card__avail.is-low .dot { background: var(--gold); }
.product-card__avail.is-out .dot { background: #b04a4a; }

/* ---- Marble swatch generator (CSS placeholders for cards) ---- */
.swatch { position: relative; }
.swatch--white { background:
    radial-gradient(120% 80% at 20% 15%, #ffffff, #f2efe9 60%, #e7e2d8),
    linear-gradient(115deg, transparent 40%, rgba(182,146,75,0.12) 41%, transparent 43%); }
.swatch--cream { background:
    radial-gradient(120% 90% at 70% 20%, #faf6ee, #efe7d7 70%, #e3d8c2),
    linear-gradient(125deg, transparent 38%, rgba(140,110,51,0.18) 40%, transparent 42%); }
.swatch--grey { background:
    radial-gradient(120% 90% at 30% 25%, #f4f4f3, #dcdcda 65%, #c7c7c4),
    linear-gradient(110deg, transparent 45%, rgba(60,60,60,0.18) 47%, transparent 49%); }
.swatch--gold { background:
    radial-gradient(120% 90% at 25% 20%, #fbf7ee, #f0e6cf 60%, #e2cfa3),
    linear-gradient(120deg, transparent 35%, rgba(140,110,51,0.4) 37%, transparent 40%),
    linear-gradient(70deg, transparent 60%, rgba(182,146,75,0.3) 62%, transparent 65%); }
.swatch--black { background:
    radial-gradient(120% 90% at 70% 25%, #2c2c2e, #18181a 65%, #0c0c0d),
    linear-gradient(120deg, transparent 40%, rgba(205,168,98,0.35) 42%, transparent 45%); }
.swatch--blue { background:
    radial-gradient(120% 90% at 30% 20%, #eef3f5, #d3dee2 65%, #aebfc6),
    linear-gradient(120deg, transparent 40%, rgba(80,110,125,0.3) 42%, transparent 45%); }
.swatch-veins {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(115deg, transparent 48%, rgba(140,110,51,0.16) 49%, transparent 51%),
    linear-gradient(160deg, transparent 60%, rgba(22,19,15,0.06) 61%, transparent 63%);
  mix-blend-mode: multiply;
}

/* ---- Stat / value blocks ---- */
.value-card {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  height: 100%;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.value-card__num { font-family: var(--font-display); font-size: 1.1rem; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 1rem; }
.value-card__ico {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-wash); color: var(--gold-deep);
  margin-bottom: 1.25rem;
}
.value-card h3 { font-size: 1.5rem; margin-bottom: 0.7rem; }

/* ---- Stats counter band ---- */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-light); }
.stat-band__item { background: var(--ink); padding: clamp(2rem,4vw,3rem) 1.5rem; text-align: center; }
.stat-band__num { font-family: var(--font-display); font-size: clamp(2.6rem,4.5vw,3.8rem); font-weight: 600; color: #fff; line-height: 1; }
.stat-band__num .unit { color: var(--gold-light); }
.stat-band__label { margin-top: 0.75rem; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); }

/* ---- Process steps ---- */
.step { position: relative; padding-top: 2rem; border-top: 1px solid var(--line); }
.step__num { font-family: var(--font-display); font-size: 1rem; color: var(--gold); letter-spacing: 0.1em; }
.step h3 { font-size: 1.6rem; margin: 0.75rem 0; }

/* ---- Testimonials ---- */
.quote-card {
  padding: clamp(2rem, 4vw, 3.5rem);
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
}
.quote-card__stars { color: var(--gold); letter-spacing: 0.2em; margin-bottom: 1.5rem; }
.quote-card blockquote { font-family: var(--font-display); font-size: clamp(1.35rem,2.4vw,1.9rem); line-height: 1.35; color: var(--ink); font-weight: 500; }
.quote-card__author { margin-top: 1.75rem; display: flex; align-items: center; gap: 1rem; }
.quote-card__avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--gold-wash); color: var(--gold-deep); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.3rem; }
.quote-card__name { font-weight: 500; color: var(--ink); letter-spacing: 0.02em; }
.quote-card__role { font-size: 0.85rem; color: var(--stone); }

/* ---- CTA band ---- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: #fff;
  padding: clamp(2.5rem, 6vw, 5rem);
}
.cta-band__bg { position: absolute; inset: 0; opacity: 0.25; z-index: 0; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(110deg, var(--ink) 35%, rgba(22,19,15,0.6));
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; }

/* ---- Marquee (delivery locations) ---- */
.marquee { overflow: hidden; padding-block: 1.5rem; border-block: 1px solid var(--line); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 3.5rem; width: max-content; animation: marquee 40s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; gap: 0.9rem; font-family: var(--font-display); font-size: clamp(1.4rem,2.5vw,2.1rem); color: var(--ink-70); white-space: nowrap; }
.marquee__item::before { content: "✦"; color: var(--gold); font-size: 0.8em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---- Forms ---- */
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-70); }
.field label .req { color: var(--gold-deep); }
.input, .textarea, .select {
  width: 100%;
  padding: 0.95rem 1.1rem;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.input::placeholder, .textarea::placeholder { color: var(--stone-soft); }
.input:focus, .textarea:focus, .select:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(182,146,75,0.15);
}
.textarea { resize: vertical; min-height: 130px; }

/* ---- Breadcrumb ---- */
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem; font-size: 0.78rem; letter-spacing: 0.06em; color: var(--stone); }
.breadcrumb a { transition: color var(--t-fast) var(--ease); }
.breadcrumb a:hover { color: var(--gold-deep); }
.breadcrumb .sep { color: var(--line); }
.breadcrumb [aria-current="page"] { color: var(--ink); }

/* ---- Page hero (interior) ---- */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(3rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background: var(--cream);
  overflow: hidden;
}
.page-hero--dark { background: var(--ink); color: #fff; }
.page-hero--dark h1, .page-hero--dark .breadcrumb [aria-current="page"] { color: #fff; }
.page-hero--dark p { color: rgba(255,255,255,0.72); }
.page-hero--dark .breadcrumb { color: rgba(255,255,255,0.6); }
.page-hero--dark .breadcrumb .sep { color: rgba(255,255,255,0.3); }
.page-hero h1 { font-size: clamp(2.6rem, 5vw, 4.5rem); margin: 1.25rem 0 1rem; }
.page-hero__lead { max-width: 56ch; }
.page-hero__art { position: absolute; right: -5%; top: 0; bottom: 0; width: 45%; opacity: 0.5; z-index: 0; pointer-events: none; }

/* ---- Footer ---- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding-top: clamp(3.5rem, 6vw, 5.5rem); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: clamp(2rem, 4vw, 3.5rem); padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand__logo { height: 58px; margin-bottom: 1.5rem; }
.footer-brand p { color: rgba(255,255,255,0.6); max-width: 36ch; }
.footer-col h4 { font-family: var(--font-sans); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.4rem; font-weight: 500; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 0.92rem; transition: color var(--t-fast) var(--ease), padding-left var(--t-med) var(--ease); }
.footer-col a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact li { display: flex; gap: 0.75rem; margin-bottom: 1rem; font-size: 0.92rem; align-items: flex-start; }
.footer-contact .ico { color: var(--gold-light); flex-shrink: 0; margin-top: 2px; }
.footer-newsletter { display: flex; margin-top: 1.25rem; border: 1px solid rgba(255,255,255,0.18); border-radius: 2px; overflow: hidden; }
.footer-newsletter input { flex: 1; background: transparent; border: none; padding: 0.8rem 1rem; color: #fff; font-size: 0.9rem; }
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.45); }
.footer-newsletter button { background: var(--gold); color: #fff; padding-inline: 1.1rem; display: flex; align-items: center; transition: background var(--t-fast) var(--ease); }
.footer-newsletter button:hover { background: var(--gold-light); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; justify-content: space-between; padding-block: 1.75rem; font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-bottom__links { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.18); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease); }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); }

/* ---- Collection toolbar / filters ---- */
.collection-toolbar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.25rem; padding-block: 1.5rem;
  position: sticky; top: var(--header-h); z-index: 40;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.filter-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  padding: 0.55rem 1.1rem; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid var(--line); border-radius: 100px; color: var(--ink-70);
  transition: all var(--t-fast) var(--ease);
}
.chip:hover { border-color: var(--gold); color: var(--gold-deep); }
.chip.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }
.toolbar-tools { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.search-box { position: relative; display: flex; align-items: center; }
.search-box svg { position: absolute; left: 0.85rem; color: var(--stone); pointer-events: none; }
.search-box input {
  padding: 0.6rem 1rem 0.6rem 2.4rem; font-size: 0.88rem;
  border: 1px solid var(--line); border-radius: 100px; min-width: 200px;
  background: var(--paper); transition: border-color var(--t-fast) var(--ease);
}
.search-box input:focus { outline: none; border-color: var(--gold); }
.select-sort {
  padding: 0.6rem 2.2rem 0.6rem 1rem; font-size: 0.82rem; border: 1px solid var(--line);
  border-radius: 100px; background: var(--paper) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6258' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 0.9rem center;
  -webkit-appearance: none; appearance: none; cursor: pointer; color: var(--ink-70);
}
.result-meta { font-size: 0.85rem; color: var(--stone); }
.result-meta b { color: var(--ink); font-weight: 600; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem,2vw,1.75rem); }
.empty-state { text-align: center; padding: 5rem 1rem; color: var(--stone); }

/* ---- Product detail: gallery ---- */
.pd-layout { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.gallery__main {
  position: relative; aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--sand); box-shadow: var(--shadow-md);
}
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__main img.is-swap { animation: fadeImg 0.5s var(--ease); }
@keyframes fadeImg { from { opacity: 0.3; transform: scale(1.03); } to { opacity: 1; transform: none; } }
.gallery__zoom { position: absolute; bottom: 1rem; right: 1rem; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.92); color: var(--ink); display: flex; align-items: center; justify-content: center; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.75rem; margin-top: 0.9rem; }
.gallery__thumb { aspect-ratio: 1/1; border-radius: var(--radius-sm); overflow: hidden; border: 2px solid transparent; opacity: 0.7; transition: opacity var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease); }
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumb:hover, .gallery__thumb.is-active { opacity: 1; border-color: var(--gold); }

/* ---- Product detail: info panel ---- */
.pd-info .product-card__cat { font-size: 0.74rem; }
.pd-title { font-size: clamp(2.2rem, 4vw, 3.2rem); margin: 0.75rem 0 1rem; }
.pd-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.pd-desc { color: var(--ink-70); margin-bottom: 2rem; max-width: 52ch; }
.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; margin-bottom: 2rem; }
.spec-grid__item { background: var(--paper); padding: 1.1rem 1.25rem; }
.spec-grid__label { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); }
.spec-grid__value { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--ink); margin-top: 0.2rem; }
.pd-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.75rem; }
.pd-share { display: flex; align-items: center; gap: 0.9rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.pd-share span { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone); }
.pd-share a { width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--ink-70); transition: all var(--t-fast) var(--ease); }
.pd-share a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* ---- Available slabs inventory (grouped) ---- */
.slab-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; margin-bottom: 1.75rem; }
.slab-summary__item { background: var(--cream); padding: clamp(1.25rem,2.5vw,1.75rem); text-align: center; }
.slab-summary__num { display: block; font-family: var(--font-display); font-size: clamp(2rem,3.5vw,2.8rem); font-weight: 600; color: var(--ink); line-height: 1; }
.slab-summary__lbl { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); margin-top: 0.5rem; display: block; }
.slab-list { display: flex; flex-direction: column; gap: 0.75rem; }
.slab-row {
  display: grid; grid-template-columns: auto 1fr auto; gap: clamp(1rem,2.5vw,2rem); align-items: center;
  padding: 1.25rem 1.5rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.slab-row:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.slab-row__qty {
  width: 68px; height: 68px; border-radius: var(--radius-md); flex-shrink: 0;
  background: var(--ink); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1;
}
.slab-row__qtynum { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; }
.slab-row__qtylbl { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); margin-top: 0.2rem; }
.slab-row__dim { font-size: 1.05rem; font-weight: 500; color: var(--ink); }
.slab-row__finish { color: var(--stone); font-weight: 400; }
.slab-row__sub { font-size: 0.82rem; color: var(--stone); margin-top: 0.25rem; }
.slab-row__total { text-align: right; flex-shrink: 0; }
.slab-row__totalnum { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--gold-deep); line-height: 1; }
.slab-row__totallbl { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--stone); }
.slab-pending { margin-top: 1.5rem; padding: 1.25rem 1.5rem; background: var(--cream); border: 1px dashed var(--line); border-radius: var(--radius-md); }
.slab-pending__head { display: flex; align-items: center; gap: 0.6rem; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 1rem; }
.slab-pending .slab-row { background: rgba(255,255,255,0.6); }
.slab-pending .slab-row__qty { background: var(--gold); }
.slab-pending .slab-row__qty .slab-row__qtylbl { color: rgba(255,255,255,0.85); }
.slab-empty { padding: 2rem; text-align: center; color: var(--stone); background: var(--cream); border-radius: var(--radius-md); }

/* ---- About timeline / values ---- */
.timeline { display: grid; gap: 0; }
.timeline__row { display: grid; grid-template-columns: 130px 1fr; gap: clamp(1.5rem,4vw,3.5rem); padding: 2.25rem 0; border-top: 1px solid var(--line); }
.timeline__year { font-family: var(--font-display); font-size: clamp(2rem,3vw,2.6rem); font-weight: 600; color: var(--gold); line-height: 1; }
.timeline__body h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }

/* ---- Image collage ---- */
.collage { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 1rem; }
.collage img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-md); }
.collage__tall { grid-row: span 2; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.contact-info-card { display: flex; gap: 1.1rem; padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius-md); transition: border-color var(--t-fast) var(--ease), transform var(--t-med) var(--ease); }
.contact-info-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.contact-info-card .ico { width: 46px; height: 46px; flex-shrink: 0; border-radius: 50%; background: var(--gold-wash); color: var(--gold-deep); display: flex; align-items: center; justify-content: center; }
.contact-info-card h4 { font-family: var(--font-sans); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); margin-bottom: 0.35rem; font-weight: 500; }
.contact-info-card p, .contact-info-card a { color: var(--ink); font-size: 1.02rem; }
.contact-info-card a:hover { color: var(--gold-deep); }
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.75rem,4vw,2.75rem); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-grid .field--full { grid-column: 1 / -1; }
.form-note { margin-top: 1rem; padding: 0.9rem 1.1rem; background: var(--gold-wash); color: var(--gold-deep); border-radius: var(--radius-sm); font-size: 0.9rem; }
.map-embed { aspect-ratio: 21/9; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) contrast(1.05); }
.hours-list { display: flex; flex-direction: column; gap: 0.75rem; }
.hours-list li { display: flex; justify-content: space-between; padding-bottom: 0.75rem; border-bottom: 1px solid var(--line-soft); font-size: 0.95rem; }
.hours-list .day { color: var(--ink-70); }
.hours-list .time { color: var(--ink); font-weight: 500; }

/* ---- Blog ---- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem,3vw,2.25rem); }
.blog-card { display: flex; flex-direction: column; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line-soft); background: var(--paper); transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-card__media { aspect-ratio: 16/10; overflow: hidden; }
.blog-card__media img, .blog-card__media .swatch { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.blog-card:hover .blog-card__media img, .blog-card:hover .blog-card__media .swatch { transform: scale(1.06); }
.blog-card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.blog-card__meta { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-deep); }
.blog-card__title { font-size: 1.45rem; line-height: 1.2; }
.blog-card__title a:hover { color: var(--gold-deep); }
.blog-card__footer { margin-top: auto; padding-top: 1rem; font-size: 0.82rem; color: var(--stone); }
.blog-featured { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(2rem,4vw,3rem); align-items: center; background: var(--cream); border-radius: var(--radius-lg); overflow: hidden; }
.blog-featured__media { aspect-ratio: 4/3; height: 100%; }
.blog-featured__media img { width: 100%; height: 100%; object-fit: cover; }
.blog-featured__body { padding: clamp(2rem,4vw,3.5rem) clamp(2rem,4vw,3.5rem) clamp(2rem,4vw,3.5rem) 0; }

/* ---- Misc section helpers ---- */
.feature-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.feature-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.feature-badge { position: absolute; background: var(--paper); border-radius: var(--radius-md); box-shadow: var(--shadow-md); padding: 1.25rem 1.5rem; }
.feature-badge--br { right: -1.5rem; bottom: -1.5rem; }
.feature-badge__num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; color: var(--gold); line-height: 1; }
.feature-badge__lbl { font-size: 0.78rem; color: var(--stone); letter-spacing: 0.05em; }
.check-list { display: flex; flex-direction: column; gap: 1rem; margin: 1.75rem 0; }
.check-list li { display: flex; gap: 0.85rem; align-items: flex-start; color: var(--ink-70); }
.check-list .tick { width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%; background: var(--gold-wash); color: var(--gold-deep); display: flex; align-items: center; justify-content: center; margin-top: 2px; }

/* ============================ 6. UTILITIES & ANIMATION ============================ */
.u-center { text-align: center; }
.u-mt-1 { margin-top: 1rem; }
.u-mt-2 { margin-top: 2rem; }
.u-mt-3 { margin-top: 3rem; }
.u-mb-0 { margin-bottom: 0; }
.u-flex { display: flex; }
.u-gap { gap: 1rem; }
.u-wrap { flex-wrap: wrap; }
.u-between { justify-content: space-between; align-items: center; }
.u-hide { display: none !important; }
.full-bleed-img { width: 100%; height: 100%; object-fit: cover; }
.ratio-4-3 { aspect-ratio: 4/3; }
.ratio-1-1 { aspect-ratio: 1/1; }
.ratio-3-4 { aspect-ratio: 3/4; }
.rounded { border-radius: var(--radius-md); overflow: hidden; }
.rounded-lg { border-radius: var(--radius-lg); overflow: hidden; }
.shadow { box-shadow: var(--shadow-md); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--left { transform: translateX(-32px); }
.reveal--right { transform: translateX(32px); }
.reveal--scale { transform: scale(0.94); }
.reveal--blur { filter: blur(12px); transform: translateY(18px); }
.reveal--blur.is-visible { filter: blur(0); }
.reveal--clip { clip-path: inset(0 100% 0 0); opacity: 1; transform: none; transition: clip-path var(--t-slow) var(--ease); }
.reveal--clip.is-visible { clip-path: inset(0 0 0 0); }
[data-delay="1"] { transition-delay: 0.08s; }
[data-delay="2"] { transition-delay: 0.16s; }
[data-delay="3"] { transition-delay: 0.24s; }
[data-delay="4"] { transition-delay: 0.32s; }
[data-delay="5"] { transition-delay: 0.4s; }
[data-delay="6"] { transition-delay: 0.48s; }

/* ---- Extra motion ---- */
/* Eyebrow gold line draws out when its section reveals */
.reveal.is-visible .eyebrow::before,
.reveal.is-visible .eyebrow::after { animation: lineGrow 0.7s var(--ease) 0.15s both; }
@keyframes lineGrow { from { width: 0; opacity: 0; } to { width: 30px; opacity: 1; } }

/* Floating accent (feature badge, etc.) */
.floaty { animation: floaty 5s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Gold button shine sweep on hover */
.btn--gold { position: relative; }
.btn--gold .shine {
  position: absolute; top: 0; bottom: 0; left: -60%; width: 40%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-18deg); pointer-events: none; z-index: 3;
  transition: left 0.7s var(--ease);
}
.btn--gold:hover .shine { left: 130%; }

/* Subtle continuous shimmer on the brand gold rule under section heads */
.divider-gold { height: 2px; width: 64px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px; position: relative; overflow: hidden; }
.divider-gold::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent); transform: translateX(-100%); animation: shimmer 3.5s ease-in-out infinite; }
@keyframes shimmer { 0% { transform: translateX(-100%);} 60%,100% { transform: translateX(200%);} }

/* Magnetic lift already on cards; add image parallax hook */
[data-parallax] { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; filter: none; clip-path: none; }
  .hero__media img { animation: none !important; transform: scale(1.04); }
}

/* ============================ 7. RESPONSIVE ============================ */
@media (max-width: 1080px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
  .pd-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured__body { padding: 0 clamp(1.5rem,4vw,2.5rem) clamp(1.5rem,4vw,2.5rem); }
}

@media (max-width: 940px) {
  :root { --header-h: 76px; }
  .nav, .nav-phone { display: none; }
  .nav-actions > .btn { display: none; }
  .nav-toggle { display: flex; }
  .split { grid-template-columns: 1fr; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .cols-3 { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stats__item:nth-child(2) { border-right: none; }
  .stat-band { grid-template-columns: repeat(2, 1fr); }
  .hero__scroll { display: none; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .collection-toolbar { position: static; }
}

@media (max-width: 760px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .timeline__row { grid-template-columns: 1fr; gap: 0.75rem; }
  .slab-row { grid-template-columns: auto 1fr; }
  .slab-row__total { grid-column: 2; text-align: left; padding-top: 0.5rem; border-top: 1px solid var(--line-soft); }
  .spec-grid { grid-template-columns: 1fr; }
  .collage { grid-template-columns: 1fr; }
  .collage__tall { grid-row: auto; }
}

@media (max-width: 600px) {
  .cols-4, .cols-3, .cols-2 { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .hero { min-height: 88vh; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; }
  .hero__actions .btn { width: 100%; }
}

@media (max-width: 420px) {
  .product-grid { grid-template-columns: 1fr !important; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats__item { border-right: none; }
  .stat-band { grid-template-columns: 1fr; }
}

/* =====================================================================
   PRODUCT DETAIL — modern layout (product.html)
   ===================================================================== */
.pdx { padding-top: calc(var(--header-h) + 1.25rem); padding-bottom: clamp(3rem,6vw,5rem); }
.pdx__crumb { margin-bottom: clamp(1.5rem,3vw,2.25rem); }
.pdx__grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

/* Gallery — sticky, with vertical thumbnail rail */
.pdx__gallery {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 1rem;
  position: sticky;
  top: calc(var(--header-h) + 1.25rem);
  align-self: start;
}
.pdx__rail { display: flex; flex-direction: column; gap: 0.7rem; }
.pdx__thumb {
  aspect-ratio: 1; border-radius: 12px; overflow: hidden;
  border: 2px solid transparent; opacity: 0.55;
  transition: opacity var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.pdx__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdx__thumb:hover { opacity: 0.85; }
.pdx__thumb.is-active { opacity: 1; border-color: var(--gold); }
.pdx__stage {
  position: relative; aspect-ratio: 4/3; border-radius: 18px; overflow: hidden;
  background: var(--sand); box-shadow: var(--shadow-md); cursor: zoom-in;
}
.pdx__stage img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.pdx__stage:hover img { transform: scale(1.06); }
.pdx__stage img.is-swap { animation: fadeImg 0.55s var(--ease); }
.pdx__badges { position: absolute; top: 1rem; left: 1rem; display: flex; gap: 0.45rem; flex-wrap: wrap; z-index: 2; }
.pdx__counter {
  position: absolute; bottom: 1rem; right: 1rem; z-index: 2;
  padding: 0.35rem 0.8rem; border-radius: 100px;
  background: rgba(15,12,9,0.55); backdrop-filter: blur(6px);
  color: #fff; font-size: 0.74rem; letter-spacing: 0.14em;
}
.pdx__zoomhint {
  position: absolute; bottom: 1rem; left: 1rem; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.92); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
}

/* Info column */
.pdx__eyebrow { font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-deep); }
.pdx__title { font-size: clamp(2.4rem, 4.5vw, 3.6rem); line-height: 1.02; margin: 0.6rem 0 0.3rem; }
.pdx__subtitle { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--gold-deep); font-weight: 500; }
.pdx__metarow { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin: 1.1rem 0 1.4rem; }
.pdx__rating { color: var(--gold); letter-spacing: 0.15em; font-size: 0.95rem; }
.pdx__rating span { color: var(--stone); letter-spacing: 0; margin-left: 0.4rem; font-size: 0.82rem; }
.pdx__sku { font-size: 0.82rem; color: var(--stone); }
.pdx__sku::before { content: ""; display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--line); margin-right: 0.7rem; vertical-align: middle; }
.pdx__desc { color: var(--ink-70); line-height: 1.75; max-width: 54ch; margin-bottom: 1.75rem; }

/* Option pills (finish / thickness) */
.pdx__optlabel { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-70); margin-bottom: 0.7rem; display: flex; gap: 0.5rem; }
.pdx__optlabel b { color: var(--ink); font-weight: 500; letter-spacing: 0.02em; text-transform: none; }
.pdx__options { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.opt-pill {
  display: flex; flex-direction: column; gap: 0.35rem; align-items: flex-start;
  padding: 0.75rem 1.1rem; border: 1px solid var(--line); border-radius: 12px;
  background: var(--paper); color: var(--ink); cursor: pointer; min-width: 150px;
  transition: all var(--t-fast) var(--ease);
}
.opt-pill__spec { font-size: 1.02rem; font-weight: 500; letter-spacing: 0.01em; }
.opt-pill__count { display: flex; align-items: center; gap: 0.45rem; font-size: 0.74rem; color: var(--stone); }
.opt-pill__count .dot { width: 7px; height: 7px; border-radius: 50%; background: #2f6b46; flex-shrink: 0; }
.opt-pill__count.is-low .dot { background: var(--gold); }
.opt-pill__count.is-out .dot { background: #b04a4a; }
.opt-pill__count b { color: var(--ink); font-weight: 600; }
.opt-pill:hover { border-color: var(--gold); }
.opt-pill.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }
.opt-pill.is-active .opt-pill__count { color: rgba(255,255,255,0.7); }
.opt-pill.is-active .opt-pill__count b { color: #fff; }
.opt-pill[data-qty="0"] { opacity: 0.55; }

/* Slab row highlighted when its variant is selected above */
.slab-row.is-highlight { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), var(--shadow-sm); }

/* Spec strip */
.pdx__specs {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden; margin-bottom: 1.75rem;
}
.pdx__spec { padding: 1.05rem 1.15rem; border-right: 1px solid var(--line); }
.pdx__spec:last-child { border-right: none; }
.pdx__spec-l { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone); }
.pdx__spec-v { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--ink); margin-top: 0.15rem; }
.pdx__spec-v small { font-size: 0.5em; color: var(--stone); font-family: var(--font-sans); }

/* Price + CTA */
.pdx__pricerow { display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 1.25rem; }
.pdx__price { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--ink); }
.pdx__pricenote { font-size: 0.85rem; color: var(--stone); }
.pdx__cta { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.pdx__cta .btn { flex: 1; min-width: 180px; }
.pdx__iconbtn {
  width: 54px; flex: 0 0 auto !important; min-width: 0 !important;
  border: 1px solid var(--line); border-radius: 2px; background: var(--paper);
  display: flex; align-items: center; justify-content: center; color: var(--ink);
  transition: all var(--t-fast) var(--ease);
}
.pdx__iconbtn:hover { border-color: var(--gold); color: var(--gold-deep); }

/* Trust row */
.pdx__trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 1.75rem; padding-top: 1.75rem; border-top: 1px solid var(--line); }
.trust-item { display: flex; gap: 0.7rem; align-items: flex-start; }
.trust-item__ico { color: var(--gold-deep); flex-shrink: 0; margin-top: 1px; }
.trust-item__t { font-size: 0.85rem; font-weight: 500; color: var(--ink); }
.trust-item__d { font-size: 0.76rem; color: var(--stone); line-height: 1.4; }

/* Share */
.pdx__share { display: flex; align-items: center; gap: 0.85rem; margin-top: 1.5rem; }
.pdx__share span { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); }
.pdx__share a { width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--ink-70); transition: all var(--t-fast) var(--ease); }
.pdx__share a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* Availability bar inside slab rows */
.slab-row__meter { height: 5px; border-radius: 100px; background: var(--sand); overflow: hidden; margin-top: 0.6rem; max-width: 240px; }
.slab-row__meter span { display: block; height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 100px; }

/* Accordion (details) */
.pdx-acc { border-top: 1px solid var(--line); }
.acc { border-bottom: 1px solid var(--line); }
.acc__head {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.5rem 0; font-family: var(--font-display); font-size: clamp(1.3rem,2vw,1.7rem); font-weight: 600;
  color: var(--ink); text-align: left;
}
.acc__plus { position: relative; width: 22px; height: 22px; flex-shrink: 0; }
.acc__plus::before, .acc__plus::after { content: ""; position: absolute; background: var(--gold-deep); transition: transform var(--t-med) var(--ease), opacity var(--t-med) var(--ease); }
.acc__plus::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.acc__plus::after { left: 50%; top: 0; width: 2px; height: 100%; transform: translateX(-50%); }
.acc.is-open .acc__plus::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.acc__body { max-height: 0; overflow: hidden; transition: max-height var(--t-med) var(--ease); }
.acc__inner { padding-bottom: 1.75rem; color: var(--ink-70); line-height: 1.75; max-width: 70ch; }
.acc__inner ul { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.5rem 1.5rem; margin-top: 0.5rem; }
.acc__inner li { display: flex; gap: 0.55rem; align-items: center; }
.acc__inner li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* Sticky quote bar */
.pd-stickybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: rgba(255,255,255,0.96); backdrop-filter: saturate(180%) blur(14px);
  border-top: 1px solid var(--line-soft); box-shadow: 0 -12px 40px -24px rgba(22,19,15,0.4);
  transform: translateY(110%); transition: transform var(--t-med) var(--ease);
}
.pd-stickybar.is-visible { transform: none; }
.pd-stickybar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; padding: 0.8rem 0; }
.pd-stickybar__info { display: flex; align-items: center; gap: 1rem; min-width: 0; }
.pd-stickybar__thumb { width: 48px; height: 48px; border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.pd-stickybar__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-stickybar__name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--ink); line-height: 1.1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pd-stickybar__sub { font-size: 0.78rem; color: var(--stone); }
.pd-stickybar__actions { display: flex; gap: 0.6rem; flex-shrink: 0; }

@media (max-width: 1024px) {
  .pdx__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .pdx__gallery { position: static; }
}
@media (max-width: 600px) {
  .pdx__gallery { grid-template-columns: 1fr; }
  .pdx__rail { flex-direction: row; order: 2; overflow-x: auto; }
  .pdx__thumb { width: 70px; flex: 0 0 auto; }
  .pdx__specs { grid-template-columns: repeat(2, 1fr); }
  .pdx__spec:nth-child(2) { border-right: none; }
  .pdx__trust { grid-template-columns: 1fr; gap: 0.9rem; }
  .acc__inner ul { grid-template-columns: 1fr; }
  .pd-stickybar__sub { display: none; }
  .pd-stickybar__actions .btn span.hide-sm { display: none; }
}

/* =====================================================================
   HERO — split editorial layout (home)
   Copy lives on a dark panel (always legible); imagery sits beside it
   with a feathered transition. Cinematic load animations on top.
   ===================================================================== */
.hero--split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: stretch;
  min-height: 100vh;
}

/* Left — dark copy panel */
.hero__panel { position: relative; background: var(--ink); display: flex; align-items: center; overflow: hidden; }
.hero__panel::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: 640px; height: 640px; right: -220px; top: -180px;
  background: radial-gradient(circle, rgba(182,146,75,0.20), transparent 68%);
}
.hero__panel::after {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: 420px; height: 420px; left: -160px; bottom: -160px;
  background: radial-gradient(circle, rgba(182,146,75,0.10), transparent 70%);
}
.hero__panel-inner {
  position: relative; z-index: 1; width: 100%;
  padding-top: calc(var(--header-h) + clamp(1.5rem, 4vw, 3rem));
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
  padding-right: clamp(2rem, 4vw, 4rem);
  padding-left: max(clamp(1.5rem, 5vw, 3.5rem), calc((100vw - var(--container)) / 2));
}
.hero--split .hero__eyebrow { display: inline-flex; opacity: 0; animation: heroFadeUp 0.9s var(--ease) 0.2s forwards; }
.hero__title {
  font-family: var(--font-display); font-weight: 600; color: #fff;
  font-size: clamp(2.9rem, 5.2vw, 5.3rem); line-height: 1.0; letter-spacing: -0.015em;
  margin: 1.5rem 0; max-width: none;
}
.hero__line { display: block; overflow: hidden; padding-bottom: 0.08em; }
.hero__line > span { display: block; transform: translateY(115%); }
.hero__line:nth-child(1) > span { animation: heroLineUp 1s var(--ease) 0.35s forwards; }
.hero__line:nth-child(2) > span { animation: heroLineUp 1s var(--ease) 0.5s forwards; }
.hero__title em { font-style: italic; color: var(--gold-light); }
.hero--split .hero__lead { color: rgba(255,255,255,0.78); max-width: 46ch; margin-bottom: 2.25rem; font-size: clamp(1.02rem,1.3vw,1.18rem); opacity: 0; animation: heroFadeUp 0.9s var(--ease) 0.78s forwards; }
.hero--split .hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; opacity: 0; animation: heroFadeUp 0.9s var(--ease) 0.92s forwards; }
.hero__proof { display: flex; align-items: center; gap: 0.85rem; margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.85rem; color: rgba(255,255,255,0.6); max-width: 42ch; opacity: 0; animation: heroFadeUp 0.9s var(--ease) 1.08s forwards; }
.hero__stars { color: var(--gold-light); letter-spacing: 0.15em; flex-shrink: 0; }

@keyframes heroLineUp { to { transform: translateY(0); } }
@keyframes heroFadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes heroCurtain { from { clip-path: inset(0 0 0 100%); } to { clip-path: inset(0 0 0 0); } }

/* Right — imagery */
.hero__visual { position: relative; overflow: hidden; background: var(--ink); }
.hero__visual-media { position: absolute; inset: 0; animation: heroCurtain 1.2s var(--ease) both; }
.hero__visual-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 60%;
  animation: heroIntro 1.8s var(--ease) both, heroDrift 30s ease-in-out 1.8s infinite alternate;
}
.hero__visual::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(15,12,9,0.55) 0%, rgba(15,12,9,0) 18%, rgba(15,12,9,0) 76%, rgba(15,12,9,0.5) 100%);
}
.hero__visual::after {
  content: ""; position: absolute; left: -1px; top: 0; bottom: 0; width: 150px; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, var(--ink) 0%, rgba(22,19,15,0.45) 45%, transparent 100%);
}
/* Floating glass chip — featured material */
.hero__chip {
  position: absolute; z-index: 3; left: clamp(1.25rem, 2.5vw, 2rem); bottom: clamp(1.75rem, 3.5vw, 2.75rem);
  display: flex; align-items: center; gap: 0.9rem; padding: 0.8rem 1.05rem; border-radius: 14px;
  background: rgba(20,17,14,0.42); backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.18); color: #fff; box-shadow: var(--shadow-md);
  opacity: 0; animation: heroFadeUp 0.9s var(--ease) 1.3s forwards, floaty 6s ease-in-out 2.3s infinite;
  transition: border-color var(--t-fast) var(--ease);
}
.hero__chip:hover { border-color: var(--gold); }
.hero__chip-swatch { width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0; }
.hero__chip-text { display: flex; flex-direction: column; line-height: 1.15; font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; }
.hero__chip-text small { font-family: var(--font-sans); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.2rem; font-weight: 500; }
.hero__chip svg { color: rgba(255,255,255,0.7); flex-shrink: 0; margin-left: 0.2rem; transition: transform var(--t-fast) var(--ease); }
.hero__chip:hover svg { transform: translateX(4px); }
.hero--split .hero__scroll { z-index: 3; }

@media (max-width: 900px) {
  .hero--split { grid-template-columns: 1fr; grid-template-rows: 42vh auto; min-height: auto; }
  .hero__visual { order: -1; min-height: 42vh; }
  .hero__panel-inner { max-width: none; margin-left: 0; padding-left: clamp(1.5rem, 6vw, 3rem); padding-right: clamp(1.5rem, 6vw, 3rem); padding-top: clamp(2.25rem, 7vw, 3.25rem); padding-bottom: clamp(3rem, 9vw, 4rem); }
  .hero--split .hero__scroll { display: none; }
  .hero__visual::after { width: 100%; height: 90px; bottom: -1px; top: auto; background: linear-gradient(180deg, transparent, var(--ink)); }
}
@media (max-width: 600px) {
  .hero__title { font-size: clamp(2.6rem, 10vw, 3.4rem); }
  .hero__chip { padding: 0.7rem 0.9rem; }
  .hero__chip-text { font-size: 1.05rem; }
  .hero--split .hero__actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__line > span,
  .hero--split .hero__eyebrow, .hero--split .hero__lead,
  .hero--split .hero__actions, .hero__proof, .hero__chip { animation: none !important; opacity: 1 !important; transform: none !important; }
  .hero__visual-media { animation: none !important; clip-path: none !important; }
}
