/** Shopify CDN: Minification failed

Line 3508:13 Expected identifier but found whitespace
Line 3508:14 Unexpected "var("

**/
/* ============================================
   V A U C L O N T
   Luxury Apparel Maison — Warm Palette
   ============================================ */

:root {
  --bg-ivory: #EFEBE4;
  --bg-stone: #E4DED3;
  --bg-dark: #242019;
  --bg-placeholder: #D4CDBF;

  --text-primary: #1C1A17;
  --text-secondary: #6B6459;
  --text-inverse: #EFEBE4;
  --text-inverse-muted: #A8A196;
  --text-placeholder: rgba(28, 26, 23, 0.4);

  --accent: #8A6D3B;
  --accent-muted: #D4C9B5;

  --border: rgba(28, 26, 23, 0.12);
  --border-dark: rgba(239, 235, 228, 0.15);

  --focus: rgba(138, 109, 59, 0.55);

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;

--font-sans: 'Montserrat', Arial, Helvetica, sans-serif;
  --max: 1440px;
  --pad: clamp(24px, 4vw, 64px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);

  --z-header: 1000;
  --z-drawer: 9999;
  --z-drawer-back: 9998;
  --z-search: 9999;
  --z-search-back: 9998;
  --z-prefs: 9998;
  --z-cookie: 9997;
  --z-transition: 10000;
}


*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  overflow-x: hidden;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  background: var(--bg-ivory);
  text-rendering: optimizeLegibility;
}

/* Global Heading Lock for VAUCLONT */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
}

/* Optional Italic Class for Editorial Headings like "permanence" */
.font-italic {
  font-style: italic;
}

body.drawer-open,
body.search-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; image-rendering: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; color: inherit; cursor: pointer; }
/* Remove browser tap flash while preserving keyboard focus styling */
a,
button,
input,
select,
textarea,
label,
summary {
  -webkit-tap-highlight-color: transparent;
}

::selection { background: var(--accent); color: var(--bg-ivory); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-ivory); }
::-webkit-scrollbar-thumb { background: rgba(28, 26, 23, 0.15); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(28, 26, 23, 0.3); }

:focus { outline: none; }
:focus-visible { outline: 1px solid var(--focus); outline-offset: 4px; }

.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 11000;
  padding: 12px 18px;
  background: var(--bg-dark);
  color: var(--text-inverse);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateY(-200%);
  transition: transform 250ms var(--ease-smooth);
}
.skip-link:focus-visible { transform: translateY(0); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ============ EMPTY STATE TEXTURE ============ */

.empty-texture {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(28, 26, 23, 0.03) 2px, rgba(28, 26, 23, 0.03) 4px),
    repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(28, 26, 23, 0.03) 2px, rgba(28, 26, 23, 0.03) 4px);
  background-size: 20px 20px;
}


/* ============ HEADER ============ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  width: 100%;
  background: var(--bg-ivory);
  border-bottom: 1px solid var(--border);
  transition: background 400ms ease, border-color 400ms ease;
}

main { padding-top: 80px; }
body.home main { padding-top: 0; }

@media (max-width: 990px) {
  main { padding-top: 64px; }
  body.home main { padding-top: 0; }
}

/* non-home: always solid cream — placeholder-safe */
body:not(.home) .header {
  background: var(--bg-ivory);
  border-bottom-color: var(--border);
  color: var(--text-primary);
}
body:not(.home) .header__logo,
body:not(.home) .header__nav a,
body:not(.home) .header__icon,
body:not(.home) .header__burger span {
  color: var(--text-primary);
  background-image: none;
}
body:not(.home) .header__burger span { background: var(--text-primary); }

/* home: hero overlays the header */
body.home .header {
  background: transparent;
  border-bottom-color: transparent;
}
body.home .header.is-solid {
  background: var(--bg-ivory);
  border-bottom-color: var(--border);
}

.header__logo,
.header__nav a,
.header__icon {
  color: var(--text-primary);
  transition: color 400ms var(--ease-smooth);
}

.header__burger span {
  background: var(--text-primary);
  transition: background 400ms var(--ease-smooth), transform 400ms var(--ease-smooth);
}

body.home .header:not(.is-solid) .header__logo,
body.home .header:not(.is-solid) .header__nav a,
body.home .header:not(.is-solid) .header__icon {
  color: var(--text-inverse);
}

body.home .header:not(.is-solid) .header__burger span {
  background: var(--text-inverse);
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 80px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  gap: 24px;
}

.header__burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  gap: 8px;
}

.header__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  transition: transform 400ms var(--ease-smooth), opacity 300ms ease, background 400ms ease;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav--left { justify-self: start; }
.header__nav--right { justify-self: end; }

.header__nav a {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 300ms ease, opacity 300ms ease;
  position: relative;
}

.header__nav a:hover { opacity: 0.7; }

.header__nav a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.header__logo {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.28em;
  justify-self: center;
  transition: color 400ms ease;
}

.header__logo img { display: block; }

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-self: end;
}

.header__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: color 300ms ease, opacity 300ms ease;
  position: relative;
}

.header__icon:hover { opacity: 0.7; }
.header__icon svg { width: 18px; height: 18px; stroke-width: 1.25; }

.header__cart-count {
  position: absolute;
  top: 6px;
  right: 6px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  font-size: 9px;
  font-weight: 500;
  line-height: 16px;
  text-align: center;
  background: var(--accent);
  color: var(--bg-ivory);
  border-radius: 50%;
}

.header__search { display: inline-flex; }

/* ============ MOBILE DRAWER ============ */

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: var(--z-drawer-back);
  background: rgba(28, 26, 23, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms var(--ease-smooth), visibility 500ms;
}

.drawer-backdrop.is-visible { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: var(--z-drawer);
  width: min(400px, 85vw);
  height: 100vh;
  height: 100dvh;
  background: var(--bg-ivory);
  transform: translateX(100%);
  transition: transform 500ms var(--ease-smooth);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer.is-open { transform: translateX(0); }

.drawer__header {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 24px var(--pad);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.drawer__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.drawer__close::before,
.drawer__close::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 1.5px;
  background: var(--text-primary);
  transition: background 300ms ease;
}

.drawer__close::before { transform: rotate(45deg); }
.drawer__close::after { transform: rotate(-45deg); }

.drawer__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 48px var(--pad);
  gap: 8px;
}

.drawer__link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-primary);
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 500ms var(--ease-smooth), transform 500ms var(--ease-smooth);
}

.drawer.is-open .drawer__link { opacity: 1; transform: translateX(0); }
.drawer.is-open .drawer__link:nth-child(1) { transition-delay: 150ms; }
.drawer.is-open .drawer__link:nth-child(2) { transition-delay: 220ms; }
.drawer.is-open .drawer__link:nth-child(3) { transition-delay: 290ms; }
.drawer.is-open .drawer__link:nth-child(4) { transition-delay: 360ms; }
.drawer.is-open .drawer__link:nth-child(5) { transition-delay: 430ms; }
.drawer.is-open .drawer__link:nth-child(6) { transition-delay: 500ms; }

/* ============ HERO ============ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video,
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__empty-state {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 45%, #2A2621 0%, var(--bg-dark) 70%);
}

.hero__empty-texture {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 3px, rgba(239, 235, 228, 0.02) 3px, rgba(239, 235, 228, 0.02) 6px),
    repeating-linear-gradient(-45deg, transparent, transparent 3px, rgba(239, 235, 228, 0.02) 3px, rgba(239, 235, 228, 0.02) 6px);
  background-size: 24px 24px;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,26,23,0.6) 0%, rgba(28,26,23,0.1) 50%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  position: absolute;
  bottom: 12%;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0 clamp(24px, 6vw, 96px);
  max-width: none;
}

.hero__content-inner {
  max-width: 640px;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-muted);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(16px);
  animation: rise 1000ms var(--ease-smooth) 300ms forwards;
}

.hero__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--text-inverse);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: rise 1100ms var(--ease-smooth) 400ms forwards;
  text-align: left;
  max-width: 100%;
}

.hero__heading em {
  font-style: italic;
  color: var(--accent-muted);
  font-weight: 400;
}

.hero__subheading {
  font-family: var(--font-sans);
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-inverse-muted);
  max-width: 480px;
  margin: 0 0 48px 0;
  opacity: 0;
  transform: translateY(16px);
  animation: rise 900ms var(--ease-smooth) 600ms forwards;
  text-align: left;
}

.hero__button {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-inverse);
  padding: 0;
  border: none;
  background: transparent;
  position: relative;
  transition: gap 400ms var(--ease-smooth);
  opacity: 0;
  transform: translateY(16px);
  animation: rise 900ms var(--ease-smooth) 800ms forwards;
}

.hero__button::before {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--accent-muted);
  transition: width 400ms var(--ease-smooth), background 400ms ease;
}

.hero__button:hover {
  gap: 28px;
}

.hero__button:hover::before {
  width: 64px;
  background: var(--text-inverse);
}

@media (max-width: 640px) {
  .hero__content {
    bottom: 10%;
  }
  .hero__heading {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .hero__button {
    gap: 16px;
  }
  .hero__button::before {
    width: 32px;
  }
  .hero__scroll { display: none; }
}

@keyframes rise { to { opacity: 1; transform: translateY(0); } }

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: scroll-fade 1500ms var(--ease-smooth) 1500ms forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 32px;
  background: rgba(239,235,228,0.4);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-fade { to { opacity: 1; } }
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

.hero__scroll.is-hidden { opacity: 0; transition: opacity 400ms ease; }

.hero__playpause {
  position: absolute;
  bottom: 32px;
  left: clamp(24px, 4vw, 64px);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(28, 26, 23, 0.6);
  border: 1px solid rgba(239, 235, 228, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-inverse);
  transition: background 300ms ease, border-color 300ms ease, transform 300ms var(--ease-smooth);
  opacity: 0;
  animation: rise 800ms var(--ease-smooth) 1600ms forwards;
}

.hero__playpause:hover {
  background: rgba(28, 26, 23, 0.8);
  border-color: rgba(239, 235, 228, 0.6);
  transform: scale(1.05);
}

.hero__playpause-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}

.hero__playpause-icon--pause { gap: 3px; }

.hero__playpause-icon--pause span {
  display: block;
  width: 3px;
  height: 14px;
  background: currentColor;
}

.hero__playpause-icon--play { display: none; }

.hero__playpause.is-paused .hero__playpause-icon--pause { display: none; }
.hero__playpause.is-paused .hero__playpause-icon--play { display: flex; }

/* ============ MANIFESTO ============ */

.manifesto {
  padding: clamp(120px, 14vw, 180px) var(--pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-ivory);
  position: relative;
}

.manifesto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(36, 32, 25, 0.08) 0%, transparent 100%);
  pointer-events: none;
}

.manifesto__inner {
  max-width: 720px;
  text-align: center;
  position: relative;
}

.manifesto__mark {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 20px;
  line-height: 1;
  font-style: italic;
  opacity: 0.7;
}

.manifesto__rule {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 40px;
}

.manifesto__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 40px;
}

.manifesto__body {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
  margin: 0 auto;
  max-width: 620px;
}

.manifesto__tag {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin-top: 56px;
}

/* ============ COLLECTION ============ */

.collection {
  padding: clamp(100px, 14vw, 160px) var(--pad) clamp(60px, 8vw, 100px);
  background: var(--bg-ivory);
}

.collection__inner { max-width: var(--max); margin: 0 auto; }

.collection__head {
  margin-bottom: 96px;
  padding-left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
}

.collection__head-left,
.collection__head-right {
  display: flex;
  flex-direction: column;
}

.collection__head-right {
  align-items: flex-end;
  gap: 12px;
  padding-bottom: 8px;
}

.collection__eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.collection__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.625rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.collection__description {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 480px;
}

.collection__count {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.collection__meta {
  font-family: var(--font-serif);
  font-size: 14px;
  font-style: italic;
  color: var(--text-secondary);
}

.collection__grid,
.collection__placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product { display: flex; flex-direction: column; cursor: pointer; position: relative; }

.product__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--bg-placeholder);
}

.product__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-smooth);
}

.product__empty { position: absolute; inset: 0; background: var(--bg-placeholder); }

.product__empty-texture {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(28, 26, 23, 0.03) 2px, rgba(28, 26, 23, 0.03) 4px),
    repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(28, 26, 23, 0.03) 2px, rgba(28, 26, 23, 0.03) 4px);
  background-size: 16px 16px;
}

.product__info { margin-top: 20px; padding: 0 4px; transition: transform 500ms var(--ease-smooth); }

.product__name {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: 6px;
  transition: color 300ms ease;
}

.product__price {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
}

.product__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(28,26,23,0.4) 100%);
  opacity: 0;
  transition: opacity 500ms var(--ease-smooth);
  pointer-events: none;
  z-index: 1;
}

.product:hover .product__img-wrap::after { opacity: 1; }
.product:hover .product__img { transform: scale(1.05); }
.product:hover .product__info { transform: translateY(-4px); }
.product:hover .product__name { color: var(--accent); }

.collection__view-all { text-align: center; margin-top: 80px; }

.collection__view-all-link {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-primary);
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  transition: letter-spacing 400ms var(--ease-smooth), color 300ms ease;
}

.collection__view-all-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--text-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms ease;
}

.collection__view-all-link:hover { letter-spacing: 0.28em; }
.collection__view-all-link:hover::after { transform: scaleX(1); transform-origin: left; }

/* ============ FIRST PRINCIPLES ============ */

.first-principles {
  padding: clamp(100px, 14vw, 160px) var(--pad) clamp(60px, 8vw, 100px);
  background: var(--bg-stone);
  position: relative;
}

.first-principles::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, rgba(28, 26, 23, 0.03) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.first-principles__inner { max-width: var(--max); margin: 0 auto; }
.first-principles__head { text-align: center; margin-bottom: 80px; position: relative; }

.first-principles__eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.first-principles__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.625rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.first-principles__subtitle {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
}

.principle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 140px;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1100ms var(--ease-smooth), transform 1100ms var(--ease-smooth);
}

.principle:last-child { margin-bottom: 0; }
.principle.is-in-view { opacity: 1; transform: translateY(0); }

.principle--reversed .principle__image-wrap { order: 2; }
.principle--reversed .principle__content { order: 1; padding-left: 0; padding-right: 80px; }

.principle__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-placeholder);
}

.principle__image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-dark);
  transform-origin: right center;
  transform: scaleX(1);
  transition: transform 1400ms var(--ease-smooth);
  z-index: 2;
}

.principle.is-in-view .principle__image-wrap::before { transform: scaleX(0); }
.principle--reversed .principle__image-wrap::before { transform-origin: left center; }

.principle__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  transition: transform 1800ms var(--ease-smooth);
}

.principle__image-wrap.is-settled .principle__image { transform: scale(1); }

.principle__empty {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-placeholder);
}

.principle__empty-texture {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 3px, rgba(28, 26, 23, 0.04) 3px, rgba(28, 26, 23, 0.04) 6px),
    repeating-linear-gradient(-45deg, transparent, transparent 3px, rgba(28, 26, 23, 0.04) 3px, rgba(28, 26, 23, 0.04) 6px);
  background-size: 24px 24px;
}

.principle__empty-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.4;
  position: relative;
  z-index: 1;
}

.principle__content { padding-left: 80px; }

.principle__num {
  font-family: var(--font-serif);
  font-size: clamp(80px, 10vw, 140px);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: var(--accent);
  opacity: 0.35;
  margin-bottom: 40px;
  display: block;
  font-style: italic;
  overflow: hidden;
  display: inline-block;
}

.principle.is-in-view .principle__num {
  animation: numRise 1200ms var(--ease-smooth) 400ms both;
}

@keyframes numRise {
  0% { opacity: 0; transform: translateY(60px) scale(0.9); }
  100% { opacity: 0.35; transform: translateY(0) scale(1); }
}

.principle__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.principle__description {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--text-secondary);
  max-width: 420px;
  margin-bottom: 36px;
}

.principle__rule { width: 40px; height: 1px; background: rgba(138, 109, 59, 0.6); }

/* ============ PRIVATE ACCESS ============ */

.private-access {
  padding: clamp(100px, 14vw, 160px) var(--pad);
  background: var(--bg-stone);
  text-align: center;
}

.private-access__inner { max-width: 640px; margin: 0 auto; }

.private-access__rule { width: 40px; height: 1px; background: var(--accent); margin: 0 auto 32px; }

.private-access__title {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.private-access__subtitle {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 56px;
}

.private-access__form-wrap { width: 100%; }

.private-access__form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(28, 26, 23, 0.2);
  padding-bottom: 12px;
  transition: border-color 400ms ease;
}

.private-access__form:focus-within { border-color: var(--accent); }
.private-access__form.is-submitting .private-access__input { opacity: 0.4; }
.private-access__form.is-submitted {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 500ms ease, transform 500ms ease;
  pointer-events: none;
}

.private-access__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 8px 0;
}

.private-access__input::placeholder { color: rgba(28, 26, 23, 0.35); font-size: 14px; }

.private-access__btn {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-primary);
  padding: 8px 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 300ms ease;
}

.private-access__btn:hover { color: var(--accent); }
.private-access__btn svg { width: 14px; height: 14px; transition: transform 400ms ease; }
.private-access__btn:hover svg { transform: translateX(4px); }

.private-access__note {
  margin-top: 20px;
  font-family: var(--font-sans);
  font-size: 11px;
  color: rgba(28, 26, 23, 0.4);
  letter-spacing: 0.03em;
}

.private-access__success,
.private-access__error {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-secondary);
}

.private-access__error { color: #c4756a; }

.private-access__thank {
  display: none;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 800ms 300ms ease, transform 800ms 300ms ease;
}

.private-access__thank.is-visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.private-access__thank-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.private-access__thank-title {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.private-access__thank-body {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============ FOOTER (AUDEMARS LUXURY STYLE) ============ */

.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
  color: var(--text-inverse);
}

.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px var(--pad) 24px;
}

.footer__newsletter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding-bottom: 32px;
}

.footer__newsletter-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-inverse);
  margin: 0;
  letter-spacing: 0.02em;
}

.footer__newsletter-form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(239, 235, 228, 0.25);
  padding-bottom: 6px;
  width: 320px;
  transition: border-color 300ms ease;
}

.footer__newsletter-form:focus-within {
  border-color: var(--accent);
}

.footer__newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-inverse);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.03em;
  padding: 4px 0;
}

.footer__newsletter-input::placeholder {
  color: rgba(239, 235, 228, 0.35);
}

.footer__newsletter-btn {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-inverse);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer__divider {
  width: 100%;
  height: 1px;
  background: var(--border-dark);
  margin: 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 32px;
  padding: 36px 0 28px;
}

.footer__brand-col {
  display: flex;
  flex-direction: column;
}

.footer__logo-img {
  max-width: 150px;
  height: auto;
  margin-bottom: 16px;
}

.footer__wordmark {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  letter-spacing: 0.25em;
  color: var(--text-inverse);
  margin-bottom: 16px;
}

.footer__socials {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin-top: auto;
}

.footer__social {
  color: rgba(239, 235, 228, 0.5);
  transition: color 300ms ease;
}

.footer__social:hover {
  color: var(--text-inverse);
}

.footer__col-heading {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px 0;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__link {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  color: rgba(239, 235, 228, 0.6);
  line-height: 2;
  transition: color 250ms ease;
}

.footer__link:hover {
  color: var(--text-inverse);
}

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

.footer__copy,
.footer__location {
  font-family: var(--font-sans);
  font-size: 11px;
  color: rgba(239, 235, 228, 0.35);
  margin: 0;
}

/* ============ FOOTER RESPONSIVE ============ */

@media (max-width: 1100px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 48px 32px; }
  .footer__brand-col { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .footer__trust { padding: 24px var(--pad); }
  .footer__trust-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer__trust-text { font-size: 10px; letter-spacing: 0.12em; }
  .footer__inner { padding: 48px var(--pad) 24px; }

  .footer__newsletter {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 40px;
  }
  .footer__newsletter-title { font-size: 1.375rem; }

  .footer__grid { grid-template-columns: 1fr; gap: 40px; padding: 40px 0; }
  .footer__brand-col { grid-column: auto; }
  .footer__logo-img { max-width: 140px; }
  .footer__brand-tagline { max-width: 100%; margin-bottom: 24px; }

  .footer__bottom {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
    padding-top: 24px;
  }
  .footer__bottom-left,
  .footer__bottom-right { text-align: center; }
  .footer__bottom-center { order: -1; }
}

/* ====================================================================
   FEATURED PIECE — AP-style full-bleed (single authority)
   ==================================================================== */

.featured-piece {
  position: relative;
  background: var(--bg-dark);
  min-height: 100vh;
  overflow: hidden;
  display: block;
}

.featured-piece__image-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--bg-placeholder);
  z-index: 0;
}

.featured-piece__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transition: transform 2000ms var(--ease-smooth);
}

.featured-piece__image-wrap.is-settled .featured-piece__image { transform: scale(1); }

.featured-piece__empty {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2A2521 0%, #1A1613 100%);
}

.featured-piece__empty-texture {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 3px, rgba(239,235,228,0.02) 3px, rgba(239,235,228,0.02) 6px),
    repeating-linear-gradient(-45deg, transparent, transparent 3px, rgba(239,235,228,0.02) 3px, rgba(239,235,228,0.02) 6px);
  background-size: 28px 28px;
}

.featured-piece__empty-label { display: none; }

.featured-piece::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(28, 26, 23, 0.75) 0%,
    rgba(28, 26, 23, 0.55) 40%,
    rgba(28, 26, 23, 0.15) 70%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

.featured-piece__content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(120px, 15vw, 200px) clamp(32px, 8vw, 120px);
  max-width: 720px;
}

.featured-piece__inner { max-width: 100%; }

.featured-piece__index {
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.25em;
  color: var(--accent-muted);
  margin-bottom: 32px;
  font-style: italic;
  opacity: 0.8;
}

.featured-piece__eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-muted);
  margin-bottom: 24px;
}

.featured-piece__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--text-inverse);
  margin-bottom: 32px;
}

.featured-piece__description {
  font-family: var(--font-sans);
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  line-height: 1.75;
  color: var(--text-inverse-muted);
  max-width: 460px;
  margin-bottom: 48px;
}

.featured-piece__link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-inverse);
  padding: 0;
  position: relative;
  transition: gap 400ms var(--ease-smooth), letter-spacing 400ms var(--ease-smooth);
}

.featured-piece__link::before {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--accent-muted);
  transition: width 400ms var(--ease-smooth), background 400ms ease;
}

.featured-piece__link::after { display: none; }

.featured-piece__link:hover { gap: 28px; letter-spacing: 0.34em; }
.featured-piece__link:hover::before { width: 72px; background: var(--text-inverse); }

@media (max-width: 990px) {
  .featured-piece__content {
    padding: clamp(80px, 12vw, 140px) clamp(24px, 6vw, 64px);
    max-width: 100%;
  }
  .featured-piece::after {
    background: linear-gradient(
      to top,
      rgba(28, 26, 23, 0.85) 0%,
      rgba(28, 26, 23, 0.55) 50%,
      rgba(28, 26, 23, 0.2) 100%
    );
  }
}

/* ====================================================================
   ART OF CURATION — AP-style full-bleed (mirrored)
   ==================================================================== */

.art-of-curation {
  position: relative;
  background: var(--bg-dark);
  min-height: 100vh;
  overflow: hidden;
  display: block;
}

.art-of-curation__image-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--bg-placeholder);
  z-index: 0;
}

.art-of-curation__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transition: transform 2000ms var(--ease-smooth);
}

.art-of-curation__image-wrap.is-settled .art-of-curation__image { transform: scale(1); }

.art-of-curation__empty {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2A2521 0%, #1A1613 100%);
}

.art-of-curation__empty-texture {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 3px, rgba(239,235,228,0.02) 3px, rgba(239,235,228,0.02) 6px),
    repeating-linear-gradient(-45deg, transparent, transparent 3px, rgba(239,235,228,0.02) 3px, rgba(239,235,228,0.02) 6px);
  background-size: 28px 28px;
}

.art-of-curation__empty-label { display: none; }

.art-of-curation::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(28, 26, 23, 0.75) 0%,
    rgba(28, 26, 23, 0.55) 40%,
    rgba(28, 26, 23, 0.15) 70%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

.art-of-curation__content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(120px, 15vw, 200px) clamp(32px, 8vw, 120px);
  max-width: 720px;
  margin-left: auto;
}

.art-of-curation__inner { max-width: 100%; }

.art-of-curation__eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-muted);
  margin-bottom: 24px;
}

.art-of-curation__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--text-inverse);
  margin-bottom: 32px;
}

.art-of-curation__description {
  font-family: var(--font-sans);
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  line-height: 1.75;
  color: var(--text-inverse-muted);
  max-width: 480px;
  margin-bottom: 48px;
}

.art-of-curation__link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-inverse);
  padding: 0;
  position: relative;
  transition: gap 400ms var(--ease-smooth), letter-spacing 400ms var(--ease-smooth);
}

.art-of-curation__link::before {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--accent-muted);
  transition: width 400ms var(--ease-smooth), background 400ms ease;
}

.art-of-curation__link::after { display: none; }

.art-of-curation__link:hover { gap: 28px; letter-spacing: 0.34em; }
.art-of-curation__link:hover::before { width: 72px; background: var(--text-inverse); }

@media (max-width: 990px) {
  .art-of-curation__content {
    padding: clamp(80px, 12vw, 140px) clamp(24px, 6vw, 64px);
    max-width: 100%;
    margin-left: 0;
  }
  .art-of-curation::after {
    background: linear-gradient(
      to top,
      rgba(28, 26, 23, 0.85) 0%,
      rgba(28, 26, 23, 0.55) 50%,
      rgba(28, 26, 23, 0.2) 100%
    );
  }
}

/* ============ SIGNATURE V WATERMARK ============ */

.signature-mark {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--bg-stone);
}

.signature-mark__v {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--accent);
  opacity: 0.4;
  font-style: italic;
  transition: opacity 600ms ease;
}

.signature-mark:hover .signature-mark__v { opacity: 0.7; }

/* ============ CURSOR MICRO-INTERACTIONS ============ */

@media (hover: hover) and (pointer: fine) {
  .product { transition: transform 600ms var(--ease-smooth); }
  .product:hover { transform: translateY(-4px); }
  .featured-piece__link,
  .art-of-curation__link,
  .collection__view-all-link {
    letter-spacing: 0.22em;
    transition: letter-spacing 400ms var(--ease-smooth), color 300ms ease;
  }
}

/* ============ REVEAL ANIMATIONS ============ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

.reveal.is-in-view { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 100ms; }
.reveal.d2 { transition-delay: 200ms; }
.reveal.d3 { transition-delay: 300ms; }

/* ============ MOTION LAYER ============ */

.collection__grid .product,
.collection__placeholder-grid .product {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 900ms var(--ease-smooth), transform 900ms var(--ease-smooth);
}

.collection__grid.is-cascading .product,
.collection__placeholder-grid.is-cascading .product {
  opacity: 1;
  transform: translateY(0);
}

.collection__grid.is-cascading .product:nth-child(1),
.collection__placeholder-grid.is-cascading .product:nth-child(1) { transition-delay: 100ms; }
.collection__grid.is-cascading .product:nth-child(2),
.collection__placeholder-grid.is-cascading .product:nth-child(2) { transition-delay: 300ms; }
.collection__grid.is-cascading .product:nth-child(3),
.collection__placeholder-grid.is-cascading .product:nth-child(3) { transition-delay: 500ms; }
.collection__grid.is-cascading .product:nth-child(4),
.collection__placeholder-grid.is-cascading .product:nth-child(4) { transition-delay: 700ms; }
.collection__grid.is-cascading .product:nth-child(5),
.collection__placeholder-grid.is-cascading .product:nth-child(5) { transition-delay: 900ms; }
.collection__grid.is-cascading .product:nth-child(6),
.collection__placeholder-grid.is-cascading .product:nth-child(6) { transition-delay: 1100ms; }

.reveal-words .word,
.reveal-words em .word,
.reveal-words strong .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms var(--ease-smooth), transform 900ms var(--ease-smooth);
  white-space: pre;
}

.reveal-words.is-in-view .word { opacity: 1; transform: translateY(0); }
.reveal-words.is-in-view .word:nth-child(1)  { transition-delay: 100ms; }
.reveal-words.is-in-view .word:nth-child(2)  { transition-delay: 200ms; }
.reveal-words.is-in-view .word:nth-child(3)  { transition-delay: 300ms; }
.reveal-words.is-in-view .word:nth-child(4)  { transition-delay: 400ms; }
.reveal-words.is-in-view .word:nth-child(5)  { transition-delay: 500ms; }
.reveal-words.is-in-view .word:nth-child(6)  { transition-delay: 600ms; }
.reveal-words.is-in-view .word:nth-child(7)  { transition-delay: 700ms; }
.reveal-words.is-in-view .word:nth-child(8)  { transition-delay: 800ms; }
.reveal-words.is-in-view .word:nth-child(9)  { transition-delay: 900ms; }
.reveal-words.is-in-view .word:nth-child(10) { transition-delay: 1000ms; }

.manifesto__rule,
.principle__rule,
.private-access__rule,
.footer__divider {
  width: 0;
  transition: width 1000ms var(--ease-smooth);
}

.manifesto__rule { transition-delay: 200ms; }
.principle__rule { transition-delay: 400ms; }
.private-access__rule { transition-delay: 200ms; }

.manifesto.is-line-visible .manifesto__rule { width: 48px; }
.principle.is-line-visible .principle__rule { width: 40px; }
.private-access.is-line-visible .private-access__rule { width: 40px; }
.footer.is-line-visible .footer__divider { width: 100%; }

.manifesto__mark {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 900ms var(--ease-smooth) 100ms, transform 900ms var(--ease-smooth) 100ms;
}

.manifesto.is-line-visible .manifesto__mark { opacity: 0.7; transform: translateY(0); }

/* ============ RESPONSIVE — GLOBAL ============ */

@media (max-width: 990px) {
  .header__nav { display: none; }
  .header__burger { display: flex; }
  .header__inner {
    grid-template-columns: auto 1fr auto;
    height: 64px;
  }
  .header__logo { font-size: 1.125rem; letter-spacing: 0.25em; }

  .hero { min-height: calc(100dvh - 64px); }

  .collection__grid,
  .collection__placeholder-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .collection__head {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
  }
  .collection__head-right { align-items: flex-start; }

  .principle {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
  }
  .principle--reversed .principle__image-wrap { order: 0; }
  .principle--reversed .principle__content { order: 1; padding-right: 0; }
  .principle__content { padding-left: 0; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .collection__grid,
  .collection__placeholder-grid { grid-template-columns: 1fr; gap: 48px; }

  .footer { padding: 60px var(--pad) 32px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer__logo-img { max-width: 140px; }
  .footer__socials { margin-top: 24px; gap: 20px; }
  .footer__col-heading { margin-bottom: 18px; }
  .footer__link { line-height: 2; }
  .footer__bottom { text-align: center; justify-content: center; gap: 8px; }
  .footer__copy, .footer__location { text-align: center; width: 100%; }
}

/* ============ REDUCED MOTION ============ */

@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;
  }
  .reveal,
  .principle,
  .collection__grid .product,
  .collection__placeholder-grid .product { opacity: 1 !important; transform: none !important; }
  .reveal-words .word,
  .reveal-words em .word,
  .reveal-words strong .word {
    opacity: 1 !important;
    transform: none !important;
  }
  .reveal-words.is-in-view .word,
  .principle.is-in-view .principle__num,
  .manifesto.is-line-visible .manifesto__mark {
    animation: none !important;
  }
  .manifesto__rule,
  .principle__rule,
  .private-access__rule,
  .footer__divider { width: auto; }
  .manifesto.is-line-visible .manifesto__rule { width: 48px; }
  .principle.is-line-visible .principle__rule { width: 40px; }
  .private-access.is-line-visible .private-access__rule { width: 40px; }
  .principle__image-wrap::before { transform: scaleX(0); }
  .principle__image,
  .featured-piece__image,
  .art-of-curation__image,
  .product__img { transform: none !important; }
}

/* ============ PRINT ============ */

@media print {
  .header,
  .footer,
  .hero__playpause,
  .transition,
  .drawer-backdrop,
  .drawer,
  .search-overlay,
  .vc-cookie,
  .vc-prefs,
  .hero__scroll,
  .art-of-curation::after,
  .featured-piece::after {
    display: none !important;
  }
  body, html { background: #fff !important; color: #1C1A17 !important; }
  .hero { height: auto !important; min-height: 0 !important; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 11px; color: #6B6459; }
}

/* ============ SEARCH OVERLAY ============ */

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-search);
  visibility: hidden;
  opacity: 0;
  transition: opacity 400ms ease, visibility 400ms;
}

.search-overlay.is-open { visibility: visible; opacity: 1; }

.search-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 26, 23, 0.4);
  cursor: pointer;
}

.search-overlay__panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg-ivory);
  transform: translateY(-100%);
  transition: transform 500ms var(--ease-smooth);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 80px rgba(28, 26, 23, 0.15);
}

.search-overlay.is-open .search-overlay__panel { transform: translateY(0); }

.search-overlay__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px var(--pad) 60px;
}

.search-overlay__header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
}

.search-overlay__form {
  display: flex;
  align-items: center;
  gap: 24px;
}

.search-overlay__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  padding: 12px 0;
}

.search-overlay__input::placeholder { color: rgba(28, 26, 23, 0.3); font-style: italic; }

.search-overlay__close {
  width: 44px;
  height: 44px;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  background: transparent;
  border: none;
  transition: transform 300ms ease;
}

.search-overlay__close:hover { transform: rotate(90deg); }

.search-overlay__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transform-origin: center;
}

.search-overlay__close span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.search-overlay__close span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }

.search-overlay__body { padding-top: 40px; min-height: 200px; position: relative; }

.search-overlay__initial { display: block; }
.search-overlay__initial.is-hidden { display: none; }

.search-overlay__hint-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.search-overlay__suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
}

.search-overlay__suggestions a {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--text-primary);
  transition: color 300ms ease;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.search-overlay__suggestions a:hover { color: var(--accent); border-bottom-color: var(--accent); }

.search-overlay__loading { display: none; padding: 40px 0; text-align: center; }
.search-overlay__loading.is-visible { display: block; }

.search-overlay__loading span {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 1.5px solid rgba(28, 26, 23, 0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: search-spin 700ms linear infinite;
}

@keyframes search-spin { to { transform: rotate(360deg); } }

.search-overlay__matches { display: none; }
.search-overlay__matches.is-visible { display: grid; grid-template-columns: 1fr; gap: 0; }

.search-overlay__match {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: opacity 300ms ease;
}

.search-overlay__match:first-child { border-top: 1px solid var(--border); }
.search-overlay__match:hover { opacity: 0.7; }

.search-overlay__match-image {
  width: 80px;
  height: 100px;
  overflow: hidden;
  background: var(--bg-placeholder);
}

.search-overlay__match-image img { width: 100%; height: 100%; object-fit: cover; }

.search-overlay__match-image--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-placeholder);
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.5;
}

.search-overlay__match-content { display: flex; flex-direction: column; gap: 4px; }

.search-overlay__match-type {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2px;
}

.search-overlay__match-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.3;
}

.search-overlay__match-price {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.search-overlay__view-all { text-align: center; padding-top: 32px; margin-top: 8px; }

.search-overlay__view-all-link {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-primary);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--text-primary);
  transition: color 300ms ease, border-color 300ms ease;
}

.search-overlay__view-all-link:hover { color: var(--accent); border-bottom-color: var(--accent); }

.search-overlay__empty { display: none; text-align: center; padding: 40px 0; }
.search-overlay__empty.is-visible { display: block; }

.search-overlay__empty-title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.search-overlay__empty-subtitle {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-secondary);
}

@media (max-width: 640px) {
  .search-overlay__inner { padding: 20px var(--pad) 40px; }
  .search-overlay__header { padding-bottom: 16px; }
  .search-overlay__form { gap: 12px; }
  .search-overlay__input { font-size: 1.125rem; padding: 8px 0; }
  .search-overlay__close { width: 36px; height: 36px; }
  .search-overlay__body { padding-top: 24px; }
  .search-overlay__hint-eyebrow { margin-bottom: 16px; }
  .search-overlay__suggestions { flex-direction: column; gap: 12px; }
  .search-overlay__suggestions a { font-size: 18px; }
  .search-overlay__match { grid-template-columns: 60px 1fr; gap: 16px; padding: 16px 0; }
  .search-overlay__match-image { width: 60px; height: 75px; }
  .search-overlay__match-title { font-size: 17px; }
  .search-overlay__match-price { grid-column: 2; margin-top: 4px; }
  .search-overlay__panel { max-height: 100vh; max-height: 100dvh; }
}

/* ============ COOKIE BANNER + PREFS ============ */

#shopify-pc__banner,
.shopify-pc__banner,
#shopify-pc__prefs {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.vc-cookie {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: var(--z-cookie);
  width: auto;
  max-width: min(720px, calc(100vw - 32px));
  background: rgba(10, 8, 6, 0.97);
  border: 1px solid rgba(239, 235, 228, 0.22);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 600ms var(--ease-smooth), transform 600ms var(--ease-smooth), visibility 600ms;
  font-family: var(--font-sans);
}

.vc-cookie.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.vc-cookie__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 44px 18px 24px;
}

.vc-cookie__text {
  flex: 1;
  min-width: 0;
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.6;
  color: rgba(239, 235, 228, 0.72);
  letter-spacing: 0.01em;
  margin: 0;
}

.vc-cookie__link {
  color: var(--text-inverse);
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 3px;
  transition: color 300ms ease;
}

.vc-cookie__link:hover { color: var(--accent-muted); }

.vc-cookie__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.vc-cookie__btn {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 0;
  background: transparent;
  color: var(--text-inverse);
  cursor: pointer;
  transition: background 400ms ease, border-color 400ms ease, opacity 300ms ease;
  white-space: nowrap;
  line-height: 1.3;
  display: inline-block;
}

.vc-cookie__btn--outline { border: 1px solid rgba(239, 235, 228, 0.25); }
.vc-cookie__btn--outline:hover { background: rgba(239, 235, 228, 0.06); border-color: rgba(239, 235, 228, 0.5); }

.vc-cookie__btn--link {
  border: none;
  padding: 10px 4px;
  opacity: 0.55;
  font-size: 9.5px;
  letter-spacing: 0.18em;
}

.vc-cookie__btn--link:hover { opacity: 1; background: transparent; }

.vc-cookie__close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 26px;
  height: 26px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: 0.5;
  transition: opacity 300ms ease;
}

.vc-cookie__close:hover { opacity: 1; }

.vc-cookie__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: var(--text-inverse);
}

.vc-cookie__close span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.vc-cookie__close span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }

@media (max-width: 720px) {
  .vc-cookie {
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(20px);
    max-width: 100%;
    width: 100%;
    border-left: none;
    border-right: none;
    border-bottom: none;
    border-top: 1px solid rgba(239, 235, 228, 0.15);
  }
  .vc-cookie.is-visible { transform: translateY(0); }
  .vc-cookie__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px 44px 16px 18px;
  }
  .vc-cookie__text { font-size: 11px; line-height: 1.55; padding-right: 0; }
  .vc-cookie__actions {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 8px;
    align-items: center;
  }
  .vc-cookie__btn { padding: 10px 8px; font-size: 9px; letter-spacing: 0.14em; text-align: center; }
  .vc-cookie__btn--link { font-size: 9px; padding: 10px 4px; text-align: left; justify-self: start; }
  .vc-cookie__close { top: 12px; right: 12px; width: 24px; height: 24px; }
}

.vc-prefs {
  position: fixed;
  inset: 0;
  z-index: var(--z-prefs);
  visibility: hidden;
  opacity: 0;
  transition: opacity 400ms ease, visibility 400ms;
}

.vc-prefs.is-visible { opacity: 1; visibility: visible; }

.vc-prefs__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 26, 23, 0.5);
  cursor: pointer;
}

.vc-prefs__panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.98);
  width: min(560px, calc(100vw - 32px));
  max-height: min(720px, calc(100vh - 32px));
  overflow-y: auto;
  background: var(--bg-ivory);
  border: 1px solid var(--border);
  padding: 48px 40px 40px;
  box-shadow: 0 40px 80px rgba(28, 26, 23, 0.25);
  transition: transform 400ms var(--ease-smooth);
}

.vc-prefs.is-visible .vc-prefs__panel { transform: translate(-50%, -50%) scale(1); }

.vc-prefs__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 300ms ease;
}

.vc-prefs__close:hover { transform: rotate(90deg); }

.vc-prefs__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  background: var(--text-primary);
}

.vc-prefs__close span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.vc-prefs__close span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }

.vc-prefs__title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--text-primary);
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.vc-prefs__intro {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 32px 0;
}

.vc-prefs__group {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.vc-prefs__row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.vc-prefs__row-text { flex: 1; min-width: 0; }

.vc-prefs__row-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin: 0 0 8px 0;
}

.vc-prefs__row-desc {
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.vc-prefs__toggle {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.vc-prefs__toggle--locked span {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(28, 26, 23, 0.35);
  cursor: default;
}

.vc-prefs__toggle input[type="checkbox"] { position: absolute; opacity: 0; pointer-events: none; }

.vc-prefs__toggle-track {
  display: block;
  width: 36px;
  height: 20px;
  background: rgba(28, 26, 23, 0.15);
  position: relative;
  transition: background 300ms ease;
}

.vc-prefs__toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: var(--bg-ivory);
  transition: left 300ms var(--ease-smooth);
}

.vc-prefs__toggle input:checked ~ .vc-prefs__toggle-track { background: var(--accent); }
.vc-prefs__toggle input:checked ~ .vc-prefs__toggle-track .vc-prefs__toggle-thumb { left: 18px; }

.vc-prefs__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.vc-prefs__btn {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 0;
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
  transition: background 400ms ease, border-color 400ms ease;
  white-space: nowrap;
  line-height: 1.3;
  border: 1px solid rgba(28, 26, 23, 0.25);
}

.vc-prefs__btn:hover { background: rgba(28, 26, 23, 0.05); border-color: rgba(28, 26, 23, 0.6); }

@media (max-width: 640px) {
  .vc-prefs__panel { padding: 40px 24px 32px; max-height: calc(100vh - 16px); }
  .vc-prefs__title { font-size: 22px; }
  .vc-prefs__row { flex-direction: column; gap: 12px; }
  .vc-prefs__actions { flex-direction: column; align-items: stretch; gap: 8px; }
  .vc-prefs__btn { text-align: center; }
}

.main-product{
padding:120px 6vw;
}

.product-layout{
display:grid;
grid-template-columns:1.25fr 0.75fr;
gap:80px;
align-items:start;
}

.product-image{
width:100%;
display:block;
}

.product-info h1{
font-size:44px;
font-family:"Playfair Display",serif;
margin-bottom:20px;
}

.product-price{
font-size:22px;
margin-bottom:30px;
}

.product-description{
margin-top:40px;
line-height:1.8;
opacity:.85;
}

#product-form button{
width:100%;
padding:18px;
cursor:pointer;
background:#111;
color:#fff;
border:none;
letter-spacing:.12em;
text-transform:uppercase;
}

#product-form select{
width:100%;
margin-bottom:20px;
padding:14px;
}

@media(max-width:900px){

.product-layout{

grid-template-columns:1fr;

gap:40px;

}

}

.shopify-payment-button { display: none !important; }

/* ============ FINAL VAUCLONT PRIVATE CORRESPONDENCE ============ */

.private-access {
  background: var(--bg-light, #f8f6f0);
  padding: 72px var(--pad, 6vw) 76px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
}

.private-access__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* Left Column */
.private-access__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.private-access__eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.6);
  display: block;
  margin-bottom: 14px;
}

.private-access__title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #111;
  margin: 0;
}

/* Right Column */
.private-access__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 440px;
  margin-left: auto;
}

.private-access__subtitle {
  font-family: var(--font-sans);
  font-size: 13px;
  color: #222;
  line-height: 1.6;
  margin: 0 0 20px 0;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Form Container */
.private-access__form-wrap {
  width: 100%;
  margin-bottom: 12px;
}

.private-access__form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #111;
  padding-bottom: 8px;
  width: 100%;
}

.private-access__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: 13px;
  color: #111;
  padding: 4px 0 6px;
}

.private-access__input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

/* ============ REFINED ULTRA-LUXURY JOIN ACTION ============ */

.private-access__btn {
  background: transparent !important;
  border: none;
  outline: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0 6px 12px; /* Flushed to the right edge with zero background box */
  color: #111;
  opacity: 0.75;
  transition: opacity 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.private-access__btn-text {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.private-access__btn-icon {
  display: flex;
  align-items: center;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover: Pure micro-interaction without blocky backgrounds */
.private-access__btn:hover {
  background: transparent !important;
  opacity: 1;
}

.private-access__btn:hover .private-access__btn-icon {
  transform: translateX(5px); /* Smooth, effortless arrow glide */
}

.private-access__btn:active {
  transform: scale(0.98);
}

/* Trust Statement */
.private-access__note {
  font-family: var(--font-sans);
  font-size: 11px;
  color: rgba(0, 0, 0, 0.5);
  margin: 0;
  font-style: italic;
  text-align: left;
}

/* Mobile Breakpoint */
@media (max-width: 900px) {
  .private-access__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .private-access__right {
    margin-left: 0;
    max-width: 100%;
  }
  .private-access__title {
    font-size: 2.2rem;
  }
}

/* ============ SHOPIFY POLICY NATIVE OVERRIDES ============ */

.shopify-policy__container {
  max-width: 680px !important;
  margin: 0 auto !important;
  padding: 60px 5vw 100px !important;
  min-height: auto !important;
}

.shopify-policy__title {
  text-align: center !important;
  margin-bottom: 40px !important;
}

.shopify-policy__title h1 {
  font-family: var(--font-serif) !important;
  font-size: 2.5rem !important;
  font-weight: 400 !important;
  font-style: italic !important;
  color: #111 !important;
}

.shopify-policy__body {
  font-family: var(--font-sans) !important;
  font-size: 13.5px !important;
  line-height: 1.95 !important;
  color: rgba(0, 0, 0, 0.8) !important;
}

.shopify-policy__body h2 {
  font-family: var(--font-serif) !important;
  font-size: 1.35rem !important;
  font-weight: 400 !important;
  font-style: italic !important;
  color: #111 !important;
  margin: 40px 0 16px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
  padding-bottom: 8px !important;
}

/* ============ VAUCLONT MANIFESTO & STORY TYPOGRAPHY ============ */

/* Lead paragraph styling */
.page-content__body .story-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.5rem) !important;
  font-style: italic;
  line-height: 1.6;
  color: #111;
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}

/* Pull quote styling */
.story-quote {
  margin: 56px 0;
  padding: 32px 0 32px 28px;
  border-left: 1.5 solid #111;
  border-left: 1px solid rgba(0, 0, 0, 0.25);
}

.story-quote p {
  font-family: var(--font-serif) !important;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem) !important;
  font-style: italic;
  line-height: 1.55;
  color: #111 !important;
  margin: 0 !important;
  letter-spacing: -0.005em;
}

/* Subheadings */
.page-content__body h2 {
  font-family: var(--font-sans) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: rgba(0, 0, 0, 0.5) !important;
  margin: 56px 0 20px !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

/* Secondary Cart Button Styling */
.button--secondary-cart {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 24px;
  margin-top: 12px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #111;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: all 250ms ease;
}

.button--secondary-cart:hover {
  border-color: #000;
  background: rgba(0, 0, 0, 0.03);
}
/* =========================================================
   RETURN POLICY CTA
   ========================================================= */

.shopify-policy__body .policy-return-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: auto;
  min-height: 52px;
  margin: 8px 0 10px;
  padding: 0 22px;

  border: 1px solid #111;
  background: #111;
  color: #f5f2eb;

  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;

  transition:
    background-color 250ms ease,
    color 250ms ease,
    border-color 250ms ease;
}

.shopify-policy__body .policy-return-cta span:last-child {
  font-size: 15px;
  letter-spacing: 0;
  transition: transform 300ms ease;
}

.shopify-policy__body .policy-return-cta:hover {
  background: transparent;
  border-color: #111;
  color: #111;
}

.shopify-policy__body .policy-return-cta:hover span:last-child {
  transform: translateX(5px);
}

.shopify-policy__body .policy-return-cta:focus-visible {
  outline: 2px solid var(--accent, #b99a63);
  outline-offset: 4px;
}

/* =========================================================
   RETURN POLICY CTA — DARK MODE
   ========================================================= */

html[data-theme-resolved="dark"] .shopify-policy__body .policy-return-cta {
  border-color: #f2ede5;
  background: #f2ede5;
  color: #111;
}

html[data-theme-resolved="dark"] .shopify-policy__body .policy-return-cta:hover {
  border-color: #f2ede5;
  background: transparent;
  color: #f2ede5;
}

html[data-theme-resolved="dark"] .shopify-policy__body .policy-return-cta:focus-visible {
  outline-color: var(--accent, #b99a63);
}

/* =========================================================
   RETURN POLICY CTA — MOBILE
   ========================================================= */

@media (max-width: 600px) {
  .shopify-policy__body .policy-return-cta {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    gap: 14px;
    font-size: 9.5px;
  }
}

/* ============================================
   VAUCLONT — GLOBAL TYPOGRAPHY SYSTEM
   Playfair Display Italic: all editorial headings
   Montserrat: all body and interface content
   ============================================ */

/* Editorial display typography */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.hero__heading,
.manifesto__title,
.featured-piece__heading,
.art-of-curation__heading,
.first-principles__title,
.principle__title,
.collection__title,
.private-access__title,
.page-content__title,
.shopify-policy__title h1,
.notfound-page__title,
.search-page__title,
.search-result__title,
.vauclont-product-title,
.vauclont-cart-title,
.vauclont-item-title,
.product-title,
.vc-prefs__title {
  font-family: var(--font-serif) !important;
  font-weight: 400 !important;
  font-style: italic !important;
  text-transform: none !important;
  letter-spacing: 0.01em !important;
}

/* Playfair italics must survive reveal-word animation spans */
.reveal-words,
.reveal-words .word,
.reveal-words em,
.reveal-words em .word,
.reveal-words strong,
.reveal-words strong .word {
  font-family: var(--font-serif) !important;
  font-style: italic !important;
  font-weight: 400 !important;
  letter-spacing: inherit !important;
}

/* Body and all functional text */
body,
p,
li,
blockquote,
figcaption,
label,
input,
select,
textarea,
button,
.btn,
.button,
a,
.header__nav a,
.drawer__link,
.footer__link,
.product__price,
.product-price,
.vauclont-product-price,
.vauclont-item-line-price,
.vauclont-old-price,
.search-result__price,
.cart-subtotal,
.vauclont-cart-eyebrow,
.vauclont-brand-tag,
.vauclont-option-meta,
.vauclont-acc-trigger,
.meta-label,
.meta-value,
[data-font="sans"] {
  font-family: var(--font-sans) !important;
  font-style: normal;
}

/* Utility labels: restrained, spaced, never italic */
.hero__eyebrow,
.collection__eyebrow,
.first-principles__eyebrow,
.featured-piece__eyebrow,
.art-of-curation__eyebrow,
.private-access__eyebrow,
.page-content__eyebrow,
.manifesto__mark,
.header__nav a,
.drawer__link,
.footer__col-heading,
.vauclont-cart-eyebrow,
.vauclont-brand-tag,
.search-result__type,
.search-overlay__match-type,
.product__price,
.product-price,
.vauclont-product-price,
.vauclont-option-meta,
.vauclont-acc-trigger {
  font-family: var(--font-sans) !important;
  font-style: normal !important;
}

/* Italic is reserved for intentional editorial emphasis */
.font-italic,
em,
i {
  font-family: var(--font-serif) !important;
  font-style: italic !important;
  font-weight: 400 !important;
}

/* ============================================
   VAUCLONT RETURN TO TOP
   ============================================ */

.vc-return-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 990;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-width: 48px;
  height: 48px;
  padding: 0 14px;

  border: 1px solid rgba(239, 235, 228, 0.28);
  border-radius: 0;

  background: rgba(28, 26, 23, 0.94);
  color: var(--text-inverse);

  box-shadow: 0 12px 30px rgba(28, 26, 23, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);

  transition:
    opacity 300ms ease,
    transform 300ms var(--ease-smooth),
    visibility 300ms;
}

.vc-return-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.vc-return-top:hover {
  background: var(--bg-ivory);
  border-color: var(--bg-ivory);
  color: var(--text-primary);
}

.vc-return-top__label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vc-return-top__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .vc-return-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    min-width: 44px;
    height: 44px;
    padding: 0;
  }

  .vc-return-top__label {
    display: none;
  }

  .vc-return-top__icon {
    width: 16px;
    height: 16px;
  }
}

/* Keep the control above content but below consent choices */
.vc-cookie.is-visible ~ .vc-return-top {
  bottom: 112px;
}

@media (max-width: 720px) {
  .vc-cookie.is-visible ~ .vc-return-top {
    bottom: 152px;
  }
}

/* ============================================
   VAUCLONT DISPLAY PREFERENCES
   Automatic dark mode + manual theme override
   ============================================ */

/* Explicit visitor selection: Dark */
html[data-theme="dark"] {
  color-scheme: dark;

  --bg-ivory: #181512;
  --bg-stone: #24201b;
  --bg-dark: #0f0d0b;
  --bg-placeholder: #302b25;

  --text-primary: #f2ede5;
  --text-secondary: #b9b1a6;
  --text-inverse: #f2ede5;
  --text-inverse-muted: #b9b1a6;
  --text-placeholder: rgba(242, 237, 229, 0.42);

  --accent: #b99a63;
  --accent-muted: #d4c09b;

  --border: rgba(242, 237, 229, 0.14);
  --border-dark: rgba(242, 237, 229, 0.14);
  --focus: rgba(212, 192, 155, 0.72);

  --bg-light: #181512;
}

/* Automatic dark mode when the visitor has no manual selection */
@media (prefers-color-scheme: dark) {
  html:not([data-theme]) {
    color-scheme: dark;

    --bg-ivory: #181512;
    --bg-stone: #24201b;
    --bg-dark: #0f0d0b;
    --bg-placeholder: #302b25;

    --text-primary: #f2ede5;
    --text-secondary: #b9b1a6;
    --text-inverse: #f2ede5;
    --text-inverse-muted: #b9b1a6;
    --text-placeholder: rgba(242, 237, 229, 0.42);

    --accent: #b99a63;
    --accent-muted: #d4c09b;

    --border: rgba(242, 237, 229, 0.14);
    --border-dark: rgba(242, 237, 229, 0.14);
    --focus: rgba(212, 192, 155, 0.72);

    --bg-light: #181512;
  }
}

/* Header Theme Icon */
.header__theme-toggle {
  position: relative;
}

.header__theme-icon {
  position: absolute;
  width: 18px;
  height: 18px;
  transition: opacity 250ms ease, transform 350ms var(--ease-smooth);
}

.header__theme-icon--moon {
  opacity: 0;
  transform: rotate(-25deg) scale(0.75);
}

.header__theme-toggle[aria-pressed="true"] .header__theme-icon--sun {
  opacity: 0;
  transform: rotate(25deg) scale(0.75);
}

.header__theme-toggle[aria-pressed="true"] .header__theme-icon--moon {
  opacity: 1;
  transform: rotate(0) scale(1);
}

/* Footer display preferences */
.footer__preferences {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;

  margin: 26px 0 22px;
  padding: 18px 0;

  border-bottom: 1px solid var(--border-dark);
}

.footer__preferences-title {
  margin: 0;
  color: rgba(239, 235, 228, 0.42);
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer__preferences-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__preference {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  min-height: 38px;
  padding: 0 13px;

  border: 1px solid rgba(239, 235, 228, 0.2);
  background: transparent;
  color: rgba(239, 235, 228, 0.72);

  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;

  transition:
    color 250ms ease,
    background 250ms ease,
    border-color 250ms ease,
    transform 250ms var(--ease-smooth);
}

.footer__preference:hover {
  border-color: rgba(239, 235, 228, 0.68);
  background: rgba(239, 235, 228, 0.06);
  color: var(--text-inverse);
  transform: translateY(-1px);
}

.footer__preference:active {
  transform: translateY(0);
}

.footer__preference-label {
  color: inherit;
}

.footer__preference-state {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  color: rgba(239, 235, 228, 0.46);
  font-size: 8px;
  letter-spacing: 0.14em;
}

.footer__preference-state::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

/* Clear active state: warm brass border, dot, and text */
.footer__preference[aria-pressed="true"] {
  border-color: var(--accent);
  background: rgba(185, 154, 99, 0.1);
  color: var(--text-inverse);
}

.footer__preference[aria-pressed="true"] .footer__preference-state {
  color: var(--accent-muted);
}

/* Light mode is intentionally visible too, not an invisible default */
.footer__preference[data-theme-toggle][aria-pressed="false"] {
  border-color: rgba(239, 235, 228, 0.34);
}

.footer__preference[data-theme-toggle][aria-pressed="false"] .footer__preference-state {
  color: rgba(239, 235, 228, 0.7);
}

@media (max-width: 640px) {
  .footer__preferences {
    flex-direction: column;
    gap: 14px;
    margin: 20px 0;
    padding: 20px 0;
  }

  .footer__preferences-controls {
    width: 100%;
    justify-content: center;
  }

  .footer__preference {
    flex: 1;
    justify-content: space-between;
    max-width: 180px;
  }
}

/* Dark-mode corrections for sections previously using hard-coded light colours */
html[data-theme="dark"] .private-access,
html[data-theme="dark"] .page-content,
html[data-theme="dark"] .shopify-policy__container,
html[data-theme="dark"] .vauclont-subnav-bar,
html[data-theme="dark"] .vauclont-pdp-container,
html[data-theme="dark"] .vauclont-main-stage,
html[data-theme="dark"] .vauclont-thumb-btn,
html[data-theme="dark"] .vauclont-cart-page,
html[data-theme="dark"] .refine-drawer,
html[data-theme="dark"] .drawer-footer {
  background-color: var(--bg-ivory);
  color: var(--text-primary);
}

html[data-theme="dark"] .private-access__title,
html[data-theme="dark"] .private-access__subtitle,
html[data-theme="dark"] .private-access__input,
html[data-theme="dark"] .page-content__title,
html[data-theme="dark"] .page-content__body,
html[data-theme="dark"] .product-title,
html[data-theme="dark"] .fog-tab-link,
html[data-theme="dark"] .result-count-bold,
html[data-theme="dark"] .fog-filter-btn,
html[data-theme="dark"] .drawer-title,
html[data-theme="dark"] .accordion-header,
html[data-theme="dark"] .custom-checkbox-label,
html[data-theme="dark"] .vauclont-cta-btn,
html[data-theme="dark"] .vauclont-product-title,
html[data-theme="dark"] .vauclont-product-price,
html[data-theme="dark"] .vauclont-cart-title,
html[data-theme="dark"] .vauclont-item-title,
html[data-theme="dark"] .vauclont-item-line-price,
html[data-theme="dark"] .vauclont-subtotal-row {
  color: var(--text-primary);
}

html[data-theme="dark"] .private-access__form,
html[data-theme="dark"] .vauclont-rule,
html[data-theme="dark"] .vauclont-accordions,
html[data-theme="dark"] .vauclont-acc-item,
html[data-theme="dark"] .vauclont-cart-items,
html[data-theme="dark"] .vauclont-cart-item,
html[data-theme="dark"] .fog-toolbar-bar,
html[data-theme="dark"] .accordion-group {
  border-color: var(--border);
}

html[data-theme="dark"] .vauclont-cta-btn,
html[data-theme="dark"] .apply-btn,
html[data-theme="dark"] .reset-empty-btn,
 .vauclont-checkout-btn,

  background: var(--text-primary);
  border-color: var(--text-primary);
  color: var(--bg-dark);
}

/* Manual reduced-motion preference */
html[data-reduce-motion="true"] *,
html[data-reduce-motion="true"] *::before,
html[data-reduce-motion="true"] *::after {
  scroll-behavior: auto !important;
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
}

/* Header icon sizing safeguard */
.header__actions .header__icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
}

.header__actions .header__icon svg {
  display: block;
  width: 18px !important;
  height: 18px !important;
  max-width: 18px;
  max-height: 18px;
}

/* ============================================
   PRODUCT TYPOGRAPHY + DARK MODE LEGIBILITY
   ============================================ */

/* Homepage product names: editorial, not utility text */
.collection__grid .product__name,
.collection__placeholder-grid .product__name {
  font-family: var(--font-serif) !important;
  font-size: clamp(1.15rem, 1.4vw, 1.35rem);
  font-style: italic !important;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-transform: none;
}

/* Homepage card prices: restrained but readable */
.collection__grid .product__price,
.collection__placeholder-grid .product__price {
  margin-top: 8px;
  color: var(--text-secondary);
  font-family: var(--font-sans) !important;
  font-size: 14px;
  font-style: normal !important;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* Dedicated collection-page card names and prices */
.maison-card .product-title {
  font-family: var(--font-serif) !important;
  font-size: 1.25rem;
  font-style: italic !important;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-transform: none;
}

.maison-card .product-price {
  font-family: var(--font-sans) !important;
  font-size: 15px;
  font-style: normal !important;
  font-weight: 400;
  letter-spacing: 0.04em;
  opacity: 0.78;
}

/* Product-page price: present, but still quiet */
.vauclont-product-price {
  color: var(--text-secondary);
  font-family: var(--font-sans) !important;
  font-size: 18px;
  font-style: normal !important;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

/* Cart pricing: a little more legible without overpowering the page */
.vauclont-item-line-price {
  font-size: 17px;
  letter-spacing: 0.04em;
}

/* ============================================
   DARK MODE: PRODUCT IMAGE CANVAS
   Garments must remain visible in dark mode.
   ============================================ */

html[data-theme-resolved="dark"] .vauclont-main-stage {
  background: #ebe5da !important;
}

html[data-theme-resolved="dark"] .vauclont-main-stage img {
  mix-blend-mode: normal !important;
}

html[data-theme-resolved="dark"] .vauclont-thumb-btn {
  background: #ebe5da !important;
  border-color: rgba(242, 237, 229, 0.2);
}

html[data-theme-resolved="dark"] .vauclont-thumb-btn img {
  mix-blend-mode: normal !important;
}

/* Dark-mode Private Correspondence legibility */
html[data-theme-resolved="dark"] .private-access__eyebrow {
  color: rgba(242, 237, 229, 0.58);
}

html[data-theme-resolved="dark"] .private-access__title,
html[data-theme-resolved="dark"] .private-access__subtitle,
html[data-theme-resolved="dark"] .private-access__input,
html[data-theme-resolved="dark"] .private-access__btn {
  color: var(--text-primary);
}

html[data-theme-resolved="dark"] .private-access__input::placeholder {
  color: rgba(242, 237, 229, 0.42);
}

html[data-theme-resolved="dark"] .private-access__note {
  color: rgba(242, 237, 229, 0.56);
}

html[data-theme-resolved="dark"] .private-access__form {
  border-bottom-color: rgba(242, 237, 229, 0.42);
}

/* Dark-mode collection-page legibility */
html[data-theme-resolved="dark"] .brand-sub,
html[data-theme-resolved="dark"] .product-price,
html[data-theme-resolved="dark"] .fog-tab-link,
html[data-theme-resolved="dark"] .tab-slash,
html[data-theme-resolved="dark"] .sort-option-item,
html[data-theme-resolved="dark"] .custom-checkbox-label,
html[data-theme-resolved="dark"] .accordion-icon {
  color: var(--text-secondary);
}

html[data-theme-resolved="dark"] .fog-tab-link:hover,
html[data-theme-resolved="dark"] .fog-tab-link.active,
html[data-theme-resolved="dark"] .sort-option-item:hover,
html[data-theme-resolved="dark"] .sort-option-item input:checked + span,
html[data-theme-resolved="dark"] .custom-checkbox-label:hover {
  color: var(--text-primary);
}

html[data-theme-resolved="dark"] .filter-icon-bar,
html[data-theme-resolved="dark"] .filter-icon-bar::before,
html[data-theme-resolved="dark"] .custom-checkbox-label input:checked + .checkbox-box {
  background: var(--text-primary);
}

html[data-theme-resolved="dark"] .checkbox-box,
html[data-theme-resolved="dark"] .price-input-box,
html[data-theme-resolved="dark"] .vauclont-qty-control,
html[data-theme-resolved="dark"] .vauclont-swatch .swatch-text {
  border-color: var(--border);
}

html[data-theme-resolved="dark"] .price-input-box {
  color: var(--text-primary);
}

/* ============================================
   DARK MODE PRODUCT SELECTOR REFINEMENT
   ============================================ */

/* Unselected Colour + Size options */
html[data-theme-resolved="dark"] .vauclont-swatch .swatch-text {
  background: transparent;
  border-color: rgba(242, 237, 229, 0.24);
  color: #f2ede5 !important;
}

/* Hover state: clear indication that an option is pressable */
html[data-theme-resolved="dark"] .vauclont-swatch:hover .swatch-text {
  border-color: rgba(242, 237, 229, 0.72);
  background: rgba(242, 237, 229, 0.05);
  color: #ffffff !important;
}

/* Selected Colour + Size option */
html[data-theme-resolved="dark"] .vauclont-swatch input:checked + .swatch-text {
  background: #efeae2 !important;
  border-color: #efeae2 !important;
  color: #181512 !important;
}

/* Quantity selector */
html[data-theme-resolved="dark"] .vauclont-qty-control {
  border-color: rgba(242, 237, 229, 0.24);
}

html[data-theme-resolved="dark"] .vauclont-qty-control button,
html[data-theme-resolved="dark"] .vauclont-qty-control input {
  color: #f2ede5 !important;
}

/* Primary acquisition action */
html[data-theme-resolved="dark"] .vauclont-cta-btn {
  background: #efeae2 !important;
  border-color: #efeae2 !important;
  color: #181512 !important;
}

html[data-theme-resolved="dark"] .vauclont-cta-btn span {
  color: #181512 !important;
}

/* Clear hover indication for the acquisition action */
html[data-theme-resolved="dark"] .vauclont-cta-btn:hover:not(:disabled) {
  background: transparent !important;
  border-color: #efeae2 !important;
  color: #efeae2 !important;
}

html[data-theme-resolved="dark"] .vauclont-cta-btn:hover:not(:disabled) span {
  color: #efeae2 !important;
}

/* Before all options are chosen: quiet outlined disabled control */
html[data-theme-resolved="dark"] .vauclont-cta-btn:disabled {
  background: transparent !important;
  border-color: rgba(242, 237, 229, 0.24) !important;
  color: rgba(242, 237, 229, 0.46) !important;
}

html[data-theme-resolved="dark"] .vauclont-cta-btn:disabled span {
  color: rgba(242, 237, 229, 0.46) !important;
}

/* ============================================
   MOBILE PRODUCT: RETURN-TO-TOP CLEARANCE
   Keep it away from the sticky purchase action.
   ============================================ */

@media (max-width: 767px) {
  body.template-product .vc-return-top {
    bottom: 88px;
    z-index: 940;
  }

  body.template-product .vc-cookie.is-visible ~ .vc-return-top {
    bottom: 168px;
  }
}

/* ============================================
   VAUCLONT COLLECTION GRID CONTROLS
   ============================================ */

.fog-toolbar-tools {
  display: flex;
  align-items: center;
  gap: 28px;
}

.fog-view-controls {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.fog-view-controls__label {
  margin-right: 8px;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.fog-view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 28px;
  height: 28px;
  padding: 0;

  border: 1px solid transparent;
  background: transparent;
  color: var(--text-secondary);

  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;

  transition:
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.fog-view-btn:hover {
  border-color: var(--border);
  color: var(--text-primary);
}

.fog-view-btn[aria-pressed="true"] {
  border-color: var(--text-primary);
  background: var(--text-primary);
  color: var(--bg-ivory);
}

/* Product layout choices */
.maison-collection-root[data-grid-view="1"] .maison-grid {
  grid-template-columns: minmax(0, 1fr) !important;
  max-width: 720px;
}

.maison-collection-root[data-grid-view="2"] .maison-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.maison-collection-root[data-grid-view="4"] .maison-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 36px 20px !important;
}

.maison-collection-root[data-grid-view="1"] .card-meta {
  padding-top: 4px;
}

.maison-collection-root[data-grid-view="1"] .product-title {
  font-size: 1.55rem !important;
}

@media (max-width: 900px) {
  .fog-toolbar-tools {
    width: 100%;
    justify-content: space-between;
  }

  .maison-collection-root[data-grid-view="4"] .maison-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .fog-toolbar-tools {
    gap: 14px;
  }

  .fog-view-btn--four {
    display: none;
  }

  .maison-collection-root[data-grid-view="1"] .maison-grid {
    max-width: none;
  }

  .maison-collection-root[data-grid-view="1"] .product-title {
    font-size: 1.35rem !important;
  }
}

/* ============================================
   VAUCLONT DRAWER CART
   ============================================ */

body.cart-drawer-open {
  overflow: hidden;
}

.vc-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 9999;

  visibility: hidden;
  pointer-events: none;

  transition: visibility 0s linear 550ms;
}

.vc-cart-drawer.is-open {
  visibility: visible;
  pointer-events: auto;

  transition-delay: 0s;
}

.vc-cart-drawer__backdrop {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  background: rgba(10, 8, 6, 0.48);
  opacity: 0;

  transition: opacity 400ms ease;
}

.vc-cart-drawer.is-open .vc-cart-drawer__backdrop {
  opacity: 1;
}

.vc-cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;

  display: flex;
  flex-direction: column;

  width: min(470px, 100vw);
  height: 100vh;
  height: 100dvh;

  background: var(--bg-ivory);
  color: var(--text-primary);

  box-shadow: -24px 0 70px rgba(10, 8, 6, 0.18);

  transform: translateX(102%);
  transition: transform 550ms var(--ease-smooth);
}

.vc-cart-drawer.is-open .vc-cart-drawer__panel {
  transform: translateX(0);
}

.vc-cart-drawer__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;

  padding: 28px 30px 24px;
  border-bottom: 1px solid var(--border);
}

.vc-cart-drawer__eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.vc-cart-drawer__title {
  margin: 0;
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-size: 2rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}

.vc-cart-drawer__close {
  position: relative;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
}

.vc-cart-drawer__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 1px;
  background: currentColor;
}

.vc-cart-drawer__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.vc-cart-drawer__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.vc-cart-drawer__content {
  flex: 1;
  overflow-y: auto;
  padding: 0 30px;
}

.vc-cart-drawer__loading,
.vc-cart-drawer__empty {
  padding: 72px 0;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-align: center;
}

.vc-cart-drawer__empty-title {
  margin: 0 0 12px;
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-style: italic;
  font-weight: 400;
}

.vc-cart-drawer__empty-link {
  display: inline-flex;
  margin-top: 18px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vc-cart-drawer__item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 16px;

  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.vc-cart-drawer__image {
  width: 88px;
  height: 110px;
  object-fit: cover;
  background: var(--bg-placeholder);
}

.vc-cart-drawer__item-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.vc-cart-drawer__item-title {
  margin: 0 0 5px;
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
}

.vc-cart-drawer__item-variant {
  margin: 0 0 10px;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vc-cart-drawer__item-price {
  margin: 0 0 14px;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 13px;
}

.vc-cart-drawer__item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.vc-cart-drawer__quantity {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
}

.vc-cart-drawer__quantity button {
  width: 30px;
  height: 30px;
  color: var(--text-primary);
  font-size: 15px;
}

.vc-cart-drawer__quantity span {
  min-width: 30px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 10px;
  text-align: center;
}

.vc-cart-drawer__remove {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.vc-cart-drawer__remove:hover {
  border-bottom-color: currentColor;
  color: var(--text-primary);
}

.vc-cart-drawer__footer {
  padding: 22px 30px calc(26px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
}

.vc-cart-drawer__shipping {
  margin-bottom: 22px;
}

.vc-cart-drawer__shipping-copy {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;

  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.vc-cart-drawer__shipping-copy strong {
  color: var(--text-primary);
  font-weight: 500;
}

.vc-cart-drawer__progress {
  width: 100%;
  height: 2px;
  overflow: hidden;
  background: var(--border);
}

.vc-cart-drawer__progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--accent);
  transition: width 500ms var(--ease-smooth);
}

.vc-cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;

  color: var(--text-primary);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
}

.vc-cart-drawer__checkout {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 52px;

  background: var(--text-primary);
  border: 1px solid var(--text-primary);
  color: var(--bg-ivory);

  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;

  transition: background 250ms ease, color 250ms ease;
}

.vc-cart-drawer__checkout:hover {
  background: transparent;
  color: var(--text-primary);
}

@media (max-width: 640px) {
  .vc-cart-drawer__header,
  .vc-cart-drawer__footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .vc-cart-drawer__content {
    padding-right: 20px;
    padding-left: 20px;
  }
}

/* ============================================
   VAUCLONT QUICK ADD
   ============================================ */

.product__link,
.maison-card__link {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.product__quick-add,
.maison-card__quick-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 42px;
  margin-top: 16px;

  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-primary);

  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  transition:
    background 250ms ease,
    color 250ms ease,
    border-color 250ms ease;
}

.product__quick-add:hover,
.maison-card__quick-add:hover {
  background: var(--text-primary);
  border-color: var(--text-primary);
  color: var(--bg-ivory);
}

/* Quick Add Modal */
.vc-quick-add {
  position: fixed;
  inset: 0;
  z-index: 10030;

  visibility: hidden;
  pointer-events: none;
}

.vc-quick-add.is-open {
  visibility: visible;
  pointer-events: auto;
}

.vc-quick-add__backdrop {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  background: rgba(10, 8, 6, 0.55);
  opacity: 0;

  transition: opacity 350ms ease;
}

.vc-quick-add.is-open .vc-quick-add__backdrop {
  opacity: 1;
}

.vc-quick-add__panel {
  position: absolute;
  top: 50%;
  left: 50%;

  width: min(520px, calc(100vw - 32px));
  max-height: min(720px, calc(100dvh - 32px));
  overflow-y: auto;

  padding: 38px 34px 34px;
  border: 1px solid var(--border);

  background: var(--bg-ivory);
  color: var(--text-primary);

  box-shadow: 0 30px 80px rgba(10, 8, 6, 0.28);

  opacity: 0;
  transform: translate(-50%, -47%) scale(0.98);

  transition:
    opacity 350ms ease,
    transform 420ms var(--ease-smooth);
}

.vc-quick-add.is-open .vc-quick-add__panel {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.vc-quick-add__close {
  position: absolute;
  top: 16px;
  right: 16px;

  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
}

.vc-quick-add__close span {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 13px;
  height: 1px;
  background: currentColor;
}

.vc-quick-add__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.vc-quick-add__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.vc-quick-add__loading {
  margin: 30px 0;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.vc-quick-add__product {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 22px;
  margin-bottom: 28px;
}

.vc-quick-add__image {
  width: 120px;
  height: 150px;
  object-fit: contain;
  background: var(--bg-placeholder);
}

.vc-quick-add__eyebrow {
  margin: 0 0 9px;
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vc-quick-add__title {
  margin: 0 0 10px;
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.05;
}

.vc-quick-add__price {
  margin: 0;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 14px;
}

.vc-quick-add__option {
  padding: 18px 0;
  border-top: 1px solid var(--border);
}

.vc-quick-add__option-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;

  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vc-quick-add__option-head span:first-child {
  color: var(--text-secondary);
}

.vc-quick-add__option-head span:last-child {
  color: var(--text-primary);
}

.vc-quick-add__values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vc-quick-add__value {
  min-width: 48px;
  min-height: 40px;
  padding: 0 13px;

  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-primary);

  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.vc-quick-add__value.is-selected {
  border-color: var(--text-primary);
  background: var(--text-primary);
  color: var(--bg-ivory);
}

.vc-quick-add__submit {
  width: 100%;
  min-height: 52px;
  margin-top: 18px;

  border: 1px solid var(--text-primary);
  background: var(--text-primary);
  color: var(--bg-ivory);

  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;

  transition: background 250ms ease, color 250ms ease;
}

.vc-quick-add__submit:disabled {
  border-color: var(--border);
  background: transparent;
  color: var(--text-secondary);
  cursor: not-allowed;
}

@media (max-width: 640px) {
  .vc-quick-add__panel {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;

    width: 100%;
    max-height: 86dvh;

    padding: 34px 20px calc(24px + env(safe-area-inset-bottom));
    border-right: none;
    border-bottom: none;
    border-left: none;

    transform: translateY(105%);
  }

  .vc-quick-add.is-open .vc-quick-add__panel {
    transform: translateY(0);
  }

  .vc-quick-add__product {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 16px;
  }

  .vc-quick-add__image {
    width: 84px;
    height: 105px;
  }
}

/* ============================================
   VAUCLONT PAIRS WELL WITH
   ============================================ */

.vc-pairs {
  padding: clamp(72px, 10vw, 140px) var(--pad);
  background: var(--bg-stone);
  border-top: 1px solid var(--border);
}

.vc-pairs__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.vc-pairs__head {
  display: flex;
  flex-direction: column;
  align-items: center;

  max-width: 620px;
  margin: 0 auto 58px;

  text-align: center;
}

.vc-pairs__eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.vc-pairs__title {
  margin: 0 0 18px;
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.05;
}

.vc-pairs__description {
  margin: 0;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.75;
}

.vc-pairs__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
  max-width: 980px;
  margin: 0 auto;
}

.vc-pairs__card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.vc-pairs__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--bg-placeholder);
}

.vc-pairs__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease-smooth);
}

.vc-pairs__info {
  padding: 18px 4px 0;
  transition: transform 400ms var(--ease-smooth);
}

.vc-pairs__name {
  margin: 0 0 7px;
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.15;
}

.vc-pairs__price {
  margin: 0;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.04em;
}

.vc-pairs__card:hover .vc-pairs__image {
  transform: scale(1.04);
}

.vc-pairs__card:hover .vc-pairs__info {
  transform: translateY(-3px);
}

@media (max-width: 640px) {
  .vc-pairs {
    padding-top: 70px;
    padding-bottom: 76px;
  }

  .vc-pairs__head {
    align-items: flex-start;
    margin-bottom: 36px;
    text-align: left;
  }

  .vc-pairs__grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;

    width: calc(100% + (var(--pad) * 2));
    margin-left: calc(var(--pad) * -1);
    padding: 0 var(--pad) 10px;

    scroll-snap-type: x mandatory;
  }

  .vc-pairs__card {
    flex: 0 0 min(78vw, 310px);
    scroll-snap-align: start;
  }
}

/* ============================================
   VAUCLONT POLICY PAGE HEROES
   ============================================ */

.vc-policy-hero {
  position: relative;
  overflow: hidden;

  padding: clamp(86px, 10vw, 140px) var(--pad);

  background:
    radial-gradient(
      ellipse 65% 100% at 50% 0%,
      rgba(185, 154, 99, 0.17) 0%,
      transparent 62%
    ),
    var(--bg-dark);

  color: var(--text-inverse);
}

.vc-policy-hero::before {
  content: '';

  position: absolute;
  inset: 0;

  opacity: 0.32;
  pointer-events: none;

  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 3px,
      rgba(239, 235, 228, 0.025) 3px,
      rgba(239, 235, 228, 0.025) 6px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 3px,
      rgba(239, 235, 228, 0.02) 3px,
      rgba(239, 235, 228, 0.02) 6px
    );
}

.vc-policy-hero__inner {
  position: relative;
  z-index: 1;

  max-width: 760px;
  margin: 0 auto;

  text-align: center;
}

.vc-policy-hero__eyebrow {
  margin: 0 0 20px;
  color: var(--accent-muted);

  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.vc-policy-hero__title {
  margin: 0 0 20px;
  color: var(--text-inverse);

  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.015em;
}

.vc-policy-hero__description {
  max-width: 460px;
  margin: 0 auto;

  color: var(--text-inverse-muted);

  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.75;
}

.vc-policy-hero__rule {
  width: 42px;
  height: 1px;
  margin: 32px auto 0;
  background: var(--accent-muted);
}

/* Hide Shopify's duplicate policy title below the new hero */
.vc-policy-hero + .shopify-policy__container .shopify-policy__title {
  display: none;
}

/* Refine policy body spacing when a hero appears above it */
.vc-policy-hero + .shopify-policy__container {
  padding-top: clamp(56px, 7vw, 92px) !important;
}

@media (max-width: 640px) {
  .vc-policy-hero {
    padding-top: 78px;
    padding-bottom: 76px;
  }

  .vc-policy-hero__title {
    font-size: clamp(2.25rem, 10vw, 3.1rem);
  }

  .vc-policy-hero__description {
    font-size: 13px;
  }
}

/* ============================================
   DARK MODE — POLICY + INFORMATION PAGE TEXT
   ============================================ */

/* Standard Vauclont information pages */
html[data-theme-resolved="dark"] .page-content {
  background: var(--bg-ivory);
  color: var(--text-primary);
}

html[data-theme-resolved="dark"] .page-content__eyebrow {
  color: rgba(242, 237, 229, 0.5);
}

html[data-theme-resolved="dark"] .page-content__title,
html[data-theme-resolved="dark"] .page-content__body,
html[data-theme-resolved="dark"] .page-content__body strong,
html[data-theme-resolved="dark"] .page-content__body h2,
html[data-theme-resolved="dark"] .page-content__body h3 {
  color: var(--text-primary) !important;
}

html[data-theme-resolved="dark"] .page-content__body {
  color: var(--text-secondary) !important;
}

html[data-theme-resolved="dark"] .page-content__body strong,
html[data-theme-resolved="dark"] .page-content__body h2,
html[data-theme-resolved="dark"] .page-content__body h3 {
  color: var(--text-primary) !important;
}

html[data-theme-resolved="dark"] .page-content__body h2 {
  border-bottom-color: var(--border) !important;
}

html[data-theme-resolved="dark"] .page-content__body a {
  color: var(--text-primary);
  border-bottom-color: rgba(242, 237, 229, 0.42);
}

html[data-theme-resolved="dark"] .page-content__body a:hover {
  border-bottom-color: var(--text-primary);
}

/* Story lead and editorial quote text */
html[data-theme-resolved="dark"] .page-content__body .story-lead,
html[data-theme-resolved="dark"] .story-quote p {
  color: var(--text-primary) !important;
}

html[data-theme-resolved="dark"] .story-quote {
  border-left-color: rgba(242, 237, 229, 0.3);
}

/* Native Shopify policy pages */
html[data-theme-resolved="dark"] .shopify-policy__container,
html[data-theme-resolved="dark"] .shopify-policy__body {
  background: var(--bg-ivory);
  color: var(--text-secondary) !important;
}

html[data-theme-resolved="dark"] .shopify-policy__body h1,
html[data-theme-resolved="dark"] .shopify-policy__body h2,
html[data-theme-resolved="dark"] .shopify-policy__body h3,
html[data-theme-resolved="dark"] .shopify-policy__body strong {
  color: var(--text-primary) !important;
}

html[data-theme-resolved="dark"] .shopify-policy__body h2 {
  border-bottom-color: var(--border) !important;
}

html[data-theme-resolved="dark"] .shopify-policy__body a {
  color: var(--text-primary);
  border-bottom-color: rgba(242, 237, 229, 0.42);
}

/* ============================================
   VAUCLONT SEARCH TYPOGRAPHY REFINEMENT
   ============================================ */

/* Search field: editorial and inviting */
.search-overlay__input {
  font-family: var(--font-serif) !important;
  font-style: italic !important;
  font-weight: 400 !important;
}

/* Suggested destinations: editorial navigation, not utility links */
.search-overlay__suggestions a {
  font-family: var(--font-serif) !important;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-style: italic !important;
  font-weight: 400 !important;
  letter-spacing: 0.01em !important;
  line-height: 1.2;
}

/* Search product/page titles */
.search-overlay__match-title,
.search-overlay__empty-title {
  font-family: var(--font-serif) !important;
  font-style: italic !important;
  font-weight: 400 !important;
}

/* Keep labels intentionally precise */
.search-overlay__hint-eyebrow,
.search-overlay__match-type,
.search-overlay__match-price,
.search-overlay__view-all-link,
.search-overlay__empty-subtitle {
  font-family: var(--font-sans) !important;
  font-style: normal !important;
}

/* ============================================
   VAUCLONT PRIVATE RESTOCK NOTIFICATION
   ============================================ */

.vc-restock-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 46px;
  margin: -8px 0 24px;

  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-primary);

  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  transition:
    background 250ms ease,
    color 250ms ease,
    border-color 250ms ease;
}

.vc-restock-trigger:hover {
  border-color: var(--text-primary);
  background: var(--text-primary);
  color: var(--bg-ivory);
}

.vc-restock {
  position: fixed;
  inset: 0;
  z-index: 10040;

  visibility: hidden;
  pointer-events: none;
}

.vc-restock.is-open {
  visibility: visible;
  pointer-events: auto;
}

.vc-restock__backdrop {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  background: rgba(10, 8, 6, 0.58);
  opacity: 0;

  transition: opacity 350ms ease;
}

.vc-restock.is-open .vc-restock__backdrop {
  opacity: 1;
}

.vc-restock__panel {
  position: absolute;
  top: 50%;
  left: 50%;

  width: min(500px, calc(100vw - 32px));

  padding: 42px 36px 36px;
  border: 1px solid var(--border);

  background: var(--bg-ivory);
  color: var(--text-primary);

  box-shadow: 0 30px 80px rgba(10, 8, 6, 0.28);

  opacity: 0;
  transform: translate(-50%, -47%) scale(0.98);

  transition:
    opacity 350ms ease,
    transform 420ms var(--ease-smooth);
}

.vc-restock.is-open .vc-restock__panel {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.vc-restock__close {
  position: absolute;
  top: 16px;
  right: 16px;

  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
}

.vc-restock__close span {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 13px;
  height: 1px;
  background: currentColor;
}

.vc-restock__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.vc-restock__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.vc-restock__eyebrow {
  margin: 0 0 12px;
  color: var(--accent);

  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.vc-restock__title {
  margin: 0 0 14px;
  color: var(--text-primary);

  font-family: var(--font-serif);
  font-size: 2rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.05;
}

.vc-restock__body {
  margin: 0 0 24px;
  color: var(--text-secondary);

  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.75;
}

.vc-restock__piece {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 22px;
  padding: 14px 0;

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.vc-restock__piece img {
  width: 54px;
  height: 68px;
  object-fit: contain;
  background: var(--bg-placeholder);
}

.vc-restock__piece p {
  margin: 0 0 4px;
  color: var(--text-primary);

  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
}

.vc-restock__piece span {
  color: var(--text-secondary);

  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vc-restock__input {
  width: 100%;
  padding: 13px 0;

  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  color: var(--text-primary);

  font-family: var(--font-sans);
  font-size: 14px;
}

.vc-restock__input:focus {
  border-bottom-color: var(--text-primary);
}

.vc-restock__submit {
  width: 100%;
  min-height: 50px;
  margin-top: 22px;

  border: 1px solid var(--text-primary);
  background: var(--text-primary);
  color: var(--bg-ivory);

  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  transition: background 250ms ease, color 250ms ease;
}

.vc-restock__submit:hover {
  background: transparent;
  color: var(--text-primary);
}

.vc-restock__note {
  margin: 14px 0 0;
  color: var(--text-secondary);

  font-family: var(--font-sans);
  font-size: 10px;
  line-height: 1.6;
}

.vc-restock__error {
  margin-top: 12px;
  color: #b65e58;
  font-size: 12px;
}

@media (max-width: 640px) {
  .vc-restock__panel {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;

    width: 100%;
    padding: 38px 22px calc(24px + env(safe-area-inset-bottom));

    border-right: none;
    border-bottom: none;
    border-left: none;

    transform: translateY(105%);
  }

  .vc-restock.is-open .vc-restock__panel {
    transform: translateY(0);
  }
}

/* ============================================
   VAUCLONT PERSISTENT COOKIE CHOICES
   ============================================ */

.footer__cookie-choices {
  padding: 0 0 3px;
  border-bottom: 1px solid transparent;

  color: rgba(239, 235, 228, 0.42);

  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  transition:
    color 220ms ease,
    border-color 220ms ease;
}

.footer__cookie-choices:hover {
  border-bottom-color: currentColor;
  color: var(--text-inverse);
}

@media (max-width: 640px) {
  .footer__cookie-choices {
    margin-top: 2px;
  }
}

/* =========================================================
   VAUCLONT PRODUCT SPECIFICATIONS
   ========================================================= */

.vauclont-product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 14px 0 18px;
}

.vauclont-product-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border: 1px solid var(--vc-border);
  font-family: var(--vc-font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--vc-text);
  background: transparent;
}

.vauclont-product-specifications {
  margin-top: 32px;
  border-top: 1px solid var(--vc-border);
}

.vauclont-specs-heading {
  padding: 16px 0 13px;
  border-bottom: 1px solid var(--vc-border);
}

.vauclont-specs-heading span {
  font-family: var(--vc-font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--vc-text);
}

.vauclont-spec-row {
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr);
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--vc-border);
}

.vauclont-spec-label {
  font-family: var(--vc-font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.6;
  text-transform: uppercase;
  color: var(--vc-muted);
}

.vauclont-spec-value {
  font-family: var(--vc-font-body);
  font-size: 11px;
  line-height: 1.8;
  color: var(--vc-text);
}

.vauclont-spec-value p {
  margin: 0 0 10px;
}

.vauclont-spec-value p:last-child {
  margin-bottom: 0;
}

.vauclont-spec-value ul {
  margin: 0;
  padding-left: 16px;
}

.vauclont-spec-value li {
  margin-bottom: 5px;
}

.vauclont-spec-value li:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 749px) {
  .vauclont-product-badges {
    margin-top: 12px;
    margin-bottom: 16px;
  }

  .vauclont-product-badge {
    font-size: 8px;
    padding: 6px 9px;
  }

  .vauclont-product-specifications {
    margin-top: 26px;
  }

  .vauclont-spec-row {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 16px;
    padding: 14px 0;
  }

  .vauclont-spec-label {
    font-size: 8px;
  }

  .vauclont-spec-value {
    font-size: 10.5px;
    line-height: 1.75;
  }
}

/* ============================================
   VAUCLONT SMOOTH CART REMOVAL & EMPTY STATES
   ============================================ */

.vc-cart-drawer__item {
  display: block;
  position: relative;
  transition: 
    opacity 350ms cubic-bezier(0.25, 1, 0.5, 1), 
    max-height 380ms cubic-bezier(0.25, 1, 0.5, 1),
    padding 380ms cubic-bezier(0.25, 1, 0.5, 1),
    margin 380ms cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 1;
  max-height: 180px; /* Comfort height for mobile and desktop layout scaling */
  overflow: hidden;
  will-change: opacity, max-height;
}

/* Fixes the "disturbing lines" glitch by forcefully masking borders & margins during execution */
.vc-cart-drawer__item.is-removing {
  opacity: 0 !important;
  max-height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  border-color: transparent !important;
  outline: none !important;
}

/* Premium Animated Empty State Elements */
.vc-cart-drawer__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  opacity: 0;
  transform: translateY(10px);
  animation: vcFadeUpIn 450ms cubic-bezier(0.215, 0.610, 0.355, 1) forwards;
}

.vc-cart-drawer__empty-title {
  font-family: var(--font-display, serif);
  font-size: 24px;
  font-style: italic;
  margin-bottom: 8px;
  color: var(--text-primary, #000000);
}

.vc-cart-drawer__empty-link {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 32px;
  font-family: var(--font-sans, sans-serif);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  /* Dark mode fluid colors */
  background: var(--text-primary, #000000);
  color: var(--bg-ivory, #f4f1eb);
  border: 1px solid var(--text-primary, #000000);
  transition: background 250ms ease, color 250ms ease, opacity 250ms ease;
}

.vc-cart-drawer__empty-link:hover {
  background: transparent;
  color: var(--text-primary, #000000);
}

@keyframes vcFadeUpIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   VAUCLONT PREMIUM DRAWER EXTENSIONS
   ============================================ */

/* Core Component Overrides */
.vc-cart-drawer__item {
  display: flex !important;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  background: transparent;
  transition: 
    opacity 350ms cubic-bezier(0.16, 1, 0.3, 1), 
    max-height 380ms cubic-bezier(0.16, 1, 0.3, 1),
    padding 380ms cubic-bezier(0.16, 1, 0.3, 1),
    margin 380ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 200ms ease;
  opacity: 1;
  max-height: 200px;
  overflow: hidden;
  will-change: opacity, max-height;
}

/* Forceful border & container masking to cure the lines glitch */
.vc-cart-drawer__item.is-removing {
  opacity: 0 !important;
  max-height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  border-top-color: transparent !important;
  border-bottom-color: transparent !important;
  border: none !important;
  outline: none !important;
}

/* Fluid Animated Luxury Empty State Container */
.vc-cart-drawer__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(15px);
  animation: vcRevealState 500ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.vc-cart-drawer__empty-title {
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: 26px;
  font-style: italic;
  margin: 0 0 12px 0;
  color: var(--text-primary, currentColor);
}

.vc-cart-drawer__empty-subtitle {
  font-family: var(--font-sans, "Montserrat", sans-serif);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0 0 32px 0;
  opacity: 0.7;
  color: var(--text-secondary, currentColor);
}

/* Premium Adaptive Dark Mode / Light Mode Action Button */
.vc-cart-drawer__empty-link {
  display: inline-block;
  padding: 16px 36px;
  font-family: var(--font-sans, "Montserrat", sans-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  background-color: var(--text-primary, #000000);
  color: var(--bg-resolved, #EFEBE4);
  border: 1px solid var(--text-primary, #000000);
  transition: background-color 300ms ease, color 300ms ease, border-color 300ms ease;
}

/* Balanced hover state for modern luxury feel */
.vc-cart-drawer__empty-link:hover {
  background-color: transparent;
  color: var(--text-primary, #000000);
  border-color: var(--text-primary, #000000);
}

/* Dark mode theme token inversion mapping overrides automatically */
[data-theme="dark"] .vc-cart-drawer__empty-link {
  background-color: var(--text-primary, #ffffff);
  color: var(--bg-resolved, #242019);
  border-color: var(--text-primary, #ffffff);
}

[data-theme="dark"] .vc-cart-drawer__empty-link:hover {
  background-color: transparent;
  color: var(--text-primary, #ffffff);
}

@keyframes vcRevealState {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}