/* ==========================================================================
   SECRET SHELF — theme stylesheet
   White ground, black ink, one blush accent, no rounded corners.
   Inter throughout at negative tracking; Playfair Display logotype.
   Locked light.
   ========================================================================== */

:root{
  --paper:#FFFFFF;
  --paper-2:#F2F2F2;
  --paper-3:#EAEAEA;
  --ink:#0C0C0C;
  --ink-2:#6B6B6B;
  --ink-3:#9A9A9A;
  --ink-4:#C9C9C9;
  --hair:rgba(12,12,12,.14);
  --blush:#EBC9C4;
  --blush-2:#F6E7E3;
  --blush-ink:#7A3F3A;

  --sans:"Inter","Inter Placeholder",-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif;
  --serif:"Playfair Display",Georgia,"Times New Roman",Times,serif;

  --gut:clamp(1.15rem,2.6vw,2.4rem);
  --max:1600px;
  --sec:clamp(4rem,9vw,8rem);
  --bar:80px;
  --ease:cubic-bezier(.22,.68,.16,1);
  color-scheme:light;
}

*,*::before,*::after{box-sizing:border-box}
html{
  -webkit-text-size-adjust:100%;scroll-behavior:smooth;overflow-x:hidden;
  scroll-padding-top:calc(var(--bar) + 20px);background:var(--paper);
}
body{
  margin:0;background:var(--paper);color:var(--ink);
  font-family:var(--sans);font-size:1rem;font-weight:500;line-height:1.3;
  letter-spacing:-.04em;
  -webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}
img,svg,video{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
p{margin:0}
ul,ol{margin:0;padding:0;list-style:none}
button,input,select,textarea{font:inherit;color:inherit;letter-spacing:inherit}
:focus-visible{outline:2px solid var(--ink);outline-offset:2px}

h1,h2,h3,h4{margin:0;font-weight:600;letter-spacing:-.07em;line-height:.94;text-wrap:balance}
.d1{font-size:clamp(2.9rem,12.5vw,12rem);font-weight:700;letter-spacing:-.062em;line-height:.9;white-space:nowrap}
@media (max-width:620px){.d1{white-space:normal}}
.d2{font-size:clamp(2.6rem,7.6vw,7rem);font-weight:600;letter-spacing:-.07em;line-height:.94}
.d3{font-size:clamp(1.9rem,3.4vw,3rem);font-weight:600;letter-spacing:-.05em;line-height:1.04}
.d4{font-size:clamp(1.15rem,1.55vw,1.4rem);font-weight:600;letter-spacing:-.035em;line-height:1.18}

.wrap{max-width:var(--max);margin-inline:auto;padding-inline:var(--gut);width:100%}
.lede{font-size:1rem;font-weight:500;line-height:1.35;color:var(--ink-2);max-width:46ch}
.lede-lg{font-size:clamp(1.5rem,3.1vw,2.9rem);font-weight:500;letter-spacing:-.05em;line-height:1.1;max-width:24ch}
.muted{color:var(--ink-2)}
.sec{padding-block:var(--sec)}
.sec-t{padding-block:clamp(2.6rem,5vw,4.5rem)}
.center{text-align:center}
.mxa{margin-inline:auto}

.eyebrow{
  font-size:.8125rem;font-weight:600;letter-spacing:-.04em;text-transform:uppercase;
  color:var(--ink);display:inline-flex;align-items:center;gap:.5rem;
}
.eyebrow svg{width:17px;height:17px;flex:none}


a.skip{position:absolute;left:-9999px;top:0;z-index:300;background:var(--ink);color:#fff;font-size:.82rem;font-weight:600;padding:.7rem 1.1rem}
a.skip:focus{left:.5rem;top:.5rem}
.screen-reader-text{position:absolute!important;width:1px;height:1px;overflow:hidden;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);word-wrap:normal!important}

/* ---------- nav ---------- */
.nav{position:sticky;top:0;z-index:110;background:var(--paper);border-bottom:1px solid var(--hair)}
.nav-in{display:flex;align-items:center;justify-content:space-between;gap:1.2rem;height:var(--bar);position:relative}
.mark{font-family:var(--serif);font-weight:700;font-size:1.68rem;letter-spacing:-.01em;line-height:1;flex:none;white-space:nowrap}
.nav nav{display:flex;align-items:center;gap:1.35rem;position:absolute;left:50%;transform:translateX(-50%)}
.nav nav a{font-size:1rem;font-weight:500;letter-spacing:-.035em;color:var(--ink);position:relative;padding-block:.2rem}
.nav nav a::after{content:"";position:absolute;left:0;right:0;bottom:0;height:1px;background:var(--ink);transform:scaleX(0);transform-origin:0 50%;transition:transform .35s var(--ease)}
.nav nav a:hover::after,.nav nav a[aria-current="page"]::after{transform:scaleX(1)}
.nav-cta{display:flex;align-items:center;gap:.6rem;flex:none}

/* ---------- buttons: square, hairline, diagonal arrow ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  border:1px solid var(--ink);background:transparent;color:var(--ink);
  padding:.78rem 1.35rem;font-size:1rem;font-weight:500;letter-spacing:-.035em;
  cursor:pointer;border-radius:0;white-space:nowrap;position:relative;overflow:hidden;
  transition:color .35s var(--ease);
}
.btn span{position:relative;z-index:1;display:inline-flex;align-items:center;gap:1.1rem}
.btn::before{content:"";position:absolute;inset:0;background:var(--ink);transform:scaleY(0);transform-origin:50% 100%;transition:transform .4s var(--ease)}
.btn:hover{color:var(--paper)}
.btn:hover::before{transform:scaleY(1)}
.btn svg{width:14px;height:14px;flex:none}
.btn-inv{border-color:#fff;color:#fff}
.btn-inv::before{background:#fff}
.btn-inv:hover{color:var(--ink)}
.btn-fill{background:var(--ink);color:var(--paper)}
.btn-fill::before{background:var(--paper)}
.btn-fill:hover{color:var(--ink)}
.btn-sm{padding:.58rem 1rem;font-size:.9375rem}
.btn-sm span{gap:.85rem}

.burger{display:none;width:44px;height:44px;border:1px solid var(--ink);background:none;align-items:center;justify-content:center;cursor:pointer;flex:none;border-radius:0}
.burger i{display:block;width:17px;height:1.5px;background:var(--ink);position:relative;transition:background .2s}
.burger i::before,.burger i::after{content:"";position:absolute;left:0;width:17px;height:1.5px;background:var(--ink);transition:transform .3s var(--ease)}
.burger i::before{top:-5px}.burger i::after{top:5px}
body.menu-open .burger i{background:transparent}
body.menu-open .burger i::before{transform:translateY(5px) rotate(45deg)}
body.menu-open .burger i::after{transform:translateY(-5px) rotate(-45deg)}
.drawer{
  position:fixed;inset:var(--bar) 0 0;z-index:105;background:var(--paper);
  display:flex;flex-direction:column;justify-content:center;padding:2rem var(--gut) 3rem;
  opacity:0;visibility:hidden;transition:opacity .35s var(--ease),visibility .35s;
}
body.menu-open .drawer{opacity:1;visibility:visible}
.drawer a{
  font-size:clamp(2rem,9vw,3.2rem);font-weight:600;letter-spacing:-.06em;line-height:1;
  padding:.5rem 0;border-bottom:1px solid var(--hair);display:flex;justify-content:space-between;align-items:baseline;
  opacity:0;transform:translateY(12px);transition:opacity .4s var(--ease),transform .4s var(--ease);
}
.drawer a em{font-style:normal;font-size:.8125rem;letter-spacing:-.04em;color:var(--ink-2);font-weight:600}
body.menu-open .drawer a{opacity:1;transform:none}
.drawer .btn{margin-top:2rem;align-self:flex-start;border-bottom:1px solid var(--ink)}

/* ---------- reveal ---------- */
.rv{opacity:0;transform:translateY(18px);transition:opacity .9s var(--ease),transform .9s var(--ease)}
.rv.in{opacity:1;transform:none}
.rv-1{transition-delay:.08s}.rv-2{transition-delay:.16s}.rv-3{transition-delay:.24s}
.rv-4{transition-delay:.32s}.rv-5{transition-delay:.4s}
.scrub span{color:var(--ink-4);transition:color .3s var(--ease)}
.scrub span.on{color:var(--ink)}

/* ---------- hero ---------- */
.hero{position:relative;height:calc(100svh - var(--bar));min-height:540px;overflow:hidden;background:var(--ink)}
.hero-img{position:absolute;inset:0}
.hero-img img{width:100%;height:100%;object-fit:cover;object-position:50% 28%}
.hero-img::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.12) 0%,rgba(0,0,0,.06) 38%,rgba(0,0,0,.58) 100%)}
.hero-in{position:absolute;inset:auto 0 0 0;padding-bottom:clamp(1.8rem,4.5vw,3.6rem);color:#fff}
.hero-in .d1{color:#fff}
.hero-in .rot{display:block}
.hero-copy{display:flex;flex-wrap:wrap;gap:1.3rem 3rem;align-items:flex-end;justify-content:space-between;margin-top:clamp(1.2rem,2.4vw,2rem)}
.hero-copy p{color:rgba(255,255,255,.9);font-size:1rem;font-weight:500;line-height:1.35;max-width:44ch}
.hero-acts{display:flex;gap:.6rem;flex-wrap:wrap}
.scroll-cue{
  position:absolute;right:var(--gut);top:clamp(1.5rem,4vw,3rem);color:#fff;z-index:2;
  font-size:.8125rem;font-weight:600;letter-spacing:-.04em;text-transform:uppercase;
  display:flex;align-items:center;gap:.5rem;
}
.scroll-cue i{display:block;width:34px;height:1px;background:rgba(255,255,255,.5);position:relative;overflow:hidden}
.scroll-cue i::after{content:"";position:absolute;inset:0;background:#fff;animation:cue 2.4s var(--ease) infinite}
@keyframes cue{0%{transform:translateX(-100%)}60%,100%{transform:translateX(100%)}}

/* ---------- stats ---------- */
.stat-head{display:grid;grid-template-columns:minmax(0,.42fr) minmax(0,1.58fr);gap:clamp(1.4rem,4vw,3rem);align-items:start}
.stat-row{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:clamp(1.2rem,2.6vw,2.4rem);margin-top:clamp(3rem,7vw,6rem)}
.stat b{display:block;font-size:clamp(3rem,5.6vw,5.4rem);font-weight:600;letter-spacing:-.07em;line-height:.9}
.stat hr{border:0;border-top:1px solid var(--hair);margin:1.5rem 0 1.15rem}
.stat h4{font-size:clamp(1.05rem,1.5vw,1.35rem);font-weight:600;letter-spacing:-.045em;margin-bottom:.5rem}
.stat p{font-size:1rem;font-weight:500;color:var(--ink-2);line-height:1.3}

/* ---------- brands ---------- */
.brand-head{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(0,.75fr);gap:2rem;align-items:end;margin-bottom:clamp(2.4rem,5vw,4rem)}
.brand-head .lede{margin-top:1.3rem}
.marq{overflow:hidden;position:relative;border-top:1px solid var(--hair)}
.marq.last{border-bottom:1px solid var(--hair)}
.brow{display:flex;width:max-content;animation:slide 60s linear infinite}
.brow.rev{animation-direction:reverse;animation-duration:74s}
@keyframes slide{to{transform:translateX(-50%)}}
.bcell{
  width:clamp(140px,15vw,220px);height:clamp(110px,11vw,168px);flex:none;
  border-right:1px solid var(--hair);display:flex;align-items:center;justify-content:center;
  padding:1rem;text-align:center;
}
.bcell span{
  font-size:clamp(.78rem,1.02vw,1rem);font-weight:600;letter-spacing:-.01em;text-transform:uppercase;
  color:var(--ink-3);line-height:1.15;transition:color .3s var(--ease);
}
.marq:hover .bcell span{color:var(--ink-2)}

/* ---------- for buyers and sellers ---------- */
.bs-cards{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:clamp(.5rem,1vw,.75rem);margin-top:clamp(2rem,4vw,3.4rem);position:relative;z-index:1}
.bs{position:relative;aspect-ratio:4/3;overflow:hidden;display:block;background:var(--ink)}
.bs img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform 1.2s var(--ease)}
.bs:hover img{transform:scale(1.04)}
.bs::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,0) 35%,rgba(0,0,0,.62) 100%)}
.bs-in{position:absolute;inset:auto 0 0 0;z-index:1;padding:clamp(1.2rem,2.4vw,2.2rem);color:#fff;display:flex;align-items:flex-end;justify-content:space-between;gap:1rem}
.bs-in h3{color:#fff;font-size:clamp(1.5rem,2.6vw,2.4rem);letter-spacing:-.05em;max-width:9ch}
.bs-in .go{width:46px;height:46px;flex:none;border:1px solid rgba(255,255,255,.7);display:flex;align-items:center;justify-content:center;transition:background .3s var(--ease),color .3s var(--ease)}
.bs:hover .go{background:#fff;color:var(--ink)}
.bs-in .go svg{width:15px;height:15px}

/* ---------- catalogue promo ---------- */
.cat{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:clamp(2rem,5vw,5rem);align-items:center}
.cat figure{margin:0;overflow:hidden;background:var(--paper-2)}
.cat figure img{width:100%;aspect-ratio:4/3;object-fit:cover}
.pills{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:clamp(1.6rem,3vw,2.4rem)}
.pill{border:1px solid var(--hair);padding:.5rem .9rem;font-size:.9375rem;font-weight:500;letter-spacing:-.035em;color:var(--ink-2)}

/* ---------- why choose us: sticky stack ---------- */
.stk{
  position:sticky;top:calc(var(--bar) + 1.5rem);min-height:clamp(300px,42vh,420px);
  display:grid;grid-template-columns:minmax(0,.24fr) minmax(0,1fr);gap:clamp(1.5rem,4vw,4rem);
  align-items:start;background:var(--paper);padding-top:clamp(1.5rem,3vw,2.5rem);
}
.stk .num{font-size:clamp(4.5rem,9.6vw,9.5rem);font-weight:700;letter-spacing:-.075em;line-height:.82}
.stk h3{font-size:clamp(1.4rem,2.4vw,2.2rem);letter-spacing:-.05em;margin-bottom:.8rem}
.stk p{font-size:clamp(1.05rem,1.5vw,1.4rem);font-weight:500;color:var(--ink-2);line-height:1.3;max-width:none}

/* ---------- full-bleed band ---------- */
.band{position:relative;overflow:hidden;min-height:clamp(420px,62vh,660px);display:flex;align-items:center;background:var(--ink)}
.band > img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0}
.band::after{content:"";position:absolute;inset:0;z-index:1;background:linear-gradient(90deg,rgba(0,0,0,.74) 0%,rgba(0,0,0,.52) 55%,rgba(0,0,0,.3) 100%)}
.band-in{position:relative;z-index:2;color:#fff;width:100%;padding-block:clamp(2.5rem,6vw,5rem)}
.band-in .d2{color:#fff}
.band-grid{display:flex;flex-wrap:wrap;gap:1.6rem 3rem;align-items:flex-end;justify-content:space-between;margin-top:clamp(1.2rem,2.4vw,2rem)}
.band-grid p{color:rgba(255,255,255,.82);font-size:1rem;font-weight:500;line-height:1.4;max-width:42ch}
.band-grid strong{color:#fff;font-weight:600}
.band .eyebrow{color:#fff;margin-bottom:clamp(1rem,2vw,1.6rem)}

/* ---------- faq ---------- */
.faq{display:grid;grid-template-columns:minmax(0,.32fr) minmax(0,.68fr);gap:clamp(2rem,5vw,5rem);align-items:start}
.acc{border-top:1px solid var(--hair)}
.acc-i{border-bottom:1px solid var(--hair)}
.acc-h{display:flex;align-items:center;gap:1.5rem;width:100%;background:none;border:0;cursor:pointer;text-align:left;padding:clamp(1.1rem,2vw,1.55rem) 0}
.acc-h h4{flex:1;font-size:clamp(1.02rem,1.35vw,1.2rem);font-weight:600;letter-spacing:-.04em;transition:opacity .25s}
.acc-h:hover h4{opacity:.55}
.acc-h .ic{position:relative;width:15px;height:15px;flex:none}
.acc-h .ic::before,.acc-h .ic::after{content:"";position:absolute;background:var(--ink);transition:transform .35s var(--ease)}
.acc-h .ic::before{top:7px;left:0;width:15px;height:1.5px}
.acc-h .ic::after{left:6.75px;top:0;width:1.5px;height:15px}
.acc-i.open .acc-h .ic::after{transform:scaleY(0)}
.acc-p{overflow:hidden;height:0;transition:height .45s var(--ease)}
.acc-p p{padding-bottom:clamp(1.1rem,2vw,1.55rem);color:var(--ink-2);font-size:1rem;font-weight:500;line-height:1.4;max-width:70ch}

/* ---------- footer ---------- */
footer{padding:0}
.foot{background:var(--paper-2);padding:clamp(1.8rem,4vw,3.4rem) var(--gut)}
.foot-top{max-width:var(--max);margin-inline:auto}
.foot-top{display:grid;grid-template-columns:minmax(0,.24fr) minmax(0,1fr);gap:clamp(1.5rem,4vw,3rem);align-items:start}
.foot-nav{display:flex;flex-wrap:wrap;justify-content:space-between;gap:1rem 2rem;padding-bottom:1.5rem;border-bottom:1px solid var(--hair)}
.foot-nav a{font-size:1rem;font-weight:500;letter-spacing:-.035em}
.foot-nav a:hover{opacity:.55}
.foot-cta{display:flex;flex-wrap:wrap;align-items:flex-end;justify-content:space-between;gap:1.5rem;margin-top:clamp(1.6rem,3.4vw,2.6rem)}
.foot-cta h3{font-size:clamp(1.7rem,3.4vw,3rem);letter-spacing:-.055em;color:var(--ink-3)}
.socials{display:flex;gap:.5rem}
.socials a{width:38px;height:38px;border:1px solid var(--ink);display:flex;align-items:center;justify-content:center;transition:background .28s var(--ease),color .28s var(--ease)}
.socials a:hover{background:var(--ink);color:var(--paper-2)}
.socials svg{width:16px;height:16px}
.foot-bot{display:flex;flex-wrap:wrap;gap:.6rem 1.9rem;margin-top:clamp(1.8rem,3.4vw,2.6rem);font-size:.875rem;font-weight:500;color:var(--ink-2)}
.foot-bot a:hover{color:var(--ink)}
.foot-note{margin-top:1.5rem;font-size:.8125rem;font-weight:500;color:var(--ink-3);line-height:1.45;max-width:92ch}
.foot-note a{color:var(--ink-2);border-bottom:1px solid var(--ink-4)}
.foot .mark{display:inline-block;margin-bottom:.4rem}

/* ---------- page header ---------- */
.ph{padding-block:clamp(2.6rem,6vw,5.5rem) clamp(2rem,4vw,3.5rem);border-bottom:1px solid var(--hair)}
.ph .crumb{font-size:.875rem;font-weight:500;color:var(--ink-2);margin-bottom:clamp(1.5rem,4vw,3rem)}
.ph .crumb a:hover{color:var(--ink)}
.ph .d2{margin-block:1rem .2rem}
.ph-foot{display:flex;flex-wrap:wrap;gap:1.2rem 3rem;align-items:flex-end;justify-content:space-between;margin-top:clamp(1.4rem,3vw,2.2rem)}

/* ---------- generic ---------- */
.g2{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:clamp(1.5rem,3.4vw,3.4rem)}
.g3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:clamp(1.4rem,2.6vw,2.4rem)}
.g4{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:clamp(1.2rem,2.4vw,2.2rem)}
.split-head{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(0,.8fr);gap:clamp(1.5rem,4vw,3.4rem);align-items:end;margin-bottom:clamp(2.4rem,5vw,4rem)}
.card{border-top:1px solid var(--ink);padding-top:1.15rem}
.card .n{display:block;font-size:.8125rem;font-weight:600;letter-spacing:-.04em;color:var(--ink-2);margin-bottom:1.6rem}
.card h4{font-size:clamp(1.05rem,1.4vw,1.28rem);font-weight:600;letter-spacing:-.045em;margin-bottom:.55rem}
.card p{font-size:1rem;font-weight:500;color:var(--ink-2);line-height:1.34}
figure.fig{margin:0}
figure.fig img{width:100%;aspect-ratio:4/3;object-fit:cover;background:var(--paper-2)}
figure.fig figcaption{padding-top:.9rem;font-size:.9375rem;font-weight:500;color:var(--ink-2);line-height:1.35}
figure.fig figcaption b{display:block;color:var(--ink);font-weight:600;margin-bottom:.2rem}
.steps{border-top:1px solid var(--ink)}
.step{display:grid;grid-template-columns:auto minmax(0,.9fr) minmax(0,1.4fr);gap:clamp(1rem,3vw,3rem);align-items:start;padding-block:clamp(1.3rem,2.4vw,2rem);border-bottom:1px solid var(--hair)}
.step .sn{font-size:.8125rem;font-weight:600;letter-spacing:-.04em;color:var(--ink-2);padding-top:.3rem}
.step h4{font-size:clamp(1.1rem,1.6vw,1.45rem);font-weight:600;letter-spacing:-.045em}
.step p{font-size:1rem;font-weight:500;color:var(--ink-2);line-height:1.34}
.kv{display:grid;grid-template-columns:auto minmax(0,1fr);gap:.75rem 2rem;font-size:1rem;font-weight:500;border-top:1px solid var(--hair);padding-top:1.2rem}
.kv dt{color:var(--ink-2)}
.kv dd{margin:0}
.quote{font-size:clamp(1.3rem,2.4vw,2.1rem);font-weight:600;letter-spacing:-.05em;line-height:1.12}
.by{margin-top:1rem;font-size:.9375rem;font-weight:500;color:var(--ink-2)}

/* ---------- catalogue tool ---------- */
.tools{display:flex;flex-wrap:wrap;gap:.5rem;align-items:center;padding-bottom:1.5rem;border-bottom:1px solid var(--ink)}
.search{flex:1 1 210px;min-width:0;display:flex;align-items:center;gap:.6rem;border:1px solid var(--hair);padding:.62rem 1rem;transition:border-color .3s var(--ease)}
.search:focus-within{border-color:var(--ink)}
.search svg{width:15px;height:15px;flex:none;color:var(--ink-2)}
.search input{flex:1;min-width:0;background:none;border:0;outline:0;font-size:1rem;font-weight:500}
.search input::placeholder{color:var(--ink-3)}
.chip{border:1px solid var(--hair);background:none;padding:.62rem 1rem;font-size:1rem;font-weight:500;letter-spacing:-.035em;color:var(--ink-2);cursor:pointer;border-radius:0;transition:border-color .25s,color .25s,background .25s}
.chip:hover{border-color:var(--ink);color:var(--ink)}
.chip[aria-pressed="true"]{background:var(--ink);border-color:var(--ink);color:var(--paper)}
.count{font-size:.9375rem;font-weight:500;color:var(--ink-2);margin-left:auto;white-space:nowrap}
.grid-p{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:clamp(1rem,2vw,1.8rem);margin-top:clamp(1.6rem,3vw,2.4rem)}
.prod .im{position:relative;overflow:hidden;background:var(--paper-2)}
.prod .im img{width:100%;aspect-ratio:4/5;object-fit:cover;transition:transform 1s var(--ease)}
.prod:hover .im img{transform:scale(1.04)}
.prod .tag{position:absolute;top:0;left:0;background:var(--ink);color:var(--paper);padding:.28rem .6rem;font-size:.75rem;font-weight:600;letter-spacing:-.03em;text-transform:uppercase}
.prod .in{padding-top:.85rem}
.prod .br{display:block;font-size:.8125rem;font-weight:600;letter-spacing:-.03em;text-transform:uppercase;color:var(--ink-2);margin-bottom:.3rem}
.prod .nm{display:block;font-size:1.05rem;font-weight:600;letter-spacing:-.045em;margin-bottom:.35rem}
.prod .st{display:block;font-size:.9375rem;font-weight:500;color:var(--ink-2);margin-bottom:.7rem}
.prod .pr{display:flex;align-items:baseline;gap:.6rem;border-top:1px solid var(--hair);padding-top:.7rem}
.prod .pr b{font-size:1.15rem;font-weight:600;letter-spacing:-.05em}
.prod .pr s{font-size:.9375rem;font-weight:500;color:var(--ink-3)}
.prod .pr em{font-style:normal;font-size:.875rem;font-weight:600;margin-left:auto}
.empty{border:1px solid var(--hair);padding:3rem 1.5rem;text-align:center;color:var(--ink-2);font-weight:500;margin-top:1.5rem}
.note{font-size:.875rem;font-weight:500;color:var(--ink-3);margin-top:1.6rem}

/* ---------- brand index ---------- */
.az{display:flex;flex-wrap:wrap;gap:.3rem}
.az button{width:36px;height:36px;border:1px solid var(--hair);background:none;color:var(--ink-2);font-size:.9375rem;font-weight:500;cursor:pointer;border-radius:0;transition:border-color .2s,color .2s,background .2s}
.az button:hover:not(:disabled){border-color:var(--ink);color:var(--ink)}
.az button[aria-pressed="true"]{background:var(--ink);border-color:var(--ink);color:var(--paper)}
.az button:disabled{opacity:.3;cursor:default}
.blist{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));border-top:1px solid var(--ink);margin-top:clamp(1.6rem,3vw,2.4rem)}
.bcard{border-bottom:1px solid var(--hair);border-right:1px solid var(--hair);padding:1.3rem 1.4rem;transition:background .3s var(--ease)}
.bcard:hover{background:var(--paper-2)}
.bcard b{display:block;font-size:1.1rem;font-weight:600;letter-spacing:-.04em;text-transform:uppercase;margin-bottom:.25rem}
.bcard span{font-size:.9375rem;font-weight:500;color:var(--ink-2)}

/* ---------- form ---------- */
.form{display:grid;gap:1.1rem}
.row{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1.1rem}
.field{display:flex;flex-direction:column;gap:.45rem}
.field label{font-size:.8125rem;font-weight:600;letter-spacing:-.04em;text-transform:uppercase}
.field label em{font-style:normal;color:var(--ink-3);text-transform:none;font-weight:500}
.field input,.field select,.field textarea{
  background:none;border:0;border-bottom:1px solid var(--hair);border-radius:0;
  padding:.65rem 0;font-size:1rem;font-weight:500;outline:0;transition:border-color .25s var(--ease);
}
.field textarea{min-height:110px;resize:vertical}
.field select{appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%230C0C0C' stroke-width='1.4'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right .2rem center}
.field input:focus,.field select:focus,.field textarea:focus{border-bottom-color:var(--ink)}
.field.bad input,.field.bad select,.field.bad textarea{border-bottom-color:#B3261E}
.err{font-size:.8125rem;font-weight:500;color:#B3261E;display:none}
.field.bad .err{display:block}
.ok{border:1px solid var(--ink);padding:1.8rem;display:none;flex-direction:column;gap:.7rem}
.ok.on{display:flex}
.ok b{font-size:1.2rem;font-weight:600;letter-spacing:-.045em}
.ok p{font-size:1rem;font-weight:500;color:var(--ink-2);line-height:1.35}
.contact{display:grid;grid-template-columns:minmax(0,.42fr) minmax(0,.58fr);gap:clamp(2rem,5vw,5rem);align-items:start}
.info{border-top:1px solid var(--ink)}
.info li{padding-block:1.1rem;border-bottom:1px solid var(--hair);display:flex;flex-direction:column;gap:.3rem}
.info b{font-size:.8125rem;font-weight:600;letter-spacing:-.04em;text-transform:uppercase;color:var(--ink-2)}
.info span,.info a{font-size:1.05rem;font-weight:500;letter-spacing:-.04em}
.info a:hover{opacity:.55}

/* ---------- responsive ---------- */
@media (max-width:1180px){
  .grid-p{grid-template-columns:repeat(3,minmax(0,1fr))}
  .blist{grid-template-columns:repeat(3,minmax(0,1fr))}
  .stat-row{grid-template-columns:repeat(2,minmax(0,1fr));row-gap:2.6rem}
  .stat-head{grid-template-columns:minmax(0,1fr)}
}
@media (max-width:940px){
  .nav nav{display:none}
  .nav-cta .btn{display:none}
  .burger{display:flex}
  .cat,.faq,.contact,.g2,.brand-head,.split-head{grid-template-columns:minmax(0,1fr)}
  .g3,.g4{grid-template-columns:repeat(2,minmax(0,1fr))}
  .step{grid-template-columns:auto minmax(0,1fr)}
  .step p{grid-column:2}
  .stk{grid-template-columns:minmax(0,1fr);gap:.6rem;position:relative;top:auto;min-height:0;padding-block:1.6rem 0;border-bottom:1px solid var(--hair)}
  .foot-top{grid-template-columns:minmax(0,1fr)}
  .blist{grid-template-columns:repeat(2,minmax(0,1fr))}
  .bs-cards{margin-top:1.6rem}
  .hero{height:auto;min-height:0;padding-top:62vh}
}
@media (max-width:620px){
  .stat-row{grid-template-columns:minmax(0,1fr)}
  .grid-p{grid-template-columns:repeat(2,minmax(0,1fr))}
  .g3,.g4,.row,.bs-cards,.blist{grid-template-columns:minmax(0,1fr)}
  .scroll-cue{display:none}
  .foot-nav{flex-direction:column;gap:.7rem}
}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.001ms!important}
  .rv{opacity:1;transform:none}
  .scrub span{color:var(--ink)}
}

/* ==========================================================================
   SECRET SHELF ADDITIONS
   ========================================================================== */

/* ---------- accent ---------- */
.btn-blush{background:var(--blush);border-color:var(--blush);color:var(--ink)}
.btn-blush::before{background:var(--ink)}
.btn-blush:hover{color:var(--paper)}
.eyebrow::before{content:"";width:8px;height:8px;background:var(--blush);flex:none}
.eyebrow.plain::before{display:none}
.band .eyebrow::before{background:var(--blush)}
.pill.on{background:var(--blush-2);border-color:var(--blush);color:var(--ink)}
.stat b small{font-size:.5em;letter-spacing:-.04em;vertical-align:baseline}

/* ---------- nav extras ---------- */
.nav nav a{white-space:nowrap}
.nav-cta .cart{display:inline-flex;align-items:center;gap:.5rem;height:40px;padding:0 .9rem;border:1px solid var(--ink);font-size:.9375rem;font-weight:500;letter-spacing:-.035em;position:relative;transition:background .3s var(--ease),color .3s var(--ease)}
.nav-cta .cart:hover{background:var(--ink);color:var(--paper)}
.nav-cta .cart svg{width:16px;height:16px}
.nav-cta .cart .n{min-width:1.2em;text-align:center}
.nav-cta .cart.has::after{content:"";position:absolute;top:-4px;right:-4px;width:8px;height:8px;background:var(--blush)}
.nav-cta .acct{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;border:1px solid var(--hair);transition:border-color .3s}
.nav-cta .acct:hover{border-color:var(--ink)}
.nav-cta .acct svg{width:16px;height:16px}
@media (max-width:940px){.nav-cta .acct{display:none}}
.drawer{overflow:auto}
.drawer .sub{font-size:1rem;font-weight:500;letter-spacing:-.035em;color:var(--ink-2);border:0;padding:.3rem 0;opacity:1;transform:none}
.drawer .sub em{display:none}

/* ---------- hero (beauty) ---------- */
.hero-img img{object-position:50% 20%}
.hero .kicker{display:inline-flex;align-items:center;gap:.6rem;color:#fff;font-size:.8125rem;font-weight:600;letter-spacing:-.04em;text-transform:uppercase;margin-bottom:clamp(1rem,2vw,1.6rem)}
.hero .kicker::before{content:"";width:8px;height:8px;background:var(--blush)}
.hero .fine{font-size:.8125rem;color:rgba(255,255,255,.7);margin-top:.9rem;width:100%}

/* ---------- product grid (WooCommerce loop) ---------- */
.woocommerce ul.products,ul.products{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:clamp(1rem,2vw,1.8rem) clamp(1rem,2vw,1.8rem);margin:0;padding:0;list-style:none}
ul.products::before,ul.products::after{display:none}
.woocommerce ul.products li.product,ul.products li.product{margin:0;padding:0;width:auto;float:none;position:relative;display:flex;flex-direction:column}
.prod .im a{display:block}
.prod .im{border:1px solid var(--hair);background:var(--paper)}
.prod .im img{width:100%;aspect-ratio:4/5;object-fit:contain;background:var(--paper);padding:10%;transition:transform 1s var(--ease)}
.prod .im .tag{background:var(--blush);color:var(--ink)}
.prod .in{display:flex;flex-direction:column;flex:1}
.prod .nm{display:block;font-size:1.02rem;font-weight:600;letter-spacing:-.045em;line-height:1.15;margin-bottom:.35rem;color:var(--ink)}
.prod .nm:hover{opacity:.6}
.prod .pr{margin-top:auto}
.prod .pr .price{display:flex;align-items:baseline;gap:.6rem;font-weight:600;font-size:1.15rem;letter-spacing:-.05em;color:var(--ink);flex-wrap:wrap}
.prod .pr .price del{font-size:.9375rem;font-weight:500;color:var(--ink-3);text-decoration:line-through}
.prod .pr .price del .amount{color:var(--ink-3)}
.prod .pr .price ins{text-decoration:none}
.prod .pr .price .screen-reader-text{display:none}
.prod .act{margin-top:.75rem}
.prod .act .button,.prod .act a.button{display:inline-flex;width:100%;justify-content:center;align-items:center;border:1px solid var(--ink);background:transparent;color:var(--ink);padding:.62rem 1rem;font-size:.9375rem;font-weight:500;letter-spacing:-.035em;border-radius:0;line-height:1.2;cursor:pointer;transition:background .3s var(--ease),color .3s var(--ease)}
.prod .act .button:hover{background:var(--ink);color:var(--paper)}
.prod .act .button.loading{opacity:.5}
.prod .act .added_to_cart{display:block;text-align:center;margin-top:.5rem;font-size:.875rem;font-weight:500;color:var(--ink-2);border-bottom:1px solid var(--ink-4);width:max-content;margin-inline:auto}
.prod .stock.out-of-stock{font-size:.8125rem;color:var(--ink-3);margin-top:.5rem}
@media (max-width:1180px){.woocommerce ul.products,ul.products{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media (max-width:620px){.woocommerce ul.products,ul.products{grid-template-columns:repeat(2,minmax(0,1fr));gap:1.4rem .8rem}.prod .act .button{font-size:.875rem;padding:.55rem .6rem}}

/* ---------- latest drops on home ---------- */
.drops-head{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(0,.8fr);gap:2rem;align-items:end;margin-bottom:clamp(2rem,4vw,3.4rem)}
@media (max-width:940px){.drops-head{grid-template-columns:minmax(0,1fr)}.drops-head > div:last-child{justify-self:start!important}}

/* ---------- shop archive ---------- */
.shop-tools{display:flex;flex-wrap:wrap;gap:.5rem;align-items:center;padding-bottom:1.5rem;border-bottom:1px solid var(--ink);margin-bottom:clamp(1.6rem,3vw,2.4rem)}
.shop-tools .chip{text-decoration:none}
.shop-tools .chip.on{background:var(--ink);border-color:var(--ink);color:var(--paper)}
.shop-tools .search{flex:1 1 210px}
.shop-tools .search form{display:flex;align-items:center;gap:.6rem;width:100%}
.shop-tools .right{display:flex;align-items:center;gap:1rem;margin-left:auto;flex-wrap:wrap}
@media (max-width:1180px){.shop-tools .right{margin-left:0;width:100%;justify-content:space-between}}
.woocommerce-result-count{margin:0;font-size:.9375rem;font-weight:500;color:var(--ink-2);white-space:nowrap}
.woocommerce-ordering{margin:0}
.woocommerce-ordering select{appearance:none;background:none;border:1px solid var(--hair);padding:.55rem 2rem .55rem .9rem;font-size:.9375rem;font-weight:500;letter-spacing:-.035em;color:var(--ink-2);border-radius:0;cursor:pointer;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%230C0C0C' stroke-width='1.4'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right .7rem center}
.woocommerce-ordering select:hover{border-color:var(--ink);color:var(--ink)}
.woocommerce-notices-wrapper:empty{display:none}
.brand-strip{display:flex;flex-wrap:wrap;gap:.4rem;margin-top:1.2rem}
.brand-strip a{font-size:.8125rem;font-weight:600;text-transform:uppercase;letter-spacing:-.01em;color:var(--ink-3);border:1px solid var(--hair);padding:.4rem .7rem;transition:color .2s,border-color .2s}
.brand-strip a:hover,.brand-strip a.on{color:var(--ink);border-color:var(--ink)}
.woocommerce-pagination{margin-top:clamp(2.4rem,5vw,4rem);border-top:1px solid var(--hair);padding-top:1.5rem}
.woocommerce-pagination ul.page-numbers{display:flex;gap:.3rem;border:0;margin:0;list-style:none;flex-wrap:wrap}
.woocommerce-pagination ul.page-numbers li{border:0;margin:0;float:none}
.woocommerce-pagination .page-numbers{display:flex;align-items:center;justify-content:center;min-width:40px;height:40px;padding:0 .8rem;border:1px solid var(--hair);font-size:.9375rem;font-weight:500;color:var(--ink-2);text-decoration:none}
.woocommerce-pagination a.page-numbers:hover{border-color:var(--ink);color:var(--ink)}
.woocommerce-pagination .page-numbers.current{background:var(--ink);color:var(--paper);border-color:var(--ink)}
.woocommerce-info,.woocommerce-message,.woocommerce-error{border:1px solid var(--ink);border-top-width:1px;background:none;padding:1rem 1.2rem;margin:0 0 1.5rem;color:var(--ink);font-weight:500;font-size:.9375rem;list-style:none;display:flex;flex-wrap:wrap;gap:.6rem 1rem;align-items:center;justify-content:space-between;border-radius:0}
.woocommerce-error{border-color:#B3261E;color:#B3261E}
.woocommerce-message::before,.woocommerce-info::before,.woocommerce-error::before{display:none}
.woocommerce-message .button,.woocommerce-info .button{order:2;margin-left:auto}
.woocommerce .blockUI.blockOverlay{background:rgba(255,255,255,.6)!important}

/* ---------- generic WooCommerce buttons/forms ---------- */
.woocommerce .button,.woocommerce a.button,.woocommerce button.button,.woocommerce input.button,.woocommerce #respond input#submit,
.woocommerce .button.alt,.woocommerce a.button.alt,.woocommerce button.button.alt,.woocommerce input.button.alt,
.wc-block-components-button,.wp-block-button__link,.wc-block-components-checkout-place-order-button{
  display:inline-flex;align-items:center;justify-content:center;gap:.8rem;
  border:1px solid var(--ink);background:var(--ink);color:var(--paper);
  padding:.78rem 1.35rem;font-size:1rem;font-weight:500;letter-spacing:-.035em;line-height:1.2;
  border-radius:0;cursor:pointer;text-decoration:none;font-family:var(--sans);
  transition:background .3s var(--ease),color .3s var(--ease);
}
.woocommerce .button:hover,.woocommerce a.button:hover,.woocommerce button.button:hover,.woocommerce input.button:hover,.woocommerce .button.alt:hover,.woocommerce button.button.alt:hover,.wc-block-components-button:hover,.wp-block-button__link:hover{background:transparent;color:var(--ink)}
.woocommerce .button:disabled,.woocommerce button.button:disabled[disabled]{background:var(--ink);color:var(--paper);opacity:.35;padding:.78rem 1.35rem}
.woocommerce form .form-row input.input-text,.woocommerce form .form-row textarea,.woocommerce form .form-row select,
.woocommerce-page form .form-row input.input-text,.select2-container--default .select2-selection--single,
.woocommerce .woocommerce-ordering select,.woocommerce input[type=text],.woocommerce input[type=email],.woocommerce input[type=password],.woocommerce input[type=tel],.woocommerce textarea,
.wc-block-components-text-input input[type=text],.wc-block-components-text-input input[type=email],.wc-block-components-text-input input[type=tel],.wc-block-components-text-input input[type=number],.wc-block-components-text-input input[type=url],.wc-block-components-text-input input[type=password]{
  background:none;border:0;border-bottom:1px solid var(--hair);border-radius:0;padding:.65rem 0;font-size:1rem;font-weight:500;outline:0;transition:border-color .25s var(--ease);width:100%;box-shadow:none;height:auto;color:var(--ink);font-family:var(--sans)
}
.woocommerce form .form-row input.input-text:focus,.woocommerce form .form-row textarea:focus,.woocommerce input:focus{border-bottom-color:var(--ink)}
.woocommerce form .form-row label,.wc-block-components-text-input label{font-size:.8125rem;font-weight:600;letter-spacing:-.04em;text-transform:uppercase;color:var(--ink);line-height:1.4}
.woocommerce form .form-row .required{color:var(--blush-ink);text-decoration:none}
.woocommerce form .form-row{padding:0;margin:0 0 1.1rem}
.woocommerce form .form-row-first,.woocommerce form .form-row-last{width:48.5%}
.select2-container--default .select2-selection--single{height:auto;padding:.65rem 0}
.select2-container--default .select2-selection--single .select2-selection__rendered{padding-left:0;line-height:1.4;color:var(--ink)}
.select2-container--default .select2-selection--single .select2-selection__arrow{top:8px;right:0}
.select2-dropdown{border:1px solid var(--ink);border-radius:0}
.woocommerce .col2-set .col-1,.woocommerce .col2-set .col-2{float:none;width:100%}
.woocommerce .col2-set{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:clamp(1.5rem,4vw,4rem)}
@media (max-width:940px){.woocommerce .col2-set{grid-template-columns:minmax(0,1fr)}}

/* ---------- single product ---------- */
.woocommerce div.product{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:0 clamp(2rem,5vw,5rem);align-items:start}
.woocommerce div.product > *{grid-column:1/-1}
.woocommerce div.product div.images{grid-column:1;grid-row:1/span 6;float:none;width:100%;margin:0;position:sticky;top:calc(var(--bar) + 1.5rem)}
.woocommerce div.product div.summary{grid-column:2;float:none;width:100%;margin:0;display:flex;flex-direction:column}
.woocommerce div.product div.images .woocommerce-product-gallery__image{border:1px solid var(--hair)}
.woocommerce div.product div.images img{background:var(--paper);aspect-ratio:1;object-fit:contain;padding:8%;width:100%}
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper{margin:0}
.woocommerce div.product div.images .flex-control-thumbs{display:flex;gap:.5rem;margin-top:.6rem}
.woocommerce div.product div.images .flex-control-thumbs li{width:72px;float:none;margin:0}
.woocommerce div.product div.images .flex-control-thumbs img{padding:10%;opacity:.6;border:1px solid transparent}
.woocommerce div.product div.images .flex-control-thumbs img.flex-active,.woocommerce div.product div.images .flex-control-thumbs img:hover{opacity:1;border-color:var(--ink)}
.woocommerce div.product .onsale,.woocommerce span.onsale{position:absolute;top:0;left:0;right:auto;background:var(--blush);color:var(--ink);padding:.28rem .6rem;font-size:.75rem;font-weight:600;letter-spacing:-.03em;text-transform:uppercase;border-radius:0;min-height:0;min-width:0;line-height:1.4;margin:0;z-index:5}
.woocommerce div.product .woocommerce-product-gallery__trigger{display:none}
.woocommerce div.product div.images .woocommerce-product-gallery__image a{cursor:zoom-in;display:block}
.summary .brand-line{display:block;font-size:.8125rem;font-weight:600;letter-spacing:-.03em;text-transform:uppercase;color:var(--ink-2);margin-bottom:.8rem}
.summary .brand-line a:hover{color:var(--ink)}
.woocommerce div.product .product_title{font-size:clamp(1.9rem,3.4vw,3rem);font-weight:600;letter-spacing:-.05em;line-height:1.04;margin-bottom:1.2rem}
.woocommerce div.product p.price,.woocommerce div.product span.price{display:flex;align-items:baseline;gap:.8rem;flex-wrap:wrap;font-size:1.6rem;font-weight:600;letter-spacing:-.05em;color:var(--ink);border-top:1px solid var(--hair);padding-top:1rem;margin-bottom:1.2rem}
.woocommerce div.product p.price del{font-size:1rem;font-weight:500;color:var(--ink-3);opacity:1}
.woocommerce div.product p.price ins{text-decoration:none;font-weight:600}
.woocommerce div.product .save-line{margin:-.6rem 0 1.2rem}
.woocommerce div.product .save{display:inline-block;font-size:.875rem;font-weight:600;background:var(--blush-2);padding:.3rem .6rem;letter-spacing:-.03em}
.woocommerce div.product .woocommerce-product-details__short-description{font-size:1rem;color:var(--ink-2);line-height:1.45;margin-bottom:1.5rem}
.woocommerce div.product .woocommerce-product-details__short-description p{margin-bottom:.8rem}
.woocommerce div.product form.cart{display:flex;flex-wrap:wrap;gap:.6rem;align-items:stretch;margin-bottom:1.6rem;border-top:1px solid var(--hair);padding-top:1.4rem}
.woocommerce .quantity{display:inline-flex;border:1px solid var(--ink)}
.woocommerce .quantity .qty{width:64px;border:0;border-radius:0;text-align:center;font-weight:600;font-size:1rem;padding:.7rem .2rem;background:none;-moz-appearance:textfield}
.woocommerce .quantity .qty::-webkit-inner-spin-button{opacity:1}
.woocommerce div.product form.cart .button{flex:1;padding:.78rem 1.6rem}
.woocommerce div.product form.cart div.quantity{float:none;margin:0}
.woocommerce div.product .product_meta{font-size:.875rem;font-weight:500;color:var(--ink-2);border-top:1px solid var(--hair);padding-top:1rem;display:flex;flex-direction:column;gap:.4rem}
.woocommerce div.product .product_meta > span{display:block}
.woocommerce div.product .product_meta a{color:var(--ink);border-bottom:1px solid var(--ink-4)}
.ss-promise{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.5rem;margin:1.6rem 0}
.ss-promise div{border:1px solid var(--hair);padding:.9rem;font-size:.8125rem;font-weight:500;color:var(--ink-2);line-height:1.3}
.ss-promise b{display:block;color:var(--ink);font-weight:600;margin-bottom:.15rem;letter-spacing:-.04em}
.woocommerce div.product .woocommerce-tabs{grid-column:1/-1;margin-top:clamp(2rem,4vw,3rem)}
.woocommerce div.product .woocommerce-tabs ul.tabs{padding:0;margin:0 0 1.5rem;border-bottom:1px solid var(--ink);display:flex;gap:.3rem;overflow:visible}
.woocommerce div.product .woocommerce-tabs ul.tabs::before,.woocommerce div.product .woocommerce-tabs ul.tabs::after,.woocommerce div.product .woocommerce-tabs ul.tabs li::before,.woocommerce div.product .woocommerce-tabs ul.tabs li::after{display:none}
.woocommerce div.product .woocommerce-tabs ul.tabs li{border:1px solid var(--hair);border-bottom:0;background:none;border-radius:0;margin:0;padding:0}
.woocommerce div.product .woocommerce-tabs ul.tabs li a{padding:.7rem 1.2rem;font-weight:500;color:var(--ink-2);font-size:.9375rem;letter-spacing:-.035em}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active{background:var(--ink);border-color:var(--ink)}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a{color:var(--paper)}
.woocommerce div.product .woocommerce-tabs .panel{max-width:72ch;color:var(--ink-2);line-height:1.5;font-size:1rem}
.woocommerce div.product .woocommerce-tabs .panel h2{font-size:1.2rem;letter-spacing:-.045em;margin-bottom:.8rem;color:var(--ink)}
.woocommerce div.product .woocommerce-tabs .panel p{margin-bottom:.9rem}
.woocommerce table.shop_attributes{border:0;border-top:1px solid var(--hair)}
.woocommerce table.shop_attributes th,.woocommerce table.shop_attributes td{border:0;border-bottom:1px solid var(--hair);padding:.7rem 0;background:none;font-style:normal}
.woocommerce table.shop_attributes th{font-weight:600;color:var(--ink);width:180px}
.woocommerce table.shop_attributes td p{padding:0}
.related.products,.upsells.products{grid-column:1/-1;margin-top:clamp(3rem,6vw,5rem);border-top:1px solid var(--hair);padding-top:clamp(2rem,4vw,3rem)}
.related.products > h2,.upsells.products > h2{font-size:clamp(1.9rem,3.4vw,3rem);font-weight:600;letter-spacing:-.05em;line-height:1.04;margin-bottom:clamp(1.6rem,3vw,2.4rem)}
@media (max-width:940px){
  .woocommerce div.product{grid-template-columns:minmax(0,1fr)}
  .woocommerce div.product div.images{grid-column:1;grid-row:auto;position:static}
  .woocommerce div.product div.summary{grid-column:1}
  .ss-promise{grid-template-columns:minmax(0,1fr)}
}

/* ---------- cart / checkout / account (shortcode) ---------- */
.woocommerce table.shop_table{border:0;border-top:1px solid var(--ink);border-radius:0;margin-bottom:1.5rem;border-collapse:collapse}
.woocommerce table.shop_table th,.woocommerce table.shop_table td{border:0;border-bottom:1px solid var(--hair);padding:1rem .6rem;font-weight:500;background:none;vertical-align:middle}
.woocommerce table.shop_table th{font-size:.8125rem;font-weight:600;letter-spacing:-.04em;text-transform:uppercase;color:var(--ink-2)}
.woocommerce table.shop_table td.product-name a{font-weight:600;color:var(--ink)}
.woocommerce table.shop_table td.product-name a:hover{opacity:.6}
.woocommerce table.shop_table img{width:64px;background:var(--paper-2);padding:6px}
.woocommerce a.remove{color:var(--ink)!important;border:1px solid var(--hair);border-radius:0;width:28px;height:28px;line-height:26px;font-size:1.2rem;font-weight:400}
.woocommerce a.remove:hover{background:var(--ink)!important;color:var(--paper)!important}
.woocommerce-cart table.cart td.actions .coupon{display:flex;gap:.5rem;align-items:flex-end}
.woocommerce-cart table.cart td.actions .coupon .input-text{width:180px!important;padding:.6rem 0!important}
.woocommerce-cart table.cart td.actions .coupon .button{white-space:nowrap}
.woocommerce-cart .cart-collaterals .cart_totals{float:none;width:100%;max-width:520px;margin-left:auto}
.woocommerce-cart .cart-collaterals .cart_totals h2{font-size:1.4rem;letter-spacing:-.045em;margin-bottom:1rem}
.woocommerce-cart .cart-collaterals .cart_totals table th{width:40%;text-transform:none;font-size:1rem;color:var(--ink)}
.woocommerce-cart .wc-proceed-to-checkout{padding:1rem 0 0}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button{display:inline-flex;width:100%;font-size:1.05rem;padding:1rem 1.6rem;margin:0}
.woocommerce .cart-empty,.woocommerce .return-to-shop{text-align:center}
.woocommerce .cart-empty{font-size:clamp(1.5rem,3vw,2.4rem);font-weight:600;letter-spacing:-.05em;margin:2rem 0 1.2rem;border:0;padding:0;background:none;display:block}
.woocommerce .cart-empty::before{display:none}
.woocommerce-checkout #customer_details,.woocommerce-checkout .woocommerce-checkout-review-order{margin-bottom:2rem}
.woocommerce-checkout h3{font-size:1.4rem;letter-spacing:-.045em;margin:0 0 1.2rem;font-weight:600}
.woocommerce-checkout #order_review_heading{margin-top:1rem}
#add_payment_method #payment,.woocommerce-cart #payment,.woocommerce-checkout #payment{background:var(--paper-2);border-radius:0;padding:1.2rem}
.woocommerce-checkout #payment ul.payment_methods{border-bottom:1px solid var(--hair);padding:0 0 1rem}
.woocommerce-checkout #payment div.payment_box{background:var(--paper);border-radius:0;font-size:.9375rem;color:var(--ink-2)}
.woocommerce-checkout #payment div.payment_box::before{border-bottom-color:var(--paper)}
.woocommerce-checkout #payment div.form-row.place-order{padding:1rem 0 0}
.woocommerce-checkout #payment #place_order{width:100%;font-size:1.05rem;padding:1rem 1.6rem;float:none}
.woocommerce-checkout .woocommerce-privacy-policy-text{font-size:.875rem;color:var(--ink-2);line-height:1.45}
.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper label{text-transform:none;font-size:.9375rem;font-weight:500}
.woocommerce form.checkout_coupon,.woocommerce form.login,.woocommerce form.register{border:1px solid var(--hair);border-radius:0;padding:1.6rem;margin-bottom:2rem}
.woocommerce-account .woocommerce-MyAccount-navigation{float:none;width:100%}
.woocommerce-account .woocommerce-MyAccount-content{float:none;width:100%}
.woocommerce-account .woocommerce{display:grid;grid-template-columns:minmax(0,.28fr) minmax(0,.72fr);gap:clamp(2rem,5vw,5rem);align-items:start}
.woocommerce-account .woocommerce > .woocommerce-notices-wrapper,.woocommerce-account .woocommerce > .woocommerce-message,.woocommerce-account .woocommerce > .woocommerce-error,.woocommerce-account .woocommerce > .woocommerce-info,.woocommerce-account .woocommerce > .u-columns,.woocommerce-account .woocommerce > form,.woocommerce-account .woocommerce > .woocommerce-form-login,.woocommerce-account .woocommerce > h2{grid-column:1/-1}
.woocommerce-MyAccount-navigation ul{border-top:1px solid var(--ink)}
.woocommerce-MyAccount-navigation li{border-bottom:1px solid var(--hair)}
.woocommerce-MyAccount-navigation li a{display:block;padding:.9rem 0;font-weight:500;color:var(--ink-2);letter-spacing:-.035em}
.woocommerce-MyAccount-navigation li a:hover,.woocommerce-MyAccount-navigation li.is-active a{color:var(--ink)}
.woocommerce-MyAccount-navigation li.is-active a{font-weight:600}
.woocommerce-MyAccount-content p{line-height:1.5;color:var(--ink-2);margin-bottom:1rem}
.woocommerce-MyAccount-content p a{color:var(--ink);border-bottom:1px solid var(--ink-4)}
.woocommerce-MyAccount-content h2,.woocommerce-MyAccount-content h3,.woocommerce-MyAccount-content legend{font-size:1.3rem;letter-spacing:-.045em;margin:0 0 1rem;font-weight:600}
.woocommerce-MyAccount-content fieldset{border:0;padding:0;margin:1.6rem 0 0}
.woocommerce-MyAccount-content .woocommerce-Address-title h2{display:inline}
.woocommerce-MyAccount-content .woocommerce-Address-title a{font-size:.875rem;margin-top:.4rem}
.woocommerce-MyAccount-content address{font-style:normal;line-height:1.5;color:var(--ink-2);border:1px solid var(--hair);padding:1rem}
.woocommerce-account .u-columns{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:clamp(1.5rem,4vw,4rem)}
.woocommerce-account .u-columns > div{float:none;width:100%}
.woocommerce-account .u-columns h2{font-size:1.5rem;letter-spacing:-.045em;margin-bottom:1.2rem;font-weight:600}
.woocommerce-form-login .woocommerce-form-login__rememberme{display:flex;align-items:center;gap:.5rem;text-transform:none;font-size:.9375rem;font-weight:500;margin-bottom:1rem}
.woocommerce-form-login .woocommerce-form-login__submit,.woocommerce-form-register .woocommerce-form-register__submit{width:100%;margin-top:.5rem}
.woocommerce-LostPassword,.woocommerce-privacy-policy-text{font-size:.875rem;color:var(--ink-2);line-height:1.45;margin-top:1rem}
.woocommerce-LostPassword a,.woocommerce-privacy-policy-text a{color:var(--ink);border-bottom:1px solid var(--ink-4)}
.woocommerce-password-strength{font-size:.8125rem;padding:.4rem 0}
.woocommerce-account .addresses .title .edit{font-size:.875rem}
.woocommerce-orders-table__cell-order-actions .button{padding:.5rem .9rem;font-size:.875rem;margin-right:.3rem}
.woocommerce-order .woocommerce-thankyou-order-received{font-size:clamp(1.6rem,3vw,2.4rem);font-weight:600;letter-spacing:-.05em;margin-bottom:1.5rem}
.woocommerce ul.order_details{display:flex;flex-wrap:wrap;gap:1rem 2rem;padding:1.2rem 0;border-top:1px solid var(--ink);border-bottom:1px solid var(--hair);margin-bottom:2rem;list-style:none}
.woocommerce ul.order_details li{border:0;padding:0;margin:0;float:none;font-size:.8125rem;text-transform:uppercase;font-weight:600;letter-spacing:-.04em;color:var(--ink-2)}
.woocommerce ul.order_details li strong{display:block;font-size:1.05rem;text-transform:none;color:var(--ink);letter-spacing:-.04em;margin-top:.2rem}
.woocommerce-customer-details address{font-style:normal;border:1px solid var(--hair);padding:1rem;line-height:1.5;color:var(--ink-2)}
@media (max-width:940px){.woocommerce-account .woocommerce,.woocommerce-account .u-columns{grid-template-columns:minmax(0,1fr)}}
@media (max-width:768px){
  .woocommerce table.shop_table_responsive tr td{border-bottom:1px solid var(--hair);padding:.8rem .2rem}
  .woocommerce table.shop_table_responsive tr td::before{font-weight:600;color:var(--ink-2);text-transform:uppercase;font-size:.75rem;letter-spacing:-.03em}
  .woocommerce table.shop_table_responsive tr{border-bottom:2px solid var(--ink)}
  .woocommerce-cart table.cart td.actions .coupon{flex-wrap:wrap}
  .woocommerce-cart table.cart td.actions .coupon .input-text{width:100%!important}
  .woocommerce form .form-row-first,.woocommerce form .form-row-last{width:100%}
}

/* ---------- cart / checkout blocks ---------- */
.wc-block-components-sidebar-layout{--wc-form-border-radius:0}
.wp-block-woocommerce-cart,.wp-block-woocommerce-checkout{font-family:var(--sans);letter-spacing:-.03em}
.wc-block-components-product-name{font-weight:600!important;color:var(--ink)!important;letter-spacing:-.04em}
.wc-block-components-product-badge,.wc-block-components-sale-badge{border-radius:0;border:0;background:var(--blush);color:var(--ink);text-transform:uppercase;font-weight:600}
.wc-block-cart-item__image img,.wc-block-components-order-summary-item__image img{background:var(--paper-2);padding:6px}
.wc-block-components-totals-item,.wc-block-components-totals-footer-item .wc-block-components-totals-item__value{font-weight:600}
.wc-block-components-quantity-selector{border-radius:0!important;border:1px solid var(--ink)!important;box-shadow:none!important}
.wc-block-components-quantity-selector::after{display:none!important}
.wc-block-components-quantity-selector input{font-weight:600}
.wc-block-components-checkout-step__title,.wc-block-components-title{font-weight:600;letter-spacing:-.045em}
.wc-block-components-text-input,.wc-block-components-form .wc-block-components-text-input{margin-top:1.2rem}
.wc-block-components-text-input input:is([type=text],[type=email],[type=tel],[type=url],[type=number],[type=password]){border:0!important;border-bottom:1px solid var(--hair)!important;border-radius:0!important;padding:1.4rem 0 .5rem!important;box-shadow:none!important;background:none!important}
.wc-block-components-text-input input:focus{border-bottom-color:var(--ink)!important}
.wc-block-components-text-input label{left:0!important;text-transform:uppercase;font-size:.8125rem!important;font-weight:600}
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,.wc-block-components-select .components-custom-select-control__button{border:0!important;border-bottom:1px solid var(--hair)!important;border-radius:0!important;padding-left:0!important;box-shadow:none!important}
.wc-block-components-combobox label,.wc-block-components-select label{left:0!important;text-transform:uppercase;font-size:.8125rem!important;font-weight:600}
.wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox]{border-radius:0;border-color:var(--ink)}
.wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox]:checked{background:var(--ink);border-color:var(--ink)}
.wc-block-components-radio-control__input{border-color:var(--ink)!important}
.wc-block-components-radio-control__input:checked{border-color:var(--ink)!important}
.wc-block-components-radio-control__input:checked::before{background:var(--ink)!important}
.wc-block-components-radio-control-accordion-option,.wc-block-components-radio-control{border-radius:0}
.wc-block-components-panel__button,.wc-block-components-checkout-return-to-cart-button{font-weight:500;color:var(--ink)}
.wc-block-components-button,.wc-block-cart__submit-button,.wc-block-components-checkout-place-order-button{border-radius:0!important;background:var(--ink)!important;color:var(--paper)!important;font-weight:500!important;letter-spacing:-.035em!important;padding:1rem 1.6rem!important;font-size:1.05rem!important;border:1px solid var(--ink)!important;min-height:0!important}
.wc-block-components-button:hover,.wc-block-cart__submit-button:hover,.wc-block-components-checkout-place-order-button:hover{background:transparent!important;color:var(--ink)!important}
.wc-block-components-button.outlined,.wc-block-components-button.is-secondary{background:transparent!important;color:var(--ink)!important}
.wp-block-woocommerce-cart .wc-block-components-sidebar,.wp-block-woocommerce-checkout .wc-block-components-sidebar{padding:0 0 0 clamp(1.5rem,3vw,3rem)}
.wc-block-components-order-summary .wc-block-components-panel__button,.wc-block-components-totals-wrapper,.wc-block-components-order-summary{border-color:var(--hair)!important}
.wc-block-components-order-summary-item__quantity{border-radius:0;background:var(--ink);color:var(--paper);border:0;box-shadow:none}
.wc-block-cart__empty-cart__title,.wp-block-woocommerce-empty-cart-block h2{font-weight:600;letter-spacing:-.05em}
.wc-block-components-notice-banner{border-radius:0}
.wc-block-components-shipping-rates-control__package{border-color:var(--hair)}
.wc-block-mini-cart{display:none}

/* ---------- page templates ---------- */
.ph .kicker{font-size:.8125rem;font-weight:600;letter-spacing:-.04em;text-transform:uppercase;display:inline-flex;align-items:center;gap:.6rem;margin-bottom:1.2rem}
.ph .kicker::before{content:"";width:8px;height:8px;background:var(--blush)}
.ph .lede{margin-top:1.4rem;font-size:1.05rem}
.prose{max-width:72ch;font-size:1.05rem;font-weight:500;line-height:1.5;color:var(--ink-2);letter-spacing:-.035em}
.prose h1,.prose h2,.prose h3,.prose h4{color:var(--ink);margin:2.4rem 0 .9rem}
.prose h2{font-size:clamp(1.5rem,2.6vw,2.2rem);letter-spacing:-.05em}
.prose h3{font-size:clamp(1.2rem,1.8vw,1.5rem);letter-spacing:-.045em}
.prose h2:first-child,.prose h3:first-child,.prose > *:first-child{margin-top:0}
.prose p{margin:0 0 1.1rem}
.prose a{color:var(--ink);border-bottom:1px solid var(--ink-4);transition:border-color .2s}
.prose a:hover{border-bottom-color:var(--ink)}
.prose ul,.prose ol{margin:0 0 1.1rem 1.2rem;padding:0}
.prose ul{list-style:square}.prose ol{list-style:decimal}
.prose li{margin-bottom:.4rem}
.prose strong{color:var(--ink);font-weight:600}
.prose hr{border:0;border-top:1px solid var(--hair);margin:2.4rem 0}
.prose blockquote{border-left:2px solid var(--ink);padding-left:1.2rem;margin:1.6rem 0;color:var(--ink);font-weight:600;letter-spacing:-.045em;font-size:1.2rem}
.prose img{background:var(--paper-2)}
.prose table{border-collapse:collapse;width:100%;border-top:1px solid var(--ink);margin-bottom:1.5rem}
.prose td,.prose th{border-bottom:1px solid var(--hair);padding:.8rem .5rem;text-align:left}
.prose th{font-size:.8125rem;text-transform:uppercase;font-weight:600;letter-spacing:-.04em;color:var(--ink-2)}
.prose .wp-block-buttons .wp-block-button__link{background:transparent;color:var(--ink)}
.prose .wp-block-buttons .wp-block-button__link:hover{background:var(--ink);color:var(--paper)}
.prose .wp-block-group,.prose .wp-block-columns{max-width:none}
.prose .wp-block-cover{border-radius:0}
.page-grid{display:grid;grid-template-columns:minmax(0,.32fr) minmax(0,.68fr);gap:clamp(2rem,5vw,5rem);align-items:start}
.page-grid aside{position:sticky;top:calc(var(--bar) + 1.5rem)}
.page-grid aside .info{margin-top:1.4rem}
@media (max-width:940px){.page-grid{grid-template-columns:minmax(0,1fr)}.page-grid aside{position:static}}
.entry-content.prose > .alignfull{margin-left:calc(-1 * var(--gut));margin-right:calc(-1 * var(--gut));max-width:none}
.woocommerce-page .prose,.woocommerce-cart .prose,.woocommerce-checkout .prose,.woocommerce-account .prose{max-width:none}

/* FAQ page accordion of headings (auto-built) */
.faq-page .acc-p p{max-width:none}

/* 404 / search */
.big-num{font-size:clamp(5rem,18vw,16rem);font-weight:700;letter-spacing:-.08em;line-height:.85;color:var(--ink-4)}
.search-list{border-top:1px solid var(--ink)}
.search-list a{display:flex;justify-content:space-between;gap:1rem;align-items:baseline;padding:1.1rem 0;border-bottom:1px solid var(--hair);font-weight:600;letter-spacing:-.045em;font-size:1.1rem}
.search-list a:hover{opacity:.6}
.search-list a span{font-size:.8125rem;font-weight:600;text-transform:uppercase;color:var(--ink-3)}

/* Contact form 7 / WPForms neutralisation */
.wpcf7 input:not([type=submit]),.wpcf7 textarea,.wpforms-container input:not([type=submit]),.wpforms-container textarea{background:none;border:0;border-bottom:1px solid var(--hair);border-radius:0;padding:.65rem 0;font:inherit;width:100%}
.wpcf7 input[type=submit],.wpforms-container button[type=submit]{border:1px solid var(--ink);background:var(--ink);color:var(--paper);padding:.78rem 1.35rem;font:inherit;border-radius:0;cursor:pointer}

/* utility */
.mt-1{margin-top:1rem}.mt-2{margin-top:2rem}.mt-3{margin-top:3rem}
.hidden{display:none!important}
.woocommerce-products-header{display:none}

/* ---------- late fixes ---------- */
.wp-block-button__link,.wc-block-grid .wp-block-button__link,.wc-block-components-product-button .wc-block-components-button,.wp-block-woocommerce-empty-cart-block .wp-block-button__link{color:#fff!important;background:var(--ink)!important;border:1px solid var(--ink)!important;border-radius:0!important;padding:.75rem 1.3rem!important;font-weight:500!important;letter-spacing:-.035em!important}
.wp-block-button__link:hover,.wc-block-grid .wp-block-button__link:hover,.wc-block-components-product-button .wc-block-components-button:hover{background:transparent!important;color:var(--ink)!important}
.wc-block-grid__products{gap:1.2rem}
.wc-block-grid__product{border:0!important;text-align:left!important}
.wc-block-grid__product .wc-block-grid__product-image{border:1px solid var(--hair);background:var(--paper);display:block}
.wc-block-grid__product .wc-block-grid__product-image img{aspect-ratio:4/5;object-fit:contain;padding:10%}
.wc-block-grid__product-title{font-weight:600!important;letter-spacing:-.045em;text-align:left;margin-top:.8rem!important;color:var(--ink)}
.wc-block-grid__product-price{text-align:left;font-weight:600;letter-spacing:-.05em}
.wc-block-grid__product-price del{color:var(--ink-3);font-weight:500}
.wc-block-grid__product-onsale{border-radius:0!important;border:0!important;background:var(--blush)!important;color:var(--ink)!important;text-transform:uppercase;font-weight:600;left:0!important;right:auto!important;top:0!important}
.wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title,.wp-block-woocommerce-empty-cart-block h2{font-size:clamp(1.6rem,3vw,2.6rem);letter-spacing:-.05em}
.wp-block-woocommerce-empty-cart-block .wp-block-separator{display:none}
.wp-block-woocommerce-empty-cart-block .wp-block-image svg,.wp-block-woocommerce-empty-cart-block .wp-block-image img{width:64px;opacity:.25}
.woocommerce-form-login .show-password-input,.woocommerce-form-register .show-password-input,.woocommerce-EditAccountForm .show-password-input{position:absolute;right:0;top:.9rem;width:20px;height:20px;background:none;border:0;cursor:pointer}
.woocommerce-form-login .show-password-input::after,.woocommerce-form-register .show-password-input::after,.woocommerce-EditAccountForm .show-password-input::after{content:"";display:block;width:14px;height:14px;border:1.5px solid var(--ink-3);border-radius:50%}
.password-input{position:relative;display:block}
.woocommerce form.login,.woocommerce form.register{max-width:560px}
.woocommerce-account .u-columns form.login,.woocommerce-account .u-columns form.register{max-width:none}
.woocommerce form .form-row label.checkbox{text-transform:none;font-size:.9375rem;display:inline-flex;align-items:center;gap:.5rem}
.woocommerce form .form-row input[type=checkbox]{width:16px;height:16px;accent-color:var(--ink)}
.woocommerce-shipping-calculator,.shipping-calculator-button{font-size:.9375rem}
.foot .foot-cta h3{font-size:clamp(1.7rem,3.4vw,3rem)!important;letter-spacing:-.055em;color:var(--ink-3);font-weight:600;margin:0}

.woocommerce ul.products.columns-5,ul.products.columns-5{grid-template-columns:repeat(5,minmax(0,1fr))}
@media (max-width:1180px){.woocommerce ul.products.columns-5,ul.products.columns-5{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media (max-width:620px){.woocommerce ul.products.columns-5,ul.products.columns-5{grid-template-columns:repeat(2,minmax(0,1fr))}}

/* About page */
.about-intro{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:clamp(2rem,5vw,5rem);align-items:start}
.about-intro .lede-lg{max-width:18ch}
.about-intro .prose{max-width:60ch}
.prose .sub-hero{display:none}
@media (max-width:940px){.about-intro{grid-template-columns:minmax(0,1fr)}}
