/* MAGNAT — dark luxury theme. Mobile-first. */
:root {
  --ink: #0b0a09;
  --ink-2: #14120f;
  --ink-3: #1d1a16;
  --line: rgba(233, 216, 184, .14);
  --ivory: #f3ede3;
  --ivory-2: #cfc6b8;
  --mute: #8f877b;
  --gold: #c9a96e;
  --gold-2: #e6cf9f;
  --sale: #d9826a;
  --ok: #9fbf8f;
  --r: 14px;
  --gut: 16px;
  --max: 1240px;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Manrope", system-ui, -apple-system, sans-serif;
  color-scheme: dark;
}
@media (min-width: 768px) { :root { --gut: 32px; } }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--ink); color: var(--ivory);
  font: 400 15px/1.6 var(--sans); letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold-2); }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; margin: 0 0 .5em; letter-spacing: -.005em; }
h1 { font-size: clamp(38px, 9vw, 84px); }
h2 { font-size: clamp(30px, 6.4vw, 56px); }
h3 { font-size: clamp(22px, 4vw, 30px); }
p { margin: 0 0 1em; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gut); }
.eyebrow { font: 600 11px/1 var(--sans); letter-spacing: .32em; text-transform: uppercase; color: var(--gold); }
.muted { color: var(--mute); }
.gold { color: var(--gold); }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 28px; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--gold); background: var(--gold); color: var(--ink);
  font: 600 13px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase;
  transition: background .3s, color .3s, transform .3s;
}
.btn:hover { background: var(--gold-2); color: var(--ink); }
.btn--ghost { background: transparent; color: var(--gold-2); }
.btn--ghost:hover { background: rgba(201, 169, 110, .12); color: var(--gold-2); }
.btn--block { width: 100%; }

/* header */
.hdr {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 10, 9, .88); border-bottom: 1px solid var(--line);
}
.hdr__bar { display: flex; align-items: center; gap: 16px; height: 64px; }
.logo { font: 600 22px/1 var(--serif); letter-spacing: .34em; text-transform: uppercase; color: var(--ivory); }
.logo small { display: block; font: 500 8px/1 var(--sans); letter-spacing: .5em; color: var(--gold); margin-top: 5px; }
.nav { display: none; gap: 26px; margin-left: 28px; }
.nav > li { position: relative; list-style: none; }
.nav a { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ivory-2); padding: 22px 0; display: block; }
.nav a:hover { color: var(--gold-2); }
.nav .sub {
  position: absolute; top: 100%; left: -20px; min-width: 240px; padding: 14px 20px;
  background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--r);
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: .25s; margin: 0;
}
.nav li:hover > .sub { opacity: 1; visibility: visible; transform: none; }
.nav .sub a { padding: 8px 0; text-transform: none; letter-spacing: .02em; font-size: 14px; font-weight: 500; }
.nav, .nav ul { padding: 0; }
.hdr__tools { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.icon-btn { position: relative; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; border: 0; background: none; cursor: pointer; color: var(--ivory); }
.icon-btn:hover { background: rgba(255, 255, 255, .05); color: var(--gold-2); }
.icon-btn svg { width: 21px; height: 21px; }
.badge { position: absolute; top: 5px; right: 4px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px; background: var(--gold); color: var(--ink); font: 700 10px/18px var(--sans); text-align: center; }
.badge:empty, .badge[data-n="0"] { display: none; }
.hdr__phone { display: none; font-weight: 600; letter-spacing: .04em; }
@media (min-width: 1100px) { .nav { display: flex; } .burger { display: none; } .hdr__phone { display: block; } }

/* mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 80; visibility: hidden; overflow: hidden; }
.drawer.is-open { visibility: visible; }
.drawer__bg { position: absolute; inset: 0; background: rgba(0, 0, 0, .6); opacity: 0; transition: .3s; }
.drawer.is-open .drawer__bg { opacity: 1; }
.drawer__panel {
  position: absolute; inset: 0 0 0 auto; width: min(420px, 100%); background: var(--ink-2);
  transform: translateX(100%); transition: transform .4s cubic-bezier(.2, .8, .2, 1);
  overflow-y: auto; padding: 18px var(--gut) 40px;
}
.drawer.is-open .drawer__panel { transform: none; }
.drawer__panel ul { list-style: none; margin: 0; padding: 0; }
.drawer__panel > nav > ul > li { border-bottom: 1px solid var(--line); }
.drawer__panel > nav > ul > li > a, .drawer__panel summary { display: flex; justify-content: space-between; padding: 16px 0; font: 500 22px/1.2 var(--serif); cursor: pointer; list-style: none; }
.drawer__panel summary::-webkit-details-marker { display: none; }
.drawer__panel summary::after { content: "+"; color: var(--gold); font-family: var(--sans); }
.drawer__panel details[open] summary::after { content: "–"; }
.drawer__panel details ul { padding: 0 0 14px 4px; }
.drawer__panel details a { display: block; padding: 8px 0; color: var(--ivory-2); }
.drawer__contacts { margin-top: 28px; display: grid; gap: 10px; }

/* breadcrumbs */
.crumbs { display: flex; flex-wrap: wrap; gap: 6px 10px; padding: 22px 0 8px; margin: 0; list-style: none; font-size: 12px; color: var(--mute); }
.crumbs li + li::before { content: "/"; margin-right: 10px; color: var(--line); }
.page-head { padding: 8px 0 28px; }
.page-head h1 { font-size: clamp(34px, 7vw, 64px); }

/* STORY (scrollytelling) */
.story { position: relative; height: 1150svh; background: var(--ink); }
.story__stage { position: sticky; top: 0; height: 100svh; overflow: hidden; }
.story canvas { width: 100%; height: 100%; display: block; }
.story__stage { contain: strict; }
.cap { will-change: opacity, transform; }
.story__stage::after { /* vignette for legibility */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(11,10,9,.6) 0%, transparent 20%, transparent 48%, rgba(11,10,9,.78) 68%, rgba(11,10,9,.96) 100%);
}
.cap {
  position: absolute; left: var(--gut); right: var(--gut); bottom: calc(76px + env(safe-area-inset-bottom)); z-index: 2;
  max-width: 520px; opacity: 0; transform: translateY(24px); transition: opacity .6s, transform .8s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.cap.is-on { opacity: 1; transform: none; pointer-events: auto; }
.cap--top { bottom: auto; top: calc(64px + 5svh); }
.cap--center { top: 50%; bottom: auto; transform: translateY(-40%); text-align: center; margin: 0 auto; }
.cap--center.is-on { transform: translateY(-50%); }
.cap h1, .cap h2 { text-shadow: 0 2px 24px rgba(0,0,0,.9), 0 0 2px rgba(0,0,0,.6); }
.cap p { text-shadow: 0 1px 12px rgba(0,0,0,.9); }
.cap p { color: var(--ivory-2); font-size: 15px; max-width: 420px; }
.cap--center p { margin: 0 auto 1em; }
.cap .num { font: 500 13px/1 var(--sans); letter-spacing: .3em; color: var(--gold); display: block; margin-bottom: 14px; }
.cap .spec { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.cap .spec span { border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; font-size: 12px; color: var(--ivory-2); background: rgba(11,10,9,.6); }
.story__progress { position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: rgba(255,255,255,.06); z-index: 3; }
.story__progress i { display: block; height: 100%; background: var(--gold); transform-origin: 0 50%; transform: scaleX(0); }
.scroll-hint { position: absolute; left: 50%; bottom: 96px; transform: translateX(-50%); z-index: 3; font-size: 10px; letter-spacing: .4em; text-transform: uppercase; color: var(--ivory-2); display: grid; justify-items: center; gap: 10px; transition: opacity .4s; }
.scroll-hint::after { content: ""; width: 1px; height: 38px; background: linear-gradient(var(--gold), transparent); animation: drip 2s infinite; }
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@media (min-width: 900px) {
  .cap { left: 7vw; right: auto; bottom: auto; top: 50%; transform: translateY(-40%); }
  .cap.is-on { transform: translateY(-50%); }
  .cap--right { left: auto; right: 7vw; }
  .cap--center { left: 0; right: 0; }
  .cap--top { top: 50%; }
}

/* sections */
.sec { padding: 72px 0; }
@media (min-width: 900px) { .sec { padding: 120px 0; } }
.sec--line { border-top: 1px solid var(--line); }
.sec__head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 34px; }
.sec__head h2 { margin: 10px 0 0; }

/* stats */
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.stats div { background: var(--ink); padding: 26px 18px; }
.stats b { display: block; font: 500 clamp(34px, 7vw, 60px)/1 var(--serif); color: var(--gold-2); margin-bottom: 8px; }
.stats span { font-size: 12px; color: var(--mute); letter-spacing: .06em; }
@media (min-width: 900px) { .stats { grid-template-columns: repeat(4, 1fr); } }

/* category tiles */
.tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (min-width: 900px) { .tiles { grid-template-columns: repeat(4, 1fr); gap: 18px; } }
.tile { position: relative; aspect-ratio: 3/4; border-radius: var(--r); overflow: hidden; background: var(--ink-3); border: 1px solid var(--line); }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.8,.2,1); opacity: .88; }
.tile:hover img { transform: scale(1.06); }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 40%, rgba(11,10,9,.92)); }
.tile span { position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 1; font: 500 22px/1.1 var(--serif); }
.tile span small { display: block; font: 600 10px/1 var(--sans); letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }

/* product grid + card */
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (min-width: 700px) { .grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
@media (min-width: 1100px) { .grid { grid-template-columns: repeat(4, 1fr); } }
.card { display: flex; flex-direction: column; background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: border-color .3s, transform .4s; }
.card:hover { border-color: rgba(201,169,110,.45); transform: translateY(-3px); }
.card__img { position: relative; aspect-ratio: 1; background: radial-gradient(circle at 50% 40%, #2a251f, var(--ink-2) 70%); display: grid; place-items: center; }
.card__img img { width: 88%; height: 88%; object-fit: contain; }
.card__tags { position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; flex-wrap: wrap; }
.tag { font: 700 9px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; padding: 6px 8px; border-radius: 6px; background: var(--gold); color: var(--ink); }
.tag--sale { background: var(--sale); }
.card__body { padding: 14px 14px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card__name { font: 500 19px/1.15 var(--serif); }
.card__meta { font-size: 11px; color: var(--mute); }
.price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 10px; margin-top: auto; }
.price b { font: 600 17px/1 var(--sans); color: var(--ivory); }
.price s { font-size: 12px; color: var(--mute); }
.price--lg b { font: 500 40px/1 var(--serif); color: var(--gold-2); }
.price--lg s { font-size: 16px; }

/* catalog toolbar */
.subcats { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 6px; margin: 0 0 24px; scrollbar-width: none; }
.subcats a { flex: none; padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; color: var(--ivory-2); white-space: nowrap; }
.subcats a:hover, .subcats a.is-on { border-color: var(--gold); color: var(--gold-2); }
.toolbar { display: flex; gap: 10px; align-items: center; justify-content: space-between; margin-bottom: 18px; font-size: 13px; color: var(--mute); }
.toolbar select { background: var(--ink-2); border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; }

/* product page */
.pd { display: grid; gap: 28px; padding-bottom: 40px; }
@media (min-width: 960px) { .pd { grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: start; } }
.gallery { position: relative; }
.gallery__main { aspect-ratio: 1; border-radius: var(--r); background: radial-gradient(circle at 50% 40%, #2c2721, var(--ink-2) 72%); border: 1px solid var(--line); display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.gallery__main img { flex: none; width: 100%; height: 100%; object-fit: contain; scroll-snap-align: center; padding: 6%; }
.gallery__thumbs { display: flex; gap: 8px; margin-top: 10px; overflow-x: auto; }
.gallery__thumbs button { flex: none; width: 64px; height: 64px; padding: 4px; border-radius: 10px; border: 1px solid var(--line); background: var(--ink-2); cursor: pointer; }
.gallery__thumbs button.is-on { border-color: var(--gold); }
.gallery__thumbs img { width: 100%; height: 100%; object-fit: contain; }
.pd__info { display: grid; gap: 22px; }
@media (min-width: 960px) { .pd__info { position: sticky; top: 90px; } }
.pd__info h1 { font-size: clamp(36px, 6vw, 58px); margin: 0; }
.sizes { display: flex; flex-wrap: wrap; gap: 8px; }
.sizes button { min-width: 84px; padding: 11px 12px; border-radius: 10px; border: 1px solid var(--line); background: transparent; cursor: pointer; font-size: 13px; }
.sizes button.is-on { border-color: var(--gold); color: var(--gold-2); background: rgba(201,169,110,.08); }
.sizes button[data-can="0"] { opacity: .45; }
.buy { display: grid; grid-template-columns: 1fr; gap: 10px; }
@media (min-width: 520px) { .buy { grid-template-columns: 1fr 1fr; } }
.stock { font-size: 13px; color: var(--ok); }
.kv { width: 100%; border-collapse: collapse; font-size: 14px; }
.kv td { padding: 12px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.kv td:first-child { color: var(--mute); width: 46%; padding-right: 14px; }
.layers { list-style: none; counter-reset: l; padding: 0; margin: 0; display: grid; gap: 10px; }
.layers li { counter-increment: l; display: flex; gap: 14px; align-items: center; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--ink-2); }
.layers li::before { content: counter(l, decimal-leading-zero); font: 500 22px/1 var(--serif); color: var(--gold); }
.tabs { border-top: 1px solid var(--line); }
.tabs details { border-bottom: 1px solid var(--line); }
.tabs summary { padding: 20px 0; cursor: pointer; font: 500 24px/1.2 var(--serif); list-style: none; display: flex; justify-content: space-between; }
.tabs summary::-webkit-details-marker { display: none; }
.tabs summary::after { content: "+"; color: var(--gold); font-family: var(--sans); }
.tabs details[open] summary::after { content: "–"; }
.tabs .body { padding: 0 0 24px; color: var(--ivory-2); }

/* rich content from the original site */
.rich { color: var(--ivory-2); max-width: 860px; }
.rich h2, .rich h3 { color: var(--ivory); margin-top: 1.4em; }
.rich a { color: var(--gold-2); text-decoration: underline; text-underline-offset: 3px; }
.rich img { border-radius: var(--r); margin: 18px 0; }
.rich table { width: 100%; border-collapse: collapse; margin: 1em 0; display: block; overflow-x: auto; }
.rich td, .rich th { border: 1px solid var(--line); padding: 10px; text-align: left; }
.rich ul { padding-left: 1.2em; }

/* forms */
.field { display: grid; gap: 6px; }
.field label { font-size: 12px; color: var(--mute); letter-spacing: .06em; }
.field input, .field textarea, .field select { width: 100%; background: var(--ink-2); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; min-height: 50px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.form { display: grid; gap: 14px; }
.note { font-size: 12px; color: var(--mute); }

/* cart */
.cart-row { display: grid; grid-template-columns: 72px 1fr auto; gap: 14px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-row img { width: 72px; height: 72px; object-fit: contain; background: var(--ink-2); border-radius: 10px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; }
.qty button { width: 34px; height: 34px; border: 0; background: none; cursor: pointer; color: var(--ivory); }
.empty { padding: 60px 0; text-align: center; color: var(--mute); }

/* quote / cta band */
.band { position: relative; overflow: hidden; border-radius: calc(var(--r) * 1.6); border: 1px solid var(--line); background: var(--ink-2); padding: 48px 22px; text-align: center; }
.band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.band > * { position: relative; }
@media (min-width: 900px) { .band { padding: 96px 60px; } }

/* footer */
.ftr { border-top: 1px solid var(--line); padding: 56px 0 110px; background: #080706; font-size: 14px; }
.ftr__grid { display: grid; gap: 32px; }
@media (min-width: 900px) { .ftr__grid { grid-template-columns: 1.4fr repeat(3, 1fr); } .ftr { padding-bottom: 40px; } }
.ftr h4 { font: 600 11px/1 var(--sans); letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.ftr ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; color: var(--ivory-2); }
.ftr__legal { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--mute); font-size: 12px; display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; }

/* sticky mobile action bar */
.mbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: grid; grid-template-columns: repeat(4, 1fr); background: rgba(11,10,9,.94); border-top: 1px solid var(--line); padding-bottom: env(safe-area-inset-bottom); }
.mbar a { display: grid; justify-items: center; gap: 4px; padding: 9px 0 8px; font-size: 10px; letter-spacing: .06em; color: var(--ivory-2); position: relative; }
.mbar svg { width: 20px; height: 20px; }
.mbar .badge { top: 3px; right: calc(50% - 22px); }
@media (min-width: 900px) { .mbar { display: none; } }

/* reveal */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .9s, transform 1s cubic-bezier(.2,.8,.2,1); }
.rv.is-in { opacity: 1; transform: none; }
.no-js .rv { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

.toast { position: fixed; left: 50%; bottom: 84px; transform: translate(-50%, 20px); z-index: 90; background: var(--ivory); color: var(--ink); padding: 14px 20px; border-radius: 999px; font-weight: 600; font-size: 13px; opacity: 0; transition: .35s; pointer-events: none; }
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }
.scroll-hint:not(.is-on) { opacity: 0; }
@media (min-width: 900px) {
  .story__stage::after { background: linear-gradient(90deg, rgba(11,10,9,.9) 0%, rgba(11,10,9,.35) 38%, transparent 55%); }
  .scroll-hint { bottom: 28px; }
}

/* ===== logo ===== */
.logo img { height: 40px; width: auto; }
.logo--lg img { height: 52px; }
.drawer .logo img { height: 34px; }

/* ===== life: hover ===== */
.nav > li > a { position: relative; }
.nav > li > a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 16px; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.nav > li:hover > a::after { transform: scaleX(1); transform-origin: left; }
.btn { position: relative; overflow: hidden; isolation: isolate; }
.btn::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.45) 50%, transparent 70%); transform: translateX(-120%); transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.btn:hover::before { transform: translateX(120%); }
.btn:active { transform: scale(.97); }
.card { position: relative; transition: border-color .4s, transform .6s cubic-bezier(.2,.8,.2,1), box-shadow .6s; }
.card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px -24px rgba(201,169,110,.35); }
.card::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(115deg, transparent 35%, rgba(230,207,159,.12) 50%, transparent 65%); transform: translateX(-100%); transition: transform 1.1s cubic-bezier(.2,.8,.2,1); }
.card:hover::after { transform: translateX(100%); }
.card__img img, .news__img img { transition: transform 1s cubic-bezier(.2,.8,.2,1); }
.card:hover .card__img img { transform: scale(1.07) rotate(-1deg); }
.card:hover .news__img img { transform: scale(1.06); }
.card__name { transition: color .3s; }
.card:hover .card__name { color: var(--gold-2); }
.tile span { transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.tile:hover span { transform: translateY(-8px); }
.tile::before { content: "→"; position: absolute; right: 16px; top: 16px; z-index: 2; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(230,207,159,.5); color: var(--gold-2); opacity: 0; transform: translate(-8px, 8px); transition: .5s cubic-bezier(.2,.8,.2,1); }
.tile:hover::before { opacity: 1; transform: none; }
.sizes button { transition: border-color .25s, background .25s, transform .2s; }
.sizes button:hover { border-color: var(--gold); transform: translateY(-2px); }
.subcats a { transition: border-color .3s, color .3s, background .3s; }
.subcats a:hover { background: rgba(201,169,110,.08); }
.icon-btn svg { transition: transform .35s; }
.icon-btn:hover svg { transform: scale(1.12); }
.ftr a { transition: color .25s, padding .3s; }
.ftr li a:hover { padding-left: 6px; }

/* header gets solid once the page scrolls */
.hdr { transition: background .4s, box-shadow .4s; }
.hdr.is-scrolled { background: rgba(11,10,9,.9); box-shadow: 0 10px 40px -20px rgba(0,0,0,.8); }

/* ===== life: scroll ===== */
.grid > .rv:nth-child(4n+2), .tiles > .rv:nth-child(4n+2) { transition-delay: .08s; }
.grid > .rv:nth-child(4n+3), .tiles > .rv:nth-child(4n+3) { transition-delay: .16s; }
.grid > .rv:nth-child(4n+4), .tiles > .rv:nth-child(4n+4) { transition-delay: .24s; }
.split .w { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: .08em; }
.split .w > i { display: inline-block; font-style: normal; transform: translateY(105%); transition: transform 1s cubic-bezier(.2,.8,.2,1); transition-delay: calc(var(--i) * 45ms); }
.split.is-in .w > i { transform: none; }
.band img { transition: transform .1s linear; will-change: transform; transform: scale(1.15); }
body { animation: pagein .7s ease-out both; }
@keyframes pagein { from { opacity: 0; } }

/* marquee of collections */
.ticker { border-block: 1px solid var(--line); overflow: hidden; padding: 22px 0; background: var(--ink); }
.ticker__row { display: flex; gap: 48px; width: max-content; animation: tick 38s linear infinite; }
.ticker:hover .ticker__row { animation-play-state: paused; }
.ticker a { font: italic 400 clamp(26px, 5vw, 44px)/1 var(--serif); color: var(--ivory-2); white-space: nowrap; display: inline-flex; align-items: center; gap: 48px; }
.ticker a::after { content: "✦"; font: 400 14px/1 var(--sans); color: var(--gold); }
.ticker a:hover { color: var(--gold-2); }
@keyframes tick { to { transform: translateX(-50%); } }

/* ===== news cascade deck ===== */
.deck { position: relative; outline: none; }
.deck__stage { position: relative; height: 600px; touch-action: pan-y; }
@media (min-width: 900px) { .deck__stage { height: 600px; } }
.deck__card { position: absolute; top: 0; left: 0; width: 70%; height: 100%; border-radius: calc(var(--r) * 1.4); overflow: hidden; background: var(--ink-2); border: 1px solid var(--line); box-shadow: -24px 30px 70px -30px rgba(0,0,0,.95);
  transition: transform 1.1s cubic-bezier(.22,.8,.18,1), opacity .8s, filter 1.1s; transform-origin: 0 50%; will-change: transform; cursor: pointer; }
@media (min-width: 900px) { .deck__card { width: 420px; } }
.deck__card a { display: flex; flex-direction: column; height: 100%; }
.deck__img { height: 58%; overflow: hidden; background: var(--ink-3); }
.deck__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.8,.2,1); }
.deck__card[data-pos="0"]:hover .deck__img img { transform: scale(1.06); }
.deck__card:not([data-pos="0"]):hover { filter: brightness(1) !important; }
.deck__body { padding: 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.deck__body h3 { font-size: 24px; margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.deck__body p { font-size: 13px; color: var(--mute); margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.deck__more { margin-top: auto; color: var(--gold); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; }
.deck__nav { display: flex; align-items: center; gap: 18px; margin-top: 26px; }
.deck__btn { width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--gold); background: transparent; color: var(--gold-2); font-size: 20px; cursor: pointer; transition: background .3s, color .3s, transform .3s; }
.deck__btn:hover { background: var(--gold); color: var(--ink); }
.deck__btn[data-prev]:hover { transform: translateX(-3px); }
.deck__btn[data-next]:hover { transform: translateX(3px); }
.deck__count { font-size: 13px; letter-spacing: .2em; color: var(--mute); }
.deck__count b { color: var(--ivory); font-weight: 600; }
.post img { border-radius: var(--r); margin: 0 0 22px; }
.news .news__img { aspect-ratio: 4/3; overflow: hidden; background: var(--ink-3); }
.news .news__img img { width: 100%; height: 100%; object-fit: cover; }

@media (prefers-reduced-motion: reduce) {
  .split .w > i { transform: none; transition: none; }
  .ticker__row { animation: none; }
  body { animation: none; }
  .deck__card { transition: none; }
}
/* the deck's side cards must never widen the page on phones */
html { overflow-x: clip; }
.news-sec { overflow: hidden; }
/* product photos come on white: show them on an ivory plinth, multiply melts the white away */
.card__img, .gallery__main, .gallery__thumbs button { background: radial-gradient(circle at 50% 35%, #fbf8f2, #e9e2d6 80%); }
.card__img img, .gallery__main img, .gallery__thumbs img { mix-blend-mode: multiply; }
.card__img { margin: 8px 8px 0; border-radius: calc(var(--r) - 4px); overflow: hidden; }
.card__tags .tag { box-shadow: 0 4px 14px -6px rgba(0,0,0,.5); }
@media (min-width: 900px) { .cap { max-width: 400px; left: 5vw; } .cap--right { right: 5vw; } .cap--center { max-width: 640px; } }
.nav a { white-space: nowrap; }
@media (min-width: 1100px) { .nav { gap: 20px; margin-left: 20px; } .hdr__phone { display: none; } }
@media (min-width: 1360px) { .nav { gap: 26px; } .hdr__phone { display: block; white-space: nowrap; } }
