/* ============================================================
   ELITE TEXTILE — Design System
   Palette: Ivory / Champagne / Charcoal · Fraunces + Manrope
   ============================================================ */

:root {
  --ivory:      #F5F4F1;
  --ivory-2:    #ECEBE7;
  --paper:      #FFFFFF;
  --ink:        #111111;
  --ink-2:      #444341;
  --muted:      #8B8A86;
  --line:       #E4E3DF;
  --line-2:     #C9C8C4;
  --champagne:  #141414;
  --champagne-2:#3C3C3C;
  --espresso:   #111111;
  --sage:       #8B8A86;
  --danger:     #111111;

  --serif: "Fraunces", "Playfair Display", Didot, "Times New Roman", Georgia, serif;
  --sans:  "Manrope", "Avenir Next", "Segoe UI", -apple-system, sans-serif;

  --sh-sm: 0 2px 10px rgba(17,17,17,.06);
  --sh-md: 0 12px 34px rgba(17,17,17,.12);
  --sh-lg: 0 30px 80px rgba(17,17,17,.22);
  --ease:  cubic-bezier(.22,.8,.24,1);
  --r: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--ink);
  font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }
::selection { background: #111; color: #fff; }

.wrap { width: min(1240px, 92vw); margin-inline: auto; }
.muted { color: var(--muted); }

/* ---------- skip link ---------- */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: 10px 16px; z-index: 200; }
.skip-link:focus { left: 8px; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar { background: var(--espresso); color: #CFC5B4; font-size: 12.5px; }
.topbar-in { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 38px; }
.topbar-note { letter-spacing: .02em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topbar-links { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.topbar-link { color: #CFC5B4; letter-spacing: .04em; transition: color .25s; }
.topbar-link:hover { color: #EDEDEA; }
.topbar-sep { width: 1px; height: 14px; background: #4A4238; }
.topbar-alt em { font-style: italic; color: #EDEDEA; }

/* ============================================================
   HEADER + NAV
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(247,244,237,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: var(--sh-sm); }
.header-in { display: flex; align-items: center; gap: 28px; min-height: 74px; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 44px; height: 44px; border-radius: 12px;
  background: #111; color: #F2F1ED;
  font-family: var(--serif); font-size: 26px; font-weight: 500;
  display: grid; place-items: center;
  transition: transform .5s var(--ease), border-radius .5s var(--ease);
}
.logo:hover .logo-mark { transform: rotate(-6deg) scale(1.05); border-radius: 50%; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text strong { font-family: var(--serif); font-size: 19px; font-weight: 600; letter-spacing: .10em; }
.logo-text small { font-size: 9.5px; letter-spacing: .34em; color: var(--muted); }

.nav { display: flex; gap: 4px; margin-inline: auto; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 26px 14px; font-size: 13.5px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-2); position: relative;
}
.nav-link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 20px;
  height: 1.5px; background: var(--champagne); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-link:hover::after, .nav-item.active .nav-link::after { transform: scaleX(1); }
.nav-link .caret { transition: transform .3s; font-size: 10px; }
.nav-item:hover .caret { transform: rotate(180deg); }

/* mega menu */
.mega {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 10px);
  min-width: 620px; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--sh-md);
  padding: 26px 30px; display: flex; gap: 40px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s var(--ease), transform .35s var(--ease), visibility .3s;
}
.nav-item:hover .mega, .nav-item:focus-within .mega {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0);
}
.mega::before {
  content: ""; position: absolute; top: -7px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 14px; height: 14px; background: var(--paper); border-left: 1px solid var(--line); border-top: 1px solid var(--line);
}
.mega-col { flex: 1; }
.mega-head { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.mega-col a {
  display: block; padding: 7px 0; font-size: 14.5px; color: var(--ink-2);
  transition: color .2s, padding-left .25s var(--ease);
}
.mega-col a:hover { color: var(--champagne-2); padding-left: 6px; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; color: var(--ink-2);
  border: 1px solid transparent; transition: all .25s;
}
.icon-btn:hover { border-color: var(--line-2); background: var(--paper); }
.cart-btn { position: relative; }
.cart-count {
  position: absolute; top: -2px; right: -4px; min-width: 17px; height: 17px;
  background: var(--champagne); color: #fff; border-radius: 9px;
  font-size: 10px; font-weight: 700; display: grid; place-items: center; padding: 0 4px;
  transition: transform .3s var(--ease);
}
.cart-count.pop { animation: pop .45s var(--ease); }
@keyframes pop { 40% { transform: scale(1.5); } }

.burger { display: none; flex-direction: column; gap: 5px; width: 40px; height: 40px; align-items: center; justify-content: center; }
.burger span { width: 20px; height: 1.8px; background: var(--ink); transition: transform .3s var(--ease), opacity .3s; }
.burger.open span:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 28px; border-radius: 999px;
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  transition: transform .3s var(--ease), box-shadow .3s, background .3s, color .3s, border-color .3s;
  border: 1.5px solid transparent; position: relative; overflow: hidden;
}
.btn:active { transform: scale(.97); }
.btn-gold { background: var(--champagne); color: #fff; box-shadow: 0 8px 24px rgba(17,17,17,.28); }
.btn-gold:hover { background: var(--champagne-2); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(17,17,17,.34); }
.btn-dark { background: var(--espresso); color: var(--ivory); }
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-ghost { border-color: var(--line-2); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); }
.btn-ghost.light { color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost.light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-sm { padding: 10px 20px; font-size: 11.5px; }
.btn-block { width: 100%; }
.btn .arr { transition: transform .3s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; height: min(88vh, 780px); min-height: 560px; overflow: hidden; background: var(--espresso); }
.hero-slide {
  position: absolute; inset: 0; display: grid; place-items: center;
  opacity: 0; transition: opacity 1.2s var(--ease);
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-bg { position: absolute; inset: 0; transition: transform 8s linear; }
.hero-slide.active .hero-bg { transform: scale(1.08); }
.hero-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,8,8,.34), rgba(8,8,8,.68) 78%); }
.hero-content { position: relative; text-align: center; color: #F7F3EA; padding: 0 6vw; max-width: 900px; }
.hero-kicker { font-size: 12px; letter-spacing: .42em; text-transform: uppercase; color: #E8E7E2; margin-bottom: 22px; }
.hero-title {
  font-family: var(--serif); font-weight: 400; font-size: clamp(38px, 6.2vw, 74px);
  line-height: 1.08; letter-spacing: -.01em; margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: #E4C98A; }
.hero-sub { font-size: clamp(15px, 1.4vw, 18px); color: rgba(247,243,234,.82); max-width: 620px; margin: 0 auto 36px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-slide.active .hero-kicker { animation: rise .9s var(--ease) .15s both; }
.hero-slide.active .hero-title  { animation: rise .9s var(--ease) .30s both; }
.hero-slide.active .hero-sub    { animation: rise .9s var(--ease) .45s both; }
.hero-slide.active .hero-cta    { animation: rise .9s var(--ease) .60s both; }
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

.hero-ui { position: absolute; z-index: 5; }
.hero-dots { bottom: 34px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
.hero-dot { width: 26px; height: 3px; border-radius: 2px; background: rgba(255,255,255,.35); transition: background .3s, width .3s var(--ease); }
.hero-dot.active { background: #F2F1ED; width: 42px; }
.hero-arrow {
  top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35); color: #fff; display: grid; place-items: center;
  font-size: 18px; transition: all .3s; background: rgba(255,255,255,.04); backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: #F2F1ED; border-color: #F2F1ED; color: #111; }
.hero-arrow.prev { left: 26px; } .hero-arrow.next { right: 26px; }
.hero-scroll { bottom: 26px; left: 30px; color: rgba(255,255,255,.6); font-size: 11px; letter-spacing: .3em; text-transform: uppercase; writing-mode: vertical-rl; display: flex; align-items: center; gap: 10px; }
.hero-scroll::after { content: ""; width: 1px; height: 44px; background: linear-gradient(rgba(255,255,255,.6), transparent); animation: drip 2.2s var(--ease) infinite; }
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: top; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section.tight { padding: clamp(44px, 6vw, 72px) 0; }
.section.tint { background: var(--ivory-2); }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.kicker { font-size: 11.5px; letter-spacing: .34em; text-transform: uppercase; color: var(--champagne-2); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.kicker::before { content: ""; width: 34px; height: 1px; background: var(--champagne); }
.section-head.center .kicker { justify-content: center; }
.title { font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 3.6vw, 46px); line-height: 1.14; letter-spacing: -.01em; }
.title em { font-style: italic; color: var(--champagne-2); }
.lede { margin-top: 16px; color: var(--ink-2); font-size: 16.5px; max-width: 60ch; }
.section-head.center .lede { margin-inline: auto; }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; } .reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; } .reveal[data-delay="4"] { transition-delay: .4s; }

/* ============================================================
   CATEGORY / INDUSTRY TILES
   ============================================================ */
.cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.cat-tile {
  position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 3/4;
  display: flex; align-items: flex-end; padding: 22px; color: #fff;
  box-shadow: var(--sh-sm); transition: transform .5s var(--ease), box-shadow .5s;
}
.cat-tile:hover { transform: translateY(-8px); box-shadow: var(--sh-md); }
.cat-tile .tile-bg { position: absolute; inset: 0; transition: transform .8s var(--ease); }
.cat-tile:hover .tile-bg { transform: scale(1.07); }
.cat-tile .tile-veil { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(20,15,10,.72)); }
.cat-tile h3 { position: relative; font-family: var(--serif); font-weight: 500; font-size: 21px; }
.cat-tile p { position: relative; font-size: 12.5px; opacity: .85; margin-top: 4px; }
.cat-tile .tile-go {
  position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.16); backdrop-filter: blur(6px); display: grid; place-items: center;
  font-size: 15px; transform: translateY(-6px); opacity: 0; transition: all .35s var(--ease);
}
.cat-tile:hover .tile-go { transform: none; opacity: 1; }

/* weave texture utility (fabric-like CSS material) */
.weave { position: relative; }
.weave::after {
  content: ""; position: absolute; inset: 0; opacity: .5; mix-blend-mode: overlay;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,.09) 0 2px, transparent 2px 5px),
              repeating-linear-gradient(-45deg, rgba(0,0,0,.05) 0 2px, transparent 2px 5px);
}

/* ============================================================
   PRODUCT GRID + CARD
   ============================================================ */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: start; }
.prod-grid.compact { gap: 20px; }
.prod-card { position: relative; cursor: pointer; }
.prod-card .card-visual {
  position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 4/4.6;
  box-shadow: var(--sh-sm); transition: box-shadow .4s, transform .5s var(--ease);
}
.prod-card:hover .card-visual { box-shadow: var(--sh-md); transform: translateY(-6px); }
.card-fabric { position: absolute; inset: 0; transition: transform .9s var(--ease); }
.prod-card:hover .card-fabric { transform: scale(1.06); }
.card-fabric::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 20% 0%, rgba(255,255,255,.5), transparent 50%),
    repeating-linear-gradient(90deg, rgba(0,0,0,.028) 0 3px, transparent 3px 7px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.16) 0 1px, transparent 1px 4px);
}
.card-fabric.herringbone::before {
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(255,255,255,.45), transparent 55%),
    repeating-linear-gradient(45deg, rgba(0,0,0,.05) 0 2px, transparent 2px 8px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,.12) 0 2px, transparent 2px 8px);
}
.card-fabric.terry::before {
  background:
    radial-gradient(100% 100% at 30% 10%, rgba(255,255,255,.5), transparent 60%),
    radial-gradient(circle at 25% 25%, rgba(0,0,0,.045) 1.4px, transparent 1.6px),
    radial-gradient(circle at 75% 65%, rgba(0,0,0,.04) 1.4px, transparent 1.6px);
  background-size: auto, 9px 9px, 13px 13px;
}
.badge {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  padding: 5px 12px; border-radius: 999px; font-size: 10px; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
}
.badge.new { background: #111; color: #F2F1ED; }
.badge.feat { background: var(--champagne); color: #fff; }
.qv-btn {
  position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 3;
  padding: 12px; border-radius: 10px; background: rgba(253,252,249,.92); backdrop-filter: blur(8px);
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; text-align: center;
  opacity: 0; transform: translateY(10px); transition: all .35s var(--ease);
}
.prod-card:hover .qv-btn { opacity: 1; transform: none; }
.card-body { padding: 16px 4px 0; }
.card-cat { font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); }
.card-name { font-family: var(--serif); font-size: 19px; font-weight: 500; margin: 5px 0 6px; line-height: 1.25; }
.card-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.card-spec { font-size: 12.5px; color: var(--muted); }
.card-price { font-weight: 700; font-size: 14.5px; white-space: nowrap; }
.card-dotrow { display: flex; gap: 5px; margin-top: 10px; }
.card-dot { width: 13px; height: 13px; border-radius: 50%; border: 1px solid rgba(0,0,0,.12); }

/* ============================================================
   CATALOG + FILTERS
   ============================================================ */
.catalog { display: grid; grid-template-columns: 264px 1fr; gap: 44px; align-items: start; }
.filters { position: sticky; top: 96px; }
.filters-head { display: flex; align-items: baseline; justify-content: space-between; padding-bottom: 14px; border-bottom: 1.5px solid var(--ink); }
.filters-head h3 { font-family: var(--serif); font-size: 21px; font-weight: 500; }
.clear-all { font-size: 11.5px; letter-spacing: .08em; color: var(--champagne-2); text-decoration: underline; text-underline-offset: 3px; }

.facet { border-bottom: 1px solid var(--line); padding: 16px 0; }
.facet-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--ink);
  padding: 2px 0;
}
.facet-toggle .chev { transition: transform .3s var(--ease); font-size: 10px; color: var(--muted); }
.facet.open .facet-toggle .chev { transform: rotate(180deg); }
.facet-body { overflow: hidden; max-height: 0; opacity: 0; transition: max-height .45s var(--ease), opacity .3s, padding .3s; }
.facet.open .facet-body { max-height: 420px; opacity: 1; padding-top: 12px; }

.fcheck { display: flex; align-items: center; gap: 10px; padding: 5.5px 0; cursor: pointer; font-size: 14px; color: var(--ink-2); }
.fcheck input { display: none; }
.fcheck .box {
  width: 17px; height: 17px; border-radius: 5px; border: 1.5px solid var(--line-2);
  display: grid; place-items: center; transition: all .25s var(--ease); flex-shrink: 0;
}
.fcheck .box::after { content: ""; width: 8px; height: 4.5px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg) scale(0); transition: transform .25s var(--ease); margin-top: -2px; }
.fcheck input:checked + .box { background: var(--champagne); border-color: var(--champagne); }
.fcheck input:checked + .box::after { transform: rotate(-45deg) scale(1); }
.fcheck:hover { color: var(--ink); }
.fcheck .cnt { margin-left: auto; font-size: 11.5px; color: var(--muted); }

.swatch-row { display: flex; flex-wrap: wrap; gap: 9px; padding: 4px 0 2px; }
.swatch {
  width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(0,0,0,.14);
  cursor: pointer; position: relative; transition: transform .25s var(--ease), box-shadow .25s;
}
.swatch:hover { transform: scale(1.12); }
.swatch.sel { box-shadow: 0 0 0 2px var(--ivory), 0 0 0 3.5px var(--ink); }
.swatch::after { content: attr(data-name); position: absolute; bottom: calc(100% + 6px); left: 50%; transform: translateX(-50%); background: var(--ink); color: #fff; font-size: 10.5px; padding: 3px 9px; border-radius: 6px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .2s; }
.swatch:hover::after { opacity: 1; }

.toolbar { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; flex-wrap: wrap; }
.result-count { font-size: 14px; color: var(--muted); margin-right: auto; }
.result-count strong { color: var(--ink); font-weight: 700; }
.sort-sel {
  font: inherit; font-size: 13.5px; color: var(--ink); background: var(--paper);
  border: 1px solid var(--line-2); border-radius: 999px; padding: 9px 16px; cursor: pointer;
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px; padding: 6px 8px 6px 13px;
  background: var(--paper); border: 1px solid var(--line-2); border-radius: 999px;
  font-size: 12.5px; animation: chipIn .35s var(--ease) both;
}
@keyframes chipIn { from { opacity: 0; transform: scale(.85); } }
.chip button { width: 17px; height: 17px; border-radius: 50%; background: var(--ivory-2); font-size: 10px; display: grid; place-items: center; transition: background .2s; }
.chip button:hover { background: var(--champagne); color: #fff; }

.grid-anim { animation: gridIn .5s var(--ease) both; }
@keyframes gridIn { from { opacity: 0; transform: translateY(14px); } }
.no-result { text-align: center; padding: 70px 0; color: var(--muted); }
.no-result .big { font-family: var(--serif); font-size: 26px; color: var(--ink); margin-bottom: 8px; }

/* ============================================================
   PDP (product detail)
   ============================================================ */
.crumbs { font-size: 12.5px; color: var(--muted); padding: 26px 0 0; display: flex; gap: 8px; flex-wrap: wrap; }
.crumbs a:hover { color: var(--champagne-2); }
.pdp { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 5vw, 70px); padding: 40px 0 80px; }
.pdp-gallery { position: sticky; top: 110px; }
.pdp-main {
  position: relative; border-radius: calc(var(--r) + 6px); overflow: hidden; aspect-ratio: 1/1.02;
  box-shadow: var(--sh-md); cursor: zoom-in;
}
.pdp-main .card-fabric { transition: transform .7s var(--ease); }
.pdp-main.zoomed .card-fabric { transform: scale(2.1); }
.pdp-main .zoom-hint { position: absolute; bottom: 16px; right: 16px; background: rgba(253,252,249,.9); border-radius: 999px; padding: 7px 14px; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2); z-index: 2; }
.pdp-thumbs { display: flex; gap: 12px; margin-top: 14px; }
.pdp-thumb { flex: 1; aspect-ratio: 4/3; border-radius: 10px; overflow: hidden; position: relative; cursor: pointer; opacity: .75; transition: opacity .25s, transform .3s var(--ease); border: 2px solid transparent; }
.pdp-thumb.sel { opacity: 1; border-color: var(--ink); }
.pdp-thumb:hover { transform: translateY(-3px); opacity: 1; }

.pdp-info .card-cat { font-size: 11px; }
.pdp-title { font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 3.2vw, 40px); line-height: 1.12; margin: 10px 0 14px; }
.pdp-price { font-size: 24px; font-weight: 700; }
.pdp-price small { font-size: 13px; color: var(--muted); font-weight: 500; margin-left: 6px; }
.pdp-desc { color: var(--ink-2); margin: 18px 0 24px; max-width: 56ch; }

.opt-label { font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin: 20px 0 10px; }
.opt-label b { color: var(--ink); }
.pdp-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.pdp-trust { display: flex; gap: 22px; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.trust-item { display: flex; gap: 10px; align-items: center; font-size: 13px; color: var(--ink-2); }
.trust-item .ti { width: 34px; height: 34px; border-radius: 50%; background: var(--ivory-2); display: grid; place-items: center; color: var(--champagne-2); font-size: 14px; }

.spec-table { width: 100%; border-collapse: collapse; margin-top: 14px; font-size: 14px; }
.spec-table td { padding: 11px 4px; border-bottom: 1px solid var(--line); }
.spec-table td:first-child { color: var(--muted); width: 42%; }
.spec-table td:last-child { font-weight: 600; }

/* ============================================================
   COLLECTION / INDUSTRY / EDITORIAL pages
   ============================================================ */
.page-hero { position: relative; color: #F7F3EA; padding: clamp(80px, 12vw, 150px) 0 clamp(56px, 8vw, 96px); overflow: hidden; }
.page-hero .ph-bg { position: absolute; inset: 0; }
.page-hero .ph-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,14,10,.25), rgba(18,14,10,.66)); }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero .title { font-size: clamp(34px, 4.6vw, 58px); }
.page-hero .lede { color: rgba(247,243,234,.85); }

.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ind-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 30px 28px; transition: transform .45s var(--ease), box-shadow .45s; position: relative; overflow: hidden; }
.ind-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.ind-card::after { content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 100%; background: var(--champagne); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.ind-card:hover::after { transform: scaleX(1); }
.ind-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--ivory-2); display: grid; place-items: center; margin-bottom: 18px; color: var(--champagne-2); }
.ind-card h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; margin-bottom: 8px; }
.ind-card p { font-size: 14px; color: var(--ink-2); }
.ind-card ul { margin-top: 14px; }
.ind-card li { font-size: 13.5px; color: var(--ink-2); padding: 4px 0 4px 20px; position: relative; }
.ind-card li::before { content: "—"; position: absolute; left: 0; color: var(--champagne); }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-left: 1px solid var(--line); }
.process-step { padding: 30px 26px 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; transition: background .3s; }
.process-step:hover { background: var(--paper); }
.process-step .pn { font-family: var(--serif); font-size: 40px; color: var(--line-2); line-height: 1; transition: color .3s; }
.process-step:hover .pn { color: var(--champagne); }
.process-step h4 { font-size: 15px; letter-spacing: .06em; margin: 14px 0 8px; text-transform: uppercase; }
.process-step p { font-size: 13.5px; color: var(--ink-2); }

.stat-band { background: #0C0C0C; color: var(--ivory); }
.stat-band .stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; text-align: center; }
.stat-n { font-family: var(--serif); font-size: clamp(38px, 4.4vw, 58px); color: #F2F1ED; line-height: 1.1; }
.stat-l { font-size: 13px; letter-spacing: .08em; color: rgba(247,243,234,.7); margin-top: 8px; }

.cert-strip { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cert-pill { border: 1px solid var(--line-2); background: var(--paper); border-radius: 999px; padding: 12px 24px; text-align: center; transition: all .3s var(--ease); }
.cert-pill:hover { border-color: var(--champagne); transform: translateY(-3px); box-shadow: var(--sh-sm); }
.cert-pill b { display: block; font-size: 14px; letter-spacing: .04em; }
.cert-pill span { font-size: 11px; color: var(--muted); }

.news-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.news-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: transform .45s var(--ease), box-shadow .45s; cursor: pointer; display: flex; flex-direction: column; }
.news-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.news-visual { aspect-ratio: 16/10; position: relative; }
.news-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.news-meta { display: flex; justify-content: space-between; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.news-meta b { color: var(--champagne-2); }
.news-card h3 { font-family: var(--serif); font-size: 19px; font-weight: 500; line-height: 1.3; }
.news-card p { font-size: 13.5px; color: var(--ink-2); margin-top: 10px; }
.news-card .read-more { margin-top: auto; padding-top: 16px; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--champagne-2); }

.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.proj-card { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 4/4.4; color: #fff; display: flex; align-items: flex-end; padding: 26px; }
.proj-card .proj-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,12,9,.1), rgba(15,12,9,.78)); }
.proj-card:hover .tile-bg { transform: scale(1.06); }
.proj-card > div:not(.tile-bg):not(.proj-veil) { position: relative; }
.proj-client { font-family: var(--serif); font-size: 22px; }
.proj-scope { font-size: 13px; color: rgba(255,255,255,.82); margin-top: 4px; }
.proj-tags { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.proj-tag { font-size: 11px; letter-spacing: .08em; padding: 4px 11px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; }

/* editorial split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.split-visual { border-radius: calc(var(--r) + 6px); overflow: hidden; aspect-ratio: 4/3; position: relative; box-shadow: var(--sh-md); }
.split h2 { margin-bottom: 18px; }
.check-list li { display: flex; gap: 12px; padding: 7px 0; color: var(--ink-2); font-size: 15px; }
.check-list .ck { color: var(--champagne-2); font-weight: 700; }

/* ============================================================
   FORMS
   ============================================================ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2); }
.field label span { color: var(--danger); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 15px; padding: 13px 16px; border-radius: 10px;
  border: 1.5px solid var(--line-2); background: var(--paper); color: var(--ink);
  transition: border-color .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--champagne); box-shadow: 0 0 0 4px rgba(17,17,17,.12); }
.field.err input, .field.err select, .field.err textarea { border-color: var(--danger); }
.field .msg { font-size: 12px; color: var(--danger); display: none; }
.field.err .msg { display: block; }
.form-ok { text-align: center; padding: 30px 10px; animation: gridIn .5s var(--ease); }
.form-ok .ok-ring { width: 74px; height: 74px; margin: 0 auto 18px; border-radius: 50%; border: 2px solid var(--champagne); display: grid; place-items: center; font-size: 30px; color: var(--champagne-2); animation: pop .6s var(--ease); }

/* ============================================================
   OVERLAYS: drawer / search / modal
   ============================================================ */
.overlay { position: fixed; inset: 0; background: rgba(24,19,14,.5); backdrop-filter: blur(3px); z-index: 120; opacity: 0; transition: opacity .35s; }
.overlay.show { opacity: 1; }

.mobile-drawer {
  position: fixed; top: 0; left: 0; bottom: 0; width: min(400px, 92vw); background: var(--ivory);
  z-index: 130; transform: translateX(-102%); transition: transform .45s var(--ease);
  display: flex; flex-direction: column; box-shadow: var(--sh-lg);
}
.mobile-drawer.open { transform: none; }
.mobile-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.mobile-nav { padding: 10px 22px; overflow-y: auto; flex: 1; }
.mobile-nav a, .mobile-nav .m-acc { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 15px 2px; font-family: var(--serif); font-size: 20px; border-bottom: 1px solid var(--line); text-align: left; }
.mobile-sub { padding: 4px 0 10px; display: none; }
.mobile-sub.open { display: block; animation: gridIn .35s var(--ease); }
.mobile-sub a { font-family: var(--sans); font-size: 14.5px; color: var(--ink-2); border: 0; padding: 9px 0; }
.mobile-drawer-cta { padding: 18px 22px; border-top: 1px solid var(--line); display: grid; gap: 10px; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(430px, 94vw); background: var(--ivory);
  z-index: 130; transform: translateX(102%); transition: transform .45s var(--ease);
  display: flex; flex-direction: column; box-shadow: var(--sh-lg);
}
.cart-drawer.open { transform: none; }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.cart-head h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; }
.cart-body { flex: 1; overflow-y: auto; padding: 18px 24px; }
.cart-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); animation: gridIn .4s var(--ease); }
.cart-thumb { width: 64px; height: 74px; border-radius: 10px; position: relative; overflow: hidden; flex-shrink: 0; }
.cart-item h4 { font-size: 14.5px; font-weight: 600; line-height: 1.3; }
.cart-item .ci-meta { font-size: 12px; color: var(--muted); margin-top: 3px; }
.cart-item .ci-remove { font-size: 11.5px; color: var(--danger); text-decoration: underline; text-underline-offset: 3px; margin-top: 6px; display: inline-block; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.cart-foot { padding: 18px 24px 24px; border-top: 1px solid var(--line); }

.search-layer {
  position: fixed; inset: 0; z-index: 130; background: rgba(247,244,237,.97); backdrop-filter: blur(16px);
  opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s; overflow-y: auto;
}
.search-layer.open { opacity: 1; visibility: visible; }
.search-close { position: absolute; top: 22px; right: max(24px, 4vw); font-size: 18px; }
.search-box { display: flex; align-items: center; gap: 18px; padding-top: 15vh; padding-bottom: 22px; border-bottom: 1.5px solid var(--ink); }
.search-box input { flex: 1; border: 0; background: transparent; font-family: var(--serif); font-size: clamp(22px, 3.4vw, 38px); color: var(--ink); }
.search-box input:focus { outline: none; }
.search-results { padding-top: 28px; padding-bottom: 60px; }
.sr-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.sr-item { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 14px; display: flex; gap: 12px; align-items: center; cursor: pointer; transition: transform .3s var(--ease), box-shadow .3s; animation: gridIn .4s var(--ease) both; }
.sr-item:hover { transform: translateY(-3px); box-shadow: var(--sh-sm); }
.sr-thumb { width: 46px; height: 54px; border-radius: 8px; flex-shrink: 0; position: relative; overflow: hidden; }
.sr-item h4 { font-size: 13.5px; line-height: 1.3; }
.sr-item span { font-size: 11.5px; color: var(--muted); }
.sr-empty { text-align: center; color: var(--muted); padding: 30px 0; }

.modal {
  position: fixed; inset: 0; z-index: 140; display: grid; place-items: center; padding: 4vh 4vw;
  background: rgba(24,19,14,.55); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s;
}
.modal.open { opacity: 1; visibility: visible; }
.modal-card {
  background: var(--ivory); border-radius: 20px; box-shadow: var(--sh-lg);
  width: min(880px, 100%); max-height: 92vh; overflow-y: auto; position: relative;
  transform: translateY(30px) scale(.96); opacity: 0; transition: transform .45s var(--ease), opacity .35s;
}
.modal.open .modal-card { transform: none; opacity: 1; }
.modal-x { position: absolute; top: 16px; right: 16px; z-index: 5; width: 38px; height: 38px; border-radius: 50%; background: rgba(253,252,249,.92); display: grid; place-items: center; font-size: 15px; box-shadow: var(--sh-sm); transition: transform .3s var(--ease); }
.modal-x:hover { transform: rotate(90deg); }

/* quick view */
.qv { display: grid; grid-template-columns: 1fr 1.1fr; }
.qv-visual { position: relative; min-height: 380px; }
.qv-body { padding: 40px 42px 36px; }
.qv-body .card-name { font-size: 27px; margin: 6px 0 10px; }
.qv-price { font-size: 20px; font-weight: 700; }
.qv-desc { font-size: 14.5px; color: var(--ink-2); margin: 14px 0 20px; }
.qv-actions { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
.qv-link { display: inline-block; margin-top: 18px; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: var(--champagne-2); border-bottom: 1.5px solid currentColor; padding-bottom: 3px; }

/* RFQ modal */
.rfq-head { padding: 36px 42px 0; }
.rfq-head .title { font-size: 28px; }
.rfq-form { padding: 22px 42px 40px; }

/* newsletter pop */
.nl { display: grid; grid-template-columns: .9fr 1.1fr; }
.nl-visual { position: relative; min-height: 420px; }
.nl-body { padding: 46px 46px 40px; }
.nl-body .title { font-size: 30px; margin-bottom: 12px; }
.nl-note { font-size: 12.5px; color: var(--muted); margin-top: 12px; }

/* cookie bar */
.cookiebar {
  position: fixed; bottom: 18px; left: 50%; transform: translate(-50%, 0); z-index: 110;
  width: min(680px, 94vw); background: var(--espresso); color: #E8E1D3;
  border-radius: 16px; padding: 16px 20px; display: flex; align-items: center; gap: 18px;
  box-shadow: var(--sh-lg); animation: cookieIn .6s var(--ease) both;
}
@keyframes cookieIn { from { transform: translate(-50%, 140%); } }
.cookiebar[hidden] { display: none; }
.cookiebar p { font-size: 13px; line-height: 1.5; flex: 1; }
.cookiebar a { color: #EDEDEA; text-decoration: underline; text-underline-offset: 3px; }
.cookiebar-actions { display: flex; gap: 8px; flex-shrink: 0; }

/* toast */
.toast {
  position: fixed; bottom: 26px; left: 50%; transform: translate(-50%, 20px); z-index: 150;
  background: var(--ink); color: var(--ivory); padding: 13px 22px; border-radius: 999px;
  font-size: 13.5px; box-shadow: var(--sh-lg); opacity: 0; pointer-events: none;
  transition: opacity .35s, transform .45s var(--ease); max-width: 92vw;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ============================================================
   PHOTO MEDIA (native-ratio, no-crop system)
   ============================================================ */
.media { position: relative; overflow: hidden; background: var(--ivory-2); }
.media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .9s var(--ease), opacity .5s;
}
.media img.lazy:not(.loaded) { opacity: 0; }
.media:hover img { transform: scale(1.045); }
.media.contain img { object-fit: contain; }
.media .media-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 16px 12px;
  background: linear-gradient(transparent, rgba(20,15,10,.72)); color: #F7F3EA;
  font-size: 12px; letter-spacing: .02em; opacity: 0; transition: opacity .35s;
}
.media:hover .media-cap { opacity: 1; }

/* hero photo */
.hero-bg { position: absolute; inset: 0; transition: transform 8s linear; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }

/* gallery page */
.g-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.g-tab {
  padding: 10px 22px; border-radius: 999px; border: 1px solid var(--line-2);
  font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-2); transition: all .3s var(--ease); background: var(--paper);
}
.g-tab:hover { border-color: var(--ink); }
.g-tab.active { background: #111; color: #EDEDEA; border-color: #111; }
.gallery-grid { columns: 3 260px; column-gap: 18px; }
.g-item { break-inside: avoid; margin-bottom: 18px; cursor: zoom-in; animation: gridIn .5s var(--ease) both; }
.g-item .media { border-radius: var(--r); box-shadow: var(--sh-sm); }
.g-item:hover .media { box-shadow: var(--sh-md); }
.g-item img { display: block; }
.g-cap { padding: 10px 4px 0; font-size: 12.5px; color: var(--muted); display: flex; justify-content: space-between; gap: 10px; }
.g-cap b { color: var(--ink-2); font-weight: 600; flex-shrink: 0; }

/* lookbook strip (home) */
.look-strip {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 14px; scrollbar-width: thin; scrollbar-color: var(--line-2) transparent;
}
.look-strip::-webkit-scrollbar { height: 6px; }
.look-strip::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 3px; }
.look-item { scroll-snap-align: start; flex: 0 0 auto; width: 300px; cursor: pointer; }
.look-item .media { border-radius: var(--r); box-shadow: var(--sh-sm); }
.look-item:hover .media { box-shadow: var(--sh-md); }
.look-cap { font-size: 12.5px; color: var(--ink-2); padding: 10px 2px 0; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 150; background: rgba(24,19,14,.92);
  display: grid; place-items: center; padding: 4vh 4vw;
  opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s; cursor: zoom-out;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 92vw; max-height: 84vh; width: auto; height: auto;
  border-radius: 10px; box-shadow: var(--sh-lg);
  transform: scale(.94); transition: transform .45s var(--ease);
}
.lightbox.open img { transform: none; }
.lightbox .lb-cap { position: absolute; bottom: 3.5vh; left: 50%; transform: translateX(-50%); color: rgba(247,243,234,.85); font-size: 13px; max-width: 80vw; text-align: center; }
.lightbox .lb-x { position: absolute; top: 20px; right: 24px; color: #fff; font-size: 22px; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); display: grid; place-items: center; transition: all .3s; }
.lightbox .lb-x:hover { background: #F2F1ED; border-color: #F2F1ED; color: #111; }

/* archive timeline (about) */
.archive-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; }
.archive-item .media { border-radius: var(--r); box-shadow: var(--sh-sm); transition: transform .5s var(--ease), box-shadow .5s; }
.archive-item:hover .media { filter: none; transform: translateY(-4px); box-shadow: var(--sh-md); }
.archive-item p { font-size: 12.5px; color: var(--muted); padding: 10px 2px 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 20px 2px; text-align: left; font-family: var(--serif); font-size: 19px; }
.faq-q .chev { transition: transform .35s var(--ease); color: var(--champagne-2); }
.faq-item.open .faq-q .chev { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq-a p { padding: 0 2px 22px; color: var(--ink-2); max-width: 75ch; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--espresso); color: #B9AF9E; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 34px; padding: 64px 0 48px; }
.footer h4 { color: var(--ivory); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 18px; }
.footer-brand strong { font-family: var(--serif); font-size: 22px; color: var(--ivory); letter-spacing: .08em; display: block; }
.footer-brand small { font-size: 10px; letter-spacing: .3em; color: #C9C8C4; }
.footer-brand p { font-size: 13.5px; margin-top: 16px; max-width: 34ch; }
.footer a { display: block; padding: 4.5px 0; font-size: 13.5px; transition: color .2s, padding-left .25s var(--ease); }
.footer a:hover { color: #F2F1ED; padding-left: 5px; }
.footer-news p { font-size: 13.5px; margin-bottom: 14px; }
.footer-news form { display: flex; border-bottom: 1px solid #5A5142; }
.footer-news input { flex: 1; background: transparent; border: 0; color: var(--ivory); padding: 10px 2px; font: inherit; font-size: 14px; }
.footer-news input:focus { outline: none; }
.footer-news button { color: #F2F1ED; font-weight: 700; font-size: 13px; letter-spacing: .1em; }
.footer-bar { border-top: 1px solid #3E362C; }
.footer-bar-in { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 0; font-size: 12.5px; flex-wrap: wrap; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { padding: 0; font-size: 12.5px; }

/* ============================================================
   PAGE TRANSITION + RESPONSIVE
   ============================================================ */
#app { min-height: 60vh; }
.page-enter { animation: pageIn .55s var(--ease); }
@keyframes pageIn { from { opacity: 0; transform: translateY(16px); } }

@media (max-width: 1080px) {
  .nav { display: none; }
  .burger { display: flex; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .prod-grid, .sr-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-grid, .proj-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog { grid-template-columns: 1fr; gap: 26px; }
  .filters { position: static; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 18px 20px 6px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-band .stat-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
}
@media (max-width: 720px) {
  .topbar-note { display: none; }
  .topbar-in { justify-content: center; }
  .header-in { gap: 12px; min-height: 66px; }
  .logo-text small { display: none; }
  .btn-sm.req { display: none; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-grid, .sr-grid, .news-grid, .ind-grid, .proj-grid, .process-grid { grid-template-columns: 1fr; }
  .pdp, .split, .qv, .nl { grid-template-columns: 1fr; }
  .pdp-gallery, .filters { position: static; }
  .qv-visual, .nl-visual { min-height: 260px; }
  .form-grid { grid-template-columns: 1fr; }
  .news-grid .news-card:last-child { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 8px; padding: 44px 0 30px; }
  .footer-brand { margin-bottom: 18px; }
  .cookiebar { flex-direction: column; align-items: flex-start; }
  .hero { min-height: 520px; }
  .hero-arrow { display: none; }
  .modal-card { border-radius: 16px; }
  .qv-body, .nl-body, .rfq-head, .rfq-form { padding: 26px 22px; }
  .gallery-grid { columns: 2 150px; }
  .look-item { width: 240px; }
  .archive-strip { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   MONO SYSTEM — dark bands, quotes, photo components
   ============================================================ */
.section.dark { background: #0E0E0E; color: #F2F1ED; }
.section.dark .kicker { color: #D9D8D3; }
.section.dark .kicker::before { background: #D9D8D3; }
.section.dark .title { color: #F2F1ED; }
.section.dark .title em { color: #F2F1ED; }
.section.dark .lede { color: rgba(242,241,237,.72); }
.section.dark .ind-card { background: #161616; border-color: #262626; }
.section.dark .ind-card h3 { color: #F2F1ED; }
.section.dark .ind-card p, .section.dark .ind-card li { color: #B9B8B4; }
.section.dark .ind-card li::before { color: #8B8A86; }
.section.dark .ind-ico { background: #222; color: #EDEDEA; }
.section.dark .look-cap { color: #B9B8B4; }
.section.dark .look-item .media { box-shadow: 0 8px 30px rgba(0,0,0,.5); }
.section.dark .media { background: #1B1B1B; }

/* real-copy CN quotes */
.quote-cn {
  margin: 22px 0 0; padding: 18px 22px; border-left: 3px solid #111;
  background: var(--paper); font-family: var(--serif); font-size: 17px; line-height: 1.9;
  color: var(--ink); border-radius: 0 12px 12px 0;
}
.quote-cn footer { margin-top: 10px; font-size: 13px; color: var(--muted); font-family: var(--sans); }
.quote-cn.center { border-left: 0; border-top: 3px solid #111; border-radius: 0 0 12px 12px; text-align: center; max-width: 720px; margin: 34px auto 0; font-size: clamp(19px, 2.2vw, 24px); }
.section.dark .quote-cn { background: #161616; color: #F2F1ED; border-left-color: #F2F1ED; }
.section.tint .quote-cn { background: #FFFFFF; }

/* brand cards (about) */
.brand-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.brand-card { background: #101010; color: #F2F1ED; border-radius: var(--r); padding: 34px 30px; transition: transform .45s var(--ease), box-shadow .45s; }
.brand-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.brand-name { font-family: var(--serif); font-size: clamp(20px, 2.2vw, 26px); letter-spacing: .06em; margin-bottom: 10px; }
.brand-card p { font-size: 14px; color: #B9B8B4; line-height: 1.7; }

/* page-hero photo card (native ratio, floating) */
.ph-in { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.ph-media {
  flex: 0 0 auto; width: min(360px, 32vw); margin: 0; transform: rotate(2deg);
  border-radius: 14px; overflow: hidden; box-shadow: var(--sh-lg);
  background: #F2F1ED; transition: transform .6s var(--ease);
}
.ph-media:hover { transform: rotate(0deg) scale(1.02); }
.ph-media img { display: block; width: 100%; height: auto; }

/* fabric library + gallery grids */
.fab-grid { columns: 4 220px; column-gap: 18px; }

/* pdp photo view (contain inside square stage) */
.pdp-photo { position: absolute; inset: 0; display: grid; place-items: center; }
.pdp-photo img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; cursor: zoom-in; }
.pdp-thumb img { width: 100%; height: 100%; object-fit: contain; background: #F1F0EC; }

/* collection photo card */
.col-card { display: block; }
.col-card .media { border-radius: var(--r); box-shadow: var(--sh-sm); }
.col-card:hover .media { box-shadow: var(--sh-md); }
.col-card:hover .media img { transform: scale(1.05); }
.col-card-body { padding: 16px 4px 0; }
.col-card-body h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; }
.col-card-body p { font-size: 13.5px; color: var(--muted); margin-top: 4px; }

@media (max-width: 1080px) {
  .ph-media { width: min(300px, 36vw); }
  .fab-grid { columns: 3 200px; }
}
@media (max-width: 720px) {
  .ph-in { flex-direction: column; align-items: flex-start; gap: 28px; }
  .ph-media { width: min(320px, 78vw); transform: none; }
  .fab-grid { columns: 2 150px; }
  .brand-grid { grid-template-columns: 1fr; }
  .cat-grid.cols-3 { grid-template-columns: 1fr; }
  .quote-cn { font-size: 15.5px; }
}

/* ============================================================
   COLOR CANVAS — tetris masonry + zoom + series tabs
   ============================================================ */
.canvas-host { --cvw: 240px; }
.canvas-tabs { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.canvas-tabrow { display: flex; flex-wrap: wrap; gap: 8px; }
.canvas-tab {
  padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line-2);
  background: var(--paper); font-size: 12.5px; font-weight: 700; letter-spacing: .06em;
  color: var(--ink-2); transition: all .3s var(--ease); cursor: pointer;
}
.canvas-tab:hover { border-color: var(--ink); color: var(--ink); }
.canvas-tab.active { background: #111; color: #F2F1ED; border-color: #111; }
.canvas-tab.fam { font-weight: 500; padding: 7px 14px; }
.canvas-tab.fam.active { background: var(--ivory-2); color: #111; border-color: #111; }

.canvas-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin: 6px 0 22px; flex-wrap: wrap; font-size: 13px; }
.canvas-zoom { display: inline-flex; align-items: center; gap: 6px; }
.canvas-zoom button {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line-2);
  background: var(--paper); font-size: 15px; cursor: pointer; transition: all .25s;
}
.canvas-zoom button:hover { background: #111; color: #F2F1ED; border-color: #111; }
.canvas-zoom span { font-size: 12px; min-width: 44px; text-align: center; color: var(--muted); }

.cv-group { margin-bottom: 40px; }
.cv-series-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin: 0 0 16px; border-bottom: 1.5px solid var(--ink); padding-bottom: 12px; }
.cv-series-head h3 { font-family: var(--serif); font-size: 24px; font-weight: 500; }
.cv-meta { font-size: 12px; color: var(--muted); display: inline-flex; align-items: center; gap: 7px; margin-top: 4px; }
.rich-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; border: 1px solid rgba(0,0,0,.18); }
.cv-open { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); border-bottom: 1.5px solid #111; padding-bottom: 2px; white-space: nowrap; }

.canvas-cols { column-gap: 14px; break-inside: auto; }
.canvas-item {
  break-inside: avoid; margin: 0 0 14px; position: relative; cursor: pointer;
  border-radius: 12px; overflow: hidden; background: #F1F0EC; box-shadow: var(--sh-sm);
  transition: transform .4s var(--ease), box-shadow .4s;
}
.canvas-item:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.canvas-item img { display: block; width: 100%; height: auto; }
.cv-lb {
  position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.92); border: 0; font-size: 14px; cursor: pointer;
  opacity: 0; transition: opacity .3s, transform .3s var(--ease);
}
.canvas-item:hover .cv-lb { opacity: 1; }
.cv-lb:hover { transform: scale(1.12); }
.cv-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 12px 9px;
  background: linear-gradient(transparent, rgba(10,10,10,.7)); color: #F2F1ED;
  font-size: 11.5px; letter-spacing: .03em; opacity: 0; transition: opacity .3s;
}
.canvas-item:hover .cv-cap { opacity: 1; }
.canvas-item.static { cursor: zoom-in; }

.canvas-sentinel { height: 60px; position: relative; }
.canvas-sentinel::after {
  content: ""; position: absolute; left: 50%; top: 20px; width: 26px; height: 26px; margin-left: -13px;
  border: 2.5px solid var(--line-2); border-top-color: #111; border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.canvas-end { text-align: center; padding: 30px 0 10px; font-size: 13px; }

/* workshop strip on dark */
.section.dark .cv-cap { background: linear-gradient(transparent, rgba(0,0,0,.8)); }
.section.dark .canvas-item { background: #1B1B1B; box-shadow: 0 6px 24px rgba(0,0,0,.4); }

/* brand logo white stage (white-bg artwork, multiply blend — never cropped) */
.logo-stage { margin-top: 40px; text-align: center; }
.logo-chip {
  display: inline-block; background: #FFFFFF; border: 1px solid var(--line);
  border-radius: 16px; padding: 30px 44px; box-shadow: var(--sh-sm);
}
.logo-chip img {
  display: block; max-width: min(340px, 70vw); height: auto;
  mix-blend-mode: multiply; /* white ground disappears on the pure-white chip */
}
.logo-stage p { margin-top: 14px; font-size: 12.5px; }
.section.dark .logo-chip img { mix-blend-mode: screen; }
@media (max-width: 720px) {
  .cv-series-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .canvas-toolbar { flex-direction: column; align-items: flex-start; }
}
