/* ISSA MATCHA! wholesale site — v2 "washi & sumi" theme */
:root {
  --bg: #f3f0e8;          /* washi */
  --bg-2: #ece8de;        /* deeper washi */
  --paper: #faf8f3;       /* white paper */
  --ink: #1b1b18;         /* sumi */
  --ink-2: #26261f;
  --muted: #6e6b62;
  --muted-2: #8a877c;
  --line: #ddd8cc;        /* hairline */
  --line-2: #cfc9ba;
  --line-card: #e3ded2;
  --green: #2f5d3a;       /* deep matcha */
  --green-d: #23482c;
  --green-soft: #e4eadf;
  --green-soft-2: #eaefe4;
  --gold: #a8894d;
  --shu: #b8432f;
  --dark: #172319;        /* pine */
  --dark-2: #1f2e22;
  --dark-muted: #a9b5a3;
  --dark-eyebrow: #c9b27a;
  --font: 'Manrope', 'Helvetica Neue', Arial, sans-serif;
  --font-d: 'Shippori Mincho B1', 'Shippori Mincho', 'Noto Serif JP', Georgia, serif;
  --font-m: 'IBM Plex Mono', ui-monospace, Menlo, monospace;
  --wrap: 1280px;
  --pad: 56px;
  --radius: 0px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--font); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; position: relative; }
body::before { content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: .045; mix-blend-mode: multiply; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>"); }
body > * { position: relative; z-index: 1; }
img, video, svg { max-width: 100%; }
img { filter: saturate(.94); }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--green); }
p { margin: 0; }
h1, h2, h3, h4 { margin: 0; }
button { font: inherit; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }
.skip { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: 8px 12px; z-index: 100; }
.skip:focus { left: 8px; top: 8px; }

/* type */
.d { font-family: var(--font-d); font-weight: 500; letter-spacing: 0; margin: 0; line-height: 1.12; text-wrap: balance; }
.mono { font-family: var(--font-m); font-size: 11.5px; letter-spacing: 0.06em; }
.eyebrow { font-family: var(--font-m); font-weight: 500; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--green); display: inline-flex; align-items: center; gap: 12px; }
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; opacity: .7; }
.eyebrow.grey { color: var(--muted-2); }
.eyebrow.bare::before { display: none; }
.muted { color: var(--muted); }
.lead { font-size: 18px; line-height: 1.7; color: var(--muted); max-width: 540px; }
.h-hero { font-size: clamp(40px, 5.4vw, 70px); line-height: 1.06; letter-spacing: -.01em; }
.h-page { font-size: clamp(36px, 4.8vw, 56px); line-height: 1.08; }
.h-xl { font-size: clamp(34px, 4.4vw, 60px); line-height: 1.08; }
.h-sec { font-size: clamp(30px, 3.4vw, 46px); }
.h-sec-s { font-size: clamp(28px, 3vw, 42px); }
.h-md { font-size: clamp(26px, 2.8vw, 38px); }
.h-sm { font-size: clamp(24px, 2.4vw, 34px); }
.h-xs { font-size: clamp(22px, 2vw, 28px); }
.h-card { font-size: 24px; }
.h-card .en { font-weight: 400; color: var(--ink); margin-left: 8px; }
.rule { border-top: 1px solid var(--line); }
.center { text-align: center; }
em, .ital { font-style: italic; font-family: var(--font-d); }

/* layout */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }
.wrap.narrow { max-width: 860px; }
.sec { padding-top: 128px; padding-bottom: 128px; }
.sec.tight { padding-top: 80px; padding-bottom: 80px; }
.sec.mid { padding-top: 104px; padding-bottom: 104px; }
.paper { background: var(--paper); }
.paper.line-t { border-top: 1px solid var(--line); }
.washi { background: var(--bg-2); }
.stack { display: flex; flex-direction: column; gap: 18px; }
.stack.s { gap: 12px; }
.stack.xs { gap: 8px; }
.stack.l { gap: 24px; }
.row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.between { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.grid2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; }
.grid3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.grid2.g16 { gap: 16px; } .grid3.g12 { gap: 12px; } .grid4.g12 { gap: 12px; } .grid2.g12 { gap: 12px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.sa { grid-template-columns: 1.05fr 1fr; }
.split.sb { grid-template-columns: 1fr 1.4fr; }
.split.sc { grid-template-columns: 1.3fr 1fr; }
.split.sd { grid-template-columns: 1fr 1.2fr; }
.split.se { grid-template-columns: 1.2fr 1fr; }
.split.sf { grid-template-columns: 1.15fr 1fr; }
.split.top { align-items: start; }
.page-head { padding-top: 56px; padding-bottom: 40px; display: flex; flex-direction: column; gap: 14px; }
.page-head .lead { max-width: 640px; }
.crumb { font-family: var(--font-m); font-size: 11px; letter-spacing: 0.08em; color: var(--muted-2); text-transform: uppercase; }
.crumb a:hover { color: var(--green); }
.index { font-family: var(--font-m); font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted-2); writing-mode: vertical-rl; transform: rotate(180deg); align-self: start; }
.sec-head { display: grid; grid-template-columns: 40px 1fr; gap: 24px; align-items: start; }

/* buttons, badges */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 28px; font-family: var(--font-m); font-weight: 500; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; border: 1px solid var(--ink); background: transparent; color: var(--ink); border-radius: var(--radius); cursor: pointer; text-align: center; transition: background .18s, color .18s, border-color .18s; }
.btn:hover { background: var(--ink); color: var(--paper); }
.btn.primary { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.btn.primary:hover { background: var(--green); border-color: var(--green); }
.btn.dark { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.btn.dark:hover { background: var(--green); border-color: var(--green); }
.btn.light { border-color: rgba(250,248,243,0.55); color: var(--paper); }
.btn.light:hover { background: rgba(250,248,243,0.1); color: #fff; }
.btn.light.primary { background: var(--paper); border-color: var(--paper); color: var(--dark); }
.btn.light.primary:hover { background: var(--green-soft); color: var(--dark); }
.btn.sm { min-height: 44px; padding: 0 20px; font-size: 11px; }
.btn.xs { min-height: 38px; padding: 0 14px; font-size: 11px; }
.btn.wide { width: 100%; }
.btn[disabled], .btn.disabled { opacity: .45; pointer-events: none; }
.link-m { font-family: var(--font-m); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); border-bottom: 1px solid transparent; }
.link-m:hover { border-bottom-color: var(--green); }
.badge { display: inline-flex; align-items: center; height: 24px; padding: 0 10px; font-family: var(--font-m); font-weight: 500; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; border: 1px solid var(--line-2); border-radius: var(--radius); white-space: nowrap; color: var(--ink); }
.badge.green { border-color: var(--green); color: var(--green); }
.badge.soft { border-color: transparent; background: var(--green-soft); color: var(--green-d); }
.badge.tall { height: 34px; justify-content: center; }
a.badge:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* cards */
.card { background: var(--paper); border: 1px solid var(--line-card); border-radius: var(--radius); display: flex; flex-direction: column; overflow: hidden; }
.card.pad { padding: 24px; gap: 12px; }
.card.pad-l { padding: 32px; gap: 16px; }
.card.soft { background: var(--green-soft-2); border-color: var(--green-soft-2); }
.card.soft2 { background: var(--green-soft); border-color: var(--green-soft); }
.card.plain { background: transparent; border-color: var(--line); }
.card-body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 8px; }
.kv { display: grid; grid-template-columns: 180px 1fr; gap: 0; font-size: 15px; }
.kv > div { padding: 13px 0; border-top: 1px solid var(--line); }
.kv > div:nth-child(odd) { color: var(--muted); font-family: var(--font-m); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; padding-top: 16px; }
.kv.s { font-size: 14px; } .kv.s > div { padding: 11px 0; }
.kv.c140 { grid-template-columns: 140px 1fr; }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 16px; padding: 24px 0; border-top: 1px solid var(--line); }
.step.last { border-bottom: 1px solid var(--line); }
.step .n { font-family: var(--font-d); font-weight: 500; font-size: 26px; color: var(--gold); line-height: 1; }
.step strong { display: block; font-family: var(--font-d); font-weight: 500; font-size: 19px; margin-bottom: 4px; }
table { border-collapse: collapse; width: 100%; font-size: 14px; }
th { text-align: left; font-family: var(--font-m); font-weight: 500; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); padding: 10px 12px 10px 0; border-bottom: 1px solid var(--ink); }
td { padding: 13px 12px 13px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.table-scroll { overflow-x: auto; }
.dark-sec { background: var(--dark); color: var(--paper); }
.dark-sec .muted { color: var(--dark-muted); }
.dark-sec .eyebrow { color: var(--dark-eyebrow); }
.dark-sec a:hover { color: #fff; }
.dark-sec .card { background: var(--dark-2); border-color: rgba(250,248,243,.1); }
.stat .n { font-family: var(--font-d); font-weight: 500; font-size: 32px; line-height: 1.05; white-space: nowrap; }
.stat .l { font-family: var(--font-m); font-size: 10.5px; letter-spacing: 0.16em; color: var(--muted); text-transform: uppercase; margin-top: 4px; }

/* placeholders & media */
.ph { position: relative; overflow: hidden; background: var(--bg-2); color: var(--muted-2); display: flex; align-items: flex-end; justify-content: flex-start; padding: 14px; font-family: var(--font-m); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; border-radius: var(--radius); }
.ph::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.55), transparent 60%); pointer-events: none; }
.ph::after { content: ""; position: absolute; left: 12%; right: 12%; top: 50%; height: 1px; background: rgba(27,27,24,.12); }
.ph.dark { background: linear-gradient(160deg, #1f2e22, #121a14); color: #8fa38f; }
.ph.dark::before { background: radial-gradient(ellipse at 70% 10%, rgba(120,160,120,0.18), transparent 60%); }
.ph.dark::after { display: none; }
.ph.field { background: linear-gradient(160deg, #6e8f57, #3f6238 60%, #2f4a2b); color: rgba(255,255,255,0.85); }
.ph.field::before { background: repeating-linear-gradient(105deg, rgba(255,255,255,0.05) 0 18px, transparent 18px 44px); }
.ph.field::after { display: none; }
.ph.white { background: var(--paper); border: 1px solid var(--line-card); }
.ph.white::after { display: none; }
.ph > span.cap { position: absolute; left: 14px; bottom: 14px; right: 14px; z-index: 1; }
.ph .cap.hide { display: none; }
.media { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--bg-2); }
.media img, .media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.media .tag { position: absolute; left: 16px; bottom: 16px; background: rgba(23,35,25,0.78); color: var(--paper); padding: 8px 12px; font-family: var(--font-m); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; }
.media.frame { padding: 10px; background: var(--paper); border: 1px solid var(--line-card); }
.media.frame img { height: calc(100% - 0px); }

/* chawan: top-down tea bowl mark for product cards */
.chawan { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 58%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 42% 30%, #efe9dc 0%, #d8d0bf 45%, #b8ae9a 78%, #8f8674 100%); box-shadow: 0 30px 50px rgba(0,0,0,.42), 0 2px 0 rgba(255,255,255,.08) inset; }
.chawan::before { content: ""; position: absolute; inset: 21%; border-radius: 50%; background: radial-gradient(circle at 50% 55%, color-mix(in srgb, var(--m1, #5f9a4c) 88%, #fff) 0%, var(--m1, #5f9a4c) 42%, var(--m2, #2f5d3a) 100%); box-shadow: inset 0 14px 22px rgba(0,0,0,.35), inset 0 -3px 8px rgba(255,255,255,.08); }
.chawan::after { content: ""; position: absolute; inset: 21%; border-radius: 50%; background: repeating-radial-gradient(circle at 50% 55%, rgba(255,255,255,.05) 0 2px, transparent 2px 7px); opacity: .5; }
.chawan.s { width: 36px; height: 36px; position: static; transform: none; box-shadow: 0 2px 6px rgba(0,0,0,.25); flex: none; }
.chawan.s::before { inset: 20%; box-shadow: inset 0 3px 6px rgba(0,0,0,.3); }
.chawan.s::after { display: none; }
.swatch { display: inline-block; width: 44px; height: 44px; border-radius: 50%; box-shadow: inset 0 -6px 12px rgba(0,0,0,0.22), inset 0 6px 10px rgba(255,255,255,0.3), 0 2px 6px rgba(0,0,0,0.25); flex: none; border: 2px solid rgba(255,255,255,0.9); }
.swatch.s { width: 32px; height: 32px; } .swatch.xs { width: 40px; height: 40px; }
.ph .corner { position: absolute; right: 12px; bottom: 12px; z-index: 1; }
.smear { width: 150px; height: 44px; border-radius: 40px 60px 50px 30px / 30px 40px 60px 50px; opacity: .92; filter: blur(.3px); }
.bar { height: 6px; background: var(--line-card); } .bar > i { display: block; height: 100%; background: var(--green); }
.taste { display: grid; grid-template-columns: 90px 1fr; gap: 10px 12px; align-items: center; font-size: 14px; }
.avatar { display: flex; align-items: center; justify-content: center; font-family: var(--font-d); font-weight: 500; font-size: 40px; color: rgba(27,27,24,.3); letter-spacing: .04em; }
.enso { position: absolute; pointer-events: none; opacity: .18; }

/* header */
.site-header { background: rgba(250,248,243,.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 40; }
.site-header .wrap { display: flex; justify-content: space-between; align-items: center; height: 80px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { width: 44px; height: auto; filter: none; }
.brand img.logo-h { width: auto; height: 46px; }
.site-footer .brand img.logo-h { height: 40px; }
.hero-mark { width: 104px; height: auto; display: block; margin-bottom: 4px; }
.brand .d { font-size: 21px; letter-spacing: 0.04em; white-space: nowrap; font-weight: 600; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { font-family: var(--font-m); font-weight: 500; font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; white-space: nowrap; color: var(--ink-2); border-bottom: 1px solid transparent; padding: 6px 0; }
.nav a:hover { color: var(--green); }
.nav a.on { color: var(--green); border-bottom-color: var(--green); }
.hdr-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.hdr-cta .btn { white-space: nowrap; }
.hdr-cta .lang { white-space: nowrap; }
.hdr-cta .lang { color: var(--muted-2); }
.burger { display: none; width: 44px; height: 44px; border: 0; background: transparent; align-items: center; justify-content: flex-end; cursor: pointer; padding: 0; margin-right: -6px; -webkit-tap-highlight-color: transparent; }
.burger span { display: block; width: 24px; height: 2px; background: transparent; position: relative; transition: transform .25s; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, top .25s; }
.burger span::before { top: -5px; } .burger span::after { top: 5px; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }
.mobile-nav { display: none; background: var(--paper); border-bottom: 1px solid var(--line); }
.mobile-nav.open { display: block; }
.mobile-nav .wrap { display: flex; flex-direction: column; align-items: stretch; height: auto; padding-top: 12px; padding-bottom: 20px; gap: 2px; }
.mobile-nav a { font-family: var(--font-d); font-weight: 500; font-size: 22px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.mobile-nav .btn { margin-top: 16px; font-family: var(--font-m); font-size: 12px; }

/* hero */
.hero { padding-top: 64px; padding-bottom: 72px; position: relative; overflow: hidden; }
.hero .split { gap: 56px; }
.hero .media { height: 620px; }
.hero .media.offset { margin-right: calc(-1 * var(--pad)); }
.stats { display: grid; grid-template-columns: repeat(4, auto); justify-content: start; gap: 20px 40px; margin-top: 8px; }
.trust { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; padding-top: 18px; padding-bottom: 18px; align-items: center; }
.hero-band { position: relative; height: clamp(360px, 52vw, 640px); }
.hero-band img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-band .panel { position: absolute; left: var(--pad); bottom: -1px; max-width: 640px; background: var(--paper); padding: 40px 44px 0 0; }

/* product card */
.pcard .ph, .pcard .media.pimg { height: 230px; }
.pthumb { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex: none; box-shadow: 0 1px 4px rgba(0,0,0,.18); }
.pcard .title { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.pcard .sub { font-size: 14px; color: var(--ink); }
.pcard .price-row { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; padding-top: 14px; border-top: 1px solid var(--line); }
.pcard .price-row .p { font-family: var(--font-d); font-weight: 500; font-size: 22px; }
.pcard a.cover { display: block; }
.pcard a.cover:hover { color: inherit; }
.pcard h3 a:hover { color: var(--green); }
.pcard:hover { border-color: var(--line-2); }

/* chips / filters */
.chip { display: inline-flex; align-items: center; height: 36px; padding: 0 14px; border: 1px solid var(--line-2); background: var(--paper); color: var(--ink); font-family: var(--font-m); font-weight: 500; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; user-select: none; white-space: nowrap; }
.chip:hover { border-color: var(--ink); }
.chip.on { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.filters { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); position: sticky; top: 80px; z-index: 30; }
.filters .wrap { padding-top: 18px; padding-bottom: 18px; display: grid; grid-template-columns: 1fr 1fr 1fr 1fr auto; gap: 24px; align-items: start; }
.filters .grp { display: flex; flex-direction: column; gap: 10px; }
.filters .grp .chips { display: flex; gap: 8px; flex-wrap: wrap; }
.filters .end { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.catalog-body { display: grid; grid-template-columns: 1fr 240px; gap: 40px; padding-top: 40px; padding-bottom: 128px; align-items: start; }
.catalog-side { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 170px; }
.catalog-side .card { padding: 20px; gap: 8px; }
.catalog-side .links { display: flex; flex-direction: column; gap: 6px; font-size: 14px; }
.compare-bar { position: fixed; left: 0; right: 0; bottom: 0; background: var(--dark); color: var(--paper); z-index: 50; transform: translateY(100%); transition: transform .2s; }
.compare-bar.on { transform: none; visibility: visible; }
.compare-bar:not(.on) { visibility: hidden; }
.compare-bar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 12px; padding-bottom: 12px; flex-wrap: wrap; }
.cmp-check { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-m); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); cursor: pointer; }
.cmp-check input { accent-color: var(--green); }
dialog.cmp { border: 0; padding: 0; max-width: 960px; width: calc(100% - 32px); background: var(--paper); }
dialog.cmp::backdrop { background: rgba(23,35,25,.7); }
dialog.cmp .in { padding: 32px; }
dialog.cmp table td:first-child { color: var(--muted); width: 160px; }

/* forms */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-family: var(--font-m); font-weight: 500; font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea { height: 50px; border: 1px solid var(--line-2); background: var(--paper); padding: 0 14px; color: var(--ink); font-size: 15px; font-family: var(--font); width: 100%; border-radius: 0; }
.field textarea { height: 140px; padding: 12px 14px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); outline: none; box-shadow: 0 0 0 3px rgba(47,93,58,.12); }
.field input::placeholder, .field textarea::placeholder { color: #a39f93; }
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%231b1b18' stroke-width='1.2'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.hp { position: absolute; left: -9999px; }
.pick { display: flex; flex-direction: row; align-items: center; gap: 12px; padding: 14px 16px; cursor: pointer; }
.pick input { width: 18px; height: 18px; accent-color: var(--green); flex: none; margin: 0; }
.pick .t { flex: 1; min-width: 0; }
.pick .t strong { font-family: var(--font-d); font-weight: 500; font-size: 18px; }
.pick.off { opacity: .45; }
.sum { padding: 18px; gap: 6px; }
.sum .r { display: flex; justify-content: space-between; gap: 12px; }
.sum .r.total { font-weight: 500; border-top: 1px solid var(--line-2); padding-top: 8px; }
.form-note { font-family: var(--font-m); font-size: 11px; letter-spacing: .06em; color: var(--muted); line-height: 1.7; }
.alert { padding: 14px 16px; border: 1px solid var(--green); background: var(--green-soft); font-size: 14px; }

/* faq */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: grid; grid-template-columns: 1fr 24px; gap: 16px; padding: 20px 0; font-family: var(--font-d); font-weight: 500; font-size: 20px; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-m); color: var(--gold); text-align: right; }
.faq details[open] summary::after { content: "–"; }
.faq .a { padding: 0 40px 22px 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.faq .a a { color: var(--green); text-decoration: underline; }
.faq-layout { display: grid; grid-template-columns: 220px 1fr; gap: 48px; padding-bottom: 128px; align-items: start; }
.faq-nav { display: flex; flex-direction: column; gap: 12px; position: sticky; top: 104px; font-family: var(--font-m); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.faq-nav a.on { color: var(--green); }

/* article */
.article-head { padding-top: 56px; display: flex; flex-direction: column; gap: 16px; }
.article-body { display: grid; grid-template-columns: 1fr 220px; gap: 48px; padding-bottom: 80px; }
.prose { display: flex; flex-direction: column; gap: 22px; font-size: 18px; line-height: 1.8; }
.prose h2 { font-size: 30px; margin-top: 8px; }
.prose blockquote { margin: 0; padding: 20px 28px; border-left: 2px solid var(--gold); font-family: var(--font-d); font-weight: 500; font-size: 26px; line-height: 1.35; font-style: italic; }
.article-side { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 104px; align-self: start; }
.article-side .links { display: flex; flex-direction: column; gap: 6px; font-size: 14px; margin-top: 8px; }
.jcard strong { font-size: 18px; line-height: 1.35; font-family: var(--font-d); font-weight: 500; }
.jcard.big strong { font-size: 24px; }
.soon { position: absolute; left: 14px; top: 14px; z-index: 2; }

/* reels (Instagram) */
.reels { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.reels.two { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 760px; }
.reels.five { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.reel { display: flex; flex-direction: column; gap: 10px; }
.reel .frame { position: relative; background: var(--paper); border: 1px solid var(--line-card); overflow: hidden; aspect-ratio: 9 / 17.6; }
.reel iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; opacity: 0; transition: opacity .4s ease; }
.reel .frame.ready iframe { opacity: 1; }
.reel .frame.loading .facade .play { animation: pulse 1.2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: .45 } 50% { opacity: 1 } }
.reel .facade { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(160deg, #1f2e22, #121a14); color: var(--paper); cursor: pointer; }
.reel .facade .play { width: 64px; height: 64px; border-radius: 50%; border: 1px solid rgba(250,248,243,.7); display: flex; align-items: center; justify-content: center; }
.reel .facade .play::after { content: ""; border-left: 14px solid var(--paper); border-top: 9px solid transparent; border-bottom: 9px solid transparent; margin-left: 4px; }
.reel .facade .lbl { position: absolute; left: 14px; bottom: 14px; right: 14px; font-family: var(--font-m); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: rgba(250,248,243,.8); }
.reel .cap { display: flex; flex-direction: column; gap: 2px; }
.reel .cap strong { font-family: var(--font-d); font-weight: 500; font-size: 17px; line-height: 1.3; }
.reel .cap .mono { color: var(--muted-2); }
.dark-sec .reel .frame { border-color: rgba(250,248,243,.12); background: var(--dark-2); }

/* photo gallery */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 120px; gap: 12px; grid-auto-flow: dense; }
.gallery .g { position: relative; overflow: hidden; background: var(--bg-2); }
.gallery .g img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery .g.w6 { grid-column: span 6; } .gallery .g.w4 { grid-column: span 4; } .gallery .g.w3 { grid-column: span 3; } .gallery .g.w8 { grid-column: span 8; } .gallery .g.w12 { grid-column: span 12; }
.gallery .g.h2 { grid-row: span 2; } .gallery .g.h3 { grid-row: span 3; } .gallery .g.h4 { grid-row: span 4; }
.gallery .g .cap { position: absolute; left: 12px; bottom: 12px; background: rgba(23,35,25,.72); color: var(--paper); padding: 6px 10px; font-family: var(--font-m); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
/* certification badge band */
.certband { display: grid; grid-template-columns: repeat(auto-fit, minmax(132px, 1fr)); gap: 12px; }
.certband .cert { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 24px 8px 20px; border: 1px solid rgba(250,248,243,.14); background: rgba(250,248,243,.05); text-align: center; color: var(--paper); text-decoration: none; transition: background .25s ease, border-color .25s ease, transform .25s ease; }
.certband a.cert:hover { background: rgba(250,248,243,.1); border-color: rgba(250,248,243,.3); transform: translateY(-2px); }
.certband .ring { width: 84px; height: 84px; border-radius: 50%; background: var(--paper); display: flex; align-items: center; justify-content: center; overflow: hidden; box-shadow: 0 0 0 4px rgba(250,248,243,.08); }
.certband .ring img, .certband .ring svg { width: 76px; height: 76px; object-fit: contain; display: block; }
.certband .ring.wide { width: 128px; height: 84px; border-radius: 10px; }
.certband .ring.wide img { width: 118px; height: 70px; }
.certband .ring img { background: #fff; }
.certband .lbl { font-family: var(--font-d); font-weight: 600; font-size: 16px; margin-top: 4px; white-space: nowrap; }
.certband .sub { color: rgba(250,248,243,.55); font-size: 9.5px; text-align: center; }
.certband.light .cert { border-color: var(--line-card); background: var(--paper); color: var(--ink); }
.certband.light a.cert:hover { background: var(--bg-2); border-color: var(--ink); }
.certband.light .ring { box-shadow: 0 0 0 4px var(--bg-2); background: #fff; }
.certband.light .sub { color: var(--muted-2); }
.certband.compact { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.certband.compact .cert { padding: 18px 10px 16px; }
.certband.compact .ring { width: 72px; height: 72px; } .certband.compact .ring img, .certband.compact .ring svg { width: 64px; height: 64px; }
.certband.compact .lbl { font-size: 15px; }

/* catalog search + filter panel */
.fpanel { background: var(--paper); border: 1px solid var(--line-card); padding: 36px 40px 28px; display: flex; flex-direction: column; gap: 28px; }
.fpanel .kw { display: flex; flex-direction: column; gap: 8px; max-width: 760px; width: 100%; margin: 0 auto; }
.fpanel .kw label { font-family: var(--font-m); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); }
.fpanel .kw .in { position: relative; }
.fpanel .kw input { width: 100%; height: 52px; border: 1px solid var(--line-2); background: var(--paper); padding: 0 48px 0 18px; font: inherit; font-size: 16px; color: var(--ink); outline: none; }
.fpanel .kw input:focus { border-color: var(--ink); }
.fpanel .kw .in::after { content: ""; position: absolute; right: 18px; top: 17px; width: 12px; height: 12px; border: 1.5px solid var(--muted-2); border-radius: 50%; box-shadow: 5px 5px 0 -3.5px var(--muted-2); pointer-events: none; }
.fpanel .groups { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 24px; }
.fpanel .grp { display: flex; flex-direction: column; gap: 10px; }
.fpanel .grp .eyebrow { margin-bottom: 2px; }
.fpanel .opt { display: flex; align-items: center; gap: 10px; font-size: 15px; cursor: pointer; color: var(--ink); }
.fpanel .opt input { width: 16px; height: 16px; margin: 0; accent-color: var(--green); flex: none; }
.fpanel .opt .n { font-family: var(--font-m); font-size: 10.5px; color: var(--muted-2); margin-left: auto; }
.fpanel .acts { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.fpanel .acts .row { justify-content: center; gap: 12px; }
.fpanel .acts .lnk { font-family: var(--font-m); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); text-decoration: underline; background: none; border: 0; cursor: pointer; padding: 4px; }
.results-bar { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding: 14px 0; border-bottom: 1px solid var(--line); }
.results-bar .tags { display: flex; gap: 8px; flex-wrap: wrap; }
.results-bar .tag-x { display: inline-flex; align-items: center; gap: 8px; height: 30px; padding: 0 12px; border: 1px solid var(--line-2); background: var(--paper); font-family: var(--font-m); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; }
.results-bar .tag-x:hover { border-color: var(--ink); }
.results-bar .tag-x::after { content: "×"; font-size: 13px; letter-spacing: 0; }
mark.hit { background: rgba(168,137,77,.25); color: inherit; padding: 0 1px; }
.search-inline { display: flex; gap: 0; max-width: 520px; width: 100%; }
.search-inline input { flex: 1; height: 48px; border: 1px solid var(--line-2); border-right: 0; background: var(--paper); padding: 0 16px; font: inherit; font-size: 15px; outline: none; min-width: 0; }
.search-inline input:focus { border-color: var(--ink); }
.search-inline .btn { height: 48px; }
/* team */
.team .member .media.portrait { aspect-ratio: 4 / 5; border-radius: 0; }
.team .member .ph.avatar.portrait { aspect-ratio: 4 / 5; height: auto; }
.team .member .media.portrait img { transition: transform .8s ease; }
.team .member:hover .media.portrait img { transform: scale(1.03); }

/* team: management cards (photo left, text right) */
.mgmt { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.mcard { display: grid; grid-template-columns: 240px 1fr; gap: 28px; padding: 22px; background: var(--paper); border: 1px solid var(--line-card); align-items: stretch; }
.mcard .media.portrait { aspect-ratio: 4 / 5; border-radius: 0; box-shadow: inset 0 0 0 1px rgba(27,27,24,.06); }
.mcard .txt { display: flex; flex-direction: column; justify-content: center; gap: 6px; padding-right: 8px; }
.mcard .role-abbr { font-size: 42px; font-weight: 500; line-height: 1; color: var(--green-d); letter-spacing: .02em; }
.mcard .role-full { font-size: 10.5px; letter-spacing: .16em; color: var(--muted-2); margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.mcard .name { font-size: 30px; font-weight: 600; line-height: 1.15; color: var(--ink); }
.mcard .scope { font-size: 15px; color: var(--muted-2); margin-top: 2px; }
/* team: grid cards */
.team .member .media.portrait { aspect-ratio: 4 / 5; border-radius: 0; }
.team .member .ph.avatar.portrait { aspect-ratio: 4 / 5; height: auto; }
.team .member .media.portrait img { transition: transform .8s ease; }
.team .member:hover .media.portrait img { transform: scale(1.03); }
.team .who { gap: 8px; padding: 16px 18px 20px; }
.team .role-line { display: flex; flex-direction: column; gap: 3px; }
.team .role-line .role { font-size: 15px; font-weight: 600; color: var(--green-d); letter-spacing: .02em; }
.team .role-line .scope { font-size: 9.5px; letter-spacing: .14em; color: var(--muted-2); }
.team .name { font-size: 24px; font-weight: 600; line-height: 1.15; color: var(--ink); padding-top: 10px; border-top: 1px solid var(--line); }

/* markets, reviews, cases */
.flag { width: 22px; height: 16px; object-fit: cover; border-radius: 2px; box-shadow: 0 0 0 1px rgba(27,27,24,.12); vertical-align: middle; flex: none; }
.markets { display: flex; flex-direction: column; gap: 28px; }
.markets .region { display: grid; grid-template-columns: 170px 1fr; gap: 12px 24px; align-items: start; padding-top: 18px; border-top: 1px solid var(--line); }
.dark-sec .markets .region { border-top-color: rgba(250,248,243,.14); }
.markets ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 10px 16px; }
.markets li { display: flex; align-items: center; gap: 10px; font-size: 15px; white-space: nowrap; }
.markets li .note { display: none; }
.markets.notes li { flex-wrap: wrap; } .markets.notes li .note { display: block; width: 100%; padding-left: 32px; color: var(--muted-2); font-size: 10.5px; }
.dark-sec .markets li { color: var(--paper); } .dark-sec .flag { box-shadow: 0 0 0 1px rgba(250,248,243,.2); }
.reviews { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.review { border: 1px solid var(--line-card); background: var(--paper); padding: 24px; display: flex; flex-direction: column; gap: 14px; }
.review .who { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.review p.d { font-size: 19px; line-height: 1.45; font-weight: 500; }
.review .items { display: flex; flex-direction: column; gap: 6px; margin-top: auto; padding-top: 10px; border-top: 1px solid var(--line); }
.cases { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.case { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 24px; border: 1px solid var(--line-card); background: var(--paper); }
.case .num { color: var(--gold); font-size: 20px; font-family: var(--font-d); }
.gradecmp { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.gradecmp .g { border: 1px solid var(--line-card); background: var(--paper); padding: 26px; display: flex; flex-direction: column; gap: 12px; }
.gradecmp .g .smear { width: 100%; height: 44px; }
/* photo strip: full-width band of photos, equal height */
.strip { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; --strip-h: 300px; }
.strip .s { height: var(--strip-h); overflow: hidden; background: var(--bg-2); }
.strip .s.w2 { grid-column: span 2; }
.strip .s img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s ease; }
.strip .s:hover img { transform: scale(1.03); }
.strip-sec { padding-top: 12px; padding-bottom: 12px; }
.media.frame.tall img { object-position: center 30%; }

/* footer */
.site-footer { background: var(--paper); border-top: 1px solid var(--line); }
.site-footer .cols { padding-top: 64px; padding-bottom: 40px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 32px; }
.site-footer .col { display: flex; flex-direction: column; gap: 10px; }
.site-footer .col a { font-size: 14px; }
.site-footer .col a:hover { color: var(--green); }
.site-footer .bottom { padding-top: 20px; padding-bottom: 32px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-top: 1px solid var(--line); }
.site-footer .bottom a:hover { text-decoration: underline; }

/* cta */
.cta .wrap { padding-top: 96px; padding-bottom: 96px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
.cta .acts { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }

/* map */
.jpmap { width: 100%; height: 100%; display: block; }
.jpmap .pref { fill: #eef1ea; stroke: #cfd5cd; stroke-width: 1; stroke-linejoin: round; transition: fill .15s; }
.jpmap .pref.tea { fill: #d9e6d6; }
.jpmap a:hover .pref.tea { fill: #bcd3b9; }
.jpmap .dot { fill: var(--green); stroke: #fff; stroke-width: 2; }
.jpmap .dot.req { fill: #8fb79c; }
.jpmap text { font-family: var(--font-m); font-size: 17px; letter-spacing: .08em; fill: var(--ink); paint-order: stroke; stroke: #fff; stroke-width: 4px; stroke-linejoin: round; }
.jpmap text.req { fill: #6a726c; font-size: 15px; }
.jpmap a:hover text { fill: var(--green); }
.jpmap a { cursor: pointer; }

/* utilities */
.hide-sm { }
.only-sm { display: none; }
.mt8 { margin-top: 8px; } .mt12 { margin-top: 12px; } .mt24 { margin-top: 24px; } .mt32 { margin-top: 32px; }
.mb24 { margin-bottom: 24px; } .mb32 { margin-bottom: 32px; } .mb40 { margin-bottom: 40px; }
.pb64 { padding-bottom: 64px; } .pb96 { padding-bottom: 96px; }
.maxw { max-width: 480px; }
.maxw-l { max-width: 640px; }
.scroll-x { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 6px; }
.scroll-x > * { scroll-snap-align: start; flex: 0 0 240px; }

/* responsive */
@media (max-width: 1100px) {
  :root { --pad: 32px; }
  .grid4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .site-footer .cols { grid-template-columns: 1fr 1fr 1fr; }
  .site-footer .cols .col:first-child { grid-column: 1 / -1; }
  .filters .wrap { grid-template-columns: 1fr 1fr; }
  .filters .end { align-items: flex-start; grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; }
  .catalog-body { grid-template-columns: 1fr; }
  .catalog-side { position: static; }
  .hero .media { height: 480px; }
  .sec { padding-top: 96px; padding-bottom: 96px; }
  .reels.five { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gallery { grid-auto-rows: 100px; }
  .strip { --strip-h: 220px; }
  .fpanel .groups { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .mgmt { grid-template-columns: 1fr; }
  .mcard { grid-template-columns: 200px 1fr; }
  .markets .region { grid-template-columns: 1fr; gap: 10px; }
  .reviews { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .certband { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
}
@media (max-width: 1400px) {
  .nav { gap: 18px; }
  .nav a { font-size: 11px; letter-spacing: .14em; }
}
@media (max-width: 1240px) {
  .hdr-cta .lang { display: none; }
  .nav { gap: 14px; }
}
@media (max-width: 1080px) {
  .nav, .hdr-cta .lang { display: none; }
  .burger { display: inline-flex; }
}
@media (max-width: 900px) {
  .certband { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .nav, .hdr-cta .lang { display: none; }
  .burger { display: inline-flex; }
  .hdr-cta .btn { display: none; }
  .split, .split.sa, .split.sb, .split.sc, .split.sd, .split.se, .split.sf { grid-template-columns: 1fr; gap: 32px; }
  .grid2 { grid-template-columns: 1fr; }
  .grid3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta .wrap { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-nav { position: static; flex-direction: row; flex-wrap: wrap; gap: 8px 18px; }
  .article-body { grid-template-columns: 1fr; }
  .article-side { position: static; }
  .hero { padding-top: 40px; padding-bottom: 48px; }
  .hero .media { height: 440px; }
  .hero .media.offset { margin-right: 0; }
  .kv { grid-template-columns: 140px 1fr; }
  .filters { position: static; }
  .reels { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reels.five { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sec-head { grid-template-columns: 1fr; }
  .index { writing-mode: horizontal-tb; transform: none; }
  .hero-band .panel { position: static; max-width: none; padding: 24px 0 0; }
  .hero-band { height: auto; }
  .hero-band img { height: 52vw; }
}
@media (max-width: 600px) {
  :root { --pad: 20px; }
  body { font-size: 15px; }
  .sec { padding-top: 72px; padding-bottom: 72px; } .sec.tight { padding-top: 56px; padding-bottom: 56px; }
  .grid3, .grid4 { grid-template-columns: 1fr; }
  .trust { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer .cols { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, auto); gap: 16px 28px; }
  .stat .n { font-size: 26px; }
  .hero .media { height: 340px; }
  .brand .d { font-size: 18px; } .brand img { width: 36px; } .brand img.logo-h { height: 38px; width: auto; }
  .kv, .kv.c140 { grid-template-columns: 1fr; } .kv > div:nth-child(odd) { border-top: 1px solid var(--line); padding-bottom: 2px; } .kv > div:nth-child(even) { border-top: 0; padding-top: 0; }
  .step { grid-template-columns: 40px 1fr; } .step .n { font-size: 22px; }
  .h-card { font-size: 22px; }
  .btn { min-height: 48px; padding: 0 18px; font-size: 11px; }
  .cta .acts { align-items: stretch; } .cta .acts .btn { width: 100%; }
  .row.acts .btn { flex: 1 1 100%; }
  .taste { grid-template-columns: 80px 1fr; }
  .faq summary { font-size: 18px; }
  .prose { font-size: 17px; } .prose h2 { font-size: 26px; } .prose blockquote { font-size: 22px; }
  .page-head { padding-top: 36px; padding-bottom: 24px; }
  .site-footer .bottom { flex-direction: column; }
  .only-sm { display: block; } .hide-sm { display: none !important; }
  .smear { width: 100px; height: 32px; }
  .filters .wrap { grid-template-columns: 1fr; gap: 14px; }
  .filters .end { grid-column: auto; }
  .reels, .reels.five, .reels.two { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 90px; }
  .strip { grid-template-columns: repeat(2, minmax(0, 1fr)); --strip-h: 160px; }
  .fpanel { padding: 22px 18px; }
  .mcard { grid-template-columns: 1fr; padding: 14px; }
  .mcard .role-abbr { font-size: 38px; } .mcard .name { font-size: 26px; }
  .markets ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .markets li { white-space: normal; }
  .reviews, .cases, .gradecmp { grid-template-columns: 1fr; }
  .fpanel .groups { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .certband { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .certband .cert { padding: 18px 8px 14px; }
  .strip .s.w2 { grid-column: span 2; }
  .gallery .g.w6, .gallery .g.w8, .gallery .g.w12 { grid-column: span 6; } .gallery .g.w4 { grid-column: span 3; } .gallery .g.w3 { grid-column: span 3; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .btn { transition: none; } }
@media (max-width: 600px) { .h-hero br { display: none; } }

/* trusted-by band */
.trusted { padding: 40px 0 44px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.trusted .wrap { display: flex; flex-direction: column; gap: 18px; }
.trusted .trust-h { max-width: 720px; }
.marquee { overflow: hidden; min-width: 0; width: 100%; max-width: 100%; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee .track { display: flex; gap: 56px; width: max-content; animation: trust-scroll 48s linear infinite; padding: 6px 0; }
.marquee:hover .track { animation-play-state: paused; }
.pn { display: inline-flex; flex-direction: column; gap: 3px; white-space: nowrap; }
.pn .nm { font-family: var(--font-d); font-weight: 600; font-size: 24px; letter-spacing: -.01em; color: var(--ink); line-height: 1.1; }
.pn .flag { width: 18px; height: 13px; margin-right: 8px; vertical-align: 2px; border-radius: 2px; }
.pn small { font-family: var(--font-m); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); }
.pn .plogo { height: 30px; width: auto; display: block; filter: grayscale(1); opacity: .85; }
@keyframes trust-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee .track { animation: none; flex-wrap: wrap; width: auto; gap: 20px 40px; } .marquee { mask-image: none; -webkit-mask-image: none; } .pn[aria-hidden="true"] { display: none; } }
@media (max-width: 700px) { .pn .nm { font-size: 20px; } .marquee .track { gap: 36px; } }
.markets .morebtn .lnk { font-family: var(--font-m); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--green); background: none; border: 0; padding: 0; cursor: pointer; }
.dark-sec .markets .morebtn .lnk { color: var(--dark-eyebrow); }
.markets .morebtn .lnk:hover { text-decoration: underline; }
.markets li[hidden] { display: none; }
.reel .playcount { position: absolute; left: 12px; top: 12px; z-index: 3; background: rgba(0,0,0,.72); color: #fff; font-family: var(--font-d); font-weight: 700; font-size: 16px; letter-spacing: -.01em; padding: 8px 14px; border-radius: 999px; pointer-events: none; backdrop-filter: blur(4px); }
.reel .plays-big { display: flex; align-items: baseline; gap: 8px; margin-bottom: 2px; }
.reel .plays-big .n { font-size: 34px; line-height: 1; font-weight: 600; letter-spacing: -.02em; color: var(--ink); }
.reel .plays-big .l { font-family: var(--font-m); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.dark-sec .reel .plays-big .n { color: #fff; }
.dark-sec .reel .plays-big .l { color: var(--dark-muted); }
.reel .cap .plays { font-weight: 600; color: var(--green); }
.dark-sec .reel .cap .plays { color: #b9d3bd; }
.ceo-card { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: end; }
.ceo-card .media.portrait { aspect-ratio: 4 / 5; height: auto; }
.ceo-card .txt { display: flex; flex-direction: column; gap: 6px; padding-bottom: 8px; }
.ceo-card .role-abbr { font-size: 56px; line-height: 1; letter-spacing: -.02em; }
.ceo-card .role-full { font-size: 11px; letter-spacing: .16em; color: var(--muted); }
.ceo-card .name { font-size: 26px; margin-top: 10px; padding-top: 12px; border-top: 1px solid var(--line); }
.ceo-card .scope { color: var(--muted); font-size: 14px; }
@media (max-width: 700px) { .ceo-card { grid-template-columns: 1fr; } }

/* press */
.press { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.press .pitem { display: flex; flex-direction: column; gap: 6px; padding: 22px 24px; border: 1px solid var(--line-card); background: var(--paper); color: inherit; }
.press a.pitem:hover { border-color: var(--line-2); }
.press .outlet { font-size: 26px; line-height: 1.1; letter-spacing: -.01em; }
.press .ptitle { font-size: 14px; color: var(--ink); }
.press .pnote { font-size: 13px; color: var(--muted); }
.press.compact { display: flex; flex-wrap: wrap; gap: 8px 28px; }
.press.compact .pitem { padding: 0; border: 0; background: transparent; }
.press.compact .outlet { font-size: 22px; }
.pressline { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; padding-top: 22px; padding-bottom: 22px; border-top: 1px solid var(--line); }
.pressline .press { flex: 1 1 auto; }

/* mobile: fix collapsed portrait (aspect-ratio + stretch quirk) and turn team/gallery into swipe carousels */
@media (max-width: 700px) {
  .mcard { align-items: start; }
  .mcard .media.portrait, .ceo-card .media.portrait { width: 100%; align-self: start; }
  .mgmt, .grid4.team, .gallery { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding: 0 var(--pad); gap: 12px; margin: 0 calc(-1 * var(--pad)); padding: 0 var(--pad) 10px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .mgmt::-webkit-scrollbar, .grid4.team::-webkit-scrollbar, .gallery::-webkit-scrollbar { display: none; }
  .mgmt .mcard { flex: 0 0 82%; scroll-snap-align: start; }
  .grid4.team .member { flex: 0 0 68%; scroll-snap-align: start; }
  .gallery .g { flex: 0 0 76%; aspect-ratio: 4 / 5; height: auto; scroll-snap-align: start; }
  .swipe-hint { display: block; }
}
.swipe-hint { display: none; font-family: var(--font-m); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-top: -8px; }

/* ===== mobile compaction (MATCHA OTAKU-style density): shorter sections, 2-col products, carousels ===== */
@media (max-width: 700px) {
  .sec { padding-top: 48px; padding-bottom: 48px; }
  .sec-head { grid-template-columns: 1fr; gap: 0; }
  .index { display: none; }
  .stack.l { gap: 16px; }
  .h-sec { font-size: clamp(26px, 7.5vw, 34px); }
  .h-sec-s, .h-md { font-size: clamp(22px, 6.4vw, 28px); }
  .lead { font-size: 16px; }
  .between { gap: 12px; }
  .between .btn { min-height: 40px; padding: 0 14px; font-size: 11px; }
  /* hero */
  .hero { padding-top: 24px; padding-bottom: 28px; }
  .hero .split.sa { gap: 20px; padding-top: 0; }
  .hero .media, .hero .media.offset { height: 260px; }
  .h-hero { font-size: clamp(34px, 9.6vw, 42px); line-height: 1.02; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 16px; justify-content: stretch; padding-top: 14px; }
  .stat .n { font-size: 22px; } .stat .l { font-size: 9.5px; letter-spacing: .06em; }
  .hero .stack.l, .hero .split.sa > * { max-width: 100%; min-width: 0; }
  .row.acts .btn { flex: 1 1 45%; }
  /* trusted / press */
  .trusted { padding: 26px 0 28px; }
  .trusted .trust-h { display: none; }
  .pressline { padding-top: 10px; padding-bottom: 22px; gap: 10px 20px; }
  .press.compact .outlet { font-size: 18px; }
  /* cert band -> one swipeable row */
  .certband { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding: 0 var(--pad); gap: 10px; margin: 0 calc(-1 * var(--pad)); padding: 0 var(--pad) 8px; scrollbar-width: none; border: 0; }
  .certband::-webkit-scrollbar { display: none; }
  .certband .cert { flex: 0 0 132px; scroll-snap-align: start; border: 1px solid var(--line) !important; }
  /* markets: 2 cols, tighter */
  .markets { gap: 14px; }
  .markets .region { grid-template-columns: 1fr; gap: 8px; padding-top: 12px; }
  .markets ul { gap: 6px 12px; }
  .markets li { font-size: 14px; }
  /* home catalog + catalog page: 2 columns */
  .grid4, .grid3, .catalog-body .grid3 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .pcard .ph, .pcard .media.pimg { height: 150px; }
  .pcard .card-body { padding: 10px 0 0; gap: 5px; }
  .pcard .h-card, .h-card { font-size: 17px; }
  .pcard .sub, .pcard .mono, .pcard .price-row { font-size: 11.5px; }
  .pcard .row .badge:nth-child(n+3) { display: none; }
  .pcard .cmp-check { font-size: 11px; }
  .grid4 .card.pad.soft, .grid4 > .card.pad { grid-column: span 2; }
  .search-inline { flex-direction: column; }
  .search-inline .btn { width: 100%; }
  /* carousels: grades, reels, journal, reviews, cases */
  .gradecmp, .reels, .reels.two, .reels.five, .journal-grid, .reviews, .cases { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding: 0 var(--pad); gap: 12px; margin: 0 calc(-1 * var(--pad)); padding: 0 var(--pad) 10px; scrollbar-width: none; }
  .gradecmp::-webkit-scrollbar, .reels::-webkit-scrollbar, .journal-grid::-webkit-scrollbar, .reviews::-webkit-scrollbar, .cases::-webkit-scrollbar { display: none; }
  .gradecmp .g { flex: 0 0 82%; scroll-snap-align: start; }
  .reels .reel { flex: 0 0 62%; scroll-snap-align: start; }
  .reel .plays-big .n { font-size: 24px; }
  .reel .cap strong { font-size: 14px; }
  .journal-grid > * { flex: 0 0 76%; scroll-snap-align: start; }
  .reviews > *, .cases > * { flex: 0 0 84%; scroll-snap-align: start; }
  /* process */
  .step { padding: 12px 0; }
  .step .n { font-size: 18px; }
  .strip-sec { padding-bottom: 8px !important; }
  /* footer */
  .site-footer .cols { padding-top: 32px; padding-bottom: 20px; gap: 18px; }
  .site-footer .bigmark-row { padding-top: 24px; }
  .cta .wrap { padding-top: 48px; padding-bottom: 48px; gap: 24px; }
}

@media (max-width: 700px) {
  .mgmt, .grid4.team, .gallery, .certband, .gradecmp, .reels, .reels.two, .reels.five, .journal-grid, .reviews, .cases { width: calc(100% + 2 * var(--pad)); min-width: 0; box-sizing: border-box; }
  .sec-head > *, .stack > *, .wrap > * { min-width: 0; }
  html, body { overflow-x: hidden; }
}

/* mobile hero: photo first, edge to edge, then the headline */
@media (max-width: 700px) {
  .hero { padding-top: 0; }
  .hero .split.sa { display: flex; flex-direction: column; gap: 18px; }
  .hero .media, .hero .media.offset { order: -1; height: 62vh; max-height: 560px; min-height: 380px; margin: 0 calc(-1 * var(--pad)); width: calc(100% + 2 * var(--pad)); border-radius: 0; }
  .hero .media .tag { left: var(--pad); bottom: 14px; }
  .hero .stack.l { gap: 12px; }
  .hero .eyebrow { margin-top: 4px; }
}

/* ===== immersive hero (home) ===== */
.hero2 { position: relative; color: #fff; overflow: hidden; background: #0f1a12; }
.hero2-bg { position: absolute; inset: 0; }
.hero2-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; display: block; }
.hero2-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.18) 45%, rgba(0,0,0,.62) 100%); }
.hero2-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; min-height: clamp(520px, 72vh, 760px); padding-top: 72px; padding-bottom: 56px; }
.hero2-copy { display: flex; flex-direction: column; gap: 20px; max-width: 880px; }
.hero2 .eyebrow { color: #dfe8df; }
.hero2 .h-hero { color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,.25); }
.hero2 .lead { color: #eef2ec; max-width: 640px; }
.hero2 .btn.primary { background: #fff; color: var(--ink); border-color: #fff; }
.hero2 .btn.primary:hover { background: #e9ebe6; border-color: #e9ebe6; }
.hero2 .btn.light { color: #fff; border-color: rgba(255,255,255,.75); }
.hero2 .btn.light:hover { background: rgba(255,255,255,.12); }
.hero2-badge { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 200px; height: 200px; border-radius: 50%; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.45); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); color: #fff; text-align: center; gap: 2px; transition: background .2s; }
.hero2-badge:hover { background: rgba(255,255,255,.22); }
.hero2-badge .n { font-family: var(--font-d); font-weight: 600; font-size: 56px; line-height: 1; letter-spacing: -.03em; }
.hero2-badge .t { font-family: var(--font-m); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #eef2ec; }
.hero2-stats { position: relative; z-index: 1; display: flex; align-items: flex-end; gap: 48px; padding-top: 22px; padding-bottom: 26px; border-top: 1px solid rgba(255,255,255,.22); background: rgba(0,0,0,.35); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.hero2-stats .stat .n { color: #fff; font-size: 28px; }
.hero2-stats .stat .l { color: #cfd8cf; }
.hero2-tag { margin-left: auto; color: #cfd8cf; font-size: 10px; }
@media (max-width: 900px) { .hero2-inner { grid-template-columns: 1fr; min-height: 520px; padding-top: 40px; padding-bottom: 28px; } .hero2-badge { width: 140px; height: 140px; } .hero2-badge .n { font-size: 40px; } }
@media (max-width: 700px) {
  .hero2-inner { min-height: 78vh; max-height: 720px; padding-top: 24px; padding-bottom: 22px; gap: 18px; }
  .hero2-copy { gap: 12px; }
  .hero2 .lead { font-size: 15px; }
  .hero2-badge { width: 112px; height: 112px; order: -1; align-self: flex-end; margin-left: auto; }
  .hero2-badge .n { font-size: 32px; } .hero2-badge .t { font-size: 9px; }
  .hero2-stats { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px 16px; padding-top: 16px; padding-bottom: 18px; }
  .hero2-stats .stat .n { font-size: 22px; }
  .hero2-tag { display: none; }
  .hero2 .row.acts .btn { flex: 1 1 45%; }
}
/* floating samples button */
.fab { position: fixed; right: 18px; bottom: 18px; z-index: 40; display: inline-flex; align-items: center; gap: 8px; height: 48px; padding: 0 18px 0 14px; border-radius: 999px; background: var(--ink); color: #fff; font-family: var(--font); font-weight: 600; font-size: 13px; box-shadow: 0 8px 24px rgba(0,0,0,.22); }
.fab .ic { font-size: 15px; }
.fab:hover { background: var(--green-d); color: #fff; }
@media (max-width: 700px) { .fab { right: 14px; bottom: 14px; height: 44px; font-size: 12px; } }

/* product card: grade pill + cert marks over the image, origin/harvest/mill row */
.pcard .media.pimg { position: relative; }
.pcard .gpill { position: absolute; left: 12px; top: 12px; z-index: 2; font-family: var(--font); font-weight: 700; font-size: 12px; letter-spacing: 0; padding: 6px 11px; border-radius: 999px; color: #fff; background: var(--green-d); box-shadow: 0 2px 8px rgba(0,0,0,.18); }
.pcard .gpill.g-ceremonial { background: #1f4a2a; }
.pcard .gpill.g-cafe { background: #2f7d3c; }
.pcard .gpill.g-culinary { background: #6b7a3a; }
.pcard .pmarks { position: absolute; right: 10px; bottom: 10px; z-index: 2; display: flex; gap: 6px; }
.pcard .pmarks img { width: 32px; height: 32px; border-radius: 50%; background: #fff; padding: 2px; box-shadow: 0 1px 6px rgba(0,0,0,.2); object-fit: contain; }
.pcard .code { position: absolute; left: 12px; bottom: 12px; z-index: 2; color: #fff; font-size: 10.5px; letter-spacing: .12em; text-shadow: 0 1px 6px rgba(0,0,0,.5); }
.pcard .media.pimg .tag { display: none; }
.pkv { display: flex; flex-wrap: wrap; gap: 4px 14px; font-size: 13px; color: var(--ink); }
.pkv b { font-family: var(--font-m); font-weight: 500; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); margin-right: 4px; }
@media (max-width: 700px) { .pcard .gpill { font-size: 10.5px; padding: 4px 8px; left: 8px; top: 8px; } .pcard .pmarks img { width: 24px; height: 24px; } .pcard .pmarks { right: 6px; bottom: 6px; gap: 4px; } .pkv { font-size: 11.5px; gap: 2px 10px; } .pkv b { font-size: 9px; } .pcard .code { font-size: 9px; left: 8px; bottom: 8px; } }

/* team sections: breathing room after the dark founder block, roomier cards */
.team-sec { padding-top: 72px; }
.team-sec + .team-sec { padding-top: 16px; }
.mgmt { gap: 28px; }
@media (max-width: 700px) {
  .team-sec { padding-top: 44px; }
  .team-sec + .team-sec { padding-top: 8px; }
  .mgmt .mcard { flex: 0 0 84%; background: var(--bg-2); padding: 14px 14px 18px; gap: 14px; border: 0; }
  .mcard .txt { padding: 0 4px; gap: 4px; }
  .mcard .role-abbr { font-size: 34px; }
  .mcard .role-full { margin-bottom: 8px; padding-bottom: 8px; }
  .mcard .name { font-size: 22px; }
  .grid4.team .member { flex-basis: 64%; }
  .team .member .card-body { padding: 10px 4px 0; }
}

/* ===== buying path: catalog toolbar, product card CTAs, sample tray, product buy box ===== */
[hidden] { display: none !important; }
.vh { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
/* catalog head */
.cat-head { padding-bottom: 28px; }
.cat-head-row { display: grid; grid-template-columns: 1fr auto; gap: 32px 56px; align-items: end; }
.cat-facts { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, auto); gap: 0; border: 1px solid var(--line); }
.cat-facts li { display: flex; flex-direction: column; gap: 2px; padding: 14px 20px; border-right: 1px solid var(--line); min-width: 120px; }
.cat-facts li:last-child { border-right: 0; }
.cat-facts b { font-family: var(--font-d); font-weight: 600; font-size: 22px; letter-spacing: -.02em; line-height: 1.1; }
.cat-facts span { font-size: 12px; color: var(--muted); }
/* sticky toolbar */
.cat-tools { position: sticky; top: 72px; z-index: 30; background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cat-bar { display: flex; flex-direction: column; gap: 10px; padding: 12px 0; }
.cat-bar > .cat-search { display: block; }
.cat-search input { width: 100%; height: 46px; border: 1px solid var(--line-2); border-radius: 999px; background: var(--paper); padding: 0 20px 0 44px; font: inherit; font-size: 15px; color: var(--ink); outline: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238a8a85' stroke-width='2' stroke-linecap='round'><circle cx='11' cy='11' r='7'/><path d='m20 20-3.5-3.5'/></svg>"); background-repeat: no-repeat; background-position: 16px center; }
.cat-search input:focus { border-color: var(--ink); }
.cat-chips { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.cat-chips .sep { width: 1px; height: 22px; background: var(--line-2); margin: 0 4px; }
.cat-chips .chip, .cat-more .chip { height: 34px; padding: 0 14px; border-radius: 999px; font-family: var(--font); font-size: 13px; font-weight: 600; letter-spacing: 0; text-transform: none; }
.chip.more { margin-left: auto; border-style: dashed; }
.chip.more::after { content: "▾"; margin-left: 6px; font-size: 11px; }
.chip.more.on::after { content: "▴"; }
.chip.ghost { border-color: var(--line); color: var(--muted); }
.cat-more { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px 24px; padding: 12px 0 6px; border-top: 1px dashed var(--line); }
.cat-more .grp { display: flex; flex-direction: column; gap: 8px; }
.cat-more .lbl, .cat-links .lbl { font-size: 12px; font-weight: 600; color: var(--muted); }
.cat-more .chips { display: flex; gap: 6px; flex-wrap: wrap; }
.cat-more .chips .chip { height: 30px; font-size: 12px; padding: 0 12px; }
.cat-status { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 13px; color: var(--muted); }
.cat-status .count { font-weight: 600; color: var(--ink); }
.cat-status .tags { display: flex; gap: 6px; flex-wrap: wrap; }
.cat-status .tag-x { display: inline-flex; align-items: center; gap: 6px; height: 26px; padding: 0 10px; border: 1px solid var(--line-2); border-radius: 999px; background: var(--paper); font-family: var(--font); font-size: 12px; cursor: pointer; }
.cat-status .tag-x::after { content: "×"; font-size: 13px; }
.cat-status .lnk { margin-left: auto; background: none; border: 0; padding: 0; font: inherit; font-size: 13px; color: var(--muted); text-decoration: underline; cursor: pointer; }
.catalog-body.catalog-body { display: block; padding-top: 32px; padding-bottom: 96px; }
.cat-grid { gap: 32px 24px; }
.cat-empty { padding: 40px; align-items: center; text-align: center; gap: 10px; margin-top: 24px; }
.cat-foot { display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px; margin-top: 56px; align-items: start; }
.cat-help { padding: 28px; gap: 20px; display: grid; grid-template-columns: 1fr auto; align-items: center; }
.cat-help .h-xs { margin: 6px 0 8px; }
.cat-help p { font-size: 14px; }
.cat-links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; padding-top: 6px; }
.cat-links > div { display: flex; flex-direction: column; gap: 6px; font-size: 14px; border-top: 1px solid var(--line); padding-top: 14px; }
.cat-links p { font-size: 13px; }
/* product card CTA */
.pcard .media.pimg { aspect-ratio: 5 / 6; height: auto; }
.pcard .title { align-items: flex-start; }
.pcard .pprice { display: inline-flex; align-items: baseline; gap: 2px; white-space: nowrap; }
.pcard .pprice b { font-family: var(--font-d); font-weight: 600; font-size: 17px; letter-spacing: -.02em; }
.pcard .pprice span { font-size: 12px; color: var(--muted); }
.pcard .psub { font-size: 12.5px; color: var(--muted); }
.pcard .card-body { flex: 1; }
.pcard .pacts { display: flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); }
.pcard .psub { margin-bottom: 6px; }
.pcard .pmore { font-size: 13px; font-weight: 600; margin-left: auto; }
.pcard .cmp-check { font-family: var(--font); font-size: 12px; letter-spacing: 0; text-transform: none; color: var(--muted); display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.pcard .cmp-check input { margin: 0; accent-color: var(--green); }
.sbtn { display: inline-flex; align-items: center; justify-content: center; height: 36px; padding: 0 16px; border: 1px solid var(--ink); border-radius: 999px; background: var(--ink); color: #fff; font-family: var(--font); font-size: 13px; font-weight: 700; cursor: pointer; transition: background .15s, color .15s, border-color .15s; white-space: nowrap; }
.sbtn:hover { background: var(--green); border-color: var(--green); color: #fff; }
.sbtn .on, .sbtn.on .off, .sbtn-lg .on, .sbtn-lg.on .off { display: none; }
.sbtn.on .on, .sbtn-lg.on .on { display: inline; }
.sbtn.on { background: var(--green); border-color: var(--green); color: #fff; }
.sbtn.on:hover { background: var(--green-d); border-color: var(--green-d); }
.btn.sbtn-lg.on { background: var(--green); border-color: var(--green); color: #fff; }
.btn.sbtn-lg { height: auto; min-height: 46px; }
/* sample tray */
.tray { position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; background: var(--ink); color: #fff; box-shadow: 0 -8px 30px rgba(0,0,0,.18); transform: translateY(0); animation: trayin .25s ease; }
@keyframes trayin { from { transform: translateY(100%); } to { transform: translateY(0); } }
.tray .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 10px; padding-bottom: 10px; }
.tray-info { display: flex; align-items: baseline; gap: 14px; min-width: 0; flex-wrap: wrap; }
.tray-h { font-weight: 700; font-size: 14px; white-space: nowrap; }
.tray-list { font-size: 14px; color: #cfd8cf; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tray-acts { display: flex; align-items: center; gap: 16px; flex: none; }
.tray-acts .lnk { background: none; border: 0; padding: 0; color: #cfd8cf; font: inherit; font-size: 13px; text-decoration: underline; cursor: pointer; }
.tray .btn.primary { background: #fff; color: var(--ink); border-color: #fff; }
.tray .btn.primary:hover { background: var(--green-soft); border-color: var(--green-soft); }
.tray.full .tray-h { color: #f3c27a; }
body.has-tray .fab { display: none; }
body.has-tray .compare-bar { bottom: 64px; }
body.has-tray { padding-bottom: 64px; }
.fab .cnt { display: inline-flex; align-items: center; justify-content: center; min-width: 20px; height: 20px; padding: 0 6px; border-radius: 999px; background: #fff; color: var(--ink); font-size: 11px; font-weight: 700; }
/* product page buy box */
.pdp-buy { position: sticky; top: 96px; }
.pdp-acts .btn { flex: 1 1 auto; }
.pdp-note { display: flex; flex-direction: column; gap: 2px; font-size: 13px; color: var(--muted); }
.buybar { display: none; }
@media (max-width: 1100px) { .cat-more { grid-template-columns: repeat(2, minmax(0, 1fr)); } .cat-foot { grid-template-columns: 1fr; } }
@media (max-width: 900px) {
  .cat-head-row { grid-template-columns: 1fr; gap: 20px; }
  .cat-facts { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .cat-facts li { min-width: 0; padding: 10px 12px; }
  .cat-facts b { font-size: 18px; }
  .pdp-buy { position: static; }
}
@media (max-width: 700px) {
  .cat-head { padding-bottom: 16px; }
  .cat-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cat-facts li:nth-child(2) { border-right: 0; }
  .cat-facts li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .cat-facts span { font-size: 11px; }
  .cat-tools { position: static; }
  .cat-bar { padding: 10px 0; gap: 8px; }
  .cat-search input { height: 42px; font-size: 14px; }
  .cat-chips { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; margin: 0 calc(-1 * var(--pad)); padding: 0 var(--pad); width: calc(100% + 2 * var(--pad)); }
  .cat-chips::-webkit-scrollbar { display: none; }
  .cat-chips .chip { height: 32px; font-size: 12.5px; padding: 0 12px; flex: none; }
  .chip.more { margin-left: 0; }
  .cat-more { grid-template-columns: 1fr; gap: 12px; }
  .cat-status { font-size: 12px; }
  .catalog-body.catalog-body { padding-top: 16px; padding-bottom: 56px; }
  .cat-grid { gap: 20px 12px; }
  .pcard .media.pimg { aspect-ratio: 1 / 1; height: auto; }
  .pcard .pkv { display: block; font-size: 12px; line-height: 1.5; }
  .pcard .pkv b { display: none; }
  .pcard .pkv span + span::before { content: " · "; color: var(--muted-2); }
  .pcard .pprice b { font-size: 15px; }
  .pcard .pacts { flex-wrap: wrap; gap: 8px; margin-top: 8px; padding-top: 10px; }
  .sbtn { height: 36px; flex: 1 1 100%; font-size: 12.5px; }
  .pcard .pmore { display: none; }
  .pcard .cmp-check { flex-basis: 100%; font-size: 11.5px; justify-content: center; }
  .cat-foot { margin-top: 32px; gap: 16px; }
  .cat-help { grid-template-columns: 1fr; padding: 20px; gap: 14px; }
  .cat-links { grid-template-columns: 1fr; gap: 12px; }
  .tray .wrap { padding-top: 10px; padding-bottom: 10px; gap: 10px; }
  .tray-list { display: none; }
  .tray-h { font-size: 13px; }
  .tray .btn.sm { min-height: 38px; height: 38px; padding: 0 14px; font-size: 12.5px; }
  body.has-tray { padding-bottom: 60px; }
  body.has-tray .compare-bar { bottom: 58px; }
  /* product page: sticky buy bar */
  .buybar { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 44; background: var(--paper); border-top: 1px solid var(--line); padding: 10px var(--pad); align-items: center; justify-content: space-between; gap: 12px; box-shadow: 0 -8px 24px rgba(0,0,0,.08); }
  .buybar .bb-price { display: flex; flex-direction: column; line-height: 1.1; }
  .buybar .bb-price b { font-family: var(--font-d); font-weight: 700; font-size: 20px; letter-spacing: -.02em; }
  .buybar .bb-price span { font-size: 11px; color: var(--muted); }
  .buybar .btn { min-height: 42px; height: 42px; padding: 0 18px; font-size: 13px; }
  body.pg-product { padding-bottom: 64px; }
  body.pg-product .tray, body.pg-product .fab { display: none; }
  .row.acts.pdp-acts .btn { flex: 1 1 100%; height: auto; min-height: 46px; }
  .pdp-media .grid3, .pdp-buy .grid3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
  .pdp-media .grid3 .media { height: 96px !important; }
  .pdp-media .grid3 .media .tag { font-size: 10px; padding: 4px 6px; left: 8px; bottom: 8px; }
  .pdp-buy .grid3 .card { padding: 10px !important; }
  .pdp-buy .grid3 .card strong { font-size: 14px; }
}

/* home: catalog intro with 3 ordering steps */
.cat-intro { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px 64px; align-items: end; }
.steps3 { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.steps3 li { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 13.5px; color: var(--muted); line-height: 1.4; }
.steps3 li b { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--ink); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }
.steps3 li span { display: flex; flex-direction: column; gap: 1px; }
.steps3 li strong { color: var(--ink); font-weight: 600; font-size: 15px; }
.cat-search-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.cat-search-row .search-inline { max-width: 560px; }
.browse-row .mono { font-size: 12px; }
@media (max-width: 900px) { .cat-intro { grid-template-columns: 1fr; gap: 20px; } }
@media (max-width: 700px) {
  .steps3 { flex-direction: row; gap: 10px; border-top: 0; }
  .steps3 li { flex: 1 1 0; flex-direction: column; gap: 8px; padding: 0; border-bottom: 0; font-size: 11.5px; }
  .steps3 li b { width: 22px; height: 22px; font-size: 11px; }
  .steps3 li strong { font-size: 13px; }
  .cat-search-row .btn { width: 100%; }
  .cat-search-row .search-inline { flex-direction: row; }
  .cat-search-row .search-inline input { height: 44px; }
  .cat-search-row .search-inline .btn.primary { width: auto; height: 44px; min-height: 44px; padding: 0 16px; }
  .browse-row .mono { white-space: nowrap; flex: none; }
  .browse-row { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; margin: 0 calc(-1 * var(--pad)); padding: 0 var(--pad); width: calc(100% + 2 * var(--pad)); }
  .browse-row::-webkit-scrollbar { display: none; }
  .browse-row .badge { flex: none; }
}
.pick:has(input:checked) { background: var(--green-soft); }
.pick .pthumb { width: 48px; height: 48px; }
