/* =====================================================
   WOVEN ORIGIN — Editorial Maison
   Restraint. Whitespace. Photography. Typography.
   Inspired by the editorial pages of Bottega, Hermès,
   The Row, Loewe, Brunello Cucinelli.
   ===================================================== */

:root {
  /* === ROYAL NAVY + ROSE-GOLD PALETTE ===
   * Matches the WO Luxe Shopper bag exactly. Bright + royal feel.
   * Variable names retain "emerald"/"gold" for selector compatibility;
   * the values are pure royal navy + rose-gold. No emerald hex remains.
   */
  --wo-emerald:      #032157;   /* PRIMARY ROYAL NAVY (user-spec)     */
  --wo-emerald-deep: #01102d27; /* deepest navy, low-alpha overlay    */
  --wo-emerald-mid:  #0b2f6b;   /* mid navy (cards/panels/image bg)   */
  --wo-emerald-2:    #143c87;   /* brighter royal blue (hover/active) */
  --wo-jade:         #3a5a8a;   /* dusty navy-azure (rare accent)     */

  --wo-gold:         #cd7d66;   /* PRIMARY ROSE-GOLD (user-spec)      */
  --wo-gold-2:       #e09780;   /* brighter rose-gold highlight       */
  --wo-gold-3:       #f1cdbb;   /* palest rose-gold (paper-tone bg)   */

  --wo-bone:         #f5ede0;
  --wo-bone-2:       #e8dcc4;
  --wo-cream:        #c8b89a;
  --wo-cream-soft:   #9d9078;

  --wo-rule:         rgba(245,237,224,0.10);
  --wo-rule-strong:  rgba(245,237,224,0.18);

  --wo-font-serif:   'Cormorant Garamond', 'Cormorant', 'Didot', serif;
  --wo-font-sans:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

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

  --header-h: 88px;
  --gutter:  clamp(1.5rem, 4vw, 4rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--wo-font-sans);
  background: #032157;
  color: var(--wo-bone);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  letter-spacing: 0.005em;
}

img { display: block; max-width: 100%; height: auto; }
a {
  color: inherit; text-decoration: none;
  transition: opacity .5s var(--wo-ease), color .5s var(--wo-ease);
}
a:hover { opacity: .65; }
button {
  font: inherit; color: inherit; background: none; border: 0; cursor: pointer;
  font-weight: 300;
}

::selection { background: var(--wo-gold); color: var(--wo-emerald); }

/* ====== TYPOGRAPHY ====== */
h1, h2, h3, h4 {
  font-family: var(--wo-font-serif);
  font-weight: 300;
  letter-spacing: -0.005em;
  line-height: 1.05;
  color: var(--wo-bone);
}
h1 { font-size: clamp(2.6rem, 6.5vw, 6rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 3.6rem); }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.45rem); font-weight: 400; }
h4 { font-size: 0.95rem; font-weight: 400; }
em { font-style: italic; color: var(--wo-gold-2); font-family: var(--wo-font-serif); font-weight: 300; }

p { color: var(--wo-bone-2); font-weight: 300; }

.wo-eyebrow {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--wo-cream);
  font-weight: 400;
}

.wo-rule {
  display: block; height: 1px; width: 40px;
  background: var(--wo-gold); opacity: .55;
  margin: 1.4rem auto;
}
.wo-rule--left { margin-left: 0; }

/* ====== LOADER (subtle fade) ====== */
.wo-loader {
  position: fixed; inset: 0; z-index: 999;
  background: var(--wo-emerald);
  display: grid; place-items: center;
  transition: opacity 1.2s var(--wo-ease), visibility 1.2s;
}
.wo-loader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.wo-loader__inner { text-align: center; padding: 0 1.5rem; max-width: 100vw; }
.wo-loader__crest {
  width: 84px; height: 84px; object-fit: contain;
  margin: 0 auto 1.4rem;
  display: block;
  opacity: 0;
  animation: woCrestFade 1.4s var(--wo-ease) .2s forwards;
}
@keyframes woCrestFade { to { opacity: 1; } }
.wo-loader__name {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-family: var(--wo-font-serif);
  font-size: 1.4rem;
  letter-spacing: .35em;
  color: var(--wo-bone);
  font-weight: 300;
  line-height: 1;
}
.wo-loader__line {
  display: block; margin: 1.2rem auto 0; width: 0; height: 1px;
  background: var(--wo-gold);
  animation: woLoad 1.6s var(--wo-ease) forwards;
}
@keyframes woLoad { to { width: 100px; } }

/* ====== ANNOUNCEMENT (calm, single line) ====== */
.wo-announce {
  text-align: center;
  padding: .85rem var(--gutter);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--wo-cream);
  border-bottom: 1px solid var(--wo-rule);
  background: transparent;
  font-weight: 400;
}
.wo-announce--desktop { display: inline; }
.wo-announce--mobile  { display: none; }
@media (max-width: 720px) {
  .wo-announce--desktop { display: none; }
  .wo-announce--mobile  { display: inline; }
}

/* ====== HEADER ====== */
.wo-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(3,33,87,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background .6s var(--wo-ease), border-color .6s var(--wo-ease);
}
.wo-header.is-scrolled { background: rgba(3,33,87,.96); border-bottom-color: var(--wo-rule); }

.wo-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 1.6rem var(--gutter);
  max-width: 1700px; margin: 0 auto;
  min-height: var(--header-h);
}
.wo-nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; background: none; border: 0; }
.wo-nav-toggle span { display: block; width: 22px; height: 1px; background: var(--wo-bone); transition: .3s; }

.wo-nav {
  display: flex; gap: clamp(1.1rem, 1.8vw, 2.4rem);
  align-items: center;
  flex-wrap: nowrap;
}
.wo-nav--right { justify-content: flex-end; }
.wo-nav__link {
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--wo-bone); padding: .5rem 0;
  font-weight: 400;
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
}
.wo-nav__link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: var(--wo-gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .55s var(--wo-ease);
}
.wo-nav__link:hover { opacity: 1; color: var(--wo-bone); }
.wo-nav__link:hover::after { transform: scaleX(1); transform-origin: left; }

.wo-brand {
  display: flex; flex-direction: column; align-items: center; gap: .35rem;
  text-align: center;
}
.wo-brand__name {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-family: var(--wo-font-serif);
  font-size: 1.55rem;
  letter-spacing: .42em;
  color: var(--wo-bone);
  font-weight: 300;
  padding-left: .42em; /* compensate tracking */
  line-height: 1;
  white-space: nowrap;
}
.wo-brand__sub { display: block; text-align: center; }
.wo-brand__word { display: inline-block; line-height: 1; letter-spacing: inherit; }
.wo-brand__name em.wo-brand__word { letter-spacing: .42em; }
.wo-brand__crest {
  width: 1.6em; height: 1.6em;
  object-fit: contain;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.25));
  transition: transform .8s var(--wo-ease-slow);
  flex-shrink: 0;
  margin: 0;
}
.wo-brand__crest--lg { width: 2.4em; height: 2.4em; }
.wo-brand:hover .wo-brand__crest { transform: rotate(-8deg) scale(1.06); }
.wo-brand__name em {
  font-style: italic; font-weight: 300;
  color: var(--wo-gold-2);
  -webkit-text-fill-color: var(--wo-gold-2);
  background: none;
}
.wo-brand__sub {
  font-size: 8.5px; letter-spacing: .55em; text-transform: uppercase;
  color: var(--wo-cream); padding-left: .55em;
}

.wo-utility { display: flex; gap: .25rem; align-items: center; justify-content: flex-end; }
.wo-icon-btn {
  width: 38px; height: 38px; display: grid; place-items: center;
  background: none; border: 0; color: var(--wo-bone);
  position: relative;
  transition: opacity .5s var(--wo-ease);
}
.wo-icon-btn:hover { opacity: .65; }
.wo-icon-btn svg { width: 18px; height: 18px; stroke-width: 1; }
.wo-cart-btn { position: relative; }
.wo-cart-count {
  position: absolute; top: 2px; right: 2px;
  font-size: 9px; color: var(--wo-gold-2);
  font-weight: 500;
}

/* inline search row (no overlay explosion) */
.wo-search-row {
  max-height: 0; overflow: hidden;
  transition: max-height .6s var(--wo-ease);
  border-bottom: 1px solid transparent;
}
.wo-search-row.is-open { max-height: 80px; border-bottom-color: var(--wo-rule); }
.wo-search-row form {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.4rem var(--gutter);
  max-width: 1700px; margin: 0 auto;
}
.wo-search-row svg { width: 18px; height: 18px; color: var(--wo-cream); stroke-width: 1; }
.wo-search-row input {
  flex: 1; background: transparent; border: 0; outline: none;
  font-family: var(--wo-font-serif);
  font-size: 1.4rem; color: var(--wo-bone); font-weight: 300;
}
.wo-search-row input::placeholder { color: rgba(200,184,154,.5); font-style: italic; }
.wo-search-row__hint { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--wo-cream); }

/* ====== DRAWERS / OVERLAY ====== */
.wo-overlay {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(7,23,19,.68);
  opacity: 0; pointer-events: none;
  transition: opacity .7s var(--wo-ease);
}
.wo-overlay.is-open { opacity: 1; pointer-events: all; }

.wo-cart-drawer, .wo-drawer-nav {
  position: fixed; top: 0; bottom: 0; width: min(420px, 85vw);
  background: var(--wo-emerald);
  border-left: 1px solid var(--wo-rule);
  z-index: 70;
  transform: translateX(110%);
  transition: transform .85s var(--wo-ease-slow);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.wo-drawer-nav__inner {
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  flex: 1;
}
body.wo-no-scroll { overflow: hidden !important; height: 100vh; touch-action: none; }
.wo-cart-drawer { right: 0; }
.wo-drawer-nav {
  left: 0; right: auto;
  border-left: 0; border-right: 1px solid var(--wo-rule);
  transform: translateX(-110%);
}
.wo-cart-drawer.is-open, .wo-drawer-nav.is-open { transform: translateX(0); }

.wo-cart-drawer__head { padding: 2.2rem 2.4rem; }
.wo-drawer-nav__inner { padding: 2rem 1.4rem 2rem 1.4rem; }
.wo-cart-drawer__head {
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--wo-rule);
}
.wo-cart-drawer__head h3 { font-family: var(--wo-font-serif); font-size: 1.4rem; font-weight: 300; }
.wo-cart-drawer__body { flex: 1; overflow-y: auto; padding: 1.5rem 2.4rem; }
.wo-cart-empty { color: var(--wo-cream); font-style: italic; text-align: center; padding: 4rem 0; font-family: var(--wo-font-serif); font-size: 1.05rem; }

.wo-cart-line {
  display: grid; grid-template-columns: 70px 1fr auto;
  gap: 1.2rem; padding: 1.2rem 0;
  border-bottom: 1px solid var(--wo-rule);
}
.wo-cart-line img { width: 70px; height: 90px; object-fit: cover; }
.wo-cart-line__body strong { display: block; font-family: var(--wo-font-serif); font-size: 1.05rem; font-weight: 400; }
.wo-cart-line__body small { color: var(--wo-cream); font-size: 11px; letter-spacing: .12em; }
.wo-cart-line__qty { display: flex; gap: .5rem; align-items: center; margin-top: .5rem; font-size: 12px; }
.wo-cart-line__qty button { padding: 2px 8px; border: 1px solid var(--wo-rule); }
.wo-cart-line__price { font-family: var(--wo-font-serif); font-size: 1.05rem; color: var(--wo-bone); }

.wo-cart-drawer__foot { padding: 1.5rem 2.4rem 2rem; border-top: 1px solid var(--wo-rule); }
.wo-cart-subtotal {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 1.2rem; font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--wo-cream);
}
.wo-cart-subtotal strong { font-family: var(--wo-font-serif); font-size: 1.25rem; color: var(--wo-bone); letter-spacing: 0; font-weight: 400; }
.wo-link-min { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--wo-cream); display: block; text-align: center; margin-top: 1.2rem; }

.wo-drawer-nav__inner { display: flex; flex-direction: column; gap: 0; }
.wo-drawer-nav__brand {
  display: flex; flex-direction: column; align-items: center; gap: .35rem;
  text-align: center;
  padding: 0 0 1.8rem;
  margin: 0 0 1.5rem;
  border-bottom: 1px solid var(--wo-rule);
}
.wo-drawer-nav__brand .wo-brand__name { font-size: 1.3rem; }

.wo-drawer-nav__account {
  display: flex; align-items: center; gap: .65rem;
  padding: 1rem 1.1rem;
  margin: 0 0 1.5rem;
  background: rgba(205,125,102,.10);
  border: 1px solid rgba(205,125,102,.28);
  color: var(--wo-bone);
  transition: background .35s var(--wo-ease);
}
.wo-drawer-nav__account:hover { background: rgba(205,125,102,.18); opacity: 1; }
.wo-drawer-nav__account svg {
  width: 20px; height: 20px;
  color: var(--wo-gold-2); flex-shrink: 0; stroke-width: 1.3;
}
.wo-drawer-nav__account strong {
  font-family: var(--wo-font-serif); font-weight: 400; font-size: 1.05rem; color: var(--wo-bone);
  flex-shrink: 0;
}
.wo-drawer-nav__account small {
  font-size: 11px; letter-spacing: .06em; color: var(--wo-cream);
  flex: 1; min-width: 0;
}

/* Kill the blue tap-highlight flash on iOS/Android */
* { -webkit-tap-highlight-color: transparent; }
button, a, label, summary, input, select, textarea { -webkit-tap-highlight-color: transparent; outline: none; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 1px solid var(--wo-gold); outline-offset: 2px;
}
.wo-drawer-nav__inner h3 {
  font-family: var(--wo-font-sans); font-size: 10px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--wo-cream); margin-top: 2rem; margin-bottom: 1.2rem; font-weight: 400;
}
.wo-drawer-nav__inner h3:first-child { margin-top: 0; }
.wo-drawer-nav__brand + h3 { margin-top: 0; }
.wo-drawer-nav__inner a {
  display: block; padding: .65rem 0; font-family: var(--wo-font-serif);
  font-size: 1.5rem; font-weight: 300;
  border-bottom: 1px solid var(--wo-rule);
}

/* ====== TYPOGRAPHY-LED CTAs ====== */
.wo-link-arrow {
  display: inline-flex; align-items: center; gap: .9rem;
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--wo-bone);
  padding-bottom: .35rem;
  border-bottom: 1px solid var(--wo-gold);
  font-weight: 400;
}
.wo-link-arrow span { transition: transform .5s var(--wo-ease); display: inline-block; }
.wo-link-arrow:hover { opacity: 1; }
.wo-link-arrow:hover span { transform: translateX(8px); }

.wo-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1.05rem 2rem;
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase; font-weight: 400;
  background: transparent; color: var(--wo-bone);
  border: 1px solid var(--wo-bone);
  cursor: pointer;
  transition: background .55s var(--wo-ease), color .55s var(--wo-ease), border-color .55s var(--wo-ease);
}
.wo-btn:hover { background: var(--wo-bone); color: var(--wo-emerald); opacity: 1; }
.wo-btn--gold { border-color: var(--wo-gold); color: var(--wo-gold-2); }
.wo-btn--gold:hover { background: var(--wo-gold); color: var(--wo-emerald); border-color: var(--wo-gold); }
.wo-btn--block { width: 100%; display: flex; }

/* ====== HERO — ambient, slow ====== */
.wo-hero {
  position: relative; min-height: calc(100vh - var(--header-h));
  display: grid; place-items: end center;
  padding: 0 var(--gutter) 6rem;
  overflow: hidden;
  text-align: center;
  background: var(--wo-emerald);
}
.wo-hero__bg { position: absolute; inset: 0; z-index: 0; }
.wo-hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(3,33,87,.35) 0%, rgba(3,33,87,.55) 60%, var(--wo-emerald) 100%);
  z-index: 1;
}
.wo-hero__video, .wo-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }

/* Placeholder hero — when hero.mp4 isn't yet dropped in, show the spec card clearly. */
.wo-hero--placeholder .wo-hero__bg::before,
.wo-hero--placeholder .wo-hero__bg::after { display: none; }
.wo-hero--placeholder .wo-hero__poster-only { opacity: 1; }
.wo-hero--placeholder .wo-hero__content { background: rgba(10,10,10,.7); padding: 2.5rem; max-width: 720px; backdrop-filter: blur(4px); }
.wo-hero__bg::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 50% 30%, #143b80 0%, #032157 65%, #01112a27 100%);
}
.wo-hero__content { position: relative; z-index: 3; max-width: 980px; padding: 4rem 0 0; transform: translateY(-5px); }
.wo-hero__eyebrow { margin-bottom: 2.5rem; color: var(--wo-cream); }
.wo-hero__title {
  font-family: var(--wo-font-serif); font-weight: 300;
  line-height: 1.02; margin-bottom: 2rem;
  font-size: clamp(2.8rem, 7.5vw, 6.4rem);
}
.wo-hero__title em { font-style: italic; color: var(--wo-gold-2); }
.wo-hero__lede {
  max-width: 540px; margin: 0 auto 3rem;
  color: var(--wo-bone-2); font-size: 1rem;
  font-weight: 300;
}
.wo-hero__cta { display: flex; gap: 2.5rem; justify-content: center; align-items: center; flex-wrap: wrap; }

.wo-hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 4;
  font-size: 9px; letter-spacing: .35em; text-transform: uppercase; color: var(--wo-cream);
  display: flex; flex-direction: column; align-items: center; gap: .8rem;
}
.wo-hero__scroll-line {
  width: 1px; height: 40px; background: linear-gradient(180deg, var(--wo-gold), transparent);
}

/* ====== EDITORIAL CHAPTERS — magazine-like ====== */
.wo-chapter {
  padding: clamp(5rem, 10vw, 9rem) var(--gutter);
  max-width: 1400px; margin: 0 auto;
}
.wo-chapter--center { text-align: center; }
.wo-chapter__num {
  font-family: var(--wo-font-serif);
  font-size: 1rem; letter-spacing: .3em;
  color: var(--wo-cream);
  margin-bottom: 1rem;
}
.wo-chapter__title {
  font-family: var(--wo-font-serif); font-weight: 300;
  font-style: italic; line-height: 1.1;
  max-width: 22ch;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
}
.wo-chapter--center .wo-chapter__title { margin-left: auto; margin-right: auto; }
.wo-chapter__lede {
  margin-top: 2rem;
  max-width: 56ch; color: var(--wo-bone-2);
  font-size: 1rem;
}
.wo-chapter--center .wo-chapter__lede { margin-left: auto; margin-right: auto; }
.wo-chapter__cta { margin-top: 2.5rem; }

/* ====== SIGNATURE PIECES — editorial grid ====== */
.wo-signature {
  padding: 4rem var(--gutter) 8rem;
  max-width: 1700px; margin: 0 auto;
}
.wo-signature__head {
  display: grid; grid-template-columns: 1fr auto;
  align-items: end; gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--wo-rule);
}
.wo-signature__head h2 {
  font-style: italic; max-width: 18ch;
  font-size: clamp(2rem, 4vw, 3.4rem);
}
.wo-signature__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.wo-sig-card {
  display: block;
  border-right: 1px solid var(--wo-rule);
  padding: 3rem 2rem;
}
.wo-sig-card:last-child { border-right: 0; }
.wo-sig-card__media {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  background: var(--wo-bone); margin-bottom: 1.8rem;
}
.wo-sig-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--wo-ease-slow), opacity .6s var(--wo-ease);
}
.wo-sig-card:hover .wo-sig-card__media img { transform: scale(1.04); }

.wo-sig-card__num {
  font-size: 10px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--wo-cream); margin-bottom: .9rem;
}
.wo-sig-card__name {
  font-family: var(--wo-font-serif); font-weight: 300; font-size: 1.4rem;
  margin-bottom: .8rem;
}
.wo-sig-card__price { color: var(--wo-bone-2); font-size: .95rem; }

.wo-price {
  font-family: var(--wo-font-sans); font-size: .95rem; color: var(--wo-bone);
  letter-spacing: .03em; font-weight: 300;
}
.wo-price--lg { font-size: 1.35rem; font-family: var(--wo-font-serif); }
.wo-price__compare { text-decoration: line-through; color: var(--wo-cream); opacity: .55; margin-left: .8rem; font-size: .85rem; }

/* ====== EDITORIAL FULL-BLEED IMAGE SECTION ====== */
.wo-editorial-full {
  position: relative; height: 80vh; min-height: 560px;
  overflow: hidden;
  display: grid; align-items: end;
  padding: var(--gutter);
}
.wo-editorial-full img, .wo-editorial-full video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.wo-editorial-full::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, rgba(7,23,19,.85) 0%, rgba(7,23,19,.1) 50%, rgba(7,23,19,.4) 100%);
}
.wo-editorial-full__copy {
  position: relative; z-index: 2; max-width: 540px;
  padding: 2rem;
}
.wo-editorial-full__copy h2 {
  font-style: italic; margin: 1rem 0 1.5rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.wo-editorial-full__copy p { color: var(--wo-bone-2); margin-bottom: 1.8rem; }

/* ====== EDITORIAL TWO-UP ====== */
.wo-editorial {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: clamp(2rem, 6vw, 6rem);
  padding: clamp(5rem, 10vw, 9rem) var(--gutter);
  max-width: 1500px; margin: 0 auto;
}
.wo-editorial__media { aspect-ratio: 4/5; overflow: hidden; position: relative; background: var(--wo-bone); }
.wo-editorial__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--wo-ease-slow); }
.wo-editorial:hover .wo-editorial__media img { transform: scale(1.04); }
.wo-editorial__copy h2 { margin: 1rem 0 1.5rem; font-style: italic; }
.wo-editorial__copy p { color: var(--wo-bone-2); margin-bottom: 2rem; }
.wo-editorial--reverse .wo-editorial__media { order: 2; }

/* ====== PRODUCT GRID — minimal, image-led ====== */
.wo-collection {
  padding: 0 var(--gutter) 8rem;
  max-width: 1700px; margin: 0 auto;
}
.wo-collection__head {
  display: grid; grid-template-columns: 1fr auto;
  align-items: end; gap: 2rem;
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--wo-rule);
  margin-bottom: 3rem;
}
.wo-product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}
.wo-product-card {
  display: block; position: relative;
}
.wo-product-card__media {
  position: relative; display: block; aspect-ratio: 4/5; overflow: hidden;
  background: var(--wo-bone); margin-bottom: 1.2rem;
}
.wo-product-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity .8s var(--wo-ease);
}
.wo-product-card__media img.wo-alt {
  position: absolute; inset: 0; opacity: 0;
}
.wo-product-card:hover .wo-product-card__media img.wo-alt { opacity: 1; }
/* Only hide the main image on hover IF a .wo-alt sibling exists, otherwise the main vanishes and the card bg shows through */
.wo-product-card:hover .wo-product-card__media:has(img.wo-alt) img:not(.wo-alt) { opacity: 0; }

.wo-product-card__body { display: grid; gap: .35rem; }
.wo-product-card__cat {
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: var(--wo-cream);
}
.wo-product-card__name {
  font-family: var(--wo-font-serif); font-weight: 300; font-size: 1.05rem;
  color: var(--wo-bone);
}
.wo-product-card__price { font-size: .9rem; color: var(--wo-bone-2); }

.wo-product-card__edition {
  font-family: var(--wo-font-serif); font-style: italic;
  font-size: .85rem; color: var(--wo-gold-2); margin-top: .25rem;
}

/* ====== CATEGORIES — editorial poster grid ====== */
.wo-cats {
  padding: 0 var(--gutter) 8rem;
  max-width: 1700px; margin: 0 auto;
}
.wo-cats__rail {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--wo-rule);
  border-left: 1px solid var(--wo-rule);
}
.wo-cat-tile {
  position: relative; aspect-ratio: 4/5;
  overflow: hidden;
  border-right: 1px solid var(--wo-rule);
  border-bottom: 1px solid var(--wo-rule);
  background: var(--wo-emerald-mid);
}
.wo-cat-tile__media { position: absolute; inset: 0; }
.wo-cat-tile__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--wo-ease-slow); opacity: .85; }
.wo-cat-tile__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(7,23,19,.78) 100%);
}
.wo-cat-tile:hover .wo-cat-tile__media img { transform: scale(1.05); }
.wo-cat-tile__copy {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 2.5rem;
  z-index: 2;
}
.wo-cat-tile__num { font-size: 10px; letter-spacing: .35em; color: var(--wo-cream); }
.wo-cat-tile__copy h3 {
  margin: .5rem 0 .3rem; font-family: var(--wo-font-serif); font-weight: 300;
  font-size: 1.6rem; font-style: italic;
}
.wo-cat-tile__copy small { color: var(--wo-bone-2); font-size: .85rem; font-style: italic; }

/* ====== MAISONS (addresses, like Hermès) ====== */
.wo-maisons {
  padding: clamp(5rem, 10vw, 9rem) var(--gutter);
  background: var(--wo-emerald-deep);
  border-top: 1px solid var(--wo-rule);
  border-bottom: 1px solid var(--wo-rule);
}
.wo-maisons__inner { max-width: 1500px; margin: 0 auto; }
.wo-maisons__head { text-align: center; margin-bottom: 4rem; }
.wo-maisons__head h2 { font-style: italic; }
.wo-maisons__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--wo-rule);
}
.wo-maison {
  background: var(--wo-emerald);
  padding: 2.5rem 2rem;
  text-align: center;
}
.wo-maison--solo {
  max-width: 520px; margin: 0 auto;
  border: 1px solid var(--wo-rule);
  padding: 4rem 3rem;
}
.wo-maison--solo h4 { font-size: 2.4rem; margin-bottom: 1.2rem; }
.wo-maison--solo p { margin-bottom: 1rem; }
.wo-maison__hours {
  font-style: italic; color: var(--wo-cream);
  padding: 1.2rem 0; margin: 1.2rem auto !important;
  border-top: 1px solid var(--wo-rule);
  border-bottom: 1px solid var(--wo-rule);
  max-width: 280px;
}
.wo-maison h4 {
  font-family: var(--wo-font-serif); font-style: italic;
  font-size: 1.5rem; font-weight: 300; margin-bottom: .8rem;
}
.wo-maison p { color: var(--wo-bone-2); font-size: .9rem; line-height: 1.65; }
.wo-maison a {
  display: inline-block; margin-top: 1rem; font-size: 10px;
  letter-spacing: .3em; text-transform: uppercase; color: var(--wo-gold-2);
  border-bottom: 1px solid var(--wo-gold);
}

/* ====== SERVICES (like Hermès "Our world") ====== */
.wo-services {
  padding: clamp(5rem, 10vw, 9rem) var(--gutter);
  max-width: 1500px; margin: 0 auto;
}
.wo-services__head { text-align: center; margin-bottom: 5rem; }
.wo-services__head h2 { font-style: italic; }
.wo-services__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem;
}
.wo-service { text-align: center; }
.wo-service__num {
  font-family: var(--wo-font-serif); font-style: italic;
  font-size: 2rem; color: var(--wo-gold-2); margin-bottom: 1rem;
  font-weight: 300;
}
.wo-service h4 {
  font-family: var(--wo-font-serif); font-style: italic; font-weight: 300;
  font-size: 1.25rem; margin-bottom: .8rem;
}
.wo-service p { color: var(--wo-bone-2); font-size: .9rem; line-height: 1.7; }

/* ====== CONCIERGE STRIP (refined, no chat) ====== */
.wo-concierge {
  padding: clamp(5rem, 10vw, 9rem) var(--gutter);
  text-align: center;
  background: var(--wo-emerald-deep);
  border-top: 1px solid var(--wo-rule);
}
.wo-concierge__inner { max-width: 720px; margin: 0 auto; }
.wo-concierge h2 { font-style: italic; margin: 1.2rem 0 1.5rem; }
.wo-concierge p { color: var(--wo-bone-2); margin-bottom: 2rem; font-size: 1rem; }
.wo-concierge__contacts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  margin: 3rem auto 0; max-width: 600px;
  padding-top: 3rem; border-top: 1px solid var(--wo-rule);
}
.wo-concierge__contact { text-align: center; }
.wo-concierge__contact small {
  display: block; font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--wo-cream); margin-bottom: .8rem;
}
.wo-concierge__contact a {
  font-family: var(--wo-font-serif); font-size: 1.2rem; color: var(--wo-bone);
  font-weight: 300;
  border-bottom: 1px solid var(--wo-rule-strong);
  padding-bottom: .25rem;
}
.wo-concierge__contact a:hover { color: var(--wo-gold-2); border-color: var(--wo-gold); opacity: 1; }

/* ====== FOOTER ====== */
.wo-footer {
  background: var(--wo-emerald);
  padding: 5rem var(--gutter) 2rem;
  border-top: 1px solid var(--wo-rule);
}
.wo-footer__top {
  max-width: 1500px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 4rem;
}
.wo-footer__col h4 {
  font-family: var(--wo-font-sans); font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--wo-cream); font-weight: 400; margin-bottom: 1.4rem;
}
.wo-footer__col a {
  display: block; padding: .35rem 0; color: var(--wo-bone-2); font-size: .9rem;
  font-weight: 300;
}
.wo-footer__brand .wo-brand__name { font-size: 1.3rem; }
.wo-footer__tag { color: var(--wo-bone-2); margin: 1rem 0 1.5rem; max-width: 320px; font-size: .9rem; }
.wo-newsletter { margin-top: 1rem; }
.wo-newsletter label { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--wo-cream); display: block; margin-bottom: .8rem; }
.wo-newsletter__row {
  display: grid; grid-template-columns: 1fr auto;
  border-bottom: 1px solid var(--wo-rule-strong);
}
.wo-newsletter input {
  background: transparent; border: 0; padding: .8rem 0; color: var(--wo-bone); outline: none; font: inherit; font-weight: 300;
}
.wo-newsletter input::placeholder { color: var(--wo-cream); font-style: italic; }
.wo-newsletter button { padding: .8rem; color: var(--wo-bone); }
.wo-newsletter button svg { width: 18px; height: 18px; stroke-width: 1; }
.wo-newsletter small { display: block; margin-top: .5rem; font-size: 11px; color: var(--wo-gold-2); }

.wo-footer__base {
  max-width: 1500px; margin: 0 auto;
  display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  padding-top: 2rem; border-top: 1px solid var(--wo-rule);
  font-size: 11px; letter-spacing: .15em; color: var(--wo-cream);
}
.wo-footer__base a { color: inherit; margin: 0 .3rem; }

/* ====== SHOP / CATALOG ====== */
.wo-shop-hero {
  text-align: center; padding: 6rem var(--gutter) 3rem;
  max-width: 900px; margin: 0 auto;
  border-bottom: 1px solid var(--wo-rule);
}
.wo-shop-hero h1 { font-style: italic; margin: .5rem 0; font-weight: 300; }
.wo-shop-hero p { color: var(--wo-bone-2); margin-top: 1.5rem; }

.wo-shop-filters {
  display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center;
  padding: 2rem var(--gutter); border-bottom: 1px solid var(--wo-rule);
}
.wo-shop-filters a {
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--wo-cream);
  padding: .4rem 0; position: relative;
}
.wo-shop-filters a.is-active { color: var(--wo-bone); }
.wo-shop-filters a.is-active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--wo-gold);
}

.wo-shop { padding: 4rem var(--gutter) 8rem; max-width: 1700px; margin: 0 auto; }

/* ====== PDP ====== */
.wo-pdp {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 5rem); padding: 3rem var(--gutter);
  max-width: 1500px; margin: 0 auto;
}
.wo-pdp__main { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--wo-bone); }
.wo-pdp__main img { width: 100%; height: 100%; object-fit: cover; }
.wo-pdp__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; margin-top: 1rem; }
.wo-pdp__thumb { aspect-ratio: 4/5; overflow: hidden; border: 1px solid var(--wo-rule); padding: 0; background: none; }
.wo-pdp__thumb img { width: 100%; height: 100%; object-fit: cover; }
.wo-pdp__thumb:hover { border-color: var(--wo-gold); opacity: 1; }

.wo-pdp__info { padding-top: 2rem; }
.wo-pdp__cat { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--wo-cream); }
.wo-pdp__info h1 {
  margin: 1rem 0; font-size: clamp(2rem, 3.5vw, 3rem);
  font-style: italic; font-weight: 300;
}
.wo-pdp__lede { color: var(--wo-bone-2); font-size: 1.05rem; margin-bottom: 2rem; max-width: 50ch; }
.wo-pdp__price { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--wo-rule); }
.wo-pdp__wrk {
  padding: 1rem 0; margin: 0 0 2rem;
  font-size: 12px; letter-spacing: .05em; color: var(--wo-cream);
  font-style: italic;
}
.wo-pdp__wrk strong { color: var(--wo-gold-2); font-style: normal; font-weight: 400; }

.wo-field { margin-bottom: 1.5rem; }
.wo-field label {
  display: block; font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--wo-cream); margin-bottom: .6rem;
}
.wo-field--inline { display: flex; align-items: center; gap: .6rem; }
.wo-field input, .wo-field textarea, .wo-field select {
  width: 100%; padding: .9rem 1rem; background: transparent;
  border: 1px solid var(--wo-rule-strong); color: var(--wo-bone);
  font-family: var(--wo-font-sans); font-size: .95rem; font-weight: 300; outline: none;
  transition: border .4s var(--wo-ease);
}
.wo-field input:focus, .wo-field textarea:focus, .wo-field select:focus { border-color: var(--wo-gold); }
.wo-field textarea { resize: vertical; }

.wo-chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.wo-chips label { cursor: pointer; }
.wo-chips input { display: none; }
.wo-chips span {
  display: inline-block; padding: .7rem 1.1rem; border: 1px solid var(--wo-rule-strong);
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--wo-bone-2);
  transition: all .35s var(--wo-ease);
}
.wo-chips input:checked + span { background: var(--wo-bone); color: var(--wo-emerald); border-color: var(--wo-bone); }
.wo-chips--lg span { padding: .9rem 1.3rem; }

.wo-qty { display: inline-flex; align-items: center; border: 1px solid var(--wo-rule-strong); }
.wo-qty button { padding: .8rem 1rem; font-size: 1.1rem; color: var(--wo-bone); }
.wo-qty input { width: 50px; text-align: center; background: transparent; border: 0; color: var(--wo-bone); font-family: var(--wo-font-serif); font-size: 1.15rem; outline: none; font-weight: 300; }

.wo-pdp__actions { display: flex; flex-direction: column; gap: .8rem; margin: 1.5rem 0 1rem; }
.wo-pdp__stock { display: block; color: var(--wo-cream); font-size: 11px; letter-spacing: .15em; margin-top: .5rem; }

.wo-acc { border-top: 1px solid var(--wo-rule); padding: 1.4rem 0; }
.wo-acc summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between;
  font-family: var(--wo-font-serif); font-size: 1.05rem; font-weight: 300;
}
.wo-acc summary::-webkit-details-marker { display: none; }
.wo-acc summary::after { content: '+'; color: var(--wo-gold); font-size: 1.2rem; transition: transform .35s; font-weight: 300; }
.wo-acc[open] summary::after { transform: rotate(45deg); }
.wo-acc p { color: var(--wo-bone-2); padding-top: 1rem; font-size: .92rem; }

/* ====== CART / CHECKOUT / ACCOUNT ====== */
.wo-cart, .wo-checkout { padding: 3rem var(--gutter) 6rem; max-width: 1400px; margin: 0 auto; }
.wo-cart { display: grid; grid-template-columns: 1.6fr 1fr; gap: 3rem; }
.wo-cart__form { padding: 2rem 0; border-top: 1px solid var(--wo-rule); }
.wo-cart__summary { background: transparent; padding: 2rem; border: 1px solid var(--wo-rule); align-self: start; }

.wo-cart__table { width: 100%; border-collapse: collapse; }
.wo-cart__table th, .wo-cart__table td { padding: 1rem .8rem; text-align: left; border-bottom: 1px solid var(--wo-rule); vertical-align: top; }
.wo-cart__table th { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--wo-cream); font-weight: 400; }
.wo-cart__piece { display: flex; gap: 1rem; align-items: center; }
.wo-cart__piece img { width: 70px; height: 90px; object-fit: cover; }
.wo-cart__piece a { font-family: var(--wo-font-serif); font-size: 1.1rem; font-weight: 300; }
.wo-cart__piece small { display: block; color: var(--wo-cream); font-size: 11px; letter-spacing: .12em; }
.wo-cart__actions { display: flex; justify-content: space-between; align-items: center; margin-top: 1.5rem; gap: 1rem; }

.wo-row { display: flex; justify-content: space-between; padding: .8rem 0; border-bottom: 1px solid var(--wo-rule); font-size: .92rem; }
.wo-row--total { font-size: 1rem; padding-top: 1.2rem; border-bottom: 0; }
.wo-row--total strong, .wo-cart__summary strong { color: var(--wo-bone); font-family: var(--wo-font-serif); font-size: 1.3rem; font-weight: 300; }
.wo-row em { color: var(--wo-cream); font-style: italic; }
.wo-row--wrk em { color: var(--wo-gold-2); }
.wo-cart__summary h3 { margin-bottom: 1rem; font-family: var(--wo-font-serif); font-size: 1.4rem; font-weight: 300; font-style: italic; }

.wo-checkout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; }
.wo-checkout__form { padding: 2.5rem 0; border-top: 1px solid var(--wo-rule); }
.wo-checkout__form h3 { font-family: var(--wo-font-serif); font-style: italic; font-weight: 300; margin: 1.5rem 0 1rem; padding-bottom: .5rem; border-bottom: 1px solid var(--wo-rule); }
.wo-checkout__summary { padding: 2rem; border: 1px solid var(--wo-rule); align-self: start; }
.wo-summary-line { display: grid; grid-template-columns: 60px 1fr auto; gap: 1rem; align-items: center; padding: 1rem 0; border-bottom: 1px solid var(--wo-rule); }
.wo-summary-line img { width: 60px; height: 80px; object-fit: cover; }
.wo-summary-line small { display: block; color: var(--wo-cream); font-size: 11px; letter-spacing: .1em; }

.wo-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.wo-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }

.wo-alert {
  padding: 1rem 1.2rem; margin-bottom: 1.5rem;
  background: rgba(74,29,26,.25); border: 1px solid #6e3733; color: var(--wo-bone);
  font-size: .9rem;
}
.wo-alert--ok { background: rgba(205,125,102,.08); border-color: var(--wo-gold); color: var(--wo-gold-2); }

.wo-confirm, .wo-empty { text-align: center; padding: 6rem var(--gutter); }
.wo-empty h2, .wo-confirm h2 { margin-bottom: 1rem; font-style: italic; font-weight: 300; }
.wo-empty p, .wo-confirm p { color: var(--wo-bone-2); margin-bottom: 2rem; }

.wo-account { max-width: 1200px; margin: 0 auto; padding: 3rem var(--gutter) 6rem; }
.wo-account h3 { font-family: var(--wo-font-serif); font-style: italic; font-weight: 300; margin-bottom: 1.5rem; font-size: 1.5rem; }
.wo-tag {
  display: inline-block; padding: .25rem .7rem; background: transparent;
  border: 1px solid var(--wo-rule-strong); color: var(--wo-bone-2);
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
}

/* ====== ACCOUNT DASHBOARD (luxurious) ====== */
.wo-account-hero {
  padding: 6rem var(--gutter) 4rem;
  text-align: center;
  background: var(--wo-emerald-deep);
  border-bottom: 1px solid var(--wo-rule);
}
.wo-account-hero__inner { max-width: 760px; margin: 0 auto; }
.wo-account-hero__avatar {
  width: 86px; height: 86px; border-radius: 50%;
  margin: 0 auto 2rem;
  display: grid; place-items: center;
  background: var(--wo-grad-gold);
  color: var(--wo-emerald-deep);
  font-family: var(--wo-font-serif);
  font-weight: 500; font-size: 1.8rem;
  letter-spacing: .05em;
  box-shadow: 0 0 0 1px rgba(205,125,102,.3), 0 0 0 8px rgba(205,125,102,.06);
}
.wo-account-hero h1 {
  font-style: italic; font-weight: 300;
  margin: 1rem 0;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}
.wo-account-hero__sub { color: var(--wo-bone-2); font-size: 1.05rem; margin-bottom: 2.5rem; }
.wo-account-hero__meta {
  display: inline-flex; gap: 0; flex-wrap: wrap; justify-content: center;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--wo-rule);
  border-bottom: 1px solid var(--wo-rule);
}
.wo-account-hero__meta span {
  padding: 0 2rem;
  border-right: 1px solid var(--wo-rule);
  text-align: center;
}
.wo-account-hero__meta span:last-child { border-right: 0; }
.wo-account-hero__meta small {
  display: block;
  font-size: 9.5px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--wo-cream); margin-bottom: .4rem;
}
.wo-account-hero__meta strong {
  display: block; font-family: var(--wo-font-serif); font-weight: 400; font-style: italic;
  color: var(--wo-gold-2); font-size: 1.2rem;
}

.wo-account-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: 1200px; margin: 0 auto; gap: 1px;
  background: var(--wo-rule);
  border-bottom: 1px solid var(--wo-rule);
}
.wo-account-stat {
  background: var(--wo-emerald);
  padding: 2.5rem 2rem;
  text-align: center;
}
.wo-account-stat small {
  display: block;
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--wo-cream); margin-bottom: .8rem;
}
.wo-account-stat strong {
  display: block;
  font-family: var(--wo-font-serif); font-weight: 300;
  font-size: clamp(2rem, 4vw, 2.8rem); color: var(--wo-bone);
  line-height: 1;
}
.wo-account-stat span {
  display: block; margin-top: .5rem;
  font-size: 11px; letter-spacing: .15em; color: var(--wo-cream);
  font-style: italic;
}

.wo-account-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 240px 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding: clamp(3rem, 5vw, 4rem) var(--gutter) 6rem;
}

.wo-account-side {
  display: flex; flex-direction: column; gap: .1rem;
  position: sticky; top: calc(var(--header-h) + 1rem);
  align-self: start;
}
.wo-account-side h4 {
  font-family: var(--wo-font-sans); font-size: 10px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--wo-cream); font-weight: 400;
  margin: 1.6rem 0 .6rem; padding-bottom: .4rem;
  border-bottom: 1px solid var(--wo-rule);
}
.wo-account-side h4:first-child { margin-top: 0; }
.wo-account-side a {
  display: block; padding: .65rem 0;
  font-family: var(--wo-font-serif); font-weight: 300;
  font-size: 1.05rem; color: var(--wo-bone);
  border-left: 1px solid transparent;
  padding-left: 0;
  transition: color .4s var(--wo-ease), padding-left .4s var(--wo-ease), border-color .4s var(--wo-ease);
}
.wo-account-side a:hover {
  color: var(--wo-gold-2);
  padding-left: .9rem;
  border-left-color: var(--wo-gold);
}
.wo-account-side a.is-active {
  color: var(--wo-gold-2);
  padding-left: .9rem;
  border-left-color: var(--wo-gold);
}
.wo-account-side__logout {
  color: var(--wo-cream) !important;
  font-style: italic;
}

.wo-account-main { min-width: 0; display: flex; flex-direction: column; gap: 2.5rem; }
.wo-account-panel {
  background: var(--wo-emerald-mid);
  border: 1px solid var(--wo-rule);
  padding: 2.5rem;
}
.wo-account-panel--quiet {
  background: transparent;
  padding: 2rem 2.5rem;
}
.wo-account-panel header { margin-bottom: 2rem; }
.wo-account-panel header h2 { margin-top: .5rem; font-size: clamp(1.4rem, 2.4vw, 1.8rem); }

.wo-account-empty {
  text-align: center; padding: 2.5rem 0;
}
.wo-account-orders {
  display: grid; gap: 1.4rem;
}
.wo-account-order {
  display: grid; grid-template-columns: 1fr;
  gap: 1.2rem;
  padding: 1.4rem 1.6rem;
  background: var(--wo-emerald);
  border: 1px solid var(--wo-rule);
  transition: border-color .35s var(--wo-ease);
}
.wo-account-order:hover { border-color: rgba(205,125,102,.25); }
.wo-account-order__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.wo-account-order__no { font-family: var(--wo-font-serif); font-size: 1.15rem; color: var(--wo-bone); font-weight: 400; }
.wo-account-order__head small { color: var(--wo-cream); font-size: 11px; letter-spacing: .12em; }
.wo-account-order__status {
  font-size: 9.5px; letter-spacing: .25em; text-transform: uppercase;
  padding: .25rem .7rem;
  border: 1px solid var(--wo-rule-strong);
  color: var(--wo-bone-2);
}
.wo-account-order__status--placed,
.wo-account-order__status--processing  { color: #d8a05c; border-color: rgba(216,160,92,.35); }
.wo-account-order__status--crafting    { color: var(--wo-gold-2); border-color: var(--wo-gold); }
.wo-account-order__status--shipped     { color: #8fc3a4; border-color: rgba(143,195,164,.35); }
.wo-account-order__status--delivered   { color: #8fc3a4; background: rgba(143,195,164,.08); border-color: #8fc3a4; }
.wo-account-order__status--cancelled   { color: #d24f4f; border-color: rgba(210,79,79,.35); }
.wo-account-order__foot {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 1rem; border-top: 1px solid var(--wo-rule);
}
.wo-account-order__foot span:first-child {
  font-family: var(--wo-font-serif); font-size: 1.3rem; color: var(--wo-gold-2);
}
.wo-account-order__foot small {
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: var(--wo-cream);
}

.wo-account-table {
  width: 100%; border-collapse: collapse;
}
.wo-account-table th, .wo-account-table td {
  padding: 1rem 0;
  border-bottom: 1px solid var(--wo-rule);
  text-align: left;
  vertical-align: top;
}
.wo-account-table th {
  font-family: var(--wo-font-sans); font-size: 10px; letter-spacing: .25em;
  text-transform: uppercase; color: var(--wo-cream); font-weight: 400;
  width: 36%;
}
.wo-account-table td {
  color: var(--wo-bone); font-family: var(--wo-font-serif); font-size: 1.05rem;
}

.wo-vip-pill {
  display: inline-block;
  background: var(--wo-grad-gold); color: var(--wo-emerald-deep);
  padding: .25rem .9rem;
  font-family: var(--wo-font-sans); font-size: 10px; letter-spacing: .3em; text-transform: uppercase; font-weight: 500;
}

@media (max-width: 900px) {
  .wo-account-grid { grid-template-columns: 1fr; }
  .wo-account-side { position: static; flex-direction: row; flex-wrap: wrap; gap: .5rem 1.5rem; }
  .wo-account-side h4 { width: 100%; margin-top: 1.2rem; }
  .wo-account-side a { padding: .35rem 0; font-size: .95rem; }
  .wo-account-side a:hover, .wo-account-side a.is-active { padding-left: 0; border-left: 0; }
  .wo-account-stats { grid-template-columns: 1fr; }
  .wo-account-hero__meta { flex-direction: column; }
  .wo-account-hero__meta span { padding: 1rem 0; border-right: 0; border-bottom: 1px solid var(--wo-rule); }
  .wo-account-hero__meta span:last-child { border-bottom: 0; }
}

/* ====== AUTH ====== */
.wo-auth { display: grid; place-items: center; padding: 4rem var(--gutter) 6rem; min-height: 60vh; }
.wo-auth__card {
  max-width: 460px; width: 100%;
  background: transparent; border: 1px solid var(--wo-rule-strong);
  padding: 3rem;
}
.wo-auth__card h1 { font-size: 1.8rem; margin: .5rem 0 1rem; font-style: italic; font-weight: 300; }
.wo-auth__card p { color: var(--wo-bone-2); margin-bottom: 1.5rem; font-size: .95rem; }
.wo-auth__alt { margin-top: 1.5rem; text-align: center; font-size: 11px; letter-spacing: .15em; color: var(--wo-cream); }
.wo-auth__alt a { color: var(--wo-gold-2); border-bottom: 1px solid var(--wo-rule-strong); padding-bottom: 1px; }

/* ====== ABOUT / JOURNAL / CONTACT ====== */
.wo-about { max-width: 900px; margin: 0 auto; padding: 4rem var(--gutter) 6rem; display: grid; gap: 5rem; }
.wo-about__chap h2 { margin: .5rem 0 1.2rem; font-style: italic; max-width: 22ch; }
.wo-about__chap p { color: var(--wo-bone-2); max-width: 60ch; font-size: 1rem; }

.wo-journal { max-width: 1400px; margin: 0 auto; padding: 4rem var(--gutter) 6rem; display: grid; gap: 4rem; }
.wo-journal__entry { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.wo-journal__entry:nth-child(even) .wo-journal__media { order: 2; }
.wo-journal__media { aspect-ratio: 4/3; background: var(--wo-emerald-mid); overflow: hidden; }
.wo-journal__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--wo-ease-slow); }
.wo-journal__entry:hover .wo-journal__media img { transform: scale(1.04); }
.wo-journal__copy small { color: var(--wo-cream); font-size: 11px; letter-spacing: .3em; text-transform: uppercase; }
.wo-journal__copy h2 { margin: .8rem 0 1.2rem; font-style: italic; }
.wo-journal__copy p { color: var(--wo-bone-2); margin-bottom: 1.5rem; }

.wo-contact { max-width: 1100px; margin: 0 auto; padding: 4rem var(--gutter) 6rem; display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; }
.wo-contact__info p { margin-bottom: 1rem; color: var(--wo-bone-2); font-size: .92rem; }
.wo-contact__info hr { border: 0; border-top: 1px solid var(--wo-rule); margin: 1.5rem 0; }
.wo-contact__info h3 { margin-bottom: 1rem; font-family: var(--wo-font-serif); font-style: italic; font-weight: 300; }
.wo-contact__form { padding: 0; }

/* ====== REVEAL ANIMATIONS — fade only ====== */
[data-reveal] { opacity: 0; transition: opacity 1.4s var(--wo-ease); }
[data-reveal].is-in { opacity: 1; }
.reveal { opacity: 0; animation: woReveal 1.6s var(--wo-ease) forwards; }
.reveal:nth-child(2) { animation-delay: .2s; }
.reveal:nth-child(3) { animation-delay: .4s; }
.reveal:nth-child(4) { animation-delay: .6s; }
.reveal:nth-child(5) { animation-delay: .8s; }
@keyframes woReveal { to { opacity: 1; } }

/* ====== RESPONSIVE ====== */
html, body { max-width: 100vw; overflow-x: hidden; }

/* ====== 404 PAGE ====== */
.wo-404 {
  min-height: calc(100vh - var(--header-h));
  display: grid; place-items: center;
  padding: 6rem var(--gutter);
  text-align: center;
}
.wo-404__inner { max-width: 640px; }
.wo-404__num {
  font-family: var(--wo-font-serif); font-weight: 300; font-style: italic;
  font-size: clamp(5rem, 14vw, 9rem); line-height: 1;
  color: var(--wo-gold-2); opacity: .9;
  margin-bottom: 1.5rem;
}
.wo-rule--gold { background: var(--wo-gold); margin: 1.4rem auto; }
.wo-404 h1 { font-style: italic; margin: 1.2rem 0 1rem; font-size: clamp(1.8rem, 4vw, 3rem); }
.wo-404 p { color: var(--wo-bone-2); max-width: 50ch; margin: 0 auto 2.5rem; }
.wo-404__cta {
  display: flex; flex-direction: column; gap: 1.2rem;
  align-items: center; margin-bottom: 4rem;
}
.wo-404__map small {
  display: block; font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--wo-cream); margin-bottom: 1.2rem;
}
.wo-404__links {
  font-size: .92rem; color: var(--wo-bone-2);
}
.wo-404__links a { color: var(--wo-gold-2); padding: 0 .3rem; }

/* ====== CURRENCY SWITCHER ====== */
.wo-currency { position: relative; }
.wo-currency__toggle {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .6rem .85rem;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--wo-bone); font-weight: 400;
  background: none; border: 1px solid transparent;
  transition: border-color .35s var(--wo-ease), color .35s var(--wo-ease);
}
.wo-currency__toggle:hover { border-color: rgba(205,125,102,.3); color: var(--wo-gold-2); }
.wo-currency__toggle svg { width: 10px; height: 10px; opacity: .7; transition: transform .3s; }
.wo-currency.is-open .wo-currency__toggle svg { transform: rotate(180deg); }
.wo-currency__menu {
  position: absolute; top: calc(100% + .4rem); right: 0;
  min-width: 220px;
  background: var(--wo-emerald-deep);
  border: 1px solid var(--wo-rule-strong);
  padding: .4rem 0;
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .35s var(--wo-ease), transform .35s var(--wo-ease);
  z-index: 60;
}
.wo-currency.is-open .wo-currency__menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.wo-currency__menu button {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: .8rem 1rem; text-align: left;
  background: none; border: 0; color: var(--wo-bone);
  font-size: 11px; letter-spacing: .15em; cursor: pointer;
  transition: background .25s;
  font-family: inherit;
}
.wo-currency__menu button:hover:not(:disabled) { background: rgba(205,125,102,.08); color: var(--wo-gold-2); }
.wo-currency__menu button.is-active { color: var(--wo-gold-2); }
.wo-currency__menu button.is-active::after { content: '✓'; font-size: .9em; }
.wo-currency__menu button:disabled { color: var(--wo-cream-soft); cursor: not-allowed; }
.wo-currency__menu button:disabled small { display: inline-block; font-size: 9px; letter-spacing: .25em; opacity: .7; text-transform: uppercase; }

@media (max-width: 1280px) {
  .wo-nav__link[href*="about.php"]::first-letter { font-size: inherit; }
}

@media (max-width: 1100px) {
  .wo-nav { display: none; }
  .wo-nav-toggle { display: flex; }
  .wo-header__inner { grid-template-columns: auto 1fr auto; }
  .wo-cats__rail { grid-template-columns: repeat(2, 1fr); }
  .wo-product-grid { grid-template-columns: repeat(3, 1fr); }
  .wo-signature__grid { grid-template-columns: 1fr; }
  .wo-sig-card { border-right: 0; border-bottom: 1px solid var(--wo-rule); }
  .wo-sig-card:last-child { border-bottom: 0; }
  .wo-editorial, .wo-pdp, .wo-cart, .wo-checkout, .wo-contact, .wo-journal__entry { grid-template-columns: 1fr; gap: 2.5rem; }
  .wo-editorial--reverse .wo-editorial__media { order: 0; }
  .wo-journal__entry:nth-child(even) .wo-journal__media { order: 0; }
  .wo-footer__top { grid-template-columns: 1fr 1fr; }
  .wo-maisons__grid { grid-template-columns: 1fr 1fr; }
  .wo-services__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1100px) {
  .wo-icon-btn--account { display: none; } /* account moves into drawer on mobile/tablet */
}

@media (max-width: 640px) {
  .wo-header__inner { padding: 1.2rem var(--gutter); }
  .wo-brand__name { font-size: 1.05rem; letter-spacing: .25em; padding-left: .25em; }
  .wo-brand__name em.wo-brand__word { letter-spacing: .25em; }
  .wo-brand__crest { width: 1.5em; height: 1.5em; }
  .wo-brand__sub { font-size: 7.5px; letter-spacing: .45em; }
  .wo-loader__name { font-size: 1rem; letter-spacing: .22em; padding-left: 0; }
  .wo-loader__name .wo-brand__crest--lg { width: 1.7em; height: 1.7em; }
  .wo-drawer-nav__brand .wo-brand__name { font-size: 1.05rem; letter-spacing: .22em; }
  .wo-product-grid { grid-template-columns: repeat(2, 1fr); }
  .wo-cats__rail { grid-template-columns: 1fr; }
  .wo-grid-2, .wo-grid-3 { grid-template-columns: 1fr; }
  .wo-footer__top { grid-template-columns: 1fr; }
  .wo-maisons__grid, .wo-services__grid, .wo-concierge__contacts { grid-template-columns: 1fr; }
  .wo-signature__head, .wo-collection__head { grid-template-columns: 1fr; }
  .wo-hero__cta { flex-direction: column; gap: 1.2rem; }
  .wo-hero__title { font-size: clamp(2.4rem, 12vw, 4rem); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* === WRK Token privilege — luxe checkbox === */
.wo-wrk-privilege {
  margin: 1.4rem 0 .8rem;
  padding: 1.25rem 1.4rem;
  border: 1px solid rgba(205,125,102,.32);
  background: linear-gradient(135deg,
    rgba(205,125,102,.05) 0%,
    rgba(13,30,28,.55) 60%,
    rgba(205,125,102,.04) 100%);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.wo-wrk-privilege::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(205,125,102,.6), transparent);
}
.wo-wrk-check {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  cursor: pointer;
  user-select: none;
  margin: 0;
}
.wo-wrk-check input[type="checkbox"] {
  position: absolute;
  width: 1px; height: 1px;
  opacity: 0; pointer-events: none;
}
.wo-wrk-check__box {
  flex: 0 0 22px;
  width: 22px; height: 22px;
  margin-top: 2px;
  border: 1px solid rgba(205,125,102,.55);
  background: rgba(13,30,28,.4);
  display: inline-flex;
  align-items: center; justify-content: center;
  color: transparent;
  transition: all .25s ease;
  border-radius: 1px;
}
.wo-wrk-check__box svg {
  width: 14px; height: 14px;
  opacity: 0;
  transform: scale(.6);
  transition: all .25s cubic-bezier(.2,.8,.2,1);
}
.wo-wrk-check input[type="checkbox"]:checked + .wo-wrk-check__box {
  background: linear-gradient(135deg, #cd7d66 0%, #8b4234 100%);
  border-color: #cd7d66;
  color: #032157;
  box-shadow: 0 0 0 3px rgba(205,125,102,.18), 0 2px 8px rgba(205,125,102,.25);
}
.wo-wrk-check input[type="checkbox"]:checked + .wo-wrk-check__box svg {
  opacity: 1;
  transform: scale(1);
}
.wo-wrk-check input[type="checkbox"]:focus-visible + .wo-wrk-check__box {
  outline: 1px solid rgba(205,125,102,.85);
  outline-offset: 3px;
}
.wo-wrk-check__body { display: flex; flex-direction: column; gap: .25rem; }
.wo-wrk-check__title {
  font-family: var(--wo-font-serif, 'Cormorant Garamond', serif);
  font-size: 1.05rem;
  font-style: italic;
  letter-spacing: .02em;
  color: var(--wo-gold-2, #cd7d66);
  line-height: 1.2;
}
.wo-wrk-check__sub {
  font-family: var(--wo-font-sans, 'Inter', sans-serif);
  font-size: .8rem;
  letter-spacing: .04em;
  color: var(--wo-cream, #cdbfa3);
  line-height: 1.45;
  font-style: italic;
  opacity: .85;
}
.wo-wrk-check:hover .wo-wrk-check__box {
  border-color: #cd7d66;
  background: rgba(205,125,102,.08);
}

/* === WRK Token cashback panel (revealed only when WRK payment selected) === */
.wo-wrk-panel {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.wo-wrk-panel__crest {
  flex: 0 0 38px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #e09780 0%, #8b4234 100%);
  color: #032157;
  display: inline-flex;
  align-items: center; justify-content: center;
  box-shadow: 0 0 0 4px rgba(205,125,102,.12), 0 2px 10px rgba(205,125,102,.22);
}
.wo-wrk-panel__crest svg { width: 18px; height: 18px; }
.wo-wrk-panel__body { display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.wo-wrk-panel__title {
  font-family: var(--wo-font-serif, 'Cormorant Garamond', serif);
  font-size: 1.15rem;
  font-style: italic;
  letter-spacing: .03em;
  color: var(--wo-gold-2, #cd7d66);
  line-height: 1.15;
}
.wo-wrk-panel__sub {
  font-family: var(--wo-font-sans, 'Inter', sans-serif);
  font-size: .82rem;
  letter-spacing: .035em;
  color: var(--wo-cream, #cdbfa3);
  line-height: 1.55;
  font-style: italic;
  opacity: .88;
}
.wo-field--wrk-wallet { margin-top: .9rem; }
.wo-field--wrk-wallet label {
  font-family: var(--wo-font-sans, 'Inter', sans-serif);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--wo-cream, #cdbfa3);
  opacity: .9;
}
.wo-field--wrk-wallet input {
  margin-top: .35rem;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: .85rem;
  letter-spacing: .04em;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(205,125,102,.32);
  color: var(--wo-bone-2, #e8dec8);
  padding: .65rem .85rem;
  border-radius: 1px;
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.wo-field--wrk-wallet input:focus {
  outline: none;
  border-color: #cd7d66;
  box-shadow: 0 0 0 3px rgba(205,125,102,.15);
}
