/* ═══════════════════════════════════════════════════════════
   CARL VENI — styles.css
   Fonts: Barlow (headings/body) + Cormorant Garamond (wordmark)
   Inspired by Initio Parfums Privés visual language.
   3-Layer Token System: Primitive → Semantic → Component
═══════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────
   LAYER 1: PRIMITIVE TOKENS
───────────────────────────────────────── */
:root {
  /* Color Primitives — Light Theme */
  --p-white:        #FFFFFF;
  --p-off-white:    #F8F7F4;
  --p-gray-1:       #F2F1EE;
  --p-gray-2:       #E4E3DF;
  --p-gray-5:       #9B9892;
  --p-gray-7:       #555350;
  --p-black:        #0A0A0A;
  --p-near-black:   #1C1B19;
  --p-gold:         #C5A870;
  --p-gold-dim:     rgba(197, 168, 112, 0.18);
  --p-gold-dim2:    rgba(197, 168, 112, 0.40);
  --p-divider:      rgba(10, 10, 10, 0.10);

  /* Dark section primitives (hero + collections + about) */
  --p-dark-bg:      #09080C;
  --p-dark-surface: #16131F;
  --p-dark-card:    #13101A;
  --p-bone:         #E8E2D9;
  --p-bone-muted:   #938D85;

  /* Type Scale — Major Third (1.25) */
  --sz-xs:   0.75rem;
  --sz-sm:   0.875rem;
  --sz-md:   1rem;
  --sz-lg:   1.25rem;
  --sz-xl:   1.563rem;
  --sz-2xl:  1.953rem;
  --sz-3xl:  2.441rem;
  --sz-4xl:  3.052rem;
  --sz-5xl:  4.768rem;
  --sz-6xl:  7.451rem;

  /* Spacing — 8pt Grid */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Easing */
  --ease-expo:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.45, 0, 0.55, 1);

  /* Duration */
  --dur-fast:  180ms;
  --dur-mid:   400ms;
  --dur-slow:  700ms;
}

/* ─────────────────────────────────────────
   LAYER 2: SEMANTIC TOKENS
───────────────────────────────────────── */
:root {
  /* Surfaces */
  --color-bg:       var(--p-white);
  --color-surface:  var(--p-off-white);
  --color-surface2: var(--p-gray-1);

  /* Text */
  --color-text:     var(--p-black);
  --color-muted:    var(--p-gray-7);
  --color-pale:     var(--p-gray-5);

  /* Borders */
  --color-border:   var(--p-gray-2);
  --color-divider:  var(--p-divider);

  /* Accent */
  --color-gold:     var(--p-gold);
  --color-gold-dim: var(--p-gold-dim);

  /* Dark section overrides (hero, collections, about) */
  --color-dark-bg:  var(--p-dark-bg);
  --color-dark-surf:var(--p-dark-surface);
  --color-dark-card:var(--p-dark-card);
  --color-dark-text:var(--p-bone);
  --color-dark-muted:var(--p-bone-muted);

  /* Badge tokens */
  --badge-bg:     rgba(197, 168, 112, 0.10);
  --badge-border: rgba(197, 168, 112, 0.35);

  /* Typography — Barlow (all) + Cormorant Garamond (wordmark) */
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-heading:  'Barlow', 'Helvetica Neue', Arial, sans-serif;
  --font-body:     'Barlow', 'Helvetica Neue', Arial, sans-serif;

  /* Shorthand aliases */
  --divider: rgba(10, 10, 10, 0.10);
  --gold:    #C5A870;

  /* Layout */
  --max-w:        1280px;
  --max-w-sm:     740px;
  --announce-h:   28px;
  --navbar-h:     96px;
  --header-h:     calc(var(--announce-h) + var(--navbar-h));
}

/* ─────────────────────────────────────────
   LAYER 3: COMPONENT TOKENS
───────────────────────────────────────── */
:root {
  --nav-shadow:      0 1px 0 var(--color-border);
  --btn-h:           44px;
  --tier-top:        44%;
  --tier-heart:      68%;
  --tier-base:       92%;
}

/* ═══════════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--sz-md);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* ═══════════════════════════════════════════════════════════
   FILM GRAIN OVERLAY (very subtle on white)
═══════════════════════════════════════════════════════════ */
.grain-overlay {
  display: none; /* hidden on light theme */
}

/* ═══════════════════════════════════════════════════════════
   LAYOUT UTILITIES
═══════════════════════════════════════════════════════════ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-8);
}

.container--narrow { max-width: var(--max-w-sm); }

section:not(.hero):not(.benefits) {
  padding: var(--sp-24) 0;
  scroll-margin-top: var(--header-h);
}

/* ═══════════════════════════════════════════════════════════
   TYPOGRAPHY TOKENS
═══════════════════════════════════════════════════════════ */
.overline {
  display: block;
  font-family: var(--font-body);
  font-size: var(--sz-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(var(--sz-2xl), 3.2vw, var(--sz-4xl));
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--color-text);
}

.section-title--center { text-align: center; }

/* ═══════════════════════════════════════════════════════════
   BADGE (hero only — kept on dark hero)
═══════════════════════════════════════════════════════════ */
.badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: var(--badge-bg);
  border: 1px solid var(--badge-border);
  padding: 4px 10px;
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--btn-h);
  padding: 0 var(--sp-8);
  font-family: var(--font-body);
  font-size: var(--sz-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  position: relative;
  transition:
    background var(--dur-mid) var(--ease-expo),
    color var(--dur-mid) var(--ease-expo),
    border-color var(--dur-mid) var(--ease-expo),
    transform var(--dur-fast) ease;
}

.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn--primary {
  background: var(--p-black);
  color: #FFFFFF;
  border: 1px solid var(--p-black);
}
.btn--primary:hover {
  background: #2A2A2A;
  border-color: #2A2A2A;
}

.btn--ghost {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--p-gold-dim2);
}
.btn--ghost:hover {
  background: rgba(197, 168, 112, 0.07);
  border-color: var(--color-gold);
}

/* Success state (contact form) */
.btn--success {
  background: transparent !important;
  color: var(--color-gold) !important;
  border: 1px solid var(--badge-border) !important;
}

/* ═══════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR
═══════════════════════════════════════════════════════════ */
.announce-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--announce-h);
  background: var(--color-surface);
  z-index: 102;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.announce-bar__viewport {
  width: 100%;
  overflow: hidden;
}

.announce-bar__track {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
  animation: ticker 32s linear infinite;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #000000;
}


.announce-bar__dot {
  color: #000000;
  font-size: 0.5rem;
}

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

@media (prefers-reduced-motion: reduce) {
  .announce-bar__track { animation: none; }
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR — white, 2-row
═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: var(--announce-h);
  left: 0; right: 0;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--dur-mid) ease;
}

.navbar.is-scrolled {
  box-shadow: 0 2px 12px rgba(10, 10, 10, 0.08);
}

/* Row 1 — locale / wordmark / icons */
.navbar__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--sp-8);
  height: 58px;
  border-bottom: 1px solid var(--color-border);
}

.navbar__locale-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: var(--sz-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  transition: color var(--dur-fast) ease;
}
.navbar__locale-btn:hover { color: var(--color-text); }

.navbar__logo {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-text);
  white-space: nowrap;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.navbar__icons {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.navbar__icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--color-text);
  transition: opacity var(--dur-fast) ease;
}
.navbar__icon-btn:hover { opacity: 0.55; }

.navbar__cart-btn { position: relative; }

/* Hamburger — mobile only */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: var(--sp-2);
}

.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--color-text);
  transform-origin: center;
  transition:
    transform var(--dur-mid) var(--ease-expo),
    opacity var(--dur-fast) ease;
}

.navbar__hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.navbar__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Row 2 — nav links */
.navbar__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 var(--sp-8);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.navbar__item { position: relative; }

.navbar__links a {
  font-family: var(--font-body);
  font-size: var(--sz-xs);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
  position: relative;
  transition: color var(--dur-fast) ease;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--color-text);
  transition: width var(--dur-mid) var(--ease-expo);
}

.navbar__links a:hover { color: var(--color-text); }
.navbar__links a:hover::after { width: 100%; }

/* Dropdown */
.navbar__dropdown {
  position: absolute;
  top: 100%;
  left: -1rem;
  min-width: 200px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: var(--sp-3) 0;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition:
    opacity var(--dur-mid) var(--ease-expo),
    transform var(--dur-mid) var(--ease-expo);
  z-index: 101;
}

.navbar__item--has-dropdown:hover .navbar__dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.navbar__dropdown a {
  display: block;
  padding: var(--sp-2) var(--sp-6);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--sz-sm);
  letter-spacing: 0.04em;
  color: var(--color-muted);
  transition: color var(--dur-fast) ease;
  text-transform: none;
}

.navbar__dropdown a::after { display: none; }
.navbar__dropdown a:hover { color: var(--color-text); }

.navbar__dropdown-link--muted {
  opacity: 0.35 !important;
  cursor: default;
  pointer-events: none;
}

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  z-index: 99;
  transform: translateX(100%);
  transition: transform 600ms var(--ease-expo);
}

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

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: clamp(var(--sz-2xl), 8vw, var(--sz-4xl));
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--color-text);
  transition: opacity var(--dur-fast) ease;
}

.mobile-menu a:hover { opacity: 0.45; }

.mobile-menu__close {
  position: absolute;
  top: calc(var(--announce-h) + 12px);
  right: var(--sp-8);
  color: var(--color-muted);
  padding: var(--sp-2);
  display: flex;
  align-items: center;
}

/* ═══════════════════════════════════════════════════════════
   HERO — VIDEO SCRUB (dark — intentional contrast)
═══════════════════════════════════════════════════════════ */
.hero {
  height: 250vh;
  position: relative;
  background: var(--color-dark-bg);
}

.hero__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

/* Canvas injected by initVideoScrub */
.hero__canvas {
  position: absolute;
  inset: 0;
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9, 8, 12, 0.55) 0%,
    rgba(9, 8, 12, 0.25) 45%,
    rgba(9, 8, 12, 0.60) 100%
  );
  z-index: 1;
}

.hero__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0 6vw calc(8vh + var(--sp-8));
  padding-top: var(--header-h);
}

.hero__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: var(--sz-xs);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: 0;
  margin-bottom: 14px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 9vw, var(--sz-6xl));
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.92;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: var(--sp-6);
  perspective: 800px;
}

.hero__title .char { display: inline-block; }

.hero__divider {
  width: 44px;
  height: 1px;
  background: var(--color-gold);
  opacity: 0;
  margin-bottom: var(--sp-6);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(var(--sz-sm), 1.3vw, var(--sz-lg));
  font-weight: 300;
  color: rgba(232, 226, 217, 0.78);
  line-height: 1.7;
  opacity: 0;
  margin-bottom: var(--sp-8);
  max-width: 36ch;
}

.hero__cta { opacity: 0; }

.hero__specs {
  display: flex;
  gap: var(--sp-6);
  margin-top: var(--sp-6);
  opacity: 0;
  font-family: var(--font-body);
  font-size: var(--sz-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 226, 217, 0.45);
}

.hero__specs span + span {
  padding-left: var(--sp-6);
  border-left: 1px solid rgba(232, 226, 217, 0.18);
}

.hero__scroll-hint {
  position: absolute;
  bottom: var(--sp-8);
  right: 6vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  opacity: 0;
  z-index: 2;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollDrop 1.8s ease-in-out infinite;
}

.hero__scroll-hint span {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(232, 226, 217, 0.45);
  writing-mode: vertical-rl;
}

@keyframes scrollDrop {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6) translateY(-6px); transform-origin: top; }
  50%       { opacity: 1;   transform: scaleY(1)   translateY(0);    transform-origin: top; }
}

/* ═══════════════════════════════════════════════════════════
   FADE-UP UTILITY (scroll animations)
═══════════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
}

/* ═══════════════════════════════════════════════════════════
   FRAGRANCE COVERFLOW CAROUSEL
═══════════════════════════════════════════════════════════ */
.fragcov {
  position: relative;
  background-color: var(--color-bg);
  padding-bottom: var(--sp-16);
  overflow: hidden;
}

.fragcov::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 480px;
  background: linear-gradient(
    to bottom,
    rgba(226, 224, 221, 0.55) 0%,
    rgba(226, 224, 221, 0.35) 25%,
    rgba(226, 224, 221, 0.15) 50%,
    rgba(226, 224, 221, 0.05) 75%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

.fragcov__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 0.72;
}

.fragcov__header {
  padding: var(--sp-12) var(--sp-12) var(--sp-8);
  position: relative;
  z-index: 2;
}

.fragcov__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-text);
}

/* Stage — bottles positioned absolutely from center */
.fragcov__stage {
  position: relative;
  height: clamp(600px, 85vh, 950px);
  overflow: hidden;
  cursor: default;
  user-select: none;
  z-index: 2;
}

.fragcov__slide {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%) scale(0.3);
  opacity: 0;
  transition:
    transform 680ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity   650ms ease;
  pointer-events: none;
  will-change: transform, opacity;
}

.fragcov__slide img {
  height: 92%;
  max-height: 850px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 24px 40px rgba(10, 10, 10, 0.14));
  transition: filter 680ms ease;
  z-index: 3;
  position: relative;
}

/* ── Positions via data-pos attribute ── */
.fragcov__slide[data-pos="0"] {
  transform: translateX(-50%) scale(1);
  opacity: 1;
  z-index: 5;
  pointer-events: auto;
}
.fragcov__slide[data-pos="0"] img {
  filter: drop-shadow(0 28px 48px rgba(10, 10, 10, 0.18));
}

.fragcov__slide[data-pos="-1"] {
  transform: translateX(calc(-50% - 32vw)) scale(0.62);
  opacity: 0.28;
  z-index: 3;
}
.fragcov__slide[data-pos="1"] {
  transform: translateX(calc(-50% + 32vw)) scale(0.62);
  opacity: 0.28;
  z-index: 3;
}

.fragcov__slide[data-pos="-2"] {
  transform: translateX(calc(-50% - 58vw)) scale(0.42);
  opacity: 0.1;
  z-index: 1;
}
.fragcov__slide[data-pos="2"] {
  transform: translateX(calc(-50% + 58vw)) scale(0.42);
  opacity: 0.1;
  z-index: 1;
}

/* Controls row */
.fragcov__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 28px;
  position: relative;
  z-index: 2;
}

.fragcov__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  transition:
    background var(--dur-fast) ease,
    border-color var(--dur-fast) ease;
  flex-shrink: 0;
}

.fragcov__arrow:hover {
  background: var(--color-text);
  color: #FFFFFF;
  border-color: var(--color-text);
}

.fragcov__info {
  display: flex;
  align-items: baseline;
  gap: 7px;
  text-decoration: none;
  min-width: 240px;
  justify-content: center;
}

.fragcov__name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
  transition: opacity var(--dur-fast) ease;
}

.fragcov__info:hover .fragcov__name { opacity: 0.6; }

.fragcov__count {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--color-muted);
  letter-spacing: 0.06em;
}

.fragcov__discover {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: rgba(10, 10, 10, 0.35);
  margin-top: 22px;
  transition: opacity var(--dur-fast) ease;
  position: relative;
  z-index: 2;
}

.fragcov__discover:hover { opacity: 0.5; }

/* Responsive */
@media (max-width: 768px) {
  .fragcov__header { padding: var(--sp-8) var(--sp-6) var(--sp-6); }
  .fragcov__stage { height: clamp(300px, 50vw, 380px); }
  .fragcov__slide { width: 200px; }
  .fragcov__slide[data-pos="-1"] { transform: translateX(calc(-50% - 38vw)) scale(0.55); }
  .fragcov__slide[data-pos="1"]  { transform: translateX(calc(-50% + 38vw)) scale(0.55); }
  .fragcov__slide[data-pos="-2"],
  .fragcov__slide[data-pos="2"]  { opacity: 0; }
  .fragcov__controls { gap: 24px; }
  .fragcov__info { min-width: 180px; }
}

/* ═══════════════════════════════════════════════════════════
   COLLECTIONS — dark gallery cards (contrast section)
═══════════════════════════════════════════════════════════ */
.collections {
  padding: var(--sp-24) 0;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.collections__header {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  margin-bottom: var(--sp-8);
  position: relative;
}

.collections__bg-number {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 14vw, 11rem);
  font-weight: 800;
  line-height: 1;
  color: var(--color-surface2);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

.collections__overline {
  color: var(--color-muted);
}

.collections__rule {
  flex: 1;
  height: 1px;
  background: var(--color-border);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.collections__rule.is-visible { transform: scaleX(1); }

/* Asymmetric grid */
.collections__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  height: clamp(480px, 75vh, 760px);
  padding: 0 var(--sp-8);
}

.collections__stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
}

/* Collection card base */
.coll-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.coll-card:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: -2px;
}

.coll-card__inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 28px 32px;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.coll-card:hover .coll-card__inner { transform: scale(1.025); }

/* Backgrounds */
.coll-card--noir  { background: linear-gradient(145deg, #09080C 0%, #1A1428 100%); }
.coll-card--black { background: linear-gradient(145deg, #0A0A0A 0%, #141414 100%); }
.coll-card--deep  { background: linear-gradient(145deg, #0C0A14 0%, #1E1830 100%); }

/* Grain overlay on cards */
.coll-card__grain {
  position: absolute;
  inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* Gold top edge line */
.coll-card__top-edge {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0.35;
  z-index: 2;
  transition: opacity 400ms ease;
}

.coll-card:hover .coll-card__top-edge { opacity: 0.75; }

/* Ghost number */
.coll-card__number {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-6);
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  z-index: 2;
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
}

/* Card content */
.coll-card__content {
  position: relative;
  z-index: 3;
}

.coll-card__tagline {
  font-family: var(--font-body);
  font-size: var(--sz-xs);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 226, 217, 0.35);
  margin-bottom: var(--sp-2);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 400ms var(--ease-expo),
    transform 400ms var(--ease-expo);
}

.coll-card:hover .coll-card__tagline {
  opacity: 1;
  transform: translateY(0);
}

.coll-card__name {
  font-family: var(--font-heading);
  font-size: clamp(var(--sz-xl), 2.8vw, var(--sz-3xl));
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--p-bone);
  margin-bottom: var(--sp-3);
  transition: transform 400ms var(--ease-expo);
}

.coll-card:hover .coll-card__name { transform: translateY(-3px); }

/* Discover link with animated underline */
.coll-card__discover {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--sz-xs);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  position: relative;
}

.coll-card__discover::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--color-gold);
  transition: width 500ms var(--ease-expo);
}

.coll-card:hover .coll-card__discover::after { width: 100%; }

/* ═══════════════════════════════════════════════════════════
   OLFACTORY NOTES — FRAGRANCE TIMELINE (CINEMATIC)
═══════════════════════════════════════════════════════════ */
.notes {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--sp-24) 0;
}

.notes__intro {
  text-align: center;
  margin-bottom: var(--sp-16);
}

.notes__intro .overline { margin-bottom: var(--sp-3); }

/* Timeline container */
.notes__timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: var(--sp-12) var(--sp-8);
}

/* ──────────────────────────────────────
   CENTRAL AXIS — Growth animation
   ────────────────────────────────────── */
.notes__axis {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(197, 168, 112, 0.8),
    rgba(197, 168, 112, 0.4),
    rgba(197, 168, 112, 0.1)
  );
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(197, 168, 112, 0.4);
  opacity: 0;
  animation: axisGrow 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
  will-change: transform, opacity;
}

@keyframes axisGrow {
  from {
    opacity: 0;
    transform: translateX(-50%) scaleY(0);
    transform-origin: top center;
  }
  to {
    opacity: 1;
    transform: translateX(-50%) scaleY(1);
    transform-origin: top center;
  }
}

/* ──────────────────────────────────────
   TIER STRUCTURE
   ────────────────────────────────────── */
.notes__tier {
  position: relative;
  margin: var(--sp-16) 0;
  will-change: opacity;
}

/* Tier animation delays */
.notes__tier--top    { --tier-delay: 0.3s; }
.notes__tier--heart  { --tier-delay: 0.8s; }
.notes__tier--base   { --tier-delay: 1.3s; }

/* Tier header */
.notes__tier-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--sp-8);
  padding: 0 var(--sp-4);
  opacity: 0;
  animation: fadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) var(--tier-delay) forwards;
}

.notes__tier-label {
  font-family: var(--font-body);
  font-size: var(--sz-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.notes__tier-time {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.45);
}

/* Timeline indicator line (side) */
.notes__tier::before {
  content: '';
  position: absolute;
  right: -32px;
  top: 0;
  width: 3px;
  height: 40px;
  background: rgba(197, 168, 112, 0.3);
  border-radius: 2px;
  opacity: 0;
  animation: timelineGrow 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) var(--tier-delay) forwards;
  transform-origin: top center;
}

@keyframes timelineGrow {
  from {
    opacity: 0;
    transform: scaleY(0);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ──────────────────────────────────────
   TIER ITEMS CONTAINER
   ────────────────────────────────────── */
.notes__tier-items {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

/* Individual items with stagger alternation (L-R-L) */
.notes__item {
  position: relative;
  padding: var(--sp-4) var(--sp-6);
  border-left: 2px solid rgba(197, 168, 112, 0.25);
  cursor: pointer;
  will-change: transform, opacity, border-color;

  /* Entrance animation */
  opacity: 0;
  transform: translateY(12px);
  animation: itemEnter 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Stagger delays */
.notes__tier-items .notes__item:nth-child(1) {
  animation-delay: calc(var(--tier-delay) + 0.0s);
}
.notes__tier-items .notes__item:nth-child(2) {
  animation-delay: calc(var(--tier-delay) + 0.12s);
}
.notes__tier-items .notes__item:nth-child(3) {
  animation-delay: calc(var(--tier-delay) + 0.24s);
}

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

/* ──────────────────────────────────────
   ITEM HOVER STATES
   ────────────────────────────────────── */
.notes__item {
  transition: background 200ms ease, transform 200ms ease;
}

.notes__item:hover {
  background: rgba(197, 168, 112, 0.06);
  transform: translateX(4px);
}

/* Pulse animation on border */
.notes__item:hover {
  animation: borderPulse 0.6s ease-in-out infinite;
}

@keyframes borderPulse {
  0%, 100% { border-left-color: rgba(197, 168, 112, 0.35); }
  50%      { border-left-color: var(--color-gold); }
}

/* Fade sibling items */
.notes__tier-items:has(.notes__item:hover) .notes__item:not(:hover) {
  opacity: 0.25;
  transition: opacity 200ms ease;
}

.notes__tier-items:has(.notes__item:hover) .notes__item:hover {
  opacity: 1;
}

/* ──────────────────────────────────────
   ITEM CONTENT
   ────────────────────────────────────── */
.notes__item-name {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-text);
  font-size: 0.95rem;
}

.notes__item-desc {
  display: none;
  font-family: var(--font-body);
  font-size: var(--sz-xs);
  color: var(--color-muted);
  font-style: italic;
  margin-top: var(--sp-2);
  font-weight: 400;

  /* Entrance from right */
  opacity: 0;
  transform: translateX(16px);
}

.notes__item:hover .notes__item-desc {
  display: block;
  animation: slideInRight 300ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ──────────────────────────────────────
   PARTICLES (desktop only)
   ────────────────────────────────────── */
.notes__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.notes__particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--color-gold);
  border-radius: 50%;
  opacity: 0.4;
  will-change: transform;
}

/* Responsive particles */
@media (max-width: 768px) {
  .notes__particles { display: none; }
}

@keyframes particleFloat {
  0%, 100% {
    opacity: 0.4;
    transform: translate(0, 0);
  }
  25% {
    opacity: 0.6;
    transform: translate(calc(var(--offset-x, 0) * 1), -20px);
  }
  50% {
    opacity: 0.3;
    transform: translate(calc(var(--offset-x, 0) * 1.5), -40px);
  }
  75% {
    opacity: 0.5;
    transform: translate(calc(var(--offset-x, 0) * 0.8), -20px);
  }
}

/* ──────────────────────────────────────
   CONNECTION LINE (hover to axis)
   ────────────────────────────────────── */
.notes__connector-line {
  position: fixed;
  pointer-events: none;
  will-change: width, opacity;
  z-index: 9;
}

/* ──────────────────────────────────────
   UTILITY: Fade-up animation
   ────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ──────────────────────────────────────
   ACCESSIBILITY: Reduced Motion
   ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .notes__axis,
  .notes__tier::before,
  .notes__item,
  .notes__tier-header,
  .notes__item:hover,
  .notes__item:hover .notes__item-desc {
    animation: none !important;
    transition: none !important;
  }

  .notes__item-desc {
    display: block !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   PHILOSOPHY — 3-column
═══════════════════════════════════════════════════════════ */
.philosophy { background: var(--color-bg); }

.philosophy__intro {
  text-align: center;
  margin-bottom: var(--sp-12);
}

.philosophy__intro .overline { margin-bottom: var(--sp-3); }

.philosophy__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
}

.philosophy__col {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: var(--sp-12) var(--sp-8);
  opacity: 0;
  transform: translateY(20px);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.philosophy__col::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.65);
  z-index: 1;
}

.philosophy__col-1 {
  background-image: url('../assets/images/raw materials.png');
}

.philosophy__col-2 {
  background-image: url('../assets/images/ultra concentrated.png');
}

.philosophy__col-3 {
  background-image: url('../assets/images/no announcement.png');
}

.philosophy__col-title {
  position: relative;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: var(--sz-lg);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: var(--sp-4);
}

.philosophy__col-body {
  position: relative;
  z-index: 2;
  font-family: var(--font-body);
  font-size: var(--sz-sm);
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-muted);
  max-width: 28ch;
}

/* Responsive — Philosophy section */
@media (max-width: 768px) {
  .philosophy__grid {
    grid-template-columns: 1fr;
  }

  .philosophy__col {
    min-height: 320px;
  }

  .philosophy__col::before {
    background: rgba(255, 255, 255, 0.75);
  }
}

/* ═══════════════════════════════════════════════════════════
   BENEFITS ROW
═══════════════════════════════════════════════════════════ */
.benefits {
  background: var(--color-surface);
  padding: var(--sp-6) 0;
  scroll-margin-top: var(--header-h);
  margin-bottom: 0;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: transparent;
}

.benefit {
  background: var(--color-surface);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  justify-content: center;
}

.benefit__label {
  font-family: var(--font-body);
  font-size: var(--sz-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #000000;
}

.benefit__dot {
  color: #000000;
  font-size: 0.5rem;
  margin: 0 6px;
}

/* ═══════════════════════════════════════════════════════════
   THE HOUSE — full-bleed hero + grid gallery
═══════════════════════════════════════════════════════════ */
.house {
  background: var(--color-dark-bg);
  margin-top: 0;
  padding-top: 0;
}

/* Hero section — full viewport height with animated background */
.house__hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  padding-top: 0;
}

/* Video background — full-bleed hero */
.house__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Light overlay — allows background to show through */
.house__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* Content container above background */
.house__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: var(--sp-12);
}

/* Overline label */
.house__overline {
  display: block;
  color: var(--color-gold);
  margin-bottom: var(--sp-8);
  opacity: 0;
  animation: fadeUpIn 0.8s ease 0.15s forwards;
}

/* Main title — two lines, clean & minimal */
.house__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: var(--sp-12);
  text-transform: uppercase;
}

.house__title-line {
  display: block;
  opacity: 0;
  animation: fadeUpIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.house__title-line--gold {
  color: var(--color-gold);
  animation-delay: 0.25s;
  font-weight: 700;
}

.house__title-line--white {
  color: #FFFFFF;
  animation-delay: 0.4s;
  font-weight: 600;
  font-size: 0.95em;
}

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

/* Subtitle — small, uppercase, muted */
.house__subtitle {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232, 226, 217, 0.48);
  margin-bottom: var(--sp-10);
  opacity: 0;
  animation: fadeUpIn 0.8s ease 0.5s forwards;
}

/* Body paragraphs */
.house__body {
  font-family: var(--font-body);
  font-size: var(--sz-md);
  font-weight: 300;
  line-height: 1.85;
  color: var(--color-dark-muted);
  max-width: 56ch;
  margin: 0 auto var(--sp-6);
  opacity: 0;
  animation: fadeUpIn 0.85s ease;
}

.house__body:first-of-type {
  animation-delay: 0.65s;
}

.house__body--secondary {
  color: rgba(147, 141, 133, 0.65);
  animation-delay: 0.8s;
}

/* ─────────────────────────────────────────
   GALLERY GRID — 2x2 with captions
───────────────────────────────────────── */

.house__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
  padding: var(--sp-16);
  max-width: 1400px;
  margin: 0 auto;
  background: var(--color-dark-bg);
}

/* Gallery item container — holds image + caption */
.house__gallery-item {
  opacity: 0;
  animation: fadeUpIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.house__gallery-item:nth-child(1) { animation-delay: 0.95s; }
.house__gallery-item:nth-child(2) { animation-delay: 1.08s; }
.house__gallery-item:nth-child(3) { animation-delay: 1.21s; }

/* Image frame — 1:1 aspect ratio, white border */
.house__item {
  aspect-ratio: 1 / 1;
  background: #000000;
  border: 1px solid #FFFFFF;
  position: relative;
  overflow: hidden;
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: var(--sp-6);
}

.house__gallery-item:hover .house__item {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow:
    inset 0 0 24px rgba(255, 255, 255, 0.08),
    0 12px 32px rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

/* Ready for image/video content */
.house__item img,
.house__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Caption below image — scientific & poetic */
.house__caption {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FFFFFF;
  text-align: left;
  line-height: 1.6;
  margin-bottom: var(--sp-2);
}

.house__caption-subtitle {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(232, 226, 217, 0.55);
  text-transform: none;
  line-height: 1.5;
  font-style: italic;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */

@media (max-width: 768px) {
  .house__hero {
    min-height: 70vh;
    padding: var(--sp-10) 0;
  }

  .house__content {
    padding: var(--sp-8) var(--sp-6);
  }

  .house__title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: var(--sp-8);
  }

  .house__subtitle {
    font-size: 0.68rem;
    margin-bottom: var(--sp-8);
  }

  .house__body {
    font-size: 0.95rem;
    margin-bottom: var(--sp-4);
  }

  .house__grid {
    grid-template-columns: 1fr;
    gap: 28px 0;
    padding: var(--sp-10) var(--sp-6);
    max-width: 100%;
  }

  .house__item {
    margin-bottom: var(--sp-4);
  }

  .house__caption {
    font-size: 0.75rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   BOUTIQUES — PHOTO STACK
═══════════════════════════════════════════════════════════ */
.boutiques {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.boutiques__header {
  text-align: center;
  padding: 80px 24px 60px;
}

.boutiques__header .overline { margin-bottom: var(--sp-3); }

/* Scroll zone — height set by JS */
.boutiques__zone { position: relative; }

/* Sticky viewport container */
.boutiques__sticky {
  position: sticky;
  top: var(--header-h);
  height: calc(100dvh - var(--header-h));
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-surface);
}

/* 01 / 04 counter */
.boutique-counter {
  position: absolute;
  top: 28px;
  right: 48px;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--color-muted);
  text-transform: uppercase;
  z-index: 10;
}

/* Each photo card — fills sticky container, centers frame */
.boutique-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}

/* Cards 2-4 start hidden — overridden by JS inline transform on init */
.boutique-photo { transform: translateY(110%); }

/* Physical print frame — white border + shadow */
.boutique-photo__frame {
  background: #FFFFFF;
  padding: 14px 14px 56px;
  width: min(74vw, 700px);
  box-shadow:
    0 2px 8px rgba(10, 10, 10, 0.07),
    0 20px 60px rgba(10, 10, 10, 0.22),
    0 44px 96px rgba(10, 10, 10, 0.12);
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 360ms ease;
}

/* Hover lift only on active (top) photo */
.boutique-photo.is-top {
  cursor: pointer;
}
.boutique-photo.is-top:hover .boutique-photo__frame {
  transform: translateY(-6px) scale(1.012);
  box-shadow:
    0 4px 12px rgba(10, 10, 10, 0.06),
    0 28px 72px rgba(10, 10, 10, 0.28),
    0 56px 110px rgba(10, 10, 10, 0.14);
}

.boutique-photo__img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #1A1A1A;
  display: block;
  position: relative;
}

.boutique-photo__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.boutique-ph {
  width: 100%;
  height: 100%;
}

/* "View Boutique" overlay — visible on hover of active photo */
.boutique-photo__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 12, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 320ms ease;
  pointer-events: none;
}

.boutique-photo__overlay span {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0);
  transition: color 320ms ease;
}

.boutique-photo.is-top:hover .boutique-photo__overlay {
  background: rgba(8, 7, 12, 0.32);
}
.boutique-photo.is-top:hover .boutique-photo__overlay span {
  color: rgba(255, 255, 255, 0.92);
}

/* Caption inside the white print border */
.boutique-photo__caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 14px 4px 0;
}

.boutique-photo__city {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1A1A1A;
}

.boutique-photo__store {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 300;
  color: #888888;
  letter-spacing: 0.04em;
}

/* ════════════════════════════════════
   BOUTIQUE MODAL
════════════════════════════════════ */
.bq-modal {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 280ms ease;
}

.bq-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.bq-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 12, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.bq-modal__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  width: 100%;
  max-width: 1060px;
  max-height: 90dvh;
  background: var(--color-bg);
  box-shadow: 0 40px 100px rgba(8, 7, 12, 0.50);
  transform: scale(0.93) translateY(16px);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.bq-modal.is-open .bq-modal__panel {
  transform: scale(1) translateY(0);
}

/* Close button */
.bq-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  background: var(--color-bg);
  cursor: pointer;
  transition: background var(--dur-fast) ease, color var(--dur-fast) ease;
}
.bq-modal__close:hover { background: var(--color-text); color: #FFFFFF; }

/* Photo column */
.bq-modal__photo-col {
  background: #F5F4F0;
  background-image:
    linear-gradient(45deg, rgba(10,10,10,0.032) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(10,10,10,0.032) 1px, transparent 1px);
  background-size: 32px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 28px;
}

.bq-modal__frame {
  background: #FFFFFF;
  padding: 10px 10px 44px;
  width: 100%;
  box-shadow: 0 6px 32px rgba(10, 10, 10, 0.14);
}

.bq-modal__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.bq-modal__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bq-modal__ph {
  width: 100%;
  height: 100%;
}

.bq-modal__frame-caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 12px 4px 0;
}

.bq-modal__frame-city {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1A1A1A;
}

.bq-modal__frame-store {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 300;
  color: #999;
}

/* Info column */
.bq-modal__info-col {
  padding: 56px 44px 44px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  background: var(--color-bg);
}

.bq-modal__overline {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 14px;
}

.bq-modal__city {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.96;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 10px;
}

.bq-modal__store {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--color-muted);
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}

.bq-modal__rule {
  height: 1px;
  background: var(--color-border);
  margin-bottom: 32px;
}

.bq-modal__block {
  margin-bottom: 28px;
}

.bq-modal__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 10px;
}

.bq-modal__text {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-text);
  white-space: pre-line;
}

.bq-modal__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text);
  border: 1px solid var(--color-text);
  padding: 14px 22px;
  text-decoration: none;
  margin-top: auto;
  width: fit-content;
  transition: background var(--dur-fast) ease, color var(--dur-fast) ease;
}
.bq-modal__cta:hover { background: var(--color-text); color: #FFFFFF; }

/* Modal responsive */
@media (max-width: 768px) {
  .bq-modal { padding: 0; align-items: flex-end; }
  .bq-modal__panel {
    grid-template-columns: 1fr;
    max-height: 94dvh;
    border-radius: 0;
  }
  .bq-modal__photo-col { padding: 20px 20px 0; }
  .bq-modal__info-col { padding: 28px 24px 36px; }
  .bq-modal__city { font-size: clamp(1.8rem, 8vw, 2.6rem); }
}

@media (max-width: 768px) {
  .boutiques__header { padding: 60px 24px 40px; }
  .boutique-photo__frame { width: min(88vw, 420px); padding: 10px 10px 44px; }
  .boutique-counter { right: 24px; top: 18px; }
}

/* ═══════════════════════════════════════════════════════════
   NEWSLETTER — Initio "GET IN" mega headline
═══════════════════════════════════════════════════════════ */
.newsletter {
  background: var(--color-dark-bg);
  border-top: 1px solid rgba(232, 226, 217, 0.15);
  border-bottom: 1px solid rgba(232, 226, 217, 0.15);
  padding: 72px 0 80px;
}

.newsletter__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.newsletter__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5.5vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #FFFFFF;
  line-height: 1.05;
  margin-bottom: 20px;
}

.newsletter__sub {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(232, 226, 217, 0.7);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.newsletter__form {
  display: flex;
  width: 100%;
  max-width: 520px;
  border: 1px solid rgba(232, 226, 217, 0.25);
}

.newsletter__input {
  flex: 1;
  height: 54px;
  padding: 0 20px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: #FFFFFF;
  background: transparent;
  border: none;
  outline: none;
  text-transform: uppercase;
}

.newsletter__input::placeholder {
  color: rgba(232, 226, 217, 0.5);
  letter-spacing: 0.14em;
}

.newsletter__btn {
  height: 54px;
  padding: 0 24px;
  background: #FFFFFF;
  color: #0A0A0A;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--dur-fast) ease, transform var(--dur-fast) ease;
  touch-action: manipulation;
}

.newsletter__btn:hover  { background: rgba(232, 226, 217, 0.95); }
.newsletter__btn:active { transform: scale(0.98); }

/* Success state */
.newsletter__btn.is-success {
  background: var(--color-gold);
  pointer-events: none;
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════════════════════════ */
.contact { background: var(--color-surface); }

.contact__intro {
  text-align: center;
  margin-bottom: var(--sp-12);
}

.contact__intro .overline { margin-bottom: var(--sp-3); }

.contact__form { display: flex; flex-direction: column; gap: var(--sp-6); }

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-group label {
  font-family: var(--font-body);
  font-size: var(--sz-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--sp-4) var(--sp-4);
  font-family: var(--font-body);
  font-size: var(--sz-md);
  font-weight: 300;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  outline: none;
  transition:
    border-color var(--dur-fast) ease,
    box-shadow var(--dur-fast) ease;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-group textarea { resize: vertical; min-height: 130px; line-height: 1.65; }

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-text);
  box-shadow: none;
}

.form-group input.is-error,
.form-group textarea.is-error { border-color: #C0392B; }

.form-group__error {
  font-family: var(--font-body);
  font-size: var(--sz-xs);
  font-weight: 400;
  color: #C0392B;
  display: none;
}

.form-group__error.is-visible { display: block; }

.contact__submit-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: var(--sp-2);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER — 5 columns (Initio structure)
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-8);
  padding-top: var(--sp-16);
  padding-bottom: var(--sp-16);
}

.footer__col-heading {
  font-family: var(--font-body);
  font-size: var(--sz-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: var(--sp-6);
}

.footer__col nav {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__link {
  font-family: var(--font-body);
  font-size: var(--sz-sm);
  font-weight: 300;
  color: var(--color-muted);
  transition: color var(--dur-fast) ease;
}

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

.footer__social-link {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

/* Payment strip */
.footer__payment-strip {
  border-top: 1px solid var(--color-border);
  padding: var(--sp-6) 0;
}

.footer__payment-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
}

.footer__payment-label {
  font-family: var(--font-body);
  font-size: var(--sz-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  white-space: nowrap;
}

.footer__payment-icons {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

.pay-badge {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  border: 1px solid var(--color-border);
  padding: 3px 7px;
  white-space: nowrap;
}

.footer__copy {
  font-family: var(--font-body);
  font-size: var(--sz-xs);
  font-weight: 400;
  color: var(--color-pale);
  margin-left: auto;
}

/* Address bar */
.footer__address {
  background: var(--color-text);
  padding: var(--sp-3) 0;
}

.footer__address p {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ═══════════════════════════════════════════════════════════
   SECONDARY PAGES — Hero Section & Main Content
═══════════════════════════════════════════════════════════ */
main,
.pdp-wrapper,
.frag-wrapper {
  padding-top: var(--header-h);
  scroll-margin-top: var(--header-h);
}

.page-hero {
  padding-top: calc(var(--header-h) + 5rem);
  padding-bottom: 3rem;
  background: var(--color-bg);
}

.page-hero--minimal {
  min-height: auto;
}

.page-hero__title {
  font-family: var(--font-heading);
  font-size: var(--sz-5xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--color-text);
}

.page-hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--sz-lg);
  color: var(--color-muted);
  margin-top: var(--sp-4);
}

.page-section {
  padding: 3rem var(--sp-6);
}

/* ═══════════════════════════════════════════════════════════
   MODALS & INTERACTIVE COMPONENTS
═══════════════════════════════════════════════════════════ */

/* Base Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s ease-out;
}

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

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.modal__content {
  position: relative;
  z-index: 201;
  background: white;
  border-radius: 16px;
  max-width: 600px;
  width: 85%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-muted);
  transition: color 0.2s;
  z-index: 202;
}

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

/* Search Modal */
.modal--search .modal__content--search {
  max-width: 600px;
  padding: 32px;
}

.search__header {
  margin-bottom: 24px;
}

.search__title {
  font-family: var(--font-heading);
  font-size: var(--sz-2xl);
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
}

.search__input-wrapper {
  position: relative;
  margin-bottom: 24px;
}

.search__input {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--sz-base);
  padding: 16px 24px 16px 48px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: white;
  transition: border-color 0.2s;
}

.search__input:focus {
  outline: none;
  border-color: var(--color-text);
}

.search__icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-muted);
  pointer-events: none;
}

.search__results {
  min-height: 200px;
}

.search__results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}

.search__result-item {
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 12px;
  transition: all 0.2s;
  cursor: pointer;
}

.search__result-item:hover {
  border-color: var(--color-gold);
  transform: scale(1.02);
}

.search__result-image {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--color-pale);
  border-radius: 4px;
  margin-bottom: 12px;
  overflow: hidden;
}

.search__result-name {
  font-family: var(--font-heading);
  font-size: var(--sz-sm);
  font-weight: 600;
  margin: 0 0 4px 0;
}

.search__result-meta {
  font-family: var(--font-body);
  font-size: var(--sz-xs);
  color: var(--color-muted);
  margin: 0 0 4px 0;
}

.search__result-notes {
  font-family: var(--font-body);
  font-size: var(--sz-xs);
  color: var(--color-muted);
  margin: 0 0 8px 0;
}

.search__result-price {
  font-family: var(--font-body);
  font-size: var(--sz-sm);
  font-weight: 600;
  color: var(--color-gold);
  margin: 0;
}

.search__empty {
  padding: 40px 24px;
  text-align: center;
}

.search__empty p {
  color: var(--color-muted);
}

.search__empty-hint {
  font-size: var(--sz-sm);
  margin-top: 8px;
}

.search__suggestions {
  padding: 24px 0;
}

.search__suggestions-title {
  font-family: var(--font-heading);
  font-size: var(--sz-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  margin: 0 0 16px 0;
}

.search__recent-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search__recent-item {
  text-align: left;
  padding: 8px 12px;
  background: var(--color-pale);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
  font-size: var(--sz-sm);
}

.search__recent-item:hover {
  background: var(--color-border);
  border-color: var(--color-text);
}

/* Auth Modal */
.modal--auth .modal__content--auth {
  max-width: 500px;
  padding: 40px 32px;
}

.auth__tabs {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}

.auth__tab {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: var(--sz-base);
  font-weight: 600;
  cursor: pointer;
  padding: 0 0 12px 0;
  color: var(--color-muted);
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.auth__tab--active {
  color: var(--color-text);
  border-bottom-color: var(--color-text);
}

.auth__form {
  display: none;
}

.auth__form--active {
  display: block;
}

.auth__forgot-password {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-size: var(--sz-sm);
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.auth__forgot-password:hover {
  color: var(--color-text);
}

/* Form Components */
.form__group {
  margin-bottom: 20px;
}

.form__group label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--sz-sm);
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--sz-base);
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid var(--color-border);
  background: transparent;
  transition: border-color 0.2s;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-bottom-color: var(--color-text);
}

.form__error {
  display: block;
  margin-top: 4px;
  font-family: var(--font-body);
  font-size: var(--sz-xs);
  color: #ef4444;
}

.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.form__checkbox input {
  width: auto;
  border: none;
  margin-top: 4px;
}

.form__checkbox label {
  margin: 0;
  font-size: var(--sz-sm);
  cursor: pointer;
}

.password-input {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 0;
  bottom: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--color-muted);
  display: flex;
  align-items: center;
}

.password-strength {
  margin-top: 8px;
}

.strength-bar {
  width: 100%;
  height: 4px;
  background: var(--color-pale);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 4px;
}

.strength-bar__fill {
  height: 100%;
  transition: width 0.2s, background-color 0.2s;
}

.strength-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--sz-xs);
  font-weight: 600;
}

/* Buttons */
.btn {
  font-family: var(--font-body);
  font-size: var(--sz-sm);
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.btn--primary {
  background: var(--color-text);
  color: white;
  margin-bottom: 12px;
}

.btn--primary:hover {
  background: var(--color-gold);
}

.btn--secondary {
  background: white;
  color: var(--color-text);
  border-color: var(--color-text);
}

.btn--secondary:hover {
  background: var(--color-pale);
}

.btn--full {
  width: 100%;
  display: block;
}

/* Mini Cart */
.mini-cart {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: flex-start;
  justify-content: flex-end;
  animation: fadeIn 0.2s ease-out;
}

.mini-cart.is-open {
  display: flex;
}

.mini-cart__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.mini-cart__panel {
  position: relative;
  z-index: 201;
  background: white;
  width: 350px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  animation: slideInRight 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.mini-cart__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
}

.mini-cart__title {
  font-family: var(--font-heading);
  font-size: var(--sz-lg);
  font-weight: 600;
  margin: 0;
}

.mini-cart__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-muted);
}

.mini-cart__items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}

.mini-cart__item {
  display: grid;
  grid-template-columns: 80px 1fr 30px;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
  transition: background 0.2s;
  padding: 12px;
  border-radius: 4px;
}

.mini-cart__item:hover {
  background: var(--color-pale);
}

.mini-cart__item-image {
  width: 80px;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
}

.mini-cart__item-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mini-cart__item-name {
  font-family: var(--font-heading);
  font-size: var(--sz-sm);
  font-weight: 600;
  margin: 0 0 4px 0;
}

.mini-cart__item-meta {
  font-family: var(--font-body);
  font-size: var(--sz-xs);
  color: var(--color-muted);
  margin: 0 0 8px 0;
}

.mini-cart__item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-cart__qty-btn {
  width: 24px;
  height: 24px;
  background: var(--color-pale);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--sz-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.mini-cart__qty-btn:hover {
  background: var(--color-border);
}

.mini-cart__qty {
  font-family: var(--font-body);
  font-size: var(--sz-sm);
  min-width: 20px;
  text-align: center;
}

.mini-cart__item-price {
  font-family: var(--font-body);
  font-size: var(--sz-sm);
  font-weight: 600;
  margin: 0;
}

.mini-cart__item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-muted);
  font-size: var(--sz-base);
  padding: 4px;
  transition: color 0.2s;
}

.mini-cart__item-remove:hover {
  color: #ef4444;
}

.mini-cart__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.mini-cart__empty p {
  margin: 0 0 16px 0;
  color: var(--color-muted);
}

.mini-cart__empty-link {
  font-family: var(--font-body);
  font-size: var(--sz-sm);
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 600;
}

.mini-cart__footer {
  padding: 20px 24px;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}

.mini-cart__subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-size: var(--sz-sm);
  font-weight: 600;
}

/* Button container for side-by-side layout */
.mini-cart__buttons-group {
  display: flex;
  gap: 16px;
}

.mini-cart__btn {
  flex: 1;
  padding: 12px 16px;
  min-height: 44px;
  font-family: var(--font-body);
  font-size: var(--sz-sm);
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-cart__btn:active {
  transform: scale(0.98);
}

.mini-cart__btn--primary {
  background: var(--color-text);
  color: white;
  border: 1px solid var(--color-text);
}

.mini-cart__btn--primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.mini-cart__btn--secondary {
  background: white;
  color: var(--color-text);
  border: 1px solid var(--color-text);
}

.mini-cart__btn--secondary:hover {
  background: #f5f5f5;
  transform: translateY(-1px);
}

.mini-cart__btn--secondary {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-text);
}

.mini-cart__btn--secondary:hover {
  background: var(--color-pale);
}

/* Cart Badge */
.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--color-gold);
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root {
    --navbar-h: 88px;
  }

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

  .product-card { flex: 0 0 calc(33.33% - 1px); }

  .philosophy__grid { grid-template-columns: 1fr; }
  .philosophy__col-body { max-width: 100%; }


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

/* ═══════════════════════════════════════════════════════════
   SHOPPING CART PAGE
═══════════════════════════════════════════════════════════ */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--sp-8);
  margin-bottom: var(--sp-12);
}

.cart-empty {
  text-align: center;
  padding: var(--sp-12) var(--sp-6);
}

.cart-empty__text {
  font-family: var(--font-heading);
  font-size: var(--sz-2xl);
  color: var(--color-muted);
  margin-bottom: var(--sp-6);
}

.cart-items {
  border: 1px solid var(--color-border);
  padding: var(--sp-6);
}

.cart-items__heading {
  font-family: var(--font-heading);
  font-size: var(--sz-lg);
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--color-border);
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr 120px 80px 40px;
  gap: var(--sp-4);
  align-items: center;
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--color-border);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item__image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 1px solid var(--color-border);
}

.cart-item__info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.cart-item__name {
  font-family: var(--font-heading);
  font-size: var(--sz-base);
  font-weight: 600;
  color: var(--color-text);
}

.cart-item__meta {
  font-family: var(--font-body);
  font-size: var(--sz-sm);
  color: var(--color-muted);
}

.cart-item__price {
  font-family: var(--font-body);
  font-size: var(--sz-sm);
  color: var(--color-text);
  font-weight: 500;
}

.cart-item__controls {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.cart-qty-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-border);
  background: transparent;
  font-family: var(--font-body);
  font-size: var(--sz-base);
  cursor: pointer;
  transition: all 0.2s;
}

.cart-qty-btn:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text);
}

.cart-qty-input {
  width: 50px;
  padding: var(--sp-1) var(--sp-2);
  border: 1px solid var(--color-border);
  font-family: var(--font-body);
  font-size: var(--sz-sm);
  text-align: center;
}

.cart-item__total {
  font-family: var(--font-body);
  font-size: var(--sz-base);
  font-weight: 600;
  text-align: right;
}

.cart-item__remove {
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-border);
  background: transparent;
  font-size: var(--sz-base);
  cursor: pointer;
  transition: all 0.2s;
  color: #ef4444;
}

.cart-item__remove:hover {
  background: #fef2f2;
  border-color: #ef4444;
}

.cart-summary {
  border: 1px solid var(--color-border);
  padding: var(--sp-6);
  height: fit-content;
  position: sticky;
  top: calc(var(--header-h) + var(--sp-4));
}

.cart-summary__heading {
  font-family: var(--font-heading);
  font-size: var(--sz-lg);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--color-border);
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-2) 0;
  font-family: var(--font-body);
  font-size: var(--sz-sm);
  color: var(--color-text);
}

.cart-summary__divider {
  height: 1px;
  background: var(--color-border);
  margin: var(--sp-3) 0;
}

.cart-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-3) 0;
  font-family: var(--font-heading);
  font-size: var(--sz-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--sp-4);
}

.cart-wrapper {
  display: contents;
}

/* ═══════════════════════════════════════════════════════════
   CHECKOUT PAGE
═══════════════════════════════════════════════════════════ */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--sp-8);
}

.checkout-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  margin-bottom: var(--sp-8);
  padding: var(--sp-6) 0;
  border-bottom: 1px solid var(--color-border);
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
}

.progress-step__number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: var(--sz-sm);
  font-weight: 600;
  transition: all 0.3s;
}

.progress-step__label {
  font-family: var(--font-body);
  font-size: var(--sz-xs);
  color: var(--color-muted);
  text-align: center;
}

.progress-step--active .progress-step__number {
  border-color: var(--color-text);
  background: var(--color-text);
  color: var(--color-bg);
}

.progress-step--completed .progress-step__number {
  border-color: var(--color-text);
  background: var(--color-text);
  color: var(--color-bg);
}

.progress-step--completed .progress-step__label,
.progress-step--active .progress-step__label {
  color: var(--color-text);
}

.checkout-content {
  background: transparent;
}

.checkout-step {
  animation: fadeIn 0.3s ease-out;
}

.checkout-step__heading {
  font-family: var(--font-heading);
  font-size: var(--sz-2xl);
  font-weight: 600;
  margin-bottom: var(--sp-6);
  color: var(--color-text);
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.form__checkbox {
  display: flex;
  gap: var(--sp-2);
  align-items: center;
  padding: 0;
}

.form__checkbox input {
  width: auto;
  border: none;
  padding: 0;
}

.form__checkbox label {
  margin: 0;
  font-weight: 400;
}

.checkout-nav {
  display: flex;
  gap: var(--sp-4);
  justify-content: space-between;
  margin-top: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--color-border);
}

.checkout-nav .btn {
  flex: 1;
}

.review-section {
  margin-bottom: var(--sp-6);
  padding: var(--sp-4);
  border: 1px solid var(--color-border);
}

.review-section__title {
  font-family: var(--font-body);
  font-size: var(--sz-sm);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
  color: var(--color-muted);
}

.review-details {
  font-family: var(--font-body);
  font-size: var(--sz-sm);
  line-height: 1.6;
  color: var(--color-text);
}

.review-items {
  font-family: var(--font-body);
  font-size: var(--sz-sm);
}

.review-item {
  display: flex;
  justify-content: space-between;
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--color-border);
}

.review-item:last-child {
  border-bottom: none;
}

.review-item--subtotal {
  font-weight: 600;
  margin-top: var(--sp-2);
}

.review-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-4) 0;
  font-family: var(--font-heading);
  font-size: var(--sz-lg);
  font-weight: 700;
  color: var(--color-text);
  border-top: 2px solid var(--color-text);
}

.checkout-summary {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  padding: var(--sp-6);
  height: fit-content;
  position: sticky;
  top: calc(var(--header-h) + var(--sp-4));
}

.checkout-summary__heading {
  font-family: var(--font-heading);
  font-size: var(--sz-lg);
  margin-bottom: var(--sp-4);
  color: var(--color-text);
}

.checkout-items-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--color-border);
}

.checkout-item {
  font-family: var(--font-body);
  font-size: var(--sz-xs);
  color: var(--color-text);
}

.checkout-item__name {
  font-weight: 600;
  margin-bottom: var(--sp-1);
}

.checkout-item__qty,
.checkout-item__price {
  color: var(--color-muted);
}

.checkout-summary__total {
  display: flex;
  justify-content: space-between;
  padding: var(--sp-3) 0;
  font-family: var(--font-heading);
  font-size: var(--sz-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--color-border);
}

/* Success Modal */
.modal--success {
  display: flex !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal--success .modal__overlay {
  display: none;
}

.modal__content--success {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: var(--sp-8);
  max-width: 400px;
  width: 90%;
  text-align: center;
  border-radius: var(--radius);
  animation: slideUp 0.3s ease-out;
}

.success-icon {
  margin: 0 auto var(--sp-4);
  stroke: #22c55e;
  display: block;
}

.success-heading {
  font-family: var(--font-heading);
  font-size: var(--sz-2xl);
  margin-bottom: var(--sp-2);
  color: var(--color-text);
}

.success-text {
  font-family: var(--font-body);
  font-size: var(--sz-base);
  color: var(--color-muted);
  margin-bottom: var(--sp-4);
}

.success-order-id {
  font-family: var(--font-body);
  font-size: var(--sz-sm);
  color: var(--color-text);
  font-weight: 600;
  margin-bottom: var(--sp-6);
}

.modal__content--success .btn {
  display: block;
  width: 100%;
  margin-bottom: var(--sp-3);
}

.modal__content--success .btn:last-child {
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════
   ACCOUNT PAGE
═══════════════════════════════════════════════════════════ */
.account-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: var(--sp-8);
}

.account-sidebar {
  position: sticky;
  top: calc(var(--header-h) + var(--sp-4));
  height: fit-content;
}

.account-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.account-nav__item {
  background: none;
  border: none;
  padding: var(--sp-3) var(--sp-4);
  font-family: var(--font-body);
  font-size: var(--sz-base);
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--color-muted);
  border-left: 2px solid transparent;
}

.account-nav__item:hover {
  color: var(--color-text);
  background: var(--color-bg-alt);
}

.account-nav__item--active {
  color: var(--color-text);
  border-left-color: var(--color-text);
  background: var(--color-bg-alt);
  font-weight: 600;
}

.account-content {
  border: 1px solid var(--color-border);
  padding: var(--sp-8);
}

.account-section {
  display: none;
  animation: fadeIn 0.3s ease-out;
}

.account-section--active {
  display: block;
}

.account-section__heading {
  font-family: var(--font-heading);
  font-size: var(--sz-2xl);
  margin-bottom: var(--sp-6);
  color: var(--color-text);
}

.account-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  max-width: 500px;
}

.empty-state {
  font-family: var(--font-body);
  color: var(--color-muted);
  margin-bottom: var(--sp-4);
}

/* Orders */
.orders-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.order-card {
  border: 1px solid var(--color-border);
  padding: var(--sp-6);
  transition: all 0.2s;
}

.order-card:hover {
  border-color: var(--color-text);
}

.order-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--color-border);
}

.order-card__id {
  font-family: var(--font-heading);
  font-size: var(--sz-base);
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
}

.order-card__date {
  font-family: var(--font-body);
  font-size: var(--sz-sm);
  color: var(--color-muted);
  margin: 0;
}

.order-card__items {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.order-item {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: var(--sz-sm);
  color: var(--color-text);
}

.order-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--color-border);
  padding-top: var(--sp-4);
}

.order-card__total {
  font-family: var(--font-body);
  font-size: var(--sz-base);
  color: var(--color-text);
  margin: 0;
}

/* Addresses */
.addresses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}

.address-card {
  border: 1px solid var(--color-border);
  padding: var(--sp-6);
}

.address-card__title {
  font-family: var(--font-heading);
  font-size: var(--sz-lg);
  margin-bottom: var(--sp-4);
  color: var(--color-text);
}

.address-card__content {
  font-family: var(--font-body);
  font-size: var(--sz-sm);
  color: var(--color-muted);
  margin-bottom: var(--sp-4);
  line-height: 1.6;
}

/* Wishlist */
.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.wishlist-card {
  border: 1px solid var(--color-border);
  padding: var(--sp-4);
  text-align: center;
}

.wishlist-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: var(--sp-3);
}

.wishlist-card__name {
  font-family: var(--font-heading);
  font-size: var(--sz-base);
  margin-bottom: var(--sp-1);
  color: var(--color-text);
}

.wishlist-card__concentration {
  font-family: var(--font-body);
  font-size: var(--sz-sm);
  color: var(--color-muted);
  margin-bottom: var(--sp-2);
}

.wishlist-card__price {
  font-family: var(--font-heading);
  font-size: var(--sz-lg);
  font-weight: 600;
  margin-bottom: var(--sp-3);
  color: var(--color-text);
}

.wishlist-card .btn {
  display: block;
  margin-bottom: var(--sp-2);
  width: 100%;
}

/* Button size variants */
.btn--sm {
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--sz-sm);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --announce-h:  32px;
    --navbar-h:    60px;
  }

  /* Navbar: hide links row on mobile */
  .navbar__bottom  { display: none; }
  .navbar__top     { height: 60px; }
  .navbar__hamburger { display: flex; }
  .navbar__icon-btn:not(.navbar__cart-btn) { display: none; }

  /* Secondary page hero */
  .page-hero { padding-top: calc(var(--header-h) + 3rem); padding-bottom: 2rem; }
  .page-hero__title { font-size: var(--sz-3xl); }
  .page-section { padding: 2rem var(--sp-4); }

  /* Hero */
  .hero { height: 350vh; }
  .hero__content { padding: 0 var(--sp-6) calc(6vh + var(--sp-6)); }

  /* Notes */
  .notes__tier { width: 100% !important; }

  /* Footer */
  .footer__cols { grid-template-columns: repeat(2, 1fr); gap: var(--sp-8) var(--sp-6); }
  .footer__payment-inner { flex-direction: column; align-items: flex-start; }
  .footer__copy { margin-left: 0; margin-top: var(--sp-2); }

  /* Benefits */
  .benefits__grid { grid-template-columns: 1fr 1fr; }

  /* Shopping Cart */
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
    top: auto;
  }

  .cart-item {
    grid-template-columns: 60px 1fr 30px;
    gap: var(--sp-2);
  }

  .cart-item__image {
    width: 60px;
    height: 60px;
  }

  .cart-item__controls {
    display: none;
  }

  .cart-item__total {
    text-align: right;
  }

  .cart-item__remove {
    width: 28px;
    height: 28px;
  }

  /* Checkout */
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-progress {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-4);
  }

  .checkout-summary {
    position: static;
    top: auto;
  }

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

  /* Mini-cart responsive */
  .mini-cart__buttons-group {
    flex-direction: column;
  }

  .mini-cart__btn {
    width: 100%;
    flex: none;
  }

  /* Account */
  .account-layout {
    grid-template-columns: 1fr;
  }

  .account-sidebar {
    position: static;
    top: auto;
  }

  .account-nav {
    flex-direction: row;
    gap: 0;
    overflow-x: auto;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: var(--sp-6);
  }

  .account-nav__item {
    flex: 1;
    min-width: 100px;
    border-left: none;
    border-bottom: 2px solid transparent;
    padding: var(--sp-3) var(--sp-2);
    text-align: center;
  }

  .account-nav__item--active {
    border-left: none;
    border-bottom-color: var(--color-text);
  }

  .account-content {
    padding: var(--sp-6);
  }

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

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

@media (max-width: 480px) {
  .footer__cols  { grid-template-columns: 1fr; }
  .sel-tab:nth-child(n+3) { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .announce-bar__track { animation: none; }
  .hero__scroll-line   { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ═══════════════════════════════════════════════════════════
   DEAD CLASS STUBS (kept for JS compatibility)
═══════════════════════════════════════════════════════════ */
.fade-left, .fade-right { opacity: 0; }
