/* ============================================================
   MAISON AURELLE — Design System
   bone / ink / taupe / antique gold · Cormorant Garamond + Inter
   ============================================================ */

:root {
  --bone: #f4efe6;
  --bone-2: #ece5d7;
  --bone-3: #e3dac8;
  --ink: #1a1512;
  --ink-2: #2a231d;
  --taupe: #8b7d6a;
  --taupe-2: #b3a790;
  --gold: #a9854c;
  --gold-2: #c3a468;
  --line: rgba(26, 21, 18, 0.16);
  --line-soft: rgba(26, 21, 18, 0.08);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
  --nav-h: 84px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { height: 100%; }

body {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }

/* ---------- typographic utilities ---------- */
.display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.01em;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--taupe);
}
.eyebrow .dot { color: var(--gold); }
.serif-i { font-family: var(--serif); font-style: italic; }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); transition-delay: var(--d, 0ms); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  * { animation-duration: 0.001s !important; }
  html { scroll-behavior: auto; }
}

/* ---------- page transition veil ---------- */
.veil {
  position: fixed; inset: 0; z-index: 2000;
  background: var(--ink);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.65s var(--ease-io);
  pointer-events: none;
}
.veil.on { transform: scaleY(1); transform-origin: bottom; }
.veil .veil-word {
  position: absolute; inset: 0; display: grid; place-items: center;
  color: var(--bone); font-family: var(--serif); font-style: italic; font-size: 26px;
  opacity: 0; transition: opacity 0.3s ease 0.25s;
}
.veil.on .veil-word { opacity: 1; }
body.entering { opacity: 0; }
body.entering.ready { opacity: 1; transition: opacity 0.7s ease; }

/* ---------- custom cursor ---------- */
.cursor-dot, .cursor-ring { display: none; }
@media (pointer: fine) {
  .cursor-dot {
    display: block; position: fixed; z-index: 3000; pointer-events: none;
    width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
    transform: translate(-50%, -50%);
    transition: width .25s var(--ease), height .25s var(--ease), opacity .25s;
  }
  .cursor-ring {
    display: block; position: fixed; z-index: 2999; pointer-events: none;
    width: 34px; height: 34px; border-radius: 50%;
    border: 1px solid rgba(169, 133, 76, 0.55);
    transform: translate(-50%, -50%);
    transition: width .3s var(--ease), height .3s var(--ease), border-color .3s, opacity .3s;
  }
  body.cursor-hover .cursor-ring { width: 56px; height: 56px; border-color: rgba(169, 133, 76, 0.9); }
  body.cursor-hover .cursor-dot { width: 4px; height: 4px; }
  body.cursor-down .cursor-ring { width: 24px; height: 24px; }
}

/* ---------- header ---------- */
.site-head {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 clamp(20px, 4.5vw, 64px);
  transition: background 0.5s ease, box-shadow 0.5s ease, height 0.4s var(--ease);
}
.site-head.scrolled {
  background: rgba(244, 239, 230, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line-soft);
  height: 68px;
}
.head-grid {
  width: 100%; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
}
.nav-left { display: flex; gap: clamp(18px, 2.4vw, 38px); }
.nav-link {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 500;
  color: var(--ink-2); position: relative; padding: 6px 0;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); transform-origin: left; }
.nav-link.active { color: var(--gold); }

.wordmark { text-align: center; }
.wordmark a { display: inline-block; }
.wordmark .wm-name {
  font-family: var(--serif); font-size: 26px; letter-spacing: 0.14em; font-weight: 500;
  text-transform: uppercase;
}
.wordmark .wm-sub {
  display: block; font-family: var(--sans); font-size: 8.5px; letter-spacing: 0.5em;
  text-transform: uppercase; color: var(--taupe); margin-top: 2px;
}

.nav-right { display: flex; justify-content: flex-end; align-items: center; gap: clamp(14px, 1.8vw, 26px); }
.icon-btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  transition: background 0.3s ease;
}
.icon-btn:hover { background: rgba(26, 21, 18, 0.06); }
.icon-btn svg { width: 19px; height: 19px; stroke: var(--ink); fill: none; stroke-width: 1.4; }
.icon-btn .badge {
  position: absolute; top: 1px; right: -1px;
  min-width: 16px; height: 16px; padding: 0 4px;
  background: var(--gold); color: var(--bone);
  font-size: 9.5px; font-weight: 600; letter-spacing: 0.03em;
  border-radius: 999px; display: grid; place-items: center;
  transform: scale(0); transition: transform 0.35s var(--ease);
}
.icon-btn .badge.on { transform: scale(1); }
.badge.pop { animation: badgePop 0.45s var(--ease); }
@keyframes badgePop { 40% { transform: scale(1.5); } }

.burger { display: none; }

/* header over dark hero imagery */
.site-head.over-dark:not(.scrolled) .nav-link { color: rgba(244, 239, 230, 0.85); }
.site-head.over-dark:not(.scrolled) .nav-link::after { background: var(--gold-2); }
.site-head.over-dark:not(.scrolled) .wordmark .wm-name { color: var(--bone); }
.site-head.over-dark:not(.scrolled) .wordmark .wm-sub { color: var(--gold-2); }
.site-head.over-dark:not(.scrolled) .icon-btn svg { stroke: var(--bone); }
.site-head.over-dark:not(.scrolled) .icon-btn:hover { background: rgba(244, 239, 230, 0.12); }

/* ---------- mobile menu ---------- */
.mmenu {
  position: fixed; inset: 0; z-index: 1500; background: var(--ink); color: var(--bone);
  display: flex; flex-direction: column; justify-content: center;
  padding: 90px clamp(28px, 8vw, 80px) 48px;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.7s var(--ease-io);
  visibility: hidden;
}
.mmenu.open { clip-path: inset(0 0 0% 0); visibility: visible; }
.mmenu a.mlink {
  font-family: var(--serif); font-size: clamp(38px, 9vw, 64px); line-height: 1.18;
  color: var(--bone); display: flex; align-items: baseline; gap: 18px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.12);
  padding: 10px 0;
  transform: translateY(30px); opacity: 0;
  transition: transform 0.6s var(--ease), opacity 0.6s ease, color 0.3s;
}
.mmenu.open a.mlink { transform: none; opacity: 1; }
.mmenu a.mlink:hover { color: var(--gold-2); }
.mmenu a.mlink .idx { font-family: var(--sans); font-size: 11px; letter-spacing: 0.3em; color: var(--gold); }
.mmenu .mfoot { margin-top: 42px; display: flex; justify-content: space-between; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(244,239,230,0.55); }
.mmenu-close { position: absolute; top: 26px; right: 26px; }
.mmenu-close svg { stroke: var(--bone); }

/* ---------- buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: 12px; padding: 17px 42px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase;
  border: 1px solid var(--ink); color: var(--ink);
  overflow: hidden; transition: color 0.45s var(--ease);
  background: transparent;
}
.btn::before {
  content: ""; position: absolute; inset: 0; background: var(--ink);
  transform: translateY(101%); transition: transform 0.5s var(--ease-io);
  z-index: 0;
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { color: var(--bone); }
.btn > * { position: relative; z-index: 1; }
.btn.solid { background: var(--ink); color: var(--bone); }
.btn.solid::before { background: var(--gold); }
.btn.solid:hover { color: var(--ink); }
.btn.gold { border-color: var(--gold); color: var(--gold); }
.btn.gold::before { background: var(--gold); }
.btn.gold:hover { color: var(--bone); }
.btn.ghost-light { border-color: rgba(244,239,230,0.6); color: var(--bone); }
.btn.ghost-light::before { background: var(--bone); }
.btn.ghost-light:hover { color: var(--ink); }
.btn[disabled] { opacity: 0.45; pointer-events: none; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 500;
  color: var(--ink);
}
.link-arrow .arr { transition: transform 0.4s var(--ease); }
.link-arrow:hover .arr { transform: translateX(8px); }
.link-arrow.light { color: var(--bone); }

/* ---------- hero (home) ---------- */
.hero { position: relative; height: 100svh; min-height: 640px; overflow: hidden; background: var(--ink); }
.hero-media { position: absolute; inset: -12% 0; will-change: transform; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,21,18,0.35) 0%, rgba(26,21,18,0.05) 40%, rgba(26,21,18,0.55) 100%);
}
.hero-inner {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 clamp(20px, 4.5vw, 64px) clamp(48px, 7vh, 90px);
  color: var(--bone);
}
.hero-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(58px, 11.5vw, 168px);
  line-height: 1.04; letter-spacing: 0.01em; text-transform: uppercase;
}
.hero-title .row { display: block; overflow: hidden; padding-top: 0.06em; }
.hero-title .row > span { display: inline-block; transform: translateY(112%); animation: riseUp 1.2s var(--ease) forwards; }
.hero-title .row:nth-child(2) > span { animation-delay: 0.12s; }
.hero-title .row:nth-child(3) > span { animation-delay: 0.24s; }
.hero-title em { font-style: italic; color: var(--gold-2); text-transform: none; letter-spacing: 0; }
@keyframes riseUp { to { transform: translateY(0); } }
.hero-meta {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap;
  margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(244, 239, 230, 0.25);
  padding-right: clamp(48px, 6vw, 90px);
}
.hero-meta .lede { max-width: 380px; font-size: 13.5px; line-height: 1.8; color: rgba(244, 239, 230, 0.85); }
.hero-eyebrow { color: var(--gold-2); margin-bottom: 26px; }
.scroll-cue {
  position: absolute; right: clamp(20px, 4.5vw, 64px); bottom: clamp(48px, 7vh, 90px);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(244,239,230,0.7); font-size: 9.5px; letter-spacing: 0.34em; text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-cue .stem { width: 1px; height: 56px; background: rgba(244,239,230,0.4); overflow: hidden; position: relative; }
.scroll-cue .stem::after { content: ""; position: absolute; left: 0; top: -100%; width: 100%; height: 100%; background: var(--gold-2); animation: stemDrop 2.2s var(--ease-io) infinite; }
@keyframes stemDrop { 60%, 100% { top: 100%; } }

/* ---------- marquee ---------- */
.marquee {
  overflow: hidden; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  padding: 20px 0; background: var(--bone);
}
.marquee.dark { background: var(--ink); border-color: rgba(244,239,230,0.1); }
.marquee-track { display: flex; width: max-content; animation: marquee 36s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--serif); font-size: clamp(20px, 2.6vw, 32px); font-style: italic;
  white-space: nowrap; padding: 0 34px; color: var(--ink-2);
}
.marquee.dark .marquee-track span { color: rgba(244,239,230,0.85); }
.marquee-track span b { font-style: normal; font-weight: 400; color: var(--gold); padding-left: 34px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- layout shells ---------- */
.wrap { padding-left: clamp(20px, 4.5vw, 64px); padding-right: clamp(20px, 4.5vw, 64px); max-width: 1560px; margin: 0 auto; }
.section { padding: clamp(72px, 10vw, 150px) 0; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: clamp(38px, 5vw, 72px); }
.section-head h2 { font-size: clamp(38px, 5.4vw, 74px); }
.section-head .eyebrow { margin-bottom: 14px; display: block; }
.rule { height: 1px; background: var(--line); }

/* ---------- split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 90px); align-items: center; }
.split .media { position: relative; overflow: hidden; }
.split .media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); transition: transform 1.6s var(--ease); }
.split .media:hover img { transform: scale(1.03); }
.split .media.frame { aspect-ratio: 4 / 5; }
.split .txt .display { font-size: clamp(34px, 4vw, 56px); margin: 18px 0 22px; }
.split .txt p { color: var(--ink-2); max-width: 46ch; margin-bottom: 18px; }
.split .txt .link-arrow { margin-top: 14px; }

/* ---------- stats / counters ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { padding: clamp(28px, 4vw, 54px) clamp(16px, 2.5vw, 40px); border-right: 1px solid var(--line); text-align: center; }
.stat:last-child { border-right: 0; }
.stat .num { font-family: var(--serif); font-size: clamp(40px, 5vw, 72px); line-height: 1; color: var(--ink); }
.stat .num sup { font-size: 0.4em; color: var(--gold); }
.stat .lbl { margin-top: 10px; font-size: 10.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--taupe); }

/* ---------- product cards ---------- */
.pgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.4vw, 34px) clamp(14px, 1.8vw, 26px); }
.pgrid.cols3 { grid-template-columns: repeat(3, 1fr); }
.pcard { position: relative; display: block; }
.pcard .ph { position: relative; overflow: hidden; background: var(--bone-2); aspect-ratio: 4 / 5; }
.pcard .ph img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease), opacity 0.8s ease;
}
.pcard:hover .ph img { transform: scale(1.06); }
.pcard .ph .alt { position: absolute; inset: 0; opacity: 0; }
.pcard:hover .ph .alt { opacity: 1; }
.pcard .veil-cta {
  position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 2;
  display: flex; gap: 8px;
  transform: translateY(calc(100% + 16px)); transition: transform 0.55s var(--ease);
}
.pcard:hover .veil-cta { transform: none; }
.mini-btn {
  flex: 1; padding: 12px 8px; text-align: center;
  background: rgba(244, 239, 230, 0.94); backdrop-filter: blur(6px);
  font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}
.mini-btn:hover { background: var(--ink); color: var(--bone); }
.mini-btn.icon { flex: 0 0 44px; display: grid; place-items: center; }
.mini-btn.icon svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.mini-btn.icon.wished { color: var(--gold); }
.mini-btn.icon.wished svg { fill: var(--gold); stroke: var(--gold); }
.pcard .tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: 9px; letter-spacing: 0.26em; text-transform: uppercase; font-weight: 600;
  padding: 6px 10px; background: var(--bone); color: var(--ink);
}
.pcard .tag.gold { background: var(--gold); color: var(--bone); }
.pcard .meta { padding: 16px 2px 0; display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.pcard .nm { font-family: var(--serif); font-size: 21px; font-weight: 500; letter-spacing: 0.02em; }
.pcard .sub { font-size: 11px; color: var(--taupe); letter-spacing: 0.06em; margin-top: 3px; }
.pcard .pr { font-size: 13px; font-weight: 500; letter-spacing: 0.04em; white-space: nowrap; }
.pcard .swatches { display: flex; gap: 5px; margin-top: 9px; }
.sw { width: 12px; height: 12px; border-radius: 50%; border: 1px solid var(--line); }

/* ---------- page hero (interior pages) ---------- */
.page-hero { padding: calc(var(--nav-h) + clamp(40px, 7vw, 90px)) 0 clamp(30px, 4vw, 54px); }
.page-hero .eyebrow { display: block; margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(46px, 7.6vw, 108px); }
.page-hero .lede { max-width: 560px; margin-top: 20px; color: var(--ink-2); font-size: 15px; }

/* ---------- collection toolbar ---------- */
.toolbar {
  position: sticky; top: 68px; z-index: 500;
  background: rgba(244, 239, 230, 0.94); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  padding: 16px 0;
}
.toolbar-row { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.chip-group { display: flex; gap: 6px; flex-wrap: wrap; }
.chip {
  padding: 8px 15px; font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  border: 1px solid var(--line); border-radius: 999px; color: var(--ink-2);
  transition: all 0.3s var(--ease);
}
.chip:hover { border-color: var(--ink); }
.chip.on { background: var(--ink); border-color: var(--ink); color: var(--bone); }
.toolbar select, .toolbar input[type="search"] {
  background: transparent; border: 0; border-bottom: 1px solid var(--line);
  padding: 8px 4px; font-size: 12px; letter-spacing: 0.06em; outline: none;
}
.toolbar input[type="search"] { min-width: 160px; }
.toolbar select { cursor: pointer; }
.toolbar .count { margin-left: auto; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe); }
.filter-toggle { display: none; }
.price-filter { display: flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-2); }
.price-filter input[type="range"] { accent-color: var(--gold); width: 130px; }
.filter-drawer { display: contents; }

/* empty states */
.empty {
  padding: clamp(70px, 10vw, 130px) 20px; text-align: center;
  border: 1px dashed var(--line); margin: 40px 0;
}
.empty .display { font-size: clamp(30px, 4vw, 48px); margin-bottom: 14px; }
.empty p { color: var(--taupe); max-width: 40ch; margin: 0 auto 26px; }

/* ---------- product detail ---------- */
.pdp { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(26px, 4vw, 70px); padding-top: calc(var(--nav-h) + 20px); align-items: start; }
.crumbs { grid-column: 1 / -1; font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe); }
.crumbs a:hover { color: var(--gold); }
.crumbs .sep { margin: 0 10px; color: var(--taupe-2); }

.gallery { position: sticky; top: calc(var(--nav-h) + 10px); }
.gal-main { position: relative; overflow: hidden; background: var(--bone-2); aspect-ratio: 4/5; cursor: zoom-in; }
.gal-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease-out, opacity 0.4s ease; transform-origin: var(--zx, 50%) var(--zy, 50%); }
.gal-main.zoomed img { transform: scale(2.1); cursor: zoom-out; }
.gal-main .zoom-hint {
  position: absolute; right: 14px; bottom: 14px; z-index: 2;
  background: rgba(244,239,230,0.9); padding: 8px 12px;
  font-size: 9.5px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600;
  pointer-events: none; transition: opacity 0.3s;
}
.gal-main.zoomed .zoom-hint { opacity: 0; }
.gal-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.gal-thumbs button {
  width: 78px; aspect-ratio: 4/5; overflow: hidden; padding: 0;
  border: 1px solid transparent; opacity: 0.6; transition: all 0.3s;
  background: var(--bone-2);
}
.gal-thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.gal-thumbs button.on { border-color: var(--gold); opacity: 1; }
.gal-thumbs button:hover { opacity: 1; }

.pdp-info { padding-top: 6px; }
.pdp-info .cat { margin-bottom: 12px; display: block; }
.pdp-info h1 { font-size: clamp(40px, 4.6vw, 64px); line-height: 1; }
.pdp-info .line { font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--taupe); margin-top: 10px; }
.pdp-info .price { font-size: 19px; font-weight: 500; margin-top: 22px; letter-spacing: 0.04em; }
.pdp-info .price .tax { font-size: 10.5px; color: var(--taupe); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 400; margin-left: 10px; }
.pdp-info .desc { margin-top: 22px; color: var(--ink-2); max-width: 52ch; }
.opt-label { display: flex; justify-content: space-between; align-items: baseline; margin: 30px 0 12px; font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; }
.opt-label .val { color: var(--taupe); font-weight: 400; letter-spacing: 0.08em; text-transform: none; font-family: var(--serif); font-style: italic; font-size: 14px; }
.colorway-row { display: flex; gap: 10px; }
.cw {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line);
  position: relative; transition: transform 0.3s var(--ease);
}
.cw::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 1px solid transparent; transition: border-color 0.3s; }
.cw.on::after { border-color: var(--gold); }
.cw:hover { transform: scale(1.1); }
.size-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(58px, 1fr)); gap: 8px; }
.size {
  padding: 13px 0; text-align: center; border: 1px solid var(--line);
  font-size: 12.5px; letter-spacing: 0.08em; transition: all 0.25s var(--ease);
}
.size:hover { border-color: var(--ink); }
.size.on { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.size-grid.nudge { animation: nudge 0.5s ease; }
@keyframes nudge { 20%, 60% { transform: translateX(-7px); } 40%, 80% { transform: translateX(7px); } }
.pdp-actions { display: flex; gap: 12px; margin-top: 34px; }
.pdp-actions .btn { flex: 1; }
.wish-toggle {
  flex: 0 0 54px; border: 1px solid var(--line); display: grid; place-items: center;
  transition: all 0.3s var(--ease);
}
.wish-toggle svg { width: 19px; height: 19px; fill: none; stroke: var(--ink); stroke-width: 1.4; transition: all 0.3s; }
.wish-toggle:hover { border-color: var(--gold); }
.wish-toggle.wished { border-color: var(--gold); background: rgba(169,133,76,0.08); }
.wish-toggle.wished svg { fill: var(--gold); stroke: var(--gold); }
.accordion { margin-top: 40px; border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-head {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 2px; text-align: left;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600;
}
.acc-head .pm { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--gold); transition: transform 0.4s var(--ease); }
.acc-item.open .acc-head .pm { transform: rotate(45deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.55s var(--ease); }
.acc-body .inner { padding: 0 2px 24px; color: var(--ink-2); font-size: 14px; max-width: 60ch; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1800; background: rgba(20, 16, 13, 0.96);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden; transition: opacity 0.45s ease, visibility 0.45s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(88vw, 1100px); max-height: 82vh; object-fit: contain; box-shadow: 0 40px 90px rgba(0,0,0,0.5); }
.lightbox .lb-count { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); color: rgba(244,239,230,0.7); font-size: 11px; letter-spacing: 0.3em; }
.lb-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; display: grid; place-items: center; color: var(--bone); }
.lb-btn svg { width: 26px; height: 26px; stroke: var(--bone); fill: none; stroke-width: 1.2; }
.lb-btn:hover svg { stroke: var(--gold-2); }
.lb-prev { left: 18px; } .lb-next { right: 18px; }
.lb-close { position: absolute; top: 24px; right: 24px; width: 48px; height: 48px; display: grid; place-items: center; }
.lb-close svg { width: 22px; height: 22px; stroke: var(--bone); fill: none; stroke-width: 1.2; }

/* related */
.related { margin-top: clamp(70px, 9vw, 130px); }

/* ---------- bag ---------- */
.bag-layout { display: grid; grid-template-columns: minmax(0, 8fr) minmax(0, 4fr); gap: clamp(30px, 5vw, 80px); align-items: start; }
.bag-item {
  display: grid; grid-template-columns: 110px 1fr auto; gap: 22px;
  padding: 26px 0; border-bottom: 1px solid var(--line); align-items: center;
}
.bag-item .bimg { width: 110px; aspect-ratio: 4/5; overflow: hidden; background: var(--bone-2); }
.bag-item .bimg img { width: 100%; height: 100%; object-fit: cover; }
.bag-item .bnm { font-family: var(--serif); font-size: 22px; font-weight: 500; }
.bag-item .bnm a:hover { color: var(--gold); }
.bag-item .bdet { font-size: 11.5px; color: var(--taupe); letter-spacing: 0.08em; margin-top: 4px; }
.bag-item .bremove { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe); margin-top: 12px; text-decoration: underline; text-underline-offset: 3px; transition: color 0.3s; }
.bag-item .bremove:hover { color: var(--ink); }
.bag-right { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); }
.qty button { width: 34px; height: 36px; font-size: 15px; transition: background 0.25s; }
.qty button:hover { background: rgba(26,21,18,0.06); }
.qty .qv { width: 36px; text-align: center; font-size: 12.5px; font-weight: 500; }
.bag-item .bprice { font-size: 14px; font-weight: 500; }
.summary { position: sticky; top: calc(var(--nav-h) + 20px); border: 1px solid var(--line); padding: clamp(24px, 3vw, 40px); background: var(--bone-2); }
.summary h3 { font-family: var(--serif); font-size: 26px; font-weight: 500; margin-bottom: 22px; }
.sum-row { display: flex; justify-content: space-between; font-size: 13px; padding: 9px 0; color: var(--ink-2); }
.sum-row.total { border-top: 1px solid var(--line); margin-top: 12px; padding-top: 18px; font-size: 16px; font-weight: 600; color: var(--ink); }
.sum-row .free { color: var(--gold); }
.summary .btn { width: 100%; margin-top: 22px; }
.summary .note { margin-top: 16px; font-size: 11px; color: var(--taupe); line-height: 1.7; }

/* ---------- drawer (mini bag) ---------- */
.drawer-veil { position: fixed; inset: 0; z-index: 1600; background: rgba(26,21,18,0.4); opacity: 0; visibility: hidden; transition: all 0.45s ease; }
.drawer-veil.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 1700;
  width: min(430px, 92vw); background: var(--bone);
  transform: translateX(102%); transition: transform 0.6s var(--ease-io);
  display: flex; flex-direction: column;
}
.drawer.open { transform: none; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 22px 26px; border-bottom: 1px solid var(--line); }
.drawer-head h3 { font-family: var(--serif); font-size: 24px; font-weight: 500; }
.drawer-head h3 span { color: var(--gold); font-size: 16px; }
.drawer-body { flex: 1; overflow-y: auto; padding: 8px 26px; }
.drawer .bag-item { grid-template-columns: 74px 1fr auto; gap: 16px; padding: 18px 0; }
.drawer .bag-item .bimg { width: 74px; }
.drawer .bag-item .bnm { font-size: 18px; }
.drawer-foot { padding: 22px 26px 26px; border-top: 1px solid var(--line); }
.drawer-foot .btn { width: 100%; }
.drawer-foot .sub { display: flex; justify-content: space-between; margin-bottom: 16px; font-size: 13.5px; }
.drawer-empty { text-align: center; padding: 60px 10px; }
.drawer-empty .display { font-size: 28px; margin-bottom: 10px; }
.drawer-empty p { color: var(--taupe); font-size: 13px; }

/* ---------- toasts ---------- */
.toasts { position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2500; display: flex; flex-direction: column; gap: 10px; align-items: center; pointer-events: none; }
.toast {
  display: flex; align-items: center; gap: 12px;
  background: var(--ink); color: var(--bone);
  padding: 15px 26px; font-size: 12px; letter-spacing: 0.08em;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  animation: toastIn 0.55s var(--ease) forwards;
}
.toast.leaving { animation: toastOut 0.4s var(--ease) forwards; }
.toast svg { width: 15px; height: 15px; stroke: var(--gold-2); fill: none; stroke-width: 1.8; }
@keyframes toastIn { from { opacity: 0; transform: translateY(20px); } }
@keyframes toastOut { to { opacity: 0; transform: translateY(14px); } }

/* ---------- atelier ---------- */
.atelier-hero { position: relative; height: 78vh; min-height: 520px; overflow: hidden; margin-top: 0; }
.atelier-hero img { width: 100%; height: 115%; object-fit: cover; will-change: transform; }
.atelier-hero .overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,21,18,0.25), rgba(26,21,18,0.55)); display: flex; align-items: flex-end; }
.atelier-hero .overlay .wrap { width: 100%; padding-bottom: 60px; color: var(--bone); }
.atelier-hero h1 { font-size: clamp(44px, 7vw, 100px); color: var(--bone); }
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 44px); }
.pstep { border-top: 1px solid var(--line); padding-top: 22px; }
.pstep .pnum { font-family: var(--serif); font-style: italic; font-size: 44px; color: var(--gold); line-height: 1; }
.pstep h3 { font-family: var(--serif); font-size: 26px; font-weight: 500; margin: 16px 0 10px; }
.pstep p { font-size: 13.5px; color: var(--ink-2); max-width: 40ch; }
.pstep .pimg { margin-top: 18px; aspect-ratio: 4/3; overflow: hidden; }
.pstep .pimg img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.pstep:hover .pimg img { transform: scale(1.05); }
.quote-band { background: var(--ink); color: var(--bone); text-align: center; }
.quote-band blockquote { font-family: var(--serif); font-style: italic; font-size: clamp(26px, 3.6vw, 46px); line-height: 1.3; max-width: 900px; margin: 0 auto; }
.quote-band .att { margin-top: 26px; font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-2); }
.materials-band { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2.5vw, 30px); }
.mat-card { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.mat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s var(--ease); }
.mat-card:hover img { transform: scale(1.06); }
.mat-card .mc-txt { position: absolute; inset: auto 0 0 0; padding: 22px 26px; background: linear-gradient(0deg, rgba(26,21,18,0.75), transparent); color: var(--bone); }
.mat-card .mc-txt h4 { font-family: var(--serif); font-size: 24px; font-weight: 500; }
.mat-card .mc-txt p { font-size: 12px; opacity: 0.85; margin-top: 4px; }

/* ---------- journal ---------- */
.jgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); }
.jcard { display: block; }
.jcard .jimg { overflow: hidden; aspect-ratio: 4/3; background: var(--bone-2); }
.jcard .jimg img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.jcard:hover .jimg img { transform: scale(1.05); }
.jcard .kicker { margin: 18px 0 8px; display: block; }
.jcard h3 { font-family: var(--serif); font-size: 26px; font-weight: 500; line-height: 1.2; transition: color 0.3s; }
.jcard:hover h3 { color: var(--gold); }
.jcard .jmeta { margin-top: 10px; font-size: 11px; color: var(--taupe); letter-spacing: 0.14em; text-transform: uppercase; }
.jcard.featured-j { grid-column: 1 / -1; display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(24px, 4vw, 60px); align-items: center; }
.jcard.featured-j .jimg { aspect-ratio: 16/10; }
.jcard.featured-j h3 { font-size: clamp(32px, 3.6vw, 50px); }
.jcard.featured-j .stand { margin-top: 16px; color: var(--ink-2); font-size: 14.5px; max-width: 52ch; }

/* article page */
.article-head { text-align: center; max-width: 860px; margin: 0 auto; }
.article-head h1 { font-size: clamp(36px, 5.4vw, 72px); margin: 18px 0 20px; }
.article-head .jmeta { font-size: 11px; color: var(--taupe); letter-spacing: 0.2em; text-transform: uppercase; }
.article-hero { margin: clamp(36px, 5vw, 60px) 0; overflow: hidden; }
.article-hero img { width: 100%; max-height: 68vh; object-fit: cover; }
.article-body { max-width: 680px; margin: 0 auto; }
.article-body p { font-family: var(--serif); font-size: 21px; line-height: 1.75; margin-bottom: 30px; color: var(--ink-2); }
.article-body p:first-of-type::first-letter {
  font-size: 4.1em; float: left; line-height: 0.8; padding: 8px 14px 0 0; color: var(--gold); font-weight: 500;
}
.article-body .standfirst { font-style: italic; font-size: 24px; color: var(--ink); }
.article-foot { max-width: 680px; margin: 50px auto 0; padding-top: 26px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }

/* ---------- search overlay ---------- */
.search-overlay {
  position: fixed; inset: 0; z-index: 1900; background: rgba(26,21,18,0.97); color: var(--bone);
  opacity: 0; visibility: hidden; transition: all 0.5s var(--ease);
  overflow-y: auto;
}
.search-overlay.open { opacity: 1; visibility: visible; }
.search-inner { max-width: 900px; margin: 0 auto; padding: 110px 26px 60px; }
.search-box { display: flex; align-items: center; gap: 18px; border-bottom: 1px solid rgba(244,239,230,0.25); padding-bottom: 16px; }
.search-box svg { width: 26px; height: 26px; stroke: var(--gold-2); fill: none; stroke-width: 1.4; flex: none; }
.search-box input {
  flex: 1; background: none; border: 0; outline: none; color: var(--bone);
  font-family: var(--serif); font-size: clamp(28px, 4.4vw, 52px);
}
.search-box input::placeholder { color: rgba(244,239,230,0.35); font-style: italic; }
.search-results { margin-top: 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sr-item { display: grid; grid-template-columns: 64px 1fr; gap: 14px; align-items: center; padding: 12px; border: 1px solid rgba(244,239,230,0.14); transition: all 0.3s; }
.sr-item:hover { border-color: var(--gold); background: rgba(244,239,230,0.04); }
.sr-item img { width: 64px; height: 80px; object-fit: cover; }
.sr-item .nm { font-family: var(--serif); font-size: 19px; }
.sr-item .ct { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-2); margin-top: 3px; }
.sr-none { grid-column: 1/-1; text-align: center; padding: 40px 0; color: rgba(244,239,230,0.6); font-family: var(--serif); font-style: italic; font-size: 22px; }
.search-close { position: absolute; top: 28px; right: 30px; }
.search-close svg { stroke: var(--bone); }
.search-hint { margin-top: 16px; font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(244,239,230,0.45); }

/* ---------- footer ---------- */
.site-foot { background: var(--ink); color: var(--bone); margin-top: clamp(80px, 10vw, 150px); }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(26px, 4vw, 60px); padding: clamp(56px, 7vw, 100px) 0 clamp(40px, 5vw, 70px); }
.foot-brand .wm-name { font-family: var(--serif); font-size: 30px; letter-spacing: 0.14em; text-transform: uppercase; }
.foot-brand p { margin-top: 16px; font-size: 13px; color: rgba(244,239,230,0.6); max-width: 30ch; line-height: 1.8; }
.foot-col h4 { font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 20px; font-weight: 500; }
.foot-col a { display: block; font-size: 13.5px; color: rgba(244,239,230,0.75); padding: 5px 0; transition: color 0.3s, transform 0.3s var(--ease); }
.foot-col a:hover { color: var(--bone); transform: translateX(5px); }
.newsletter p { font-size: 13px; color: rgba(244,239,230,0.6); margin-bottom: 18px; line-height: 1.8; }
.newsletter .nl-row { display: flex; border-bottom: 1px solid rgba(244,239,230,0.35); }
.newsletter input { flex: 1; background: none; border: 0; outline: none; color: var(--bone); padding: 12px 0; font-size: 14px; }
.newsletter input::placeholder { color: rgba(244,239,230,0.4); }
.newsletter button { font-size: 10.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-2); font-weight: 600; transition: color 0.3s; }
.newsletter button:hover { color: var(--bone); }
.foot-bottom { border-top: 1px solid rgba(244,239,230,0.12); padding: 26px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(244,239,230,0.45); }
.foot-bottom .socials { display: flex; gap: 22px; }
.foot-bottom .socials a:hover { color: var(--gold-2); }

/* ---------- home season strip ---------- */
.season-strip { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(14px, 2vw, 26px); align-items: end; }
.season-strip .ss-media-a { grid-column: 1 / 6; aspect-ratio: 3/4; overflow: hidden; }
.season-strip .ss-media-b { grid-column: 7 / 13; aspect-ratio: 16/10; overflow: hidden; margin-bottom: clamp(30px, 6vw, 90px); }
.season-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.season-strip .ss-media-a:hover img, .season-strip .ss-media-b:hover img { transform: scale(1.05); }
.season-strip .ss-txt { grid-column: 7 / 12; margin-top: 26px; }
.season-strip .ss-txt .display { font-size: clamp(30px, 3.4vw, 48px); margin-bottom: 16px; }
.season-strip .ss-txt p { color: var(--ink-2); max-width: 48ch; }

/* ---------- checkout modal ---------- */
.modal-veil { position: fixed; inset: 0; z-index: 1750; background: rgba(26,21,18,0.55); backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: all 0.4s ease; display: grid; place-items: center; padding: 20px; }
.modal-veil.open { opacity: 1; visibility: visible; }
.modal { width: min(560px, 94vw); max-height: 88vh; overflow-y: auto; background: var(--bone); padding: clamp(28px, 4vw, 48px); transform: translateY(26px); transition: transform 0.5s var(--ease); }
.modal-veil.open .modal { transform: none; }
.modal h3 { font-family: var(--serif); font-size: 32px; font-weight: 500; margin-bottom: 8px; }
.modal .msub { color: var(--taupe); font-size: 13px; margin-bottom: 26px; }
.f-row { margin-bottom: 18px; }
.f-row label { display: block; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; margin-bottom: 8px; color: var(--ink-2); }
.f-row input { width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--line); padding: 10px 2px; font-size: 15px; outline: none; transition: border-color 0.3s; }
.f-row input:focus { border-color: var(--gold); }
.f-row input.err { border-color: #a4502e; }
.f-row .f-err { display: none; font-size: 11px; color: #a4502e; margin-top: 6px; }
.f-row.invalid .f-err { display: block; }
.modal .confirm-box { text-align: center; padding: 20px 0 6px; }
.modal .confirm-box .seal { width: 66px; height: 66px; margin: 0 auto 20px; border: 1px solid var(--gold); border-radius: 50%; display: grid; place-items: center; }
.modal .confirm-box .seal svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .pgrid { grid-template-columns: repeat(3, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .foot-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-left { display: none; }
  .burger { display: inline-flex; }
  .wordmark { text-align: left; }
  .head-grid { grid-template-columns: auto 1fr auto; }
  .wordmark .wm-name { font-size: 21px; }
  .pdp { grid-template-columns: 1fr; }
  .gallery { position: static; }
  .bag-layout { grid-template-columns: 1fr; }
  .summary { position: static; }
  .split { grid-template-columns: 1fr; }
  .jgrid { grid-template-columns: 1fr 1fr; }
  .jcard.featured-j { grid-template-columns: 1fr; }
  .season-strip .ss-media-a { grid-column: 1 / 13; }
  .season-strip .ss-media-b { grid-column: 1 / 13; margin-bottom: 0; }
  .season-strip .ss-txt { grid-column: 1 / 13; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .search-results { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .pgrid, .pgrid.cols3 { grid-template-columns: 1fr 1fr; gap: 26px 12px; }
  .pcard .nm { font-size: 17px; }
  .pcard .veil-cta { transform: none; }
  .jgrid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .materials-band { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; }
  .search-results { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(52px, 14.5vw, 90px); }
  .scroll-cue { display: none; }
  .bag-item { grid-template-columns: 84px 1fr; }
  .bag-item .bimg { width: 84px; }
  .bag-right { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; }
  .toolbar .count { width: 100%; margin-left: 0; }
}
