/* ═══════════════════════════════════════════════════════════════
   PROJECT FLY — officially licensed anime goods
   Sky-world pastel drench · Kaisei Decol (display) + Zen Maru Gothic (body)
   Action color: torii vermilion (the hanko / official-seal red)
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* sky world */
  --sky: oklch(0.90 0.05 235);
  --sky-deep: oklch(0.60 0.10 235);
  --blush: oklch(0.91 0.06 350);
  --lav: oklch(0.90 0.05 305);
  --cloud: oklch(0.985 0.008 340);
  --white: #fff;

  /* ink */
  --ink: oklch(0.33 0.055 315);
  --ink-soft: oklch(0.46 0.05 315);
  --ink-faint: oklch(0.33 0.055 315 / 0.14);

  /* the seal red */
  --verm: oklch(0.55 0.17 35);
  --verm-deep: oklch(0.49 0.17 35);
  --verm-soft: oklch(0.94 0.028 35);

  /* supporting cast */
  --sakura: oklch(0.87 0.08 350);
  --sakura-deep: oklch(0.62 0.19 356);
  --gold: oklch(0.83 0.11 88);

  --font-display: "Kaisei Decol", "Zen Maru Gothic", serif;
  --font-body: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;

  --radius-s: 12px;
  --radius-m: 22px;
  --radius-l: 34px;
  --shadow-card: 0 10px 32px oklch(0.55 0.12 340 / 0.13);
  --shadow-pop: 0 22px 48px oklch(0.55 0.12 340 / 0.22);

  /* z scale */
  --z-nav: 50;
  --z-menu: 60;
  --z-toast: 70;
  --z-loader: 100;

  --nav-h: 74px;
}

*, *::before, *::after { box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-padding-top: calc(var(--nav-h) + 16px); }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink);
  background:
    linear-gradient(180deg,
      oklch(0.88 0.055 240) 0%,
      oklch(0.91 0.055 330) 14%,
      oklch(0.93 0.045 305) 30%,
      oklch(0.97 0.02 340) 48%,
      var(--white) 68%);
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
h1, h2, h3 { line-height: 1.22; margin: 0; text-wrap: balance; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
strong { font-weight: 700; }

.container { width: min(1200px, 100% - 44px); margin-inline: auto; }
.section { padding-block: clamp(72px, 9vw, 128px); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

:focus-visible { outline: 3px solid var(--verm); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--sakura); color: var(--ink); }

.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: calc(var(--z-loader) + 1);
  background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 999px;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 1rem; line-height: 1;
  padding: 15px 30px; border-radius: 999px; border: 2px solid transparent;
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.2s, background-color 0.2s, color 0.2s, border-color 0.2s;
}
.btn:active { transform: scale(0.97); }
.btn-fill { background: var(--verm); color: #fff; box-shadow: 0 8px 22px oklch(0.55 0.17 35 / 0.35); }
.btn-fill:hover { background: var(--verm-deep); transform: translateY(-2px); box-shadow: 0 12px 26px oklch(0.55 0.17 35 / 0.42); }
.btn-ghost { background: oklch(1 0 0 / 0.62); border-color: oklch(0.33 0.055 315 / 0.25); color: var(--ink); backdrop-filter: blur(6px); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-lg { padding: 18px 38px; font-size: 1.06rem; }

/* ── Section headers: the bilingual echo system ──────────────── */
.section-jp {
  font-family: var(--font-display); font-weight: 500;
  color: var(--verm); font-size: 1.05rem; letter-spacing: 0.14em;
  margin-bottom: 10px;
}
.section-jp::after { content: "︱"; margin-left: 10px; opacity: 0.35; }
.section-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 4.2vw, 3.1rem); letter-spacing: -0.01em;
}
.section-sub {
  max-width: 62ch; margin-top: 18px;
  color: var(--ink-soft); font-size: 1.04rem;
}

/* ═══ Loader ══════════════════════════════════════════════════ */
.loader {
  position: fixed; inset: 0; z-index: var(--z-loader);
  display: grid; place-items: center;
  background: linear-gradient(180deg, oklch(0.9 0.05 240), oklch(0.92 0.055 330) 58%, oklch(0.94 0.045 305));
  transition: opacity 0.55s ease, visibility 0.55s;
}
.loader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; padding: 20px; }
.loader-torii {
  width: clamp(96px, 15vw, 126px); height: auto; margin: 0 auto 26px; display: block;
  filter: drop-shadow(0 10px 18px oklch(0.55 0.17 35 / 0.26));
  opacity: 0; transform: translateY(10px) scale(0.9);
  animation: torii-in 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}
.torii-fill { fill: var(--verm); }
@keyframes torii-in { to { opacity: 1; transform: none; } }
.loader-word {
  position: relative; display: inline-block;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 6vw, 3rem); line-height: 1.1;
}
.loader-dim { color: oklch(0.33 0.055 315 / 0.16); }
.loader-lit {
  position: absolute; inset: 0; color: var(--verm);
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.3s linear;
}
.loader-jp { margin-top: 8px; color: var(--ink-soft); letter-spacing: 0.5em; padding-left: 0.5em; font-size: 0.82rem; }
.loader-pct { margin-top: 22px; font-weight: 700; color: var(--ink-soft); font-variant-numeric: tabular-nums; font-size: 0.9rem; }

/* chrome hidden until loader is done (entrance owns the reveal) */
body:not(.is-loaded) .site-nav,
body:not(.is-loaded) .hero-copy,
body:not(.is-loaded) .hero-scroll { opacity: 0; }

/* ═══ Nav ═════════════════════════════════════════════════════ */
.site-nav {
  position: fixed; top: 14px; left: 0; right: 0; z-index: var(--z-nav);
  transition: opacity 0.4s ease;
}
.nav-inner {
  width: min(1200px, 100% - 28px); margin-inline: auto;
  height: var(--nav-h);
  display: flex; align-items: center; gap: 28px;
  padding-inline: 26px 14px;
  background: oklch(1 0 0 / 0.72);
  backdrop-filter: blur(14px);
  border: 1px solid oklch(1 0 0 / 0.8);
  border-radius: 999px;
  box-shadow: 0 10px 34px oklch(0.55 0.12 340 / 0.14);
}
.logo { display: flex; align-items: baseline; gap: 10px; }
.logo-mark { width: 27px; height: 27px; fill: var(--verm); align-self: center; }
.logo-fold { fill: var(--verm-deep); }
.logo-spark { fill: var(--gold); }
.logo-text { font-family: var(--font-display); font-weight: 700; font-size: 1.34rem; letter-spacing: 0.01em; }
.logo-text em { font-style: normal; color: var(--verm); }
.logo-jp { font-size: 0.68rem; color: var(--ink-soft); letter-spacing: 0.18em; }
.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-links a {
  padding: 10px 16px; border-radius: 999px; font-weight: 700; font-size: 0.98rem;
  transition: background-color 0.2s, color 0.2s;
}
.nav-links a:hover { background: var(--verm-soft); color: var(--verm-deep); }
.nav-actions { display: flex; align-items: center; gap: 6px; }
.cart-btn {
  position: relative; width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  transition: background-color 0.2s;
}
.cart-btn:hover { background: var(--verm-soft); }
.cart-btn svg { width: 22px; height: 22px; }
.cart-count {
  position: absolute; top: 2px; right: 0;
  min-width: 19px; height: 19px; padding-inline: 5px;
  display: grid; place-items: center;
  background: var(--verm); color: #fff;
  font-size: 0.68rem; font-weight: 900; border-radius: 999px;
}
.nav-burger { display: none; width: 46px; height: 46px; border-radius: 50%; position: relative; }
.nav-burger span {
  position: absolute; left: 13px; right: 13px; height: 2.5px; border-radius: 2px;
  background: var(--ink); transition: transform 0.3s, top 0.3s;
}
.nav-burger span:first-child { top: 18px; }
.nav-burger span:last-child { top: 26px; }
.nav-burger[aria-expanded="true"] span:first-child { top: 22px; transform: rotate(45deg); }
.nav-burger[aria-expanded="true"] span:last-child { top: 22px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; top: calc(var(--nav-h) + 24px); left: 14px; right: 14px; z-index: var(--z-menu);
  background: oklch(1 0 0 / 0.92); backdrop-filter: blur(18px);
  border-radius: var(--radius-l); box-shadow: var(--shadow-pop);
  padding: 18px;
}
.mobile-menu[hidden] { display: none !important; }
.mobile-menu a {
  display: block; padding: 15px 20px; border-radius: 16px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.3rem;
}
.mobile-menu a:hover { background: var(--verm-soft); color: var(--verm-deep); }

/* ═══ Hero ════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh; min-height: 620px; max-height: 1180px;
}
.hero-scene { position: absolute; inset: 0; overflow: clip; }
.hero-bg-wrap { position: absolute; inset: -5.5%; z-index: 1; }
.hero-bg { width: 100%; height: 100%; object-fit: cover; object-position: 60% 42%; }

.hero-petals-back { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-petals-back i {
  position: absolute; display: block;
  width: 26px; height: 22px;
  background: radial-gradient(ellipse at 35% 35%, oklch(0.93 0.05 350 / 0.9), oklch(0.87 0.08 350 / 0.65));
  border-radius: 62% 38% 55% 45% / 50% 60% 40% 50%;
  filter: blur(3px); opacity: 0.7;
}

.hero-title {
  position: absolute; top: 27svh; left: 50%; z-index: 3;
  width: min(1100px, 94vw);
  margin-left: max(-550px, -47vw);
  text-align: center; pointer-events: none;
}
.hero-welcome {
  display: inline-block;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(4.5rem, 17vw, 12rem); line-height: 1; letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: clamp(1.8px, 0.34vw, 3.2px) #fff;
  filter:
    drop-shadow(0 1px 1px oklch(0.42 0.07 320 / 0.6))
    drop-shadow(0 12px 26px oklch(0.42 0.07 320 / 0.42));
}

.hero-char-wrap {
  position: absolute; bottom: 6svh; left: 0; right: 0; z-index: 4;
  height: 72svh;
  display: flex; justify-content: center; align-items: flex-end;
  pointer-events: none;
}
/* flex (not grid): the definite-height chain wrap→float→img must survive,
   or the img falls back to its natural 1400px and crops off-screen */
.hero-char-float { height: 100%; position: relative; flex: none; }
.hero-char { height: 100%; width: auto; max-width: none; filter: drop-shadow(0 18px 30px oklch(0.5 0.1 330 / 0.3)); }
.hero-char-shadow {
  position: absolute; bottom: -3.5%; left: 50%; width: 74%; aspect-ratio: 5 / 1;
  margin-left: -37%;
  background: radial-gradient(ellipse, oklch(0.45 0.08 140 / 0.32), oklch(0.45 0.08 140 / 0) 68%);
}

.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 5; pointer-events: none; }

.hero-mist {
  position: absolute; inset: auto 0 0 0; height: 24%; z-index: 6; pointer-events: none;
  background: linear-gradient(180deg, oklch(0.97 0.02 340 / 0) 0%, oklch(0.965 0.025 335 / 0.85) 78%, oklch(0.96 0.03 330) 100%);
}

.hero-copy {
  position: absolute; bottom: 7.5svh; left: 0; right: 0; z-index: 7;
  display: grid; justify-items: center; gap: 16px;
  transition: opacity 0.4s ease;
  padding-inline: 20px;
}
.hero-kicker {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 0.95rem; color: var(--ink);
  background: oklch(1 0 0 / 0.66); backdrop-filter: blur(8px);
  padding: 8px 18px 8px 9px; border-radius: 999px;
  border: 1px solid oklch(1 0 0 / 0.85);
}
.hero-seal {
  display: grid; place-items: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--verm); color: #fff;
  font-size: 0.72rem; font-weight: 700;
  transform: rotate(-8deg);
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.hero-scroll {
  position: absolute; bottom: 5svh; right: clamp(18px, 4vw, 56px); z-index: 7;
  width: 34px; height: 58px; border-radius: 999px;
  border: 2.5px solid oklch(0.33 0.055 315 / 0.4);
  display: flex; justify-content: center; padding-top: 9px;
  transition: opacity 0.4s ease, border-color 0.2s;
}
.hero-scroll:hover { border-color: var(--ink); }
.hero-scroll-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--verm); animation: scroll-dot 1.8s ease-in-out infinite; }
@keyframes scroll-dot { 0%, 100% { transform: translateY(0); opacity: 1; } 60% { transform: translateY(22px); opacity: 0.2; } }

/* ═══ Ticker ══════════════════════════════════════════════════ */
.ticker {
  position: relative; z-index: 2;
  background: var(--verm); color: oklch(0.97 0.02 35);
  box-shadow: 0 12px 30px oklch(0.55 0.17 35 / 0.25);
  overflow: clip;
}
.ticker-track {
  display: flex; gap: 0; width: max-content;
  padding-block: 11px;
  animation: ticker-slide var(--ticker-dur, 42s) linear infinite;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 26px; padding-inline: 13px; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.06em; white-space: nowrap; }
.ticker-track .tick-star { color: var(--gold); }
@keyframes ticker-slide { to { transform: translateX(-50%); } }

/* ═══ Promise ═════════════════════════════════════════════════ */
.promise-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 88px); align-items: center;
}
.promise-points { margin-top: 26px; display: grid; gap: 13px; }
.promise-points li { display: flex; gap: 13px; align-items: baseline; font-weight: 500; }
.pp-dot {
  flex: none; width: 11px; height: 11px; border-radius: 50%;
  background: var(--verm); box-shadow: 0 0 0 4px var(--verm-soft);
  transform: translateY(-1px);
}
.promise-stats {
  margin: 34px 0 0; display: flex; gap: clamp(24px, 4vw, 54px);
  border-top: 2px dashed oklch(0.33 0.055 315 / 0.15); padding-top: 26px;
}
.promise-stats dt { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.9rem, 3vw, 2.6rem); color: var(--verm); }
.promise-stats dd { margin: 2px 0 0; color: var(--ink-soft); font-size: 0.95rem; }

.promise-seal-zone { position: relative; }
.promise-art {
  margin: 0; border-radius: var(--radius-l); overflow: clip;
  box-shadow: var(--shadow-pop);
  transform: rotate(1.6deg);
  background: var(--white);
}
.promise-art img { aspect-ratio: 4 / 3.1; object-fit: cover; width: 100%; }
.promise-art figcaption {
  padding: 13px 20px; font-size: 0.88rem; color: var(--ink-soft);
  background: var(--white);
}
.hanko {
  position: absolute; top: -34px; right: -18px;
  width: 118px; height: 118px; border-radius: 50%;
  background: var(--verm);
  box-shadow: 0 14px 30px oklch(0.55 0.17 35 / 0.45), inset 0 0 0 5px oklch(1 0 0 / 0.28), inset 0 0 0 9px var(--verm);
  display: grid; place-content: center; justify-items: center; gap: 2px;
  transform: rotate(-10deg);
  color: #fff;
}
.hanko-inner { font-family: var(--font-display); font-weight: 700; font-size: 2rem; line-height: 1; }
.hanko-label { font-size: 0.5rem; font-weight: 700; letter-spacing: 0.22em; opacity: 0.9; }

/* ═══ Artists — the roster rows ═══════════════════════════════ */
.artists { padding-block: clamp(72px, 9vw, 120px) 0; }
.artist-band {
  background: oklch(0.95 0.015 320); color: oklch(0.78 0.03 320);
  overflow: clip; border-block: 1px solid oklch(0.33 0.055 315 / 0.08);
}
.artist-band-track {
  display: flex; width: max-content; padding-block: 9px;
  animation: ticker-slide var(--band-dur, 36s) linear infinite;
}
.artist-band-track span { padding-inline: 18px; font-weight: 900; font-size: 0.92rem; letter-spacing: 0.2em; white-space: nowrap; }
.artists-head { padding-block: clamp(44px, 5vw, 72px) clamp(30px, 4vw, 52px); }

.artist-rows { border-top: 1px solid oklch(0.33 0.055 315 / 0.1); }
.artist-row {
  position: relative;
  background: var(--white);
  border-bottom: 1px solid oklch(0.33 0.055 315 / 0.1);
  transition: background-color 0.35s ease;
}
.artist-row-inner {
  width: min(1200px, 100%); margin-inline: auto;
  display: grid; grid-template-columns: clamp(210px, 26vw, 350px) 1fr auto;
  align-items: center; gap: clamp(16px, 3vw, 40px);
  min-height: clamp(150px, 17vw, 215px);
  padding-right: clamp(18px, 4vw, 48px);
}
.row-art { align-self: stretch; overflow: clip; position: relative; }
.row-art img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 14%;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.artist-row:hover .row-art img, .artist-row:focus-within .row-art img { transform: scale(1.06); }
.row-id { text-align: center; }
.row-name {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.45rem, 2.9vw, 2.25rem); letter-spacing: 0.01em;
  transition: color 0.3s;
}
.artist-row:hover .row-name, .artist-row:focus-within .row-name { color: var(--row-acc, var(--verm)); }
.row-shop { display: block; margin-top: 5px; color: var(--ink-soft); font-size: 0.95rem; letter-spacing: 0.08em; }
.row-line { display: block; margin-top: 9px; color: var(--ink-soft); font-size: 0.86rem; opacity: 0; transform: translateY(4px); transition: opacity 0.35s, transform 0.35s; }
.artist-row:hover .row-line, .artist-row:focus-within .row-line { opacity: 1; transform: translateY(0); }
.row-cta {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 900; font-size: 1rem; letter-spacing: 0.04em;
  color: var(--sky-deep);
  padding: 13px 26px; border-radius: 999px;
  border: 2px solid oklch(0.33 0.055 315 / 0.14);
  background: var(--white);
  transition: background-color 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}
.row-cta svg { width: 17px; height: 17px; transition: transform 0.25s; }
.artist-row:hover .row-cta, .artist-row:focus-within .row-cta {
  background: var(--row-acc, var(--verm)); border-color: var(--row-acc, var(--verm));
  color: #fff; transform: translateX(4px);
}
.artist-row:hover .row-cta svg { transform: translateX(3px); }
.row-hit { position: absolute; inset: 0; z-index: 1; }
.row-hit:focus-visible { outline-offset: -4px; }
/* corner ticks, like the reference */
.artist-row .tick {
  position: absolute; width: 0; height: 0; z-index: 2;
  border-style: solid; border-color: transparent;
  opacity: 0.85; transition: border-color 0.3s;
  pointer-events: none;
}
.artist-row .tick-tl { top: 7px; left: 7px; border-width: 13px 13px 0 0; border-top-color: var(--row-acc, var(--sky-deep)); }
.artist-row .tick-tr { top: 7px; right: 7px; border-width: 0 13px 13px 0; border-right-color: var(--row-acc, var(--sky-deep)); }
.artist-row .tick-bl { bottom: 7px; left: 7px; border-width: 13px 0 0 13px; border-left-color: var(--row-acc, var(--sky-deep)); }
.artist-row .tick-br { bottom: 7px; right: 7px; border-width: 0 0 13px 13px; border-bottom-color: var(--row-acc, var(--sky-deep)); }
/* hover wash */
.artist-row:hover, .artist-row:focus-within { background: var(--row-wash, var(--verm-soft)); }

/* ═══ Shop ════════════════════════════════════════════════════ */
.shop-head { margin-bottom: 34px; }
.shop-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.chip {
  padding: 11px 22px; border-radius: 999px;
  border: 2px solid oklch(0.33 0.055 315 / 0.14);
  background: oklch(1 0 0 / 0.65);
  font-weight: 700; font-size: 0.94rem;
  transition: border-color 0.2s, background-color 0.2s, color 0.2s, transform 0.2s;
}
.chip:hover { border-color: var(--verm); color: var(--verm-deep); transform: translateY(-2px); }
.chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.artist-filter-pill {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 18px; padding: 9px 12px 9px 20px;
  background: var(--verm-soft); border: 1.5px dashed var(--verm);
  border-radius: 999px; font-size: 0.95rem; color: var(--verm-deep); font-weight: 500;
}
.artist-filter-pill button {
  width: 26px; height: 26px; border-radius: 50%; background: var(--verm); color: #fff;
  font-size: 0.75rem; font-weight: 900; display: grid; place-items: center;
  transition: transform 0.2s;
}
.artist-filter-pill button:hover { transform: rotate(90deg); }

.product-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
}
.p-card {
  position: relative;
  background: var(--white); border-radius: var(--radius-m); overflow: clip;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
}
.p-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-pop); }
.p-media { position: relative; aspect-ratio: 1; overflow: clip; background: var(--cloud); }
.p-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.p-card:hover .p-media img { transform: scale(1.055); }
.p-badge {
  position: absolute; top: 13px; left: 13px;
  padding: 6px 13px; border-radius: 999px;
  font-size: 0.72rem; font-weight: 900; letter-spacing: 0.1em;
  background: var(--verm); color: #fff;
}
.p-badge.is-hot { background: var(--gold); color: var(--ink); }
.p-body { padding: 17px 19px 20px; }
.p-artist { display: flex; align-items: center; gap: 7px; font-size: 0.83rem; color: var(--ink-soft); }
.p-artist::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--p-acc, var(--verm)); }
.p-name { margin-top: 5px; font-weight: 700; font-size: 1.04rem; line-height: 1.4; }
.p-foot { margin-top: 13px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.p-price { font-family: var(--font-display); font-weight: 700; font-size: 1.22rem; }
.p-price sup { font-size: 0.72em; }
.add-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--verm); color: #fff;
  padding: 11px 18px; border-radius: 999px;
  font-weight: 700; font-size: 0.9rem;
  transition: background-color 0.2s, transform 0.2s;
}
.add-btn:hover { background: var(--verm-deep); transform: scale(1.05); }
.add-btn:active { transform: scale(0.94); }
.add-btn svg { width: 15px; height: 15px; }

/* featured card */
.p-card.is-featured { grid-column: span 2; display: grid; grid-template-columns: 1.05fr 1fr; }
.p-card.is-featured .p-media { aspect-ratio: auto; height: 100%; min-height: 300px; }
.p-card.is-featured .p-body { align-self: center; padding: clamp(22px, 3vw, 40px); }
.p-feat-tag {
  display: inline-flex; gap: 8px; align-items: center;
  font-size: 0.78rem; font-weight: 900; letter-spacing: 0.14em;
  color: var(--verm); margin-bottom: 12px;
}
.p-card.is-featured .p-name { font-family: var(--font-display); font-size: clamp(1.4rem, 2vw, 1.85rem); line-height: 1.25; }
.p-feat-desc { margin-top: 10px; color: var(--ink-soft); font-size: 0.96rem; }
.p-card.is-featured .p-foot { margin-top: 20px; justify-content: flex-start; gap: 18px; }

.shop-empty { padding: 60px 20px; text-align: center; color: var(--ink-soft); font-size: 1.05rem; }
.shop-empty strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); margin-bottom: 8px; }

/* ═══ For artists ═════════════════════════════════════════════ */
.for-artists { padding-bottom: 0; }
.fa-grid {
  position: relative;
  background: var(--ink);
  border-radius: var(--radius-l);
  padding: clamp(44px, 6vw, 84px);
  display: grid; grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(30px, 5vw, 70px);
  overflow: clip;
  color: oklch(0.93 0.015 320);
  line-height: 1.8;
}
.fa-grid::before {
  content: "✦ ✧ ✦ ✧ ✦"; position: absolute; top: 26px; right: 40px;
  color: var(--gold); letter-spacing: 1.6em; font-size: 0.8rem; opacity: 0.8;
}
.fa-jp { font-family: var(--font-display); color: var(--sakura); font-size: clamp(1.15rem, 2vw, 1.5rem); margin-bottom: 12px; }
.fa-title { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.fa-sub { margin-top: 16px; max-width: 58ch; }
.fa-steps { margin-top: 34px; display: grid; gap: 22px; }
.fa-steps li { display: flex; gap: 18px; align-items: flex-start; }
.fa-step-no {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: oklch(1 0 0 / 0.08); border: 1.5px solid oklch(1 0 0 / 0.22);
  font-family: var(--font-display); font-size: 1.15rem; color: var(--sakura);
}
.fa-steps h3 { font-size: 1.1rem; color: #fff; margin-bottom: 4px; }
.fa-steps p { font-size: 0.97rem; color: oklch(0.87 0.02 320); max-width: 52ch; }
.fa-copy .btn { margin-top: 36px; }
.fa-grid { position: relative; }
.fa-mascots { position: relative; min-height: 320px; }
.fa-invite {
  position: absolute; right: clamp(16px, 5vw, 84px); bottom: 0;
  height: min(92%, 580px); width: auto; max-width: none;
  filter: drop-shadow(-16px 18px 30px oklch(0 0 0 / 0.42));
}
@media (max-width: 1024px) {
  .fa-mascots { min-height: 0; }
  .fa-invite { position: static; display: block; height: 320px; margin: 8px auto 0; }
}

/* ═══ Footer ══════════════════════════════════════════════════ */
.footer {
  margin-top: clamp(72px, 9vw, 120px);
  background: linear-gradient(180deg, var(--white) 0%, oklch(0.94 0.04 330) 45%, oklch(0.9 0.05 305) 100%);
  padding-top: clamp(56px, 7vw, 96px);
}
.footer-grid {
  display: grid; grid-template-columns: 1.2fr 0.7fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  padding-bottom: 48px;
}
.footer-word { font-family: var(--font-display); font-weight: 700; font-size: 2.1rem; }
.footer-word em { font-style: normal; color: var(--verm); }
.footer-jp { color: var(--ink-soft); letter-spacing: 0.3em; font-size: 0.8rem; margin-top: 2px; }
.footer-tag { margin-top: 16px; color: var(--ink-soft); }
.footer-nav ul { display: grid; gap: 10px; }
.footer-nav a { font-weight: 700; }
.footer-nav a:hover { color: var(--verm-deep); }
.footer-club label { display: block; font-weight: 700; margin-bottom: 12px; }
.club-row { display: flex; gap: 10px; }
.club-row input {
  flex: 1; min-width: 0;
  font: inherit; color: var(--ink);
  background: oklch(1 0 0 / 0.75);
  border: 2px solid oklch(0.33 0.055 315 / 0.16);
  border-radius: 999px; padding: 13px 22px;
}
.club-row input::placeholder { color: oklch(0.45 0.04 315); }
.club-row input:focus-visible { outline-offset: 0; border-color: var(--verm); }
.club-done { margin-top: 12px; color: var(--verm-deep); font-weight: 700; }
.footer-legal {
  border-top: 1px solid oklch(0.33 0.055 315 / 0.14);
  padding-block: 22px; font-size: 0.85rem; color: var(--ink-soft);
}

/* ═══ Toast ═══════════════════════════════════════════════════ */
.cart-toast {
  position: fixed; bottom: 26px; left: 50%; transform: translate(-50%, 90px);
  z-index: var(--z-toast);
  background: var(--ink); color: #fff;
  padding: 15px 26px; border-radius: 999px;
  font-weight: 700; box-shadow: var(--shadow-pop);
  opacity: 0; transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s;
  max-width: min(92vw, 480px); text-align: center;
}
.cart-toast.is-show { transform: translate(-50%, 0); opacity: 1; }
.cart-toast .toast-star { color: var(--gold); }

/* ═══ Responsive ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .promise-grid { grid-template-columns: 1fr; gap: 56px; }
  .promise-seal-zone { max-width: 560px; }
  .fa-grid { grid-template-columns: 1fr; }
  .fa-mascots { min-height: 200px; }
  .p-card.is-featured { grid-column: span 2; }
}

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .logo-jp { display: none; }

  .hero { min-height: 560px; }
  .hero-char-wrap { height: 58svh; bottom: 10svh; }
  .hero-title { top: 22svh; }
  .hero-copy { bottom: 5svh; }
  .hero-scroll { display: none; }

  .artist-row-inner {
    grid-template-columns: clamp(120px, 34vw, 200px) 1fr;
    grid-template-areas: "art id" "art cta";
    padding-right: 18px; row-gap: 6px;
    min-height: 150px;
  }
  .row-art { grid-area: art; }
  .row-id { grid-area: id; text-align: left; align-self: end; }
  .row-line { display: none; }
  .row-cta { grid-area: cta; justify-self: start; align-self: start; padding: 10px 20px; font-size: 0.9rem; }

  .p-card.is-featured { grid-column: span 1; display: block; }
  .p-card.is-featured .p-media { min-height: 0; aspect-ratio: 1; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 520px) {
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .p-body { padding: 13px 14px 16px; }
  .p-name { font-size: 0.93rem; }
  .add-btn { padding: 10px 14px; font-size: 0.82rem; }
  .p-price { font-size: 1.05rem; }
  .promise-stats { flex-wrap: wrap; gap: 22px; }
  .hanko { width: 92px; height: 92px; top: -26px; right: -6px; }
  .hanko-inner { font-size: 1.5rem; }
  .container { width: min(1200px, 100% - 32px); }
}

/* ═══ Reduced motion ══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .ticker-track, .artist-band-track { animation: none !important; }
  .hero-scroll-dot { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ═══ Language toggle ═════════════════════════════════════════ */
.lang-toggle { display: inline-flex; align-items: center; gap: 2px; padding: 3px; border-radius: 999px; background: oklch(0.33 0.055 315 / 0.07); }
.lang-opt { padding: 6px 11px; border-radius: 999px; font-weight: 800; font-size: 0.8rem; letter-spacing: 0.04em; color: var(--ink-soft); transition: color 0.2s, background-color 0.2s, box-shadow 0.2s; }
.lang-opt[aria-pressed="true"] { background: var(--verm); color: #fff; box-shadow: 0 3px 9px oklch(0.55 0.17 35 / 0.3); }
.lang-opt[aria-pressed="false"]:hover { color: var(--verm-deep); }

/* ═══ Testimonials ════════════════════════════════════════════ */
.testimonials { background: linear-gradient(180deg, var(--white), oklch(0.985 0.01 340)); }
.tm-head-block { text-align: center; margin-bottom: clamp(34px, 4vw, 54px); }
.tm-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(18px, 2.4vw, 28px); align-items: start; }
.tm-card { position: relative; margin: 0; background: var(--white); border-radius: var(--radius-l); padding: clamp(28px, 3vw, 40px) clamp(24px, 3vw, 34px) clamp(20px, 2.4vw, 26px); box-shadow: var(--shadow-card); transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s; }
.tm-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-pop); }
.tm-mark { position: absolute; top: clamp(4px, 1vw, 12px); right: clamp(18px, 2.5vw, 30px); font-family: var(--font-display); font-size: 5.5rem; line-height: 1; color: var(--tm-acc, var(--verm)); opacity: 0.16; pointer-events: none; }
.tm-quote { margin: 0 0 24px; font-size: 1.03rem; line-height: 1.72; color: var(--ink); position: relative; z-index: 1; }
.tm-cap { display: grid; grid-template-columns: auto 1fr; grid-template-areas: "avatar who" "avatar socials"; column-gap: 14px; row-gap: 7px; align-items: center; }
.tm-avatar { grid-area: avatar; width: 58px; height: 58px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 3px var(--white), 0 0 0 5px color-mix(in oklch, var(--tm-acc, var(--verm)) 55%, white); }
.tm-who { grid-area: who; display: flex; flex-direction: column; line-height: 1.3; }
.tm-name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.tm-shop { color: var(--ink-soft); font-size: 0.82rem; }
.tm-socials { grid-area: socials; display: flex; gap: 8px; }
.tm-social { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; color: var(--ink-soft); background: oklch(0.33 0.055 315 / 0.06); transition: color 0.2s, background-color 0.2s, transform 0.2s; }
.tm-social svg { width: 16px; height: 16px; }
.tm-social:hover { color: #fff; background: var(--tm-acc, var(--verm)); transform: translateY(-2px); }

/* ═══ FAQ ═════════════════════════════════════════════════════ */
.faq-wrap { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(30px, 5vw, 72px); align-items: start; }
.faq-head { position: sticky; top: calc(var(--nav-h) + 34px); }
.faq-list { display: grid; gap: 12px; }
.faq-item { background: var(--white); border-radius: var(--radius-m); box-shadow: var(--shadow-card); overflow: clip; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: clamp(17px, 2vw, 22px) clamp(20px, 2.4vw, 28px); font-family: var(--font-display); font-weight: 700; font-size: clamp(1.02rem, 1.4vw, 1.16rem); line-height: 1.4; cursor: pointer; list-style: none; transition: color 0.25s; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--verm-deep); }
.faq-ic { position: relative; flex: none; width: 20px; height: 20px; }
.faq-ic::before, .faq-ic::after { content: ""; position: absolute; background: var(--verm); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s; }
.faq-ic::before { top: 8.75px; left: 2px; right: 2px; height: 2.5px; }
.faq-ic::after { left: 8.75px; top: 2px; bottom: 2px; width: 2.5px; }
.faq-item[open] .faq-ic::after { transform: scaleY(0); opacity: 0; }
.faq-item[open] .faq-q { color: var(--verm-deep); }
.faq-a { padding: 0 clamp(20px, 2.4vw, 28px) clamp(20px, 2.2vw, 26px); color: var(--ink-soft); }
.faq-a p { margin: 0; max-width: 64ch; line-height: 1.75; }
.faq-item[open] .faq-a { animation: faq-in 0.35s ease-out; }
@keyframes faq-in { from { opacity: 0; transform: translateY(-6px); } }

@media (max-width: 1024px) {
  .faq-wrap { grid-template-columns: 1fr; gap: 34px; }
  .faq-head { position: static; }
}
@media (max-width: 560px) {
  .tm-grid { grid-template-columns: 1fr; }
}
