/* ============================================================
   THE DECOR HUB — GIFTS & SOUVENIR
   Warm Artisan Palette — Oat Milk · Coffee · Mango · Cambodia
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@200;300;400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
/* LV-inspired 5-tone palette (2022 Colors moodboard):
   #390517 oxblood wine · #A38560 warm bronze · #16302B deep forest
   #03110D near-black ·   #E0E0E0 light grey/cream */
:root {
  /* Core palette */
  --wine:        #390517;
  --wine-dark:   #220210;
  --wine-light:  #5C1326;
  --bronze:      #A38560;
  --bronze-light:#C5A678;
  --bronze-dark: #7E6543;
  --forest:      #16302B;
  --forest-dark: #0A1C18;
  --ink:         #03110D;   /* near-black with green undertone */
  --bone:        #F2EFE9;   /* warm off-white luxury surface */
  --bone-dark:   #E6E1D6;
  --bone-deeper: #D8D0C0;
  --grey:        #E0E0E0;

  /* Backwards-compat aliases (keep existing rules working) */
  --oat:         var(--bone);
  --oat-dark:    var(--bone-dark);
  --oat-deeper:  var(--bone-deeper);
  --coffee:      var(--wine);
  --coffee-dark: var(--wine-dark);
  --coffee-light:var(--wine-light);
  --mango:       var(--bronze);
  --mango-light: var(--bronze-light);
  --cambodia:    var(--forest);
  --ice:         #E8DDD0;

  /* Semantic aliases */
  --bg:          var(--bone);
  --bg-soft:     var(--bone-dark);
  --bg-card:     var(--bone-deeper);
  --heading:     var(--wine);
  --body:        #1A0A10;
  --subtle:      #8A7868;
  --accent:      var(--bronze);
  --accent-hover:var(--bronze-light);
  --secondary:   var(--forest);

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Montserrat', sans-serif;

  --transition:      0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-lux:  0.55s cubic-bezier(0.16, 1, 0.3, 1);  /* LV-style ease-out */
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: #F2EFE9; /* Bone — prevents bleed on overscroll */
}

body {
  background-color: var(--bg);
  color: var(--body);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ────────────────────────────────────────────── */
.serif { font-family: var(--font-serif); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--heading);
}

.label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mango);
}

/* ── Accent Divider ────────────────────────────────────────── */
.gold-line {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--mango);
  margin: 1.5rem auto;
  border-radius: 1px;
}
.gold-line.left { margin-left: 0; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.8rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--mango);
  color: #fff;
}
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--coffee);
  transform: translateX(-100%);
  transition: var(--transition);
  z-index: 0;
}
.btn-gold:hover::after { transform: translateX(0); }
.btn-gold span { position: relative; z-index: 1; }

.btn-outline {
  border: 1.5px solid var(--coffee);
  color: var(--coffee);
  background: transparent;
}
.btn-outline:hover {
  background: var(--coffee);
  color: var(--oat);
}

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  padding: 1.1rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 2rem;
  background: var(--bone);
  border-bottom: 1px solid rgba(112, 39, 31, 0.1);
  /* no transition on background — always solid, no flicker */
}
.nav.scrolled {
  box-shadow: 0 4px 20px rgba(112, 39, 31, 0.07);
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo img {
  height: 58px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  gap: 3rem;
  align-items: center;
}
.nav__links a {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coffee-light);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--mango);
  transition: width var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--coffee); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

.nav__cta {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: var(--mango);
  padding: 0.6rem 1.5rem;
  transition: var(--transition);
}
.nav__cta:hover { background: var(--coffee); }

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--coffee);
  transition: var(--transition);
}

/* Mobile menu — hidden everywhere by default, shown only on small screens */
.nav__mobile-menu {
  display: none;
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  height: 100vh;
  min-height: 700px;
  margin-top: 0;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3D1F1A 0%, #6B2A1A 40%, #4A2010 100%);
  z-index: 0;
}

/* Warm texture overlay */
.hero__bg::before {
  content: '';
  position: absolute;
  top: 10%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(242, 78, 7, 0.12) 0%, transparent 65%);
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249, 245, 230, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 245, 230, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero__image-container {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__image-container img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: sepia(30%) contrast(1.05);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(61, 31, 26, 0.95) 0%,
    rgba(61, 31, 26, 0.4) 40%,
    rgba(61, 31, 26, 0.1) 100%
  );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  padding: 0 4rem 6rem;
  max-width: 900px;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mango);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--oat);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}
.hero__title em {
  font-style: italic;
  color: var(--mango);
}

.hero__subtitle {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(249, 245, 230, 0.75);
  max-width: 500px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}

.hero__actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 4rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  animation: fadeIn 1s 1.4s forwards;
}
.hero__scroll span {
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(249, 245, 230, 0.5);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--mango), transparent);
  animation: scrollPulse 2s infinite;
}

/* ── Marquee Banner ────────────────────────────────────────── */
.marquee-banner {
  background: var(--coffee);
  padding: 0.75rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 25s linear infinite;
}
.marquee-track span {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oat);
  padding: 0 3rem;
}
.marquee-track span::before {
  content: '✦';
  margin-right: 3rem;
  font-size: 0.5rem;
  color: var(--mango);
}

/* ── Section Base ──────────────────────────────────────────── */
section { padding: 7rem 4rem; }

.section__header {
  text-align: center;
  margin-bottom: 5rem;
}
.section__title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--coffee);
}
.section__subtitle {
  font-size: 0.8rem;
  color: var(--subtle);
  max-width: 500px;
  margin: 1.5rem auto 0;
  letter-spacing: 0.04em;
}

/* ── Featured Collection ───────────────────────────────────── */
.collection {
  background: var(--oat-dark);
}

.collection__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  max-width: 1400px;
  margin: 0 auto;
}

.collection__card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--oat-deeper);
  cursor: pointer;
}

.collection__card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  filter: brightness(0.8) sepia(10%);
}
.collection__card:hover .collection__card-img {
  transform: scale(1.06);
  filter: brightness(0.65) sepia(15%);
}

.collection__card-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--oat-deeper), #DDD5B8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-slow);
}
.collection__card-placeholder svg {
  opacity: 0.2;
  width: 80px; height: 80px;
}
.collection__card:hover .collection__card-placeholder {
  transform: scale(1.03);
}

.collection__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 31, 26, 0.92) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  transition: var(--transition);
}

.collection__card-tag {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mango);
  margin-bottom: 0.6rem;
}

.collection__card-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--oat);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.collection__card-desc {
  font-size: 0.72rem;
  color: rgba(249, 245, 230, 0.8);
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  max-width: 280px;
}

.collection__card:hover .collection__card-desc {
  opacity: 1;
  transform: translateY(0);
}

.collection__card-arrow {
  margin-top: 1.2rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mango);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}
.collection__card-arrow::after {
  content: '→';
  transition: transform var(--transition);
}
.collection__card:hover .collection__card-arrow { opacity: 1; transform: translateY(0); }
.collection__card:hover .collection__card-arrow::after { transform: translateX(4px); }

/* ── Story Section ─────────────────────────────────────────── */
.story {
  background: var(--oat);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  min-height: 700px;
  align-items: stretch;
}

.story__image {
  position: relative;
  overflow: hidden;
  min-height: 600px;
}
.story__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(15%) brightness(0.9);
  transition: transform var(--transition-slow);
}
.story:hover .story__image img { transform: scale(1.03); }

.story__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--oat) 100%);
}

.story__content {
  padding: 7rem 5rem 7rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story__content .label { margin-bottom: 1.5rem; }

.story__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--coffee);
}
.story__title em { font-style: italic; color: var(--mango); }

.story__text {
  font-size: 0.82rem;
  color: var(--subtle);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  max-width: 480px;
}

.story__stats {
  display: flex;
  gap: 3rem;
  margin: 3rem 0;
}
.story__stat-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--mango);
  line-height: 1;
}
.story__stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-top: 0.4rem;
}

/* ── Materials / Craft ─────────────────────────────────────── */
.craft {
  background: var(--oat-dark);
  text-align: center;
}

.craft__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(112, 39, 31, 0.08);
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid rgba(112, 39, 31, 0.08);
}

.craft__item {
  background: var(--oat-dark);
  padding: 4rem 3rem;
  transition: background var(--transition);
}
.craft__item:hover { background: var(--oat-deeper); }

/* Colour-swatch variant of craft__grid (Four Cultural Colours) */
.craft__grid--colours {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .craft__grid--colours { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .craft__grid--colours { grid-template-columns: 1fr; }
}
.craft__item--colour {
  position: relative;
  padding-top: 0;
  overflow: hidden;
}
.craft__swatch {
  display: block;
  width: 100%;
  height: 140px;
  background: var(--swatch, var(--coffee));
  margin: -4rem -3rem 1.8rem;
  border-bottom: 2px solid rgba(0,0,0,0.06);
  position: relative;
}
.craft__swatch::after {
  content:'';
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.18), transparent 60%);
  pointer-events:none;
}
.craft__item--colour { padding-top: 4rem; }

.craft__icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.craft__name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--coffee);
  margin-bottom: 0.8rem;
}

.craft__desc {
  font-size: 0.75rem;
  color: var(--subtle);
  line-height: 1.8;
  letter-spacing: 0.04em;
}

/* ── Products Grid ─────────────────────────────────────────── */
.products {
  background: var(--oat);
  min-height: 100vh;
  padding-top: 10rem;
}

.products__filters {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 5rem;
  border-bottom: 2px solid rgba(112, 39, 31, 0.1);
}

.filter-btn {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--subtle);
  padding: 1rem 2.5rem;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
}
.filter-btn:hover { color: var(--coffee); }
.filter-btn.active {
  color: var(--mango);
  border-bottom-color: var(--mango);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 3px;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  background: var(--oat-dark);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}
.product-card:hover { background: var(--oat-deeper); }

.product-card__img-wrap {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: linear-gradient(135deg, var(--oat-deeper), #DDD5B8);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card__img-wrap img,
.product-card__img-wrap .product-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(10%) brightness(0.9);
  transition: transform var(--transition-slow), filter var(--transition);
}
/* No zoom on hover — image source swap (to alt angle) is handled in JS. */
.product-card__img {
  transition: opacity 0.2s ease;
}
.product-card__img-missing {
  width: 100%; height: 100%;
  background: #ffffff;
  border: 1px dashed rgba(112, 39, 31, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
}
.product-card__img-missing-label {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coffee-light);
  font-weight: 500;
}
/* Swatch with no photo available — small dot indicator */
.swatch.is-missing::before {
  content: '';
  position: absolute;
  top: -2px; right: -2px;
  width: 8px; height: 8px;
  background: var(--oat);
  border: 1px solid var(--coffee-light);
  border-radius: 999px;
  z-index: 1;
}

.product-card__img-placeholder {
  opacity: 0.15;
  font-size: 4rem;
}

.product-card__body {
  padding: 1.8rem 2rem 2rem;
  border-top: 1px solid rgba(112, 39, 31, 0.1);
}

.product-card__tag {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mango);
  margin-bottom: 0.5rem;
}

.product-card__name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--coffee);
  margin-bottom: 0.4rem;
}

.product-card__material {
  font-size: 0.7rem;
  color: var(--subtle);
  letter-spacing: 0.06em;
  margin-bottom: 1.2rem;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__price {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--coffee);
}

.product-card__inquiry {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--subtle);
  border-bottom: 1px solid rgba(112, 39, 31, 0.2);
  padding-bottom: 2px;
  transition: var(--transition);
}
.product-card:hover .product-card__inquiry {
  color: var(--mango);
  border-bottom-color: var(--mango);
}

.product-card__badge {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  background: var(--mango);
  color: #fff;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.3rem 0.8rem;
}

/* ── Quote / Testimonial ───────────────────────────────────── */
.quote-section {
  background: var(--coffee);
  text-align: center;
  padding: 8rem 4rem;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '"';
  position: absolute;
  top: -2rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 20rem;
  color: rgba(249, 245, 230, 0.04);
  line-height: 1;
  pointer-events: none;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--oat);
  max-width: 800px;
  margin: 0 auto 2.5rem;
  line-height: 1.5;
}
.quote-text span { color: var(--mango); }

.quote-author {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(249, 245, 230, 0.5);
}

/* ── Contact Section (legacy — overridden by editorial rules below) ── */
.contact-section { background: var(--bone); }

.contact__form {
  padding: 7rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  background: var(--oat);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mango);
}

.form-input,
.form-select,
.form-textarea {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(112, 39, 31, 0.2);
  color: var(--body);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  padding: 0.8rem 0;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--subtle); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-bottom-color: var(--mango); }

.form-select { cursor: pointer; }
.form-select option { background: var(--oat); color: var(--body); }
.form-textarea { resize: none; height: 100px; }

/* ── About Hero ────────────────────────────────────────────── */
.about-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 6rem;
  background: var(--ink);
  color: var(--bone);
  padding: 12rem 4rem 7rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 85% 30%, rgba(163, 133, 96, 0.20), transparent 55%),
    radial-gradient(ellipse at 15% 90%, rgba(57, 5, 23, 0.45), transparent 60%),
    linear-gradient(180deg, var(--ink) 0%, var(--wine-dark) 100%);
}

.about-hero__content {
  max-width: 700px;
  position: relative;
  z-index: 2;
}
.about-hero .label {
  color: var(--bronze-light) !important;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
}

.about-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 2.5rem;
  color: var(--bone);
}
.about-hero__title em {
  font-style: italic;
  color: var(--bronze) !important;
  font-weight: 300;
}

.about-hero__text {
  font-size: 1rem;
  color: rgba(242, 239, 233, 0.72);
  line-height: 1.95;
  max-width: 560px;
  font-weight: 300;
}

/* About hero media — 2-photo asymmetric layout on the right side */
.about-hero__media {
  position: relative;
  height: 640px;
  width: 100%;
  z-index: 2;
}
.about-hero__photo {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}
.about-hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s var(--transition-lux);
  transform: scale(1.04);
}
.about-hero:hover .about-hero__photo img { transform: scale(1.12); }
.about-hero__photo--main {
  top: 0; left: 8%;
  width: 78%;
  height: 75%;
}
.about-hero__photo--small {
  bottom: 0; right: 0;
  width: 56%;
  height: 42%;
  border: 8px solid var(--ink);
}

@media (max-width: 1024px) {
  .about-hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: auto;
    padding: 9rem 1.5rem 5rem;
  }
  .about-hero__media { height: 420px; max-width: 600px; }
}
@media (max-width: 600px) {
  .about-hero__media { height: 340px; }
  .about-hero__photo--main { width: 82%; height: 72%; left: 0; }
  .about-hero__photo--small { width: 55%; height: 45%; right: 0; bottom: 0; }
}

/* ── Values Grid ───────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(112, 39, 31, 0.08);
  max-width: 1000px;
  margin: 0 auto;
}

.value-item {
  background: var(--oat-dark);
  padding: 4rem;
  transition: background var(--transition);
}
.value-item:hover { background: var(--oat-deeper); }

.value-item__num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: rgba(242, 78, 7, 0.18);
  font-weight: 300;
  margin-bottom: 1rem;
}
.value-item__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--coffee);
  margin-bottom: 1rem;
}
.value-item__text {
  font-size: 0.78rem;
  color: var(--subtle);
  line-height: 1.9;
}

/* ── Newsletter ────────────────────────────────────────────── */
.newsletter {
  background: var(--cambodia);
  padding: 7rem 4rem;
  text-align: center;
}

.newsletter__title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--oat);
}
.newsletter__sub {
  font-size: 0.78rem;
  color: rgba(249, 245, 230, 0.65);
  letter-spacing: 0.06em;
  margin-bottom: 3rem;
}

.newsletter .label { color: var(--mango); }

.newsletter__form {
  display: flex;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid rgba(249, 245, 230, 0.25);
}

.newsletter__input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 1rem 1.5rem;
  color: var(--oat);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  outline: none;
}
.newsletter__input::placeholder { color: rgba(249, 245, 230, 0.45); }

.newsletter__btn {
  background: var(--mango);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  transition: background var(--transition);
}
.newsletter__btn:hover { background: var(--coffee); }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--coffee-dark);
  padding: 6rem 4rem 3rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(249, 245, 230, 0.08);
  margin-bottom: 3rem;
}

.footer__brand-logo {
  height: 55px;
  width: auto;
  margin-bottom: 1.2rem;
  /* SVG is coffee red — shift to oat on dark footer */
  filter: brightness(0) saturate(100%) invert(96%) sepia(6%) saturate(400%) hue-rotate(10deg) brightness(105%);
}

.footer__brand-desc {
  font-size: 0.75rem;
  color: rgba(249, 245, 230, 0.55);
  line-height: 1.9;
  max-width: 280px;
  margin-bottom: 2rem;
}

.footer__socials {
  display: flex;
  gap: 1.2rem;
}

.footer__social {
  width: 36px; height: 36px;
  border: 1px solid rgba(249, 245, 230, 0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  color: rgba(249, 245, 230, 0.5);
  transition: var(--transition);
}
.footer__social:hover {
  border-color: var(--mango);
  color: var(--mango);
}

.footer__col-title {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mango);
  margin-bottom: 1.8rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.footer__links a {
  font-size: 0.75rem;
  color: rgba(249, 245, 230, 0.55);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--oat); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copy {
  font-size: 0.65rem;
  color: rgba(249, 245, 230, 0.35);
  letter-spacing: 0.06em;
}
.footer__copy span { color: var(--mango); }

.footer__legal {
  display: flex;
  gap: 2rem;
}
.footer__legal a {
  font-size: 0.65rem;
  color: rgba(249, 245, 230, 0.35);
  letter-spacing: 0.06em;
  transition: color var(--transition);
}
.footer__legal a:hover { color: var(--oat); }

/* ── Page Hero (inner pages) — cinematic editorial ───────── */
.page-hero {
  min-height: 75vh;
  display: flex;
  align-items: flex-end;
  padding: 12rem 4rem 6rem;
  background: var(--ink);
  color: var(--bone);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 75% 30%, rgba(163, 133, 96, 0.22), transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(57, 5, 23, 0.45), transparent 60%),
    linear-gradient(180deg, var(--ink) 0%, var(--wine-dark) 100%);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(163, 133, 96, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(163, 133, 96, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  animation: lux-fade-up 0.65s var(--transition-lux) 0.2s both;
}

.page-hero__breadcrumb {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bronze-light);
  margin-bottom: 2.5rem;
}
.page-hero__breadcrumb a { color: var(--bronze); }
.page-hero__breadcrumb a:hover { color: var(--bone); }

.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--bone);
  margin: 0;
}
.page-hero__title em {
  font-style: italic;
  color: var(--bronze) !important;
  font-weight: 300;
}

@media (max-width: 768px) {
  .page-hero { min-height: 60vh; padding: 9rem 1.5rem 4rem; }
}

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav { padding: 1.4rem 2.5rem; }
  .nav.scrolled { padding: 0.9rem 2.5rem; }
  section { padding: 5rem 2.5rem; }
  .hero__content { padding: 0 2.5rem 5rem; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .story { grid-template-columns: 1fr; }
  .story__content { padding: 5rem 2.5rem; }
  .contact-section { grid-template-columns: 1fr; }
  .contact__info, .contact__form { padding: 5rem 2.5rem; }
}

@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav.scrolled { padding: 0.75rem 1.5rem; }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .hero__title { font-size: 3rem; }
  .collection__grid { grid-template-columns: 1fr; }
  .craft__grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .story__stats { gap: 2rem; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 1.5rem; text-align: center; }

  .nav__mobile-menu {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--oat);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }
  .nav__mobile-menu.open { opacity: 1; pointer-events: all; }
  .nav__mobile-menu a {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    color: var(--coffee);
    letter-spacing: 0.05em;
  }
  .nav__mobile-menu a:hover { color: var(--mango); }
}

/* ============================================================
   ADDITIONS — Language toggle, hero gallery, collection imgs
   ============================================================ */

/* Nav right cluster (lang button + CTA) */
.nav__right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.nav__lang {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  border: 1px solid rgba(112, 39, 31, 0.25);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--coffee-light);
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}
.nav__lang:hover {
  border-color: var(--mango);
  color: var(--coffee);
}
.nav__lang [data-lang] {
  opacity: 0.45;
  transition: opacity var(--transition), color var(--transition);
}
.nav__lang [data-lang].is-active {
  opacity: 1;
  color: var(--mango);
}
.nav__lang-sep {
  opacity: 0.3;
  font-weight: 300;
}

/* Hero layout: text + 3-statue gallery */
.hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 6rem 4rem 6rem;
}

.hero__gallery {
  position: relative;
  height: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  animation: fadeUp 1s 0.6s both;
}
.hero__gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: transform var(--transition);
  background: rgba(0,0,0,0.2);
}
.hero__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero__gallery-item:hover img { transform: scale(1.06); }
.hero__gallery-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0));
  color: var(--oat);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero__gallery-item--main {
  grid-row: 1 / span 2;
  grid-column: 1 / span 1;
}
.hero__gallery-item--top    { grid-row: 1; grid-column: 2; }
.hero__gallery-item--bottom { grid-row: 2; grid-column: 2; }

.hero__inner .hero__content {
  padding: 0;
  max-width: 100%;
}

/* Collection card images */
.collection__card-placeholder {
  overflow: hidden;
}
.collection__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}
.collection__card:hover .collection__card-img { transform: scale(1.07); }

/* Responsive */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 5rem 2.5rem 4rem;
  }
  .hero__gallery {
    height: 360px;
    max-width: 560px;
  }
}
@media (max-width: 768px) {
  .nav__right { gap: 0.5rem; }
  .nav__lang { padding: 0.4rem 0.6rem; font-size: 0.6rem; }
  .nav__cta { display: none; }
  .hero__inner { padding: 4rem 1.5rem 3rem; }
  .hero__gallery { height: 280px; gap: 0.5rem; }
  .hero__gallery-item figcaption { font-size: 0.55rem; padding: 0.6rem 0.7rem; }
}

/* ============================================================
   SHOP — Cart icon, swatches, qty, product card, drawer, modal
   ============================================================ */

/* Cart icon button in nav */
.nav__cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(112,39,31,0.25);
  color: var(--coffee);
  border-radius: 999px;
  width: 38px; height: 38px;
  cursor: pointer;
  transition: var(--transition);
}
.nav__cart:hover { border-color: var(--mango); color: var(--mango); }
.nav__cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 18px; height: 18px;
  padding: 0 4px;
  background: var(--mango);
  color: #fff;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 600;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Product card swatches */
.product-card__swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.75rem 0 0.9rem;
}
.swatch {
  width: 22px; height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 999px;
  display: inline-block;
  position: relative;
  transition: transform var(--transition);
}
.swatch:hover { transform: scale(1.15); }
.swatch span {
  display: block;
  width: 100%; height: 100%;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
}
.swatch.is-active::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 1.5px solid var(--mango);
}

/* Qty stepper */
.product-card__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}
.product-card__price {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--coffee);
}
.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(112,39,31,0.22);
  border-radius: 999px;
  overflow: hidden;
  background: var(--oat);
}
.qty-stepper button {
  width: 28px; height: 28px;
  background: transparent;
  border: 0;
  font-size: 1rem;
  color: var(--coffee);
  cursor: pointer;
  transition: var(--transition);
}
.qty-stepper button:hover { background: var(--oat-dark); color: var(--mango); }
.qty-stepper .qty-value, .qty-stepper span:not(.cart-swatch) {
  min-width: 24px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--coffee);
}
.qty-stepper--sm button { width: 24px; height: 24px; font-size: 0.85rem; }

/* Add / Buy buttons */
.product-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.btn-add, .btn-buy {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.75rem 0.6rem;
  border: 1px solid var(--coffee);
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition);
}
.btn-add {
  background: transparent;
  color: var(--coffee);
}
.btn-add:hover { background: var(--coffee); color: var(--oat); }
.btn-add--ok { background: var(--cambodia)!important; color: #fff!important; border-color: var(--cambodia)!important; }
.btn-buy {
  background: var(--mango);
  color: #fff;
  border-color: var(--mango);
}
.btn-buy:hover { background: var(--coffee); border-color: var(--coffee); }

/* Cart drawer */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
}
.cart-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,10,5,0.5);
  opacity: 0;
  transition: opacity var(--transition);
}
.cart-drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(440px, 100%);
  background: var(--oat);
  box-shadow: -20px 0 60px rgba(0,0,0,0.2);
  transform: translateX(100%);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { pointer-events: auto; }
.cart-drawer.open .cart-drawer__overlay { opacity: 1; }
.cart-drawer.open .cart-drawer__panel { transform: translateX(0); }

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.8rem;
  border-bottom: 1px solid rgba(112,39,31,0.12);
}
.cart-drawer__header h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--coffee);
}
.cart-drawer__close {
  background: transparent;
  border: 0;
  font-size: 2rem;
  line-height: 1;
  color: var(--coffee);
  cursor: pointer;
  padding: 0;
  width: 32px; height: 32px;
}
.cart-drawer__close:hover { color: var(--mango); }

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.2rem 1.8rem;
}
.cart-empty {
  text-align: center;
  padding: 4rem 1rem;
}
.cart-empty .label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--coffee);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.cart-empty__sub {
  font-size: 0.78rem;
  color: var(--subtle);
  margin-bottom: 2rem;
}
.cart-line {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(112,39,31,0.08);
}
.cart-line__img {
  width: 80px;
  height: 80px;
  background: var(--oat-dark);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.cart-line__img img { width:100%; height:100%; object-fit:cover; }
.cart-line__name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--coffee);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}
.cart-line__meta {
  font-size: 0.72rem;
  color: var(--subtle);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
}
.cart-swatch {
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.18);
}
.cart-line__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.cart-line__price {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--coffee);
}
.cart-line__remove {
  background: transparent;
  border: 0;
  font-size: 1.5rem;
  color: var(--subtle);
  cursor: pointer;
  align-self: start;
  padding: 0;
  width: 24px; height: 24px;
  line-height: 1;
}
.cart-line__remove:hover { color: var(--mango); }

.cart-drawer__footer {
  padding: 1.4rem 1.8rem;
  border-top: 1px solid rgba(112,39,31,0.12);
  background: var(--oat-dark);
}
.cart-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  color: var(--coffee);
}
.cart-row--muted { color: var(--subtle); font-size: 0.72rem; }
.cart-row--total {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0.75rem 0 1.2rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(112,39,31,0.18);
}
.cart-drawer__footer .btn-gold {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* Checkout Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,10,5,0.65);
  opacity: 0;
  transition: opacity var(--transition);
}
.modal__panel {
  position: relative;
  background: var(--oat);
  width: 100%;
  max-width: 920px;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  padding: 3rem 3rem 2.5rem;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  transform: translateY(20px) scale(0.98);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
}
.modal.open { pointer-events: auto; }
.modal.open .modal__overlay { opacity: 1; }
.modal.open .modal__panel { transform: translateY(0) scale(1); opacity: 1; }

.modal__close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: transparent;
  border: 0;
  font-size: 2rem;
  color: var(--coffee);
  cursor: pointer;
  width: 36px; height: 36px;
  line-height: 1;
  padding: 0;
}
.modal__close:hover { color: var(--mango); }
.modal__title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--coffee);
  margin-bottom: 0.4rem;
}
.modal__subtitle {
  font-size: 0.8rem;
  color: var(--subtle);
  margin-bottom: 2.2rem;
}

.modal__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
}
.modal__form { display: flex; flex-direction: column; gap: 1.1rem; }
.modal__form .form-group { margin: 0; }
.modal__form .form-input,
.modal__form .form-textarea,
.modal__form .form-select {
  width: 100%;
  background: var(--oat-dark);
  border: 1px solid rgba(112,39,31,0.18);
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--coffee);
  border-radius: 3px;
  transition: var(--transition);
}
.modal__form .form-input:focus,
.modal__form .form-textarea:focus,
.modal__form .form-select:focus {
  outline: 0;
  border-color: var(--mango);
  background: #fff;
}
.modal__form .form-textarea { min-height: 90px; resize: vertical; }
.modal__form .form-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coffee-light);
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.modal__submit {
  margin-top: 0.8rem;
  width: 100%;
  text-align: center;
  justify-content: center;
}

.modal__summary {
  background: var(--oat-dark);
  padding: 1.6rem 1.4rem;
  border-radius: 3px;
  align-self: start;
}
.modal__summary h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--coffee);
  margin-bottom: 1rem;
}
.co-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--coffee-light);
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(112,39,31,0.08);
}
.co-row span:first-child { flex: 1; }
.co-row span:last-child { font-weight: 500; color: var(--coffee); white-space: nowrap; }
.co-row--total {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--coffee);
  margin-top: 0.5rem;
  padding-top: 0.9rem;
  border-top: 1.5px solid rgba(112,39,31,0.2);
  border-bottom: 0;
}

.modal__success {
  text-align: center;
  padding: 2rem 1rem;
}
.modal__success .label {
  font-size: 0.8rem;
  color: var(--cambodia);
  margin-bottom: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.modal__success-text {
  font-size: 0.85rem;
  color: var(--coffee-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.modal__success-id {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--coffee);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .modal__panel { padding: 3rem 1.5rem 1.8rem; }
  .modal__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; gap: 1rem; }
  .modal__title { font-size: 1.6rem; }
  .product-card__actions { grid-template-columns: 1fr; }
  .product-card__swatches { gap: 0.3rem; }
  .swatch { width: 20px; height: 20px; }
}

/* ============================================================
   CINEMATIC CULTURE TILES (Louis Vuitton-inspired)
   Four Cultural Colours as immersive full-bleed photo cards
   ============================================================ */
.culture-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
}
@media (max-width: 900px) { .culture-grid { grid-template-columns: 1fr; padding: 0 1.5rem; } }

.culture-tile {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
  background: var(--ink);
  cursor: pointer;
  isolation: isolate;
}

.culture-tile__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.culture-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              filter   1.2s var(--transition-lux);
  filter: saturate(0.85) brightness(0.78);
}
.culture-tile:hover .culture-tile__media img {
  transform: scale(1.12);
  filter: saturate(1.05) brightness(0.92);
}

/* Cinematic colour-tinted overlay */
.culture-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(3,17,13,0.12) 0%,
      rgba(3,17,13,0.35) 45%,
      rgba(3,17,13,0.85) 100%),
    linear-gradient(135deg, var(--accent, var(--wine)) 0%, transparent 60%);
  mix-blend-mode: multiply;
  opacity: 0.95;
  transition: opacity var(--transition-lux);
  pointer-events: none;
}
.culture-tile:hover::before { opacity: 0.75; }

/* Soft bronze top-line accent */
.culture-tile::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--bronze);
  z-index: 3;
  transition: width 1.2s var(--transition-lux);
}
.culture-tile:hover::after { width: 100%; }

.culture-tile__body {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--bone);
}
@media (max-width: 600px) { .culture-tile__body { padding: 2rem; } }

.culture-tile__index {
  position: absolute;
  top: 2rem;
  left: 3rem;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bronze-light);
  opacity: 0.85;
}
@media (max-width: 600px) { .culture-tile__index { top: 1.5rem; left: 2rem; } }

.culture-tile__chip {
  width: 56px;
  height: 4px;
  background: var(--accent, var(--bronze));
  margin-bottom: 1.5rem;
  transform-origin: left center;
  transform: scaleX(0.4);
  transition: transform 0.55s var(--transition-lux);
}
.culture-tile:hover .culture-tile__chip { transform: scaleX(1); }

.culture-tile__name {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
  transform: translateY(8px);
  transition: transform var(--transition-lux);
}
.culture-tile:hover .culture-tile__name { transform: translateY(0); }

.culture-tile__hex {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--bronze-light);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.culture-tile__desc {
  font-size: 0.82rem;
  line-height: 1.7;
  font-weight: 300;
  color: rgba(242, 239, 233, 0.82);
  max-width: 32ch;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.8s var(--transition-lux),
              opacity 0.6s ease 0.2s;
}
.culture-tile:hover .culture-tile__desc {
  max-height: 200px;
  opacity: 1;
}
/* On touch/mobile: always show description */
@media (hover: none) {
  .culture-tile__desc { max-height: 200px; opacity: 1; }
  .culture-tile__chip { transform: scaleX(1); }
}

/* ============================================================
   LV-STYLE MODERN ANIMATIONS
   ============================================================ */

/* Cinematic page entry */
@keyframes lux-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lux-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes lux-line-grow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* Refined reveal — snappy LV-style entry */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.45s var(--transition-lux),
              transform 0.55s var(--transition-lux);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children with sequential delays */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--transition-lux),
              transform 0.9s var(--transition-lux);
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.20s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.28s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.36s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(n+6) { transition-delay: 0.44s; opacity: 1; transform: translateY(0); }

/* Magnetic / lifting CTA buttons */
.btn-gold,
.btn-buy {
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-lux),
              box-shadow var(--transition-lux),
              background var(--transition),
              color var(--transition);
}
.btn-gold::before,
.btn-buy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.9s var(--transition-lux);
  pointer-events: none;
}
.btn-gold:hover,
.btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(3, 17, 13, 0.18);
}
.btn-gold:hover::before,
.btn-buy:hover::before { transform: translateX(120%); }

/* Smooth nav-link underline (LV-style) */
.nav__links a::after {
  background: var(--bronze);
  transition: width var(--transition-lux), background var(--transition);
}

/* Bronze "gold-line" accent uses bronze */
.gold-line { background: var(--bronze) !important; }

/* Override existing hero title em accent to bronze */
.hero__title em,
.about-hero__title em,
.story__title em,
.page-hero__title em,
.about-hero em { color: var(--bronze) !important; }

/* Smooth image entry */
img { transition: opacity 0.6s var(--transition-lux); }

/* Section title spacing — premium */
.section__title {
  letter-spacing: -0.005em;
}

/* Subtle parallax-ready hero — JS adds translate based on scroll */
.hero__gallery { will-change: transform; }
.hero__gallery-item img { will-change: transform; }

/* Footer refinement — darker, LV-like */
.footer { background: var(--ink); }
.footer__col-title { color: var(--bronze-light); }
.footer__copy span,
.footer__brand-desc { color: rgba(242, 239, 233, 0.7); }

/* Marquee — bronze tint on wine */
.marquee-banner { background: var(--wine); }
.marquee-track span { color: var(--bronze-light); }

/* Quote section premium feel */
.quote-section { background: var(--wine); }
.quote-text { color: var(--bone); }
.quote-text span { color: var(--bronze) !important; font-style: italic; }
.quote-author { color: var(--bronze-light); }

/* Slow shimmer on hero eyebrow */
.hero__eyebrow {
  background: linear-gradient(90deg, var(--bronze) 0%, var(--bronze-light) 50%, var(--bronze) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Hero CTA button refinement */
.btn-gold {
  background: var(--bronze);
  color: var(--ink);
  border: 1px solid var(--bronze);
}
.btn-gold:hover { background: var(--bronze-light); color: var(--ink); border-color: var(--bronze-light); }
.btn-outline {
  border-color: rgba(242, 239, 233, 0.4);
  color: var(--bone);
}
.btn-outline:hover {
  background: var(--bone);
  color: var(--ink);
  border-color: var(--bone);
}

/* Product cards on luxury bone */
.product-card { background: var(--bone-dark); }
.product-card:hover { background: var(--bone-deeper); }

/* Smooth-scrolling vibe */
html { scroll-padding-top: 90px; }

/* Tweak section padding for cinematic breathing room */
.craft { padding-top: 9rem; padding-bottom: 9rem; }
.craft .section__header { margin-bottom: 5rem; }

/* ============================================================
   CINEMATIC HOME — Hero, Manifesto, Editorial Rows, Break
   ============================================================ */

/* ── Cinematic Hero (full-screen LV style) ───────────────── */
.hero-lux {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  color: var(--bone);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 9rem 4rem 3.5rem;
  isolation: isolate;
}
@media (max-width: 768px) { .hero-lux { padding: 8rem 1.5rem 2.5rem; min-height: 88vh; } }

.hero-lux__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 30%, rgba(163, 133, 96, 0.18), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(57, 5, 23, 0.4), transparent 60%),
    linear-gradient(180deg, var(--ink) 0%, var(--wine-dark) 100%);
  z-index: 0;
}

/* ── Full-bleed hero photo with radiant fade toward the text ─ */
.hero-lux__photo-bleed {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  /* Mask fades the photo to transparent on the LEFT (where text sits) and
     becomes fully opaque on the RIGHT — letting the dark wine bg show
     through behind the headline. */
  -webkit-mask-image: linear-gradient(90deg,
      transparent 0%, transparent 32%,
      rgba(0,0,0,0.45) 48%, rgba(0,0,0,0.85) 64%,
      #000 78%, #000 100%);
          mask-image: linear-gradient(90deg,
      transparent 0%, transparent 32%,
      rgba(0,0,0,0.45) 48%, rgba(0,0,0,0.85) 64%,
      #000 78%, #000 100%);
  animation: heroFloat 0.7s var(--transition-lux) 0.2s both;
}
.hero-lux__photo-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-lux__photo-slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 65% center;
  opacity: 0;
  transition: opacity 1.4s var(--transition-lux);
  will-change: opacity;
}
.hero-lux__photo-slide.is-current { opacity: 1; }

@keyframes heroFloat {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  /* On mobile, the photo fades from top down so the text reads on bottom */
  .hero-lux__photo-bleed {
    -webkit-mask-image: linear-gradient(180deg,
      #000 0%, #000 35%, rgba(0,0,0,0.45) 65%, transparent 100%);
            mask-image: linear-gradient(180deg,
      #000 0%, #000 35%, rgba(0,0,0,0.45) 65%, transparent 100%);
  }
}

.hero-lux__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(3,17,13,0.92) 0%, rgba(3,17,13,0.55) 45%, rgba(3,17,13,0.15) 100%);
  pointer-events: none;
}

.hero-lux__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  max-width: 1400px;
  width: 100%;
}

.hero-lux__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bronze-light);
  margin-bottom: 4rem;
  animation: lux-fade-in 0.55s var(--transition-lux) 0.2s both;
}
.hero-lux__est {
  border: 1px solid var(--bronze);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  color: var(--bronze);
}

.hero-lux__title {
  font-family: var(--font-serif);
  font-size: clamp(4.5rem, 11vw, 11rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.015em;
  color: var(--bone);
  margin: auto 0;
}
.hero-lux__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--bronze) !important;
  display: inline-block;
  animation: lux-line-grow 0.7s var(--transition-lux) 0.8s both;
  transform-origin: left;
}
.hero-lux__title {
  animation: lux-fade-up 0.7s var(--transition-lux) 0.3s both;
}

.hero-lux__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-top: 3rem;
  animation: lux-fade-up 0.6s var(--transition-lux) 0.8s both;
}
@media (max-width: 900px) {
  .hero-lux__bottom { grid-template-columns: 1fr; gap: 1.5rem; }
}
.hero-lux__lede {
  max-width: 380px;
  font-size: 0.88rem;
  line-height: 1.85;
  font-weight: 300;
  color: rgba(242, 239, 233, 0.72);
}
.hero-lux__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-self: end;
}
@media (max-width: 900px) { .hero-lux__actions { justify-self: start; } }
.hero-lux__cta { padding: 1.1rem 2rem; font-size: 0.65rem; letter-spacing: 0.22em; }
.hero-lux__cta-alt {
  color: var(--bronze-light) !important;
  border-color: var(--bronze) !important;
  background: transparent;
}
.hero-lux__cta-alt:hover { background: var(--bronze) !important; color: var(--ink) !important; }

.hero-lux__scroll {
  position: absolute;
  bottom: 2rem;
  left: 4rem;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--bronze-light);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.85;
  animation: lux-fade-in 0.55s var(--transition-lux) 0.7s both;
}
.hero-lux__scroll-line {
  width: 80px;
  height: 1px;
  background: var(--bronze);
  position: relative;
  overflow: hidden;
}
.hero-lux__scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bone);
  transform: translateX(-100%);
  animation: scroll-drift 2.4s ease-in-out infinite;
}
@keyframes scroll-drift {
  0%,100% { transform: translateX(-100%); }
  50%     { transform: translateX(100%); }
}
@media (max-width: 768px) { .hero-lux__scroll { left: 1.5rem; bottom: 1.2rem; } }

/* ── Manifesto — oversized editorial statement ──────────── */
.manifesto {
  padding: 12rem 4rem 11rem;
  background: var(--bone);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) { .manifesto { padding: 7rem 1.5rem 6rem; } }

.manifesto__label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bronze-dark);
  margin-bottom: 4rem;
}
.manifesto__text {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--wine);
  max-width: 1100px;
}
.manifesto__text em {
  font-style: italic;
  color: var(--bronze) !important;
}
.manifesto__sign {
  margin-top: 4rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--subtle);
}

/* ── Editorial Collections — alternating rows ───────────── */
.editorial {
  padding: 10rem 4rem;
  background: var(--bone);
}
@media (max-width: 768px) { .editorial { padding: 6rem 1.5rem; } }

.editorial__header {
  max-width: 1400px;
  margin: 0 auto 6rem;
  text-align: center;
}
.editorial__header .section__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--wine);
}

.editorial__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto 10rem;
  text-decoration: none;
  color: inherit;
}
.editorial__row:last-of-type { margin-bottom: 4rem; }
.editorial__row--right .editorial__media { order: 2; }
.editorial__row--right .editorial__copy  { order: 1; }
@media (max-width: 900px) {
  .editorial__row { grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 6rem; }
  .editorial__row--right .editorial__media { order: 1; }
  .editorial__row--right .editorial__copy  { order: 2; }
}

.editorial__media {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bone-dark);
}
.editorial__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--transition-lux);
}
.editorial__row:hover .editorial__media img { transform: scale(1.06); }

.editorial__copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 480px;
}
.editorial__num {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--bronze);
  font-style: italic;
}
.editorial__tag {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze-dark);
}
.editorial__name {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--wine);
}
.editorial__name em { color: var(--bronze) !important; font-style: italic; }
.editorial__desc {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--body);
  font-weight: 300;
}
.editorial__cta {
  margin-top: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--wine);
  position: relative;
  padding-bottom: 0.4rem;
  align-self: start;
}
.editorial__cta::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--bronze);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform var(--transition-lux);
}
.editorial__row:hover .editorial__cta::after { transform: scaleX(0.4); transform-origin: right; }

.editorial__viewall {
  text-align: center;
  margin-top: 2rem;
}

/* ── Cinematic break — full-bleed editorial image ───────── */
.cinematic-break {
  position: relative;
  height: 90vh;
  min-height: 600px;
  overflow: hidden;
  isolation: isolate;
}
@media (max-width: 768px) { .cinematic-break { height: 60vh; min-height: 420px; } }
.cinematic-break__img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
  transform: scale(1.05);
  transition: transform 8s var(--transition-lux);
}
.cinematic-break.visible .cinematic-break__img { transform: scale(1); }
.cinematic-break__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(3,17,13,0.25) 0%, rgba(3,17,13,0.65) 100%);
}
.cinematic-break__caption {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0 2rem;
  text-align: center;
  color: var(--bone);
}
.cinematic-break__caption .label {
  color: var(--bronze-light);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
}
.cinematic-break__quote {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  max-width: 800px;
}
.cinematic-break__quote em { color: var(--bronze) !important; font-style: italic; }

/* ── Quote section — cinematic refinement ───────────────── */
.quote-section {
  padding: 12rem 2rem !important;
}
.quote-section::before {
  font-size: clamp(8rem, 18vw, 22rem) !important;
  color: var(--bronze) !important;
  opacity: 0.18;
  top: 3rem !important;
}
.quote-text {
  font-size: clamp(1.8rem, 4vw, 3.4rem) !important;
  line-height: 1.25 !important;
  font-weight: 300;
  max-width: 900px;
  margin: 0 auto;
}

/* ── Newsletter — minimal editorial ─────────────────────── */
.newsletter {
  background: var(--bone) !important;
  color: var(--wine);
  padding: 8rem 2rem !important;
}
.newsletter .label { color: var(--bronze-dark); }
.newsletter__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 4rem) !important;
  font-weight: 400;
  color: var(--wine);
  margin-bottom: 1rem;
}
.newsletter__sub { color: var(--subtle); font-size: 0.88rem; }
.newsletter__form {
  max-width: 480px;
  margin: 2.5rem auto 0;
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(112, 39, 31, 0.25);
}
.newsletter__input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 1rem 0;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--wine);
}
.newsletter__input:focus { outline: 0; border-color: var(--bronze); }
.newsletter__input::placeholder { color: var(--subtle); }
.newsletter__btn {
  background: transparent;
  border: 0;
  color: var(--bronze-dark);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0 1.4rem;
  cursor: pointer;
  transition: color var(--transition);
}
.newsletter__btn:hover { color: var(--wine); }

/* ============================================================
   LV-STYLE PRODUCT CARDS (Lux variant)
   ============================================================ */
.product-card--lux {
  background: transparent !important;
  cursor: pointer;
  padding: 0;
  border: 0;
  outline: none;
  transition: transform var(--transition-lux);
}
.product-card--lux:focus-visible { box-shadow: 0 0 0 2px var(--bronze); }

.product-card--lux .product-card__img-wrap {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  background: var(--bone-dark);
  margin-bottom: 1.5rem;
}
.product-card--lux .product-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--transition-lux);
}
.product-card--lux:hover .product-card__img-wrap img {
  transform: scale(1.04);
}

.product-card__hover-cue {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 0.7rem 1.4rem;
  opacity: 0;
  transition: opacity 0.5s var(--transition-lux),
              transform 0.6s var(--transition-lux);
  pointer-events: none;
  white-space: nowrap;
}
.product-card--lux:hover .product-card__hover-cue {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.product-card--lux .product-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--bronze);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  z-index: 2;
}

.product-card--lux .product-card__body { padding: 0; }
.product-card--lux .product-card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.6rem;
}
.product-card--lux .product-card__name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--wine);
  line-height: 1.2;
}
.product-card--lux .product-card__tag {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--subtle);
}
.product-card--lux .product-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.product-card--lux .product-card__price {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--wine);
}
.product-card--lux .product-card__dots {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.product-card--lux .dot {
  width: 11px; height: 11px;
  display: inline-block;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.15);
}
.product-card--lux .dot-more {
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--subtle);
  margin-left: 0.2rem;
}

/* Refined grid spacing */
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 4rem 4rem;
}
@media (max-width: 900px) {
  .products__grid { grid-template-columns: repeat(2, 1fr); padding: 2rem 1.5rem 3rem; gap: 2rem 1rem; }
}
@media (max-width: 500px) {
  .products__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRODUCT DETAIL PAGE (PDP) — full-screen LV-style
   ============================================================ */
.pdp {
  position: fixed;
  inset: 0;
  z-index: 10020;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3vh 3vw;
}
.pdp__overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 17, 13, 0.72);
  /* Light blur only on devices that can handle it efficiently */
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.35s var(--transition-lux);
}
@media (max-width: 768px) {
  .pdp__overlay { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(3, 17, 13, 0.85); }
}
.pdp__panel {
  position: relative;
  z-index: 1;
  background: var(--bone);
  width: 100%;
  max-width: 1200px;
  max-height: 94vh;
  overflow-y: auto;
  border-radius: 4px;
  box-shadow: 0 40px 100px rgba(3, 17, 13, 0.45);
  transform: translateY(40px) scale(0.97);
  opacity: 0;
  transition: transform 0.6s var(--transition-lux),
              opacity 0.5s ease;
}
.pdp.open { pointer-events: auto; }
.pdp.open .pdp__overlay { opacity: 1; }
.pdp.open .pdp__panel { transform: translateY(0) scale(1); opacity: 1; }

.pdp__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: auto;
  position: relative;
}
@media (max-width: 900px) {
  .pdp { padding: 0; }
  .pdp__panel { max-height: 100vh; max-width: 100%; border-radius: 0; }
  .pdp__inner { grid-template-columns: 1fr; }
}

.pdp__close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 5;
  background: var(--bone);
  border: 1px solid rgba(112, 39, 31, 0.18);
  border-radius: 999px;
  width: 40px; height: 40px;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--wine);
  cursor: pointer;
  transition: var(--transition-lux);
  box-shadow: 0 6px 16px rgba(3, 17, 13, 0.18);
}
.pdp__close:hover { background: var(--wine); color: var(--bone); border-color: var(--wine); transform: rotate(90deg); }

/* Gallery side */
.pdp__gallery {
  background: var(--bone-dark);
  padding: 2.5rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
@media (max-width: 600px) { .pdp__gallery { padding: 3.5rem 1rem 1.5rem; } }

.pdp__main {
  aspect-ratio: 4/5;
  background: var(--bone-deeper);
  overflow: hidden;
  position: relative;
}
.pdp__main-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.5s var(--transition-lux);
}
.pdp__main-missing {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  border: 1px dashed rgba(112, 39, 31, 0.18);
  color: var(--subtle);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pdp__thumbs {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.pdp__thumb {
  width: 72px; height: 72px;
  border: 1px solid transparent;
  background: transparent;
  padding: 2px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color var(--transition-lux);
}
.pdp__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp__thumb:hover { border-color: rgba(112, 39, 31, 0.4); }
.pdp__thumb.is-active { border-color: var(--bronze); }

/* Info side */
.pdp__info {
  padding: 3rem 3rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
@media (max-width: 900px) {
  .pdp__info { padding: 2rem 1.5rem 2.5rem; }
}

.pdp__breadcrumb {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--subtle);
  margin: 0;
}
.pdp__breadcrumb a { color: var(--subtle); }
.pdp__breadcrumb a:hover { color: var(--bronze); }
.pdp__breadcrumb span { color: var(--wine); }

.pdp__name {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--wine);
  line-height: 1.05;
  margin: 0.4rem 0 0.2rem;
}
.pdp__size {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-dark);
}

.pdp__price-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-top: 0.6rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(112, 39, 31, 0.12);
}
.pdp__price {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--wine);
}
.pdp__price-hint {
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--subtle);
}

.pdp__desc {
  font-size: 0.88rem;
  color: var(--body);
  line-height: 1.85;
  font-weight: 300;
  margin: 0.5rem 0 0.5rem;
}

.pdp__section { display: flex; flex-direction: column; gap: 0.8rem; }
.pdp__label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--wine);
}
.pdp__selected-color {
  color: var(--bronze-dark);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: none;
}

.pdp__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.6rem;
}
.pdp__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem 0.45rem 0.5rem;
  background: transparent;
  border: 1px solid rgba(112, 39, 31, 0.18);
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--transition-lux);
  font-family: var(--font-sans);
  position: relative;
}
.pdp__chip:hover { border-color: var(--bronze); transform: translateY(-1px); }
.pdp__chip.is-active {
  border-color: var(--wine);
  background: var(--wine);
  color: var(--bone);
}
.pdp__chip.is-active .pdp__chip-label { color: var(--bone); }
.pdp__chip-dot {
  width: 18px; height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.15);
  flex-shrink: 0;
}
.pdp__chip-label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--wine);
}
.pdp__chip.is-missing::after {
  content: '';
  position: absolute;
  top: 4px; right: 4px;
  width: 5px; height: 5px;
  background: var(--bronze);
  border-radius: 999px;
}

.pdp__qty-row {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(112, 39, 31, 0.12);
  padding-bottom: 1.5rem;
  margin-bottom: 0.5rem;
}
.qty-stepper--lg button { width: 36px; height: 36px; font-size: 1.1rem; }
.qty-stepper--lg .qty-value { font-size: 0.95rem; min-width: 32px; }

.pdp__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.4rem;
}
@media (max-width: 500px) { .pdp__actions { grid-template-columns: 1fr; } }
.pdp__add {
  background: transparent;
  color: var(--wine);
  border: 1px solid var(--wine);
  padding: 1rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-lux);
}
.pdp__add:hover { background: var(--wine); color: var(--bone); }
.pdp__buy { padding: 1rem 1.5rem; font-size: 0.65rem; letter-spacing: 0.22em; }

.pdp__accordion {
  border-top: 1px solid rgba(112, 39, 31, 0.12);
  padding: 1.2rem 0;
}
.pdp__accordion:last-child { border-bottom: 1px solid rgba(112, 39, 31, 0.12); }
.pdp__accordion summary {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.pdp__accordion summary::-webkit-details-marker { display: none; }
.pdp__accordion summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--bronze);
  transition: transform var(--transition-lux);
}
.pdp__accordion[open] summary::after { content: '−'; }
.pdp__accordion p {
  margin-top: 1rem;
  font-size: 0.8rem;
  line-height: 1.85;
  color: var(--body);
  font-weight: 300;
}




/* ============================================================
   INNER PAGES — Luxury editorial polish
   (about / values / contact / faq)
   ============================================================ */

/* ── Values grid — refined ─────────────────────────────── */
.values-grid {
  max-width: 1400px;
  margin: 0 auto;
}
.value-item {
  background: var(--bone-dark);
  padding: 3rem 2.5rem;
  border: 1px solid rgba(112, 39, 31, 0.06);
  transition: var(--transition-lux);
  position: relative;
  overflow: hidden;
}
.value-item:hover {
  background: var(--bone-deeper);
  transform: translateY(-4px);
}
.value-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--bronze);
  transition: width 0.8s var(--transition-lux);
}
.value-item:hover::before { width: 100%; }
.value-item__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 3rem;
  font-weight: 300;
  color: var(--bronze);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.value-item__title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--wine);
  margin-bottom: 1rem;
}
.value-item__text {
  font-size: 0.86rem;
  color: var(--body);
  line-height: 1.85;
  font-weight: 300;
}

/* ── Story section — editorial overlap ──────────────────── */
.story {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 0;
  background: var(--bone);
  padding: 0;
  align-items: stretch;
  min-height: 80vh;
  position: relative;
}
@media (max-width: 1024px) {
  .story { grid-template-columns: 1fr; }
}
.story__image {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  background: var(--bone-dark);
}
.story__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
  transition: transform 1.4s var(--transition-lux);
  transform: scale(1.04);
}
.story:hover .story__image img { transform: scale(1.12); }
.story__image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(3,17,13,0.35) 100%);
  z-index: 1;
}
.story__content {
  padding: 7rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 700px;
}
@media (max-width: 1024px) { .story__content { padding: 5rem 1.5rem; } }
.story__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.005em;
  color: var(--wine);
  margin: 1.5rem 0 2rem;
}
.story__title em { color: var(--bronze) !important; font-style: italic; }
.story__text {
  font-size: 0.95rem;
  line-height: 1.95;
  color: var(--body);
  font-weight: 300;
  margin-bottom: 1.5rem;
  max-width: 560px;
}
.story__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(112, 39, 31, 0.12);
  border-bottom: 1px solid rgba(112, 39, 31, 0.12);
  max-width: 560px;
}
.story__stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 500;
  color: var(--wine);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.story__stat-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-dark);
}

/* ── Values section background ──────────────────────────── */
section[style*="black-soft"] { background: var(--bone-dark) !important; }

/* ── Contact section — editorial ─────────────────────────── */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 8rem 4rem;
  background: var(--bone);
}
@media (max-width: 900px) {
  .contact-section { grid-template-columns: 1fr; gap: 3.5rem; padding: 5rem 1.5rem; }
}
.contact__info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1;
  color: var(--wine);
  margin: 1rem 0 1.5rem;
}
.contact__text {
  font-size: 0.92rem;
  line-height: 1.95;
  color: var(--body);
  font-weight: 300;
  max-width: 500px;
}
.contact__details {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(112, 39, 31, 0.12);
}
.contact__detail-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze-dark);
  margin-bottom: 0.6rem;
}
.contact__detail-value {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--wine);
}
.contact__detail-value a { color: var(--wine); transition: color var(--transition); }
.contact__detail-value a:hover { color: var(--bronze); }

/* Contact form — editorial */
.contact__form {
  background: var(--bone-dark);
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
@media (max-width: 600px) { .contact__form { padding: 2rem 1.5rem; } }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin: 0; }
.form-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-dark);
}
.form-input, .form-textarea, .form-select {
  background: var(--bone);
  border: 1px solid rgba(112, 39, 31, 0.15);
  padding: 0.9rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--wine);
  border-radius: 0;
  width: 100%;
  transition: border-color var(--transition);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: 0;
  border-color: var(--bronze);
}
.form-textarea { min-height: 120px; resize: vertical; }

/* ── FAQ refined ─────────────────────────────────────────── */
section[style*="var(--black)"] { background: var(--bone-dark) !important; }
section[style*="var(--black)"] .value-item {
  background: var(--bone);
  padding: 2.5rem 3rem;
}
section[style*="var(--black)"] .value-item__title {
  font-size: 1.2rem;
}

/* ============================================================
   PERFORMANCE — Respect user motion preference + GPU-friendly
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Promote heavy images to their own GPU layer for smooth transitions */
.editorial__media img,
.culture-tile__media img,
.about-hero__photo img,
.story__image img,
.hero-lux__slide img,
.pdp__main-img,
.product-card__img { backface-visibility: hidden; }

/* Avoid layout thrash on transitions */
.product-card__img-wrap,
.editorial__media,
.culture-tile,
.story__image { contain: paint; }

/* Reduce simultaneous animations on lower-tier screens */
@media (max-width: 900px) {
  .hero-lux__slide img,
  .about-hero__photo img,
  .editorial__media img,
  .story__image img,
  .culture-tile__media img { transition-duration: 0.6s !important; }
  /* Disable the shimmer animation on mobile (uses paint each frame) */
  .hero__eyebrow { animation: none !important; background: none !important; color: var(--bronze) !important; -webkit-text-fill-color: var(--bronze) !important; }
}

/* ============================================================
   PDP SIZE BUTTONS + colour-swatch thumb fallback
   ============================================================ */
.pdp__sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.pdp__size-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  padding: 0.8rem 1.2rem;
  background: transparent;
  border: 1px solid rgba(112, 39, 31, 0.18);
  border-radius: 3px;
  cursor: pointer;
  transition: all var(--transition-lux);
  font-family: var(--font-sans);
  min-width: 120px;
}
.pdp__size-btn:hover { border-color: var(--bronze); transform: translateY(-1px); }
.pdp__size-btn.is-active {
  border-color: var(--wine);
  background: var(--wine);
  color: var(--bone);
}
.pdp__size-btn.is-active .pdp__size-btn-label,
.pdp__size-btn.is-active .pdp__size-btn-price { color: var(--bone); }
.pdp__size-btn-label {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--wine);
}
.pdp__size-btn-price {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--subtle);
}

/* Thumb fallback (colour-only — no photo) */
.pdp__thumb-color {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.12);
}

/* Product card emoji placeholder for Local + Botanics */
.product-card__img-missing-emoji {
  font-size: 5rem;
  opacity: 0.55;
}

/* ============================================================
   STORY full-bleed with radiant fade toward text
   ============================================================ */
.story {
  display: block !important;
  position: relative;
  min-height: 88vh;
  padding: 0;
  overflow: hidden;
  background: var(--bone);
}
.story__image {
  position: absolute !important;
  inset: 0;
  min-height: auto !important;
  z-index: 0;
}
.story__image img {
  object-position: 35% center;
  /* Fade the photo on the RIGHT (where text sits) */
  -webkit-mask-image: linear-gradient(90deg,
      #000 0%, #000 35%,
      rgba(0,0,0,0.7) 50%,
      rgba(0,0,0,0.2) 70%,
      transparent 88%);
          mask-image: linear-gradient(90deg,
      #000 0%, #000 35%,
      rgba(0,0,0,0.7) 50%,
      rgba(0,0,0,0.2) 70%,
      transparent 88%);
}
.story__image-overlay { display: none; }
.story__content {
  position: relative;
  z-index: 1;
  margin-left: auto;
  width: clamp(420px, 50%, 700px);
  padding: 7rem 4rem 7rem 0 !important;
  background: transparent;
}
@media (max-width: 1024px) {
  .story { min-height: auto; }
  .story__image img {
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 40%, rgba(0,0,0,0.4) 75%, transparent 100%);
            mask-image: linear-gradient(180deg, #000 0%, #000 40%, rgba(0,0,0,0.4) 75%, transparent 100%);
  }
  .story__image { position: relative !important; height: 60vh; }
  .story__content { width: 100%; padding: 4rem 1.5rem !important; margin: 0; }
}

/* About-hero also gets fade-from-photo style */
.about-hero__media {
  position: absolute;
  inset: 0;
  height: 100% !important;
  z-index: 0;
}
.about-hero__photo--main {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  top: 0 !important; left: 0 !important;
  box-shadow: none;
}
.about-hero__photo--small { display: none; }
.about-hero__photo--main img {
  -webkit-mask-image: linear-gradient(90deg,
      transparent 0%, transparent 28%,
      rgba(0,0,0,0.4) 45%, rgba(0,0,0,0.85) 62%,
      #000 78%, #000 100%);
          mask-image: linear-gradient(90deg,
      transparent 0%, transparent 28%,
      rgba(0,0,0,0.4) 45%, rgba(0,0,0,0.85) 62%,
      #000 78%, #000 100%);
  object-position: 70% center;
}
@media (max-width: 1024px) {
  .about-hero { grid-template-columns: 1fr; }
  .about-hero__content { position: relative; z-index: 1; }
  .about-hero__photo--main img {
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 35%, #000 75%);
            mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 35%, #000 75%);
  }
}

/* ============================================================
   SHOP PAGE HERO — horizontal slide carousel + radiant fade
   ============================================================ */
.page-hero--shop {
  position: relative;
  overflow: hidden;
}
.page-hero__slider {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  /* Mask fades photo to transparent on LEFT (where text sits),
     fully opaque on the RIGHT. Creates the "radiant" join. */
  -webkit-mask-image: linear-gradient(90deg,
      transparent 0%, transparent 30%,
      rgba(0,0,0,0.35) 44%, rgba(0,0,0,0.75) 58%,
      #000 72%, #000 100%);
          mask-image: linear-gradient(90deg,
      transparent 0%, transparent 30%,
      rgba(0,0,0,0.35) 44%, rgba(0,0,0,0.75) 58%,
      #000 72%, #000 100%);
}
.page-hero__slider-track {
  display: flex;
  height: 100%;
  width: 100%;
  animation: pageHeroSlide 32s cubic-bezier(0.65, 0.05, 0.36, 1) infinite;
  will-change: transform;
}
.page-hero__slide {
  flex: 0 0 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 50% center;
  display: block;
  filter: saturate(0.92) brightness(0.88);
}

/* 5 unique frames + 1 clone of first = 6 stops, ~5.3s each */
@keyframes pageHeroSlide {
  0%, 14%    { transform: translateX(0); }
  17%, 31%   { transform: translateX(-100%); }
  34%, 48%   { transform: translateX(-200%); }
  51%, 65%   { transform: translateX(-300%); }
  68%, 82%   { transform: translateX(-400%); }
  85%, 100%  { transform: translateX(-500%); }
}

/* Make sure the text content sits ABOVE the slider */
.page-hero--shop .page-hero__content { position: relative; z-index: 2; }

/* On mobile, drop the slider behind less aggressive mask + lower opacity */
@media (max-width: 768px) {
  .page-hero__slider {
    opacity: 0.55;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.55) 55%, #000 100%);
            mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.55) 55%, #000 100%);
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .page-hero__slider-track { animation: none; }
}
