/* =============================================
   トゥモローステッド道具店 — 生活道具・雑貨EC
   生成り × 炭 × からし色／民藝ナチュラル
   ============================================= */
:root {
  --cream: #f6f2e9;
  --sumi: #2b2724;
  --karashi: #c2921e;
  --karashi-deep: #96700f;
  --karashi-pale: #f0e5c8;
  --wood: #8a6f4d;
  --grey: #7c7568;
  --line: #e0d8c6;
  --white: #fffdf7;
  --disp: 'Kaisei Decol', serif;
  --sans: 'Zen Kaku Gothic New', sans-serif;
  --latin: 'Karla', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--sumi);
  line-height: 1.95;
  font-size: 14.5px;
  letter-spacing: .03em;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--sans); }

/* reveal */
.js .rv { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.js .rv.on { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .rv { opacity: 1; transform: none; transition: none; }
}

/* ---------- announcement ---------- */
.annc {
  background: var(--sumi);
  color: #efe9da;
  text-align: center;
  font-size: 11.5px;
  letter-spacing: .12em;
  padding: 7px 12px;
}
.annc b { color: #e9c463; font-weight: 700; }

/* ---------- header ---------- */
.hd {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 242, 233, .93);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.hd-in {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 62px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.logo svg { width: 32px; height: 32px; }
.logo .lt { display: flex; flex-direction: column; line-height: 1.25; }
.logo .lt b { font-family: var(--disp); font-weight: 700; font-size: 16px; letter-spacing: .08em; white-space: nowrap; }
.logo .lt span { font-family: var(--latin); font-size: 8.5px; letter-spacing: .3em; color: var(--grey); }
.gnav { display: flex; gap: 22px; }
.gnav a { font-size: 13px; letter-spacing: .1em; font-weight: 500; position: relative; padding: 4px 0; }
.gnav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px;
  background: var(--karashi); transform: scaleX(0); transform-origin: right; transition: transform .3s ease;
  border-radius: 2px;
}
.gnav a:hover::after { transform: scaleX(1); transform-origin: left; }
.acct-link, .cart-link { position: relative; display: inline-flex; align-items: center; }
.acct-link svg, .cart-link svg { width: 22px; height: 22px; }
.acct-link.in::after {
  content: ''; position: absolute; top: -3px; right: -4px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--karashi);
}
.cart-badge {
  position: absolute; top: -7px; right: -9px;
  min-width: 17px; height: 17px; border-radius: 9px;
  background: var(--karashi-deep); color: #fff;
  font-family: var(--latin); font-size: 10.5px; line-height: 17px; text-align: center;
  padding: 0 4px; transform: scale(0); transition: transform .25s ease;
}
.cart-badge.show { transform: scale(1); }
.mm-open { display: none; }

/* ---------- mobile menu ---------- */
.mmenu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--cream);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 18px;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.mmenu.open { opacity: 1; pointer-events: auto; }
.mmenu a { font-family: var(--disp); font-size: 19px; letter-spacing: .1em; font-weight: 700; }
.mmenu .mm-close {
  position: absolute; top: 18px; right: 20px;
  background: none; border: 1px solid var(--line); border-radius: 50%;
  width: 42px; height: 42px; font-size: 15px; cursor: pointer; color: var(--sumi);
}

/* ---------- hero（ベントーグリッド） ---------- */
.hero { max-width: 1200px; margin: 0 auto; padding: 26px 20px 10px; }
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 210px 210px;
  gap: 14px;
}
.tile { position: relative; overflow: hidden; border-radius: 12px; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.tile:hover img { transform: scale(1.04); }
.tile .tcap {
  position: absolute; left: 12px; bottom: 10px;
  background: var(--white); font-size: 10.5px; letter-spacing: .12em; font-weight: 700;
  padding: 5px 12px; border-radius: 999px;
}
.tile-txt {
  grid-column: 1 / 3; grid-row: 1 / 3;
  background: var(--karashi-pale);
  border-radius: 12px;
  display: flex; flex-direction: column; justify-content: center;
  padding: 40px 38px;
}
.tile-txt .en { font-family: var(--latin); font-size: 11px; letter-spacing: .34em; color: var(--karashi-deep); margin-bottom: 14px; }
.tile-txt h1 {
  font-family: var(--disp); font-weight: 700;
  font-size: clamp(24px, 2.9vw, 36px); letter-spacing: .08em; line-height: 1.65;
  margin-bottom: 16px;
}
.tile-txt p { font-size: 13px; color: var(--grey); margin-bottom: 24px; max-width: 380px; }
.tile-txt .btns { display: flex; gap: 12px; flex-wrap: wrap; }
.tile-tall { grid-row: 1 / 3; }
.btn-fill, .btn-line {
  display: inline-block; text-align: center;
  font-size: 12.5px; letter-spacing: .14em; font-weight: 700;
  padding: 12px 26px; border-radius: 999px;
  border: 1.5px solid var(--sumi);
  transition: background .3s ease, color .3s ease;
}
.btn-fill { background: var(--sumi); color: var(--cream); }
.btn-fill:hover { background: var(--karashi-deep); border-color: var(--karashi-deep); color: #fff; }
.btn-line { background: none; cursor: pointer; }
.btn-line:hover { background: var(--sumi); color: var(--cream); }

/* ---------- sections ---------- */
.sec { padding: 80px 20px; }
.sec-in { max-width: 1200px; margin: 0 auto; }
.sec-alt { background: var(--white); border-block: 1px solid var(--line); }
.sec-head { margin-bottom: 38px; }
.sec-head .en { font-family: var(--latin); font-size: 11px; letter-spacing: .34em; color: var(--karashi-deep); display: block; margin-bottom: 8px; }
.sec-head h2 { font-family: var(--disp); font-weight: 700; font-size: clamp(21px, 2.8vw, 28px); letter-spacing: .1em; }
.sec-head p.lead { margin-top: 12px; color: var(--grey); font-size: 13.5px; }

/* ---------- product cards ---------- */
.pgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px 20px; }
.pcard { display: flex; flex-direction: column; gap: 3px; }
.pthumb {
  position: relative; display: block; overflow: hidden;
  aspect-ratio: 1; background: #ece7da; margin-bottom: 12px; border-radius: 12px;
}
.pthumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.pcard:hover .pthumb img { transform: scale(1.05); }
.ptag {
  position: absolute; left: 10px; top: 10px;
  background: var(--sumi); color: var(--cream);
  font-size: 10px; letter-spacing: .12em; font-weight: 500; padding: 4px 12px; border-radius: 999px;
}
.fav-btn {
  position: absolute; right: 10px; top: 10px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--line); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s ease;
  z-index: 2;
}
.fav-btn:hover { transform: scale(1.1); }
.fav-btn svg { width: 17px; height: 17px; fill: none; stroke: var(--sumi); stroke-width: 1.6; }
.fav-btn.on svg { fill: #c04f4f; stroke: #c04f4f; }
.pname { font-size: 14px; font-weight: 700; letter-spacing: .05em; }
.pline { display: flex; align-items: center; gap: 10px; font-family: var(--latin); font-size: 14px; margin-top: 3px; }
.pline small { font-family: var(--sans); font-size: 10.5px; color: var(--grey); margin-left: -4px; }
.stk { font-family: var(--sans); font-size: 10px; letter-spacing: .1em; font-weight: 700; padding: 2px 10px; border-radius: 999px; }
.stk.low { background: #f5e3d8; color: #a05224; }
.stk.out { background: #e6e2d8; color: var(--grey); }
.more-link {
  display: inline-block; margin-top: 36px;
  font-size: 13px; letter-spacing: .14em; font-weight: 700;
  border-bottom: 2px solid var(--karashi); padding-bottom: 3px;
}
.more-link .arr { display: inline-block; transition: transform .3s ease; margin-left: 8px; }
.more-link:hover .arr { transform: translateX(6px); }

/* ---------- filter chips ---------- */
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 34px; }
.fchip {
  font-size: 12.5px; letter-spacing: .1em; font-weight: 500;
  padding: 9px 22px; border: 1.5px solid var(--line); border-radius: 999px;
  background: var(--white); color: var(--grey); cursor: pointer;
  transition: all .25s ease;
}
.fchip.act { background: var(--sumi); border-color: var(--sumi); color: var(--cream); }

/* ---------- story band ---------- */
.craft { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--white); border-block: 1px solid var(--line); }
.craft-img { overflow: hidden; }
.craft-img img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }
.craft-txt { display: flex; flex-direction: column; justify-content: center; padding: 70px 60px; }
.craft-txt .en { font-family: var(--latin); font-size: 11px; letter-spacing: .34em; color: var(--karashi-deep); margin-bottom: 12px; }
.craft-txt h2 { font-family: var(--disp); font-weight: 700; font-size: clamp(21px, 2.6vw, 27px); letter-spacing: .1em; line-height: 1.8; margin-bottom: 16px; }
.craft-txt p { font-size: 13.5px; color: var(--grey); margin-bottom: 12px; max-width: 460px; }
.craft-txt a { margin-top: 14px; align-self: flex-start; }

/* ---------- page head ---------- */
.phead { padding: 64px 20px 44px; text-align: center; border-bottom: 1px solid var(--line); }
.phead .en { font-family: var(--latin); font-size: 11px; letter-spacing: .38em; color: var(--karashi-deep); display: block; margin-bottom: 10px; }
.phead h1 { font-family: var(--disp); font-weight: 700; font-size: clamp(23px, 3.4vw, 32px); letter-spacing: .14em; }
.phead p { margin-top: 12px; color: var(--grey); font-size: 13px; }

/* ---------- product detail ---------- */
.crumbs { font-size: 12px; color: var(--grey); margin-bottom: 28px; display: flex; flex-wrap: wrap; gap: 6px; }
.crumbs a { border-bottom: 1px solid var(--line); }
.crumbs b { font-weight: 700; color: var(--sumi); }
.pd-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 54px; align-items: start; }
.pd-img { position: relative; aspect-ratio: 1; overflow: hidden; background: #ece7da; border-radius: 14px; }
.pd-img img { width: 100%; height: 100%; object-fit: cover; }
.pd-img .fav-btn { width: 40px; height: 40px; }
.pd-en { font-family: var(--latin); font-size: 11px; letter-spacing: .3em; color: var(--karashi-deep); margin-bottom: 8px; }
.pd-info h1 { font-family: var(--disp); font-weight: 700; font-size: clamp(22px, 2.6vw, 28px); letter-spacing: .1em; line-height: 1.6; }
.pd-price { font-family: var(--latin); font-size: 24px; margin: 10px 0 12px; }
.pd-price small { font-family: var(--sans); font-size: 11.5px; color: var(--grey); margin-left: 6px; }
.stock-note { font-size: 12px; font-weight: 700; letter-spacing: .1em; margin-bottom: 18px; display: inline-block; padding: 5px 16px; border-radius: 999px; }
.stock-note.ok { background: #e4ead6; color: #5c7034; }
.stock-note.low { background: #f5e3d8; color: #a05224; }
.stock-note.out { background: #e6e2d8; color: var(--grey); }
.pd-desc { font-size: 13.5px; margin-bottom: 14px; }
.pd-detail { font-size: 12px; color: var(--grey); border-left: 3px solid var(--karashi); padding-left: 14px; margin-bottom: 24px; }
.pd-buy { display: flex; gap: 14px; align-items: stretch; flex-wrap: wrap; }
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--sumi); background: var(--white); border-radius: 999px; overflow: hidden; }
.qty button { width: 42px; height: 48px; border: none; background: none; font-size: 17px; cursor: pointer; color: var(--sumi); }
.qty input, .qty span {
  width: 42px; text-align: center; border: none; background: none;
  font-family: var(--latin); font-size: 15px; height: 48px; line-height: 48px;
}
.qty input:focus { outline: 2px solid var(--karashi); }
.btn-cart {
  flex: 1; min-width: 190px;
  background: var(--sumi); color: var(--cream); border: 1.5px solid var(--sumi); cursor: pointer;
  font-size: 13.5px; letter-spacing: .16em; font-weight: 700; padding: 13px 28px; border-radius: 999px;
  transition: background .3s ease, border-color .3s ease;
}
.btn-cart:hover { background: var(--karashi-deep); border-color: var(--karashi-deep); color: #fff; }
.pd-note { font-size: 11.5px; color: var(--grey); margin-top: 14px; }
.pd-note a { border-bottom: 1px solid var(--line); }
.notify-box { background: var(--karashi-pale); border-radius: 12px; padding: 20px 22px; }
.notify-box p { font-size: 12.5px; font-weight: 700; margin-bottom: 12px; }
.notify-row { display: flex; gap: 10px; flex-wrap: wrap; }
.notify-row input {
  flex: 1; min-width: 180px;
  font-family: var(--sans); font-size: 14px;
  background: var(--white); border: 1.5px solid var(--sumi); border-radius: 999px; padding: 11px 18px;
}
.notify-row input:focus { outline: none; border-color: var(--karashi-deep); }
.notify-row .btn-cart { flex: 0 1 auto; min-width: 0; }

/* ---------- cart ---------- */
.cart-wrap { max-width: 860px; margin: 0 auto; }
.crow {
  display: grid; grid-template-columns: 88px 1fr auto auto;
  gap: 18px; align-items: center;
  padding: 22px 0; border-bottom: 1px solid var(--line);
}
.cimg { aspect-ratio: 1; overflow: hidden; background: #ece7da; border-radius: 10px; }
.cimg img { width: 100%; height: 100%; object-fit: cover; }
.cinfo { display: flex; flex-direction: column; gap: 2px; }
.cinfo a { font-size: 14.5px; font-weight: 700; letter-spacing: .05em; }
.cinfo span { font-family: var(--latin); font-size: 12.5px; color: var(--grey); }
.cdel {
  align-self: flex-start; margin-top: 6px;
  background: none; border: none; font-size: 11.5px; color: var(--grey);
  text-decoration: underline; cursor: pointer; padding: 0;
}
.crow .qty button, .crow .qty input, .crow .qty span { height: 38px; line-height: 38px; }
.crow .qty button { width: 34px; }
.cline { font-family: var(--latin); font-size: 16px; min-width: 84px; text-align: right; }
.csum { margin-top: 32px; margin-left: auto; max-width: 380px; }
.cfree {
  background: var(--karashi-pale); color: var(--karashi-deep);
  font-size: 12px; letter-spacing: .1em; font-weight: 700; text-align: center; padding: 9px 12px; margin-bottom: 18px; border-radius: 999px;
}
.csum dl { display: flex; justify-content: space-between; font-size: 13.5px; padding: 7px 0; }
.csum dd { font-family: var(--latin); }
.ctotal { border-top: 1.5px solid var(--sumi); margin-top: 8px; padding-top: 14px !important; font-size: 15px !important; font-weight: 700; }
.csum .btn-cart { width: 100%; margin-top: 18px; }
.cart-empty { text-align: center; padding: 60px 0; }
.cart-empty p { margin-bottom: 26px; color: var(--grey); }

/* ---------- demo modal ---------- */
.dmodal {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(43, 39, 36, .5);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.dmodal.open { opacity: 1; pointer-events: auto; }
.dmodal-in { background: var(--cream); max-width: 460px; padding: 44px 36px; text-align: center; border-radius: 16px; }
.dmodal-in .en { font-family: var(--latin); font-size: 11px; letter-spacing: .3em; color: var(--karashi-deep); display: block; margin-bottom: 12px; }
.dmodal-in h3 { font-family: var(--disp); font-weight: 700; font-size: 18px; letter-spacing: .1em; margin-bottom: 14px; }
.dmodal-in p { font-size: 13px; color: var(--grey); margin-bottom: 8px; }
.dmodal-in p a { color: var(--karashi-deep); border-bottom: 1px solid var(--karashi-deep); }
.dmodal-in button {
  margin-top: 18px; background: var(--sumi); color: var(--cream); border: none; border-radius: 999px;
  font-size: 13px; letter-spacing: .16em; font-weight: 700; padding: 12px 40px; cursor: pointer;
}

/* ---------- toast ---------- */
#toast {
  position: fixed; left: 50%; bottom: 30px; transform: translate(-50%, 20px);
  background: var(--sumi); color: var(--cream);
  font-size: 12.5px; letter-spacing: .12em; padding: 13px 30px; border-radius: 999px;
  opacity: 0; pointer-events: none; transition: all .35s ease; z-index: 110;
}
#toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- auth ---------- */
.auth-box { max-width: 440px; margin: 0 auto; }
.auth-tabs { display: flex; border-bottom: 1.5px solid var(--line); margin-bottom: 30px; }
.atab {
  flex: 1; background: none; border: none; cursor: pointer;
  font-size: 13.5px; letter-spacing: .14em; font-weight: 500;
  padding: 13px 0; color: var(--grey); position: relative;
}
.atab.act { color: var(--sumi); font-weight: 700; }
.atab.act::after {
  content: ''; position: absolute; left: 0; bottom: -1.5px; width: 100%; height: 3px; background: var(--karashi); border-radius: 2px;
}
.auth-form { display: flex; flex-direction: column; gap: 18px; }
.auth-form[hidden] { display: none; }
.auth-form label { font-size: 12px; letter-spacing: .12em; font-weight: 700; color: var(--grey); display: flex; flex-direction: column; gap: 7px; }
.auth-form input {
  font-family: var(--sans); font-size: 15px; color: var(--sumi);
  background: var(--white); border: 1.5px solid var(--line); border-radius: 12px; padding: 13px 16px;
}
.auth-form input:focus { outline: none; border-color: var(--karashi); }
.auth-form .btn-cart { margin-top: 6px; }
.auth-perks { margin-top: 38px; background: var(--karashi-pale); border-radius: 14px; padding: 24px 26px; }
.auth-perks .en { font-family: var(--latin); font-size: 10.5px; letter-spacing: .28em; color: var(--karashi-deep); margin-bottom: 10px; display: block; }
.auth-perks li { font-size: 13px; color: #6e6552; padding: 5px 0 5px 22px; position: relative; }
.auth-perks li::before { content: '◍'; position: absolute; left: 0; color: var(--karashi); }

/* ---------- mypage ---------- */
.mypage-wrap { max-width: 880px; margin: 0 auto; }
.mp-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 26px; }
.mp-sum-item { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 22px 20px; text-align: center; }
.mp-sum-item .en { font-family: var(--latin); font-size: 10px; letter-spacing: .26em; color: var(--karashi-deep); display: block; margin-bottom: 8px; }
.mp-sum-item b { font-family: var(--disp); font-weight: 700; font-size: 23px; display: block; letter-spacing: .06em; }
.mp-sum-item b small { font-size: 12px; margin-left: 3px; }
.mp-sum-item .mp-sub { font-size: 11px; color: var(--grey); display: block; margin-top: 5px; }
.mp-h { font-family: var(--disp); font-size: 17px; font-weight: 700; letter-spacing: .12em; margin: 44px 0 14px; display: flex; align-items: baseline; gap: 14px; }
.mp-h .en { font-family: var(--latin); font-size: 10.5px; letter-spacing: .26em; color: var(--karashi-deep); font-weight: 400; }
.mp-card { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 26px 28px; }
.mp-order { border-bottom: 1px solid var(--line); padding: 16px 0; }
.mp-order:first-child { padding-top: 0; }
.mp-order p { font-size: 12.5px; color: var(--grey); margin-top: 4px; }
.mp-o-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.mp-o-head b { font-family: var(--latin); font-size: 13px; letter-spacing: .05em; font-weight: 700; }
.mp-status { font-size: 10.5px; letter-spacing: .12em; font-weight: 700; padding: 4px 14px; border-radius: 999px; }
.mp-status.done { background: #e8e3d5; color: #6e6552; }
.mp-status.ship { background: var(--karashi-pale); color: var(--karashi-deep); }
.mp-info { display: grid; grid-template-columns: 150px 1fr; gap: 10px; font-size: 13px; padding: 9px 0; border-bottom: 1px solid var(--cream); }
.mp-info dt { color: var(--grey); letter-spacing: .1em; font-weight: 500; }
.mp-empty { font-size: 13px; color: var(--grey); }
#favGrid.pgrid { grid-template-columns: repeat(3, 1fr); }
.btn-s { font-size: 12px; padding: 9px 20px; background: none; cursor: pointer; font-weight: 700; border-radius: 999px; }

/* ---------- story ---------- */
.story-lead { max-width: 640px; margin: 0 auto; text-align: center; font-size: 14px; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 64px; }
.story-grid.flip .simg { order: 2; }
.simg { aspect-ratio: 4 / 3; overflow: hidden; border-radius: 14px; }
.simg img { width: 100%; height: 100%; object-fit: cover; }
.stxt .en { font-family: var(--latin); font-size: 11px; letter-spacing: .3em; color: var(--karashi-deep); display: block; margin-bottom: 12px; }
.stxt h3 { font-family: var(--disp); font-weight: 700; font-size: 20px; letter-spacing: .1em; margin-bottom: 14px; line-height: 1.7; }
.stxt p { font-size: 13.5px; color: var(--grey); }

/* ---------- guide ---------- */
.glist { max-width: 780px; margin: 0 auto; }
.glist dl { border-bottom: 1px solid var(--line); padding: 22px 0; display: grid; grid-template-columns: 190px 1fr; gap: 16px; }
.glist dt { font-size: 14px; font-weight: 700; letter-spacing: .08em; }
.glist dd { font-size: 13px; color: var(--grey); }

/* ---------- company ---------- */
.ctable { width: 100%; max-width: 780px; margin: 0 auto; border-collapse: collapse; }
.ctable th, .ctable td { border-bottom: 1px solid var(--line); padding: 17px 10px; font-size: 13px; text-align: left; vertical-align: top; }
.ctable th { width: 160px; font-weight: 700; letter-spacing: .08em; white-space: nowrap; }

/* ---------- cta ---------- */
.shop-cta { text-align: center; padding: 84px 20px; border-top: 1px solid var(--line); }
.shop-cta .en { font-family: var(--latin); font-size: 11px; letter-spacing: .34em; color: var(--karashi-deep); display: block; margin-bottom: 10px; }
.shop-cta h2 { font-family: var(--disp); font-weight: 700; font-size: clamp(20px, 2.8vw, 26px); letter-spacing: .12em; margin-bottom: 26px; }

/* ---------- footer ---------- */
.ft { background: var(--sumi); color: #cfc8b8; padding: 66px 20px 32px; }
.ft-in { max-width: 1200px; margin: 0 auto; }
.ft-logo { display: flex; align-items: center; gap: 10px; }
.ft-logo svg { width: 28px; height: 28px; }
.ft-logo b { font-family: var(--disp); font-weight: 700; font-size: 17px; letter-spacing: .1em; color: var(--cream); }
.ft-en { font-family: var(--latin); font-size: 9px; letter-spacing: .3em; color: #8f887a; margin-top: 6px; }
.ft nav { display: flex; flex-wrap: wrap; gap: 8px 24px; margin: 28px 0; }
.ft nav a { font-size: 12px; letter-spacing: .1em; }
.ft nav a:hover { color: var(--cream); }
.demo-note {
  border: 1px solid #55503f; border-radius: 12px; padding: 18px 20px;
  font-size: 11.5px; line-height: 2; color: #aaa393;
}
.demo-note strong { color: #e9c463; font-weight: 700; }
.demo-note a { color: #e9c463; border-bottom: 1px solid #e9c463; }
.copy { margin-top: 24px; font-family: var(--latin); font-size: 10px; letter-spacing: .2em; color: #837c6b; }
.copy a { border-bottom: 1px solid #837c6b; }

/* ---------- 404 ---------- */
.nf { text-align: center; padding: 120px 20px; }
.nf .en { font-family: var(--latin); font-size: 56px; letter-spacing: .1em; color: var(--karashi); }
.nf h1 { font-family: var(--disp); font-weight: 700; font-size: 19px; letter-spacing: .16em; margin: 12px 0 30px; }

/* ============ mobile ============ */
@media (max-width: 900px) {
  .gnav { display: none; }
  .annc-sub { display: none; }
  .hd-in { gap: 10px; padding: 0 12px; }
  .logo svg { width: 26px; height: 26px; }
  .logo .lt b { font-size: 13px; }
  .logo .lt span { display: none; }
  .mm-open {
    display: inline-flex; align-items: center; justify-content: center;
    background: none; border: 1.5px solid var(--sumi); border-radius: 999px;
    font-family: var(--latin); font-size: 10px; letter-spacing: .16em; font-weight: 700;
    padding: 8px 13px; cursor: pointer; color: var(--sumi);
  }
  .hero { padding: 16px 14px 4px; }
  .bento { grid-template-columns: 1fr 1fr; grid-template-rows: auto 150px 150px; gap: 10px; }
  .tile-txt { grid-column: 1 / 3; grid-row: 1; padding: 30px 24px; }
  .tile-tall { grid-row: auto; }
  .sec { padding: 58px 16px; }
  .pgrid { grid-template-columns: repeat(2, 1fr); gap: 26px 14px; }
  #favGrid.pgrid { grid-template-columns: repeat(2, 1fr); }
  .craft { grid-template-columns: 1fr; }
  .craft-img img { min-height: 250px; }
  .craft-txt { padding: 44px 24px; }
  .pd-grid { grid-template-columns: 1fr; gap: 30px; }
  .crow { grid-template-columns: 72px 1fr; grid-template-rows: auto auto; }
  .crow .qty { grid-column: 2; justify-self: start; }
  .cline { grid-column: 2; text-align: left; min-width: 0; margin-top: -6px; }
  .mp-summary { grid-template-columns: 1fr; }
  .mp-info { grid-template-columns: 1fr; gap: 3px; }
  .mp-card { padding: 20px 18px; }
  .story-grid { grid-template-columns: 1fr; gap: 24px; margin-top: 44px; }
  .story-grid.flip .simg { order: 0; }
  .glist dl { grid-template-columns: 1fr; gap: 6px; padding: 18px 0; }
  .ctable th { width: 110px; }
}
