﻿:root {
  --rice: #f7f3ea;
  --paper: #fffaf0;
  --ink: #241c17;
  --muted: #776b60;
  --line: #dfd2bf;
  --gold: #b88a4a;
  --clay: #d8bfa6;
  --green: #a9b8a4;
  --blue: #d8e2e5;
  --mono: "IBM Plex Mono", monospace;
  --sans: "Inter", system-ui, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(184, 138, 74, .08) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(var(--rice), #f4eadc);
  font-family: var(--sans);
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .28;
  background:
    repeating-linear-gradient(90deg, transparent 0 21px, rgba(184, 138, 74, .12) 21px 22px),
    repeating-linear-gradient(0deg, transparent 0 37px, rgba(36, 28, 23, .055) 37px 38px);
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rail {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 10;
  width: 96px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(36, 28, 23, .12);
  background: rgba(247, 243, 234, .88);
  backdrop-filter: blur(18px);
}

.rail-brand {
  display: grid;
  gap: 10px;
  place-items: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-block;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background:
    repeating-linear-gradient(45deg, transparent 0 5px, rgba(184, 138, 74, .5) 5px 7px),
    repeating-linear-gradient(-45deg, transparent 0 5px, rgba(36, 28, 23, .18) 5px 7px),
    var(--paper);
}

.rail-nav {
  display: grid;
  gap: 10px;
}

.rail-item {
  position: relative;
  min-height: 64px;
  filter: drop-shadow(0 10px 14px rgba(36, 28, 23, .04));
}

.rail-nav a {
  width: 64px;
  min-height: 64px;
  padding: 8px 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(36, 28, 23, .1);
  background:
    linear-gradient(135deg, rgba(255,255,255,.32), transparent 46%),
    rgba(255, 250, 240, .58);
  color: var(--muted);
  font: 600 10px var(--sans);
  line-height: 1.05;
  text-align: center;
  writing-mode: initial;
  transform: none;
  transition: color .25s ease, transform .25s ease, background .25s ease, border-color .25s ease;
}

.rail-nav a span {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1;
}

.rail-nav a:hover,
.rail-nav a.active {
  color: var(--ink);
  border-color: rgba(184, 138, 74, .45);
  background: rgba(255, 250, 240, .92);
  transform: translateX(3px);
}

.rail-nav a::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(.35);
  transition: transform .25s ease;
}

.rail-nav a:hover::before,
.rail-nav a.active::before {
  transform: scaleX(1);
}

.mega-panel {
  position: fixed;
  left: 96px;
  top: 50%;
  width: 680px;
  height: 360px;
  z-index: 30;
  display: grid;
  grid-template-columns: 300px 380px;
  gap: 0;
  border: 1px solid rgba(36, 28, 23, .16);
  background: var(--paper);
  box-shadow: 0 26px 70px rgba(36, 28, 23, .16);
  opacity: 0;
  pointer-events: none;
  transform: translate(16px, -50%);
  transition: opacity .22s ease, transform .22s ease;
}

.rail-item:hover .mega-panel,
.rail-item:focus-within .mega-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%);
}

.mega-panel::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 0;
  bottom: 0;
  width: 14px;
}

.mega-panel::after {
  content: "WJDDS HOMEWARE / TRADE INDEX";
  position: absolute;
  left: 300px;
  right: 0;
  bottom: 0;
  height: 30px;
  display: flex;
  align-items: center;
  padding-left: 36px;
  border-top: 1px solid rgba(36, 28, 23, .08);
  background: rgba(247, 243, 234, .86);
  color: rgba(36, 28, 23, .44);
  font: 500 10px var(--mono);
  letter-spacing: .1em;
}

.mega-panel figure {
  margin: 0;
  height: 100%;
  overflow: hidden;
  background: var(--paper);
}

.mega-panel img {
  transition: transform .55s ease;
}

.rail-item:hover .mega-panel img {
  transform: scale(1.035);
}

.mega-copy {
  position: relative;
  min-height: 100%;
  padding: 34px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--paper);
  border-left: 1px solid var(--line);
  overflow: hidden;
}

.mega-copy::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(184, 138, 74, .16);
  pointer-events: none;
}

.mega-copy > * {
  position: relative;
  z-index: 1;
}

.mega-eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font: 500 11px var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mega-copy h3 {
  margin: 0 0 14px;
  max-width: 315px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.03;
}

.mega-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.mega-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 18px;
}

.mega-tags span {
  padding: 7px 9px;
  border: 1px solid var(--line);
  background: rgba(247, 243, 234, .78);
  color: var(--muted);
  font: 500 11px var(--mono);
}

.mega-copy a {
  align-self: flex-start;
  color: var(--ink);
  font: 600 12px var(--mono);
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 6px;
}

.rail-contact {
  display: grid;
  gap: 8px;
}

.rail-contact a {
  display: grid;
  place-items: center;
  min-height: 34px;
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10px;
  background: rgba(255, 250, 240, .75);
}

.rail-contact .whatsapp-link,
.whatsapp-button {
  border-color: rgba(184, 138, 74, .72);
  background: rgba(184, 138, 74, .16);
  color: var(--ink);
}

.rail-contact .whatsapp-link:hover,
.whatsapp-button:hover {
  background: var(--gold);
  color: var(--paper);
}

.topline {
  position: fixed;
  inset: 0 0 auto 96px;
  z-index: 9;
  min-height: 64px;
  padding: 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(36, 28, 23, .1);
  background: rgba(247, 243, 234, .76);
  backdrop-filter: blur(18px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.wordmark .brand-mark {
  width: 28px;
  height: 28px;
}

.topline p {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
}

.top-cta,
.button,
.filter-row button {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  padding: 12px 18px;
  font: 600 12px var(--mono);
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.top-cta:hover,
.button:hover,
.filter-row button:hover {
  transform: translateY(-2px);
  background: var(--gold);
  border-color: var(--gold);
}

.button.ghost,
.filter-row button {
  background: transparent;
  color: var(--ink);
}

.button.ghost.dark {
  background: var(--paper);
}

.button.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-main,
.footer {
  margin-left: 96px;
}

.site-main {
  padding-top: 64px;
}

.entity-strip {
  max-width: 1520px;
  margin: 0 auto;
  padding: 16px clamp(32px, 5vw, 88px);
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.5fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 240, .72);
}

.entity-strip span {
  color: var(--muted);
  font: 500 11px/1.45 var(--mono);
  overflow-wrap: anywhere;
}

.entity-strip strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.entity-strip a {
  text-decoration: underline;
  text-decoration-color: rgba(184, 138, 74, .55);
  text-underline-offset: 3px;
}

.ledger-section {
  max-width: 1520px;
  margin: 0 auto;
  padding: 76px clamp(32px, 5vw, 88px);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.ledger-section.is-visible,
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.static-page .ledger-section,
.static-page .reveal {
  opacity: 1;
  transform: none;
}

.hero {
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: minmax(440px, 42%) 1fr;
  gap: clamp(34px, 5vw, 82px);
  align-items: center;
}

.hero-copy {
  opacity: 0;
  transform: translateY(18px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font: 500 12px var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: .96;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(64px, 7vw, 112px);
}

.hero h1 span {
  display: block;
}

.woven-rule {
  position: relative;
  width: min(430px, 100%);
  height: 14px;
  margin: 0 0 22px;
  overflow: hidden;
}

.woven-rule::before,
.woven-rule::after {
  content: "";
  position: absolute;
  inset: 6px 0 auto;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 16px, transparent 16px 24px);
  transform-origin: left;
  animation: drawWeave 1.15s cubic-bezier(.2,.7,.2,1) both;
}

.woven-rule::after {
  inset: auto 0 2px;
  animation-delay: .18s;
  opacity: .65;
}

h2 {
  font-size: clamp(42px, 4.4vw, 74px);
}

h3 {
  font-size: 18px;
}

.hero-lede,
.page-hero p,
.gallery-break p,
.about-grid p,
.policy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin: 34px 0;
}

.market-list {
  margin: 44px 0 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.market-list div {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  border-bottom: 1px solid var(--line);
}

.market-list dt,
.sku,
.product-card dt {
  color: var(--gold);
  font: 500 11px var(--mono);
  text-transform: uppercase;
}

.market-list dd,
.product-card dd {
  margin: 0;
  color: var(--muted);
}

.hero-image {
  position: relative;
  height: min(76vh, 760px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(36, 28, 23, .14);
  background: var(--paper);
}

.hero-image img {
  animation: slowBreath 7s ease-in-out infinite alternate;
}

.hero-image figcaption,
.index-preview figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 12px;
  background: rgba(255, 250, 240, .86);
  border: 1px solid rgba(36, 28, 23, .12);
  font: 500 11px var(--mono);
}

.sku-ticket {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 178px;
  padding: 14px;
  display: grid;
  gap: 7px;
  background: rgba(255, 250, 240, .9);
  border: 1px solid rgba(36, 28, 23, .16);
  box-shadow: 0 18px 35px rgba(36, 28, 23, .12);
  transform: rotate(1.5deg);
}

.sku-ticket span,
.sku-ticket em {
  color: var(--muted);
  font: 500 10px var(--mono);
  font-style: normal;
}

.sku-ticket strong {
  font: 700 13px var(--mono);
}

.evidence-stack {
  position: absolute;
  right: -26px;
  bottom: 72px;
  width: 188px;
  display: grid;
  gap: 10px;
}

.evidence-stack a {
  height: 78px;
  display: grid;
  grid-template-columns: 78px 1fr;
  align-items: center;
  border: 1px solid rgba(36, 28, 23, .14);
  background: rgba(255, 250, 240, .92);
  box-shadow: 0 14px 30px rgba(36, 28, 23, .12);
  transition: transform .25s ease;
}

.evidence-stack a:hover {
  transform: translateX(-6px);
}

.evidence-stack img {
  width: 78px;
  height: 78px;
}

.evidence-stack span {
  padding: 0 10px;
  font: 600 11px var(--mono);
}

.global-register {
  display: grid;
  grid-template-columns: .8fr 1.4fr .8fr;
  gap: 32px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.global-register h2 {
  font-size: clamp(40px, 4vw, 66px);
}

.global-register > p {
  color: var(--muted);
}

.market-map {
  position: relative;
  min-height: 178px;
  display: grid;
  grid-template-columns: 128px 1fr repeat(6, minmax(54px, 1fr));
  gap: 12px;
  align-items: center;
}

.market-map span,
.market-map b {
  padding: 12px 10px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, .75);
  text-align: center;
  font: 600 11px var(--mono);
}

.market-map i {
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 14px, transparent 14px 22px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 520px) 1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading.compact {
  display: block;
}

.index-board {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: stretch;
}

.index-table {
  border-top: 1px solid var(--ink);
}

.index-row {
  min-height: 74px;
  display: grid;
  grid-template-columns: 70px 1fr 1.2fr 92px;
  gap: 22px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: background .25s ease, padding-left .25s ease;
}

.index-row:hover {
  padding-left: 12px;
  background: rgba(255, 250, 240, .64);
}

.index-row span,
.process-line span,
.buyer-grid span {
  color: var(--gold);
  font: 500 12px var(--mono);
}

.index-row em,
.index-row b {
  color: var(--muted);
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
}

.index-preview {
  position: sticky;
  top: 96px;
  height: 620px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(36, 28, 23, .14);
}

.product-rooms {
  padding-top: 46px;
}

.room-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-auto-rows: 310px;
  gap: 18px;
}

.room-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(36, 28, 23, .14);
  background: var(--paper);
}

.room-grid article:first-child {
  grid-row: span 2;
}

.room-grid article img {
  transition: transform .7s ease;
}

.room-grid article:hover img {
  transform: scale(1.045);
}

.room-grid div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  background: rgba(255, 250, 240, .9);
  border: 1px solid rgba(36, 28, 23, .12);
}

.room-grid span,
.sheet-grid span {
  color: var(--gold);
  font: 600 11px var(--mono);
  text-transform: uppercase;
}

.room-grid h3 {
  margin: 8px 0;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
}

.room-grid p {
  margin: 0;
  color: var(--muted);
  font: 500 11px var(--mono);
}

.material-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.material-grid article {
  min-height: 230px;
  padding: 24px;
  background: rgba(255, 250, 240, .68);
}

.material-grid span {
  width: 100%;
  height: 54px;
  display: block;
  margin-bottom: 24px;
  background:
    repeating-linear-gradient(45deg, transparent 0 9px, rgba(255,255,255,.28) 9px 11px),
    var(--swatch);
}

.material-grid p,
.archive-board p,
.buyer-grid p,
.process-line p,
.contact-card p,
.small-note {
  color: var(--muted);
}

.archive-lab {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  align-items: stretch;
}

.archive-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.archive-board article {
  position: relative;
  min-height: 270px;
  padding: 24px;
  overflow: hidden;
  background: rgba(255, 250, 240, .72);
}

.archive-board article::before {
  content: "";
  display: block;
  height: 58px;
  margin: -2px 0 24px;
  background:
    repeating-linear-gradient(45deg, transparent 0 9px, rgba(255,255,255,.38) 9px 11px),
    var(--swatch);
  transform: scaleX(.18);
  transform-origin: left;
  transition: transform .45s ease;
}

.archive-board article:hover::before {
  transform: scaleX(1);
}

.archive-board article.active {
  outline: 2px solid rgba(184, 138, 74, .5);
  outline-offset: -2px;
}

.archive-board article span {
  color: var(--gold);
  font: 500 11px var(--mono);
}

.archive-board article b {
  display: block;
  margin-top: 24px;
  font-size: 13px;
  line-height: 1.45;
}

.archive-preview {
  position: sticky;
  top: 96px;
  height: 100%;
  min-height: 620px;
  margin: 0;
  border: 1px solid rgba(36, 28, 23, .14);
  overflow: hidden;
}

.archive-preview img {
  transition: opacity .18s ease, transform .7s ease;
}

.archive-preview:hover img {
  transform: scale(1.035);
}

.archive-preview figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 12px;
  background: rgba(255, 250, 240, .88);
  border: 1px solid rgba(36, 28, 23, .12);
  font: 500 11px var(--mono);
}

.contact-sheet {
  background: rgba(216, 226, 229, .22);
}

.sheet-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.sheet-grid a {
  display: grid;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, .82);
  transition: transform .25s ease, box-shadow .25s ease;
}

.sheet-grid a:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(36, 28, 23, .08);
}

.sheet-grid img {
  aspect-ratio: 1;
  height: auto;
}

.gallery-break {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 58px;
  align-items: center;
}

.gallery-break figure {
  height: 560px;
  margin: 0;
  border: 1px solid rgba(36, 28, 23, .14);
  overflow: hidden;
}

.text-link {
  position: relative;
  display: inline-flex;
  margin-top: 12px;
  color: var(--ink);
  font: 600 12px var(--mono);
  text-transform: uppercase;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--gold);
  transform-origin: left;
  transition: transform .25s ease;
}

.text-link:hover::after {
  transform: scaleX(.35);
}

.buyer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.buyer-grid article {
  min-height: 230px;
  padding: 24px;
  background: rgba(255, 250, 240, .7);
}

.process-line {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
}

.process-line li {
  position: relative;
  min-height: 250px;
  padding: 28px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-line li::before {
  content: "";
  position: absolute;
  inset: -1px auto auto 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .4s ease;
}

.process-line li:hover::before {
  width: 100%;
}

.inquiry-desk {
  display: grid;
  grid-template-columns: .95fr 1fr;
  gap: 58px;
  align-items: center;
  background: rgba(169, 184, 164, .18);
}

.inquiry-desk figure {
  position: relative;
  height: 540px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(36, 28, 23, .14);
}

.desk-slips {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.desk-slips span {
  padding: 9px 11px;
  background: rgba(255, 250, 240, .9);
  border: 1px solid rgba(36, 28, 23, .12);
  font: 600 11px var(--mono);
}

.company-ledger {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.company-ledger dl {
  margin: 0;
  border-top: 1px solid var(--ink);
}

.company-ledger dl div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.company-ledger dt {
  color: var(--gold);
  font: 600 11px var(--mono);
  text-transform: uppercase;
}

.company-ledger dd {
  margin: 0;
  color: var(--muted);
}

.product-dossier,
.category-dossier {
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 54px;
  align-items: center;
}

.dossier-image,
.category-dossier figure {
  position: relative;
  height: min(72vh, 720px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(36, 28, 23, .14);
  background: var(--paper);
}

.dossier-image::after {
  content: "TEXTURE VIEW";
  position: absolute;
  inset: 22px 22px auto auto;
  padding: 9px 11px;
  background: rgba(255, 250, 240, .88);
  border: 1px solid rgba(36, 28, 23, .12);
  font: 600 10px var(--mono);
  letter-spacing: .12em;
}

.dossier-image img {
  transition: transform .75s ease;
}

.dossier-image:hover img {
  transform: scale(1.08);
}

.dossier-image figcaption,
.category-dossier figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 12px;
  background: rgba(255, 250, 240, .88);
  border: 1px solid rgba(36, 28, 23, .12);
  font: 500 11px var(--mono);
}

.dossier-sheet {
  padding: 36px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, .78);
}

.dossier-sheet h1,
.category-dossier h1 {
  font-size: clamp(54px, 6vw, 90px);
}

.dossier-sheet dl,
.mini-ledger {
  margin: 28px 0 0;
  border-top: 1px solid var(--ink);
}

.dossier-sheet dl div,
.mini-ledger div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.dossier-sheet dt,
.mini-ledger dt {
  color: var(--gold);
  font: 600 11px var(--mono);
  text-transform: uppercase;
}

.dossier-sheet dd,
.mini-ledger dd {
  margin: 0;
  color: var(--muted);
}

.spec-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.dossier-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.dossier-actions .button {
  flex: 1 1 180px;
}

.category-dossier > div > p {
  color: var(--muted);
  max-width: 640px;
  font-size: 17px;
}

.related-sheet {
  grid-template-columns: repeat(3, 1fr);
}

.footer {
  padding: 44px clamp(32px, 5vw, 88px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  border-top: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(36, 28, 23, .06), rgba(216, 226, 229, .22));
}

.footer p {
  margin: 8px 0 0;
  color: var(--muted);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font: 500 12px var(--mono);
}

.footer::after {
  content: "WJDDS.COM / B2B PRODUCT CATALOG / EMAIL AND WHATSAPP INQUIRY";
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: rgba(36, 28, 23, .46);
  font: 500 10px var(--mono);
  letter-spacing: .12em;
}

.page-hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}

.page-hero h1 {
  font-size: clamp(58px, 6vw, 96px);
}

.page-hero figure {
  height: 420px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(36, 28, 23, .14);
}

.catalog-tools {
  padding-top: 20px;
  padding-bottom: 20px;
}

.tool-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.view-switch {
  display: flex;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, .64);
}

.view-switch button {
  min-width: 118px;
  padding: 12px 14px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font: 600 11px var(--mono);
  cursor: pointer;
}

.view-switch button:last-child {
  border-right: 0;
}

.view-switch button.active {
  background: var(--ink);
  color: var(--paper);
}

.filter-row button.active {
  background: var(--ink);
  color: var(--paper);
}

.view-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.view-note span {
  margin-left: 24px;
}

.product-ledger {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding-top: 28px;
}

.product-ledger.ledger-view {
  display: block;
}

.product-ledger.ledger-view .product-card {
  display: grid;
  grid-template-columns: 132px 1fr;
  margin-bottom: 10px;
}

.product-ledger.ledger-view .product-image {
  height: 132px;
}

.product-ledger.ledger-view .product-copy {
  display: grid;
  grid-template-columns: 1.25fr 1.6fr auto;
  gap: 24px;
  align-items: center;
  padding: 18px 22px;
}

.product-ledger.ledger-view .product-copy h2 {
  min-height: 0;
  margin: 0;
  font-size: 26px;
}

.product-ledger.ledger-view .product-copy dl {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.product-ledger.ledger-view .product-copy div {
  grid-template-columns: 82px 1fr;
}

.product-card {
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, .72);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(184, 138, 74, .7);
  box-shadow: 0 22px 48px rgba(36, 28, 23, .08);
}

.product-image {
  position: relative;
  height: 330px;
  display: block;
  overflow: hidden;
  background: var(--paper);
}

.product-image img {
  transition: transform .55s ease;
}

.product-card:hover img {
  transform: scale(1.035);
}

.product-image span {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 8px 10px;
  background: rgba(255, 250, 240, .86);
  border: 1px solid rgba(36, 28, 23, .12);
  font: 500 11px var(--mono);
}

.sku-passport {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 178px;
  padding: 12px;
  display: grid;
  gap: 6px;
  background: rgba(255, 250, 240, .93);
  border: 1px solid rgba(36, 28, 23, .14);
  box-shadow: 0 18px 34px rgba(36, 28, 23, .12);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
}

.product-card:hover .sku-passport {
  opacity: 1;
  transform: translateY(0);
}

.sku-passport b {
  font: 700 11px var(--mono);
  text-transform: uppercase;
}

.sku-passport em,
.sku-passport small {
  color: var(--muted);
  font: 500 10px var(--mono);
  font-style: normal;
}

.product-copy {
  padding: 22px;
}

.product-copy h2 {
  min-height: 80px;
  margin: 8px 0 18px;
  font-size: 32px;
}

.product-copy dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.product-copy div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px;
}

.contact-board,
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.contact-card,
.about-grid article {
  padding: 34px;
  background: rgba(255, 250, 240, .72);
}

.contact-card h2 {
  font-size: 42px;
}

.inquiry-template {
  padding-top: 28px;
}

.template-box {
  max-width: 780px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, .8);
  color: var(--muted);
  font-family: var(--mono);
}

.procurement-notes {
  padding-top: 24px;
}

.note-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.note-grid article {
  min-height: 160px;
  padding: 24px;
  background: rgba(255, 250, 240, .76);
}

.note-grid span {
  color: var(--gold);
  font: 600 11px var(--mono);
}

.note-grid p {
  margin: 18px 0 0;
  color: var(--muted);
}

.guide-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.guide-card,
.faq-card {
  padding: 34px;
  background: rgba(255, 250, 240, .78);
}

.guide-card h2,
.faq-card h2 {
  margin-top: 0;
  font-size: 34px;
}

.guide-card h3 {
  margin: 28px 0 8px;
  font-size: 23px;
}

.guide-card p,
.guide-card li,
.faq-card p {
  color: var(--muted);
}

.guide-card ul {
  padding-left: 20px;
}

.guide-cta {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.guide-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  font: 600 11px var(--mono);
  text-transform: uppercase;
}

.guide-links a {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.company-name-cn {
  font-family: var(--sans);
  overflow-wrap: anywhere;
}

.policy {
  max-width: 920px;
  padding-top: 140px;
}

.policy-ledger {
  max-width: 1180px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
}

.policy-ledger aside {
  position: sticky;
  top: 112px;
  align-self: start;
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, .72);
}

.policy-ledger aside span {
  margin-bottom: 12px;
  color: var(--gold);
  font: 600 11px var(--mono);
}

.policy-ledger aside a {
  font: 600 12px var(--mono);
  color: var(--muted);
}

.policy h1 {
  font-size: clamp(58px, 6vw, 88px);
}

.policy h2 {
  margin-top: 38px;
  font-size: 34px;
}

.policy-summary {
  margin: 30px 0 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.policy-summary article {
  min-width: 0;
  padding: 20px;
  background: rgba(255, 250, 240, .8);
}

.policy-summary span,
.policy-summary strong {
  display: block;
}

.policy-summary span {
  margin-bottom: 9px;
  color: var(--gold);
  font: 600 10px var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.policy-summary strong {
  font-size: 13px;
  overflow-wrap: anywhere;
}

.mobile-dock {
  display: none;
}

@keyframes slowBreath {
  from { transform: scale(1); }
  to { transform: scale(1.035); }
}

@keyframes drawWeave {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (max-width: 1100px) {
  .rail {
    display: none;
  }

  .topline,
  .site-main,
  .footer {
    margin-left: 0;
    inset-left: 0;
  }

  .topline {
    left: 0;
  }

  .mega-panel {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-image,
  .index-preview,
  .archive-preview,
  .dossier-image,
  .category-dossier figure {
    height: 560px;
    min-height: 0;
    position: relative;
    top: auto;
  }

  .global-register {
    gap: 22px;
  }

  .market-map {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .market-map i {
    height: 42px;
    width: 1px;
    justify-self: center;
    background: repeating-linear-gradient(0deg, var(--gold) 0 12px, transparent 12px 20px);
  }

  .room-grid {
    grid-template-columns: 1fr 1fr;
  }

  .room-grid article:first-child {
    grid-row: auto;
  }

  .product-ledger.ledger-view .product-card,
  .product-ledger.ledger-view .product-copy {
    grid-template-columns: 1fr;
  }

  .product-ledger.ledger-view .product-image {
    height: 300px;
  }

  .hero,
  .index-board,
  .gallery-break,
  .global-register,
  .archive-lab,
  .inquiry-desk,
  .company-ledger,
  .product-dossier,
  .category-dossier,
  .policy-ledger,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .material-grid,
  .archive-board,
  .buyer-grid,
  .process-line,
  .product-ledger,
  .contact-board,
  .about-grid,
  .note-grid,
  .guide-grid,
  .faq-grid,
  .policy-summary {
    grid-template-columns: repeat(2, 1fr);
  }

  .entity-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .sheet-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 76px;
  }

  body::before {
    opacity: .18;
    mask-image: none;
  }

  .mobile-dock {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(36, 28, 23, .14);
    background: var(--line);
    box-shadow: 0 18px 50px rgba(36, 28, 23, .18);
  }

  .mobile-dock a {
    min-height: 52px;
    display: grid;
    place-items: center;
    padding: 0 4px;
    background: rgba(255, 250, 240, .96);
    color: var(--ink);
    font: 700 11px var(--mono);
    white-space: nowrap;
    text-transform: uppercase;
  }

  .mobile-dock .whatsapp-link {
    background: var(--gold);
    color: var(--paper);
  }

  .topline {
    min-height: 58px;
    padding: 0 14px;
  }

  .wordmark {
    gap: 8px;
    font-size: 13px;
  }

  .wordmark .brand-mark {
    width: 24px;
    height: 24px;
  }

  .topline p {
    display: none;
  }

  .top-cta {
    padding: 10px 11px;
    font-size: 10px;
  }

  .site-main {
    padding-top: 58px;
  }

  .entity-strip {
    padding: 14px 16px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ledger-section {
    padding: 46px 16px;
  }

  h1 {
    font-size: 46px;
    line-height: .98;
  }

  h2,
  .page-hero h1,
  .policy h1,
  .dossier-sheet h1,
  .category-dossier h1 {
    font-size: 40px;
    line-height: 1;
  }

  .hero-lede,
  .page-hero p,
  .gallery-break p,
  .about-grid p,
  .policy p,
  .category-dossier > div > p {
    font-size: 15px;
  }

  .hero-actions,
  .dossier-actions {
    flex-direction: column;
  }

  .button,
  .top-cta,
  .filter-row button,
  .view-switch button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .market-list div,
  .company-ledger dl div,
  .dossier-sheet dl div,
  .mini-ledger div,
  .product-copy div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hero-image,
  .page-hero figure,
  .gallery-break figure,
  .inquiry-desk figure,
  .dossier-image,
  .category-dossier figure,
  .archive-preview {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .evidence-stack {
    position: static;
    width: 100%;
    margin-top: 12px;
    padding: 10px;
    background: rgba(255, 250, 240, .72);
  }

  .evidence-stack a {
    width: 100%;
    transform: none;
  }

  .sku-ticket {
    right: 12px;
    top: 12px;
    width: 150px;
  }

  .global-register {
    border-top: 0;
  }

  .market-map span,
  .market-map b {
    padding: 10px;
  }

  .section-heading {
    display: block;
  }

  .index-row {
    min-height: 0;
    padding: 14px 0;
    gap: 8px;
  }

  .index-preview {
    height: auto;
    aspect-ratio: 4 / 5;
    position: relative;
    top: auto;
  }

  .room-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 360px;
  }

  .room-grid div {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px;
  }

  .room-grid h3 {
    font-size: 24px;
  }

  .archive-lab {
    gap: 14px;
  }

  .archive-board article {
    min-height: 210px;
  }

  .sheet-grid a {
    grid-template-columns: 86px 1fr;
    align-items: center;
  }

  .sheet-grid img {
    width: 86px;
    height: 86px;
  }

  .buyer-grid article,
  .process-line li,
  .note-grid article {
    min-height: auto;
  }

  .tool-bar {
    display: grid;
    gap: 16px;
  }

  .view-switch {
    width: 100%;
  }

  .view-switch button {
    min-width: 0;
  }

  .view-note span {
    display: block;
    margin: 8px 0 0;
  }

  .product-image,
  .product-ledger.ledger-view .product-image {
    height: auto;
    aspect-ratio: 1;
  }

  .product-copy h2 {
    min-height: 0;
    font-size: 28px;
  }

  .sku-passport {
    width: calc(100% - 28px);
  }

  .dossier-sheet {
    padding: 22px;
  }

  .contact-card,
  .about-grid article {
    padding: 22px;
  }

  .contact-card h2 {
    font-size: 30px;
    word-break: break-word;
  }

  .template-box {
    padding: 18px;
    overflow-wrap: anywhere;
  }

  .policy {
    padding-top: 82px;
  }

  .policy-ledger aside {
    position: relative;
    top: auto;
  }

  .footer {
    margin-left: 0;
    grid-template-columns: 1fr;
    padding: 30px 16px 94px;
  }

  .material-grid,
  .archive-board,
  .buyer-grid,
  .process-line,
  .product-ledger,
  .contact-board,
  .about-grid,
  .note-grid,
  .guide-grid,
  .faq-grid,
  .policy-summary,
  .sheet-grid {
    grid-template-columns: 1fr;
  }

  .index-row {
    grid-template-columns: 48px 1fr;
  }

  .index-row em,
  .index-row b {
    grid-column: 2;
  }
}
