/* ══════════════════════════════
   TOKENS
══════════════════════════════ */
:root {
  --ink:       #0E1117;
  --ink-mid:   #141922;
  --surface:   #1C2230;
  --surface2:  #222A3A;
  --border:    rgba(155, 168, 232, 0.214);
  --border2:   rgba(255,255,255,0.055);
  --peri:      #9BA8E8;
  --peri-dim:  rgba(155,168,232,0.11);
  --peri-dark: #7A8DD4;
  --sand:      #E8DDD0;
  --sand-mid:  rgba(232,221,208,0.55);
  --sand-dim:  rgba(232,221,208,0.06);
  --text:      #F0EDE6;
  --text-mid:  rgba(231, 229, 225, 0.727);
  --text-low:  rgba(238, 235, 230, 0.426);
}

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;font-size:clamp(14px,0.9vw,18px)}
body{
  background:var(--ink);color:var(--text);
  font-family:'Satoshi',sans-serif;font-weight:400;
  -webkit-font-smoothing:antialiased;overflow-x:hidden;
}
body::after{
  content:'';position:fixed;inset:0;pointer-events:none;z-index:9000;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}

.page{display:none;min-height:100vh}
.page.active{display:block}

/* ══════════════════════════════
   NAV
══════════════════════════════ */
nav{
  position:fixed;top:0;left:0;right:0;z-index:500;height:62px;
  display:grid;grid-template-columns:1fr auto 1fr;align-items:center;
  padding:0 3.714rem;
  background:rgba(14,17,23,0.92);backdrop-filter:blur(1.429rem);
  border-bottom:1px solid var(--border2);
}
.nav-logo{
  font-family:'Playfair Display',serif;font-weight:400;
  font-size:1.429rem;letter-spacing:0.06em;cursor:pointer;
  color:#F0EDE6;display:flex;align-items:baseline;gap:0;
  text-decoration:none;
}
.nav-logo .nl-soft{color:#F0EDE6;font-style:normal}
.nav-logo .nl-mattr{color:var(--peri);font-style:italic}

.nav-links{display:flex;gap:2.286rem;align-items:center}
.nav-link{
  font-family:'Satoshi',sans-serif;font-size:0.929rem;font-weight:400;
  color:var(--text-mid);cursor:pointer;border:none;background:none;
  letter-spacing:0.01em;transition:color 0.2s;padding:0.286rem 0;position:relative;
  text-decoration:none;
}
.nav-link::after{
  content:'';position:absolute;bottom:-0.143rem;left:0;right:0;
  height:0.071rem;background:var(--peri);transform:scaleX(0);
  transition:transform 0.22s;transform-origin:left;
}
.nav-link:hover{color:var(--text)}
.nav-link:hover::after,.nav-link.active::after{transform:scaleX(1)}
.nav-link.active{color:var(--text)}

.nav-logo{justify-self:start}
.nav-links{justify-self:center}

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.btn-primary{
  display:inline-flex;align-items:center;gap:0.571rem;
  background:var(--peri);color:var(--ink);
  font-family:'Satoshi',sans-serif;font-weight:500;
  font-size:1rem;letter-spacing:0.01em;
  padding:0.786rem 1.571rem;border-radius:0.143rem;border:none;cursor:pointer;
  transition:background 0.18s,transform 0.12s;white-space:nowrap;
}
.btn-primary:hover{background:var(--peri-dark);transform:translateY(-0.071rem)}
.btn-primary:active{transform:translateY(0)}

.btn-ghost{
  display:inline-flex;align-items:center;gap:0.5rem;
  background:transparent;color:var(--text-mid);
  font-family:'Satoshi',sans-serif;font-size:0.857rem;font-weight:400;
  letter-spacing:0.04em;padding:0.714rem 1.286rem;border-radius:0.143rem;
  border:1px solid var(--border);cursor:pointer;
  transition:border-color 0.18s,color 0.18s;
  text-decoration:none;
}
.btn-ghost:hover{border-color:var(--peri);color:var(--text)}

.btn-buy{
  display:flex;align-items:center;justify-content:center;gap:0.714rem;
  width:100%;background:var(--peri);color:var(--ink);
  font-family:'Satoshi',sans-serif;font-weight:500;
  font-size:1rem;padding:1.143rem 2rem;border-radius:0.143rem;border:none;
  cursor:pointer;transition:background 0.18s,transform 0.12s;
}
.btn-buy:hover{background:var(--peri-dark);transform:translateY(-0.071rem)}

/* ══════════════════════════════
   MATERIAL TAG
══════════════════════════════ */
.mat-tag{
  display:inline-flex;align-items:center;gap:0.429rem;
  font-family:'DM Mono',monospace;font-size:0.571rem;
  letter-spacing:0.15em;text-transform:uppercase;
  padding:0.357rem 0.714rem;border-radius:0.071rem;
  border:1px solid var(--border2);color:var(--text-low);
  background:var(--sand-dim);
}
.mat-tag.highlight{
  border-color:rgba(232,221,208,0.2);
  color:rgba(200,196,190,0.42);background:rgba(232,221,208,0.07);
}

/* ══════════════════════════════
   PRODUCT CARD
══════════════════════════════ */
.product-card{
  background:var(--ink-mid);border:1px solid var(--border2);
  border-radius:0.214rem;overflow:hidden;cursor:pointer;
  transition:border-color 0.22s,transform 0.22s;
}
.product-card:hover{border-color:rgba(155,168,232,0.2);transform:translateY(-0.214rem)}

.pc-image{
  width:100%;aspect-ratio:3/4;overflow:hidden;
  background:#fff;position:relative;
}
.pc-img-default,.pc-img-hover{
  width:100%;height:100%;object-fit:cover;
  transition:opacity 0.25s ease, transform 0.35s ease;
}
.pc-img-hover{
  position:absolute;top:0;left:0;
  opacity:0;
}
.product-card:hover .pc-img-hover{opacity:1}
.product-card:hover .pc-img-default{opacity:0}
.product-card.single-img:hover .pc-img-default{opacity:1;transform:scale(1.05)}

.pc-mat-overlay{
  position:absolute;bottom:0;left:0;right:0;
  padding:1rem 1rem 0.857rem;
  background:rgba(28,34,48,0.75);
  opacity:0;transition:opacity 0.28s;
}
.product-card:hover .pc-mat-overlay{opacity:1}
.pmo-label{
  font-family:'DM Mono',monospace;font-size:0.714rem;
  letter-spacing:0.16em;text-transform:uppercase;
  color:rgba(220,216,210,0.85);line-height:1.5;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}

.pc-cat-chip{
  position:absolute;top:0.857rem;left:0.857rem;
  background:rgba(14,17,23,0.8);backdrop-filter:blur(0.429rem);
  border:1px solid var(--border2);border-radius:0.071rem;
  padding:0.286rem 0.643rem;
  font-family:'DM Mono',monospace;font-size:0.5rem;
  letter-spacing:0.18em;text-transform:uppercase;color:var(--text-mid);
}

.pc-body{padding:0.929rem 1.071rem 1.071rem}
.pc-brand{
  font-family:'DM Mono',monospace;font-size:0.714rem;
  letter-spacing:0.22em;text-transform:uppercase;
  color:var(--peri);opacity:0.65;margin-bottom:0.5rem;
}
.pc-title{
  font-family:'Satoshi',sans-serif;font-size:1rem;font-weight:400;
  color:var(--text);line-height:1.45;margin-bottom:0.714rem;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.pc-footer{display:flex;align-items:center;justify-content:space-between}
.pc-price{
  font-family:'Satoshi',sans-serif;font-weight:400;
  font-size:0.929rem;color:var(--text-mid);
}
.pc-cta{
  font-family:'DM Mono',monospace;font-size:0.643rem;
  letter-spacing:0.14em;text-transform:uppercase;
  color:var(--peri);opacity:0.45;transition:opacity 0.18s;
}
.product-card:hover .pc-cta{opacity:1}

/* ══════════════════════════════
   SECTION HELPERS
══════════════════════════════ */
.section-label{
  font-family:'DM Mono',monospace;font-size:0.714rem;
  letter-spacing:0.3em;text-transform:uppercase;
  color:var(--peri);opacity:0.55;
}



/* ══════════════════════════════
   HOME
══════════════════════════════ */
#page-home{padding-top:62px}

/* Hero */
.hero{
  display:grid;grid-template-columns:52% 48%;
  min-height:calc(100vh - 62px);
}
.hero-left{
  padding:5.714rem 4.286rem 5.714rem;
  display:flex;flex-direction:column;justify-content:center;
  border-right:1px solid var(--border2);position:relative;overflow:hidden;
}
.hero-left::before{
  content:'';position:absolute;width:50rem;height:50rem;border-radius:50%;
  background:radial-gradient(circle,rgba(155,168,232,0.035) 0%,transparent 68%);
  top:-20rem;left:-18.571rem;pointer-events:none;
}

.h-headline{
  font-family:'Playfair Display',serif;font-weight:400;
  font-size:clamp(2.571rem,4vw,4.857rem);letter-spacing:0.01em;
  line-height:1.08;color:var(--text);margin-bottom:2rem;
}
.h-headline em{
  font-style:italic;
  color:var(--peri);
}
.h-sub{
  font-family:'Satoshi',sans-serif;
  font-size:1.071rem;font-weight:400;color:var(--text-mid);
  line-height:1.78;max-width:28.571rem;margin-bottom:3.143rem;
}
.h-actions{display:flex;gap:0.857rem;align-items:center}

.h-mat-row{
  display:flex;gap:0.571rem;flex-wrap:wrap;
  margin-top:4rem;padding-top:2.571rem;
  border-top:1px solid var(--border2);
}

/* Hero right */
.hero-right{position:relative;overflow:hidden;background:var(--ink)}
.hero-mosaic{
  position:absolute;inset:0;
  display:grid;grid-template-columns:1fr 1fr;
  gap:0.214rem;background:var(--ink);
}
.hm-col{overflow:hidden;height:100%;container-type:size}
.hm-track{display:flex;flex-direction:column;will-change:transform}
.hm-slide{width:100%;height:100cqh;flex-shrink:0;position:relative;overflow:hidden}
.hm-slide img{width:100%;height:100%;object-fit:cover;object-position:center}
.hm-col:first-child .hm-slide img{object-position:top center}
.hm-slide-half{height:50cqh}
.hm-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(14,17,23,0.65) 0%,transparent 52%);
}
.hm-caption{
  position:absolute;bottom:0.929rem;left:0.929rem;
  font-family:'DM Mono',monospace;font-size:0.571rem;
  letter-spacing:0.14em;text-transform:uppercase;
  color:rgba(220,215,208,0.75);
}
.hm-mat{
  position:absolute;bottom:0.929rem;right:0.929rem;
  font-family:'DM Mono',monospace;font-size:0.571rem;
  letter-spacing:0.1em;text-transform:uppercase;
  color:rgba(200,196,190,0.65);opacity:0;transition:opacity 0.35s;
}
.hero-mosaic:hover .hm-mat{opacity:1}

/* Material philosophy section */
.mat-philosophy{
  display:grid;grid-template-columns:1fr 1fr;
}
.mp-left{
  padding:5.714rem 3.714rem;
  display:flex;flex-direction:column;justify-content:center;
}
.mp-eyebrow{margin-bottom:1.429rem}
.mp-headline{
  font-family:'Playfair Display',serif;font-weight:400;
  font-size:2.714rem;letter-spacing:0.01em;line-height:1.12;
  color:var(--text);margin-bottom:1.571rem;
}
.mp-headline em{
  font-style:italic;
  color:var(--peri);
}
.mp-body{
  font-family:'Satoshi',sans-serif;
  font-size:1rem;font-weight:400;color:var(--text-mid);line-height:1.8;
  margin-bottom:1.429rem;max-width:30rem;
}
.mp-right{
  padding:5.714rem 3.714rem;display:flex;flex-direction:column;
  gap:0.214rem;justify-content:center;
}
.material-row{
  display:flex;align-items:center;justify-content:space-between;
  padding:1.143rem 1.429rem;background:var(--surface);
  border:1px solid var(--border2);border-radius:0.143rem;
  transition:border-color 0.18s,background 0.18s;cursor:pointer;
}
.material-row:hover{
  border-color:rgba(155,168,232,0.18);
  background:rgba(155,168,232,0.05);
}
.mr-left{display:flex;align-items:center;gap:1rem}

.mr-name{
  font-family:'Satoshi',sans-serif;font-size:1rem;font-weight:400;color:var(--text);
}
.mr-sub{
  font-family:'DM Mono',monospace;font-size:0.714rem;
  letter-spacing:0.03em;color:rgba(200,196,190,0.32);margin-top:0.357rem;
}
.mr-right{
  font-family:'DM Mono',monospace;font-size:0.714rem;
  letter-spacing:0.1em;text-transform:uppercase;color:var(--text-low);
  opacity:0;transform:translateX(-0.357rem);
  transition:opacity 0.2s,transform 0.2s;
}
.material-row:hover .mr-right{opacity:1;color:var(--peri);transform:translateX(0)}

/* ── Editorial section ── */

.editorial-strip{
  display:grid;grid-template-columns:1fr 1fr;
  align-items:stretch;
}
.editorial-strip > .es-panel{min-width:0}
.es-panel{
  padding:3.143rem 3.714rem 4rem;
  display:flex;flex-direction:column;gap:1.143rem;
}
.es-title{
  font-family:'Playfair Display',serif;font-weight:400;
  font-size:1.571rem;letter-spacing:0.01em;line-height:1.18;color:var(--text);
}
.es-body{
  font-family:'Satoshi',sans-serif;font-size:0.929rem;font-weight:400;
  color:var(--text-mid);line-height:1.78;
}
.es-link{
  display:inline-flex;align-items:center;justify-content:flex-start;gap:0.5rem;
  font-family:'Satoshi',sans-serif;font-size:0.857rem;font-weight:400;
  letter-spacing:0.04em;color:var(--text-mid);
  width:fit-content;align-self:flex-start;margin-top:auto;cursor:pointer;
  background:transparent;border:1px solid var(--border);border-radius:0.143rem;
  text-align:left;padding:0.714rem 1.286rem;text-decoration:none;
  transition:border-color 0.18s,color 0.18s;
}
.es-link:hover{border-color:var(--peri);color:var(--text)}
.es-panel--brands{
  padding:0 3.428rem;
  background:rgba(232,221,208,0.03);
  justify-content:stretch;
  overflow:hidden;
}
.es-brand-grid{
  flex:1;width:100%;min-height:0;
  --es-logo-row-fill:20;
  --es-logo-gap:1.786rem;
  display:grid;grid-template-rows:1fr 1fr;gap:0;
}
.es-brand-row--4,
.es-brand-row--3{
  --row-scale:1;
  container-type:size;
  display:flex;align-items:center;justify-content:center;
  width:100%;height:100%;min-height:0;
  overflow:hidden;
}
.es-brand-row-inner{
  display:flex;align-items:center;justify-content:space-between;
  gap:calc(var(--es-logo-gap) * var(--row-scale,1));
  width:100%;max-width:100%;
  box-sizing:border-box;
}
.es-brand-logo{
  --logo-ratio:1;
  display:flex;align-items:center;justify-content:center;
  flex:0 0 auto;
  padding:0.143rem 0;
  background:transparent;border:none;border-radius:0.143rem;
  cursor:pointer;
  transition:background 0.18s;
}
.es-brand-logo--mate,.es-brand-logo--at{--logo-ratio:calc(109 / 117)}
.es-brand-logo--pangaia{--logo-ratio:calc(96 / 117)}
.es-brand-logo--santos{--logo-ratio:calc(95 / 117)}
.es-brand-logo--mm{--logo-ratio:calc(91 / 117)}
.es-brand-logo--non{--logo-ratio:calc(93 / 117)}
.es-brand-logo--ew{--logo-ratio:1}
.es-brand-logo:hover{background:rgba(232,221,208,0.04)}
.es-brand-logo img{
  display:block;width:auto;
  height:calc(var(--es-logo-row-fill) * 1cqh * var(--logo-ratio) * var(--row-scale,1));
  max-width:none;
  object-fit:contain;opacity:0.9;
  transition:opacity 0.18s;
}
.es-brand-logo:hover img{opacity:1}
@supports not (height:1cqh){
  .es-brand-grid{--es-logo-h-base:1.85rem}
  .es-brand-logo img{
    height:calc(var(--es-logo-h-base) * var(--logo-ratio));
  }
}
@media (max-width:1200px){
  .es-panel--brands{padding:0 0.857rem}
  .es-brand-grid{--es-logo-row-fill:20;--es-logo-gap:1.429rem}
}
@media (max-width:960px){
  .es-panel--brands{min-height:14.286rem}
  .es-brand-grid{
    flex:none;
    height:14.286rem;
    min-height:14.286rem;
  }
}

/* ══════════════════════════════
   BRANDS PAGE
══════════════════════════════ */
#page-brands{padding-top:62px}
.brands-header{
  padding:4rem 3.714rem;
  display:grid;grid-template-columns:1fr 1fr;gap:4.286rem;align-items:end;
}

.bh-eyebrow{margin-bottom:1.429rem}
.bh-h1{
  font-family:'Playfair Display',serif;font-weight:400;
  font-size:clamp(2.714rem,4vw,4rem);letter-spacing:0.01em;line-height:1.06;
  color:var(--text);
}
.bh-h1 em{font-style:italic;color:var(--peri)}
.bh-right{
  font-family:'Satoshi',sans-serif;font-size:1rem;font-weight:400;
  color:var(--text-mid);line-height:1.82;padding-bottom:0.429rem;
}

.brands-grid{
  padding:0 4rem;
}
.brand-row{
  display:grid;grid-template-columns:1fr 1fr;
  column-gap:2rem;
}
.brand-card{
  padding:3.714rem;
  cursor:default;
}

.bc-photo-strip{
  position:relative;
  display:grid;grid-template-columns:1fr 1fr;gap:0.071rem;
  background:rgba(255,255,255,0.04);
  margin:-3.714rem -3.714rem 2.429rem;
  overflow:hidden;
  /* Keeps scaled/filtered images from painting over the logo band during hover repaints. */
  isolation:isolate;
}
.bc-photo-cell{
  position:relative;z-index:0;
  aspect-ratio:3/4;
  overflow:hidden;background:var(--surface);
}
.bc-photo-cell::after{
  content:"";position:absolute;inset:0;
  background:rgba(10,12,17,0.06);
  pointer-events:none;
}
.brand-photo{
  width:100%;height:100%;display:block;object-fit:cover;
  filter:brightness(0.92) saturate(0.88) contrast(1.02);
  transition:transform 700ms ease;
  transform-origin:center;
}
.brand-card:hover .brand-photo{transform:scale(1.03)}
.bc-logo-wrap{
  position:absolute;left:0;right:0;bottom:0;
  z-index:2;
  padding:1rem 1.571rem;
  display:flex;align-items:center;justify-content:center;
  background:
    linear-gradient(180deg, rgba(240,237,230,0.24) 0%, rgba(232,221,208,0.70) 62%, rgba(232,221,208,0.76) 100%),
    radial-gradient(140% 100% at 50% 0%, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 62%);
}
.bc-logo-wrap::before{
  content:"";
  position:absolute;inset:0;
  pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 180 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='60' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  mix-blend-mode:soft-light;
  opacity:0.22;
}
.bc-logo{
  max-height:1.571rem;width:auto;max-width:82%;
  object-fit:contain;display:block;
}
.bc-logo-text{
  font-family:'Playfair Display',serif;font-size:1.071rem;font-weight:400;
  letter-spacing:0.02em;color:var(--ink);text-align:center;line-height:1.2;
}

.bc-blurb{
  font-family:'Satoshi',sans-serif;font-size:1rem;font-weight:400;
  color:var(--text-mid);line-height:1.78;margin-bottom:1.571rem;
}
.bc-materials{display:flex;gap:0.429rem;flex-wrap:wrap;margin-bottom:1.571rem}
.bc-mat-tag{
  font-family:'DM Mono',monospace;font-size:0.714rem;
  letter-spacing:0.15em;text-transform:uppercase;
  padding:0.286rem 0.643rem;border:1px solid var(--border2);
  border-radius:0.071rem;color:rgba(200,196,190,0.42);
  background:rgba(232,221,208,0.04);
}
.bc-action{
  display:inline-flex;align-items:center;gap:0.571rem;
  font-family:'DM Mono',monospace;font-size:0.857rem;
  letter-spacing:0.18em;text-transform:uppercase;
  color:var(--peri);opacity:0.65;cursor:pointer;
  transition:opacity 0.18s;background:none;border:none;padding:0;
}
.brand-card:hover .bc-action{opacity:1}

@media (max-width: 760px){
  .brands-header{grid-template-columns:1fr;gap:1.857rem;padding:3.143rem 1.714rem}
  .brands-grid{padding:0 0.571rem}
  .brand-row{grid-template-columns:1fr;row-gap:2.286rem}
  .brand-row+.brand-row{margin-top:2.286rem}
  .brand-card{
    padding:2.429rem 1.714rem;
    border-right:none;
  }
  .bc-photo-strip{margin:-2.429rem -1.714rem 2rem}
}



/* ══════════════════════════════
   SHOP
══════════════════════════════ */
#page-shop{padding-top:62px}
.shop-layout{display:grid;grid-template-columns:17.714rem 1fr;min-height:calc(100vh - 62px)}

.shop-sidebar{
  border-right:1px solid var(--border2);
  padding:2.286rem 1.571rem;position:sticky;top:62px;
  height:calc(100vh - 62px);overflow-y:auto;
}
::-webkit-scrollbar{width:0.286rem}
::-webkit-scrollbar-track{background:var(--ink)}
::-webkit-scrollbar-thumb{background:var(--surface2);border-radius:0.143rem}

.sb-section{margin-bottom:2rem}
.sb-title{
  font-family:'DM Mono',monospace;font-size:0.714rem;
  letter-spacing:0.26em;text-transform:uppercase;
  color:var(--text-low);margin-bottom:0.786rem;
}
.mat-check-group{display:flex;flex-direction:column;gap:0.5rem}
.mat-check-row{display:flex;align-items:center;gap:0.714rem;cursor:pointer;padding:0.286rem 0.143rem}
.mc-box{
  width:1rem;height:1rem;border:1px solid var(--border);
  border-radius:0.071rem;flex-shrink:0;position:relative;
  transition:border-color 0.15s,background 0.15s;
}
.mat-check-row.active .mc-box{background:var(--peri);border-color:var(--peri)}
.mat-check-row.active .mc-box::after{
  content:'✓';position:absolute;inset:0;
  display:flex;align-items:center;justify-content:center;
  font-size:0.643rem;color:var(--ink);font-weight:700;
}
.mc-label{font-family:'Satoshi',sans-serif;font-size:0.928rem;color:var(--text-mid);transition:color 0.15s}
.mat-check-row:hover .mc-label,.mat-check-row.active .mc-label{color:var(--text)}

.cat-group{display:flex;flex-direction:column;gap:0.429rem}
.cat-row{display:flex;align-items:center;justify-content:space-between;gap:0.571rem}
.cat-main{display:flex;align-items:center;gap:0.714rem;cursor:pointer;flex:1;padding:0.286rem 0.143rem}
.cat-main.active .mc-label{color:var(--text)}
.cat-toggle{
  border:none;background:transparent;color:var(--text-low);
  width:1.714rem;height:1.714rem;display:flex;align-items:center;justify-content:center;
  border-radius:0.143rem;cursor:pointer;
}
.cat-toggle:hover{color:var(--text)}
.cat-sublist{margin-left:1.714rem;display:flex;flex-direction:column;gap:0.429rem}
.sb-filter-actions{margin-top:0.286rem}
.clear-filters-btn{
  width:100%;justify-content:center;font-size:0.714rem;
}
.apply-filters-btn{display:none}

.price-filters{display:flex;flex-direction:column;gap:0.357rem}
.price-opt{
  display:flex;align-items:center;gap:0.714rem;
  padding:0.571rem 0.714rem;border-radius:0.143rem;cursor:pointer;
  font-family:'Satoshi',sans-serif;font-size:0.857rem;color:var(--text-mid);
  transition:all 0.15s;
}
.price-opt:hover{background:var(--sand-dim);color:var(--text)}
.price-opt.active{background:var(--peri-dim);color:var(--peri)}
.price-radio{
  width:0.857rem;height:0.857rem;border-radius:50%;border:1px solid var(--border);
  flex-shrink:0;position:relative;transition:border-color 0.15s;
}
.price-opt.active .price-radio{border-color:var(--peri);background:var(--peri)}
.price-opt.active .price-radio::after{
  content:'';position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  width:0.286rem;height:0.286rem;border-radius:50%;background:var(--ink);
}

.shop-main{padding:1.857rem 2.429rem 0}
.shop-toolbar{
  display:flex;align-items:center;justify-content:space-between;
  margin-bottom:1.571rem;padding-bottom:1.286rem;border-bottom:1px solid var(--border2);
}
.toolbar-bc{display:flex;align-items:center;gap:0.571rem}
.toolbar-right{display:flex;gap:1.714rem;align-items:center}
.product-count{
  font-family:'DM Mono',monospace;font-size:0.643rem;
  letter-spacing:0.12em;text-transform:uppercase;
  color:var(--text-low);
}

.sort-dropdown{position:relative}
.sort-toggle{
  display:flex;align-items:center;gap:0.714rem;
  background:none;border:none;cursor:pointer;padding:0;
  font-family:'DM Mono',monospace;font-size:0.714rem;letter-spacing:0.12em;
  text-transform:uppercase;color:var(--text-mid);
}
.sort-label{font-weight:500}
.sort-icon{
  font-size:1.143rem;line-height:1;font-weight:400;color:var(--text-mid);
  transition:transform 0.2s ease;
}
.sort-panel{
  display:none;position:absolute;top:calc(100% + 0.714rem);right:0;
  min-width:12.143rem;background:var(--surface);
  border:1px solid var(--border);border-radius:0.286rem;
  padding:0.429rem 0;z-index:100;
  box-shadow:0 0.571rem 2.143rem rgba(0,0,0,0.35);
}
.sort-panel.open{display:block;animation:fadeUp 0.18s ease both}
.sort-option{
  display:flex;align-items:center;gap:0.857rem;
  padding:1rem 1rem;cursor:pointer;
  font-family:'Satoshi',sans-serif;font-size:0.857rem;font-weight:400;
  color:var(--text-mid);transition:color 0.15s ease;
  border-bottom:1px solid var(--border2);
}
.sort-option:last-child{border-bottom:none}
.sort-option:hover{color:var(--text)}
.sort-radio{
  width:1.286rem;height:1.286rem;border-radius:50%;flex-shrink:0;
  border:1.5px solid var(--text-low);
  display:flex;align-items:center;justify-content:center;
  transition:border-color 0.15s ease;
}
.sort-radio.selected{border-color:var(--text)}
.sort-radio.selected::after{
  content:'';width:0.714rem;height:0.714rem;border-radius:50%;
  background:var(--text);
}

.active-filters{display:flex;gap:0.5rem;flex-wrap:wrap;margin-bottom:1.143rem}
.af-tag{
  display:flex;align-items:center;gap:0.357rem;
  font-family:'DM Mono',monospace;font-size:0.714rem;
  letter-spacing:0.14em;text-transform:uppercase;
  color:var(--peri);border:1px solid rgba(155,168,232,0.22);
  padding:0.286rem 0.714rem;border-radius:0.143rem;cursor:pointer;
}
.af-tag:hover{background:var(--peri-dim)}

.shop-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.shop-resolve-hint{
  display:none;flex-direction:column;align-items:center;justify-content:center;
  gap:1.429rem;padding:5.714rem 0;width:100%;grid-column:1/-1;
}
.shop-load-more{display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:12.857rem;padding:0}
.shop-range-label{
  font-size:0.857rem;color:#888;margin-bottom:1rem;letter-spacing:0.02em;
}
.load-more-btn{
  display:none;padding:0.857rem 2.571rem;font-size:0.857rem;letter-spacing:0.08em;
}

/* ══════════════════════════════
   PRODUCT PAGE
══════════════════════════════ */
#page-product{padding-top:62px}
.product-layout{display:grid;grid-template-columns:1fr 28.571rem;min-height:calc(100vh - 62px)}

.product-gallery{
  position:sticky;top:62px;height:calc(100vh - 62px);
  display:flex;flex-direction:row;
  overflow:hidden;border-right:1px solid var(--border2);
}

.gallery-thumbs{
  display:flex;flex-direction:column;gap:0.214rem;
  width:5.143rem;flex-shrink:0;overflow-y:auto;
  padding:0.214rem;background:var(--ink);
  scrollbar-width:none;
}
.gallery-thumbs::-webkit-scrollbar{display:none}
.gallery-thumb{
  width:100%;aspect-ratio:3/4;flex-shrink:0;
  overflow:hidden;cursor:pointer;background:#FFFFFF;
  opacity:0.4;transition:opacity 0.2s;border-radius:0.143rem;
}
.gallery-thumb.active,.gallery-thumb:hover{opacity:1}
.gallery-thumb img{width:100%;height:100%;object-fit:cover}

.gallery-viewport{
  flex:1;min-width:0;position:relative;
  overflow:hidden;
}
.gallery-track{
  display:flex;height:100%;
  transition:transform 0.35s ease;
}
.gal-slide{
  width:50%;flex-shrink:0;height:100%;overflow:hidden;
  border-right:1px solid var(--border2);
  background:#FFFFFF;
}
.gal-slide:last-child{border-right:none}
.gal-slide img{
  width:100%;height:100%;object-fit:cover;
  display:block;color:var(--ink);
}

.gal-arrow{
  position:absolute;top:50%;transform:translateY(-50%);
  z-index:10;width:2.714rem;height:2.714rem;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:rgba(14,17,23,0.55);border:1px solid rgba(255,255,255,0.08);
  color:var(--text);cursor:pointer;
  backdrop-filter:blur(0.429rem);-webkit-backdrop-filter:blur(0.429rem);
  transition:opacity 0.2s,background 0.2s;opacity:0.7;
}
.gal-arrow:hover{opacity:1;background:rgba(14,17,23,0.8)}
.gal-arrow:disabled{opacity:0.2;cursor:default;pointer-events:none}
.gal-arrow-left{left:1.071rem}
.gal-arrow-right{right:1.071rem}

.product-details{
  padding:3rem 3.143rem 5.714rem;
  overflow-y:auto;max-height:calc(100vh - 62px);
}
.pd-back{display:none}
.pd-back-overlay{
  display:inline-flex;
  position:absolute;top:1rem;left:1rem;z-index:20;
  align-items:center;gap:0.429rem;
  font-family:'DM Mono',monospace;font-size:0.643rem;font-weight:500;
  letter-spacing:0.16em;text-transform:uppercase;color:var(--text);
  background:rgba(14,17,23,0.58);backdrop-filter:blur(1rem);
  border:1px solid rgba(255,255,255,0.1);border-radius:1.429rem;
  padding:0.5rem 1rem 0.5rem 0.714rem;cursor:pointer;
  transition:background 0.18s,color 0.18s;
}
.pd-back-overlay:hover{background:rgba(14,17,23,0.8)}
.pd-brand{
  font-family:'DM Mono',monospace;font-size:clamp(0.643rem,2.5vw,0.786rem);
  letter-spacing:0.22em;text-transform:uppercase;
  color:var(--peri);opacity:0.65;margin-bottom:0.643rem;
}
.pd-title{
  font-family:'Playfair Display',serif;font-weight:400;
  font-size:clamp(1.429rem,5.5vw,1.857rem);letter-spacing:0.01em;line-height:1.18;
  color:var(--text);margin-bottom:1.143rem;
}
.pd-price{
  font-family:'Satoshi',sans-serif;font-weight:400;
  font-size:clamp(1.071rem,4vw,1.286rem);color:var(--text-mid);margin-bottom:1.714rem;
}

.pd-material-story{
  background:var(--surface);border:1px solid var(--border2);
  border-radius:0.214rem;padding:1.571rem;margin-bottom:1.571rem;
}
.pms-title{
  font-family:'DM Mono',monospace;font-size:0.643rem;
  letter-spacing:0.24em;text-transform:uppercase;color:var(--text-low);
  margin-bottom:1.143rem;
}
.pms-composition{display:flex;flex-direction:column;gap:0.5rem;margin-bottom:1.143rem}
.pms-fiber{
  display:flex;align-items:center;justify-content:space-between;
  padding:0.714rem 0.929rem;background:var(--surface2);
  border:1px solid var(--border2);border-radius:0.143rem;
}
.pms-fiber-left{display:flex;align-items:center;gap:0.714rem}
.pms-pct{
  font-family:'DM Mono',monospace;font-size:0.929rem;
  font-weight:500;color:var(--peri);
}
.pms-name{font-family:'Satoshi',sans-serif;font-size:0.929rem;font-weight:400;color:var(--text)}

.pd-section-title{
  font-family:'Satoshi',sans-serif;font-size:clamp(0.929rem,3.5vw,1rem);font-weight:400;
  color:var(--text);line-height:1.5;
  margin-bottom:0.714rem;
}
.pd-description{
  font-family:'Satoshi',sans-serif;
  font-size:clamp(0.893rem,3.4vw,0.964rem);font-weight:400;color:var(--text-mid);line-height:1.78;margin-bottom:1.571rem;
}

.pd-buy-block{margin-bottom:1.571rem}
.pd-buy-note{
  font-family:'DM Mono',monospace;font-size:0.714rem;
  letter-spacing:0.07em;color:var(--text-low);
  text-align:center;margin-top:0.714rem;line-height:1.65;
}




/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
#page-about{padding-top:62px}

.about-hero{
  display:grid;grid-template-columns:1fr 1fr;
  min-height:30rem;border-bottom:1px solid var(--border2);
}
.ah-left{
  padding:5.143rem 3.714rem;border-right:1px solid var(--border2);
  display:flex;flex-direction:column;justify-content:center;
}

.ah-h1{
  font-family:'Playfair Display',serif;font-weight:400;
  font-size:clamp(2.571rem,4vw,3.714rem);letter-spacing:0.01em;line-height:1.1;
  color:var(--text);margin-bottom:1.429rem;
}
.ah-h1 em{font-style:italic;color:var(--peri)}
.ah-right{
  padding:5.143rem 3.714rem;display:flex;flex-direction:column;gap:2rem;
  justify-content:center;
}
.av-label{margin-bottom:0.714rem}
.av-title{
  font-family:'Playfair Display',serif;font-weight:400;
  font-size:1.429rem;letter-spacing:0.01em;color:var(--text);margin-bottom:0.571rem;
}
.av-body{
  font-family:'Satoshi',sans-serif;font-size:0.929rem;font-weight:400;
  color:var(--text-mid);line-height:1.72;
}

.about-materials{
  padding:5.714rem 3.714rem;background:var(--ink-mid);
  border-bottom:1px solid var(--border2);border-top:1px solid var(--border2);
}
.amm-header{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:3.143rem}
.amm-h2{
  font-family:'Playfair Display',serif;font-weight:400;
  font-size:2.429rem;letter-spacing:0.01em;line-height:1.1;
}
.amm-sub{max-width:25.714rem;font-family:'Satoshi',sans-serif;font-size:0.929rem;font-weight:400;color:var(--text-mid);line-height:1.75}
.mat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:0.143rem}
.mat-card{
  background:var(--surface);padding:1.714rem 1.571rem;
  border:1px solid var(--border2);border-radius:0.143rem;
  display:flex;flex-direction:column;
}
.mat-card:nth-child(2),
.mat-card:nth-child(4),
.mat-card:nth-child(6){background:var(--surface2)}

.mc-name{
  font-family:'Playfair Display',serif;font-weight:400;
  font-size:1.143rem;letter-spacing:0.01em;color:var(--text);margin-bottom:0.643rem;
}
.mc-body{
  font-family:'Satoshi',sans-serif;font-size:1rem;font-weight:400;
  color:rgba(200, 196, 190, 0.539);line-height:1.65;
  margin-bottom:1.143rem;
}
.mc-tag{
  display:inline-flex;margin-top:auto;align-self:flex-start;
  font-family:'DM Mono',monospace;font-size:0.714rem;
  letter-spacing:0.15em;text-transform:uppercase;
  padding:0.286rem 0.571rem;border-radius:0.071rem;
  border:1px solid var(--border);color:var(--text-low);
}

.about-feedback{
  padding:5.143rem 3.714rem;
  border-bottom:1px solid var(--border2);
  display:grid;grid-template-columns:1fr 1fr;gap:5.714rem;align-items:center;
}
.afl-kicker{margin-bottom:1.286rem}
.afl-h2{
  font-family:'Playfair Display',serif;font-weight:400;
  font-size:2.429rem;letter-spacing:0.01em;line-height:1.1;color:var(--text);margin-bottom:1.286rem;
}
.afl-h2 em{font-style:italic;color:var(--peri)}
.afl-body{
  font-family:'Satoshi',sans-serif;font-size:1rem;font-weight:400;
  color:var(--text-mid);line-height:1.78;
}
.survey-card{
  background:var(--surface);border:1px solid var(--border2);
  border-radius:0.214rem;padding:2rem;
}
.sc-q{
  font-family:'Satoshi',sans-serif;font-size:1rem;font-weight:400;
  color:var(--text);margin-bottom:1.143rem;line-height:1.5;
}
.sc-opts{display:flex;flex-direction:column;gap:0.5rem;margin-bottom:1.429rem}
.sc-opt{
  display:flex;align-items:center;gap:0.857rem;
  padding:0.786rem 1rem;background:var(--surface2);
  border:1px solid var(--border2);border-radius:0.143rem;
  cursor:pointer;transition:border-color 0.15s,background 0.15s;
}
.sc-opt:hover{border-color:rgba(155,168,232,0.28)}
.sc-opt.sel{border-color:var(--peri);background:var(--peri-dim)}
.sc-radio{
  width:0.929rem;height:0.929rem;border-radius:50%;border:1px solid var(--border);
  flex-shrink:0;transition:border-color 0.15s;
}
.sc-opt.sel .sc-radio{border-color:var(--peri);background:var(--peri)}
.sc-opt-label{font-family:'Satoshi',sans-serif;font-size:1rem;font-weight:400;color:var(--text-mid)}
.sc-opt.sel .sc-opt-label{color:var(--text)}
.survey-message-wrap{margin-top:1rem;margin-bottom:1.286rem}
.survey-message-title{margin-bottom:0.571rem}
.survey-textarea{
  width:100%;background:rgba(255,255,255,0.025);
  border:1px solid var(--border2);border-radius:0.143rem;
  padding:0.857rem 1rem;color:var(--text);
  font-family:'Satoshi',sans-serif;font-size:0.929rem;font-weight:400;
  line-height:1.65;resize:vertical;min-height:5.714rem;outline:none;
  transition:border-color 0.2s;
}
.survey-textarea:focus{border-color:rgba(155,168,232,0.32)}
.sc-submit{width:100%;justify-content:center}
.survey-status{
  display:none;margin-top:0.857rem;text-align:center;
  font-family:'DM Mono',monospace;font-size:0.857rem;
  letter-spacing:0.18em;text-transform:uppercase;color:var(--peri);
}

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
#page-contact{padding-top:62px}
.contact-layout{display:grid;grid-template-columns:1fr 1fr;min-height:calc(100vh - 62px)}
.contact-left{
  padding:5.714rem 3.714rem;border-right:1px solid var(--border2);
  display:flex;flex-direction:column;justify-content:space-between;
}
.cl-kicker{margin-bottom:1.571rem}
.cl-h1{
  font-family:'Playfair Display',serif;font-weight:400;
  font-size:3.571rem;letter-spacing:0.01em;line-height:1.06;
  color:var(--text);margin-bottom:1.571rem;
}
.cl-h1 em{font-style:italic;color:var(--peri)}
.cl-body{
  font-family:'Satoshi',sans-serif;font-size:1rem;font-weight:400;
  color:var(--text-mid);line-height:1.8;max-width:27.143rem;margin-bottom:2.857rem;
}
.cl-scroll-cta{display:none}
.contact-channels{display:flex;flex-direction:column;gap:0.143rem;max-width:27.143rem}
.cc-item{
  display:flex;align-items:center;justify-content:space-between;
  padding:1.071rem 1.143rem;background:transparent;
  border:1px solid var(--border2);border-radius:0.143rem;
  cursor:pointer;transition:border-color 0.18s;
  text-decoration:none;color:inherit;
}
.cc-item:hover{border-color:rgba(155,168,232,0.25)}
.cc-left{display:flex;align-items:center;gap:0.929rem}
.cc-icon-box{width:2.357rem;height:2.357rem;background:var(--peri-dim);border-radius:0.143rem;display:flex;align-items:center;justify-content:center;}
.cc-icon-box svg{width:1.571rem;height:1.571rem;color:var(--peri);opacity:0.62}
.cc-type{font-family:'DM Mono',monospace;font-size:0.571rem;letter-spacing:0.18em;text-transform:uppercase;color:var(--text-low)}
.cc-val{font-family:'Satoshi',sans-serif;font-size:0.929rem;font-weight:400;color:var(--text)}
.cc-arrow{color:var(--text-low);font-size:0.929rem;transition:color 0.18s,transform 0.18s}
.cc-item:hover .cc-arrow{color:var(--peri);transform:translateX(0.143rem)}


.contact-right{
  padding:5.714rem 3.714rem;background:var(--ink-mid);
  position:relative;min-height:calc(100vh - 62px);
}
.contact-form-view{
  transition:opacity 0.2s ease,visibility 0.2s ease;
}
.contact-right.success .contact-form-view{
  opacity:0;visibility:hidden;pointer-events:none;
}
.cr-h2{
  font-family:'Playfair Display',serif;font-weight:400;
  font-size:1.571rem;letter-spacing:0.01em;margin-bottom:0.5rem;
}
.cr-sub{font-family:'Satoshi',sans-serif;font-size:0.929rem;font-weight:400;color:var(--text-mid);margin-bottom:2rem;line-height:1.6}

.form-group{margin-bottom:1.143rem}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:0.929rem;margin-bottom:1.143rem}
.form-label{
  font-family:'DM Mono',monospace;font-size:0.857rem;
  letter-spacing:0.22em;text-transform:uppercase;
  color:var(--text-low);display:block;margin-bottom:0.571rem;
}
.form-input,.form-select,.form-textarea{
  width:100%;background:var(--surface);border:1px solid var(--border2);
  border-radius:0.143rem;padding:0.786rem 1rem;color:var(--text);
  font-family:'Satoshi',sans-serif;font-size:1rem;font-weight:400;
  transition:border-color 0.18s;appearance:none;
}
.form-input:focus,.form-select:focus,.form-textarea:focus{outline:none;border-color:var(--peri)}
.form-input.form-error,.form-select.form-error,.form-textarea.form-error{
  border-color:#C4A080;
}
.form-input.form-error:focus,.form-select.form-error:focus,.form-textarea.form-error:focus{
  border-color:#C4A080;
}
.form-input::placeholder,.form-textarea::placeholder{color:var(--text-low)}
.form-textarea{height:7.714rem;resize:vertical}
.form-select{color:var(--text-mid);cursor:pointer}
.form-select:has(option:checked:not([value=""])){color:var(--text)}
.form-select option{background:var(--surface2)}
.form-intents{display:grid;grid-template-columns:1fr 1fr;gap:0.5rem;margin-bottom:1.143rem}
.intent-card{
  padding:0.857rem 1rem;background:var(--surface);
  border:1px solid var(--border2);border-radius:0.143rem;
  cursor:pointer;transition:border-color 0.15s,background 0.15s;
}
.intent-card:hover{border-color:rgba(155,168,232,0.25)}
.intent-card.active{border-color:var(--peri);background:var(--peri-dim)}
.ic-label{font-family:'Satoshi',sans-serif;font-size:1rem;font-weight:400;color:var(--text-mid)}
.intent-card.active .ic-label{color:var(--text)}
.contact-submit{width:100%;justify-content:center;font-size:1rem;padding:1rem}
.form-status{
  display:none;text-align:center; margin-bottom:1.143rem;
  font-family:'DM Mono',monospace;font-size:0.857rem;
  letter-spacing:0.12em;text-transform:uppercase;line-height:1.5;
}
.form-status.ok{display:block;color:var(--peri)}
.form-status.err{display:block;color:#C4A080}
.form-privacy{
  font-family:'DM Mono',monospace;font-size:0.714rem;
  letter-spacing:0.03em;color:var(--text-low);
  text-align:center;margin-top:1.429rem;line-height:1.6;
}
.contact-success{
  position:absolute;inset:5.714rem 3.714rem;
  display:flex;flex-direction:column;justify-content:center;align-items:center;
  opacity:0;visibility:hidden;pointer-events:none;
  transition:opacity 0.2s ease,visibility 0.2s ease;
}
.cs-inner{
  display:flex;flex-direction:column;align-items:flex-start;
  width:100%;max-width:34.286rem;
}
.contact-right.success .contact-success{
  opacity:1;visibility:visible;pointer-events:auto;
}
.cs-kicker{
  display:flex;align-items:center;gap:1.286rem;
  font-family:'DM Mono',monospace;font-size:0.714rem;
  letter-spacing:0.24em;text-transform:uppercase;
  color:var(--peri);opacity:0.7;margin-bottom:1.143rem;
}
.cs-check{
  width:1.143rem;height:1.143rem;border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  border:1px solid currentColor;letter-spacing:0;text-transform:none;
  line-height:1;flex:0 0 auto;
}
.cs-check svg{
  width:0.714rem;height:0.714rem;display:block;
}
.cs-title{
  font-family:'Playfair Display',serif;font-weight:400;
  font-size:clamp(2.286rem,3.5vw,3.286rem);letter-spacing:0.01em;
  line-height:1.12;color:var(--text);margin-bottom:1.429rem;
  outline:none;
}
.cs-title em{font-style:italic;color:var(--peri)}
.cs-body{
  font-family:'Satoshi',sans-serif;font-size:1rem;font-weight:400;
  color:rgba(240,237,230,0.78);line-height:1.8;max-width:30.714rem;
  margin-bottom:1.286rem;
}
.cs-body span{color:var(--text)}
.contact-reset-btn{align-self:flex-start}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer{
  border-top:1px solid var(--border2);padding:3rem 3.714rem 1.429rem;
  display:flex;flex-direction:column;
}
.footer-columns{
  display:grid;grid-template-columns:1fr 1fr 1fr 1fr;gap:2.857rem; padding-bottom: 2.143rem;
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.07);
  padding-top:1.429rem;
  display:flex;justify-content:space-between;align-items:center;
  font-family:'DM Mono',monospace;font-size:0.714rem;letter-spacing:0.08em;
  color:rgba(231,229,225,0.4);
}
.footer-logo{
  font-family:'Playfair Display',serif;font-weight:400;
  font-size:1.286rem;letter-spacing:0.05em;
  display:flex;align-items:baseline;margin-bottom:0.714rem;
}
.footer-logo .nl-soft{color:#F0EDE6;font-style:normal}
.footer-logo .nl-mattr{color:var(--peri);font-style:italic}
.footer-tagline{font-family:'DM Mono',monospace;font-size:0.786rem;letter-spacing:0.03em;color:var(--text-low);line-height:1.65}
.f-col-title{font-family:'DM Mono',monospace;font-size:0.714rem;letter-spacing:0.22em;text-transform:uppercase;color:var(--text-low);margin-bottom:0.929rem}
.f-links{display:flex;flex-direction:column;gap:0.643rem}
.f-link{font-family:'Satoshi',sans-serif;font-size:0.929rem;font-weight:400;color:var(--text-mid);cursor:pointer;transition:color 0.18s;text-decoration:none}
.f-social{display:flex;align-items:center;gap:0.571rem}
.f-social svg{width:1.143rem;height:1.143rem;flex:0 0 auto;color:var(--text-low);transition:color 0.18s}
.f-link:hover{color:var(--text)}
.f-social:hover svg{color:var(--text)}

/* ══════════════════════════════
   COOKIE CONSENT
══════════════════════════════ */
body.cookie-banner-open{padding-bottom:0}
.cookie-banner{
  position:fixed;left:1.571rem;bottom:1.571rem;z-index:8000;
  width:min(30rem,calc(100vw - 3.143rem));
  background:linear-gradient(180deg,rgba(20,25,34,0.92),rgba(14,17,23,0.96));
  border:1px solid rgba(255,255,255,0.07);
  border-radius:0.714rem;
  padding:1.286rem 1.286rem 1.143rem;
  box-shadow:0 1.286rem 4.286rem rgba(0,0,0,0.45);
  opacity:0;
  transform:translateY(1rem);
  pointer-events:none;
  transition:opacity 0.65s ease-out,transform 0.65s ease-out;
  will-change:opacity,transform;
}
.cookie-banner.cookie-banner--visible{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}
@media (prefers-reduced-motion:reduce){
  .cookie-banner{transition:none;transform:none}
  .cookie-banner.cookie-banner--visible{transform:none}
}
.cookie-banner-inner{
  max-width:none;margin:0;
  display:flex;flex-direction:column;align-items:stretch;justify-content:flex-start;gap:1rem;
}
.cookie-banner-text{
  flex:0 0 auto;min-width:0;
  font-family:'Satoshi',sans-serif;font-size:0.929rem;font-weight:400;line-height:1.65;
  color:var(--text-mid);margin:0;
}
.cookie-banner-text a{
  color:var(--peri);text-decoration:underline;text-underline-offset:0.214rem;
}
.cookie-banner-text a:hover{color:var(--text)}
.cookie-banner-actions{
  display:flex;align-items:center;gap:0.714rem;justify-content:space-between;
}
.cookie-btn-accept{min-width:7.143rem;justify-content:center}
.cookie-btn-manage{min-width:6.286rem;justify-content:center}
.cookie-modal-backdrop{
  position:fixed;inset:0;z-index:8100;
  background:rgba(8,10,14,0.72);
  opacity:0;visibility:hidden;pointer-events:none;
  transition:opacity 0.2s,visibility 0.2s;
}
.cookie-modal-backdrop.open{opacity:1;visibility:visible;pointer-events:auto}
.cookie-modal{
  position:fixed;left:50%;top:50%;transform:translate(-50%,-50%) scale(0.96);
  z-index:8200;max-width:31.429rem;width:calc(100% - 2.857rem);
  max-height:min(88vh,44.286rem);overflow-y:auto;
  background:var(--ink-mid);border:1px solid var(--border2);border-radius:0.214rem;
  padding:2rem 1.857rem 1.571rem;
  opacity:0;visibility:hidden;pointer-events:none;
  transition:opacity 0.2s,visibility 0.2s,transform 0.2s;
  box-shadow:0 1.714rem 5.714rem rgba(0,0,0,0.45);
}
.cookie-modal.open{
  opacity:1;visibility:visible;pointer-events:auto;
  transform:translate(-50%,-50%) scale(1);
}
.cookie-modal-title{
  font-family:'Playfair Display',serif;font-weight:400;font-size:1.571rem;
  color:var(--text);margin:0 0 0.714rem;
}
.cookie-modal-intro{
  font-family:'Satoshi',sans-serif;font-size:0.929rem;line-height:1.65;color:var(--text-mid);
  margin:0 0 1.571rem;
}
.cookie-cat{
  border-top:1px solid var(--border2);padding:1.143rem 0;
}
.cookie-modal-intro + .cookie-cat{border-top:none;padding-top:0}
.cookie-cat-head{
  display:flex;align-items:center;justify-content:space-between;gap:1rem;margin-bottom:0.571rem;
}
.cookie-cat-name{
  font-family:'Satoshi',sans-serif;font-size:1rem;font-weight:500;color:var(--text);
}
.cookie-cat-badge{
  font-family:'DM Mono',monospace;font-size:0.571rem;letter-spacing:0.14em;text-transform:uppercase;
  color:var(--text-low);border:1px solid var(--border2);padding:0.286rem 0.571rem;border-radius:0.143rem;
}
.cookie-cat-desc{
  font-family:'Satoshi',sans-serif;font-size:1rem;line-height:1.6;color:var(--text-mid);margin:0;
}
.cookie-toggle{
  position:relative;display:inline-flex;align-items:center;cursor:pointer;
  flex-shrink:0;
}
.cookie-toggle input{
  position:absolute;opacity:0;width:0;height:0;
}
.cookie-toggle-ui{
  width:3.143rem;height:1.714rem;border-radius:71.357rem;background:var(--surface2);
  border:1px solid var(--border2);transition:background 0.18s,border-color 0.18s;
  position:relative;
}
.cookie-toggle-ui::after{
  content:"";position:absolute;top:0.214rem;left:0.286rem;width:1.143rem;height:1.143rem;border-radius:50%;
  background:var(--text-low);transition:transform 0.18s,background 0.18s;
}
.cookie-toggle input:checked + .cookie-toggle-ui{
  background:rgba(155,168,232,0.22);border-color:rgba(155,168,232,0.45);
}
.cookie-toggle input:checked + .cookie-toggle-ui::after{
  transform:translateX(1.286rem);background:var(--peri);
}
.cookie-modal-actions{
  display:flex;justify-content:flex-end;gap:0.714rem;margin-top:1.571rem;padding-top:1.286rem;
  border-top:1px solid var(--border2);flex-wrap:wrap;
}
.cookie-modal-cancel{flex:0 1 auto}
.cookie-modal-save{flex:0 1 auto}
@media (max-width:700px){
  body.cookie-banner-open{padding-bottom:0}
  .cookie-banner{left:1rem;bottom:1rem;width:calc(100vw - 2rem);padding:1.143rem 1.143rem 1rem}
  .cookie-banner-actions{width:100%}
  .cookie-banner-actions .btn-ghost,.cookie-banner-actions .btn-primary{flex:1;justify-content:center}
}

/* ══════════════════════════════
   MAILING LIST MODAL
══════════════════════════════ */
.mailing-list-backdrop{
  position:fixed;inset:0;z-index:8500;
  background:rgba(8,10,14,0.78);
  opacity:0;visibility:hidden;pointer-events:none;
  transition:opacity 0.28s ease,visibility 0.28s ease;
}
.mailing-list-backdrop.open{
  opacity:1;visibility:visible;pointer-events:auto;
}
body.mailing-list-open{overflow:hidden}
.mailing-list-modal{
  position:fixed;left:50%;top:50%;
  transform:translate(-50%,-48%) scale(0.97);
  z-index:8600;
  width:min(26.5rem,calc(100vw - 2.5rem));
  background:var(--ink-mid);
  border:1px solid var(--border2);
  border-radius:0.214rem;
  padding:2.286rem 2rem 2rem;
  text-align:center;
  opacity:0;visibility:hidden;pointer-events:none;
  transition:opacity 0.28s ease,visibility 0.28s ease,transform 0.28s ease;
  box-shadow:0 1.714rem 5.714rem rgba(0,0,0,0.5);
}
.mailing-list-modal.open{
  opacity:1;visibility:visible;pointer-events:auto;
  transform:translate(-50%,-50%) scale(1);
}
.mailing-list-close{
  position:absolute;top:0.857rem;right:0.857rem;
  width:2rem;height:2rem;border:none;background:transparent;
  color:var(--text-low);font-size:1.5rem;line-height:1;
  cursor:pointer;border-radius:0.143rem;
  transition:color 0.18s,background 0.18s;
}
.mailing-list-close:hover{color:var(--text);background:rgba(255,255,255,0.04)}
.mailing-list-title{
  font-family:'Playfair Display',serif;font-weight:400;
  font-size:clamp(1.714rem,4.5vw,2.143rem);line-height:1.12;
  color:var(--text);margin-bottom:0.714rem;
}
.mailing-list-title em{font-style:italic;color:var(--peri)}
.mailing-list-sub{
  font-family:'Satoshi',sans-serif;font-size:0.929rem;font-weight:400;
  color:var(--text-mid);line-height:1.55;margin-bottom:1.714rem;
}
.mailing-list-form{display:flex;flex-direction:column;gap:0}
.mailing-list-form .form-label{margin-bottom:0.571rem;text-align:left}
.mailing-list-form .form-input{text-align:left}
.mailing-list-form .form-status{text-align:left;margin-bottom:0}
.mailing-list-form .form-status.err{margin-top:0.857rem}
.mailing-list-form .contact-submit{margin-top:0.929rem}
.mailing-list-fine{margin-top:1.429rem}
.mailing-list-fine a{color:var(--peri);text-decoration:underline;text-underline-offset:0.143rem}
.mailing-list-fine a:hover{color:var(--text)}
.mailing-list-success{display:none}
.mailing-list-modal.is-success .mailing-list-signup{display:none}
.mailing-list-modal.is-success .mailing-list-success{display:block}
.mailing-list-success .mailing-list-title{margin-bottom:0.857rem}
.mailing-list-success-sub{
  font-family:'Satoshi',sans-serif;font-size:0.929rem;font-weight:400;
  color:var(--text-mid);line-height:1.65;
  max-width:17.5rem;margin:0 auto 1.714rem;
}
@media (prefers-reduced-motion:reduce){
  .mailing-list-backdrop,.mailing-list-modal{transition:none}
  .mailing-list-modal.open{transform:translate(-50%,-50%)}
}

/* ══════════════════════════════
   LEGAL / PRIVACY
══════════════════════════════ */
#page-privacy{padding-top:62px}
.legal-wrap{
  max-width:51.429rem;margin:0 auto;padding:4rem 2.857rem;
}
.legal-back{
  display:inline-flex;align-items:center;gap:0.429rem;
  background:none;border:none;cursor:pointer;
  font-family:'DM Mono',monospace;font-size:0.786rem;
  letter-spacing:0.1em;text-transform:uppercase;
  color:var(--text-low);margin-bottom:2rem;padding:0;
  transition:color 0.18s;
}
.legal-back:hover{color:var(--text)}
.legal-h1{
  font-family:'Playfair Display',serif;font-weight:400;font-size:2.571rem;
  letter-spacing:0.02em;color:var(--text);margin-bottom:0.857rem;line-height:1.15;
}
.legal-meta{
  font-family:'DM Mono',monospace;font-size:0.714rem;letter-spacing:0.12em;
  text-transform:uppercase;color:var(--text-low);margin-bottom:2.571rem;
}
.legal-h2{
  font-family:'Satoshi',sans-serif;font-size:1.071rem;font-weight:500;color:var(--text);
  margin:2rem 0 0.857rem;
}
.legal-p{
  font-family:'Satoshi',sans-serif;font-size:1rem;font-weight:400;line-height:1.78;
  color:var(--text-mid);margin:0 0 1rem;
}
.legal-p a{color:var(--peri);text-decoration:underline;text-underline-offset:0.143rem}
.legal-p a:hover{color:var(--text)}
.legal-ul{
  font-family:'Satoshi',sans-serif;font-size:1rem;line-height:1.78;color:var(--text-mid);
  margin:0 0 1.143rem;padding-left:1.571rem;
}
.legal-ul li{margin-bottom:0.571rem}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */

/* Mobile nav hamburger (hidden on desktop) */
.nav-ham{
  display:none;flex-direction:column;justify-content:center;gap:0.357rem;
  cursor:pointer;background:none;border:none;padding:0.286rem;justify-self:end;
}
.nav-ham span{
  display:block;width:1.571rem;height:0.107rem;
  background:var(--text-mid);border-radius:0.071rem;
  transition:transform 0.22s,opacity 0.22s,background 0.22s;
}
.nav-ham.open span:nth-child(1){transform:translateY(0.464rem) rotate(45deg)}
.nav-ham.open span:nth-child(2){opacity:0}
.nav-ham.open span:nth-child(3){transform:translateY(-0.464rem) rotate(-45deg)}

.mobile-nav{
  display:none;
  position:fixed;top:62px;left:0;right:0;z-index:499;
  background:rgba(14,17,23,0.97);backdrop-filter:blur(1.429rem);
  border-bottom:1px solid var(--border2);
  padding:0.571rem 1.714rem 1.143rem;
  flex-direction:column;
}
.mobile-nav.open{display:flex}
.mobile-nav-link{
  font-family:'Satoshi',sans-serif;font-size:1.071rem;font-weight:400;
  color:var(--text-mid);padding:0.929rem 0;
  border:none;border-bottom:1px solid var(--border2);
  background:none;text-align:left;cursor:pointer;width:100%;
  transition:color 0.18s;
}
.mobile-nav-link:last-child{border-bottom:none}
.mobile-nav-link.active,.mobile-nav-link:hover{color:var(--text)}

/* Shop mobile filter toggle (hidden on desktop) */
.shop-filter-toggle{
  display:none;width:100%;align-items:center;justify-content:space-between;
  padding:0.857rem 1.429rem;font-family:'DM Mono',monospace;
  font-size:0.714rem;letter-spacing:0.18em;text-transform:uppercase;
  color:var(--text-mid);background:var(--surface);
  border:none;border-bottom:1px solid var(--border2);cursor:pointer;
  transition:color 0.18s;
}
.shop-filter-toggle:hover{color:var(--text)}
.sft-left{display:flex;align-items:center;gap:0.571rem}
.sft-count{
  font-family:'DM Mono',monospace;font-size:0.643rem;letter-spacing:0.1em;
  color:var(--peri);opacity:0.8;
}

@media(max-width:900px){
  /* NAV */
  nav{padding:0 2rem}
  .nav-links{gap:1.429rem}

  /* FOOTER */
  footer{padding:2.857rem 2rem 1.429rem}
  .footer-columns{grid-template-columns:1fr 1fr;gap:2.286rem}

  /* BRANDS */
  .brand-card{padding:3.714rem 2.286rem}
  .bc-photo-strip{margin:-3.714rem -2.286rem 2.429rem}

  /* HOME */
  .hero{grid-template-columns:1fr;min-height:auto}
  .hero-left{padding:4.286rem 2rem;border-right:none;border-bottom:1px solid var(--border2)}
  .hero-right{height:56vw;min-height:20rem;max-height:34.286rem}
  .h-sub{max-width:100%}
  .h-mat-row{margin-top:2.857rem;padding-top:2rem}
  .mat-philosophy{grid-template-columns:1fr}
  .mp-left{padding:4rem 2rem 2.571rem;border-right:none;border-bottom:1px solid var(--border2)}
  .mp-right{padding:2.571rem 2rem 4rem}
  .editorial-strip{grid-template-columns:1fr}
  .es-panel--copy{border-bottom:1px solid var(--border2)}
  .es-panel{padding:2.571rem 2rem 3.143rem}
  .es-panel--brands{padding:0 2.571rem;min-height:15.714rem}
  .es-brand-grid{
    --es-logo-row-fill:24;
    --es-logo-gap:1.143rem;
    flex:none;
    height:14.857rem;
    min-height:14.857rem;
  }

  /* ABOUT */
  .about-hero{grid-template-columns:1fr}
  .ah-left{padding:4rem 2rem 2.857rem;border-right:none;border-bottom:1px solid var(--border2)}
  .ah-right{padding:2.857rem 2rem 4rem}
  .about-materials{padding:4rem 2rem}
  .amm-header{flex-direction:column;gap:1rem;margin-bottom:2.286rem}
  .amm-sub{max-width:100%}
  .about-feedback{grid-template-columns:1fr;gap:2.857rem;padding:4rem 2rem}

  /* CONTACT */
  .contact-layout{grid-template-columns:1fr;min-height:auto}
  .contact-left{padding:4rem 2rem 2.857rem;border-right:none;border-bottom:1px solid var(--border2)}
  .cl-scroll-cta{display:flex;width:100%;justify-content:center;margin:1.429rem 0 2.286rem}
  .cl-body{margin-bottom:1.429rem}
  .contact-right{padding:2.857rem 2rem 4rem;min-height:auto;display:grid}
  .contact-form-view,.contact-success{grid-row:1;grid-column:1}
  .contact-form-view{align-self:start}
  .contact-success{position:static;inset:auto;display:flex;flex-direction:column;justify-content:center;align-items:center;align-self:center;visibility:hidden;opacity:0;pointer-events:none;padding:0}
  .contact-right.success .contact-form-view{visibility:hidden;opacity:0;pointer-events:none}
  .contact-right.success .contact-success{visibility:visible;opacity:1;pointer-events:auto}
  .cl-h1{font-size:clamp(2.286rem,6vw,3.571rem)}
  .cl-body{max-width:100%}
  .contact-channels{max-width:100%}
  .form-grid{grid-template-columns:1fr 1fr}

  /* PRODUCT */
  .product-layout{grid-template-columns:1fr}
  .product-gallery{position:relative;top:0;height:67vh;border-right:none;border-bottom:1px solid var(--border2);flex-direction:column}

  .gallery-viewport{order:1;flex:1;min-height:0;height:auto;max-height:100%}
  .gallery-thumbs{order:2;flex-direction:row;width:100%;height:7.857rem;flex-shrink:0;overflow-x:auto;overflow-y:hidden;padding:0.286rem 0.214rem;gap:0.286rem;scroll-behavior:smooth}
  .gallery-thumb{width:5.714rem;height:100%;aspect-ratio:unset;flex-shrink:0}
  .product-details{padding:2.857rem 2rem 4.286rem;max-height:none;overflow-y:visible}

  /* SHOP */
  .shop-layout{grid-template-columns:1fr;align-content:start}
  .shop-filter-toggle{display:flex}
  .shop-sidebar{
    display:none;position:fixed;top:7.357rem;left:0;right:0;z-index:450;
    height:auto;max-height:calc(100svh - 7.357rem);overflow-y:auto;
    border-right:none;border-bottom:1px solid var(--border2);
    background:var(--ink);padding:1.429rem 1.429rem 0;
  }
  .shop-sidebar.mobile-open{display:block}
  .sb-filter-actions{
    display:flex;gap:0.714rem;padding:1.143rem 0 calc(1.429rem + env(safe-area-inset-bottom));
    position:sticky;bottom:0;background:var(--ink);
    border-top:1px solid var(--border2);margin-top:0.857rem;
  }
  .apply-filters-btn{display:inline-flex;flex:1;justify-content:center}
  .clear-filters-btn{flex:1;width:auto;justify-content:center}
  .shop-main{padding:0 1.143rem}
  .shop-toolbar{margin-top:1.429rem}
  .shop-grid{grid-template-columns:repeat(2,1fr);gap:0.714rem}
}

/* Phones: one logo per row, centered */
@media (max-width:767px){
  .es-panel--brands{min-height:auto;padding:1.142rem 0}
  .es-brand-grid{
    display:flex;flex-direction:column;align-items:center;justify-content:center;
    gap:1.142rem;
    height:auto;min-height:0;
    padding:0;
    --es-logo-gap:1.142rem;
    --es-logo-h-base:1.5rem;
  }
  .es-brand-row--4,
  .es-brand-row--3{display:contents}
  .es-brand-row-inner{display:contents}
  .es-brand-row--4,
  .es-brand-row--3{--row-scale:1}
  .es-brand-logo{
    width:100%;
    max-width:min(20rem,calc(100vw - 2.286rem));
  }
  .es-brand-logo img{
    height:calc(var(--es-logo-h-base) * var(--logo-ratio));
    max-width:100%;
    width:auto;
  }
}

@media(max-width:640px){
  /* NAV */
  nav{padding:0 1.429rem;display:flex;justify-content:space-between;align-items:center}
  .nav-links{display:none}
  .nav-ham{display:flex}

  /* FOOTER */
  footer{padding:2.571rem 1.429rem 1.429rem}
  .footer-columns{grid-template-columns:1fr 1fr;gap:1.714rem}
  .footer-copy{display:none}

  /* HOME */
  .hero-left{padding:3.429rem 1.429rem}
  .hero-right{height:70vw}
  .h-headline{font-size:clamp(2.143rem,9vw,3.429rem)}
  .h-mat-row{gap:0.429rem}
  .mp-left{padding:3.143rem 1.429rem 2.286rem}
  .mp-right{padding:2rem 1.429rem 3.143rem}
  .es-panel{padding:2rem 1.429rem 2.571rem}
  .es-panel--brands{padding:1.142rem 0}
  .es-brand-grid{--es-logo-h-base:1.35rem;--es-logo-gap:1.142rem;gap:1.142rem}
  .es-brand-logo{padding:0.214rem 0}

  /* ABOUT */
  .ah-left{padding:3.143rem 1.429rem 2.571rem}
  .ah-right{padding:2.286rem 1.429rem 3.143rem}
  .about-materials{padding:3.143rem 1.429rem}
  .mat-grid{grid-template-columns:1fr 1fr}
  .mat-grid .mat-card:nth-child(3){background:var(--surface2)}
  .mat-grid .mat-card:nth-child(4){background:var(--surface)}
  .about-feedback{padding:3.143rem 1.429rem}

  /* CONTACT */
  .contact-left{padding:3.143rem 1.429rem 2.571rem}
  .contact-right{padding:2.286rem 1.429rem 3.143rem}
  .form-grid{grid-template-columns:1fr}
  .form-intents{grid-template-columns:1fr 1fr}

  /* PRODUCT */
  .gal-slide{width:100%}
  .gallery-viewport{height:100%;max-height:100%}
  .product-details{padding:1.714rem 1.429rem 3.429rem}

  /* SHOP */
  .shop-main{padding:0 0.857rem}
  .shop-grid{grid-template-columns:repeat(2,1fr);gap:0.571rem}

  /* BRANDS */
  .brands-header{padding:2.571rem 1.429rem}
  .brand-card{padding:2rem 1.143rem}
  .bc-photo-strip{margin:-2rem -1.143rem 1.714rem}
}

@media(max-width:380px){
  .shop-grid{grid-template-columns:1fr}
  .mat-grid{grid-template-columns:1fr}
  .mat-grid .mat-card:nth-child(3){background:var(--surface)}
  .mat-grid .mat-card:nth-child(4){background:var(--surface2)}
  .footer-columns{grid-template-columns:1fr}
}

@media(max-width:900px) and (max-height:700px){
  .gallery-thumbs{height:5rem}
  .gallery-thumb{width:3.714rem}
}
@media(max-width:900px) and (min-height:701px) and (max-height:800px){
  .gallery-thumbs{height:6.286rem}
  .gallery-thumb{width:4.714rem}
}

/* ══════════════════════════════
   ANIMATIONS
══════════════════════════════ */
@keyframes fadeUp{from{opacity:0;transform:translateY(1rem)}to{opacity:1;transform:translateY(0)}}
@keyframes spin{to{transform:rotate(360deg)}}
.shop-loader{display:flex;flex-direction:column;justify-content:center;align-items:center;gap:1.429rem;min-height:calc(100vh - 15.714rem);width:100%;grid-column:1/-1}
.shop-loader-spin{width:3.429rem;height:3.429rem;border:2.5px solid var(--border2);border-top-color:var(--peri);border-radius:50%;animation:spin 0.7s linear infinite}
.shop-loader-label{font-family:'DM Mono',monospace;font-size:0.714rem;letter-spacing:0.22em;text-transform:uppercase;color:var(--text-low)}
.fu{animation:fadeUp 0.52s ease forwards}
.d1{animation-delay:0.08s;opacity:0}
.d2{animation-delay:0.17s;opacity:0}
.d3{animation-delay:0.26s;opacity:0}
.d4{animation-delay:0.38s;opacity:0}
