/* =====================================================================
   Black Rose Cinematic homepage redesign (2026)
   Scoped ENTIRELY under body.home-2026 so the other 43 pages are unaffected.
   Reuses brand tokens from styles.css :root (--ink --paper --ivory --gold
   --rose --wine --champagne --display --body). Supports light + dark theme
   (dark = html[data-theme="dark"]). Loaded ONLY by index.html.
   ===================================================================== */

body.home-2026 {
  --h-ink: var(--ink);
  --h-paper: var(--paper);
  --h-gold: var(--gold);
  --h-rose: var(--rose);
  --h-muted: var(--smoke);
  --h-line: var(--line);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* The motion layer hides revealable content until JS reveals it, but only
   when JS is actually running (class added by home-redesign.js). This avoids
   a flash-of-hidden-content if JS/GSAP fails. */
body.home-2026.cine-ready [data-cine] {
  opacity: 0;
  transform: translateY(42px);
  will-change: opacity, transform;
}
body.home-2026.cine-ready [data-cine].is-in {
  opacity: 1;
  transform: none;
  transition: opacity 1s var(--ease), transform 1.1s var(--ease);
}
body.home-2026.cine-ready [data-cine-stagger] > * {
  opacity: 0;
  transform: translateY(38px);
}
/* Image wipe reveal: start fully clipped (JS animates the clip open) */
body.home-2026.cine-ready [data-wipe] {
  clip-path: inset(0 0 100% 0);
}

/* ---------- Instagram marquee (clickable, continuous motion) ---------- */
body.home-2026 a.home-marquee {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--h-line);
  border-bottom: 1px solid var(--h-line);
  background: var(--h-ink);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.5s var(--ease);
}
body.home-2026 a.home-marquee:hover { background: var(--wine); }
body.home-2026 .home-marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 22px 0;
  will-change: transform;
}
body.home-2026 .home-marquee__track .ig-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.5rem, 3.2vw, 2.7rem);
  color: var(--paper);
  padding: 0 30px;
}
body.home-2026 .home-marquee__track .ig-logo {
  width: clamp(26px, 3vw, 40px);
  height: clamp(26px, 3vw, 40px);
  color: var(--champagne);
  flex: none;
  transition: transform 0.5s var(--ease);
}
body.home-2026 a.home-marquee:hover .ig-logo { transform: rotate(-8deg) scale(1.08); }
body.home-2026 .home-marquee__track b {
  color: var(--champagne);
  font-style: normal;
  font-size: clamp(1rem, 2vw, 1.6rem);
  padding: 0 4px;
}

/* ---------- Section rhythm ---------- */
body.home-2026 main { overflow: clip; }
body.home-2026 .home-section {
  padding: clamp(72px, 11vw, 168px) clamp(20px, 5vw, 72px);
  position: relative;
}
body.home-2026 .home-wrap { max-width: 1320px; margin: 0 auto; }
body.home-2026 .home-eyebrow {
  font-family: var(--body);
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--h-gold);
  margin: 0 0 1.1rem;
}
body.home-2026 .home-display {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5.4vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--h-ink);
}
body.home-2026 .home-display em { font-style: italic; color: var(--h-gold); }
body.home-2026 .home-lede {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.7;
  color: var(--h-muted);
  max-width: 46ch;
  margin: 1.4rem 0 0;
}

/* ---------- HERO (pinned cinematic) ---------- */
body.home-2026 .cine-hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #0b0907;
}
body.home-2026 .cine-hero__media {
  position: absolute;
  inset: -8% 0 -8% 0; /* overscan for parallax */
  z-index: 0;
}
body.home-2026 .cine-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.08);
  will-change: transform;
}
/* Slideshow: stack slides, cross-fade between them */
body.home-2026 .cine-hero__media[data-hero-show] { position: absolute; inset: -8% 0; }
body.home-2026 .cine-hero__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
  z-index: 0;
}
body.home-2026 .cine-hero__slide.is-active { opacity: 1; z-index: 1; }
/* Slide dots */
body.home-2026 .cine-hero__dots {
  position: absolute; left: 50%; bottom: 64px; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 10px;
}
body.home-2026 .cine-hero__dots button {
  width: 9px; height: 9px; border-radius: 50%; border: 1px solid rgba(251,244,232,0.7);
  background: transparent; padding: 0; cursor: pointer; transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}
body.home-2026 .cine-hero__dots button.is-active { background: var(--champagne); border-color: var(--champagne); transform: scale(1.25); }
body.home-2026 .cine-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(120% 90% at 50% 30%, transparent 30%, rgba(8, 6, 5, 0.5) 78%, rgba(8, 6, 5, 0.86) 100%),
    linear-gradient(180deg, rgba(8, 6, 5, 0.35) 0%, transparent 28%);
}
body.home-2026 .cine-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 22px;
  max-width: 1100px;
}
body.home-2026 .cine-hero__eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--champagne);
  margin: 0 0 1.6rem;
}
body.home-2026 .cine-hero__title {
  font-family: var(--display);
  font-weight: 600;
  color: #fbf4e8;
  font-size: clamp(3rem, 9vw, 8.5rem);
  line-height: 0.92;
  letter-spacing: -0.015em;
  margin: 0;
}
body.home-2026 .cine-hero__title .line { display: block; overflow: hidden; }
body.home-2026 .cine-hero__title .line > span { display: inline-block; }
body.home-2026 .cine-hero__title em { font-style: italic; color: var(--champagne); }
body.home-2026 .cine-hero__sub {
  color: rgba(251, 244, 232, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.65;
  max-width: 52ch;
  margin: 1.8rem auto 0;
}
body.home-2026 .cine-hero__actions {
  margin-top: 2.4rem;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
body.home-2026 .cine-btn {
  font-family: var(--body);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
}
body.home-2026 .cine-btn--solid { background: var(--champagne); color: #1a120a; }
body.home-2026 .cine-btn--solid:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(223, 197, 143, 0.32); }
body.home-2026 .cine-btn--ghost { color: #fbf4e8; border-color: rgba(251, 244, 232, 0.4); }
body.home-2026 .cine-btn--ghost:hover { border-color: var(--champagne); color: var(--champagne); transform: translateY(-3px); }
body.home-2026 .cine-hero__scrollcue {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(251, 244, 232, 0.6);
}
body.home-2026 .cine-hero__scrollcue .bar {
  width: 1px; height: 48px;
  background: linear-gradient(var(--champagne), transparent);
  animation: cinePulse 2.4s var(--ease) infinite;
}
@keyframes cinePulse { 0%,100% { opacity: .35; transform: scaleY(.7); } 50% { opacity: 1; transform: scaleY(1); } }

/* ---------- Statement band (PINNED SCENE) ---------- */
body.home-2026 .home-statement {
  text-align: center;
  background: var(--h-paper);
  padding: 0;
  position: relative;
}
/* Tall scroll track; inner pins via ScrollTrigger */
body.home-2026 .home-statement__track { height: 220vh; }
body.home-2026 .home-statement__pin {
  height: 100vh;
  display: grid;
  place-items: center;
  padding: 0 clamp(20px, 5vw, 72px);
}
body.home-2026 .home-statement .home-display { margin: 0 auto; max-width: 20ch; }
body.home-2026 .home-statement .home-display .word {
  display: inline-block;
  margin: 0 0.18em;
}
body.home-2026 .home-statement .home-lede { margin: 1.6rem auto 0; text-align: center; }
/* When JS can't pin (no GSAP / reduced motion), collapse the track to normal height */
body.home-2026:not(.cine-ready) .home-statement__track,
body.home-2026.no-pin .home-statement__track { height: auto; }
body.home-2026:not(.cine-ready) .home-statement__pin,
body.home-2026.no-pin .home-statement__pin { height: auto; padding: clamp(72px,11vw,168px) clamp(20px,5vw,72px); }

/* ---------- Category routes ---------- */
body.home-2026 .home-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
body.home-2026 .home-cat {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: #fbf4e8;
}
body.home-2026 .home-cat img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
  will-change: transform;
}
body.home-2026 .home-cat:hover img { transform: scale(1.07); }
body.home-2026 .home-cat::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(transparent 45%, rgba(8, 6, 5, 0.78));
}
body.home-2026 .home-cat__label {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
body.home-2026 .home-cat__label h3 { font-family: var(--display); font-weight: 600; font-size: 1.55rem; margin: 0; }
body.home-2026 .home-cat__label .arr { color: var(--champagne); transition: transform 0.4s var(--ease); }
body.home-2026 .home-cat:hover .arr { transform: translate(5px, -5px); }

/* ---------- Lookbook (asymmetric) ---------- */
body.home-2026 .home-lookbook .home-split {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; flex-wrap: wrap; margin-bottom: 48px;
}
body.home-2026 .home-lookbook__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 1fr;
  gap: 16px;
}
body.home-2026 .lb-card {
  position: relative; overflow: hidden; border-radius: 6px;
  text-decoration: none; color: #fbf4e8;
}
body.home-2026 .lb-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.2s var(--ease); will-change: transform;
}
body.home-2026 .lb-card:hover img { transform: scale(1.06); }
body.home-2026 .lb-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(transparent 50%, rgba(8, 6, 5, 0.7));
}
body.home-2026 .lb-card span {
  position: absolute; left: 22px; bottom: 20px; z-index: 2;
  font-family: var(--display); font-size: 1.5rem;
}
body.home-2026 .lb-card--tall { grid-column: span 2; grid-row: span 2; }
body.home-2026 .lb-card--wide { grid-column: span 3; }
body.home-2026 .lb-card--reg  { grid-column: span 3; }

/* ---------- Featured products (preserve Shopify hook) ---------- */
body.home-2026 .home-featured { background: var(--h-paper); }
body.home-2026 .home-featured .home-split {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; flex-wrap: wrap; margin-bottom: 44px;
}
body.home-2026 .home-textlink {
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--h-ink); text-decoration: none;
  border-bottom: 1px solid var(--h-gold); padding-bottom: 4px;
  transition: color 0.3s, border-color 0.3s;
}
body.home-2026 .home-textlink:hover { color: var(--h-gold); }

/* ---------- Editorial story (two-up) ---------- */
body.home-2026 .home-story__grid,
body.home-2026 .home-truemark__grid,
body.home-2026 .home-engagement__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 72px); align-items: center;
}

/* ---------- Engagement section + charitable message ---------- */
body.home-2026 .home-engagement { background: var(--h-paper); }
body.home-2026 .home-giving {
  margin-top: 26px; padding: 20px 24px;
  border: 1px solid var(--h-gold); border-radius: 6px;
  background: rgba(176, 141, 87, 0.07);
}
body.home-2026 .home-giving__lead {
  margin: 0; font-family: var(--display);
  font-size: 1.12rem; font-weight: 600; color: var(--h-gold);
}
body.home-2026 .home-giving__body {
  margin: 10px 0 0; font-size: 0.96rem; line-height: 1.65;
  color: var(--h-ink); opacity: 0.85;
}
html[data-theme="dark"] body.home-2026 .home-giving {
  background: rgba(176, 141, 87, 0.12);
  border-color: var(--champagne);
}
html[data-theme="dark"] body.home-2026 .home-giving__lead { color: var(--champagne); }
html[data-theme="dark"] body.home-2026 .home-giving__body { color: #d8cdbf; opacity: 1; }
/* Give the image more visual weight than the text column */
body.home-2026 .home-engagement__grid { grid-template-columns: 1.25fr 1fr; }
/* Larger, taller hero figure for the ring */
body.home-2026 .home-figure--xl { aspect-ratio: 4 / 5; width: 100%; }
@media (min-width: 961px) {
  body.home-2026 .home-figure--xl { aspect-ratio: auto; height: 100%; min-height: 640px; }
}
html[data-theme="dark"] body.home-2026 .home-engagement { background: #15110f; }
body.home-2026 .home-figure {
  position: relative; overflow: hidden; border-radius: 6px;
  aspect-ratio: 4 / 5;
}
body.home-2026 .home-figure img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.12); will-change: transform;
}
body.home-2026 .home-truemark { background: var(--wine); color: #fbf4e8; }
body.home-2026 .home-truemark .home-display { color: #fbf4e8; }
body.home-2026 .home-truemark .home-lede { color: rgba(251, 244, 232, 0.78); }
body.home-2026 .home-truemark .home-eyebrow { color: var(--champagne); }
body.home-2026 .home-truemark .home-textlink { color: #fbf4e8; border-color: var(--champagne); }

/* ---------- Services ---------- */
body.home-2026 .home-services { background: var(--h-paper); }
body.home-2026 .home-services__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
body.home-2026 .home-service {
  display: block; padding: 32px 26px; border-radius: 6px;
  border: 1px solid var(--h-line); text-decoration: none; color: var(--h-ink);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
  background: transparent;
}
body.home-2026 .home-service:hover { transform: translateY(-5px); border-color: var(--h-gold); }
body.home-2026 .home-service span {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--h-gold);
}
body.home-2026 .home-service strong {
  display: block; margin-top: 12px; font-family: var(--display);
  font-weight: 600; font-size: 1.45rem;
}

/* ---------- Closing CTA (full-bleed image) ---------- */
body.home-2026 .home-cta {
  position: relative; overflow: hidden; text-align: center;
  color: #fbf4e8; min-height: 78svh; display: grid; place-items: center;
}
body.home-2026 .home-cta__media { position: absolute; inset: -8% 0; z-index: 0; }
body.home-2026 .home-cta__media img {
  width: 100%; height: 100%; object-fit: cover; transform: scale(1.1);
  will-change: transform;
}
body.home-2026 .home-cta::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(110% 90% at 50% 50%, rgba(8, 6, 5, 0.35), rgba(8, 6, 5, 0.82));
}
body.home-2026 .home-cta__inner { position: relative; z-index: 2; padding: 0 22px; max-width: 900px; }
body.home-2026 .home-cta .home-display { color: #fbf4e8; margin: 0 auto; }
body.home-2026 .home-cta .home-lede { color: rgba(251, 244, 232, 0.82); margin: 1.4rem auto 2rem; text-align: center; }
body.home-2026 .home-cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Watches & Grillz dual feature ---------- */
body.home-2026 .home-dual__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
body.home-2026 .home-dual__card {
  display: block; text-decoration: none; color: inherit;
  border: 1px solid var(--h-line); border-radius: 8px; overflow: hidden;
  background: var(--h-paper); transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
body.home-2026 .home-dual__card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(36,24,16,0.16); }
body.home-2026 .home-dual__media { display: block; aspect-ratio: 16/10; overflow: hidden; }
body.home-2026 .home-dual__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
body.home-2026 .home-dual__card:hover .home-dual__media img { transform: scale(1.06); }
body.home-2026 .home-dual__copy { display: block; padding: 26px 28px 30px; }
body.home-2026 .home-dual__copy strong { display: block; font-family: var(--display); font-weight: 600; font-size: 1.7rem; margin: 6px 0 10px; }
body.home-2026 .home-dual__text { display: block; color: var(--h-muted); font-size: 0.96rem; line-height: 1.65; margin-bottom: 14px; }
html[data-theme="dark"] body.home-2026 .home-dual__card { background: rgba(247,239,228,0.04); border-color: rgba(247,239,228,0.16); }
html[data-theme="dark"] body.home-2026 .home-dual__copy strong { color: #f7efe4; }
html[data-theme="dark"] body.home-2026 .home-dual__text { color: #c9bfb2; }

/* ---------- How bespoke works (process) ---------- */
body.home-2026 .home-process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
body.home-2026 .home-step { border-top: 2px solid var(--h-gold); padding-top: 18px; }
body.home-2026 .home-step__num { font-family: var(--display); font-style: italic; font-size: 1.4rem; color: var(--h-gold); }
body.home-2026 .home-step strong { display: block; font-family: var(--display); font-weight: 600; font-size: 1.5rem; margin: 6px 0 8px; }
body.home-2026 .home-step p { color: var(--h-muted); font-size: 0.94rem; line-height: 1.6; margin: 0; }
html[data-theme="dark"] body.home-2026 .home-step strong { color: #f7efe4; }
html[data-theme="dark"] body.home-2026 .home-step p { color: #c9bfb2; }
html[data-theme="dark"] body.home-2026 .home-step { border-top-color: #d9b46f; }
html[data-theme="dark"] body.home-2026 .home-step__num { color: #d9b46f; }

/* ---------- Testimonials ---------- */
body.home-2026 .home-voices { background: var(--h-paper); }
body.home-2026 .home-voices__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
body.home-2026 .home-voice {
  margin: 0; padding: 30px 28px; border: 1px solid var(--h-line); border-radius: 8px; background: rgba(169,119,50,0.04);
}
body.home-2026 .home-voice blockquote {
  margin: 0; font-family: var(--display); font-size: 1.3rem; line-height: 1.4; color: var(--h-ink);
}
body.home-2026 .home-voice blockquote::before { content: "\201C"; color: var(--h-gold); margin-right: 2px; }
body.home-2026 .home-voice figcaption { margin-top: 16px; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--h-gold); }
html[data-theme="dark"] body.home-2026 .home-voices { background: #15110f; }
html[data-theme="dark"] body.home-2026 .home-voice { background: rgba(247,239,228,0.05); border-color: rgba(247,239,228,0.16); }
html[data-theme="dark"] body.home-2026 .home-voice blockquote { color: #f7efe4; }
html[data-theme="dark"] body.home-2026 .home-voice figcaption { color: #d9b46f; }

/* ---------- Featured product cards (homepage-only refine) ----------
   Shopify injects .product-card markup (styled globally in styles.css).
   These scoped overrides only apply inside the homepage featured grid. */
body.home-2026 .product-grid-home .product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--h-line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--h-paper);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
body.home-2026 .product-grid-home .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 54px rgba(36, 24, 16, 0.14);
}
/* Soften the stark white image panel to a warm tone */
body.home-2026 .product-grid-home .product-media {
  background: linear-gradient(160deg, #f7f1e8, #efe7da);
  aspect-ratio: 1 / 1;
  padding: 14px;
}
body.home-2026 .product-grid-home .product-media img {
  width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply;
}
/* Body fills remaining height so the button aligns across all cards */
body.home-2026 .product-grid-home .product-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 20px 22px 22px;
  gap: 8px;
}
body.home-2026 .product-grid-home .product-kicker {
  font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--h-gold);
}
body.home-2026 .product-grid-home .product-body h3 {
  font-family: var(--display); font-weight: 600; font-size: 1.18rem; line-height: 1.18; margin: 0;
}
/* Hide the redundant category word next to the price (kicker already shows it) */
body.home-2026 .product-grid-home .product-meta span { display: none; }
body.home-2026 .product-grid-home .product-meta {
  margin-top: auto; /* push price + button to the bottom */
  padding-top: 10px;
}
body.home-2026 .product-grid-home .product-meta strong {
  font-family: var(--body); font-weight: 600; font-size: 1.02rem; color: var(--h-ink);
}
body.home-2026 .product-grid-home .product-card .button-dark {
  width: 100%; margin-top: 12px; border-radius: 999px;
}
html[data-theme="dark"] body.home-2026 .product-grid-home .product-card {
  background: rgba(247,239,228,0.04); border-color: rgba(247,239,228,0.16);
}
html[data-theme="dark"] body.home-2026 .product-grid-home .product-media {
  background: linear-gradient(160deg, #1c1814, #15110f);
}
html[data-theme="dark"] body.home-2026 .product-grid-home .product-media img { mix-blend-mode: normal; }
html[data-theme="dark"] body.home-2026 .product-grid-home .product-body h3,
html[data-theme="dark"] body.home-2026 .product-grid-home .product-meta strong { color: #f7efe4; }

/* ---------- Sticky mobile CTA bar ---------- */
body.home-2026 .home-mobilebar { display: none; }
@media (max-width: 760px) {
  body.home-2026 .home-mobilebar {
    display: flex; gap: 10px; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 30;
    padding: 10px; border-radius: 999px; background: rgba(21,17,15,0.92); backdrop-filter: blur(12px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.35);
  }
  body.home-2026 .home-mobilebar__btn {
    flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px; border-radius: 999px; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
    text-decoration: none; font-weight: 600;
  }
  body.home-2026 .home-mobilebar__btn--solid { background: var(--champagne); color: #1a120a; }
  body.home-2026 .home-mobilebar__btn--wa { background: #25d366; color: #07331a; }
}

/* ---------- Focus visibility (closes a11y gap, scoped) ---------- */
body.home-2026 a:focus-visible,
body.home-2026 button:focus-visible {
  outline: 2px solid var(--h-gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* =====================================================================
   DARK THEME overrides (root attr + namespace)
   ===================================================================== */
html[data-theme="dark"] body.home-2026 .home-statement,
html[data-theme="dark"] body.home-2026 .home-featured,
html[data-theme="dark"] body.home-2026 .home-services {
  background: #15110f;
}
html[data-theme="dark"] body.home-2026 .home-display { color: #f7efe4; }
html[data-theme="dark"] body.home-2026 .home-display em { color: #d9b46f; }
html[data-theme="dark"] body.home-2026 .home-lede { color: #c9bfb2; }
html[data-theme="dark"] body.home-2026 .home-eyebrow { color: #d9b46f; }
html[data-theme="dark"] body.home-2026 .home-textlink { color: #f7efe4; border-color: #d9b46f; }
html[data-theme="dark"] body.home-2026 .home-service { border-color: rgba(247, 239, 228, 0.18); color: #f7efe4; }
html[data-theme="dark"] body.home-2026 .home-service span { color: #d9b46f; }
html[data-theme="dark"] body.home-2026 .home-truemark { background: #2a0f16; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 960px) {
  body.home-2026 .home-cats { grid-template-columns: repeat(2, 1fr); }
  body.home-2026 .home-services__grid { grid-template-columns: repeat(2, 1fr); }
  body.home-2026 .home-story__grid,
  body.home-2026 .home-truemark__grid,
  body.home-2026 .home-engagement__grid,
  body.home-2026 .home-dual__grid { grid-template-columns: 1fr; }
  body.home-2026 .home-process__grid { grid-template-columns: repeat(2, 1fr); }
  body.home-2026 .home-voices__grid { grid-template-columns: 1fr; }
  body.home-2026 .home-lookbook__grid { grid-template-columns: repeat(2, 1fr); }
  body.home-2026 .lb-card--tall,
  body.home-2026 .lb-card--wide,
  body.home-2026 .lb-card--reg { grid-column: span 1; grid-row: span 1; aspect-ratio: 3/4; }
}
@media (max-width: 560px) {
  body.home-2026 .home-cats { grid-template-columns: 1fr; }
  body.home-2026 .home-services__grid { grid-template-columns: 1fr; }
  body.home-2026 .home-lookbook__grid { grid-template-columns: 1fr; }
  body.home-2026 .home-process__grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   REDUCED MOTION: strip all transforms/animation, show everything
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  body.home-2026.cine-ready [data-cine],
  body.home-2026.cine-ready [data-cine-stagger] > * { opacity: 1 !important; transform: none !important; }
  body.home-2026.cine-ready [data-wipe] { clip-path: none !important; }
  body.home-2026 .home-marquee__track { animation: none !important; }
  body.home-2026 .cine-hero__media img,
  body.home-2026 .home-figure img,
  body.home-2026 .home-cta__media img { transform: none !important; }
  body.home-2026 .cine-hero__scrollcue .bar { animation: none; }
}
