/* ============================================================
   TANTA — flagship
   TANTA Black / Enamel White / Chappy Red / Crystal Silver / Gift Gold
   ============================================================ */

:root {
  --black: #050505;
  --black-soft: #0b0b0c;
  --black-raise: #101012;
  --white: #ffffff;
  --red: #d71920;
  --silver: #bfc3c9;
  --gold: #c7a04b;
  --line: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.08);
  --txt: #f4f4f5;
  --txt-dim: rgba(244, 244, 245, 0.64);
  --txt-faint: rgba(244, 244, 245, 0.42);

  --font-sans: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: "Noto Serif JP", "Hiragino Mincho ProN", serif;

  --pad: clamp(20px, 5vw, 84px);
  --nav-h: 72px;
  --radius: 2px;

  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-io: cubic-bezier(0.77, 0, 0.175, 1);
  --dur: 0.9s;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}
body {
  background: var(--black);
  color: var(--txt);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.9;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
:lang(ja) body, body:lang(ja) { line-break: strict; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--red); color: var(--white); }

/* Japanese typography discipline */
h1, h2, h3, .jp-tight {
  font-feature-settings: "palt";
  overflow-wrap: anywhere;
  line-break: strict;
}
.tabular { font-variant-numeric: tabular-nums; }

/* focus */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--silver);
  outline-offset: 3px;
}

/* ---------- reveal system (JS-enhanced, safe without JS) ---------- */
html.js body:not(.rv-ready) [data-rv] { opacity: 1; transform: none; }
html.js body.rv-ready [data-rv] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
  transition-delay: calc(var(--rv-d, 0) * 90ms);
  will-change: opacity, transform;
}
html.js body.rv-ready [data-rv].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js body.rv-ready [data-rv] { opacity: 1 !important; transform: none !important; }
}
/* safety net: if main.js never runs, everything becomes visible */
html.js body.rv-fallback [data-rv] { opacity: 1 !important; transform: none !important; }

/* ---------- skip link ---------- */
.skip {
  position: fixed; left: 12px; top: -60px; z-index: 300;
  background: var(--white); color: var(--black);
  padding: 10px 18px; font-weight: 700; font-size: 13px;
  transition: top 0.25s;
}
.skip:focus { top: 12px; }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 130;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad);
  transition: background 0.5s, backdrop-filter 0.5s, border-color 0.5s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(5, 5, 5, 0.72);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line-soft);
}
.nav__logo {
  font-weight: 900; font-size: 21px; letter-spacing: 0.34em;
  display: flex; align-items: baseline; gap: 8px;
  z-index: 130;
}
.nav__logo .star { color: var(--red); font-size: 13px; transform: translateY(-1px); }
.nav__links { display: flex; gap: clamp(18px, 2.4vw, 34px); align-items: center; }
.nav__links a:not(.btn) {
  font-size: 12.5px; font-weight: 500; letter-spacing: 0.14em;
  color: var(--txt-dim); position: relative; padding: 6px 0;
  transition: color 0.35s;
}
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--white);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.45s var(--ease-io);
}
.nav__links a:not(.btn):hover, .nav__links a[aria-current="page"] { color: var(--white); }
.nav__links a:not(.btn):hover::after, .nav__links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.nav__right { display: flex; align-items: center; gap: 18px; z-index: 130; }
.nav__lang { font-size: 11px; letter-spacing: 0.18em; color: var(--txt-faint); font-weight: 500; }
.nav__lang a { color: var(--txt-faint); transition: color 0.3s; padding: 4px 2px; }
.nav__lang a:hover { color: var(--white); }
.nav__lang .on { color: var(--white); }

/* burger */
.nav__burger { display: none; width: 44px; height: 44px; position: relative; z-index: 130; }
.nav__burger span {
  position: absolute; left: 11px; width: 22px; height: 1.5px;
  background: var(--white); transition: transform 0.45s var(--ease-io), opacity 0.3s, top 0.45s var(--ease-io);
}
.nav__burger span:nth-child(1) { top: 18px; }
.nav__burger span:nth-child(2) { top: 25px; }
body.menu-open .nav__burger span:nth-child(1) { top: 21px; transform: rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { top: 21px; transform: rotate(-45deg); }

/* mobile menu */
.menu {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(5, 5, 5, 0.97);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 var(--pad);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.5s var(--ease-io), visibility 0s 0.5s;
}
body.menu-open .menu { opacity: 1; visibility: visible; pointer-events: auto; transition-delay: 0s; }
.menu a.menu__item {
  font-weight: 900; font-size: clamp(30px, 8.5vw, 44px); line-height: 1.55;
  letter-spacing: 0.02em; color: var(--txt);
  display: flex; align-items: baseline; gap: 14px;
  transform: translateY(26px); opacity: 0;
  transition: transform 0.7s var(--ease-out), opacity 0.7s var(--ease-out);
}
.menu a .idx { font-size: 12px; font-weight: 500; color: var(--red); letter-spacing: 0.1em; }
body.menu-open .menu a.menu__item { transform: none; opacity: 1; }
.menu a.menu__item:nth-child(1) { transition-delay: 0.06s; } .menu a.menu__item:nth-child(2) { transition-delay: 0.11s; }
.menu a.menu__item:nth-child(3) { transition-delay: 0.16s; } .menu a.menu__item:nth-child(4) { transition-delay: 0.21s; }
.menu a.menu__item:nth-child(5) { transition-delay: 0.26s; } .menu a.menu__item:nth-child(6) { transition-delay: 0.31s; }
.menu a.menu__item:nth-child(7) { transition-delay: 0.36s; }
.menu__foot { position: absolute; bottom: max(24px, env(safe-area-inset-bottom)); left: var(--pad); right: var(--pad); display: flex; justify-content: space-between; align-items: center; font-size: 11px; letter-spacing: 0.16em; color: var(--txt-faint); }

@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
}
@media (min-width: 961px) { .menu { display: none; } }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: transparent;
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em;
  color: var(--white);
  overflow: hidden;
  transition: color 0.45s var(--ease-io), border-color 0.45s;
  isolation: isolate;
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--white);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-io);
  border-radius: inherit;
}
.btn:hover { color: var(--black); border-color: var(--white); }
.btn:hover::before { transform: translateY(0); }
.btn .arr { transition: transform 0.45s var(--ease-io); font-size: 14px; }
.btn:hover .arr { transform: translateX(5px); }
.btn--solid { background: var(--white); color: var(--black); border-color: var(--white); }
.btn--solid::before { background: var(--red); }
.btn--solid:hover { color: var(--white); border-color: var(--red); }
.btn--red { border-color: rgba(215, 25, 32, 0.55); color: var(--white); }
.btn--red::before { background: var(--red); }
.btn--red:hover { color: var(--white); border-color: var(--red); }
.btn--ink { border-color: rgba(5,5,5,0.25); color: var(--black); }
.btn--ink::before { background: var(--black); }
.btn--ink:hover { color: var(--white); border-color: var(--black); }

.link-line {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.18em;
  color: var(--txt-dim); position: relative; padding-bottom: 5px;
  transition: color 0.35s;
}
.link-line::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: currentColor; transform: scaleX(1); transform-origin: left;
  transition: transform 0.45s var(--ease-io);
}
.link-line:hover { color: var(--white); }
.link-line:hover::after { transform: scaleX(0.35); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: calc(var(--nav-h) + 40px) var(--pad) 0;
  overflow: clip;
}
.hero__gl { position: absolute; inset: 0; z-index: 0; }
.hero__gl canvas { width: 100%; height: 100%; display: block; }
.hero__vfade {
  position: absolute; inset: auto 0 0 0; height: 30vh; z-index: 1;
  background: linear-gradient(to bottom, transparent, var(--black));
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; padding-bottom: clamp(90px, 14vh, 150px); }
.hero__eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.34em;
  color: var(--txt-dim); margin-bottom: clamp(20px, 3vh, 34px);
}
.hero__eyebrow::before { content: ""; width: 44px; height: 1px; background: var(--red); }
.hero__title {
  font-weight: 900;
  font-size: clamp(44px, 9.6vw, 148px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.hero__title .l { display: block; overflow: hidden; }
.hero__title .l > span { display: inline-block; }

/* hero intro — CSS-driven so it completes even when rAF is throttled */
html.js body:not(.intro-go) .hero__title .l > span { transform: translateY(112%); }
html.js .hero__title .l > span { transition: transform 1.35s var(--ease-out); }
html.js .hero__title .l:nth-child(1) > span { transition-delay: 0.12s; }
html.js .hero__title .l:nth-child(2) > span { transition-delay: 0.22s; }
html.js .hero__title .l:nth-child(3) > span { transition-delay: 0.32s; }
html.js body:not(.intro-go) :is(.hero__eyebrow, .hero__ja, .hero__sub, .hero__cta, .hero__scroll, .marquee) { opacity: 0; transform: translateY(22px); }
html.js :is(.hero__eyebrow, .hero__ja, .hero__sub, .hero__cta, .hero__scroll, .marquee) { transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out); }
html.js .hero__ja { transition-delay: 0.5s; }
html.js .hero__sub { transition-delay: 0.6s; }
html.js .hero__cta { transition-delay: 0.7s; }
html.js .hero__eyebrow { transition-delay: 0.42s; }
html.js :is(.hero__scroll, .marquee) { transition-delay: 0.85s; }
html.js body.rv-fallback .hero__title .l > span,
html.js body.rv-fallback :is(.hero__eyebrow, .hero__ja, .hero__sub, .hero__cta, .hero__scroll, .marquee) { transform: none !important; opacity: 1 !important; }
@media (prefers-reduced-motion: reduce) {
  html.js body:not(.intro-go) .hero__title .l > span { transform: none; }
  html.js body:not(.intro-go) :is(.hero__eyebrow, .hero__ja, .hero__sub, .hero__cta, .hero__scroll, .marquee) { opacity: 1; transform: none; }
}
.hero__title .red-dot { color: var(--red); }
.hero__ja {
  margin-top: clamp(22px, 3.4vh, 38px);
  font-size: clamp(16px, 2.4vw, 22px);
  font-weight: 700; letter-spacing: 0.16em;
  color: var(--txt);
}
.hero__sub {
  margin-top: 12px;
  max-width: 560px;
  color: var(--txt-dim);
  font-size: clamp(13.5px, 1.5vw, 15px);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(26px, 4vh, 42px); }
.hero__scroll {
  position: absolute; right: var(--pad); bottom: 110px; z-index: 2;
  writing-mode: vertical-rl;
  font-size: 10px; letter-spacing: 0.42em; color: var(--txt-faint); font-weight: 500;
  display: flex; align-items: center; gap: 12px;
}
.hero__scroll::after {
  content: ""; width: 1px; height: 54px; background: var(--line);
  animation: scrollpulse 2.2s var(--ease-io) infinite;
}
@keyframes scrollpulse { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@media (max-width: 720px) { .hero__scroll { display: none; } }

/* marquee */
.marquee {
  position: relative; z-index: 2;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
  padding: 15px 0;
  display: flex;
  margin: 0 calc(var(--pad) * -1);
  -webkit-user-select: none; user-select: none;
}
.marquee__track {
  display: flex; flex-shrink: 0; gap: 0;
  animation: marq 36s linear infinite;
}
@keyframes marq { to { transform: translateX(-50%); } }
.marquee__track > div { display: flex; flex-shrink: 0; }
.marquee span {
  display: inline-flex; align-items: center; gap: 26px;
  padding: 0 26px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.3em;
  color: var(--txt-dim); white-space: nowrap;
}
.marquee span i { font-style: normal; color: var(--red); font-size: 10px; }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---------- sections ---------- */
.sec { position: relative; padding: clamp(90px, 13vh, 170px) var(--pad); }
.sec--flush { padding-left: 0; padding-right: 0; }
.sec__head { display: flex; flex-direction: column; gap: 18px; margin-bottom: clamp(44px, 7vh, 84px); }
.sec--flush .sec__head { padding: 0 var(--pad); }
.sec__label {
  display: flex; align-items: center; gap: 14px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.3em;
  color: var(--txt-faint); text-transform: uppercase;
}
.sec__label b { color: var(--red); font-weight: 700; }
.sec__label::after { content: ""; flex: 1; height: 1px; background: var(--line-soft); }
.sec__title {
  font-weight: 900;
  font-size: clamp(30px, 5.4vw, 68px);
  line-height: 1.16;
  letter-spacing: 0.005em;
}
.sec__title .en { letter-spacing: -0.02em; }
.sec__lead { max-width: 640px; color: var(--txt-dim); font-size: 15px; }

/* ---------- icons rail (horizontal showcase) ---------- */
.rail-wrap { position: relative; }
.rail {
  display: flex; gap: clamp(18px, 2.4vw, 34px);
  padding: 0 var(--pad);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.rail::-webkit-scrollbar { display: none; }
.rail::after { content: ""; flex: 0 0 1px; }
.rail-item {
  flex: 0 0 min(78vw, 430px);
  scroll-snap-align: start;
  display: flex; flex-direction: column;
}
.rail-item__fig {
  position: relative; overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--black-raise);
  border-radius: var(--radius);
}
.rail-item__fig img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease-out), opacity 0.6s;
}
.rail-item:hover .rail-item__fig img { transform: scale(1.045); }
.rail-item__fig .shine {
  position: absolute; inset: -30%;
  background: linear-gradient(115deg, transparent 42%, rgba(255,255,255,0.14) 50%, transparent 58%);
  transform: translateX(-80%);
  transition: transform 1.1s var(--ease-io);
  pointer-events: none;
}
.rail-item:hover .shine { transform: translateX(60%); }
.rail-item__idx {
  position: absolute; top: 14px; left: 16px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em;
  color: var(--white); mix-blend-mode: difference;
}
.rail-item__body { padding: 20px 2px 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.rail-item__name { font-size: 16.5px; font-weight: 700; letter-spacing: 0.015em; line-height: 1.5; }
.rail-item__blurb { font-size: 13px; color: var(--txt-dim); line-height: 1.85; }
.rail-item__cta { margin-top: auto; padding-top: 16px; }

.chips { display: flex; flex-wrap: wrap; gap: 7px; }
.chip {
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.06em;
  color: var(--silver);
  border: 1px solid var(--line-soft);
  padding: 4px 10px; border-radius: 100px;
  white-space: nowrap;
}
.chip--gold { color: var(--gold); border-color: rgba(199, 160, 75, 0.35); }

.soldout {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.2em;
  color: var(--black); background: var(--silver);
  padding: 5px 12px; border-radius: 100px;
  position: absolute; top: 12px; right: 12px;
}

/* rail nav arrows (desktop) */
.rail-nav { position: absolute; top: -76px; right: var(--pad); display: flex; gap: 10px; }
.rail-nav button {
  width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%;
  display: grid; place-items: center; font-size: 16px;
  transition: background 0.35s, color 0.35s, border-color 0.35s, opacity 0.3s;
}
.rail-nav button:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.rail-nav button:disabled { opacity: 0.3; pointer-events: none; }
@media (max-width: 720px) { .rail-nav { display: none; } }

/* ---------- chappy manifesto ---------- */
.chappy { position: relative; overflow: clip; }
.chappy__stars { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.chappy__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(36px, 6vw, 90px); align-items: center;
}
.chappy__fig { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/5; }
.chappy__fig img { width: 100%; height: 112%; object-fit: cover; }
.chappy__copy .big {
  font-weight: 900; font-size: clamp(28px, 4.6vw, 56px);
  line-height: 1.28; letter-spacing: 0.005em;
  margin-bottom: 30px;
}
.chappy__copy .big em { font-style: normal; color: var(--red); }
.chappy__copy p { color: var(--txt-dim); max-width: 480px; margin-bottom: 16px; }
.chappy__copy .sig {
  font-size: 12.5px; letter-spacing: 0.22em; font-weight: 700;
  color: var(--txt-faint); text-transform: uppercase;
  margin: 26px 0 34px;
}
@media (max-width: 880px) {
  .chappy__grid { grid-template-columns: 1fr; }
  .chappy__fig { order: -1; max-width: 520px; }
}

/* ---------- craft ---------- */
.craft { background: var(--black-soft); }
.craft__grid {
  display: grid; grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(36px, 6vw, 100px);
}
.craft__fig { position: relative; overflow: hidden; border-radius: var(--radius); min-height: 420px; }
.craft__fig img { position: absolute; inset: 0; width: 100%; height: 114%; object-fit: cover; }
.craft__fig figcaption {
  position: absolute; left: 18px; bottom: 16px;
  font-size: 10px; letter-spacing: 0.3em; color: rgba(255,255,255,0.55); font-weight: 500;
}
.craft__body { display: flex; flex-direction: column; justify-content: center; }
.craft__body .serif {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(16px, 2vw, 19px); line-height: 2.35;
  color: var(--txt); max-width: 560px;
}
.craft__body .serif + .serif { margin-top: 1.6em; }
.craft__facts {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--line-soft);
  border: 1px solid var(--line-soft);
  margin-top: clamp(36px, 5vh, 60px);
}
.fact { background: var(--black-soft); padding: 26px 24px 22px; }
.fact__num {
  font-weight: 900; font-size: clamp(30px, 3.6vw, 44px); letter-spacing: -0.02em;
  line-height: 1.1; display: flex; align-items: baseline; gap: 4px;
}
.fact__num small { font-size: 0.42em; font-weight: 700; color: var(--txt-dim); letter-spacing: 0.06em; }
.fact__label { margin-top: 8px; font-size: 11.5px; letter-spacing: 0.14em; color: var(--txt-faint); font-weight: 500; }
.craft__crystal {
  margin-top: clamp(40px, 6vh, 64px);
  border-left: 2px solid var(--red);
  padding: 6px 0 6px 24px;
}
.craft__crystal p { color: var(--txt-dim); max-width: 520px; }
.craft__crystal .phrase {
  display: block; font-weight: 900; font-size: clamp(19px, 2.4vw, 26px);
  letter-spacing: 0.01em; color: var(--white); margin-bottom: 10px;
}
.craft__crystal .phrase i { font-style: normal; color: var(--silver); }
@media (max-width: 880px) { .craft__grid { grid-template-columns: 1fr; } .craft__fig { min-height: 320px; } }

/* ---------- kitty (white flip) ---------- */
.kitty { background: var(--white); color: var(--black); }
.kitty .sec__label { color: rgba(5,5,5,0.45); }
.kitty .sec__label::after { background: rgba(5,5,5,0.12); }
.kitty .sec__lead { color: rgba(5,5,5,0.62); }
.kitty__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2.6vw, 36px);
  max-width: 1060px;
}
.kitty .card { background: #f6f6f6; }
.kitty .card__name { color: var(--black); }
.kitty .card__blurb { color: rgba(5,5,5,0.6); }
.kitty .chip { color: rgba(5,5,5,0.6); border-color: rgba(5,5,5,0.14); }
.kitty__note { margin-top: 34px; font-size: 12px; color: rgba(5,5,5,0.45); letter-spacing: 0.04em; }
@media (max-width: 720px) { .kitty__grid { grid-template-columns: 1fr; max-width: 460px; } }

/* ---------- product cards (grid) ---------- */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 34px) clamp(14px, 1.8vw, 26px); }
@media (max-width: 1080px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid { grid-template-columns: 1fr; } }

.card { display: flex; flex-direction: column; border-radius: var(--radius); }
.card__fig {
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 3 / 4; background: var(--black-raise);
}
.card__fig img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s var(--ease-out), opacity 0.7s var(--ease-io); }
.card__fig .im2 { position: absolute; inset: 0; opacity: 0; }
.card:hover .card__fig .im1 { transform: scale(1.05); }
.card:hover .card__fig .im2 { opacity: 1; transform: scale(1.05); }
.card__fig .shine {
  position: absolute; inset: -30%;
  background: linear-gradient(115deg, transparent 42%, rgba(255,255,255,0.12) 50%, transparent 58%);
  transform: translateX(-85%); pointer-events: none;
  transition: transform 1.1s var(--ease-io);
}
.card:hover .shine { transform: translateX(62%); }
.card__body { padding: 16px 2px 0; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.card__name { font-size: 14.5px; font-weight: 700; line-height: 1.55; letter-spacing: 0.01em; }
.card__blurb { font-size: 12.5px; color: var(--txt-dim); line-height: 1.8; }
.card__cta { margin-top: auto; padding-top: 12px; }
.card__cta .link-line { font-size: 11.5px; }

/* ---------- collection filters ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: clamp(30px, 5vh, 54px); }
.filter {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  padding: 10px 20px; border: 1px solid var(--line); border-radius: 100px;
  color: var(--txt-dim);
  transition: all 0.35s var(--ease-io);
}
.filter:hover { color: var(--white); border-color: var(--white); }
.filter.on { background: var(--white); color: var(--black); border-color: var(--white); }
.card.is-hidden { display: none; }

/* ---------- store ---------- */
.store__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 90px); align-items: stretch; }
.store__fig { position: relative; overflow: hidden; border-radius: var(--radius); min-height: 430px; }
.store__fig img { position: absolute; inset: 0; width: 100%; height: 114%; object-fit: cover; }
.store__fig figcaption { position: absolute; left: 18px; bottom: 16px; font-size: 10px; letter-spacing: 0.3em; color: rgba(255,255,255,0.6); font-weight: 500; }
.store__body { display: flex; flex-direction: column; justify-content: center; gap: 26px; }
.store__addr { font-size: 15px; line-height: 2.1; color: var(--txt-dim); }
.store__addr b { color: var(--txt); font-weight: 700; display: block; font-size: 17px; margin-bottom: 4px; }
.store__meta { display: grid; grid-template-columns: auto 1fr; gap: 8px 26px; font-size: 13.5px; color: var(--txt-dim); }
.store__meta dt { font-weight: 700; color: var(--txt-faint); letter-spacing: 0.1em; font-size: 11.5px; padding-top: 3px; }
.store__meta dd { margin: 0; }
@media (max-width: 880px) { .store__grid { grid-template-columns: 1fr; } .store__fig { min-height: 300px; } }

/* ---------- about teaser ---------- */
.founder { position: relative; overflow: clip; }
.founder__inner { max-width: 880px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.founder__quote {
  font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(21px, 3.4vw, 34px); line-height: 2;
  margin-bottom: 30px;
}
.founder__by { font-size: 12px; letter-spacing: 0.26em; color: var(--txt-faint); font-weight: 500; }
.founder__bg { position: absolute; inset: 0; opacity: 0.34; }
.founder__bg img { width: 100%; height: 100%; object-fit: cover; }
.founder__bgfade { position: absolute; inset: 0; background: radial-gradient(ellipse at center, transparent 0%, var(--black) 78%); }

/* ---------- big footer word ---------- */
.bigword {
  padding: clamp(50px, 9vh, 110px) 0 0;
  overflow: hidden; white-space: nowrap;
  -webkit-user-select: none; user-select: none;
}
.bigword span {
  display: inline-block;
  font-weight: 900; font-size: clamp(64px, 13vw, 210px);
  letter-spacing: -0.02em; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.22);
  padding-right: 6vw;
}
.bigword .fill { color: var(--white); -webkit-text-stroke: 0; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line-soft); padding: clamp(50px, 8vh, 90px) var(--pad) 36px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: clamp(30px, 4vw, 60px); margin-bottom: 60px; }
.footer__brand .logo { font-weight: 900; font-size: 24px; letter-spacing: 0.34em; margin-bottom: 18px; display: flex; gap: 8px; align-items: baseline; }
.footer__brand .logo .star { color: var(--red); font-size: 14px; }
.footer__brand p { color: var(--txt-faint); font-size: 12.5px; max-width: 300px; line-height: 2; }
.footer h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.28em; color: var(--txt-faint); margin-bottom: 20px; }
.footer li { margin-bottom: 12px; }
.footer li a { font-size: 13px; color: var(--txt-dim); transition: color 0.3s; position: relative; }
.footer li a:hover { color: var(--white); }
.footer li a.quiet { color: var(--txt-faint); font-size: 12px; }
.footer__bottom {
  border-top: 1px solid var(--line-soft); padding-top: 26px;
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: 0.14em; color: var(--txt-faint);
}
.footer__markets { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.footer__markets i { font-style: normal; color: var(--red); font-size: 8px; }
@media (max-width: 880px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- page hero (inner pages) ---------- */
.phero {
  padding: calc(var(--nav-h) + clamp(60px, 10vh, 120px)) var(--pad) clamp(50px, 8vh, 90px);
  position: relative; overflow: clip;
}
.phero__label { display: flex; align-items: center; gap: 14px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.3em; color: var(--txt-faint); text-transform: uppercase; margin-bottom: 24px; }
.phero__label::before { content: ""; width: 44px; height: 1px; background: var(--red); }
.phero__title { font-weight: 900; font-size: clamp(38px, 7.4vw, 100px); line-height: 1.05; letter-spacing: -0.02em; }
.phero__title .ja { display: block; font-size: clamp(17px, 2.2vw, 24px); letter-spacing: 0.14em; margin-top: 20px; color: var(--txt-dim); font-weight: 700; }
.phero__lead { max-width: 640px; margin-top: 28px; color: var(--txt-dim); }

/* ---------- editorial (craft/about pages) ---------- */
.ed { max-width: 760px; margin: 0 auto; }
.ed .serif { font-family: var(--font-serif); font-weight: 500; font-size: clamp(16px, 2vw, 18.5px); line-height: 2.4; color: var(--txt); }
.ed .serif + .serif { margin-top: 2em; }
.ed h3 {
  font-weight: 900; font-size: clamp(22px, 3vw, 32px); line-height: 1.4;
  margin: clamp(56px, 9vh, 90px) 0 26px;
  display: flex; align-items: baseline; gap: 16px;
}
.ed h3 .n { font-size: 12px; color: var(--red); letter-spacing: 0.1em; font-weight: 700; }
.ed .note { font-size: 12.5px; color: var(--txt-faint); margin-top: 14px; line-height: 2; }
.ed-fig { margin: clamp(50px, 8vh, 80px) 0; position: relative; overflow: hidden; border-radius: var(--radius); }
.ed-fig img { width: 100%; height: auto; }
.ed-fig figcaption { position: absolute; left: 18px; bottom: 16px; font-size: 10px; letter-spacing: 0.3em; color: rgba(255,255,255,0.6); font-weight: 500; }

/* pull-quote */
.pull {
  border-left: 2px solid var(--red);
  padding: 8px 0 8px 26px;
  margin: clamp(40px, 6vh, 64px) 0;
}
.pull p { font-weight: 900; font-size: clamp(19px, 2.6vw, 27px); line-height: 1.7; letter-spacing: 0.01em; }
.pull small { display: block; margin-top: 10px; font-size: 11.5px; letter-spacing: 0.2em; color: var(--txt-faint); font-weight: 500; }

/* ---------- CTA band ---------- */
.band {
  margin: 0; padding: clamp(80px, 12vh, 150px) var(--pad);
  text-align: center; position: relative; overflow: clip;
  border-top: 1px solid var(--line-soft);
}
.band__title { font-weight: 900; font-size: clamp(30px, 5.8vw, 72px); line-height: 1.2; margin-bottom: 18px; }
.band__sub { color: var(--txt-dim); margin-bottom: 36px; }
.band .btn { margin: 0 7px 10px; }

/* ---------- cursor (desktop) ---------- */
@media (pointer: fine) {
  .cursor {
    position: fixed; top: 0; left: 0; z-index: 400; pointer-events: none;
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.5);
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s, border-color 0.3s, opacity 0.3s;
    mix-blend-mode: difference;
    opacity: 0;
  }
  body.cursor-on .cursor { opacity: 1; }
  .cursor.is-link { width: 64px; height: 64px; background: rgba(255,255,255,0.95); border-color: transparent; }
  .cursor.is-down { width: 28px; height: 28px; }
}
@media (pointer: coarse) { .cursor { display: none; } }

/* ---------- util ---------- */
.sr { position: absolute; width: 1px; height: 1px; clip: rect(0 0 0 0); overflow: hidden; white-space: nowrap; }
.tag-red { color: var(--red); }
.nowrap { white-space: nowrap; }
.center { text-align: center; }

/* star bullet */
.starline { display: flex; align-items: center; gap: 10px; }
.starline::before { content: "★"; color: var(--red); font-size: 11px; }

/* page transition veil */
.veil {
  position: fixed; inset: 0; z-index: 500; pointer-events: none;
  background: var(--black);
  opacity: 0; transition: opacity 0.45s var(--ease-io);
}
body.veil-on .veil { opacity: 1; pointer-events: auto; }

/* footnote under grids */
.fine { font-size: 12px; color: var(--txt-faint); line-height: 2; letter-spacing: 0.03em; }
