/* ====================  FONTS  ==================== */
@font-face {
  font-family: 'Tanker';
  src: url('fonts/Tanker-Regular.otf?v=2') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ====================  TOKENS  ==================== */
:root {
  --bg-0: #070707;
  --bg-1: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #161616;
  --line: #232323;
  --cream: #ede4cf;
  --cream-dim: #bdb39c;
  --mute: #6f685b;
  --red: #e63946;
  --red-deep: #c1121f;
  --red-glow: rgba(230, 57, 70, 0.35);

  --font-display: 'Tanker', 'Archivo Black', 'Anton', 'Impact', sans-serif;
  --font-display-tall: 'Tanker', 'Anton', 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --font-jp: 'Noto Serif JP', serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --max: 1280px;
  --pad-x: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg-1);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
button { background: none; border: none; color: inherit; cursor: pointer; font: inherit; }
img, svg { display: block; max-width: 100%; }
input { font: inherit; color: inherit; }
::selection { background: var(--red); color: var(--bg-1); }

/* ====================  ATMOSPHERE  ==================== */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.vignette {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.7) 100%);
}

/* scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: var(--bg-3); border: 2px solid var(--bg-0); }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

/* ====================  HEADER  ==================== */
.header {
  position: sticky; top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--pad-x);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  line-height: 1;
  position: relative;
}

.logo-img {
  height: 65px;
  width: auto;
  display: block;
  margin: -10px 0;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 38px);
}

.nav-link {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--cream);
  opacity: 0.85;
  position: relative;
  padding: 6px 2px;
  transition: opacity 0.25s ease, color 0.25s ease;
  /* clean — no grunge */
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover { opacity: 1; }
.nav-link:hover::after { width: 100%; left: 0; }

.nav-link.is-active { color: var(--red); opacity: 1; }
.nav-link.is-active::after { width: 100%; left: 0; }

.header-actions {
  display: flex;
  gap: 6px;
  align-items: center;
}

.icon-btn {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  position: relative;
  transition: background 0.2s ease;
}
.icon-btn svg { width: 19px; height: 19px; }
.icon-btn:hover { background: rgba(255,255,255,0.05); }

.cart-btn .cart-badge {
  position: absolute;
  top: 2px; right: 0;
  background: var(--red);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 9px;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 600;
}

/* ====================  SHARED  ==================== */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--cream-dim);
  text-transform: uppercase;
}
.eyebrow-red { color: var(--red); }
.eyebrow-left { color: var(--cream-dim); margin-bottom: 30px; display: block; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(37px, 5.4vw, 73px);
  line-height: 0.94;
  letter-spacing: -0.005em;
  color: var(--cream);
  font-weight: 400;
  /* clean — no grunge */
}
.section-title .text-red { color: var(--red); }

.kanji-sub {
  display: block;
  font-family: var(--font-jp);
  font-weight: 700;
  color: var(--red);
  font-size: 18px;
  letter-spacing: 0.18em;
  margin-top: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 17px 30px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--cream);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* clean — no grunge */
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--cream);
  box-shadow: 0 0 0 0 var(--red-glow), 0 12px 30px -10px rgba(0,0,0,0.6);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red-deep);
  transform: translateX(-101%);
  transition: transform 0.35s cubic-bezier(.7,0,.3,1);
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 30px var(--red-glow), 0 12px 30px -10px rgba(0,0,0,0.6); }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary .arrow { transition: transform 0.3s ease; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.link-red {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--red);
  position: relative;
  padding-bottom: 4px;
  /* clean — no grunge */
}
.link-red::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 36px; height: 1.5px;
  background: var(--red);
  transition: width 0.3s ease;
}
.link-red:hover::after { width: 100%; }
.link-red .arrow { transition: transform 0.3s ease; display: inline-block; }
.link-red:hover .arrow { transform: translateX(5px); }
.link-center { margin: 50px auto 0; display: flex; justify-content: center; }

/* vertical kanji decoration */
.vkanji {
  writing-mode: vertical-rl;
  font-family: var(--font-jp);
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--cream-dim);
  display: flex;
  align-items: center;
  gap: 14px;
  user-select: none;
}
.vkanji-jp { color: var(--red); font-size: 18px; }
.vkanji-en {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.5em;
  color: var(--cream-dim);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.vkanji-divider {
  width: 1px;
  height: 30px;
  background: var(--cream-dim);
  opacity: 0.4;
}

/* ====================  HERO  ==================== */
.hero {
  position: relative;
  padding: clamp(40px, 7vh, 100px) var(--pad-x) clamp(50px, 8vh, 110px);
  min-height: 86vh;
  overflow: hidden;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% center;
  z-index: 0;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(7,7,7,0.92) 0%, rgba(7,7,7,0.75) 22%, rgba(7,7,7,0.25) 42%, transparent 60%);
  pointer-events: none;
}

.vkanji-hero {
  position: absolute;
  right: 22px;
  top: 80px;
  bottom: 80px;
  z-index: 4;
  height: auto;
}

.hero-grid {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1fr;
  align-items: center;
  gap: 40px;
  min-height: 76vh;
}

.hero-text {
  max-width: 520px;
}

.hero-text {
  display: flex; flex-direction: column;
  gap: 26px;
  animation: heroIn 1.1s cubic-bezier(.2,.7,.2,1) both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(50px, 6.8vw, 100px);
  line-height: 0.94;
  letter-spacing: -0.012em;
  color: var(--cream);
  font-weight: 400;
  /* clean — no grunge */
}
.hero-title .ht-accent {
  font-size: 0.62em;
  letter-spacing: -0.005em;
  display: block;
  margin-top: 6px;
}
.hero-title .ht-line {
  display: block;
  overflow: hidden;
}
.hero-title .ht-line > span,
.hero-title .ht-line {
  animation: lineRise 1s cubic-bezier(.2,.7,.2,1) both;
}
.hero-title .ht-line:nth-child(1) { animation-delay: 0.05s; }
.hero-title .ht-line:nth-child(2) { animation-delay: 0.2s; }
.hero-title .ht-accent {
  color: var(--red);
  animation-delay: 0.35s;
  text-shadow: 0 0 30px var(--red-glow);
}

.hero-sub {
  font-size: 14px;
  color: var(--cream-dim);
  max-width: 360px;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.hero-text .btn { align-self: flex-start; margin-top: 6px; }

@keyframes heroIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lineRise {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}

/* ====================  DROP  ==================== */
.drop {
  background: var(--bg-1);
  padding: clamp(60px, 9vw, 120px) var(--pad-x);
  position: relative;
}

.drop-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}

.drop-intro {
  display: flex; flex-direction: column;
  gap: 18px;
}

.drop-intro .eyebrow { margin-bottom: 6px; }
.drop-desc {
  color: var(--cream-dim);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 6px;
}
.drop-intro .link-red { margin-top: 8px; }

.drop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product {
  position: relative;
  cursor: pointer;
  display: flex; flex-direction: column;
  gap: 14px;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
}

.product-img {
  background: linear-gradient(180deg, #161616 0%, #0d0d0d 100%);
  border: 1px solid var(--line);
  aspect-ratio: 1 / 1.1;
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.4s ease;
}
.product-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(230,57,70,0) 0%, rgba(230,57,70,0) 100%);
  transition: background 0.5s ease;
  pointer-events: none;
}
.product-img svg,
.product-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
}

.product:hover { transform: translateY(-6px); }
.product:hover .product-img {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red), 0 30px 60px -20px rgba(230,57,70,0.4);
}
.product:hover .product-img::before {
  background: radial-gradient(circle at 50% 60%, rgba(230,57,70,0.2) 0%, rgba(230,57,70,0) 70%);
}
.product:hover .product-img svg,
.product:hover .product-img img { transform: scale(1.04); }

.product-hot::after {
  content: 'HOT';
  position: absolute;
  top: 12px; left: 12px;
  background: var(--red);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 4px 8px;
  z-index: 2;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.product-name {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--cream);
  /* clean — no grunge */
}
.product-price {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--cream-dim);
}

/* ====================  BRUSH DIVIDER  ==================== */
.brush-divider {
  height: 40px;
  background: var(--bg-1);
  position: relative;
}
.brush-divider svg { width: 100%; height: 100%; }

/* ====================  PHILOSOPHY  ==================== */
.philosophy {
  padding: clamp(110px, 14vw, 200px) var(--pad-x);
  background: var(--bg-0);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 560px;
}

.phi-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.95;
}

.philosophy::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7,7,7,0.88) 0%, rgba(7,7,7,0.55) 35%, rgba(7,7,7,0.1) 60%, rgba(7,7,7,0.0) 100%),
    linear-gradient(180deg, rgba(7,7,7,0.55) 0%, rgba(7,7,7,0) 25%, rgba(7,7,7,0) 75%, rgba(7,7,7,0.7) 100%);
  pointer-events: none;
}

.phi-grid {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
}

.phi-text {
  max-width: 520px;
  display: flex; flex-direction: column;
  gap: 26px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.85);
}
.phi-desc {
  color: var(--cream-dim);
  font-size: 14px;
  line-height: 1.75;
}

/* ====================  LEGENDS  ==================== */
.legends {
  padding: clamp(50px, 7vw, 100px) var(--pad-x);
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.legends-inner {
  max-width: var(--max);
  margin: 0 auto;
}

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

.legend {
  display: flex; flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 22px 14px;
  position: relative;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
}
.legend:hover {
  transform: translateY(-4px);
}
.legend::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--red);
  transition: width 0.4s ease, left 0.4s ease;
}
.legend:hover::after { width: 70%; left: 15%; }

.legend-icon {
  width: 88px; height: 88px;
  display: grid; place-items: center;
  filter: drop-shadow(0 0 0 transparent);
  transition: filter 0.4s ease, transform 0.6s cubic-bezier(.2,.7,.2,1);
}
.legend:hover .legend-icon {
  filter: drop-shadow(0 0 18px var(--red-glow));
  transform: scale(1.06) rotate(-2deg);
}
.legend-icon svg,
.legend-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
}
.legend:hover .legend-icon img { transform: scale(1.06) rotate(-2deg); }

.legend-name {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--cream);
  /* clean — no grunge */
}
.legend-jp {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 17px;
  color: var(--red);
  letter-spacing: 0.1em;
}

/* ====================  NEXT DROP  ==================== */
.next-drop {
  padding: clamp(60px, 8vw, 110px) var(--pad-x);
  background:
    radial-gradient(ellipse at 80% 50%, rgba(230,57,70,0.12) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 100%);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.next-bg {
  position: absolute;
  right: -6%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(420px, 52%, 780px);
  height: auto;
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
  -webkit-mask-image: radial-gradient(ellipse at 55% 50%, #000 24%, rgba(0,0,0,0.55) 50%, transparent 78%);
  mask-image: radial-gradient(ellipse at 55% 50%, #000 24%, rgba(0,0,0,0.55) 50%, transparent 78%);
}

.next-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(30px, 4vw, 60px);
  align-items: center;
}

.next-text {
  display: flex; flex-direction: column;
  gap: 12px;
}
.next-text .link-teaser { margin-top: 14px; align-self: flex-start; }

.next-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.preview-card {
  display: flex; flex-direction: column;
  gap: 8px;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
}
.preview-card:hover { transform: translateY(-4px); }
.preview-img {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1.1;
  background: linear-gradient(180deg, #161616 0%, #0d0d0d 100%);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.4s ease;
}
.preview-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
}
.preview-card:hover .preview-img {
  border-color: var(--red);
  box-shadow: 0 20px 40px -18px rgba(230, 57, 70, 0.35);
}
.preview-card:hover .preview-img img { transform: scale(1.05); }
.preview-name {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--cream);
}
.preview-price {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--cream-dim);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: end;
  justify-self: stretch;
}

.cd-unit {
  display: flex; flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}
.cd-unit + .cd-unit::before {
  content: ':';
  position: absolute;
  left: -10px;
  top: 22px;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 50px;
  opacity: 0.5;
}

.cd-num {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.4vw, 73px);
  line-height: 1;
  color: var(--red);
  letter-spacing: -0.005em;
  text-shadow: 0 0 40px rgba(230,57,70,0.4);
  font-variant-numeric: tabular-nums;
  transition: transform 0.3s ease;
  /* clean — no grunge */
}

.cd-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--cream-dim);
}

.next-art {
  position: relative;
  display: flex; flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}
.next-art svg { width: min(300px, 100%); }
.next-art-img {
  width: min(360px, 100%);
  height: auto;
  display: block;
  filter: drop-shadow(0 0 60px rgba(230,57,70,0.35));
}
.link-teaser { margin-right: 4px; }

/* ====================  INSTAGRAM  ==================== */
.instagram {
  padding: clamp(50px, 7vw, 90px) var(--pad-x);
  background: var(--bg-0);
  border-top: 1px solid var(--line);
}

.ig-header {
  max-width: var(--max);
  margin: 0 auto 30px;
}

.ig-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.ig-tile {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--line);
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1), border-color 0.3s ease;
}
.ig-tile svg,
.ig-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(.2,.7,.2,1), filter 0.5s ease;
}
.ig-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.ig-tile:hover {
  border-color: var(--red);
  z-index: 2;
}
.ig-tile:hover svg,
.ig-tile:hover img {
  transform: scale(1.1);
  filter: brightness(1.15);
}
.ig-tile:hover::after { opacity: 1; }

.ig-footer {
  max-width: var(--max);
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ig-label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--cream);
  /* clean — no grunge */
}

/* ====================  NEWSLETTER  ==================== */
.newsletter {
  padding: clamp(40px, 6vw, 70px) var(--pad-x);
  background: var(--bg-1);
  border-top: 1px solid var(--line);
}

.nl-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}

.nl-mark {
  display: flex; flex-direction: column;
  align-items: center;
  gap: 6px;
}
.nl-mark svg { width: 80px; height: 80px; }
.nl-mark-img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  display: block;
}
.nl-kanji {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 22px;
  color: var(--cream);
  letter-spacing: 0.05em;
}

.nl-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.7vw, 34px);
  letter-spacing: 0.01em;
  color: var(--cream);
  font-weight: 400;
  /* clean — no grunge */
}
.nl-desc {
  font-size: 13px;
  color: var(--cream-dim);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

.nl-form {
  display: flex;
  gap: 0;
  min-width: 460px;
}
.nl-input {
  flex: 1;
  padding: 16px 22px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-right: none;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--cream);
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.nl-input::placeholder { color: var(--mute); letter-spacing: 0.04em; }
.nl-input:focus { border-color: var(--red); background: var(--bg-3); }

.nl-btn {
  padding: 16px 36px;
  background: var(--red);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.28em;
  border: 1px solid var(--red);
  transition: background 0.3s ease;
}
.nl-btn:hover { background: var(--red-deep); border-color: var(--red-deep); }
.nl-form.is-sent .nl-btn { background: #2a8a3a; border-color: #2a8a3a; }
.nl-form.is-sent .nl-input { pointer-events: none; opacity: 0.6; }

/* ====================  FOOTER  ==================== */
.footer {
  background: var(--bg-0);
  border-top: 1px solid var(--line);
  padding: 30px var(--pad-x) 0;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 24px;
}

.footer-nav {
  display: flex;
  gap: clamp(16px, 2vw, 32px);
}
.footer-nav a {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--cream-dim);
  transition: color 0.25s ease;
  /* clean — no grunge */
}
.footer-nav a:hover { color: var(--red); }

.footer-meta {
  display: flex;
  align-items: center;
  gap: 30px;
}
.copyright {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--mute);
}
.socials {
  display: flex;
  gap: 14px;
}
.socials a {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cream-dim);
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.socials a svg { width: 15px; height: 15px; }
.socials a:hover {
  color: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}

.footer-marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  padding: 16px 0;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--mute);
  padding-right: 30px;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ====================  SHOP — HERO  ==================== */
.shop-hero {
  position: relative;
  padding: clamp(40px, 6vw, 80px) var(--pad-x) clamp(50px, 7vw, 90px);
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden;
  isolation: isolate;
}

.shop-hero-art {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: min(820px, 68%);
  height: auto;
  z-index: 0;
  pointer-events: none;
  opacity: 0.95;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
}

.shop-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 520px;
  display: flex; flex-direction: column;
  gap: 14px;
}

.shop-hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 11vw, 168px);
  line-height: 0.9;
  color: var(--cream);
  letter-spacing: -0.01em;
  font-weight: 400;
}

.shop-hero-kanji {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: 0.18em;
  color: var(--red);
}

.shop-hero-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--cream-dim);
  max-width: 320px;
  margin-top: 8px;
}

/* ====================  SHOP — LAYOUT  ==================== */
.shop-layout {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x) clamp(50px, 7vw, 90px);
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

/* ====================  SHOP — SIDEBAR  ==================== */
.shop-sidebar {
  display: flex; flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 110px;
}

.sidebar-heading {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.22em;
  color: var(--cream);
  font-weight: 400;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.filter-group {
  display: flex; flex-direction: column;
  gap: 12px;
}

.filter-group-title {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--red);
  font-weight: 400;
  text-align: left;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  padding: 0;
}
.filter-group-title.is-static { cursor: default; }
.filter-group-title .chev {
  font-size: 14px;
  color: var(--red);
  transition: transform 0.25s ease;
}

.filter-list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 8px;
}
.filter-link {
  display: inline-block;
  font-size: 13px;
  color: var(--cream-dim);
  letter-spacing: 0.02em;
  padding: 2px 0;
  transition: color 0.2s ease;
}
.filter-link:hover { color: var(--cream); }
.filter-link.is-active { color: var(--red); font-weight: 500; }

.filter-checks {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 10px;
}
.filter-checks label {
  display: flex; align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--cream-dim);
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}
.filter-checks label:hover { color: var(--cream); }
.filter-checks input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 14px; height: 14px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.filter-checks input[type="checkbox"]:checked {
  border-color: var(--red);
  background: var(--red);
}
.filter-checks input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 3px; top: 0px;
  width: 4px; height: 8px;
  border: solid var(--cream);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.size-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.size-chip {
  width: 32px; height: 32px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--cream);
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.size-chip:hover { border-color: var(--cream-dim); }
.size-chip.is-active { background: var(--red); border-color: var(--red); }

.color-swatches {
  display: flex; gap: 10px;
}
.color-swatch {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--sw, var(--bg-2));
  border: 1px solid var(--line);
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.color-swatch:hover { transform: scale(1.1); border-color: var(--cream); }
.color-swatch.is-active { border-color: var(--red); box-shadow: 0 0 0 2px rgba(230, 57, 70, 0.3); }

.price-range {
  display: flex; flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.price-range input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 100%, var(--line) 100%);
  outline: none;
  cursor: pointer;
}
.price-range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--red);
  cursor: pointer;
  transition: transform 0.2s ease;
}
.price-range input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.price-range input[type="range"]::-moz-range-thumb {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--red);
  cursor: pointer;
}
.price-bounds {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cream-dim);
}

/* ====================  SHOP — SIDEBAR PROMO  ==================== */
.sidebar-promo {
  position: relative;
  margin-top: 10px;
  border: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
  min-height: 240px;
  padding: 22px 18px;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}
.promo-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.7;
  filter: brightness(0.6);
}
.sidebar-promo::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.85) 60%, rgba(10,10,10,0.95) 100%);
}
.promo-text { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 6px; }
.promo-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--cream-dim);
}
.promo-title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.02em;
  color: var(--cream);
  font-weight: 400;
  line-height: 1;
}
.promo-desc {
  font-size: 11px;
  line-height: 1.55;
  color: var(--cream-dim);
  margin: 4px 0 8px;
}

/* ====================  SHOP — MAIN  ==================== */
.shop-main {
  display: flex; flex-direction: column;
  gap: 28px;
}

.shop-main-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  gap: 16px;
  flex-wrap: wrap;
}

.shop-main-title {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.2em;
  color: var(--red);
  font-weight: 400;
}

.sort-control {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.sort-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--cream-dim);
}
.sort-select {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--cream);
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 8px 32px 8px 14px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='none' stroke='%23ede4cf' stroke-width='1.4' d='M1 1l4 4 4-4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color 0.2s ease;
}
.sort-select:hover { border-color: var(--red); }

/* ====================  SHOP — PRODUCT GRID  ==================== */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px 18px;
}

.shop-card {
  display: flex; flex-direction: column;
  gap: 10px;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
}

.shop-card-img {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1.1;
  background: linear-gradient(180deg, #161616 0%, #0d0d0d 100%);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.4s ease;
}
.shop-card-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
}
.shop-card:hover { transform: translateY(-4px); }
.shop-card:hover .shop-card-img {
  border-color: var(--red);
  box-shadow: 0 24px 50px -20px rgba(230, 57, 70, 0.35);
}
.shop-card:hover .shop-card-img img { transform: scale(1.04); }

.card-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--red);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 4px 8px;
  z-index: 2;
}

.card-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.26em;
  color: var(--cream-dim);
  margin-top: 4px;
}
.card-name {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--cream);
  font-weight: 400;
}
.card-price {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--cream-dim);
}

.shop-load {
  display: flex;
  justify-content: center;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.load-more {
  background: none;
  border: none;
  cursor: pointer;
}

/* ====================  SHOP — TRUST STRIP  ==================== */
.trust-strip {
  padding: clamp(30px, 4vw, 50px) var(--pad-x);
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 50px);
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 18px;
}
.trust-mark {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.trust-mark svg { width: 30px; height: 30px; }
.trust-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.trust-text h4 {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 6px;
}
.trust-text p {
  font-size: 12px;
  line-height: 1.6;
  color: var(--cream-dim);
}

/* ====================  COLLECTIONS — HERO  ==================== */
.coll-hero {
  position: relative;
  padding: clamp(40px, 6vw, 80px) var(--pad-x) clamp(50px, 7vw, 90px);
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden;
  isolation: isolate;
}
.coll-hero-art {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  width: min(780px, 64%);
  height: auto;
  z-index: 0;
  pointer-events: none;
  opacity: 0.95;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 88%, transparent 100%);
}
.vkanji-coll {
  position: absolute;
  right: clamp(8px, 2vw, 28px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: var(--red);
  font-size: clamp(28px, 3.4vw, 48px);
  letter-spacing: 0.2em;
}
.coll-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 540px;
  display: flex; flex-direction: column;
  gap: 14px;
}
.coll-hero-title {
  font-family: var(--font-display);
  font-size: clamp(58px, 8.8vw, 132px);
  line-height: 0.9;
  color: var(--cream);
  letter-spacing: -0.01em;
  font-weight: 400;
}
.coll-hero-kanji {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: 0.12em;
  color: var(--red);
}
.coll-hero-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--cream-dim);
  max-width: 360px;
  margin-top: 8px;
}

/* ====================  COLLECTIONS — LAYOUT  ==================== */
.coll-layout {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x) clamp(50px, 7vw, 90px);
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.coll-sidebar {
  display: flex; flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 110px;
}
.coll-main {
  display: flex; flex-direction: column;
  gap: 24px;
}
.coll-main-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.sort-select-block { width: 100%; }

.coll-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.coll-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(.2,.7,.2,1);
}
.coll-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 30px 60px -25px rgba(230, 57, 70, 0.4);
}
.coll-card-link {
  display: grid;
  grid-template-columns: 42% 1fr;
  align-items: stretch;
  min-height: 220px;
}
.coll-card-img {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #161616 0%, #0a0a0a 100%);
}
.coll-card-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.coll-card:hover .coll-card-img img { transform: scale(1.06); }

.coll-card-text {
  padding: 22px 22px;
  display: flex; flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.coll-card-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--cream);
  font-weight: 400;
}
.coll-card-kanji {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.12em;
  color: var(--red);
}
.coll-card-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--cream-dim);
  margin-top: 4px;
}
.coll-card-count {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--cream-dim);
  margin-top: auto;
  padding-top: 14px;
}

.promo-title-sm { font-size: 22px; }

/* ====================  SPOTLIGHT STRIP  ==================== */
.spotlight {
  padding: clamp(40px, 5vw, 70px) var(--pad-x) clamp(40px, 5vw, 70px);
  background: var(--bg-1);
  border-top: 1px solid var(--line);
}
.spotlight-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 22px;
}
.spotlight-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  gap: 16px;
}
.spotlight-title {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.2em;
  color: var(--cream);
  font-weight: 400;
}

.spotlight-track {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.spot-nav {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--cream);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.spot-nav:hover { border-color: var(--red); color: var(--red); }

.spotlight-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 1fr);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.spotlight-strip::-webkit-scrollbar { display: none; }

.spot-card {
  display: flex; flex-direction: column;
  gap: 8px;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}
.spot-card:hover { transform: translateY(-3px); }
.spot-card-img {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1.1;
  background: linear-gradient(180deg, #161616 0%, #0d0d0d 100%);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.spot-card-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
}
.spot-card:hover .spot-card-img { border-color: var(--red); }
.spot-card:hover .spot-card-img img { transform: scale(1.05); }

/* ====================  COLLECTIONS — RESPONSIVE  ==================== */
@media (max-width: 1080px) {
  .coll-layout { grid-template-columns: 1fr; gap: 32px; }
  .coll-sidebar { position: static; }
  .coll-grid { grid-template-columns: 1fr; }
  .vkanji-coll { display: none; }
}
@media (max-width: 640px) {
  .coll-card-link { grid-template-columns: 1fr; }
  .coll-card-img { aspect-ratio: 4 / 3; }
  .spotlight-strip { grid-auto-columns: 65%; }
}

/* ====================  STORY — CHAPTERS  ==================== */
.chapter {
  padding: clamp(60px, 8vw, 110px) var(--pad-x);
  background: var(--bg-1);
  border-top: 1px solid var(--line);
}
.chapter:nth-of-type(even) { background: var(--bg-0); }

.chapter-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}
.chapter-reverse .chapter-inner {
  grid-template-columns: 1fr 1fr;
}
.chapter-reverse .chapter-art { order: 2; }
.chapter-reverse .chapter-text { order: 1; }

.chapter-art {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.chapter-art img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.chapter-text {
  display: flex; flex-direction: column;
  gap: 14px;
}
.chapter-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--red);
}
.chapter-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.005em;
  color: var(--cream);
  font-weight: 400;
}
.chapter-kanji {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.16em;
  color: var(--red);
}
.chapter-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--cream-dim);
  margin-top: 4px;
}

/* ====================  STORY — QUOTE BLOCK  ==================== */
.quote-block {
  padding: clamp(70px, 9vw, 130px) var(--pad-x);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(230,57,70,0.12) 0%, transparent 65%),
    var(--bg-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 18px;
}
.quote-mark {
  font-family: var(--font-jp);
  font-size: clamp(80px, 10vw, 140px);
  line-height: 0.7;
  color: var(--red);
  opacity: 0.6;
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 50px);
  line-height: 1.2;
  letter-spacing: 0.005em;
  color: var(--cream);
  font-weight: 400;
}
.quote-kanji {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.3em;
  color: var(--red);
}
.quote-attr {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--cream-dim);
}

/* ====================  STORY — CTA  ==================== */
.story-cta {
  padding: clamp(60px, 8vw, 110px) var(--pad-x);
  background: var(--bg-0);
}
.story-cta-inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 30px;
}
.story-cta-row {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

/* ====================  JOURNAL — FILTERS  ==================== */
.journal-filters {
  padding: 0 var(--pad-x);
  border-bottom: 1px solid var(--line);
}
.filters-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.chip {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--cream-dim);
  background: transparent;
  border: 1px solid var(--line);
  padding: 8px 14px;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.chip:hover { color: var(--cream); border-color: var(--cream-dim); }
.chip.is-active {
  color: var(--cream);
  border-color: var(--red);
  background: var(--red);
}
.filters-divider {
  flex: 1;
  height: 1px;
  background: var(--line);
  margin: 0 8px;
  min-width: 30px;
}

/* ====================  JOURNAL — FEATURED  ==================== */
.journal-featured {
  padding: clamp(30px, 4vw, 50px) var(--pad-x) clamp(24px, 3vw, 36px);
}
.featured-card {
  display: block;
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border: 1px solid var(--line);
  isolation: isolate;
  transition: border-color 0.3s ease, box-shadow 0.4s ease;
}
.featured-card:hover {
  border-color: var(--red);
  box-shadow: 0 30px 60px -25px rgba(230, 57, 70, 0.4);
}
.featured-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.8s cubic-bezier(.2,.7,.2,1);
}
.featured-card:hover img { transform: scale(1.04); }
.featured-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  padding: clamp(28px, 5vw, 60px);
  background: linear-gradient(180deg, rgba(7,7,7,0) 0%, rgba(7,7,7,0.2) 40%, rgba(7,7,7,0.9) 100%);
  max-width: 720px;
}
.featured-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--red);
}
.featured-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 54px);
  line-height: 1.02;
  color: var(--cream);
  font-weight: 400;
}
.featured-excerpt {
  font-size: 14px;
  line-height: 1.65;
  color: var(--cream-dim);
  max-width: 600px;
}
.featured-meta {
  display: inline-flex;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--cream-dim);
}
.featured-meta .dot { opacity: 0.5; }

/* ====================  JOURNAL — GRID  ==================== */
.journal-grid-section {
  padding: 0 var(--pad-x) clamp(60px, 8vw, 90px);
}
.journal-grid {
  max-width: var(--max);
  margin: 0 auto clamp(26px, 4vw, 50px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px 22px;
}
.article-card {
  display: flex; flex-direction: column;
  gap: 12px;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
}
.article-card:hover { transform: translateY(-4px); }
.article-img {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(180deg, #161616 0%, #0d0d0d 100%);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.article-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
}
.article-card:hover .article-img { border-color: var(--red); }
.article-card:hover .article-img img { transform: scale(1.05); }

.article-title {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 0.005em;
  line-height: 1.1;
  color: var(--cream);
  font-weight: 400;
  margin-top: 2px;
}
.article-excerpt {
  font-size: 13px;
  line-height: 1.6;
  color: var(--cream-dim);
}
.article-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--mute);
  margin-top: auto;
  padding-top: 4px;
}

/* ====================  STORY / JOURNAL — RESPONSIVE  ==================== */
@media (max-width: 1080px) {
  .chapter-inner { grid-template-columns: 1fr; gap: 28px; }
  .chapter-reverse .chapter-art { order: 0; }
  .chapter-reverse .chapter-text { order: 0; }
  .chapter-art { aspect-ratio: 16 / 10; }
  .journal-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-card { aspect-ratio: 4 / 3; }
}
@media (max-width: 640px) {
  .journal-grid { grid-template-columns: 1fr; }
  .filters-divider { display: none; }
  .story-cta-row { flex-direction: column; gap: 18px; }
}

/* ====================  SHOP — RESPONSIVE  ==================== */
@media (max-width: 1080px) {
  .shop-layout { grid-template-columns: 1fr; gap: 32px; }
  .shop-sidebar { position: static; }
  .shop-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-inner { grid-template-columns: 1fr; gap: 24px; }
  .shop-hero-art { opacity: 0.55; width: 70%; }
}
@media (max-width: 640px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 10px; }
  .shop-hero-title { font-size: clamp(56px, 16vw, 96px); }
  .shop-main-head { flex-direction: column; align-items: stretch; gap: 12px; }
  .sort-control { justify-content: space-between; }
}

/* ====================  RESPONSIVE  ==================== */
@media (max-width: 1080px) {
  .nav { display: none; }
  .header-inner { grid-template-columns: auto 1fr; }
  .header-actions { justify-self: end; }

  .hero {
    padding: 0;
    min-height: auto;
    overflow: hidden;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
    padding: 24px var(--pad-x) 28px;
    position: relative;
    height: 320px;
  }
  .hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 65% center;
    opacity: 0.55;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .hero-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.55) 50%, rgba(10,10,10,0.3) 100%);
    z-index: 1;
  }
  .hero-text {
    max-width: 100%;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 14px rgba(0,0,0,0.9);
    gap: 14px;
  }
  .vkanji-hero { display: none; }

  .drop-inner { grid-template-columns: 1fr; gap: 30px; }
  .drop-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .philosophy { min-height: 460px; padding: clamp(80px, 14vw, 140px) var(--pad-x); }
  .phi-bg { object-position: 30% center; }
  .philosophy::before {
    background:
      linear-gradient(180deg, rgba(7,7,7,0.55) 0%, rgba(7,7,7,0.25) 30%, rgba(7,7,7,0.55) 70%, rgba(7,7,7,0.9) 100%);
  }

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

  .next-inner { grid-template-columns: 1fr; gap: 30px; }
  .next-bg {
    right: -20%;
    width: 90%;
    opacity: 0.35;
  }

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

  .nl-inner { grid-template-columns: 1fr; text-align: center; gap: 22px; }
  .nl-mark { margin: 0 auto; flex-direction: row; gap: 16px; }
  .nl-mark svg { width: 60px; height: 60px; }
  .nl-mark-img { width: 76px; height: 76px; }
  .nl-form { min-width: auto; width: 100%; }
}

@media (max-width: 640px) {
  :root { --pad-x: 18px; }

  .header-inner { padding: 14px var(--pad-x); gap: 12px; }
  .logo-img { height: 50px; margin: -8px 0; }
  .icon-btn { width: 34px; height: 34px; }
  .icon-btn svg { width: 17px; height: 17px; }

  .hero-title { font-size: clamp(32px, 8.5vw, 46px); }
  .hero-title .ht-accent { font-size: 0.56em; margin-top: 2px; }
  .hero-text .eyebrow { font-size: 10px; letter-spacing: 0.24em; }
  .hero-text .btn { padding: 12px 22px; font-size: 12px; }

  .section-title { font-size: clamp(34px, 9.4vw, 54px); }

  .drop-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  .legends-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .legend { padding: 14px 6px; gap: 8px; }
  .legend-icon { width: 56px; height: 56px; }
  .legend-name { font-size: 10px; letter-spacing: 0.15em; }
  .legend-jp { font-size: 15px; }

  .countdown { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .cd-unit + .cd-unit::before { display: none; }
  .cd-num { font-size: clamp(48px, 14vw, 72px); }

  .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }

  .nl-form { flex-direction: column; gap: 10px; }
  .nl-input { border-right: 1px solid var(--line); padding: 14px 18px; }
  .nl-btn { padding: 14px 24px; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { flex-direction: column; gap: 14px; align-items: flex-start; }
  .footer-nav { flex-wrap: wrap; gap: 14px; }

  .marquee-track span { font-size: 10px; letter-spacing: 0.18em; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
