/* ============================================================
   BEAN DOE — "MA" (間)
   Japanese quiet minimalism: emptiness as content. Rice paper,
   mincho serif + zen gothic, Japanese numerals, one ensō gesture.
   Ref: Kenya Hara / MUJI, wabi-sabi, sumi-e.
   ============================================================ */
:root {
  --rice:   #f8f6f0;
  --rice-2: #f1eee5;
  --sumi:   #34322b;   /* soft ink, never pure black */
  --soft:   #6f6c62;
  --faint:  #a8a498;
  --line:   #e4e0d5;
  --sage:   #6f7358;   /* the single, desaturated accent */

  --serif: "Shippori Mincho", "Times New Roman", serif;
  --sans:  "Zen Kaku Gothic New", "Helvetica Neue", system-ui, sans-serif;
  --pad: clamp(22px, 6vw, 96px);
  --ease: cubic-bezier(0.33, 0, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--rice); color: var(--sumi);
  font-family: var(--sans); font-weight: 400; font-size: 16px; line-height: 1.5;
  overflow-x: hidden; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; letter-spacing: 0.01em; margin: 0; }

.wrap { width: 100%; padding-inline: var(--pad); }
.col  { max-width: 760px; margin-inline: auto; }
.jp   { font-family: var(--serif); }

/* index marks — Japanese numerals */
.mark {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--faint);
}
.mark .num { font-family: var(--serif); font-size: 15px; letter-spacing: 0; color: var(--sage); }

/* ============================================================ HEADER */
.siteHeader {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  height: 74px; background: color-mix(in srgb, var(--rice) 78%, transparent);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent; transition: border-color .4s ease, height .3s ease;
}
.siteHeader.isScrolled { height: 62px; border-bottom-color: var(--line); }
.brand { font-family: var(--serif); font-weight: 600; font-size: 20px; letter-spacing: 0.06em; }
.brand small { font-family: var(--sans); font-weight: 400; font-size: 10px; letter-spacing: 0.3em; color: var(--faint); margin-left: 10px; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: clamp(16px, 3vw, 40px); }
.nav a { font-size: 12.5px; letter-spacing: 0.16em; text-transform: lowercase; color: var(--soft); transition: color .3s ease; }
.nav a:hover { color: var(--sumi); }
.nav .shop { color: var(--sage); }
.nav .shop::after { content: " ↗"; }

/* ============================================================ LINKS / BUTTONS (quiet) */
.qlink {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sumi);
  padding-bottom: 6px; border-bottom: 1px solid var(--sumi);
  transition: gap .4s var(--ease), color .3s ease, border-color .3s ease;
}
.qlink:hover { gap: 16px; color: var(--sage); border-color: var(--sage); }
.qlink--sage { color: var(--sage); border-color: var(--sage); }

/* ============================================================ REVEAL */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.rd-1 { transition-delay: .14s; } .rd-2 { transition-delay: .28s; } .rd-3 { transition-delay: .42s; }

/* ============================================================ ENSŌ + HERO */
.hero { position: relative; text-align: center; padding-block: clamp(90px, 16vh, 190px) clamp(80px, 12vh, 150px); overflow: hidden; }
.enso { position: absolute; top: 50%; left: 50%; width: clamp(320px, 46vw, 640px); transform: translate(-50%, -54%); z-index: 0; opacity: .5; pointer-events: none; }
.enso path { fill: none; stroke: var(--sage); stroke-width: 2.4; stroke-linecap: round; opacity: .5;
  stroke-dasharray: 1650; stroke-dashoffset: 1650; animation: draw 3.4s var(--ease) .3s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.heroInner { position: relative; z-index: 1; }
.heroMark { justify-content: center; margin-bottom: 40px; }
.heroTitle { font-size: clamp(2.5rem, 6.6vw, 5.3rem); font-weight: 400; line-height: 1.28; letter-spacing: 0.02em; }
.heroTitle em { font-style: italic; color: var(--sage); }
.heroLede { max-width: 44ch; margin: 34px auto 0; color: var(--soft); font-size: 16px; line-height: 2.0; font-weight: 300; }
.heroActions { margin-top: 52px; display: flex; justify-content: center; gap: 34px; flex-wrap: wrap; }

/* ============================================================ SECTION SCAFFOLD */
.section { padding-block: clamp(64px, 10vw, 140px); }
.section--tint { background: var(--rice-2); }
.secTop { text-align: center; margin-bottom: clamp(56px, 8vw, 96px); }
.secTop .mark { justify-content: center; margin-bottom: 26px; }
.secTitle { font-size: clamp(1.9rem, 4vw, 3.1rem); font-weight: 400; line-height: 1.32; letter-spacing: 0.02em; }
.secTitle em { font-style: italic; color: var(--sage); }
.secLede { max-width: 46ch; margin: 26px auto 0; color: var(--soft); font-weight: 300; line-height: 1.95; }

/* ============================================================ PILLARS (calm stack) */
.pillars { display: grid; gap: clamp(60px, 8vw, 96px); }
.pillar { text-align: center; max-width: 640px; margin-inline: auto; }
.pillar .num { font-family: var(--serif); font-size: 30px; color: var(--sage); display: block; margin-bottom: 20px; font-weight: 400; }
.pillar h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 400; letter-spacing: 0.03em; }
.pillar p { margin: 20px 0 0; color: var(--soft); font-weight: 300; line-height: 2.0; font-size: 15.5px; }
.pillar .en { display: block; margin-top: 14px; font-family: var(--serif); font-size: 13px; letter-spacing: 0.4em; color: var(--faint); text-transform: uppercase; }

/* ============================================================ MISSION / VISION */
.mvGrid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 8vw, 120px); max-width: 980px; margin-inline: auto; }
.mv h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 400; letter-spacing: 0.03em; margin-bottom: 20px; }
.mv .lab { font-family: var(--sans); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--sage); display: block; margin-bottom: 16px; }
.mv p { margin: 0; color: var(--soft); font-weight: 300; line-height: 2.0; font-size: 15px; }
.mv .en { display: block; margin-top: 18px; font-family: var(--serif); font-size: 13px; letter-spacing: 0.4em; color: var(--faint); text-transform: uppercase; }

/* ============================================================ CAPABILITIES (quiet list) */
.capList { max-width: 820px; margin-inline: auto; border-top: 1px solid var(--line); }
.capItem { display: grid; grid-template-columns: 44px 1fr auto; gap: clamp(16px, 3vw, 40px); align-items: baseline;
  padding: clamp(24px, 3vw, 34px) 0; border-bottom: 1px solid var(--line); transition: background .5s ease; }
.capItem:hover { background: color-mix(in srgb, var(--sage) 5%, transparent); }
.capItem .n { font-family: var(--serif); color: var(--faint); font-size: 15px; }
.capItem h3 { font-size: clamp(1.15rem, 2.2vw, 1.5rem); font-weight: 400; letter-spacing: 0.02em; }
.capItem p { margin: 8px 0 0; color: var(--soft); font-weight: 300; font-size: 14.5px; line-height: 1.85; max-width: 46ch; }
.capItem .en { font-family: var(--serif); font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--faint); white-space: nowrap; }

/* ============================================================ ORIGIN */
.originWrap { max-width: 860px; margin-inline: auto; text-align: center; }
.origin p.body { max-width: 52ch; margin: 30px auto 0; color: var(--soft); font-weight: 300; line-height: 2.0; }
.originData { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: clamp(56px, 7vw, 88px); background: var(--line); border: 1px solid var(--line); }
.od { background: var(--rice); padding: 30px 18px; }
.section--tint .od { background: var(--rice-2); }
.od dt { font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--faint); margin: 0 0 12px; }
.od dd { margin: 0; font-family: var(--serif); font-size: clamp(1.05rem, 2vw, 1.4rem); font-weight: 400; }

/* ============================================================ RETAIL (taïker) */
.retail { text-align: center; }
.retail .enso { opacity: .34; width: clamp(280px, 34vw, 460px); }
.retail .lab { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--sage); }
.retailName { font-family: var(--serif); font-size: clamp(3rem, 9vw, 6.4rem); font-weight: 400; letter-spacing: 0.04em; margin: 22px 0 0; }
.retail p.body { max-width: 42ch; margin: 26px auto 0; color: var(--soft); font-weight: 300; line-height: 2.0; }
.retailTags { margin: 30px 0 44px; color: var(--faint); font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; }
.retailTags span::after { content: " · "; }
.retailTags span:last-child::after { content: ""; }

/* ============================================================ CLIENTS (quiet register) */
.clientsList { max-width: 900px; margin: 0 auto; text-align: center; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 34px; }
.clientsList span { font-size: 14px; letter-spacing: 0.16em; color: var(--soft); font-weight: 300; }

/* ============================================================ CTA */
.cta { text-align: center; }
.cta h2 { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 400; line-height: 1.32; letter-spacing: 0.02em; }
.cta h2 em { font-style: italic; color: var(--sage); }
.cta p { margin: 24px 0 44px; color: var(--soft); font-weight: 300; }

/* ============================================================ FOOTER */
.foot { border-top: 1px solid var(--line); padding-block: clamp(60px, 8vw, 100px) 40px; }
.footGrid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: clamp(30px, 5vw, 64px); }
.footBrand .n { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 500; letter-spacing: 0.05em; }
.footBrand p { margin: 18px 0 0; max-width: 30ch; color: var(--soft); font-weight: 300; line-height: 1.9; font-size: 14px; }
.footCol h4 { margin: 0 0 18px; font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--faint); font-weight: 500; }
.footCol ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footCol a { font-size: 13.5px; color: var(--soft); font-weight: 300; letter-spacing: 0.04em; transition: color .3s ease; }
.footCol a:hover { color: var(--sumi); }
.footBar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: clamp(50px, 7vw, 84px); padding-top: 26px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.footBar p { margin: 0; font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); }
.footBar .soc { display: flex; gap: 16px; align-items: center; }
.footBar .soc a { display: inline-flex; color: var(--faint); transition: color .3s ease; }
.footBar .soc a svg { width: 17px; height: 17px; }
.footBar .soc a:hover { color: var(--sage); }

/* ============================================================ REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .enso path { stroke-dashoffset: 0; animation: none; }
}

/* ============================================================ RESPONSIVE */
@media (max-width: 860px) {
  .mvGrid { grid-template-columns: 1fr; gap: 44px; }
  .originData { grid-template-columns: 1fr; }
  .footGrid { grid-template-columns: 1fr 1fr; }
  .footBrand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .capItem { grid-template-columns: 28px 1fr; }
  .capItem .en { grid-column: 2; }
  .footGrid { grid-template-columns: 1fr; }
  .heroActions { flex-direction: column; align-items: center; gap: 22px; }
}

/* ============================================================
   ============================================================
   MULTI-PAGE ADDITIONS — appended, nothing above is altered.
   Same tokens only: rice / rice-2 / sumi / soft / faint / line,
   and --sage as the one accent.
   ============================================================
   ============================================================ */

/* ------------------------------------------------------------ shared prose */
.body { max-width: 52ch; margin: 30px auto 0; color: var(--soft); font-weight: 300; line-height: 2.0; font-size: 15.5px; }

/* ------------------------------------------------------------ BRAND MARK (logo) */
.brand { display: inline-flex; align-items: center; }
.brandMark { height: 26px; width: auto; }
.siteHeader.isScrolled .brandMark { height: 23px; transition: height .3s ease; }
.footMark { height: 36px; width: auto; }

/* current page — a whisper of sage under the label */
.nav a[aria-current="page"] { color: var(--sumi); position: relative; }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -8px;
  height: 1px; background: var(--sage); opacity: .5;
}

/* ------------------------------------------------------------ PAGE OPENING */
.pageHead { text-align: center; padding-block: clamp(66px, 12vh, 140px) clamp(20px, 4vw, 44px); }
.pageHead .mark { justify-content: center; margin-bottom: 34px; }
.pageTitle { font-size: clamp(2.2rem, 5.4vw, 4.2rem); font-weight: 400; line-height: 1.3; letter-spacing: 0.02em; }
.pageTitle em { font-style: italic; color: var(--sage); }
.pageLede { max-width: 46ch; margin: 34px auto 0; color: var(--soft); font-weight: 300; line-height: 2.0; font-size: 15.5px; }

/* a link that closes a section */
.secMore { display: flex; justify-content: center; margin-top: clamp(52px, 7vw, 84px); }

/* ------------------------------------------------------------ FIGURE — an image is an event */
.fig { margin: 0 auto; padding-block: clamp(32px, 5vw, 64px); max-width: 1080px; }
.fig img { width: 100%; height: clamp(260px, 44vh, 500px); object-fit: cover; filter: saturate(.92); }
.fig figcaption {
  display: flex; align-items: baseline; gap: 14px; margin-top: 20px;
  font-size: 11px; font-weight: 400; letter-spacing: 0.26em; text-transform: uppercase; color: var(--faint);
}
.fig figcaption .num { font-family: var(--serif); font-size: 14px; letter-spacing: 0; color: var(--sage); }
.fig--narrow { max-width: 820px; }
.fig--tall img { height: clamp(300px, 56vh, 620px); }

/* ------------------------------------------------------------ VOID — the flat-lay, emptiness as subject */
.void {
  position: relative; display: grid; place-items: center; overflow: hidden;
  min-height: clamp(440px, 78vh, 720px); padding-block: clamp(70px, 10vw, 120px);
}
.voidImg { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.void::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: color-mix(in srgb, var(--rice) 34%, transparent);
}
.voidInner { position: relative; z-index: 2; text-align: center; padding-inline: var(--pad); max-width: 760px; }
.voidInner .mark { justify-content: center; margin-bottom: 30px; }
.voidTitle { font-size: clamp(1.9rem, 4.8vw, 3.4rem); font-weight: 400; line-height: 1.34; letter-spacing: 0.02em; }
.voidTitle em { font-style: italic; color: var(--sage); }
.voidLede { max-width: 42ch; margin: 26px auto 42px; color: var(--soft); font-weight: 300; line-height: 2.0; font-size: 15px; }

.void--sm { min-height: clamp(280px, 44vh, 420px); padding-block: clamp(48px, 6vw, 72px); }
.section--tight { padding-block: clamp(40px, 6vw, 80px); }

/* ------------------------------------------------------------ CLIENT WALL — no borders, no cards */
.clientWall {
  list-style: none; margin: 0 auto; padding: 0; max-width: none;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(38px, 5.4vw, 78px) clamp(32px, 5vw, 96px);
}
.clientWall li { width: clamp(78px, 8.6vw, 104px); }
.clientWall img {
  width: 100%; height: 40px; object-fit: contain;
  filter: grayscale(1); opacity: .62;
  transition: opacity 1s var(--ease), filter 1s var(--ease);
}
.clientWall img:hover { filter: grayscale(0); opacity: 1; }

/* ------------------------------------------------------------ TIMELINE — a hairline, and a lot of air */
.timeline { max-width: 740px; margin-inline: auto; }
.tl {
  position: relative; border-left: 1px solid var(--line);
  padding: 0 0 clamp(52px, 7vw, 92px) clamp(30px, 5vw, 66px);
}
.tl:last-child { padding-bottom: 0; }
.tl::before {
  content: ""; position: absolute; left: -4px; top: 13px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--sage); opacity: .75;
}
.tl .yr { display: block; font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 400; letter-spacing: 0.05em; color: var(--sage); }
.tl h3 { margin-top: 14px; font-size: clamp(1.15rem, 2.2vw, 1.5rem); font-weight: 400; letter-spacing: 0.02em; }
.tl p { margin: 16px 0 0; max-width: 44ch; color: var(--soft); font-weight: 300; line-height: 2.0; font-size: 15px; }

/* ------------------------------------------------------------ CAPABILITY DETAIL (wholesale) */
.capItem .get { display: block; margin-top: 16px; font-size: 13.5px; font-weight: 300; line-height: 1.9; color: var(--soft); max-width: 46ch; }
.capItem .get b { font-family: var(--sans); font-weight: 500; font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--sage); margin-right: 12px; }

/* ------------------------------------------------------------ FLOW — how we work */
.flow {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(26px, 3.4vw, 46px);
  max-width: 1000px; margin-inline: auto;
  border-top: 1px solid var(--line); padding-top: clamp(36px, 4.4vw, 56px);
}
.flowStep .n { font-family: var(--serif); font-size: 15px; color: var(--sage); }
.flowStep h3 { margin-top: 16px; font-size: 1.05rem; font-weight: 400; letter-spacing: 0.02em; }
.flowStep p { margin: 12px 0 0; color: var(--soft); font-weight: 300; font-size: 13.5px; line-height: 1.9; }

/* ------------------------------------------------------------ CATEGORIES (taïker) */
.catGrid { display: grid; grid-template-columns: 1fr 1fr; max-width: 900px; margin-inline: auto; border-top: 1px solid var(--line); }
.cat {
  display: block; padding: clamp(34px, 4.6vw, 60px) clamp(22px, 3vw, 44px);
  border-bottom: 1px solid var(--line); border-right: 1px solid var(--line);
  transition: background .6s var(--ease);
}
.cat:nth-child(2n) { border-right: 0; }
.cat:hover { background: color-mix(in srgb, var(--sage) 5%, transparent); }
.cat .n { font-family: var(--serif); font-size: 15px; color: var(--faint); }
.cat h3 { margin-top: 18px; font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 400; letter-spacing: 0.02em; }
.cat p { margin: 16px 0 0; max-width: 34ch; color: var(--soft); font-weight: 300; font-size: 14.5px; line-height: 1.95; }
.cat .go { display: inline-block; margin-top: 24px; font-size: 10.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--sage); transition: letter-spacing .55s var(--ease); }
.cat:hover .go { letter-spacing: 0.34em; }

.cat .photo.placeholder {
  display: block; aspect-ratio: 4 / 3; margin-bottom: 20px;
  border: 1px dashed var(--line); background: var(--rice-2);
  position: relative;
}
.cat .photo.placeholder::after {
  content: attr(data-note);
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 10px; font-size: 10px; letter-spacing: 0.08em;
  color: var(--faint); font-family: var(--sans);
}

/* the retail hero needs to hold its own ensō */
.retail { position: relative; overflow: hidden; }

/* ------------------------------------------------------------ CONTACT */
.contactGrid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(56px, 8vw, 130px); max-width: 1040px; margin-inline: auto; }
.contactData { margin: 0; display: grid; gap: clamp(32px, 4vw, 46px); align-content: start; }
.cd dt { font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--faint); margin: 0 0 14px; }
.cd dd { margin: 0; font-family: var(--serif); font-size: clamp(1.05rem, 2vw, 1.35rem); font-weight: 400; letter-spacing: 0.02em; }
.cd dd a { transition: color .3s ease; }
.cd dd a:hover { color: var(--sage); }
.cd .geo { display: block; margin-top: 10px; font-family: var(--sans); font-size: 11.5px; letter-spacing: 0.2em; color: var(--faint); }
.socInline { display: flex; gap: 18px; align-items: center; }
.socInline a { display: inline-flex; color: var(--sumi); transition: color .3s ease; }
.socInline a:hover { color: var(--sage); }

/* form — almost invisible: hairlines only */
.form { display: grid; gap: clamp(36px, 4.6vw, 54px); }
.f2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 4vw, 54px); }
.field { position: relative; }
.field label { display: block; font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--faint); margin-bottom: 16px; }
.field input,
.field select,
.field textarea {
  width: 100%; display: block; background: transparent; color: var(--sumi);
  border: 0; border-bottom: 1px solid var(--line); border-radius: 0;
  padding: 0 0 13px; font-family: var(--sans); font-size: 15px; font-weight: 300; line-height: 1.8;
  -webkit-appearance: none; appearance: none;
  transition: border-color .55s var(--ease);
}
.field textarea { min-height: 104px; resize: vertical; line-height: 2.0; }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-bottom-color: var(--sage); }
.field input::placeholder,
.field textarea::placeholder { color: var(--faint); font-weight: 300; }
.field--sel::after {
  content: "↓"; position: absolute; right: 2px; bottom: 12px;
  font-size: 12px; color: var(--faint); pointer-events: none;
}
.formActions { margin-top: clamp(8px, 2vw, 20px); }
button.qlink { background: none; border-style: solid; border-width: 0 0 1px; cursor: pointer; font-family: var(--sans); padding: 0 0 6px; }
.formNote { margin: 22px 0 0; font-size: 11.5px; letter-spacing: 0.1em; color: var(--faint); font-weight: 300; }

/* ------------------------------------------------------------ FOOTER additions */
.footCol li span { font-size: 13.5px; color: var(--faint); font-weight: 300; letter-spacing: 0.04em; }

/* ------------------------------------------------------------ RESPONSIVE (multi-page) */
@media (max-width: 980px) {
  .flow { grid-template-columns: 1fr 1fr; gap: clamp(30px, 4vw, 44px) clamp(30px, 5vw, 56px); }
}
@media (max-width: 860px) {
  .contactGrid { grid-template-columns: 1fr; gap: 64px; }
  .catGrid { grid-template-columns: 1fr; }
  .cat { border-right: 0; }
}
@media (max-width: 560px) {
  .flow { grid-template-columns: 1fr; }
  .f2 { grid-template-columns: 1fr; gap: 36px; }
  .clientWall { gap: 32px 30px; }
  .clientWall li { width: 86px; }
  .clientWall img { height: 42px; }
  .fig img { height: clamp(220px, 40vh, 300px); }
}

/* ============================================================
   ============================================================
   REVISION — nav drawer, image placeholders, certificate grid,
   client-wall bump. Appended; nothing above is altered.
   ============================================================
   ============================================================ */

/* ------------------------------------------------------------ CLIENT WALL — +5% */
.clientWall li  { width: clamp(110px, 12vw, 160px); }
.clientWall img { height: 64px; }

/* ------------------------------------------------------------ FIG placeholder — dashed hairline, rice-2 fill */
.fig .placeholder {
  width: 100%;
  height: clamp(260px, 44vh, 500px);
  border: 1px dashed var(--line);
  background: var(--rice-2);
  position: relative;
}
.fig--tall .placeholder { height: clamp(300px, 56vh, 620px); }
.fig .placeholder::after {
  content: attr(data-note);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 20px; text-align: center;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.08em;
  color: var(--faint);
}

/* ------------------------------------------------------------ CERTIFICATE grid */
.certGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 2.8vw, 38px);
  max-width: 1040px;
  margin-inline: auto;
}
.cert { display: block; text-align: center; }
.cert--big { grid-column: 1 / -1; }
.cert .plate {
  width: 100%;
  aspect-ratio: 3 / 4;
  border: 0;
  background: var(--rice);
  position: relative;
  overflow: hidden;
}
.cert .plate img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.cert--big .plate { aspect-ratio: 16 / 7; }
.section--tint .cert .plate { background: var(--rice-2); }
.cert .plate.placeholder { border: 1px dashed var(--line); }
.cert .plate.placeholder::after {
  content: attr(data-note);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 14px;
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--faint);
}

/* ------------------------------------------------------------ NAV DRAWER (hamburger, mobile + tablet) */
.navToggle {
  display: none;
  background: none; border: 0;
  padding: 10px; margin: -10px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.navToggle .bar {
  display: block;
  width: 22px; height: 1px;
  background: var(--sumi);
  margin: 5px 0;
  transition: transform .35s var(--ease), opacity .25s ease;
}
.navToggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.navToggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.navToggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .siteHeader {
    height: 64px;
    flex-direction: row;
    align-items: center;
    padding-block: 0;
    gap: 0;
    position: sticky;
  }
  .siteHeader.isScrolled { height: 58px; }
  .navToggle { display: inline-block; }

  .nav {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: color-mix(in srgb, var(--rice) 96%, transparent);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;
    padding: 0 var(--pad);
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s var(--ease), padding .45s var(--ease), border-color .3s ease;
    border-bottom-color: transparent;
  }
  .siteHeader.isOpen .nav {
    max-height: 82vh;
    padding: 8px var(--pad) 22px;
    border-bottom-color: var(--line);
  }
  .nav a {
    padding: 16px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    letter-spacing: 0.18em;
    color: var(--soft);
  }
  .nav a:last-child { border-bottom: 0; }
  .nav a[aria-current="page"] { color: var(--sage); }
  .nav a[aria-current="page"]::after { display: none; }
  .nav .shop::after { content: " ↗"; }

  .brandMark { height: 22px; }
  .siteHeader.isScrolled .brandMark { height: 22px; }
}

@media (max-width: 860px) {
  .certGrid { grid-template-columns: repeat(2, 1fr); gap: clamp(22px, 4vw, 32px); }
}
@media (max-width: 420px) {
  .certGrid { grid-template-columns: 1fr; max-width: 320px; }
}

/* ------------------------------------------------------------ TIMELINE — chapter layout (text | photo) */
.timeline { max-width: 1040px; }
.tl {
  display: grid;
  grid-template-columns: 1fr clamp(240px, 32vw, 380px);
  gap: clamp(28px, 4.5vw, 60px);
  align-items: start;
}
.tlText { min-width: 0; }
.tlPhoto {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--rice);
  border: 0;
  position: relative;
}
.tlPhoto img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.section--tint .tlPhoto { background: var(--rice-2); }
.tlPhoto.placeholder { border: 1px dashed var(--line); }
.tlPhoto.placeholder::after {
  content: attr(data-note);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 14px; text-align: center;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.08em;
  color: var(--faint);
}
@media (max-width: 720px) {
  .tl { grid-template-columns: 1fr; gap: 24px; }
  .tlPhoto { max-width: 420px; }
}

/* ------------------------------------------------------------ VOID placeholder — dashed full-bleed */
.void > .placeholder {
  position: absolute; inset: 0; z-index: 0;
  border: 2px dashed var(--faint);
  background: var(--rice-2);
}
.void > .placeholder::after {
  content: attr(data-note);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 30px; text-align: center;
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.1em;
  color: var(--faint);
}

/* ------------------------------------------------------------ CAP GRID — image cards (wholesale capabilities) */
.capGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 3.4vw, 52px) clamp(26px, 3vw, 44px);
  max-width: 1120px;
  margin-inline: auto;
}
.capCard { display: block; }
.capCard .photo {
  display: block;
  aspect-ratio: 3 / 4;
  width: 100%;
  border: 1px solid var(--line);
  background: var(--rice);
  position: relative;
  margin-bottom: 22px;
  overflow: hidden;
  transition: border-color .55s var(--ease);
}
.capCard .photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.section--tint .capCard .photo { background: var(--rice-2); }
.capCard .photo.placeholder { border-style: dashed; }
.capCard .photo.placeholder::after {
  content: attr(data-note);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 12px; text-align: center;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.08em;
  color: var(--faint);
}
.capCard:hover .photo { border-color: var(--sage); }
.capCard .photo.isZoomable { cursor: zoom-in; }
.capCard .photo.isZoomable:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; }
.capCard .n {
  font-family: var(--serif); font-size: 14px;
  color: var(--sage);
}
.capCard h3 {
  margin: 10px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400; letter-spacing: 0.02em;
}
.capCard .en {
  display: block; margin-top: 10px;
  font-family: var(--serif); font-size: 12px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--faint);
}
@media (max-width: 860px) {
  .capGrid { grid-template-columns: repeat(2, 1fr); gap: clamp(28px, 4vw, 40px) clamp(22px, 3vw, 30px); }
}
@media (max-width: 520px) {
  .capGrid { grid-template-columns: 1fr; max-width: 380px; gap: 36px; }
}

/* ------------------------------------------------------------ LIGHTBOX — enlarged capCard photo */
body.lightboxLock { overflow: hidden; }
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(24px, 6vw, 64px);
  background: color-mix(in srgb, var(--sumi) 92%, transparent);
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s var(--ease);
}
.lightbox.isOpen { opacity: 1; visibility: visible; }
.lightbox__figure {
  margin: 0; max-width: min(960px, 100%);
  display: flex; flex-direction: column; align-items: center;
  background: transparent;
  transform: scale(.97); transition: transform .4s var(--ease);
}
.lightbox.isOpen .lightbox__figure { transform: scale(1); }
.lightbox__img {
  display: block; max-width: 100%; max-height: 78vh;
  width: auto; height: auto; object-fit: contain;
  background: transparent;
}
.lightbox__caption {
  margin-top: 20px;
  font-family: var(--serif); font-size: 13px; letter-spacing: 0.06em;
  color: var(--rice); text-align: center;
}
.lightbox__close {
  position: absolute; top: clamp(16px, 3vw, 32px); right: clamp(16px, 3vw, 32px);
  width: 42px; height: 42px;
  border: 1px solid color-mix(in srgb, var(--rice) 40%, transparent);
  background: transparent; color: var(--rice);
  font-size: 26px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.lightbox__close:hover { border-color: var(--rice); background: color-mix(in srgb, var(--rice) 10%, transparent); }
