/* ===========================================================================
   ad6mski

   THE BLUR RULE. Blur is a state, never a texture.
     · Blurred means unexamined. Sharp means examined.
     · Blur only ever touches photography. Never type, never a surface behind type.
     · Every blurred image has a sharp version one action away.
     · Type never sits on a blurred photograph unless it has a solid ground,
       a hairline bar, or a scrim heavy enough to hold AA contrast.
   Break any of those and the blur reads as a cheap filter instead of a system.

   IMAGE RULE. Campaign imagery may be generated or styled and is marked
   data-image="campaign". It lives on the home, on collections and in editorial
   bands only. Lot pages carry the real garment, shot in hand, always: the
   condition copy on a lot page is a promise, and a generated product shot
   turns it into a lie. Campaign is fantasy, the product shot is the product.

   LAYOUT PRIMITIVES. Three, and nothing else.
     1. .plate   full-bleed photograph, whisper-small type over it
     2. .row     hairline-ruled full-width row
     3. .mosaic  1px-gutter tile grid, blurred at rest
   No cards. No pill buttons. No boxes. Anything outside these three needs a
   written reason.
   ========================================================================= */

:root{
  /* named for what they are in the shop, not for rank */
  --plate:#0b0b0a;      /* the black a garment is photographed against */
  --paper:#e6e4df;      /* gallery wall */
  --ink:#141312;        /* type on paper */
  --graphite:#5f5b54;   /* muted on paper   · 5.4:1 AA */
  --ash:#8f8a81;        /* muted on plate   · 5.9:1 AA */
  --cut:#c2401f;        /* the one accent. LARGE TYPE ONLY, 4.1:1 on paper */

  --hair-dark:rgba(240,238,233,.18);
  --hair-light:rgba(20,19,18,.18);

  --hd:52px;            /* header height, fixed everywhere */
  --pad:18px;           /* the only page gutter */
  --ease:cubic-bezier(.16,.84,.24,1);
  --resolve:cubic-bezier(.2,.75,.2,1);
}

*{margin:0;padding:0;box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  background:var(--plate);color:var(--paper);
  font-family:'Space Grotesk',system-ui,-apple-system,sans-serif;
  font-size:14px;line-height:1.5;
  /* one face for the whole site, the way Rick Owens and Balenciaga both run.
     the range comes from weight, size and tracking, not from a second family.
     a display face here would fight the photography for attention. */
}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button{font:inherit;color:inherit;background:none;border:0}
:focus-visible{outline:2px solid var(--cut);outline-offset:3px}
.sr{position:absolute;width:1px;height:1px;overflow:hidden;clip-path:inset(50%);white-space:nowrap}

/* ---------- type roles ---------- */
.t-display{font-weight:700;letter-spacing:-.04em;text-transform:uppercase;line-height:.94}
.t-micro{font-size:10.5px;letter-spacing:.18em;text-transform:uppercase;line-height:1.5}
.t-body{font-size:14.5px;line-height:1.62;letter-spacing:.005em}

/* ===================== header ===================== */
.hd{position:fixed;inset:0 0 auto 0;height:var(--hd);z-index:200;
    display:grid;grid-template-columns:1fr auto 1fr;align-items:center;
    padding:0 var(--pad)}
/* difference blend disappears over mid grey, and a garment photographed on a
   pale floor is exactly that. so the header carries its own scrim and always
   runs white: legible over any photograph, on any page. */
.hd::before{content:"";position:absolute;inset:0 0 -18px 0;z-index:-1;pointer-events:none;
  background:linear-gradient(to bottom,rgba(0,0,0,.62),rgba(0,0,0,0))}
.hd a{color:#fff;text-shadow:0 1px 12px rgba(0,0,0,.55)}
.hd .l{display:flex;gap:20px;align-items:center}
.hd .r{display:flex;gap:6px;align-items:center;justify-content:flex-end}
.hd .wm{font-weight:700;font-size:15px;letter-spacing:-.02em;justify-self:center;
  color:#fff;text-transform:none}
.six{color:#ff5b3d}

/* ---------- the right-hand cluster: region, then three hairline icons ----------
   drawn at the same weight as the type so the header reads as one object.
   labels are on the elements, not printed, so the row stays whisper quiet. */
.ico{position:relative;display:inline-flex;align-items:center;justify-content:center;
  width:32px;height:32px;color:#fff;transition:opacity .3s var(--ease)}
.ico svg{width:19px;height:19px;fill:none;stroke:currentColor;stroke-width:1.3;
  stroke-linecap:round;stroke-linejoin:round;
  filter:drop-shadow(0 1px 6px rgba(0,0,0,.5))}
.ico:hover,.ico:focus-visible{opacity:.6}
/* the count sits beside the bag in the header's own type, not as a badge and
   not printed inside the glyph, where it read as a blemish on the leather.
   an empty bag shows no number at all, the way it does on a real storefront. */
.ico--bag{width:auto;min-width:32px;padding:0 3px;gap:3px}
.ico .n{font-size:10.5px;letter-spacing:.02em;line-height:1;
  text-shadow:0 1px 12px rgba(0,0,0,.55)}
.ico[data-count="0"] .n{display:none}

/* the native select's popup is drawn by the operating system: blue highlight,
   system font, rounded corners, none of it styleable. so the control is rebuilt
   in the page's own language. the real <select> stays in the markup underneath,
   keeps the value, and is the whole control when JavaScript is off. */
.region{position:relative;display:inline-flex;align-items:center;margin-right:6px}
.region select{-webkit-appearance:none;appearance:none;background-color:transparent;
  color:#fff;border:0;font:inherit;font-size:10.5px;letter-spacing:.14em;
  text-transform:uppercase;cursor:pointer;padding:4px 17px 4px 0;
  text-shadow:0 1px 12px rgba(0,0,0,.55);
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='11' height='7'><path d='M1 1.5l4.5 4 4.5-4' fill='none' stroke='%23ffffff' stroke-width='1.3' stroke-linecap='round'/></svg>");
  background-repeat:no-repeat;background-position:right center}
.region select option{background:#141312;color:#e6e4df;letter-spacing:0}
/* once rebuilt, the select is kept for its value only */
.region.built select{position:absolute;width:1px;height:1px;padding:0;opacity:0;
  pointer-events:none}

.region-btn{display:inline-flex;align-items:center;gap:9px;padding:4px 0;color:#fff;
  font:inherit;font-size:10.5px;letter-spacing:.14em;text-transform:uppercase;
  cursor:pointer;text-shadow:0 1px 12px rgba(0,0,0,.55);white-space:nowrap}
.region-btn svg{width:11px;height:7px;flex:none;fill:none;stroke:currentColor;
  stroke-width:1.3;stroke-linecap:round;transition:transform .3s var(--ease)}
.region-btn[aria-expanded="true"] svg{transform:rotate(180deg)}

/* a hairline panel of rows, the same primitive as everything else */
.region-menu{position:absolute;top:calc(100% + 13px);right:0;z-index:10;min-width:238px;
  background:var(--plate);border:1px solid rgba(240,238,233,.5);
  opacity:0;visibility:hidden;transform:translateY(-6px);
  transition:opacity .2s var(--ease),transform .2s var(--ease),visibility .2s}
.region-menu.on{opacity:1;visibility:visible;transform:none}
.region-menu button{display:block;width:100%;padding:12px 15px;text-align:left;
  cursor:pointer;font-size:10.5px;letter-spacing:.14em;text-transform:uppercase;
  color:var(--ash);border-bottom:1px solid var(--hair-dark);
  transition:background .2s var(--ease),color .2s var(--ease)}
.region-menu button:last-child{border-bottom:0}
/* the current choice is marked with the accent rule, never a tick or a fill */
.region-menu button[aria-selected="true"]{color:var(--paper);
  box-shadow:inset 2px 0 0 var(--cut)}
.region-menu button:hover,.region-menu button:focus-visible{
  background:var(--paper);color:var(--ink);outline:0}

/* ===================== primitive 1: the plate ===================== */
.plate{position:relative;overflow:hidden;background:var(--plate);
       height:100svh;display:block}
.plate--band{height:78svh}
.plate .base{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
  filter:grayscale(1) contrast(1.14) brightness(.9) blur(calc(var(--soft,18) * 1px));
  transform:scale(calc(1.05 + var(--soft,18) * .0025));
  transition:filter 1.4s var(--resolve),transform 1.6s var(--resolve)}
/* the label rides on its own scrim, so it is legible over any photograph */
.plate .cap{position:absolute;left:0;right:0;top:13%;z-index:20;text-align:center;
  pointer-events:none}
.plate .cap b{display:inline-block;font-weight:700;font-size:11px;letter-spacing:.36em;
  text-transform:uppercase;color:#fff;padding:7px 14px;
  background:rgba(11,11,10,.46);backdrop-filter:blur(6px)}
/* the bar at the foot of a plate is solid, never translucent over blur */
.plate-bar{position:absolute;left:0;right:0;bottom:0;z-index:30;
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:14px var(--pad);background:var(--plate);border-top:1px solid var(--hair-dark)}
.plate-bar .arw{transition:transform .5s var(--ease);display:inline-block}
.plate:hover .plate-bar .arw,.plate:focus-visible .plate-bar .arw{transform:translateX(12px)}


/* ===================== primitive 2: hairline rows ===================== */
.rows{border-top:1px solid var(--hair-dark)}
.row{display:flex;align-items:baseline;justify-content:space-between;gap:20px;
  padding:20px var(--pad);border-bottom:1px solid var(--hair-dark);
  font-weight:700;letter-spacing:-.03em;text-transform:uppercase;
  font-size:clamp(17px,2.7vw,32px)}
.row .meta{font-weight:400;font-size:10.5px;letter-spacing:.18em;color:var(--ash);
  text-transform:uppercase;white-space:nowrap}
.row--big{font-size:clamp(24px,5.4vw,64px);padding:26px var(--pad)}
.row .arw{display:inline-block;transition:transform .5s var(--ease)}
a.row:hover .arw,a.row:focus-visible .arw{transform:translateX(12px)}
a.row:hover{background:rgba(240,238,233,.05)}

/* a ledger is a row set turned sideways: label left, value right, ruled */
.ledger{border-top:1px solid var(--hair-dark)}
.ledger div{display:flex;justify-content:space-between;gap:18px;
  padding:11px var(--pad);border-bottom:1px solid var(--hair-dark);
  font-size:11px;letter-spacing:.14em;text-transform:uppercase}
.ledger dt,.ledger .k{color:var(--ash)}
.ledger dd,.ledger .v{text-align:right}
.ledger .todo{color:var(--ash)}

/* ===================== primitive 3: the mosaic ===================== */
.mosaic{display:grid;gap:1px;background:var(--hair-dark);
        grid-template-columns:repeat(4,1fr)}
.mosaic--6{grid-template-columns:repeat(6,1fr)}
.tile{position:relative;overflow:hidden;background:var(--plate);
      aspect-ratio:4/5;display:block}
.tile img{width:100%;height:100%;object-fit:cover;
  filter:grayscale(1) contrast(1.16) brightness(.62) blur(7px);
  transform:scale(1.1);
  transition:filter .5s var(--resolve),transform .8s var(--ease)}
.tile:hover img,.tile:focus-visible img{
  filter:grayscale(0) contrast(1.03) brightness(.98) blur(0);transform:scale(1.01)}
/* no hover means no way to examine a tile, so on touch whatever the thumb has
   scrolled to the centre of the screen resolves instead */
@media (hover:none){
  .tile.read img{filter:grayscale(0) contrast(1.03) brightness(.98) blur(0);transform:scale(1.01)}
  .tile.read figcaption .lot{color:var(--paper)}
}
/* the caption sits on a solid foot, never floating on the blur */
.tile figcaption{position:absolute;left:0;right:0;bottom:0;z-index:2;
  padding:10px 12px;background:linear-gradient(to top,rgba(11,11,10,.96) 40%,rgba(11,11,10,0));
  display:flex;justify-content:space-between;gap:10px;
  font-size:10px;letter-spacing:.16em;text-transform:uppercase}
.tile figcaption .lot{color:var(--ash)}
.tile:hover figcaption .lot{color:var(--paper)}

/* ===================== bands, inversion, section heads ===================== */
.band{padding:0}
.band--paper{background:var(--paper);color:var(--ink)}
.band--paper .rows,.band--paper .row,.band--paper .ledger,.band--paper .ledger div{
  border-color:var(--hair-light)}
.band--paper .row .meta,.band--paper .ledger dt,.band--paper .ledger .k,
.band--paper .ledger .todo{color:var(--graphite)}
.band--paper a.row:hover{background:rgba(20,19,18,.05)}
.band--paper .mosaic{background:var(--hair-light)}
.band--paper .tile{background:var(--paper)}

.head{display:flex;align-items:baseline;justify-content:space-between;gap:20px;
  padding:26px var(--pad) 14px}
.head h2{font-weight:700;font-size:clamp(15px,2vw,22px);letter-spacing:-.02em;text-transform:uppercase}
.head .meta{font-size:10.5px;letter-spacing:.18em;text-transform:uppercase;color:var(--ash)}
.band--paper .head .meta{color:var(--graphite)}

/* a statement band: headline left, the argument right. one column stacked.
   the old single narrow column left half the frame dead and broke the
   headline into six lines, which reads as a template, not a decision. */
.say{display:grid;grid-template-columns:1fr;gap:18px;padding:60px var(--pad) 40px}
.say h2{font-weight:700;font-size:clamp(34px,7vw,96px);letter-spacing:-.045em;
  text-transform:uppercase;line-height:.9;max-width:12ch}
.say p{max-width:46ch;font-size:15px;line-height:1.62;color:var(--ash)}
.band--paper .say p{color:var(--graphite)}
@media (min-width:900px){
  .say{grid-template-columns:1.1fr .9fr;gap:60px;align-items:end;padding:96px var(--pad) 60px}
  .say p{padding-bottom:.5em}
}

/* ===================== footer ===================== */
.ft{padding:0 0 var(--pad)}
.ft .mark{padding:56px var(--pad) 22px;font-weight:700;
  font-size:clamp(48px,15vw,190px);letter-spacing:-.055em;line-height:.82;text-transform:lowercase}
.ft .fine{display:flex;flex-wrap:wrap;gap:8px 26px;padding:20px var(--pad) 0;
  font-size:10.5px;letter-spacing:.18em;text-transform:uppercase;color:var(--ash)}

/* ===================== responsive ===================== */
@media (max-width:900px){
  .mosaic,.mosaic--6{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:600px){
  :root{--pad:14px}
  .hd .l a:not(:first-child){display:none}
  .region{display:none}
  .ico{width:30px}
  .hd .r{gap:2px}
  .mosaic,.mosaic--6{grid-template-columns:repeat(2,1fr)}
  .plate .cap{top:11%}
  .plate .cap b{letter-spacing:.24em;font-size:10px}
  /* stacked, the ledger keeps its rules rather than collapsing to a text column */
  .ledger div{font-size:10.5px;letter-spacing:.1em}
  .say{padding:40px var(--pad) 28px}
}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{transition-duration:.01ms !important}
  .plate .base{filter:grayscale(1) contrast(1.14) brightness(.9);transform:none}
  .tile img{transform:scale(1.02)}
}

/* scroll reveal is gated on js, so the page is never blank without it */
.js [data-reveal]{opacity:0;transform:translateY(14px)}
.js [data-reveal].seen{opacity:1;transform:none;
  transition:opacity .7s var(--resolve),transform .7s var(--resolve)}

/* ===================== collections =====================
   an emblem and a name. a collection is not a lot, so the name sits beneath
   the picture rather than on it: on a lot the photograph IS the product, on a
   collection it is only a badge. some tiles are photographs and some are pure
   type, which is what gives the wall its rhythm. */
.cols{display:grid;grid-template-columns:repeat(6,1fr);gap:1px;background:var(--plate)}
.col{position:relative;display:block;background:var(--plate)}
.col .em{position:relative;aspect-ratio:1/1;overflow:hidden;background:var(--plate);
  display:flex;align-items:center;justify-content:center}
.col .em img{width:100%;height:100%;object-fit:cover;
  filter:grayscale(1) contrast(1.16) brightness(.6) blur(6px);transform:scale(1.09);
  transition:filter .5s var(--resolve),transform .8s var(--ease)}
.col:hover .em img,.col:focus-visible .em img{
  filter:grayscale(0) contrast(1.03) brightness(.98) blur(0);transform:scale(1.01)}
/* the label rides inside the tile, so a collection is one clean square rather
   than a square with a strip of dead ground under it */
.col .nm{position:absolute;left:0;right:0;bottom:0;z-index:2;
  display:flex;align-items:baseline;justify-content:space-between;gap:10px;
  padding:12px;font-size:11px;letter-spacing:.14em;text-transform:uppercase}
.col:not(.col--word) .nm{
  background:linear-gradient(to top,rgba(11,11,10,.96) 40%,rgba(11,11,10,0))}
.col .arw{display:inline-block;transition:transform .5s var(--ease)}
.col:hover .arw,.col:focus-visible .arw{transform:translateX(8px)}

/* the type tiles: a name at full size on the plate, inverting when read */
.col--word .em{background:#141312;transition:background .4s var(--resolve),color .4s var(--resolve)}
.col--word .word{font-weight:700;font-size:clamp(14px,1.8vw,30px);letter-spacing:-.045em;
  text-transform:uppercase;text-align:center;line-height:.92;padding:14px}
.col--word:hover .em,.col--word:focus-visible .em{background:var(--paper);color:var(--ink)}
/* the arrow inverts with the square it sits on */
.col--word:hover .nm,.col--word:focus-visible .nm{color:var(--ink)}
.col--word .nm{justify-content:flex-end}

/* ===================== consent =====================
   a hairline bar in the page's own language, not a floating card. decline is
   listed first and weighted the same as accept: no dark pattern. */
.consent{position:fixed;left:0;right:0;bottom:0;z-index:300;display:none;
  gap:18px 26px;align-items:center;justify-content:space-between;flex-wrap:wrap;
  padding:16px var(--pad);background:var(--plate);border-top:1px solid var(--hair-dark)}
.consent.on{display:flex}
.consent p{font-size:11px;letter-spacing:.1em;text-transform:uppercase;color:var(--ash);
  max-width:74ch;line-height:1.7}
.consent p a{color:var(--paper);text-decoration:underline;text-underline-offset:3px}
.consent .acts{display:flex;gap:10px;flex-shrink:0}
/* rectangles, not pills */
.consent button{padding:10px 18px;border:1px solid rgba(240,238,233,.55);color:var(--paper);
  font-size:10.5px;letter-spacing:.18em;text-transform:uppercase;cursor:pointer;
  transition:background .3s var(--ease),color .3s var(--ease)}
.consent button:hover{background:var(--paper);color:var(--ink)}

/* ===================== 404 =====================
   the plate never resolves, because there is nothing here to examine */
.plate--unresolved .base{filter:grayscale(1) contrast(1.1) brightness(.62) blur(9px)}
.gone{position:absolute;left:0;right:0;top:50%;transform:translateY(-50%);z-index:20;
  padding:0 var(--pad);text-align:center;pointer-events:none}
.gone h1{font-weight:700;font-size:clamp(38px,9vw,132px);letter-spacing:-.05em;
  text-transform:uppercase;line-height:.9;color:#fff;text-shadow:0 4px 40px rgba(0,0,0,.7)}
.gone p{margin-top:16px;font-size:11px;letter-spacing:.18em;text-transform:uppercase;
  color:#fff;opacity:.78;text-shadow:0 2px 20px rgba(0,0,0,.8)}

@media (max-width:900px){
  .cols{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:600px){
  .cols{grid-template-columns:repeat(2,1fr)}
  .consent{gap:14px}
  .consent p{font-size:10.5px;letter-spacing:.08em}
  .consent .acts{width:100%}
  .consent button{flex:1}
}

/* ===================== the enlarger =====================
   the loupe is gone; inspection happens here instead. full bleed, sharp, and
   zoomable, because on a four-figure archive piece a buyer has to be able to
   see the stitching before they pay. */
.lb{position:fixed;inset:0;z-index:400;background:var(--plate);display:none}
.lb.on{display:block}
.lb-stage{position:absolute;inset:var(--hd) 0 56px;overflow:hidden;
  display:grid;place-items:center;cursor:zoom-in;touch-action:none}
.lb-stage.zoomed{cursor:grab}
.lb-stage.zoomed:active{cursor:grabbing}
.lb-stage img{max-width:100%;max-height:100%;width:auto;height:auto;object-fit:contain;
  user-select:none;-webkit-user-drag:none;
  transition:transform .38s var(--resolve)}
.lb-stage.panning img{transition:none}
.lb-bar{position:absolute;left:0;right:0;bottom:0;display:flex;align-items:center;
  justify-content:space-between;gap:14px;padding:16px var(--pad);
  border-top:1px solid var(--hair-dark);
  font-size:10.5px;letter-spacing:.18em;text-transform:uppercase;color:var(--ash)}
.lb-bar .nav{display:flex;gap:10px}
/* rectangles, in the same chip language as everything else */
.lb button{padding:9px 16px;border:1px solid rgba(240,238,233,.5);color:var(--paper);
  font-size:10.5px;letter-spacing:.18em;text-transform:uppercase;cursor:pointer;
  transition:background .3s var(--ease),color .3s var(--ease)}
.lb button:hover{background:var(--paper);color:var(--ink)}
.lb button[disabled]{opacity:.35;cursor:not-allowed}
.lb button:hover[disabled]{background:none;color:var(--paper)}
.lb-close{position:absolute;top:0;right:var(--pad);height:var(--hd);
  display:flex;align-items:center;z-index:2}
.lb-close button{border-color:transparent;padding:9px 4px}
.lb-count{position:absolute;top:0;left:var(--pad);height:var(--hd);
  display:flex;align-items:center;
  font-size:10.5px;letter-spacing:.18em;text-transform:uppercase;color:var(--ash)}
html.lb-open,html.lb-open body{overflow:hidden}
/* a plate that opens the enlarger says so */
.plate--zoom{cursor:zoom-in}

@media (max-width:600px){
  .lb-bar{padding:12px var(--pad)}
  .lb-bar .nav{gap:8px}
}

/* ===================== documents =====================
   policies are the one place on this site meant to be read at length, so they
   invert to paper and take a real measure. this is a fourth primitive and it
   earns its place: a hairline row cannot hold three paragraphs. */
.doc{background:var(--paper);color:var(--ink);padding:calc(var(--hd) + 46px) var(--pad) 0}
.doc-head{border-bottom:1px solid var(--hair-light);padding-bottom:22px;margin-bottom:36px}
.doc-head h1{font-weight:700;font-size:clamp(30px,6vw,74px);letter-spacing:-.045em;
  text-transform:uppercase;line-height:.9}
.doc-head .meta{margin-top:13px;font-size:10.5px;letter-spacing:.18em;
  text-transform:uppercase;color:var(--graphite)}
.doc-body{max-width:64ch;padding-bottom:76px}
.doc-body h2{font-weight:700;font-size:clamp(15px,2vw,22px);letter-spacing:-.02em;
  text-transform:uppercase;margin:40px 0 12px}
.doc-body h2:first-child{margin-top:0}
.doc-body p{font-size:15px;line-height:1.68;margin-bottom:14px}
.doc-body ul{margin:0 0 16px;padding:0;list-style:none}
.doc-body li{position:relative;padding-left:20px;font-size:15px;line-height:1.68;margin-bottom:9px}
.doc-body li::before{content:"";position:absolute;left:0;top:.76em;width:9px;height:1px;
  background:var(--graphite)}
.doc-body a{text-decoration:underline;text-underline-offset:3px}

/* an unwritten section says so in the accent, so a draft cannot ship by accident */
.tofill{border-left:2px solid var(--cut);padding:11px 0 11px 15px;margin:0 0 18px;
  font-size:13.5px;line-height:1.62;color:var(--graphite)}
.tofill b{color:var(--ink);font-weight:500}
.draft{margin:0 0 32px;padding:13px 15px;background:var(--cut);color:#fff;
  font-size:10.5px;letter-spacing:.14em;text-transform:uppercase;line-height:1.6}

/* the other documents, as rows, on the dark side */
.doc-index{background:var(--plate);color:var(--paper)}
.doc-index .row{font-size:clamp(15px,2.2vw,26px)}

/* the footer's fine print carries the legal links */
.ft .fine a{text-decoration:none;color:var(--ash)}
.ft .fine a:hover{color:var(--paper)}

/* a document page is bone, so the header inverts with it: no scrim, ink type */
body.on-paper .hd::before{display:none}
body.on-paper .hd a,body.on-paper .hd .wm,body.on-paper .region-btn{
  color:var(--ink);text-shadow:none}
body.on-paper .ico{color:var(--ink)}
body.on-paper .ico svg{filter:none}
body.on-paper .six{color:var(--cut)}
body.on-paper .hd{background:var(--paper);border-bottom:1px solid var(--hair-light)}

/* a blank sits inline in the prose rather than breaking it into a block, so a
   written policy still reads as a written policy while it waits on a fact */
.blank{background:rgba(194,64,31,.13);box-shadow:inset 0 -1px 0 var(--cut);
  padding:0 5px;color:var(--ink);white-space:nowrap}

/* the header stops being a scrim once there is no photograph under it */
.hd{transition:background .25s var(--ease),border-color .25s var(--ease)}
.hd--solid{background:var(--plate);border-bottom:1px solid var(--hair-dark)}
.hd--solid::before{opacity:0}

/* touch needs a 44px target; a 30px icon is a miss waiting to happen */
@media (hover:none){
  .ico{width:44px;height:44px}
  .ico--bag{min-width:44px}
  .hd .r{gap:0}
}

/* the cookie bar was eating 15% of a phone screen and burying the one link
   into the shop. shorter copy, buttons on one row, half the height. */
@media (max-width:600px){
  .consent{padding:13px var(--pad);gap:12px}
  .consent .wide-only{display:none}
  .consent .acts{width:auto;margin-left:auto}
  .consent button{flex:none;padding:9px 14px}
}

/* the cookie bar was sitting on top of the plate's own bar, which on a phone
   is the only route into the shop above the fold. lift it clear, the same way
   the buy row lifts. */
.plate-bar{bottom:var(--consent-h,0px);transition:bottom .3s var(--ease)}

/* ===================== panels: search and bag =====================
   both are the same object, a full screen sheet in the page's own language.
   they are built by script, so the controls that open them stay hidden until
   the script has wired them: a dead button is worse than no button. */
.ico[data-open]{visibility:hidden}
.js-ready .ico[data-open]{visibility:visible}

.panel{position:fixed;inset:0;z-index:400;background:var(--plate);
  display:none;flex-direction:column}
.panel.on{display:flex}
.panel-top{flex:none;height:var(--hd);display:flex;align-items:center;
  justify-content:space-between;gap:16px;padding:0 var(--pad);
  border-bottom:1px solid var(--hair-dark);
  font-size:10.5px;letter-spacing:.18em;text-transform:uppercase;color:var(--ash)}
.panel-top button{padding:9px 4px;color:var(--paper);cursor:pointer;
  font-size:10.5px;letter-spacing:.18em;text-transform:uppercase}
.panel-top button:hover{color:var(--ash)}
.panel-body{flex:1;overflow-y:auto;overscroll-behavior:contain}
.panel-foot{flex:none;border-top:1px solid var(--hair-dark)}
html.panel-open,html.panel-open body{overflow:hidden}

/* the search field is the biggest type on the page, because it is the page */
.srch{display:flex;align-items:center;gap:14px;padding:24px var(--pad) 26px;
  border-bottom:1px solid var(--hair-dark)}
.srch input{flex:1;min-width:0;background:none;border:0;outline:0;color:var(--paper);
  font:inherit;font-weight:700;font-size:clamp(24px,5vw,54px);
  letter-spacing:-.04em;text-transform:uppercase}
.srch input::placeholder{color:var(--ash);opacity:1}
.srch svg{width:20px;height:20px;flex:none;fill:none;stroke:var(--ash);
  stroke-width:1.3;stroke-linecap:round}

/* one result, one hairline row, with the plate it belongs to */
.res{display:flex;align-items:center;gap:15px;padding:12px var(--pad);
  border-bottom:1px solid var(--hair-dark);text-decoration:none;color:var(--paper);
  width:100%;text-align:left}
.res img{width:54px;height:68px;object-fit:cover;flex:none;
  filter:grayscale(1) contrast(1.12) brightness(.78);
  transition:filter .4s var(--resolve)}
.res:hover img,.res:focus-visible img{filter:grayscale(0) contrast(1.02) brightness(1)}
.res:hover,.res:focus-visible{background:rgba(240,238,233,.05);outline:0}
.res .col{flex:1;min-width:0}
.res .n{font-weight:700;text-transform:uppercase;letter-spacing:-.02em;
  font-size:clamp(15px,2.3vw,21px);line-height:1.1}
.res .m{margin-top:5px;font-size:10px;letter-spacing:.18em;text-transform:uppercase;
  color:var(--ash);display:flex;gap:12px;flex-wrap:wrap}
.res .p{font-size:11px;letter-spacing:.14em;text-transform:uppercase;
  color:var(--paper);white-space:nowrap;flex:none}
.res .kill{flex:none;padding:10px 12px;color:var(--ash);cursor:pointer;
  font-size:10px;letter-spacing:.18em;text-transform:uppercase}
.res .kill:hover{color:var(--cut)}

.panel-note{padding:26px var(--pad);font-size:11px;letter-spacing:.14em;
  text-transform:uppercase;color:var(--ash);line-height:1.8}
.sum{display:flex;align-items:baseline;justify-content:space-between;gap:16px;
  padding:16px var(--pad);border-bottom:1px solid var(--hair-dark);
  font-size:11px;letter-spacing:.18em;text-transform:uppercase;color:var(--ash)}
.sum b{color:var(--paper);font-weight:700;font-size:15px;letter-spacing:.06em}
/* checkout is honest about not existing yet rather than looking broken */
.go{display:flex;align-items:center;justify-content:space-between;gap:16px;
  width:100%;padding:20px var(--pad);background:var(--paper);color:var(--ink);
  font-weight:700;text-transform:uppercase;letter-spacing:-.03em;
  font-size:clamp(17px,2.8vw,30px);text-align:left}
.go[disabled]{background:#1b1a18;color:var(--ash);cursor:not-allowed;font-weight:400;
  font-size:11px;letter-spacing:.18em;justify-content:center}
