:root {
  --bch-wine-950: #4A0019;
  --bch-wine-800: #6D0D2D;
  --bch-rose-500: #A8556E;
  --bch-blush-50: #FDF9FA;
  --bch-blush-100: #F6EEF1;
  --bch-blush-200: #EBD8DF;
  --bch-ink: #22151A;
  --bch-accent: #D9B6A3;
  --bch-paper: #fffaf7;
  --bch-green: #31483a;
  --bch-blue: #27384d;
  --bch-serif: "Cormorant Garamond", Georgia, serif;
  --bch-sans: "Inter", system-ui, sans-serif;
  --bch-shadow: 0 28px 70px rgba(74, 0, 25, 0.14);
  --bch-soft-shadow: 0 16px 42px rgba(34, 21, 26, 0.1);
  --bch-radius: 24px;
  --bch-max: 1180px;
}

html {
  scroll-behavior: smooth;
}

body.luxury-site {
  margin: 0;
  background: var(--bch-blush-50);
  color: var(--bch-ink);
  font-family: var(--bch-sans);
  letter-spacing: 0;
}

body.luxury-site::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 12%, rgba(217, 182, 163, 0.38), transparent 28rem),
    linear-gradient(130deg, rgba(74, 0, 25, 0.08), transparent 42%),
    var(--bch-blush-50);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bch-accent), var(--bch-rose-500), var(--bch-wine-950));
  box-shadow: 0 0 18px rgba(168, 85, 110, 0.45);
}

.luxury-nav {
  max-width: calc(var(--bch-max) + 64px);
  border: 1px solid rgba(235, 216, 223, 0.75);
  background: rgba(253, 249, 250, 0.82);
  backdrop-filter: blur(24px);
}

.luxury-nav .logo span {
  font-family: var(--bch-serif);
  font-size: 1.25rem;
  letter-spacing: 0.01em;
}

.btn-ghost {
  border: 1px solid rgba(74, 0, 25, 0.18);
  background: rgba(255, 255, 255, 0.48);
  color: var(--bch-wine-950);
}

.luxury-main {
  overflow: hidden;
}

.luxury-hero {
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  max-width: var(--bch-max);
  margin: 0 auto;
  padding: clamp(84px, 11vw, 150px) 24px clamp(56px, 8vw, 96px);
  position: relative;
}

.luxury-hero.compact {
  min-height: 62vh;
}

.luxury-hero::after {
  content: "";
  position: absolute;
  inset: auto 5% 9% auto;
  width: 33vw;
  max-width: 420px;
  height: 33vw;
  max-height: 420px;
  border: 1px solid rgba(217, 182, 163, 0.34);
  border-radius: 50%;
  opacity: 0.7;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--bch-wine-800);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.luxury-hero h1,
.editorial-band h2,
.section-title,
.feature-story h2,
.product-detail h1,
.checkout-shell h1 {
  margin: 0;
  color: var(--bch-wine-950);
  font-family: var(--bch-serif);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: 0;
}

.luxury-hero h1 {
  max-width: 760px;
  font-size: clamp(4rem, 9vw, 8.6rem);
}

.luxury-hero p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(34, 21, 26, 0.72);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  line-height: 1.8;
}

.hero-actions,
.luxury-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.luxury-button,
.luxury-site .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.luxury-button.primary,
.luxury-site .btn-gold {
  border: 1px solid rgba(217, 182, 163, 0.55);
  background: linear-gradient(135deg, var(--bch-wine-950), var(--bch-wine-800));
  color: white;
  box-shadow: 0 18px 36px rgba(74, 0, 25, 0.2);
}

.luxury-button.secondary {
  border: 1px solid rgba(74, 0, 25, 0.2);
  background: rgba(255, 255, 255, 0.66);
  color: var(--bch-wine-950);
}

.luxury-button:hover,
.luxury-site .btn:hover {
  transform: translateY(-2px);
}

.hero-media {
  position: relative;
  min-height: clamp(420px, 58vw, 680px);
}

.hero-frame {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--bch-shadow);
}

.hero-frame img,
.masonry-card img,
.product-card-luxe img,
.journal-card img,
.story-image img,
.gallery-tile img,
.detail-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-frame.main {
  inset: 7% 0 8% 16%;
}

.hero-frame.small {
  inset: auto 52% 0 0;
  height: 34%;
  border: 10px solid rgba(253, 249, 250, 0.85);
}

.hero-badge {
  position: absolute;
  right: 0;
  bottom: 16%;
  z-index: 2;
  max-width: 210px;
  padding: 20px;
  border: 1px solid rgba(235, 216, 223, 0.9);
  border-radius: 22px;
  background: rgba(253, 249, 250, 0.86);
  box-shadow: var(--bch-soft-shadow);
  backdrop-filter: blur(18px);
}

.hero-badge strong {
  display: block;
  color: var(--bch-wine-950);
  font-family: var(--bch-serif);
  font-size: 2rem;
  line-height: 1;
}

.luxury-section {
  max-width: var(--bch-max);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) 24px;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.45fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-title {
  font-size: clamp(2.7rem, 6vw, 5.7rem);
}

.section-header p,
.editorial-band p,
.feature-story p,
.checkout-shell p {
  color: rgba(34, 21, 26, 0.66);
  line-height: 1.75;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 160px;
  gap: 16px;
}

.masonry-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--bch-radius);
  background: var(--bch-blush-100);
  box-shadow: var(--bch-soft-shadow);
}

.masonry-card:nth-child(1),
.masonry-card:nth-child(4) {
  grid-row: span 2;
}

.masonry-card:nth-child(2) {
  grid-column: span 2;
}

.masonry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(34, 21, 26, 0.72));
}

.masonry-card figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  color: white;
}

.masonry-card h3,
.product-card-luxe h3,
.journal-card h3,
.note-card h3 {
  margin: 0 0 8px;
  font-family: var(--bch-serif);
  font-size: 1.85rem;
  line-height: 1;
}

.product-grid-luxe,
.journal-grid,
.note-grid,
.admin-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card-luxe,
.journal-card,
.note-card,
.quote-panel,
.checkout-card,
.process-card {
  position: relative;
  border: 1px solid rgba(235, 216, 223, 0.82);
  border-radius: var(--bch-radius);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--bch-soft-shadow);
  overflow: hidden;
}

.product-card-luxe .media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bch-blush-100);
}

.product-card-luxe .content,
.journal-card .content,
.note-card,
.quote-panel,
.checkout-card,
.process-card {
  padding: 24px;
}

.product-card-luxe .meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(34, 21, 26, 0.62);
  font-size: 0.9rem;
}

.price-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}

.price-line strong {
  color: var(--bch-wine-800);
  font-size: 1.25rem;
}

.quick-panel {
  position: absolute;
  inset: auto 14px 14px;
  display: flex;
  gap: 10px;
  opacity: 0;
  transform: translateY(12px);
  transition: 220ms ease;
}

.product-card-luxe:hover .quick-panel {
  opacity: 1;
  transform: translateY(0);
}

.editorial-band {
  margin: clamp(56px, 9vw, 120px) 0;
  padding: clamp(70px, 10vw, 130px) 24px;
  background:
    linear-gradient(115deg, rgba(74, 0, 25, 0.94), rgba(109, 13, 45, 0.86)),
    var(--bch-wine-950);
  color: white;
}

.editorial-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  max-width: var(--bch-max);
  margin: 0 auto;
}

.editorial-band h2 {
  color: white;
  font-size: clamp(3rem, 7vw, 6.5rem);
}

.editorial-band p {
  color: rgba(255, 255, 255, 0.74);
}

.editorial-band img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28);
}

.feature-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 0.8fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.feature-story h2 {
  font-size: clamp(3rem, 7vw, 6.4rem);
}

.story-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--bch-shadow);
}

.timeline {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  padding: 20px;
  border: 1px solid rgba(235, 216, 223, 0.82);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
}

.timeline-item time {
  color: var(--bch-wine-800);
  font-weight: 800;
}

.filter-bar {
  position: sticky;
  top: 92px;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 26px;
  padding: 14px 0 18px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(253, 249, 250, 0.96), rgba(253, 249, 250, 0.82));
  backdrop-filter: blur(18px);
}

.filter-bar input {
  flex: 1 1 100%;
  min-height: 56px;
  border: 1px solid rgba(109, 13, 45, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(74, 0, 25, 0.07);
}

.filter-bar input:focus {
  border-color: rgba(109, 13, 45, 0.35);
  box-shadow: 0 14px 34px rgba(74, 0, 25, 0.1);
}

.luxury-form input,
.luxury-form textarea,
.luxury-form select {
  width: 100%;
  border: 1px solid rgba(109, 13, 45, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--bch-ink);
  font: inherit;
  padding: 16px 18px;
  outline: none;
}

.filter-pill {
  border: 1px solid rgba(74, 0, 25, 0.14);
  border-radius: 999px;
  background: white;
  color: var(--bch-wine-950);
  box-shadow: 0 8px 18px rgba(74, 0, 25, 0.05);
  padding: 11px 17px;
  white-space: nowrap;
}

.filter-pill:hover,
.filter-pill:focus-visible {
  border-color: rgba(109, 13, 45, 0.3);
  background: rgba(255, 250, 252, 0.96);
  outline: none;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 74px);
  max-width: var(--bch-max);
  margin: 0 auto;
  padding: clamp(96px, 12vw, 150px) 24px 80px;
}

.detail-gallery {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 14px;
}

.detail-gallery .thumbs {
  display: grid;
  gap: 14px;
}

.detail-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--bch-blush-100);
}

.detail-gallery .main-image {
  aspect-ratio: 4 / 5;
}

.detail-gallery .thumbs figure {
  aspect-ratio: 1;
}

.product-detail h1,
.checkout-shell h1 {
  font-size: clamp(3.4rem, 7vw, 6.8rem);
}

.scent-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.scent-notes span {
  display: block;
  padding: 16px;
  border-radius: 18px;
  background: var(--bch-blush-100);
}

.luxury-form {
  display: grid;
  gap: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quote-layout,
.checkout-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(300px, 0.42fr);
  gap: 22px;
  max-width: var(--bch-max);
  margin: 0 auto;
  padding: 0 24px clamp(70px, 9vw, 120px);
}

.upload-zone {
  display: grid;
  place-items: center;
  min-height: 150px;
  border: 1px dashed rgba(109, 13, 45, 0.34);
  border-radius: 22px;
  background: rgba(246, 238, 241, 0.74);
  text-align: center;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-tile {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 22px;
}

.footer {
  border-top: 1px solid rgba(235, 216, 223, 0.8);
  background: var(--bch-ink);
}

.footer-bottom {
  background: #160d11;
}

.motion-reveal {
  opacity: 0;
  transform: translateY(26px);
}

@media (max-width: 940px) {
  .luxury-hero,
  .section-header,
  .editorial-band-inner,
  .feature-story,
  .product-detail,
  .quote-layout,
  .checkout-shell {
    grid-template-columns: 1fr;
  }

  .luxury-hero h1 {
    font-size: clamp(3.5rem, 16vw, 6rem);
  }

  .hero-media {
    min-height: 460px;
  }

  .masonry-grid,
  .product-grid-luxe,
  .journal-grid,
  .note-grid,
  .gallery-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .masonry-card,
  .masonry-card:nth-child(1),
  .masonry-card:nth-child(2),
  .masonry-card:nth-child(4) {
    grid-column: span 1;
    grid-row: span 2;
  }
}

@media (max-width: 640px) {
  .luxury-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-frame.main {
    inset: 0 0 14% 8%;
  }

  .hero-frame.small {
    height: 28%;
  }

  .hero-badge {
    right: 12px;
    bottom: 6%;
  }

  .masonry-grid,
  .product-grid-luxe,
  .journal-grid,
  .note-grid,
  .gallery-strip,
  .form-grid,
  .scent-notes,
  .detail-gallery {
    grid-template-columns: 1fr;
  }

  .filter-bar {
    border-radius: 22px;
    top: 78px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .motion-reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   Principal pass: restrained production UI
   ============================================ */
:root {
  --bch-wine-950: #46101f;
  --bch-wine-800: #6b2335;
  --bch-rose-500: #9a5a67;
  --bch-blush-50: #fffaf8;
  --bch-blush-100: #f7efec;
  --bch-blush-200: #ead9d1;
  --bch-ink: #23191a;
  --bch-muted: #6f6260;
  --bch-accent: #c99a6b;
  --bch-paper: #ffffff;
  --bch-green: #2f4a3a;
  --bch-blue: #2e4358;
  --bch-serif: "Cormorant Garamond", Georgia, serif;
  --bch-sans: "Inter", system-ui, sans-serif;
  --bch-shadow: 0 16px 42px rgba(35, 25, 26, 0.1);
  --bch-soft-shadow: 0 8px 24px rgba(35, 25, 26, 0.08);
  --bch-radius: 8px;
  --bch-max: 1280px;
}

body.luxury-site {
  background: var(--bch-blush-50);
  color: var(--bch-ink);
}

body.luxury-site::before,
.luxury-hero::after,
.cursor-glow,
#bg-particles,
.loader {
  display: none !important;
}

.scroll-progress {
  height: 2px;
  background: var(--bch-wine-800);
  box-shadow: none;
}

.site-header {
  position: sticky;
  top: 0;
}

.announcement {
  display: none;
}

.luxury-nav {
  display: grid;
  grid-template-columns: minmax(190px, 0.9fr) minmax(360px, 1.4fr) auto;
  gap: 28px;
  min-height: 80px;
  width: min(calc(100% - 32px), var(--bch-max));
  margin: 12px auto;
  padding: 0 18px;
  border: 1px solid rgba(35, 25, 26, 0.08);
  border-radius: var(--bch-radius);
  background: rgba(255, 250, 248, 0.9);
  box-shadow: 0 8px 30px rgba(35, 25, 26, 0.06);
  backdrop-filter: blur(14px);
}

.luxury-nav.scrolled {
  min-height: 72px;
  margin-top: 8px;
  background: rgba(255, 250, 248, 0.96);
}

.luxury-nav .logo {
  gap: 10px;
  min-width: 0;
}

.luxury-nav .logo-img {
  width: 40px;
  height: 40px;
}

.luxury-nav .logo span {
  overflow: hidden;
  font-family: var(--bch-serif);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.luxury-nav .nav-menu {
  justify-content: center;
  gap: 22px;
  margin: 0;
}

.luxury-nav .nav-menu a {
  color: var(--bch-muted);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.luxury-nav .nav-menu a:hover,
.luxury-nav .nav-menu a:focus-visible {
  color: var(--bch-wine-950);
}

.luxury-nav .nav-menu a::after {
  height: 1px;
  background: var(--bch-wine-800);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  white-space: nowrap;
}

.luxury-button,
.luxury-site .btn {
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--bch-radius);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.luxury-button.primary,
.luxury-site .btn-dark {
  border: 1px solid var(--bch-wine-950);
  background: var(--bch-wine-950);
  color: #fff;
}

.luxury-button.secondary,
.luxury-site .btn-ghost {
  border: 1px solid rgba(35, 25, 26, 0.16);
  background: transparent;
  color: var(--bch-wine-950);
}

.luxury-button.primary:hover,
.luxury-site .btn-dark:hover {
  background: var(--bch-wine-800);
  transform: translateY(-1px);
}

.luxury-button.secondary:hover,
.luxury-site .btn-ghost:hover {
  border-color: rgba(35, 25, 26, 0.34);
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-1px);
}

.luxury-main {
  overflow: visible;
}

.luxury-hero {
  min-height: 640px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: clamp(36px, 6vw, 76px);
  width: min(100%, var(--bch-max));
  padding: 72px 24px 64px;
}

.luxury-hero.compact {
  min-height: 600px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--bch-wine-800);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  width: 24px;
}

.luxury-hero h1,
.editorial-band h2,
.section-title,
.feature-story h2,
.product-detail h1,
.checkout-shell h1 {
  color: var(--bch-wine-950);
  font-family: var(--bch-serif);
  line-height: 1.2;
}

.luxury-hero h1 {
  max-width: 650px;
  font-size: clamp(3.2rem, 5.2vw, 4rem);
}

.luxury-hero p {
  max-width: 600px;
  margin-top: 18px;
  color: var(--bch-muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.hero-actions,
.luxury-actions {
  gap: 12px;
  margin-top: 28px;
}

.hero-media {
  min-height: 520px;
}

.hero-frame {
  border-radius: var(--bch-radius);
  box-shadow: var(--bch-shadow);
}

.hero-frame.main {
  inset: 4% 0 8% 12%;
}

.hero-frame.small {
  inset: auto 58% 0 0;
  height: 32%;
  border: 8px solid var(--bch-blush-50);
}

.hero-badge {
  right: 0;
  bottom: 12%;
  max-width: 220px;
  border-radius: var(--bch-radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--bch-soft-shadow);
}

.hero-badge span {
  color: var(--bch-muted);
  line-height: 1.45;
}

.luxury-section {
  width: min(100%, var(--bch-max));
  padding: 96px 24px;
}

.compact-section {
  padding-top: 24px;
  padding-bottom: 48px;
}

.section-header {
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 36px;
  margin-bottom: 34px;
}

.section-title {
  font-size: clamp(2.25rem, 3.6vw, 2.75rem);
}

.section-header > p,
.feature-story p,
.editorial-band p,
.note-card p,
.process-card p,
.journal-card p {
  color: var(--bch-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.trust-item {
  min-height: 108px;
  padding: 22px;
  border: 1px solid rgba(35, 25, 26, 0.08);
  background: rgba(255, 255, 255, 0.62);
}

.trust-item strong {
  display: block;
  color: var(--bch-wine-950);
  font-size: 1rem;
  line-height: 1.2;
}

.trust-item span {
  display: block;
  margin-top: 8px;
  color: var(--bch-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.masonry-grid,
.product-grid-luxe,
.journal-grid,
.note-grid {
  gap: 20px;
}

.note-grid.outcome-grid {
  grid-template-columns: repeat(3, 1fr);
}

.masonry-card,
.product-card-luxe,
.journal-card,
.note-card,
.process-card,
.quote-panel {
  border: 1px solid rgba(35, 25, 26, 0.08);
  border-radius: var(--bch-radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.masonry-card {
  min-height: 420px;
}

.masonry-card figcaption,
.product-card-luxe .content,
.journal-card .content,
.note-card {
  padding: 22px;
}

.masonry-card h3,
.product-card-luxe h3,
.journal-card h3,
.note-card h3,
.process-card h3 {
  color: var(--bch-ink);
  font-family: var(--bch-sans);
  font-size: 1.05rem;
  line-height: 1.35;
}

.product-card-luxe .media {
  border-radius: var(--bch-radius) var(--bch-radius) 0 0;
}

.product-card-luxe .quick-panel {
  opacity: 1;
  transform: none;
  background: linear-gradient(180deg, transparent, rgba(35, 25, 26, 0.38));
}

.editorial-band {
  padding: 72px 24px;
  background: var(--bch-wine-950);
  overflow: hidden;
}

.editorial-band-inner {
  width: min(100%, var(--bch-max));
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.7fr);
  gap: 48px;
}

.editorial-band img,
.story-image {
  border-radius: var(--bch-radius);
}

.feature-story {
  gap: 56px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(35, 25, 26, 0.08);
  border-radius: var(--bch-radius);
  background: rgba(255, 255, 255, 0.72);
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--bch-ink);
  font-weight: 700;
}

.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--bch-muted);
  line-height: 1.6;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.process-card {
  padding: 20px;
}

.process-card span {
  display: block;
  margin-bottom: 20px;
  color: var(--bch-rose-500);
  font-size: 0.78rem;
  font-weight: 800;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(320px, 2fr);
  gap: 24px;
  width: min(100%, var(--bch-max));
  margin: 0 auto;
  padding: 40px 24px 112px;
  align-items: start;
}

.quote-panel {
  padding: clamp(24px, 3vw, 36px);
}

.quote-panel .section-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.quote-progress {
  height: 6px;
  margin: 18px 0 24px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--bch-blush-100);
}

.quote-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--bch-wine-800);
  transition: width 180ms ease;
}

.luxury-form {
  display: grid;
  gap: 22px;
  margin-top: 22px;
}

.luxury-form fieldset {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 0;
  border: 0;
}

.luxury-form legend {
  margin-bottom: 2px;
  color: var(--bch-wine-950);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-grid {
  gap: 14px;
}

.floating-field {
  position: relative;
  display: grid;
  gap: 6px;
}

.floating-field input,
.floating-field textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(35, 25, 26, 0.14);
  border-radius: var(--bch-radius);
  background: var(--bch-paper);
  color: var(--bch-ink);
  padding: 20px 14px 8px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.floating-field textarea {
  min-height: 112px;
  resize: vertical;
}

.floating-field span {
  position: absolute;
  top: 17px;
  left: 14px;
  color: var(--bch-muted);
  font-size: 0.95rem;
  pointer-events: none;
  transition: transform 160ms ease, font-size 160ms ease, color 160ms ease;
}

.floating-field input:focus,
.floating-field textarea:focus {
  border-color: var(--bch-wine-800);
  box-shadow: 0 0 0 3px rgba(107, 35, 53, 0.1);
}

.floating-field input:focus + span,
.floating-field input:not(:placeholder-shown) + span,
.floating-field textarea:focus + span,
.floating-field textarea:not(:placeholder-shown) + span {
  color: var(--bch-wine-800);
  font-size: 0.72rem;
  transform: translateY(-12px);
}

.floating-field small {
  min-height: 16px;
  color: #b42318;
  font-size: 0.78rem;
}

.floating-field.has-error input,
.floating-field.has-error textarea {
  border-color: #b42318;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.08);
}

.form-note {
  margin: 18px 0 0;
  border-radius: var(--bch-radius);
  padding: 12px 14px;
  font-weight: 700;
}

.form-note.success {
  border: 1px solid rgba(47, 74, 58, 0.18);
  background: rgba(47, 74, 58, 0.08);
  color: var(--bch-green);
}

.form-note.error {
  border: 1px solid rgba(180, 35, 24, 0.18);
  background: rgba(180, 35, 24, 0.08);
  color: #8f1f15;
}

.upload-zone {
  display: grid;
  gap: 4px;
  border: 1px dashed rgba(35, 25, 26, 0.22);
  border-radius: var(--bch-radius);
  background: rgba(247, 239, 236, 0.45);
  padding: 18px;
  color: var(--bch-ink);
}

.upload-zone small {
  color: var(--bch-muted);
  font-size: 0.82rem;
}

.reassurance-list {
  margin-top: 24px;
}

.timeline-item {
  border-color: rgba(35, 25, 26, 0.08);
}

.timeline-item time {
  color: var(--bch-wine-950);
  font-family: var(--bch-sans);
  font-size: 0.9rem;
  font-weight: 800;
}

.quote-testimonial {
  margin: 24px 0 0;
  border-left: 3px solid var(--bch-accent);
  padding-left: 16px;
  color: var(--bch-muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.motion-reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .luxury-nav {
    grid-template-columns: 1fr auto;
  }

  .luxury-nav .nav-toggle {
    display: block;
    grid-column: 2;
    grid-row: 1;
  }

  .luxury-nav .nav-menu,
  .luxury-nav .nav-actions {
    display: none;
  }

  .luxury-nav.open .nav-menu,
  .luxury-nav.open .nav-actions {
    display: flex;
    grid-column: 1 / -1;
    width: 100%;
  }

  .luxury-nav.open .nav-menu {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-top: 12px;
  }

  .luxury-nav.open .nav-actions {
    justify-content: flex-start;
    padding: 0 0 16px;
  }

  .luxury-hero,
  .luxury-hero.compact {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 56px;
  }

  .hero-media {
    min-height: 440px;
  }

  .process-grid,
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .luxury-nav {
    width: calc(100% - 24px);
    min-height: 72px;
    margin: 8px auto;
  }

  .luxury-nav .logo span {
    max-width: 190px;
  }

  .luxury-nav.open .nav-actions {
    flex-wrap: wrap;
  }

  .luxury-hero,
  .luxury-hero.compact {
    padding: 40px 18px 48px;
  }

  .luxury-hero h1 {
    font-size: clamp(2.5rem, 12vw, 3.2rem);
  }

  .luxury-hero p {
    font-size: 1rem;
  }

  .hero-media {
    min-height: 360px;
  }

  .hero-frame.main {
    inset: 0 0 12% 8%;
  }

  .hero-badge {
    left: 0;
    right: auto;
    bottom: 0;
  }

  .luxury-section {
    padding: 48px 18px;
  }

  .compact-section {
    padding-top: 12px;
  }

  .section-header {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .section-title {
    font-size: clamp(2rem, 10vw, 2.35rem);
  }

  .process-grid,
  .trust-strip,
  .note-grid.outcome-grid {
    grid-template-columns: 1fr;
  }

  .quote-layout {
    padding: 18px 18px 56px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .editorial-band-inner img {
    width: 100%;
    max-width: 100%;
  }
}

/* ============================================
   Conversion pass: navbar and homepage
   ============================================ */
.site-header {
  background: rgba(255, 250, 248, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(35, 25, 26, 0.08);
}

.announcement {
  display: block;
  padding: 8px 0;
  background: var(--bch-wine-950);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.announcement-track {
  gap: 48px;
  animation-duration: 26s;
}

.announcement-track span {
  position: relative;
  padding-left: 18px;
}

.announcement-track span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--bch-accent);
  transform: translateY(-50%);
}

.luxury-nav {
  grid-template-columns: minmax(210px, 0.9fr) minmax(340px, 1.15fr) minmax(220px, auto);
  min-height: 76px;
  margin: 0 auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.luxury-nav.scrolled {
  min-height: 68px;
  margin-top: 0;
  background: transparent;
}

.luxury-nav .nav-menu a[aria-current="page"] {
  color: var(--bch-wine-950);
}

.luxury-nav .nav-menu a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  border: 1px solid rgba(35, 25, 26, 0.12);
  border-radius: var(--bch-radius);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(35, 25, 26, 0.1);
  border-radius: var(--bch-radius);
  background: rgba(255, 255, 255, 0.7);
  color: var(--bch-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.collection-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.collection-card-luxe {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  min-height: 100%;
  border: 1px solid rgba(35, 25, 26, 0.08);
  border-radius: var(--bch-radius);
  background: rgba(255, 255, 255, 0.74);
  overflow: hidden;
  transition: border-color 180ms ease, transform 180ms ease;
}

.collection-card-luxe:hover,
.collection-card-luxe:focus-visible {
  border-color: rgba(35, 25, 26, 0.22);
  transform: translateY(-2px);
}

.collection-card-luxe img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--bch-blush-100);
}

.collection-card-luxe span {
  width: max-content;
  margin: 18px 20px 10px;
  color: var(--bch-wine-800);
  font-size: 0.78rem;
  font-weight: 800;
}

.collection-card-luxe h3 {
  margin: 0 20px 8px;
  color: var(--bch-ink);
  font-family: var(--bch-sans);
  font-size: 1.08rem;
  line-height: 1.35;
}

.collection-card-luxe p {
  margin: 0 20px 22px;
  color: var(--bch-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.product-grid-luxe {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card-luxe .content {
  display: grid;
  gap: 10px;
}

.product-card-luxe .content p {
  margin: 0;
  color: var(--bch-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.product-card-luxe .meta {
  color: var(--bch-muted);
  font-size: 0.78rem;
}

.product-card-luxe .quick-panel {
  inset: auto 12px 12px;
}

.product-card-luxe .quick-panel .luxury-button {
  width: 100%;
  min-height: 40px;
}

.editorial-band {
  margin: 48px 0;
}

.editorial-band h2 {
  font-size: clamp(2.25rem, 3.6vw, 2.75rem);
}

@media (max-width: 1180px) {
  .product-grid-luxe,
  .collection-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .luxury-nav {
    grid-template-columns: 1fr auto;
    padding: 0 16px;
  }

  .luxury-nav .nav-menu,
  .luxury-nav .nav-actions {
    position: static;
    inset: auto;
    flex-direction: row;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .luxury-nav.open {
    padding-bottom: 16px;
  }

  .luxury-nav.open .nav-menu {
    border-top: 1px solid rgba(35, 25, 26, 0.08);
  }

  .luxury-nav.open .nav-actions {
    gap: 10px;
  }
}

@media (max-width: 820px) {
  .product-grid-luxe,
  .collection-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .announcement {
    font-size: 0.72rem;
  }

  .luxury-nav {
    width: 100%;
    min-height: 68px;
  }

  .luxury-nav .logo span {
    max-width: 180px;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-grid-luxe,
  .collection-card-grid {
    grid-template-columns: 1fr;
  }

  .collection-card-luxe img {
    aspect-ratio: 16 / 11;
  }
}

.luxury-hero h1 {
  font-size: 4rem;
}

.section-title,
.editorial-band h2,
.feature-story h2 {
  font-size: 2.625rem;
}

.product-detail h1,
.checkout-shell h1 {
  font-size: 3.25rem;
}

.quote-panel .section-title {
  font-size: 2.375rem;
}

@media (max-width: 940px) {
  .luxury-hero h1 {
    font-size: 3.25rem;
  }

  .section-title,
  .editorial-band h2,
  .feature-story h2,
  .product-detail h1,
  .checkout-shell h1 {
    font-size: 2.375rem;
  }
}

@media (max-width: 560px) {
  .luxury-hero h1 {
    font-size: 2.5rem;
  }

  .section-title,
  .editorial-band h2,
  .feature-story h2,
  .product-detail h1,
  .checkout-shell h1,
  .quote-panel .section-title {
    font-size: 2rem;
  }
}

/* ============================================
   Contact page
   ============================================ */
.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.75fr);
  gap: 24px;
  width: min(100%, var(--bch-max));
  margin: 0 auto;
  padding: 56px 24px 112px;
  align-items: start;
}

.contact-card {
  border: 1px solid rgba(35, 25, 26, 0.08);
  border-radius: var(--bch-radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 34px rgba(35, 25, 26, 0.06);
}

.contact-form-card {
  padding: clamp(24px, 3vw, 36px);
}

.contact-card-head {
  display: grid;
  gap: 10px;
  max-width: 720px;
}

.contact-card-head .section-title {
  font-size: 2.375rem;
}

.contact-card-head p:last-child,
.contact-details-card > p,
.contact-submit-row p,
.contact-support-list p {
  color: var(--bch-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.contact-form-luxe {
  margin-top: 26px;
}

.contact-form-luxe textarea {
  min-height: 150px;
}

.contact-submit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.contact-submit-row p {
  margin: 0;
}

.contact-details-card {
  position: sticky;
  top: 132px;
  padding: 28px;
}

.contact-details-card h3 {
  margin: 0 0 12px;
  color: var(--bch-ink);
  font-family: var(--bch-sans);
  font-size: 1.25rem;
  line-height: 1.35;
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.contact-methods a {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(35, 25, 26, 0.08);
  border-radius: var(--bch-radius);
  background: var(--bch-blush-50);
}

.contact-methods a:hover,
.contact-methods a:focus-visible {
  border-color: rgba(35, 25, 26, 0.2);
}

.contact-methods span {
  color: var(--bch-muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-methods strong {
  color: var(--bch-wine-950);
  font-size: 0.98rem;
  line-height: 1.35;
  word-break: break-word;
}

.contact-support-list {
  display: grid;
  gap: 12px;
}

.contact-support-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(35, 25, 26, 0.08);
}

.contact-support-list article > span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bch-blush-100);
  color: var(--bch-wine-800);
  font-size: 0.78rem;
  font-weight: 900;
}

.contact-support-list h4 {
  margin: 0 0 4px;
  color: var(--bch-ink);
  font-size: 0.98rem;
}

.contact-support-list p {
  margin: 0;
}

@media (max-width: 980px) {
  .contact-shell {
    grid-template-columns: 1fr;
    padding-top: 32px;
  }

  .contact-details-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .contact-shell {
    padding: 24px 18px 64px;
  }

  .contact-card-head .section-title {
    font-size: 2rem;
  }

  .contact-form-card,
  .contact-details-card {
    padding: 22px;
  }

  .contact-submit-row .luxury-button {
    width: 100%;
  }
}

/* ============================================
   Marketplace commerce redesign
   ============================================ */
:root {
  --market-blue: #0f5dcc;
  --market-blue-dark: #0a3f8f;
  --market-yellow: #f7b500;
  --market-bg: #f6f8fb;
  --market-line: #e1e6ef;
  --market-text: #17202a;
  --market-muted: #5c6675;
}

body.luxury-site {
  background: var(--market-bg);
  color: var(--market-text);
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--market-line);
  box-shadow: 0 2px 10px rgba(23, 32, 42, 0.06);
}

.announcement {
  padding: 0;
  background: var(--bch-wine-950);
}

.commerce-topbar {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, 1360px);
  min-height: 36px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: center;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
}

.commerce-topbar span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--market-yellow);
}

.commerce-topbar nav {
  display: flex;
  gap: 30px;
}

.commerce-topbar a {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

.luxury-nav {
  display: grid;
  grid-template-columns: minmax(230px, 0.75fr) minmax(360px, 1.35fr) auto auto;
  gap: 28px;
  width: min(100%, 1360px);
  min-height: 76px;
  padding: 0 24px;
  align-items: center;
  background: #fff;
}

.luxury-nav .logo {
  color: var(--market-text);
  font-family: var(--bch-sans);
  font-size: 1.3rem;
  gap: 10px;
}

.luxury-nav .logo:hover {
  transform: none;
}

.luxury-nav .logo-img {
  width: 42px;
  height: 42px;
  filter: none;
}

.luxury-nav .logo span {
  display: grid;
  color: var(--market-text);
  font-family: var(--bch-sans);
  font-size: 1.38rem;
  font-weight: 800;
  line-height: 1.08;
}

.luxury-nav .logo span strong {
  color: var(--market-yellow);
}

.luxury-nav .logo small {
  margin-top: 3px;
  color: var(--market-muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.site-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 104px;
  height: 52px;
  border: 1px solid var(--market-line);
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}

.site-search input {
  min-width: 0;
  border: 0;
  padding: 0 18px;
  color: var(--market-text);
  outline: none;
}

.site-search button,
.commerce-button,
.newsletter-form button {
  border: 0;
  background: var(--bch-wine-950);
  color: #fff;
  font-weight: 800;
}

.site-search button {
  min-width: 104px;
}

.nav-actions {
  display: flex;
  gap: 22px;
  align-items: center;
}

.commerce-action {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--market-text);
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
}

.commerce-action span {
  color: var(--bch-wine-950);
  font-size: 1.3rem;
  line-height: 1;
}

.cart-link {
  position: relative;
}

.cart-link em {
  position: absolute;
  top: -12px;
  left: 14px;
  display: grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bch-wine-950);
  color: #fff;
  font-size: 0.68rem;
  font-style: normal;
}

.category-nav {
  display: flex;
  width: min(100%, 1360px);
  min-height: 48px;
  margin: 0 auto;
  padding: 0 24px;
  border-top: 1px solid var(--market-line);
  background: #fff;
  align-items: center;
  gap: 28px;
}

.category-menu-trigger {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--bch-wine-950);
  font-weight: 900;
}

.category-menu-trigger span,
.category-menu-trigger span::before,
.category-menu-trigger span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 3px;
  background: currentColor;
}

.category-menu-trigger span {
  position: relative;
}

.category-menu-trigger span::before,
.category-menu-trigger span::after {
  content: "";
  position: absolute;
  left: 0;
}

.category-menu-trigger span::before {
  top: -6px;
}

.category-menu-trigger span::after {
  top: 6px;
}

.category-nav .nav-menu {
  display: flex;
  flex: 1;
  justify-content: space-between;
  gap: 24px;
  margin: 0;
}

.category-nav .nav-menu a {
  color: var(--market-text);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
}

.category-nav .nav-menu a::after {
  display: none;
}

.category-nav .nav-menu .offer-link {
  color: #d40000;
  font-weight: 900;
}

.commerce-main {
  width: min(100%, 1360px);
  margin: 0 auto;
  padding: 18px 24px 28px;
}

.commerce-hero-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.4fr);
  min-height: 460px;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  background: #f3dfcc;
  overflow: hidden;
}

.commerce-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 64px 0 64px 106px;
}

.commerce-hero-copy span {
  color: var(--market-text);
  font-size: 1.32rem;
  font-weight: 500;
}

.commerce-hero-copy h1 {
  max-width: 540px;
  margin: 10px 0 12px;
  color: var(--market-text);
  font-family: var(--bch-sans);
  font-size: 3.3rem;
  line-height: 1.12;
}

.commerce-hero-copy p {
  max-width: 520px;
  margin: 0 0 28px;
  color: var(--market-text);
  font-size: 1.26rem;
  line-height: 1.45;
}

.commerce-button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 30px;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
}

.commerce-hero-card > img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  color: var(--bch-wine-950);
  box-shadow: 0 8px 24px rgba(23, 32, 42, 0.12);
  font-size: 2rem;
  transform: translateY(-50%);
}

.hero-arrow.left {
  left: 24px;
}

.hero-arrow.right {
  right: 24px;
}

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
}

.hero-dots span:first-child {
  background: var(--bch-wine-950);
}

.commerce-trust-strip,
.commerce-offer-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 28px;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  background: var(--market-line);
  overflow: hidden;
}

.commerce-trust-strip article,
.commerce-offer-band article {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 14px;
  min-height: 86px;
  padding: 20px 24px;
  background: #fff;
  align-items: center;
}

.commerce-trust-strip span {
  grid-row: span 2;
  color: var(--bch-wine-950);
  font-size: 2rem;
}

.commerce-trust-strip strong,
.commerce-offer-band strong {
  color: var(--market-text);
  font-size: 0.98rem;
}

.commerce-trust-strip small,
.commerce-offer-band small {
  color: var(--market-muted);
  font-size: 0.82rem;
}

.commerce-section {
  padding: 54px 0 0;
}

.commerce-section-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  align-items: center;
}

.commerce-section-head h2,
.commerce-why h2,
.commerce-newsletter h2 {
  min-width: 0;
  margin: 0;
  color: var(--market-text);
  font-family: var(--bch-sans);
  font-size: 1.72rem;
  line-height: 1.25;
}

.commerce-section-head a {
  display: inline-flex;
  min-height: 42px;
  padding: 6px 0 6px 12px;
  align-items: center;
  justify-content: flex-end;
  color: var(--bch-wine-950);
  font-weight: 800;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
}

.commerce-category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.commerce-category-card,
.commerce-product-card {
  border: 1px solid var(--market-line);
  border-radius: 7px;
  background: #fff;
  overflow: hidden;
}

.commerce-category-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.commerce-category-card strong {
  display: grid;
  min-height: 58px;
  padding: 12px;
  place-items: center;
  color: var(--market-text);
  font-size: 0.9rem;
  text-align: center;
}

.commerce-product-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.commerce-product-card {
  position: relative;
  display: grid;
  min-height: 100%;
}

.wishlist-dot {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--market-line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--market-muted);
  font-size: 1rem;
}

.commerce-product-media {
  display: block;
  padding: 0;
  background: #f8f1eb;
}

.commerce-product-media img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
}

.commerce-product-info {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.commerce-product-info h3 {
  min-height: 38px;
  margin: 0;
  color: var(--market-text);
  font-family: var(--bch-sans);
  font-size: 0.92rem;
  line-height: 1.35;
}

.rating-line {
  display: flex;
  gap: 6px;
  align-items: center;
}

.rating-line span {
  color: #ff9f00;
  font-size: 0.78rem;
}

.rating-line small {
  color: var(--market-muted);
}

.commerce-price {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
}

.commerce-price strong {
  color: var(--market-text);
  font-size: 1.02rem;
}

.commerce-price del {
  color: var(--market-muted);
  font-size: 0.82rem;
}

.commerce-price em {
  color: #168a3a;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
}

.add-cart-btn {
  display: grid;
  min-height: 38px;
  border: 1px solid var(--bch-wine-950);
  border-radius: 4px;
  color: var(--bch-wine-950);
  font-size: 0.82rem;
  font-weight: 900;
  place-items: center;
}

.commerce-offer-band {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 56px;
  border-color: rgba(247, 181, 0, 0.42);
  background: #fff8dc;
}

.commerce-offer-band article {
  grid-template-columns: 86px 1fr;
  min-height: 96px;
  background: #fffaf0;
}

.commerce-offer-band span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  min-height: 54px;
  border: 2px dashed var(--market-yellow);
  color: var(--bch-wine-950);
  font-weight: 900;
}

.commerce-why {
  text-align: center;
}

.commerce-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 34px;
  background: var(--market-line);
}

.commerce-why-grid article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 16px;
  padding: 24px;
  background: #fff;
  text-align: left;
}

.commerce-why-grid span {
  grid-row: span 2;
  color: var(--market-text);
  font-size: 2.3rem;
}

.commerce-why-grid strong {
  color: var(--market-text);
}

.commerce-why-grid p {
  margin: 4px 0 0;
  color: var(--market-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.commerce-newsletter {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 48px;
  margin-top: 56px;
  padding: 32px 54px;
  border-radius: 8px;
  background: linear-gradient(120deg, var(--bch-wine-950), var(--bch-wine-800));
  color: #fff;
  align-items: center;
}

.commerce-newsletter img {
  width: 100%;
  height: 220px;
  border-radius: 6px;
  object-fit: cover;
}

.commerce-newsletter h2,
.commerce-newsletter p {
  color: #fff;
}

.commerce-newsletter p {
  margin: 8px 0 22px;
}

.commerce-newsletter .newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  max-width: 560px;
  margin: 0;
}

.commerce-newsletter .newsletter-form input {
  min-height: 48px;
  border: 0;
  border-radius: 5px 0 0 5px;
  padding: 0 18px;
}

.commerce-newsletter .newsletter-form button {
  border-radius: 0 5px 5px 0;
  background: var(--market-yellow);
  color: var(--market-text);
}

.newsletter-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 20px;
  font-size: 0.88rem;
}

.footer {
  max-width: none;
  margin-top: 0;
  background: #081b2b;
  color: #fff;
}

.footer-bottom {
  background: #061521;
}

.footer h3,
.footer .logo span strong {
  color: var(--market-yellow);
}

/* Commerce styling for inner pages */
.luxury-main {
  width: min(100%, 1360px);
  margin: 0 auto;
  padding: 18px 24px 28px;
  overflow: visible;
}

.luxury-main .luxury-hero.compact {
  min-height: 330px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  margin: 0;
  padding: 42px 48px;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.luxury-main .luxury-hero.compact h1 {
  color: var(--market-text);
  font-family: var(--bch-sans);
  font-size: 2.5rem;
}

.luxury-main .luxury-hero.compact p {
  color: var(--market-muted);
}

.luxury-main .hero-media {
  min-height: 300px;
}

.luxury-main .hero-frame.main {
  inset: 0;
}

.luxury-section,
.quote-layout,
.contact-shell,
.product-detail {
  width: min(100%, 1360px);
  max-width: 1360px;
}

.luxury-section {
  padding: 42px 0;
}

.section-header {
  margin-bottom: 22px;
}

.filter-bar,
.quote-panel,
.contact-card,
.product-card-luxe,
.note-card,
.process-card,
.faq-item,
.checkout-card {
  border-color: var(--market-line);
  border-radius: 7px;
  background: #fff;
  box-shadow: none;
}

.product-card-luxe .media {
  aspect-ratio: 1 / 1.05;
}

.product-card-luxe .quick-panel {
  background: transparent;
}

.product-detail {
  margin: 0;
  padding: 42px 0;
}

.product-detail > div:last-child {
  padding: 28px;
  border: 1px solid var(--market-line);
  border-radius: 8px;
  background: #fff;
}

@media (max-width: 1180px) {
  .luxury-nav {
    grid-template-columns: minmax(220px, auto) 1fr auto;
  }

  .nav-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  .commerce-category-grid,
  .commerce-product-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .commerce-trust-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .commerce-topbar {
    flex-direction: column;
    gap: 8px;
    min-height: auto;
    padding: 10px 18px;
  }

  .commerce-topbar nav {
    gap: 18px;
  }

  .luxury-nav {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 12px 18px;
  }

  .site-search {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .nav-actions {
    display: none;
  }

  .category-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0 18px 14px;
  }

  .category-nav.open {
    display: flex;
  }

  .category-nav .nav-menu {
    display: grid;
    gap: 12px;
  }

  .commerce-main,
  .luxury-main {
    padding: 14px 14px 24px;
  }

  .commerce-hero-card,
  .luxury-main .luxury-hero.compact,
  .product-detail,
  .quote-layout,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .commerce-hero-copy {
    padding: 44px 60px 28px;
  }

  .commerce-hero-card > img {
    min-height: 260px;
  }

  .commerce-trust-strip,
  .commerce-offer-band,
  .commerce-why-grid,
  .commerce-newsletter {
    grid-template-columns: 1fr;
  }

  .commerce-newsletter {
    padding: 24px;
    gap: 24px;
  }
}

@media (max-width: 560px) {
  .commerce-topbar nav {
    display: none;
  }

  .luxury-nav .logo span {
    font-size: 1.08rem;
  }

  .site-search {
    grid-template-columns: minmax(0, 1fr) minmax(82px, auto);
    height: 48px;
  }

  .site-search input {
    padding-inline: 14px;
    font-size: 0.95rem;
  }

  .site-search button {
    min-width: 82px;
    padding-inline: 12px;
    font-size: 0.95rem;
  }

  .commerce-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: start;
  }

  .commerce-section-head h2 {
    max-width: 100%;
    font-size: clamp(2rem, 8.5vw, 2.8rem);
    line-height: 1.18;
  }

  .commerce-section-head a {
    min-width: 72px;
    padding: 7px 2px 7px 8px;
    align-self: center;
    font-size: 0.98rem;
  }

  .commerce-hero-copy {
    padding: 36px 46px 24px;
  }

  .commerce-hero-copy h1 {
    font-size: 2.15rem;
  }

  .commerce-hero-copy p {
    font-size: 1rem;
  }

  .hero-arrow {
    width: 36px;
    height: 44px;
  }

  .commerce-category-grid,
  .commerce-product-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .commerce-trust-strip article,
  .commerce-offer-band article,
  .commerce-why-grid article {
    padding: 18px;
  }

  .commerce-newsletter .newsletter-form {
    grid-template-columns: 1fr;
  }

  .commerce-newsletter .newsletter-form input,
  .commerce-newsletter .newsletter-form button {
    border-radius: 5px;
  }
}

/* ============================================
   Inner page refresh: premium storefront pages
   ============================================ */
body.luxury-site {
  background:
    linear-gradient(180deg, #fffaf8 0%, #f7f2ee 48%, #f4f6f8 100%);
}

.luxury-main {
  width: min(100%, 1360px);
  padding: 24px;
}

.luxury-main .luxury-hero.compact {
  position: relative;
  min-height: clamp(380px, 42vw, 520px);
  padding: clamp(34px, 5vw, 66px);
  border: 1px solid rgba(70, 16, 31, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 250, 248, 0.9) 50%, rgba(247, 239, 236, 0.78) 100%);
  box-shadow: 0 20px 55px rgba(35, 25, 26, 0.09);
}

.luxury-main .luxury-hero.compact::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(201, 154, 107, 0.26);
  border-radius: 14px;
  pointer-events: none;
}

.luxury-main .hero-copy {
  align-self: center;
}

.luxury-main .luxury-hero.compact h1 {
  max-width: 680px;
  color: var(--bch-wine-950);
  font-family: var(--bch-serif);
  font-size: clamp(2.25rem, 4.3vw, 4.4rem);
  line-height: 1.05;
}

.luxury-main .luxury-hero.compact p:not(.eyebrow) {
  max-width: 620px;
  color: #625858;
  font-size: clamp(1rem, 1.2vw, 1.14rem);
}

.luxury-main .hero-media {
  min-height: clamp(260px, 34vw, 410px);
}

.luxury-main .hero-frame.main {
  inset: 0;
  border-radius: 16px;
}

.luxury-main .hero-frame.main img {
  aspect-ratio: 4 / 3;
}

.luxury-main .hero-frame.small {
  inset: auto 58% -8% -4%;
  height: 34%;
  border: 8px solid #fffaf8;
  border-radius: 14px;
}

.luxury-main .hero-badge {
  right: 18px;
  bottom: 18px;
  border: 1px solid rgba(70, 16, 31, 0.1);
  border-radius: 12px;
}

.section-header {
  align-items: center;
}

.section-title,
.contact-card-head .section-title,
.quote-panel .section-title {
  color: var(--bch-wine-950);
  font-family: var(--bch-serif);
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  line-height: 1.08;
}

.masonry-grid {
  grid-auto-rows: clamp(180px, 17vw, 250px);
}

.masonry-card {
  border: 0;
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(35, 25, 26, 0.12);
}

.masonry-card figcaption {
  bottom: 18px;
}

.masonry-card h3,
.journal-card h3,
.product-card-luxe h3,
.note-card h3,
.process-card h3 {
  font-family: var(--bch-serif);
  color: var(--bch-wine-950);
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
}

.masonry-card h3 {
  color: #fff;
}

.collection-card-grid,
.product-grid-luxe,
.journal-grid,
.note-grid,
.process-grid {
  gap: 22px;
}

.product-grid-luxe {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.journal-grid,
.note-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card-luxe,
.journal-card,
.note-card,
.process-card,
.quote-panel,
.contact-card,
.checkout-card {
  border: 1px solid rgba(70, 16, 31, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 32px rgba(35, 25, 26, 0.07);
}

.product-card-luxe,
.journal-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card-luxe:hover,
.journal-card:hover {
  border-color: rgba(70, 16, 31, 0.2);
  box-shadow: 0 20px 48px rgba(35, 25, 26, 0.12);
  transform: translateY(-4px);
}

.product-card-luxe .media {
  aspect-ratio: 4 / 5;
  background: #f8f1eb;
}

.journal-card .media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.product-card-luxe .content,
.journal-card .content,
.note-card,
.process-card,
.quote-panel,
.checkout-card {
  padding: clamp(18px, 2vw, 26px);
}

.product-card-luxe .meta,
.price-line span,
.contact-card-head p:last-child,
.quote-panel p,
.checkout-card p {
  color: var(--market-muted);
}

.price-line a,
.product-card-luxe .content a:not(.luxury-button) {
  color: var(--bch-wine-950);
  font-weight: 900;
}

.quick-panel {
  inset: auto 12px 12px;
}

.quick-panel .luxury-button {
  width: 100%;
}

.feature-story {
  grid-template-columns: minmax(300px, 0.52fr) minmax(0, 0.82fr);
  gap: clamp(26px, 5vw, 70px);
}

.story-image {
  aspect-ratio: 4 / 5;
  border-radius: 18px;
}

.editorial-band {
  margin: 56px calc(50% - 50vw);
  padding: clamp(56px, 8vw, 96px) max(24px, calc((100vw - 1360px) / 2 + 24px));
  background:
    linear-gradient(120deg, rgba(70, 16, 31, 0.96), rgba(107, 35, 53, 0.92)),
    #46101f;
}

.editorial-band-inner {
  max-width: 1360px;
}

.editorial-band h2 {
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 4.4rem);
}

.editorial-band img {
  aspect-ratio: 16 / 11;
  border-radius: 16px;
}

.timeline-item,
.contact-methods a,
.contact-support-list article {
  border-color: rgba(70, 16, 31, 0.1);
  border-radius: 12px;
}

.timeline-item {
  background: rgba(255, 255, 255, 0.8);
}

.process-card > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #f7efec;
  color: var(--bch-wine-950);
  font-weight: 900;
}

.quote-layout,
.checkout-shell,
.contact-shell {
  gap: 24px;
  padding: 32px 0 clamp(72px, 8vw, 112px);
}

.quote-layout,
.checkout-shell {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
}

.contact-shell {
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.55fr);
}

.quote-panel fieldset {
  min-width: 0;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.quote-panel legend {
  margin-bottom: 12px;
  color: var(--bch-wine-950);
  font-weight: 900;
}

.luxury-form {
  gap: 16px;
}

.luxury-form input,
.luxury-form textarea,
.luxury-form select {
  min-height: 52px;
  border-radius: 12px;
  background: #fff;
}

.floating-field {
  position: relative;
  display: block;
}

.floating-field > span {
  position: absolute;
  left: 18px;
  top: 15px;
  color: var(--market-muted);
  pointer-events: none;
  transition: 160ms ease;
}

.floating-field input:focus + span,
.floating-field input:not(:placeholder-shown) + span,
.floating-field textarea:focus + span,
.floating-field textarea:not(:placeholder-shown) + span {
  top: -9px;
  padding: 0 6px;
  background: #fff;
  color: var(--bch-wine-950);
  font-size: 0.74rem;
  font-weight: 900;
}

.floating-field small {
  display: block;
  min-height: 18px;
  margin-top: 4px;
  color: #b42318;
  font-size: 0.78rem;
}

.quote-progress {
  height: 8px;
  margin: 18px 0 22px;
  border-radius: 999px;
  background: #f0e3dd;
  overflow: hidden;
}

.quote-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--bch-wine-950), var(--bch-accent));
}

.upload-zone {
  min-height: 136px;
  border-radius: 14px;
}

.detail-gallery {
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: start;
}

.detail-gallery .main-image {
  aspect-ratio: 4 / 5;
  border-radius: 18px;
}

.detail-gallery .thumbs figure {
  border-radius: 12px;
}

.product-detail > div:last-child {
  border-radius: 18px;
}

.scent-notes {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.scent-notes span {
  border: 1px solid rgba(70, 16, 31, 0.08);
  border-radius: 12px;
  background: #fffaf8;
}

.contact-details-card {
  top: 118px;
}

.contact-submit-row .luxury-button,
.checkout-card .luxury-button,
.quote-panel .luxury-button {
  min-width: 170px;
}

@media (max-width: 1180px) {
  .product-grid-luxe {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 940px) {
  .luxury-main {
    padding: 18px;
  }

  .luxury-main .luxury-hero.compact,
  .feature-story,
  .quote-layout,
  .checkout-shell,
  .contact-shell,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .luxury-main .luxury-hero.compact {
    padding: 34px;
  }

  .luxury-main .hero-media {
    min-height: 320px;
  }

  .section-header {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-grid-luxe,
  .journal-grid,
  .note-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-details-card {
    position: static;
  }
}

@media (max-width: 700px) {
  .commerce-topbar {
    display: none;
  }

  .luxury-nav {
    min-height: 64px;
  }

  .site-search {
    height: 46px;
  }

  .luxury-main {
    padding: 14px;
  }

  .luxury-main .luxury-hero.compact {
    min-height: auto;
    padding: 26px 22px;
    border-radius: 14px;
  }

  .luxury-main .luxury-hero.compact::before {
    display: none;
  }

  .luxury-main .luxury-hero.compact h1 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .luxury-main .hero-media {
    min-height: 240px;
  }

  .luxury-main .hero-frame.main img,
  .editorial-band img,
  .journal-card .media {
    aspect-ratio: 16 / 11;
  }

  .luxury-section {
    padding: 34px 0;
  }

  .product-grid-luxe,
  .journal-grid,
  .note-grid,
  .process-grid,
  .masonry-grid,
  .form-grid,
  .scent-notes,
  .detail-gallery {
    grid-template-columns: 1fr;
  }

  .masonry-grid {
    display: grid;
    grid-auto-rows: auto;
  }

  .masonry-card,
  .masonry-card:nth-child(1),
  .masonry-card:nth-child(2),
  .masonry-card:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 16 / 11;
  }

  .product-card-luxe .media {
    aspect-ratio: 1 / 1;
  }

  .detail-gallery .thumbs {
    grid-row: 2;
    grid-template-columns: repeat(3, 1fr);
  }

  .detail-gallery .main-image {
    aspect-ratio: 1 / 1;
  }

  .timeline-item {
    grid-template-columns: 64px 1fr;
    padding: 16px;
  }

  .quote-layout,
  .checkout-shell,
  .contact-shell {
    padding-bottom: 58px;
  }

  .luxury-button,
  .luxury-site .btn,
  .contact-submit-row .luxury-button,
  .checkout-card .luxury-button,
  .quote-panel .luxury-button {
    width: 100%;
    min-width: 0;
  }

  .contact-submit-row {
    align-items: stretch;
  }

  .footer {
    text-align: left;
  }

  .socials {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .luxury-main .luxury-hero.compact {
    padding: 22px 18px;
  }

  .section-title,
  .contact-card-head .section-title,
  .quote-panel .section-title {
    font-size: 1.9rem;
  }

  .product-card-luxe .content,
  .journal-card .content,
  .note-card,
  .process-card,
  .quote-panel,
  .checkout-card,
  .contact-form-card,
  .contact-details-card {
    padding: 18px;
  }
}

/* ============================================
   Final production alignment pass
   ============================================ */
body.luxury-site {
  overflow-x: hidden;
}

.luxury-main {
  display: block;
  width: min(100%, 1360px);
  margin-inline: auto;
  padding-inline: clamp(14px, 3vw, 28px);
}

.luxury-main .luxury-hero.compact,
.luxury-section,
.quote-layout,
.checkout-shell,
.contact-shell,
.product-detail {
  margin-inline: auto;
}

.luxury-main .luxury-hero.compact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  width: 100%;
}

.luxury-main .hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.luxury-main .hero-copy > * {
  max-width: 680px;
}

.luxury-main .hero-media {
  align-self: stretch;
  min-width: 0;
}

.luxury-main .hero-frame.main {
  width: 100%;
  height: 100%;
}

.luxury-main .hero-frame.main img,
.story-image img,
.editorial-band img,
.contact-card img,
.product-card-luxe img,
.journal-card img,
.masonry-card img,
.gallery-tile img,
.detail-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: end;
}

.section-header > *,
.feature-story > *,
.editorial-band-inner > *,
.quote-layout > *,
.checkout-shell > *,
.contact-shell > *,
.product-detail > * {
  min-width: 0;
}

.feature-story,
.editorial-band-inner {
  align-items: center;
}

.feature-story {
  grid-template-columns: minmax(300px, 0.52fr) minmax(0, 0.88fr);
}

.story-image {
  width: 100%;
  min-height: clamp(320px, 42vw, 560px);
}

.timeline-item {
  align-items: start;
}

.timeline-item p,
.process-card p,
.note-card p,
.product-card-luxe p,
.journal-card p,
.contact-card p,
.quote-panel p,
.checkout-card p,
.seo-content p {
  max-width: 72ch;
}

.product-grid-luxe,
.journal-grid,
.note-grid,
.process-grid {
  align-items: stretch;
}

.product-card-luxe,
.journal-card,
.note-card,
.process-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card-luxe .content,
.journal-card .content,
.note-card,
.process-card {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.product-card-luxe h3,
.journal-card h3,
.note-card h3,
.process-card h3 {
  min-height: 2.25em;
}

.product-card-luxe p,
.journal-card p,
.note-card p,
.process-card p {
  flex: 1 1 auto;
}

.product-card-luxe .meta,
.price-line,
.contact-submit-row,
.commerce-price,
.rating-line {
  align-items: center;
}

.price-line {
  margin-top: auto;
}

.masonry-grid {
  align-items: stretch;
}

.masonry-card {
  min-height: 0;
}

.masonry-card figcaption p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.quote-layout,
.checkout-shell,
.contact-shell {
  align-items: start;
}

.contact-card,
.quote-panel,
.checkout-card,
.product-detail > div:last-child {
  height: fit-content;
}

.contact-card-head,
.quote-panel fieldset,
.checkout-card {
  display: grid;
  gap: 14px;
}

.contact-methods,
.contact-support-list,
.luxury-form,
.timeline {
  display: grid;
}

.contact-methods,
.contact-support-list {
  gap: 14px;
}

.contact-methods a,
.contact-support-list article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.contact-methods a {
  grid-template-columns: 1fr;
  align-items: start;
}

.contact-support-list article h4,
.contact-support-list article p {
  margin: 0;
}

.form-grid {
  align-items: start;
}

.floating-field textarea {
  min-height: 132px;
  resize: vertical;
}

.detail-gallery {
  position: sticky;
  top: 112px;
}

.product-detail > div:last-child {
  align-self: start;
}

.seo-content {
  display: grid;
  gap: 14px;
}

.seo-content .section-header {
  margin-bottom: 0;
}

@media (max-width: 1100px) {
  .luxury-main .luxury-hero.compact,
  .feature-story,
  .quote-layout,
  .checkout-shell,
  .contact-shell,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .luxury-main .hero-media {
    min-height: clamp(260px, 52vw, 430px);
  }

  .detail-gallery {
    position: static;
  }
}

@media (max-width: 940px) {
  .section-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section-header p {
    max-width: 72ch;
  }

  .feature-story .story-image {
    order: -1;
  }
}

@media (max-width: 700px) {
  .luxury-main {
    padding-inline: 14px;
  }

  .luxury-main .luxury-hero.compact {
    gap: 22px;
  }

  .luxury-main .hero-copy > * {
    max-width: none;
  }

  .hero-actions,
  .luxury-actions,
  .contact-submit-row,
  .price-line {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-submit-row p {
    margin: 0;
  }

  .product-card-luxe h3,
  .journal-card h3,
  .note-card h3,
  .process-card h3 {
    min-height: 0;
  }

  .timeline-item,
  .contact-support-list article {
    grid-template-columns: 1fr;
  }

  .detail-gallery .thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ============================================
   Mobile alignment correction
   ============================================ */
@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .luxury-nav {
    width: calc(100% - 20px);
    margin: 8px auto;
    padding: 10px 12px;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
  }

  .luxury-nav .logo {
    min-width: 0;
  }

  .luxury-nav .logo span {
    display: grid;
    min-width: 0;
    white-space: normal;
  }

  .luxury-nav .logo small {
    display: none;
  }

  .site-search {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
  }

  .site-search input {
    min-width: 0;
  }

  .category-nav {
    width: calc(100% - 20px);
    margin-inline: auto;
    overflow: hidden;
  }

  .category-nav .nav-menu {
    width: 100%;
    min-width: 0;
  }

  .luxury-main {
    width: 100%;
    max-width: 100%;
    padding: 12px;
  }

  .luxury-main .luxury-hero.compact,
  .luxury-section,
  .quote-layout,
  .checkout-shell,
  .contact-shell,
  .product-detail {
    width: 100%;
    max-width: 100%;
  }

  .luxury-main .luxury-hero.compact {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 18px;
  }

  .luxury-main .luxury-hero.compact h1,
  .feature-story h2,
  .editorial-band h2,
  .section-title,
  .product-detail h1,
  .checkout-shell h1 {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .luxury-main .luxury-hero.compact h1 {
    font-size: clamp(2rem, 9vw, 2.7rem);
    line-height: 1.08;
  }

  .luxury-main .luxury-hero.compact p:not(.eyebrow),
  .feature-story p,
  .editorial-band p,
  .section-header p,
  .seo-content p {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .luxury-main .hero-media {
    min-height: 0;
  }

  .luxury-main .hero-frame,
  .luxury-main .hero-frame.main,
  .luxury-main .hero-frame.small {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
  }

  .luxury-main .hero-frame.small,
  .luxury-main .hero-badge {
    display: none;
  }

  .luxury-main .hero-frame.main img {
    height: auto;
    aspect-ratio: 16 / 11;
  }

  .luxury-section {
    padding: 34px 0;
  }

  .section-header,
  .feature-story,
  .editorial-band-inner,
  .quote-layout,
  .checkout-shell,
  .contact-shell,
  .product-detail {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }

  .story-image {
    min-height: 0;
    aspect-ratio: 16 / 11;
  }

  .story-image img {
    height: 100%;
  }

  .editorial-band {
    width: auto;
    margin: 28px -12px;
    padding: 40px 18px;
    overflow: hidden;
  }

  .editorial-band-inner {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .editorial-band h2 {
    font-size: clamp(2rem, 9vw, 2.75rem);
    line-height: 1.08;
  }

  .editorial-band img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    border-radius: 14px;
  }

  .product-grid-luxe,
  .journal-grid,
  .note-grid,
  .process-grid,
  .masonry-grid,
  .form-grid,
  .scent-notes,
  .gallery-strip,
  .commerce-category-grid,
  .commerce-product-row {
    grid-template-columns: 1fr;
  }

  .product-card-luxe,
  .journal-card,
  .note-card,
  .process-card,
  .quote-panel,
  .checkout-card,
  .contact-card {
    width: 100%;
    max-width: 100%;
  }

  .timeline-item {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }
}

@media (max-width: 430px) {
  .luxury-main {
    padding: 10px;
  }

  .luxury-main .luxury-hero.compact {
    padding: 22px 16px;
  }

  .editorial-band {
    margin-inline: -10px;
    padding-inline: 16px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Homepage image-only carousel
   ============================================ */
.commerce-hero-card.image-only-carousel {
  display: block;
  min-height: clamp(320px, 42vw, 560px);
  background: #f8f1eb;
}

.image-only-carousel .commerce-hero-copy {
  display: none !important;
}

.commerce-hero-slides {
  position: absolute;
  inset: 0;
}

.commerce-hero-slides img,
.commerce-hero-card.image-only-carousel > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  opacity: 0;
  object-fit: cover;
  object-position: center;
  transition: opacity 420ms ease;
}

.commerce-hero-slides img.active {
  opacity: 1;
}

.image-only-carousel .hero-arrow {
  top: 50%;
  background: rgba(255, 255, 255, 0.94);
}

.image-only-carousel .hero-dots {
  z-index: 3;
  bottom: 22px;
}

.image-only-carousel .hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
}

.image-only-carousel .hero-dots button.active {
  background: var(--bch-wine-950);
}

@media (max-width: 768px) {
  .commerce-hero-card.image-only-carousel {
    min-height: clamp(230px, 58vw, 360px);
    border-radius: 8px;
  }

  .image-only-carousel .hero-arrow {
    width: 38px;
    height: 46px;
    font-size: 1.65rem;
  }

  .image-only-carousel .hero-arrow.left {
    left: 12px;
  }

  .image-only-carousel .hero-arrow.right {
    right: 12px;
  }
}

/* ============================================
   Hero carousel mobile-only correction
   ============================================ */
@media (max-width: 768px) {
  .commerce-hero-card.image-only-carousel {
    width: 100%;
    height: clamp(340px, 108vw, 500px);
    min-height: 0;
    border-radius: 8px;
  }

  .commerce-hero-slides {
    position: absolute;
    inset: 0;
  }

  .commerce-hero-slides img {
    height: 100%;
    object-fit: cover;
    object-position: 58% center;
  }

  .commerce-hero-slides img:first-child {
    object-position: 66% center;
  }

  .image-only-carousel .hero-arrow {
    width: 34px;
    height: 40px;
    font-size: 1.45rem;
    box-shadow: 0 8px 18px rgba(23, 32, 42, 0.14);
  }

  .image-only-carousel .hero-arrow.left {
    left: 10px;
  }

  .image-only-carousel .hero-arrow.right {
    right: 10px;
  }

  .image-only-carousel .hero-dots {
    display: none;
  }

  .image-only-carousel .hero-dots button {
    width: 7px;
    height: 7px;
  }
}

@media (max-width: 430px) {
  .commerce-hero-card.image-only-carousel {
    height: clamp(330px, 116vw, 470px);
  }
}

/* ============================================
   Website responsive containment
   ============================================ */
body.luxury-site,
body.luxury-site * {
  min-width: 0;
}

body.luxury-site {
  overflow-x: hidden;
}

body.luxury-site img,
body.luxury-site video,
body.luxury-site canvas,
body.luxury-site svg {
  max-width: 100%;
}

body.luxury-site table {
  width: 100%;
  max-width: 100%;
}

.luxury-section,
.luxury-main,
.quote-layout,
.checkout-shell,
.contact-shell,
.product-detail,
.editorial-band-inner,
.feature-story,
.section-header {
  max-width: 100%;
}

.luxury-form input,
.luxury-form textarea,
.luxury-form select,
.bulk-order-form input,
.bulk-order-form textarea,
.contact-form input,
.contact-form textarea {
  min-width: 0;
}

@media (max-width: 768px) {
  .filter-bar,
  .hero-actions,
  .luxury-actions,
  .nav-actions,
  .price-line,
  .contact-submit-row {
    max-width: 100%;
  }

  .filter-pill,
  .luxury-button,
  .luxury-site .btn {
    white-space: normal;
    text-align: center;
  }

  .footer {
    overflow-wrap: anywhere;
  }
}
