/* ============================================================
   SLAY  —  Eastern silhouettes, engineered for the future
   Design language: "Neo-Couture" (Balenciaga stark · Prada
   refined · Dior editorial). Monochrome, architectural, huge type.
   Type: Syne (display) + Space Grotesk (UI / mono labels)
   ============================================================ */

:root {
  --paper: #ece9e2;        /* bone */
  --pure:  #ffffff;
  --ink:   #0a0a09;        /* near black */
  --ink-2: #5f5d57;
  --ink-3: #918e86;
  --line:  rgba(10,10,9,0.14);
  --line-2: rgba(10,10,9,0.28);
  --line-inv: rgba(255,255,255,0.16);
  --accent: #0a0a09;

  --display: "Syne", "Arial Black", sans-serif;
  --sans: "Space Grotesk", "Helvetica Neue", sans-serif;

  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --nav-h: 62px;
  --ann-h: 34px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: var(--ink); color: var(--paper); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Type ---------- */
.mega  { font-family: var(--display); font-weight: 800; font-size: clamp(3.4rem, 15vw, 15rem); line-height: 0.84; letter-spacing: -0.035em; text-transform: uppercase; }
.h1    { font-family: var(--display); font-weight: 700; font-size: clamp(2.1rem, 6.5vw, 5.6rem); line-height: 0.92; letter-spacing: -0.025em; text-transform: uppercase; }
.h2    { font-family: var(--display); font-weight: 700; font-size: clamp(1.7rem, 4vw, 3.2rem); line-height: 0.98; letter-spacing: -0.02em; text-transform: uppercase; }
.h3    { font-family: var(--display); font-weight: 600; font-size: clamp(1.2rem, 2vw, 1.7rem); line-height: 1; letter-spacing: -0.01em; text-transform: uppercase; }
.label { font-family: var(--sans); font-weight: 500; font-size: 0.64rem; letter-spacing: 0.3em; text-transform: uppercase; }
.code  { font-family: var(--sans); font-weight: 400; font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); }
.lede  { font-size: clamp(1rem, 1.6vw, 1.25rem); font-weight: 300; line-height: 1.5; max-width: 42ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.7rem;
  font-family: var(--sans); font-weight: 500; font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase;
  padding: 1.15rem 2.4rem; border: 1px solid var(--ink); color: var(--ink); background: transparent;
  position: relative; overflow: hidden; transition: color 0.5s var(--ease);
}
.btn::after { content: ""; position: absolute; inset: 0; background: var(--ink); transform: translateY(101%); transition: transform 0.5s var(--ease); z-index: -1; }
.btn:hover { color: var(--paper); }
.btn:hover::after { transform: translateY(0); }
.btn--fill { background: var(--ink); color: var(--paper); }
.btn--fill::after { background: var(--paper); }
.btn--fill:hover { color: var(--ink); }
.btn--block { width: 100%; }
.on-dark .btn, .btn--inv { border-color: var(--pure); color: var(--pure); }
.on-dark .btn::after, .btn--inv::after { background: var(--pure); }
.on-dark .btn:hover, .btn--inv:hover { color: var(--ink); }
.on-dark .btn--fill, .btn--inv.btn--fill { background: var(--pure); color: var(--ink); }
.on-dark .btn--fill::after { background: var(--ink); }
.on-dark .btn--fill:hover { color: var(--pure); }

.ulink { position: relative; font-family: var(--sans); font-weight: 500; font-size: 0.64rem; letter-spacing: 0.24em; text-transform: uppercase; padding-bottom: 3px; }
.ulink::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease); }
.ulink:hover::after { transform: scaleX(1); }
.ulink--on::after { transform: scaleX(1); }

/* ---------- Announcement / ticker ---------- */
.ticker { position: fixed; top: 0; left: 0; right: 0; z-index: 1200; height: var(--ann-h); background: var(--ink); color: var(--paper); overflow: hidden; display: flex; align-items: center; border-bottom: 1px solid var(--ink); }
.ticker-track { display: inline-flex; white-space: nowrap; animation: tick 34s linear infinite; will-change: transform; }
.ticker-track span { font-family: var(--sans); font-weight: 500; font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; padding: 0 2.2rem; display: inline-flex; align-items: center; }
.ticker-track span::after { content: ""; width: 13px; height: 12px; margin-left: 2.2rem; opacity: 0.75; display: inline-block; background: currentColor;
  -webkit-mask: url("../img/pk-map-big.png") center / contain no-repeat; mask: url("../img/pk-map-big.png") center / contain no-repeat; }
@keyframes tick { to { transform: translateX(-50%); } }

/* ---------- Nav ---------- */
.nav { position: fixed; top: var(--ann-h); left: 0; right: 0; z-index: 1100; height: var(--nav-h);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 clamp(1rem, 3vw, 2.2rem);
  background: transparent; transition: background 0.5s var(--ease), border-color 0.5s, color 0.5s; border-bottom: 1px solid transparent; }
.nav.solid { background: var(--paper); border-bottom-color: var(--line); }
.nav-l, .nav-r { display: flex; align-items: center; gap: 1.8rem; }
.nav-r { justify-content: flex-end; }
.nav a.navitem { font-family: var(--sans); font-weight: 500; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.85; transition: opacity 0.3s; }
.nav a.navitem:hover { opacity: 1; }
.wordmark { display: flex; align-items: center; justify-content: center; }

/* SLAY lockup — live type, in sync with the site display font.
   Map follows currentColor via mask, so it inverts automatically. */
.wm { display: inline-flex; flex-direction: column; align-items: center; color: inherit; line-height: 0.8; }
.wm b { font-family: var(--display); font-weight: 800; font-size: 1em; letter-spacing: -0.03em; text-transform: uppercase; line-height: 0.8; }
.wm i { font-style: normal; display: inline-flex; align-items: center; gap: 0.5em; font-family: var(--sans); font-weight: 500; font-size: 0.175em; letter-spacing: 0.5em; text-transform: uppercase; margin-top: 0.34em; margin-left: 0.5em; }
.wm .pk, .pkg { display: inline-block; background: currentColor;
  -webkit-mask: url("../img/pk-map-big.png") center / contain no-repeat;
  mask: url("../img/pk-map-big.png") center / contain no-repeat; }
.wm .pk { width: 1.7em; height: 1.55em; }
.pkg { width: 1.5em; height: 1.4em; vertical-align: -0.25em; }
.wordmark .wm { font-size: 36px; }
.nav.on-light .navitem, .nav.on-light .wordmark { color: var(--ink); }
.nav.on-dark-hero:not(.solid) .navitem, .nav.on-dark-hero:not(.solid) .wordmark { color: var(--pure); }
.nav.on-dark-hero:not(.solid) .burger span { background: var(--pure); }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 6px; }
.burger span { width: 24px; height: 1.5px; background: var(--ink); transition: transform 0.4s, opacity 0.4s; }
.cart-btn { font-family: var(--sans); font-weight: 500; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; background: none; border: 0; color: inherit; }

@media (max-width: 860px) {
  .nav-l, .nav-r a.navitem { display: none; }
  .nav { grid-template-columns: auto 1fr auto; }
  .wordmark { justify-content: flex-start; }
  .wordmark .wm { font-size: 28px; }
  .burger { display: flex; }
  .nav-r { gap: 1rem; }
}

/* Mobile menu */
.mobile { position: fixed; inset: 0; z-index: 1150; background: var(--ink); color: var(--paper); display: flex; flex-direction: column; justify-content: center; padding: 0 8vw; gap: 0.4rem; transform: translateY(-100%); transition: transform 0.6s var(--ease); }
.mobile.open { transform: none; }
.mobile a { font-family: var(--display); font-weight: 700; font-size: clamp(2rem, 9vw, 3.4rem); text-transform: uppercase; letter-spacing: -0.02em; padding: 0.5rem 0; border-bottom: 1px solid var(--line-inv); }
.mobile a span { font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.2em; color: var(--ink-3); display: inline-block; width: 2.4rem; }
.mobile-close { position: absolute; top: calc(var(--ann-h) + 18px); right: 5vw; background: none; border: 0; color: var(--paper); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; }

/* ---------- Layout ---------- */
.wrap { width: 100%; padding-inline: clamp(1rem, 3vw, 2.2rem); }
.section { padding-block: clamp(4rem, 9vw, 8rem); }
.invert { background: var(--ink); color: var(--paper); }
.invert .code { color: rgba(236,233,226,0.55); }

/* ---------- Reveal ---------- */
.rv { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv[data-d="1"] { transition-delay: 0.06s; } .rv[data-d="2"] { transition-delay: 0.12s; }
.rv[data-d="3"] { transition-delay: 0.18s; } .rv[data-d="4"] { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } *, *::before, *::after { animation: none !important; } html { scroll-behavior: auto; } }

/* ---------- Photography ---------- */
.ph { position: relative; overflow: hidden; background: #ddd9d0; }
.ph-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 1.4s var(--ease), filter 0.6s; }
.ph:hover .ph-img { transform: scale(1.04); }
.img-hero    { background-image: url("../img/hero-ceremony.jpg"); background-position: center 24%; }
.img-crew    { background-image: url("../img/campaign-models.jpg"); background-position: center 22%; }
.img-model { background-image: url("../img/slay-model.jpg"); background-position: center 15%; }
.img-sk-stone { background-image: url("../img/sk-stone.jpg"); background-position: center 20%; }
.img-sk-walk { background-image: url("../img/sk-navy-walk.jpg"); background-position: center 25%; }
.img-noir { background-image: url("../img/sk-noir-chair.jpg"); background-position: center 28%; }
.img-macro { background-image: url("../img/slay-macro.jpg"); }
.img-duo1 { background-image: url("../img/slay-duo1.jpg"); }
.img-duo3 { background-image: url("../img/slay-duo3.jpg"); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; background: var(--ink); padding-top: calc(var(--ann-h) + var(--nav-h)); }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: var(--ink) url("../img/sk-hero.jpg") center 18% / cover no-repeat; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.05) 34%, rgba(0,0,0,0.72) 100%); }
.hero-in { position: relative; z-index: 1; width: 100%; padding: 0 clamp(1rem, 3vw, 2.2rem) clamp(2rem, 5vw, 4rem); color: var(--pure); }
.hero-in .mega { mix-blend-mode: difference; }
.hero-tag { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; align-items: flex-end; margin-top: 1.4rem; }
.hero-tag .lede { color: rgba(255,255,255,0.85); }
.hero-marq { position: absolute; top: calc(var(--ann-h) + var(--nav-h) + 8px); left: 0; right: 0; z-index: 1; overflow: hidden; }

/* ---------- Statement ---------- */
.statement { text-align: center; }
.statement .h1 { max-width: 20ch; margin-inline: auto; }
.statement .label { display: inline-block; margin-bottom: 1.6rem; color: var(--ink-3); }

/* ---------- Split category ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; }
.split .cat { position: relative; aspect-ratio: 4/5; overflow: hidden; display: flex; align-items: flex-end; padding: clamp(1.4rem, 3vw, 2.4rem); }
.split .cat .ph-img { z-index: 0; }
.split .cat::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.55)); z-index: 1; }
.split .cat-in { position: relative; z-index: 2; color: var(--pure); width: 100%; display: flex; justify-content: space-between; align-items: flex-end; }
.split .cat:hover .ph-img { transform: scale(1.05); }
@media (max-width: 760px) { .split { grid-template-columns: 1fr; } .split .cat { aspect-ratio: 3/4; } }

/* ---------- Product grid ---------- */
.grid-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; margin-bottom: clamp(1.5rem, 3vw, 2.4rem); flex-wrap: wrap; }
.pgrid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.pgrid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card { position: relative; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 0.9rem; display: flex; flex-direction: column; background: var(--paper); transition: background 0.5s; }
.card:hover { background: var(--pure); }
.card .thumb { position: relative; aspect-ratio: 3/4; overflow: hidden; background: #ddd9d0; }
.card .thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 18%; transition: transform 1.1s var(--ease), opacity 0.6s var(--ease); filter: saturate(0.84) contrast(1.03); }
/* Prada-style feature tile inside the grid */
.pgrid .card.feat { grid-column: span 2; grid-row: span 2; }
.pgrid .card.feat .pname { font-family: var(--display); font-weight: 700; font-size: clamp(1rem, 1.6vw, 1.4rem); letter-spacing: -0.01em; text-transform: uppercase; }
@media (max-width: 480px) { .pgrid .card.feat { grid-column: span 1; grid-row: span 1; } }
.card .thumb img.alt { opacity: 0; }
.card:hover .thumb img { transform: scale(1.04); }
.card:hover .thumb img.alt { opacity: 1; }
.card .thumb .ph-img { transition: transform 1s var(--ease), opacity 0.5s; }
.card .quick { position: absolute; left: 0.6rem; right: 0.6rem; bottom: 0.6rem; z-index: 3; background: var(--pure); color: var(--ink); border: 0; padding: 0.85rem; font-family: var(--sans); font-weight: 500; font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; transform: translateY(calc(100% + 0.6rem)); transition: transform 0.5s var(--ease); }
.card:hover .quick { transform: none; }
.card .meta { display: flex; justify-content: space-between; align-items: baseline; gap: 0.6rem; margin-top: 0.9rem; }
.card .pname { font-family: var(--sans); font-weight: 500; font-size: 0.72rem; letter-spacing: 0.04em; text-transform: uppercase; }
.card .pprice { font-family: var(--sans); font-weight: 400; font-size: 0.72rem; letter-spacing: 0.04em; }
.card .code { margin-top: 0.35rem; }
.card .tag { position: absolute; top: 0.9rem; left: 0.9rem; z-index: 3; background: var(--ink); color: var(--paper); font-size: 0.5rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 0.3rem 0.5rem; }
@media (max-width: 980px) { .pgrid, .pgrid.cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pgrid, .pgrid.cols-3 { grid-template-columns: 1fr; } }

/* ---------- Full-bleed editorial ---------- */
.editorial { position: relative; min-height: 92vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.editorial .ph-img { z-index: 0; }
.editorial::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.4); z-index: 1; }
.editorial-in { position: relative; z-index: 2; text-align: center; color: var(--pure); padding: 2rem; max-width: 100%; }
.editorial-in .mega { line-height: 0.86; font-size: clamp(2.4rem, 10vw, 9.5rem); letter-spacing: -0.02em; }

/* ---------- Marquee band ---------- */
.mband { border-block: 1px solid var(--line); overflow: hidden; padding: 1.1rem 0; }
.invert .mband { border-color: var(--line-inv); }
.mband-track { display: inline-flex; white-space: nowrap; animation: tick 30s linear infinite; }
.mband-track span { font-family: var(--display); font-weight: 800; font-size: clamp(1.6rem, 4vw, 3rem); text-transform: uppercase; letter-spacing: -0.02em; padding: 0 1.4rem; }
.mband-track span em { font-style: normal; -webkit-text-stroke: 1px currentColor; color: transparent; }

/* ---------- Marquee (thin, hero) ---------- */
.thinmarq { overflow: hidden; }
.thinmarq-track { display: inline-flex; white-space: nowrap; animation: tick 28s linear infinite; }
.thinmarq-track span { font-family: var(--sans); font-weight: 500; font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(255,255,255,0.8); padding: 0 1.6rem; }

/* ---------- Marquee list (world / values) ---------- */
.vlist { border-top: 1px solid var(--line); }
.invert .vlist { border-color: var(--line-inv); }
.vrow { display: grid; grid-template-columns: 60px 1fr 1.3fr; gap: clamp(1rem,3vw,3rem); align-items: baseline; padding: clamp(1.4rem,3vw,2.4rem) 0; border-bottom: 1px solid var(--line); transition: padding-left 0.5s var(--ease), background 0.5s; }
.invert .vrow { border-color: var(--line-inv); }
.vrow:hover { padding-left: 1rem; }
.vrow .code { color: var(--ink-3); }
.vrow p { color: var(--ink-2); font-size: 0.92rem; max-width: 52ch; }
.invert .vrow p { color: rgba(236,233,226,0.7); }
@media (max-width: 700px) { .vrow { grid-template-columns: 1fr; gap: 0.5rem; } }

/* ---------- Newsletter ---------- */
.join { text-align: center; }
.join .mega { line-height: 0.82; }
.join-form { display: flex; max-width: 520px; margin: 2.4rem auto 0; border-bottom: 1px solid var(--pure); }
.join-form input { flex: 1; background: none; border: 0; color: var(--pure); font-family: var(--sans); font-size: 0.9rem; padding: 1rem 0.2rem; outline: none; }
.join-form input::placeholder { color: rgba(236,233,226,0.5); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.66rem; }
.join-form button { background: none; border: 0; color: var(--pure); font-size: 0.64rem; letter-spacing: 0.24em; text-transform: uppercase; padding: 0 0.4rem; }

/* ---------- Footer ---------- */
.foot { background: var(--ink); color: var(--paper); padding: clamp(3rem,6vw,5rem) clamp(1rem,3vw,2.2rem) 2rem; }
.foot-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-inv); }
.foot h4 { font-family: var(--sans); font-weight: 500; font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(236,233,226,0.5); margin-bottom: 1.2rem; }
.foot a.fl { display: block; font-size: 0.82rem; padding: 0.32rem 0; color: rgba(236,233,226,0.85); transition: color 0.3s, padding-left 0.3s; }
.foot a.fl:hover { color: var(--pure); padding-left: 0.3rem; }
.foot-word { margin: 2.5rem 0 1.5rem; }
.foot-word .wm { font-size: clamp(3.2rem, 17vw, 17rem); align-items: flex-start; color: var(--paper); }
.foot-word .wm b { letter-spacing: -0.04em; }
.foot-word .wm i { margin-left: 0.06em; }
.foot-base { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(236,233,226,0.5); }
@media (max-width: 760px) { .foot-top { grid-template-columns: 1fr 1fr; } }

/* ---------- PDP ---------- */
.pdp { display: grid; grid-template-columns: 1.35fr 0.65fr; gap: 0; padding-top: calc(var(--ann-h) + var(--nav-h)); }
@media (max-width: 900px) { .pdp { grid-template-columns: 1fr; } }
.pdp-media { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.pdp-media .ph { aspect-ratio: 3/4; }
.pdp-media .ph.full { grid-column: 1 / -1; aspect-ratio: 16/12; }
@media (max-width: 900px) { .pdp-media { grid-template-columns: 1fr 1fr; } }
.pdp-info { padding: clamp(1.6rem,4vw,3.4rem); position: sticky; top: calc(var(--ann-h) + var(--nav-h)); align-self: start; border-left: 1px solid var(--line); }
.pdp-info .code { display: block; margin-bottom: 1rem; }
.pdp-info .price { font-family: var(--sans); font-weight: 400; font-size: 1.1rem; margin: 1.2rem 0; }
.pdp-info .desc { color: var(--ink-2); font-size: 0.9rem; line-height: 1.6; margin: 1.4rem 0; max-width: 44ch; }
.optrow { margin: 1.6rem 0; }
.optrow .label { display: block; margin-bottom: 0.8rem; color: var(--ink-2); }
.sizes { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.size { min-width: 46px; padding: 0.7rem 0.6rem; border: 1px solid var(--line); background: none; font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.06em; transition: all 0.3s; }
.size:hover { border-color: var(--ink); }
.size.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.swatches { display: flex; gap: 0.6rem; }
.sw { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line); position: relative; }
.sw.on::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid var(--ink); }
.pdp-info .btn { margin-top: 1.4rem; }
.acc { border-top: 1px solid var(--line); margin-top: 2rem; }
.acc details { border-bottom: 1px solid var(--line); }
.acc summary { list-style: none; display: flex; justify-content: space-between; padding: 1.1rem 0; font-family: var(--sans); font-weight: 500; font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "+"; font-family: var(--display); }
.acc details[open] summary::after { content: "–"; }
.acc .ac { padding-bottom: 1.2rem; color: var(--ink-2); font-size: 0.86rem; line-height: 1.6; }

/* ---------- Page hero (interior) ---------- */
.phero { min-height: 56vh; display: flex; align-items: flex-end; padding: 0 clamp(1rem,3vw,2.2rem) clamp(2rem,4vw,3.5rem); padding-top: calc(var(--ann-h) + var(--nav-h) + 3rem); }

/* ---------- Filters ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 1.2rem 0; }
.chip { font-family: var(--sans); font-weight: 500; font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; border: 1px solid var(--line); background: none; padding: 0.6rem 1rem; transition: all 0.3s; }
.chip:hover { border-color: var(--ink); }
.chip.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ---------- Toast + cart flash ---------- */
.toast { position: fixed; left: 50%; bottom: 1.6rem; transform: translate(-50%, 200%); background: var(--ink); color: var(--paper); padding: 1rem 1.8rem; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; z-index: 3000; transition: transform 0.6s var(--ease); }
.toast.show { transform: translate(-50%, 0); }

/* ---------- Stylist (AI) ---------- */
.sf { position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 1300; border-radius: 999px; background: var(--ink); color: var(--paper); border: 0; font-family: var(--sans); font-weight: 500; font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase; padding: 0.9rem 1.5rem; transition: transform 0.4s var(--ease), background 0.4s; }
.sf:hover { transform: translateY(-2px); }
.sp { position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 1350; width: min(400px, calc(100vw - 1.6rem)); height: min(600px, calc(100svh - 2rem)); background: var(--paper); border: 1px solid var(--ink); display: flex; flex-direction: column; opacity: 0; visibility: hidden; transform: translateY(24px); transition: all 0.4s var(--ease); }
.sp.open { opacity: 1; visibility: visible; transform: none; }
.sp-h { display: flex; justify-content: space-between; align-items: center; padding: 1.1rem 1.3rem; border-bottom: 1px solid var(--line); }
.sp-h .h3 { font-size: 1rem; }
.sp-h button { background: none; border: 0; font-size: 1.2rem; }
.sp-b { flex: 1; overflow-y: auto; padding: 1.3rem; display: flex; flex-direction: column; gap: 0.8rem; }
.m { max-width: 86%; font-size: 0.84rem; line-height: 1.5; }
.m.ai { align-self: flex-start; border-left: 2px solid var(--ink); padding-left: 0.9rem; color: var(--ink-2); }
.m.ai b { color: var(--ink); }
.m.u { align-self: flex-end; background: var(--ink); color: var(--paper); padding: 0.7rem 1rem; }
.sp-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; padding: 0 1.3rem 0.9rem; }
.sp-chips button { font-family: var(--sans); font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid var(--line); background: none; padding: 0.45rem 0.7rem; }
.sp-f { display: flex; border-top: 1px solid var(--line); }
.sp-f input { flex: 1; border: 0; background: none; padding: 1rem 1.3rem; font-family: var(--sans); font-size: 0.84rem; outline: none; }
.sp-f button { border: 0; background: none; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 0 1.3rem; }
.typing i { display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: var(--ink); margin-right: 3px; animation: blink 1.2s infinite; }
.typing i:nth-child(2){animation-delay:.2s} .typing i:nth-child(3){animation-delay:.4s}
@keyframes blink { 0%,80%,100%{opacity:.2} 40%{opacity:1} }

/* ============================================================
   Parity pass: search, wishlist, sort, checkout, breadcrumbs
   ============================================================ */
/* Focus visibility (a11y) */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

/* Search overlay */
.so { position: fixed; inset: 0; z-index: 2600; background: var(--paper); transform: translateY(-101%); transition: transform 0.5s var(--ease); display: flex; flex-direction: column; }
.so.on { transform: none; }
.so-h { display: flex; align-items: center; gap: 1rem; padding: 1.2rem clamp(1rem,3vw,2.2rem); border-bottom: 1px solid var(--line); }
.so-h input { flex: 1; border: 0; background: none; outline: none; font-family: var(--display); font-weight: 700; font-size: clamp(1.4rem, 4vw, 2.6rem); text-transform: uppercase; letter-spacing: -0.01em; color: var(--ink); }
.so-h input::placeholder { color: var(--ink-3); }
.so-h button { background: none; border: 0; font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 500; }
.so-b { flex: 1; overflow-y: auto; padding: 1.4rem clamp(1rem,3vw,2.2rem) 3rem; }
.so-hint { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 1rem; }
.so-b .pgrid { border-top: 1px solid var(--line); border-left: 1px solid var(--line); }

/* Wishlist heart */
.wish { position: absolute; top: 0.7rem; right: 0.7rem; z-index: 4; width: 34px; height: 34px; border-radius: 50%; border: 0; background: rgba(255,255,255,0.92); color: var(--ink); font-size: 0.95rem; line-height: 1; display: grid; place-items: center; opacity: 0; transition: opacity 0.35s, transform 0.35s; }
.card:hover .wish, .wish.onw { opacity: 1; }
.wish:hover { transform: scale(1.1); }
.wish.onw { color: #b0322b; }
.pdp .wish-pdp { background: none; border: 1px solid var(--line); padding: 0.9rem; width: 52px; display: grid; place-items: center; font-size: 1rem; transition: border-color 0.3s, color 0.3s; }
.pdp .wish-pdp.onw { color: #b0322b; border-color: var(--ink); }
.atc-line { display: grid; grid-template-columns: 1fr 52px; gap: 0.6rem; }

/* Sort select */
.sortbar { display: flex; justify-content: flex-end; }
.sort { font-family: var(--sans); font-weight: 500; font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; border: 1px solid var(--line); background: var(--paper); padding: 0.6rem 0.9rem; color: var(--ink); }

/* Breadcrumb */
.crumb { font-size: 0.56rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3); display: block; margin-bottom: 1rem; }
.crumb a:hover { color: var(--ink); }

/* Checkout */
.co { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem,4vw,4rem); padding-top: calc(var(--ann-h) + var(--nav-h) + 3rem); padding-bottom: clamp(4rem,8vw,7rem); }
@media (max-width: 900px) { .co { grid-template-columns: 1fr; } }
.co-form .label { display: block; margin: 1.4rem 0 0.5rem; color: var(--ink-2); }
.co-form input, .co-form select { width: 100%; border: 1px solid var(--line); background: var(--pure); padding: 0.95rem 1rem; font-family: var(--sans); font-size: 0.9rem; outline: none; transition: border-color 0.3s; }
.co-form input:focus { border-color: var(--ink); }
.co-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.co-sum { border: 1px solid var(--line); padding: 1.6rem; align-self: start; position: sticky; top: calc(var(--ann-h) + var(--nav-h) + 1rem); background: var(--pure); }
.co-sum .cd-it { grid-template-columns: 52px 1fr auto; }
.co-sum .cd-it img { width: 52px; height: 66px; }
.co-tot { display: flex; justify-content: space-between; padding: 1rem 0 0.4rem; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; }
.co-tot.grand { border-top: 1px solid var(--line); margin-top: 0.6rem; padding-top: 1rem; font-weight: 500; }

/* Recently viewed */
.recent-strip { border-top: 1px solid var(--line); }

/* ============================================================
   Mobile-first pass: app tab bar, touch targets, 2-up grid
   ============================================================ */
html { -webkit-tap-highlight-color: transparent; }
button, a, select, input { touch-action: manipulation; }
/* iOS: inputs under 16px trigger auto-zoom on focus */
@media (max-width: 860px) {
  .co-form input, .sp-f input, .join-form input, .cd input, .sort { font-size: 16px; }
}

/* App-style bottom tab bar (phones only) */
.tabbar { display: none; }
@media (max-width: 860px) {
  .tabbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 2200; display: grid; grid-template-columns: repeat(5, 1fr); background: rgba(236,233,226,0.96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-top: 1px solid var(--line); padding-bottom: env(safe-area-inset-bottom); }
  .tabbar button, .tabbar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; height: 56px; background: none; border: 0; font-family: var(--sans); font-weight: 500; font-size: 0.52rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-2); }
  .tabbar .tglyph { width: 16px; height: 15px; background: currentColor; -webkit-mask: url("../img/pk-map-big.png") center / contain no-repeat; mask: url("../img/pk-map-big.png") center / contain no-repeat; }
  .tabbar .on { color: var(--ink); font-weight: 500; }
  .tabbar .tb-n { position: relative; }
  /* lift floating elements above the bar */
  .sf { bottom: calc(68px + env(safe-area-inset-bottom)); }
  .toast { bottom: calc(76px + env(safe-area-inset-bottom)); }
  .sp { bottom: calc(68px + env(safe-area-inset-bottom)); height: min(560px, calc(100svh - 140px)); }
  .cd { padding-bottom: env(safe-area-inset-bottom); }
  body { padding-bottom: calc(56px + env(safe-area-inset-bottom)); }
  .foot { padding-bottom: calc(2rem + 56px + env(safe-area-inset-bottom)); }
}

/* Touch devices: hearts always visible, no hover-dependent UI */
@media (hover: none) {
  .wish { opacity: 1; background: rgba(255,255,255,0.85); }
  .card .quick { display: none; }
  .card:hover .thumb img { transform: none; }
  .card .thumb img.alt { display: none; }
  .panelless { display: none; }
}

/* Phones: luxury 2-up grid, compact meta */
@media (max-width: 480px) {
  .pgrid, .pgrid.cols-3 { grid-template-columns: 1fr 1fr; }
  .pgrid .card.feat { grid-column: span 2; grid-row: auto; }
  .card { padding: 0.5rem; }
  .card .meta { flex-direction: column; align-items: flex-start; gap: 0.15rem; margin-top: 0.7rem; }
  .card .pname { font-size: 0.6rem; letter-spacing: 0.12em; }
  .card .pprice { font-size: 0.64rem; }
  .card .code { font-size: 0.5rem; margin-top: 0.25rem; }
  .card .tag { top: 0.6rem; left: 0.6rem; font-size: 0.44rem; }
  .wish { width: 30px; height: 30px; font-size: 0.85rem; top: 0.55rem; right: 0.55rem; }
  .filters .sort { width: 100%; }
  .filters { gap: 0.4rem; }
  .chip { padding: 0.55rem 0.8rem; font-size: 0.54rem; }
  .grid-head { align-items: baseline; }
  .co-sum { position: static; }
}
@media (max-width: 900px) {
  .pdp-info { position: static; top: auto; border-left: 0; border-top: 1px solid var(--line); }
  .pdp-media { grid-template-columns: 1fr; }
  .pdp-media .ph.full { grid-column: auto; }
}

/* ============================================================
   v2 — Prada pass: reveals, stamp, diptych, lookbook, services
   ============================================================ */
/* Curtain reveal on imagery */
.clip { clip-path: inset(0 0 100% 0); transition: clip-path 0.7s var(--ease); }
.clip.in { clip-path: inset(0 0 0 0); }
@media (prefers-reduced-motion: reduce) { .clip { clip-path: none; } }

/* Page fade veil (map flash on transitions) */
.veil { position: fixed; inset: 0; background: var(--paper); z-index: 4000; pointer-events: none; opacity: 0; transition: opacity 0.45s var(--ease); }
.veil::after { content: ""; position: absolute; left: 50%; top: 50%; width: 110px; height: 104px; transform: translate(-50%,-50%); background: var(--ink); opacity: 0.9;
  -webkit-mask: url("../img/pk-map-big.png") center / contain no-repeat; mask: url("../img/pk-map-big.png") center / contain no-repeat; }
.veil.on { opacity: 1; pointer-events: all; }

/* Hero map watermark */
.hero-map { position: absolute; right: -6vw; bottom: -4vh; width: clamp(300px, 44vw, 720px); aspect-ratio: 512/512; z-index: 0; background: #fff; opacity: 0.09; pointer-events: none;
  -webkit-mask: url("../img/pk-map-big.png") center / contain no-repeat; mask: url("../img/pk-map-big.png") center / contain no-repeat; }

/* Made in Pakistan micro-badge (labels, sections) */
.mip { display: inline-flex; align-items: center; gap: 0.55em; }
.mip .pkg { width: 1.35em; height: 1.25em; vertical-align: 0; }

/* ---------- Cart drawer ---------- */
.cd-ov { position: fixed; inset: 0; background: rgba(10,10,9,0.45); z-index: 2400; opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s; }
.cd-ov.on { opacity: 1; visibility: visible; }
.cd { position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100vw); background: var(--paper); z-index: 2500; display: flex; flex-direction: column; transform: translateX(101%); transition: transform 0.5s var(--ease); border-left: 1px solid var(--line); }
.cd.on { transform: none; }
.cd-h { display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 1.4rem; border-bottom: 1px solid var(--line); }
.cd-h .h3 { font-size: 1rem; }
.cd-h button { background: none; border: 0; font-size: 1.3rem; line-height: 1; }
.cd-ship { padding: 0.8rem 1.4rem; border-bottom: 1px solid var(--line); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2); }
.cd-ship b { color: var(--ink); }
.cd-bar { height: 2px; background: var(--line); margin-top: 0.6rem; }
.cd-bar i { display: block; height: 100%; background: var(--ink); transition: width 0.5s var(--ease); }
.cd-b { flex: 1; overflow-y: auto; padding: 1rem 1.4rem; }
.cd-empty { padding: 3rem 0; text-align: center; color: var(--ink-3); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; }
.cd-it { display: grid; grid-template-columns: 64px 1fr auto; gap: 0.9rem; align-items: center; padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
.cd-it img { width: 64px; height: 80px; object-fit: cover; }
.cd-it .n { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
.cd-it .c { font-size: 0.58rem; color: var(--ink-3); letter-spacing: 0.1em; margin-top: 0.2rem; }
.cd-qty { display: inline-flex; align-items: center; gap: 0.6rem; margin-top: 0.5rem; }
.cd-qty button { width: 22px; height: 22px; border: 1px solid var(--line); background: none; font-size: 0.8rem; line-height: 1; }
.cd-qty span { font-size: 0.72rem; min-width: 14px; text-align: center; }
.cd-it .p { font-size: 0.74rem; }
.cd-f { border-top: 1px solid var(--line); padding: 1.1rem 1.4rem 1.3rem; }
.cd-tot { display: flex; justify-content: space-between; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1rem; }
.cd-f .btn { width: 100%; margin-bottom: 0.6rem; }
.cd-note { font-size: 0.56rem; color: var(--ink-3); text-align: center; letter-spacing: 0.1em; text-transform: uppercase; }

/* Made in Pakistan stamp (transparent mark; invert on dark) */
.stamp { display: inline-block; }
.stamp img { width: clamp(110px, 12vw, 170px); height: auto; display: block; }
.stamp--hero { position: absolute; right: clamp(1rem,3vw,2.2rem); bottom: clamp(2rem,5vw,4rem); z-index: 2; opacity: 0.95; }
.stamp--hero img { filter: invert(1) drop-shadow(0 2px 14px rgba(0,0,0,0.35)); }
.stamp--pdp img { width: 120px; margin-top: 1.8rem; }
.foot .stamp img { width: 130px; margin-top: 1.6rem; filter: invert(1); }

/* Editorial diptych */
.diptych { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2px; align-items: stretch; }
.diptych .ph { aspect-ratio: auto; min-height: 72vh; }
.diptych .dip-txt { background: var(--ink); color: var(--paper); display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(1.6rem,4vw,3rem); gap: 1.2rem; }
.diptych .dip-txt .h2 { color: var(--pure); }
.diptych .dip-txt p { color: rgba(236,233,226,0.75); font-size: 0.92rem; max-width: 40ch; }
.dip-num { font-family: var(--display); font-weight: 800; font-size: clamp(3rem, 8vw, 7rem); line-height: 0.9; color: var(--pure); }
.dip-num small { display: block; font-family: var(--sans); font-weight: 500; font-size: 0.6rem; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(236,233,226,0.6); margin-top: 0.7rem; }
@media (max-width: 800px) { .diptych { grid-template-columns: 1fr; } .diptych .ph { min-height: 56vh; } }

/* Lookbook horizontal rail */
.rail { display: grid; grid-auto-flow: column; grid-auto-columns: min(420px, 78vw); gap: 2px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.rail::-webkit-scrollbar { display: none; }
.rail .ph { aspect-ratio: 3/4; scroll-snap-align: start; }
.rail-cap { display: flex; justify-content: space-between; align-items: center; padding: 0.8rem 0 0; }

/* Size chart */
.sizechart { width: 100%; border-collapse: collapse; font-size: 0.74rem; margin-top: 0.6rem; }
.sizechart th, .sizechart td { border: 1px solid var(--line); padding: 0.55rem 0.4rem; text-align: center; font-weight: 400; }
.sizechart th { font-family: var(--sans); font-weight: 500; font-size: 0.56rem; letter-spacing: 0.14em; text-transform: uppercase; background: var(--pure); }

/* Services page */
.svc { max-width: 720px; }
.svc h2 { margin: 3rem 0 1rem; }
.svc p, .svc li { color: var(--ink-2); font-size: 0.92rem; line-height: 1.7; }
.svc ul { padding-left: 1.1rem; margin-top: 0.6rem; }

/* PDP gallery imgs */
.pdp-media .ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 15%; filter: saturate(0.92) contrast(1.02); }

/* ============================================================
   The human layer — serif voice, captions, the founder,
   editions, interludes. Type warms up; the grid loosens.
   ============================================================ */
:root { --serif: "Instrument Serif", Georgia, "Times New Roman", serif; --urdu: "Noto Nastaliq Urdu", serif; }

/* Editorial serif voice */
.eq { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(1.6rem, 3.6vw, 2.9rem); line-height: 1.22; letter-spacing: 0; text-transform: none; }
.eq-att { display: block; font-family: var(--sans); font-style: normal; font-weight: 500; font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-3); margin-top: 1.4rem; }
.statement .eq { max-width: 26ch; }

/* Urdu accent — used sparingly, always paired with translation */
.urdu { font-family: var(--urdu); font-style: normal; font-size: 1.35em; line-height: 1; letter-spacing: 0; text-transform: none; }

/* Photo captions — place and hour, like a contact sheet note */
.pcap { display: block; font-family: var(--sans); font-weight: 400; font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); padding: 0.55rem 0.1rem 0; }
.rail-item { display: flex; flex-direction: column; scroll-snap-align: start; }
.rail-item .ph { aspect-ratio: 3/4; }

/* The founder's note */
.founder { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 6vw, 5.5rem); align-items: center; padding: clamp(4rem, 9vw, 8rem) clamp(1rem, 4vw, 3.4rem); border-top: 1px solid var(--line); }
.founder .fph { position: relative; overflow: hidden; aspect-ratio: 4/5; }
.founder .fph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85) contrast(1.02); }
.founder .ftx p { font-family: var(--serif); font-style: italic; font-size: clamp(1.15rem, 1.9vw, 1.55rem); line-height: 1.5; color: var(--ink); max-width: 44ch; }
.founder .ftx p + p { margin-top: 1.2em; }
.sig { display: block; font-family: var(--serif); font-style: italic; font-size: 2.1rem; margin-top: 1.8rem; transform: rotate(-2deg); transform-origin: left; }
.sig small { display: block; font-family: var(--sans); font-style: normal; font-size: 0.56rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ink-3); margin-top: 0.5rem; transform: rotate(2deg); }
@media (max-width: 800px) { .founder { grid-template-columns: 1fr; } .founder .fph { max-width: 420px; } }

/* Editorial interlude tile inside product grids */
.card-note { display: flex; flex-direction: column; justify-content: space-between; gap: 2rem; background: var(--ink); color: var(--paper); padding: clamp(1.4rem, 2.5vw, 2.2rem); min-height: 100%; }
.card-note .eq { font-size: clamp(1.15rem, 1.8vw, 1.6rem); color: var(--pure); }
.card-note .ulink { color: rgba(236,233,226,0.85); align-self: flex-start; }
.card-note .pkg { background: rgba(236,233,226,0.85); }
@media (max-width: 480px) { .card-note { grid-column: span 2; min-height: 200px; } }

/* Edition + fit + delivery lines on the PDP */
.edition { display: inline-flex; align-items: center; gap: 0.6em; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-2); border: 1px solid var(--line-2); padding: 0.5rem 0.9rem; margin-top: 1rem; }
.edition::before { content: ""; width: 14px; height: 13px; background: var(--ink); -webkit-mask: url("../img/pk-map-big.png") center / contain no-repeat; mask: url("../img/pk-map-big.png") center / contain no-repeat; }
.fitline { font-family: var(--serif); font-style: italic; font-size: 1.02rem; line-height: 1.5; color: var(--ink-2); margin-top: 1.1rem; }
.delivery { display: flex; flex-direction: column; gap: 0.35rem; margin-top: 1.2rem; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.delivery span { font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-2); }
.delivery b { color: var(--ink); font-weight: 500; }
.delivery a { color: var(--ink-2); text-decoration: underline; text-underline-offset: 3px; }

/* Footer sign-off */
.foot-note { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: rgba(236,233,226,0.65); margin-top: 1.2rem; max-width: 34ch; }
.foot-urdu { color: rgba(236,233,226,0.5); font-size: 0.95rem; margin-top: 0.8rem; }

/* ============================================================
   Professional pass (v16) — store discipline over concept theatrics.
   Static announce bar, restrained type scale, one warm accent,
   commerce chrome in the footer, quieter motion.
   ============================================================ */
:root { --accent: #8a6a2f; } /* zardozi gold — the only chroma in the chrome */

/* Announcement bar: static, one line. Marquees read as template. */
.ticker--static .ticker-track { animation: none; width: 100%; justify-content: center; }
.ticker--static .ticker-track span::after { display: none; }
.ticker--static .ticker-track span { padding: 0 1rem; letter-spacing: 0.24em; }

/* Type discipline: mega stays a brand moment, not a page pattern */
.mega { font-size: clamp(2.8rem, 10vw, 9.5rem); }
.phero .mega { font-size: clamp(1.9rem, 4.2vw, 3.4rem); letter-spacing: -0.02em; }
.phero { min-height: 26vh; }
.editorial-in .mega { font-size: clamp(1.9rem, 6vw, 5.2rem); }
.join .mega { font-size: clamp(2rem, 5vw, 4.4rem); }

/* Retire the concept-sketch layers */
.hero-map { display: none; }
.veil::after { display: none; }
.veil { transition: opacity 0.28s var(--ease); }

/* Quieter reveals */
.rv { transform: translateY(12px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }

/* Uniform product grid — no featured span */
.pgrid .card.feat { grid-column: auto; grid-row: auto; }

/* Accent, used sparingly */
.wish.onw { color: var(--accent); }
.pdp .wish-pdp.onw { color: var(--accent); border-color: var(--ink); }
.edition { color: var(--accent); border-color: rgba(138,106,47,0.45); }
.edition::before { background: var(--accent); }
.card .tag { background: var(--paper); color: var(--ink); border: 1px solid var(--line-2); }

/* Bag drawer must sit above the search overlay */
.cd-ov { z-index: 2650; }
.cd { z-index: 2700; }

/* Footer commerce chrome */
.foot-pay { display: flex; flex-wrap: wrap; gap: 0.4rem 1.6rem; padding: 1.2rem 0 0; margin-top: 2.4rem; border-top: 1px solid rgba(236,233,226,0.14); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(236,233,226,0.55); }
.foot-base a { color: rgba(236,233,226,0.6); }
.foot-base a:hover { color: var(--paper); }
