/* ════════════════════════════════════════════════════════════
   AMINISM — Layout & Components v3
   Editorial cinematic — Gin Lane × VAAN × Avex × KHAITE
════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════
   HEADER — translucent, tracks scroll
════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  padding: var(--sp-5) var(--gutter);
  /* No backdrop-filter transition — causes compositor jank on macOS during scroll */
  transition: background .25s var(--ease-out),
              padding .25s var(--ease-out),
              border-color .25s var(--ease-out);
  border-bottom: 1px solid transparent;
  /* Promote to its own GPU layer once, so scroll doesn't re-rasterize it */
  transform: translateZ(0);
  contain: layout style;
}
.site-header.is-scrolled {
  background: rgba(246, 241, 232, .96);
  padding-block: var(--sp-3);
  border-color: var(--c-line);
}
.site-header--dark {
  color: var(--c-bone);
}
.site-header--dark.is-scrolled {
  background: rgba(10, 7, 4, .94);
  border-color: var(--c-line-dark);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--f-display);
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  font-weight: var(--fw-regular);
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--c-ink);
  flex-shrink: 0;
  line-height: 1;
}
.logo__icon { width: 32px; height: 32px; flex-shrink: 0; }
.logo--white { color: var(--c-bone); }

/* ─── Logo wordmark ───────────────────────────────────
   <img class="logo__img"> is replaced inline-SVG by
   js/logo-inject.js → <span class="logo__svg-wrap">…</span>
   Inside, the SVG uses class names .st0–.st3, which we
   re-color via CSS variables that cascade from each context.
─────────────────────────────────────────────────────── */

/* Defaults: original logo colors (dark wordmark for light backgrounds) */
:root {
  --logo-c0: #FBF8F2;  /* white-ish accents (was #fff) */
  --logo-c1: #B08956;  /* gold mark (was #bd9c63) */
  --logo-c2: #FBF8F2;  /* off-white (was #f5f5f5) */
  --logo-c3: #14110A;  /* dark wordmark letters (was #222221) */
}

/* On dark backgrounds, flip the wordmark to bone */
.site-header--dark,
.site-footer,
.logo__img--light {
  --logo-c0: var(--c-bone);
  --logo-c2: var(--c-bone);
  --logo-c3: var(--c-bone);
}

/* The injected wrapper */
.logo__img,
.logo__svg-wrap {
  height: 44px;
  width: auto;
  display: inline-flex;
  align-items: center;
  line-height: 0;
  user-select: none;
  -webkit-user-drag: none;
  transition: height var(--dur-slow) var(--ease-out);
  flex-shrink: 0;
}
.logo__svg-wrap svg {
  height: 100%;
  width: auto;
  display: block;
}
/* Apply CSS-variable fills to the SVG path classes */
.logo__svg-wrap svg .st0 { fill: var(--logo-c0); }
.logo__svg-wrap svg .st1 { fill: var(--logo-c1); }
.logo__svg-wrap svg .st2 { fill: var(--logo-c2); }
.logo__svg-wrap svg .st3 { fill: var(--logo-c3); }
.logo__svg-wrap svg polygon,
.logo__svg-wrap svg rect.st1 { fill: var(--logo-c1); }

.site-header.is-scrolled .logo__img,
.site-header.is-scrolled .logo__svg-wrap { height: 34px; }
.site-footer .logo__img,
.site-footer .logo__svg-wrap { height: 56px; }

@media (max-width: 540px) {
  .logo__img, .logo__svg-wrap { height: 32px; }
  .site-header.is-scrolled .logo__img,
  .site-header.is-scrolled .logo__svg-wrap { height: 26px; }
  .site-footer .logo__img,
  .site-footer .logo__svg-wrap { height: 44px; }
}

.logo { line-height: 0; gap: 0; display: inline-flex; align-items: center; }

/* ─── Floating LINE official-account CTA ─────────────── */
.line-cta {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 350;
  display: inline-flex;
  align-items: center;
  gap: .6em;
  padding: .8em 1.2em .8em 1em;
  background: #06C755;
  color: #fff;
  border-radius: var(--r-full);
  box-shadow: 0 10px 30px rgba(6,199,85,.35), 0 2px 8px rgba(0,0,0,.08);
  font-family: var(--f-serif);
  font-size: var(--t-xs);
  font-weight: var(--fw-regular);
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: transform var(--dur-fast), box-shadow var(--dur-fast);
}
.line-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(6,199,85,.45), 0 4px 12px rgba(0,0,0,.1);
  color: #fff;
}
.line-cta svg { width: 18px; height: 18px; flex-shrink: 0; fill: #fff; }
@media (max-width: 540px) {
  .line-cta { right: 1rem; bottom: 1rem; padding: .7em .9em; font-size: var(--t-2xs); }
  .line-cta span { display: none; }
}

/* Primary nav */
.nav-main {
  display: flex;
  align-items: center;
  gap: var(--sp-10);
}
.nav-main a {
  position: relative;
  font-family: var(--f-serif);
  font-size: var(--t-xs);
  font-weight: var(--fw-regular);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-ink-mid);
  padding-block: var(--sp-1);
  transition: color var(--dur-fast);
}
.site-header--dark .nav-main a { color: rgba(255,251,242,.55); }
.nav-main a::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--c-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-normal) var(--ease-out);
}
.nav-main a:hover { color: var(--c-ink); }
.site-header--dark .nav-main a:hover { color: var(--c-bone); }
.nav-main a:hover::after,
.nav-main a.is-active::after { transform: scaleX(1); }

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.nav-icon-btn {
  position: relative;
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--c-ink-soft);
  transition: background var(--dur-fast), color var(--dur-fast);
}
.site-header--dark .nav-icon-btn { color: rgba(255,251,242,.6); }
.nav-icon-btn:hover {
  background: var(--c-gold-pale);
  color: var(--c-gold-deep);
}
.site-header--dark .nav-icon-btn:hover {
  background: rgba(176,137,86,.18);
  color: var(--c-gold-light);
}
.nav-icon-btn__badge {
  position: absolute;
  top: 3px; right: 3px;
  min-width: 16px; height: 16px;
  padding: 0 4px;
  border-radius: var(--r-full);
  background: var(--c-gold);
  color: var(--c-bone);
  font-family: var(--f-num);
  font-size: 10px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Language switcher */
.lang-switcher { position: relative; }
.lang-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: var(--r-full);
  font-family: var(--f-serif);
  font-size: var(--t-xs);
  font-weight: var(--fw-regular);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  border: 1px solid var(--c-line-strong);
  transition: all var(--dur-fast);
}
.site-header--dark .lang-trigger {
  color: rgba(255,251,242,.6);
  border-color: rgba(255,251,242,.18);
}
.lang-trigger:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--c-bone);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-3);
  min-width: 280px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: all var(--dur-normal) var(--ease-out);
  z-index: 300;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.lang-dropdown.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.lang-option {
  padding: 9px 12px;
  border-radius: var(--r-sm);
  font-family: var(--f-serif);
  font-size: var(--t-xs);
  letter-spacing: .04em;
  color: var(--c-ink-soft);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--dur-fast);
  text-align: left;
}
.lang-option:hover,
.lang-option.is-active {
  background: var(--c-gold-pale);
  color: var(--c-gold-deep);
}

/* Mobile toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px; height: 40px;
  padding: var(--sp-2);
}
.menu-toggle span {
  display: block;
  height: 1px;
  background: currentColor;
  transition: all var(--dur-normal) var(--ease-out);
  transform-origin: center;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: var(--c-urushi);
  color: var(--c-bone);
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + var(--sp-12)) var(--gutter) var(--sp-12);
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-silk);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__list { display: flex; flex-direction: column; gap: var(--sp-2); flex: 1; }
.mobile-nav__item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-family: var(--f-display);
  font-size: var(--t-2xl);
  font-weight: var(--fw-thin);
  letter-spacing: var(--ls-snug);
  color: var(--c-bone);
  padding-block: var(--sp-4);
  border-bottom: 1px solid rgba(255,251,242,.08);
  transition: color var(--dur-fast);
}
.mobile-nav__item:hover { color: var(--c-gold-light); }
.mobile-nav__num {
  font-family: var(--f-num);
  font-size: var(--t-2xs);
  letter-spacing: .2em;
  color: rgba(255,251,242,.3);
}
.mobile-nav__foot {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-8);
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,251,242,.08);
}

@media (max-width: 1024px) {
  .nav-main { display: none; }
  .menu-toggle { display: flex; }
  .lang-switcher { display: none; }
}

/* ════════════════════════════════════════════════════════
   HERO — flagship cinematic
════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--c-urushi);
  color: var(--c-bone);
}
/* Static poster — shown immediately, crossfades out when video is ready.
   No CSS filter (very expensive on macOS); the dimming is done by a
   semi-transparent overlay placed above the video instead. */
.hero__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
  pointer-events: none;
  transition: opacity 1.2s var(--ease-silk, cubic-bezier(.22,1,.36,1));
}
.hero.is-video-ready .hero__poster { opacity: 0; }

/* Full-bleed brand video. No filter — dimming is the .hero__veil overlay. */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s var(--ease-silk, cubic-bezier(.22,1,.36,1));
}
.hero.is-video-ready .hero__video { opacity: 1; }
/* Tint overlay — replaces the per-pixel filter, single GPU composite */
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(20,17,10,.18) 0%, rgba(20,17,10,.42) 100%),
    rgba(20,17,10,.32);
  mix-blend-mode: normal;
}
@media (prefers-reduced-motion: reduce) { .hero__video { display: none; } }

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
  /* Reduce canvas overlay opacity so the video reads through */
  opacity: .35;
}
.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background:
    /* Bottom→top darkening for type legibility */
    linear-gradient(180deg, rgba(5,4,2,.05) 0%, rgba(5,4,2,.0) 35%, rgba(5,4,2,.55) 75%, rgba(5,4,2,.85) 100%),
    /* Subtle warm spotlights kept from original */
    radial-gradient(ellipse at 75% 30%, rgba(176,137,86,.16), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(120,80,40,.10), transparent 60%);
  z-index: 2;
  pointer-events: none;
}
.hero__noise { display: none; /* SVG turbulence + mix-blend was GPU-heavy */ }
.hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 0 var(--gutter) clamp(4rem, 9vw, 7rem);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: var(--sp-12);
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--sp-8); }
}
.hero__content {
  max-width: 760px;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  font-family: var(--f-serif);
  font-size: var(--t-xs);
  font-weight: var(--fw-regular);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin-bottom: var(--sp-8);
}
.hero__eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--c-gold);
  flex-shrink: 0;
}
.hero__title {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 6vw, 6.4rem);
  font-weight: var(--fw-thin);
  line-height: 1.05;
  letter-spacing: -.025em;
  color: var(--c-bone);
  margin-bottom: var(--sp-8);
  word-break: keep-all;
  overflow-wrap: anywhere;
  line-break: strict;
}
.hero__title em {
  font-style: italic;
  color: var(--c-gold-light);
  font-weight: var(--fw-thin);
}
.hero__sub {
  font-family: var(--f-serif);
  font-size: clamp(.9rem, 1vw, 1.15rem);
  font-weight: var(--fw-light);
  line-height: 1.75;
  color: rgba(255,251,242,.6);
  max-width: 480px;
  word-break: keep-all;
  overflow-wrap: anywhere;
  line-break: strict;
  margin-bottom: var(--sp-12);
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.hero__meta {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  text-align: right;
  font-family: var(--f-serif);
  font-size: var(--t-xs);
  letter-spacing: .14em;
  color: rgba(255,251,242,.45);
  border-right: 1px solid rgba(255,251,242,.15);
  padding-right: var(--sp-6);
}
.hero__meta b {
  display: block;
  font-family: var(--f-display);
  font-size: var(--t-lg);
  font-weight: var(--fw-light);
  color: var(--c-bone);
  letter-spacing: 0;
  text-transform: none;
}
.hero__scroll-cue {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

/* ════════════════════════════════════════════════════════
   EDITORIAL GRID
════════════════════════════════════════════════════════ */
.editorial {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--sp-px);
}
.editorial__main { grid-row: 1 / 3; }
@media (max-width: 720px) {
  .editorial { grid-template-columns: 1fr; }
  .editorial__main { grid-row: auto; }
}
.editorial-cell {
  position: relative;
  overflow: hidden;
  background: var(--c-paper-warm);
  display: block;
  isolation: isolate;
}
.editorial-cell__media {
  width: 100%;
  height: 100%;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}
.editorial__main .editorial-cell__media { min-height: 640px; }
.editorial-cell__media-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur-cinema) var(--ease-silk);
}
.editorial-cell:hover .editorial-cell__media-inner { transform: scale(1.06); }
.editorial-cell__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    transparent 30%,
    rgba(10,7,4,.4) 70%,
    rgba(10,7,4,.9) 100%);
  z-index: 2;
}
.editorial-cell__body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: clamp(1.5rem, 3vw, 3rem);
  color: var(--c-bone);
  z-index: 3;
  transition: transform var(--dur-slow) var(--ease-out);
}
.editorial-cell:hover .editorial-cell__body { transform: translateY(-6px); }
.editorial-cell__craft {
  font-family: var(--f-serif);
  font-size: var(--t-2xs);
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin-bottom: var(--sp-3);
}
.editorial-cell__title {
  font-family: var(--f-display);
  font-size: var(--t-lg);
  font-weight: var(--fw-light);
  line-height: 1.15;
  letter-spacing: -.01em;
  margin-bottom: var(--sp-3);
}
.editorial__main .editorial-cell__title {
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  font-weight: var(--fw-thin);
}
.editorial-cell__price {
  font-family: var(--f-serif);
  font-size: var(--t-sm);
  font-weight: var(--fw-light);
  color: rgba(255,251,242,.7);
}
.editorial-cell__price small {
  font-size: .65em;
  opacity: .5;
  margin-left: 4px;
}

/* ════════════════════════════════════════════════════════
   PRODUCT GRID & CARD
════════════════════════════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: var(--col-gap) clamp(1rem, 1.8vw, 1.75rem);
}
.product-grid--3 { grid-template-columns: repeat(3, 1fr); }
.product-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .product-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .product-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .product-grid--3 { grid-template-columns: 1fr; }
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}
.product-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--c-paper-deep);
  margin-bottom: var(--sp-5);
  isolation: isolate;
}
.product-card__media-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur-cinema) var(--ease-silk);
}
.product-card:hover .product-card__media-inner { transform: scale(1.06); }
.product-card__badge {
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-4);
  z-index: 3;
}
.product-card__wish {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  z-index: 3;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(251, 248, 242, .88);
  /* backdrop-filter removed */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-ink-mid);
  transition: all var(--dur-fast);
}
.product-card__wish:hover,
.product-card__wish.is-active {
  background: var(--c-bone);
  color: var(--c-error);
}
.product-card__quick {
  position: absolute;
  bottom: var(--sp-4);
  left: var(--sp-4);
  right: var(--sp-4);
  background: rgba(20, 17, 10, .9);
  /* backdrop-filter removed */
  color: var(--c-bone);
  border-radius: var(--r-full);
  padding: .9em 1.2em;
  font-family: var(--f-serif);
  font-size: var(--t-xs);
  font-weight: var(--fw-regular);
  letter-spacing: .2em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--dur-normal) var(--ease-out);
  z-index: 3;
  cursor: pointer;
}
.product-card:hover .product-card__quick {
  opacity: 1;
  transform: translateY(0);
}
.product-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-card__craft {
  font-family: var(--f-serif);
  font-size: var(--t-2xs);
  font-weight: var(--fw-regular);
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.product-card__name {
  font-family: var(--f-display);
  font-size: var(--t-md);
  font-weight: var(--fw-regular);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-snug);
  color: var(--c-ink);
}
.product-card__artist {
  font-family: var(--f-serif);
  font-size: var(--t-xs);
  font-weight: var(--fw-light);
  color: var(--c-ink-muted);
  margin-bottom: var(--sp-2);
}
.product-card__price {
  font-family: var(--f-display);
  font-size: var(--t-md);
  font-weight: var(--fw-regular);
  color: var(--c-ink);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.product-card__price small {
  font-family: var(--f-serif);
  font-size: var(--t-2xs);
  font-weight: var(--fw-light);
  color: var(--c-ink-muted);
  letter-spacing: .08em;
}

/* ─── MOBILE: image-first product card ──────────────
   Hide craft/artist lines, keep only name + price.
   Bigger image. */
@media (max-width: 720px) {
  .product-card__media { aspect-ratio: 1 / 1.1; margin-bottom: var(--sp-3); }
  .product-card__craft  { display: none; }
  .product-card__artist { display: none; }
  .product-card__name   { font-size: var(--t-sm); margin-bottom: 2px; }
  .product-card__price  { font-size: var(--t-sm); }
  .product-card__price small { display: none; }
  .product-card__quick  { display: none; }   /* hide hover overlay on mobile */
}

/* Product card — featured large variant */
.product-card--feature .product-card__media { aspect-ratio: 1 / 1; }
.product-card--feature .product-card__name { font-size: var(--t-lg); }

/* ════════════════════════════════════════════════════════
   STORY SPLIT
════════════════════════════════════════════════════════ */
.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  overflow: hidden;
}
@media (max-width: 900px) {
  .story-split { grid-template-columns: 1fr; }
}
.story-split--reverse { direction: rtl; }
.story-split--reverse > * { direction: ltr; }
.story-split__media {
  position: relative;
  overflow: hidden;
  background: var(--c-paper-deep);
  min-height: 60vh;
}
.story-split__media-inner {
  position: absolute;
  inset: -8% 0;
  width: 100%;
  height: 116%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .1s linear;
}
.story-split__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 6rem);
  background: var(--c-urushi);
  color: var(--c-bone);
  position: relative;
}
.story-split__body--light {
  background: var(--c-paper-warm);
  color: var(--c-ink);
}
.story-split__num {
  font-family: var(--f-display);
  font-size: clamp(6rem, 14vw, 16rem);
  font-weight: var(--fw-thin);
  line-height: .85;
  color: rgba(255,251,242,.05);
  margin-bottom: -2rem;
  letter-spacing: -.04em;
  pointer-events: none;
}
.story-split__body--light .story-split__num { color: rgba(20,17,10,.06); }
.story-split__eyebrow {
  font-family: var(--f-serif);
  font-size: var(--t-2xs);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin-bottom: var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.story-split__body--light .story-split__eyebrow { color: var(--c-gold-deep); }
.story-split__title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: var(--fw-thin);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: var(--sp-6);
}
.story-split__title em { font-style: italic; color: var(--c-gold-light); }
.story-split__body--light .story-split__title em { color: var(--c-gold-deep); }
.story-split__text {
  font-family: var(--f-serif);
  font-size: var(--t-md);
  font-weight: var(--fw-light);
  line-height: var(--lh-loose);
  color: rgba(255,251,242,.5);
  margin-bottom: var(--sp-10);
  max-width: 480px;
}
.story-split__body--light .story-split__text { color: var(--c-ink-soft); }

/* ════════════════════════════════════════════════════════
   VALUE / FEATURE BLOCKS
════════════════════════════════════════════════════════ */
.values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--c-line);
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: var(--c-bone);
}
@media (max-width: 720px) {
  .values-row { grid-template-columns: 1fr; }
}
.value-cell {
  position: relative;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-right: 1px solid var(--c-line);
  transition: background var(--dur-normal);
}
.value-cell:last-child { border-right: none; }
.value-cell:hover { background: var(--c-paper-warm); }
@media (max-width: 720px) {
  .value-cell { border-right: none; border-bottom: 1px solid var(--c-line); }
  .value-cell:last-child { border-bottom: none; }
}
.value-cell__num {
  font-family: var(--f-display);
  font-size: var(--t-3xl);
  font-weight: var(--fw-thin);
  color: var(--c-gold);
  line-height: 1;
  margin-bottom: var(--sp-6);
  letter-spacing: -.025em;
}
.value-cell h3 {
  font-family: var(--f-display);
  font-size: var(--t-xl);
  font-weight: var(--fw-light);
  line-height: 1.15;
  margin-bottom: var(--sp-5);
  letter-spacing: var(--ls-snug);
}
.value-cell p {
  font-family: var(--f-serif);
  font-size: var(--t-sm);
  font-weight: var(--fw-light);
  color: var(--c-ink-muted);
  line-height: var(--lh-loose);
}

/* Stat block */
.stat-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--c-paper-warm);
  border: 1px solid var(--c-line);
  border-radius: var(--r-2xl);
  overflow: hidden;
  margin-top: -1px;
}
@media (max-width: 480px) {
  .stat-block { grid-template-columns: 1fr 1fr; }
}
.stat-cell {
  padding: var(--sp-10) var(--sp-6);
  text-align: center;
  border-right: 1px solid var(--c-line);
}
.stat-cell:last-child { border-right: none; }
.stat-cell__num {
  font-family: var(--f-display);
  font-size: var(--t-2xl);
  font-weight: var(--fw-thin);
  line-height: 1;
  color: var(--c-ink);
  margin-bottom: var(--sp-2);
  letter-spacing: -.025em;
}
.stat-cell__num span {
  font-size: .45em;
  color: var(--c-gold);
  vertical-align: middle;
  margin-left: 2px;
}
.stat-cell__label {
  font-family: var(--f-serif);
  font-size: var(--t-2xs);
  font-weight: var(--fw-light);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-ink-muted);
}

/* ════════════════════════════════════════════════════════
   ARTIST CARD
════════════════════════════════════════════════════════ */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-px);
}
@media (max-width: 900px) {
  .artists-grid { grid-template-columns: repeat(2, 1fr); }
}
.artist-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--c-ink);
  aspect-ratio: 3 / 4;
}
.artist-card__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .8;
  transition: all var(--dur-cinema) var(--ease-silk);
}
.artist-card:hover .artist-card__media {
  opacity: .55;
  transform: scale(1.06);
}
.artist-card__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--sp-8);
  background: linear-gradient(to top, rgba(10,7,4,.95), transparent);
  color: var(--c-bone);
  z-index: 2;
  transform: translateY(8px);
  transition: transform var(--dur-slow) var(--ease-out);
}
.artist-card:hover .artist-card__info { transform: translateY(0); }
.artist-card__region {
  font-family: var(--f-serif);
  font-size: var(--t-2xs);
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin-bottom: 6px;
}
.artist-card__name {
  font-family: var(--f-display);
  font-weight: var(--fw-light);
  line-height: 1.1;
  letter-spacing: var(--ls-snug);
  margin-bottom: 6px;
  word-break: keep-all;
  /* Short JP names (≤6 chars) scale with vw; longer names cap smaller */
  font-size: clamp(1rem, 2.2vw, 1.9rem);
}
/* Long names (e.g. romanized "Sara Mitchell") — break at " " between
   surname / given name. Use white-space: pre-line so explicit \n breaks. */
.artist-card__name.is-long {
  font-size: clamp(.85rem, 1.5vw, 1.3rem);
  white-space: pre-line;
}
.artist-card__craft {
  font-family: var(--f-serif);
  font-size: var(--t-2xs);
  font-weight: var(--fw-light);
  color: rgba(255,251,242,.55);
  line-height: 1.55;
  letter-spacing: .04em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.artist-card__arrow {
  position: absolute;
  top: var(--sp-6); right: var(--sp-6);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,251,242,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-bone);
  opacity: 0;
  transform: scale(.8) rotate(-30deg);
  transition: all var(--dur-normal) var(--ease-out);
  z-index: 2;
}
.artist-card:hover .artist-card__arrow {
  opacity: 1;
  transform: scale(1) rotate(0);
  border-color: var(--c-gold);
  color: var(--c-gold-light);
}

/* ════════════════════════════════════════════════════════
   SLIDER (product detail)
════════════════════════════════════════════════════════ */
.slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  background: var(--c-paper-warm);
}
.slider__track {
  display: flex;
  transition: transform .8s var(--ease-silk);
  height: 100%;
}
.slider__slide {
  min-width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
}
.slider__slide img,
.slider__slide > div {
  width: 100%; height: 100%;
  object-fit: cover;
}
.slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(251, 248, 242, .92);
  /* backdrop-filter removed */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-ink);
  z-index: 3;
  box-shadow: var(--shadow-sm);
  transition: all var(--dur-fast);
}
.slider__btn:hover {
  background: var(--c-bone);
  box-shadow: var(--shadow-md);
  color: var(--c-gold-deep);
}
.slider__btn--prev { left: var(--sp-4); }
.slider__btn--next { right: var(--sp-4); }
.slider__count {
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-4);
  z-index: 3;
  padding: 6px 12px;
  background: rgba(251, 248, 242, .9);
  /* backdrop-filter removed */
  border-radius: var(--r-full);
  font-family: var(--f-num);
  font-size: var(--t-2xs);
  letter-spacing: .12em;
  color: var(--c-ink);
}
.slider__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: var(--sp-4);
}
.slider__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-line-strong);
  cursor: pointer;
  transition: all var(--dur-fast);
}
.slider__dot.is-active {
  background: var(--c-gold);
  width: 22px;
  border-radius: var(--r-full);
}

/* Vertical thumbnail strip */
.thumb-strip {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  max-height: 600px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--c-line-strong) transparent;
}
.thumb-strip::-webkit-scrollbar { width: 4px; }
.thumb-strip::-webkit-scrollbar-thumb { background: var(--c-line-strong); border-radius: 4px; }
.thumb-strip__item {
  flex-shrink: 0;
  width: 72px;
  aspect-ratio: 1;
  border-radius: var(--r-sm);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--c-line);
  opacity: .55;
  transition: all var(--dur-fast);
  background: var(--c-paper-warm);
}
.thumb-strip__item.is-active {
  border-color: var(--c-gold);
  opacity: 1;
}
.thumb-strip__item img,
.thumb-strip__item > div {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ════════════════════════════════════════════════════════
   CART DRAWER
════════════════════════════════════════════════════════ */
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(460px, 95vw);
  background: var(--c-paper);
  z-index: 400;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-silk);
  box-shadow: -10px 0 50px rgba(20,17,10,.16);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(10,7,4,.6);
  z-index: 399;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-normal);
}
.cart-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer__head {
  padding: var(--sp-6) var(--sp-8);
  border-bottom: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.cart-drawer__head h2 {
  font-family: var(--f-display);
  font-size: var(--t-xl);
  font-weight: var(--fw-light);
  letter-spacing: var(--ls-snug);
}
.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: var(--sp-6) var(--sp-8);
}
.cart-drawer__foot {
  padding: var(--sp-6) var(--sp-8) var(--sp-8);
  border-top: 1px solid var(--c-line);
  flex-shrink: 0;
  background: var(--c-bone);
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--c-line);
}
.cart-item__img {
  width: 80px;
  aspect-ratio: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-paper-deep);
}
.cart-item__img img,
.cart-item__img > div {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cart-item__info { display: flex; flex-direction: column; gap: 4px; }
.cart-item__craft {
  font-family: var(--f-serif);
  font-size: var(--t-2xs);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.cart-item__name {
  font-family: var(--f-display);
  font-size: var(--t-md);
  font-weight: var(--fw-regular);
  letter-spacing: var(--ls-snug);
  margin-bottom: var(--sp-2);
}
.cart-item__qty {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 4px 10px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-full);
  width: fit-content;
}
.qty-btn {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-num);
  font-size: 16px;
  line-height: 1;
  color: var(--c-ink-soft);
  transition: all var(--dur-fast);
}
.qty-btn:hover { color: var(--c-gold); }
.qty-num {
  font-family: var(--f-num);
  font-size: var(--t-sm);
  font-weight: var(--fw-regular);
  min-width: 20px;
  text-align: center;
}
.cart-item__total {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.cart-item__price {
  font-family: var(--f-display);
  font-size: var(--t-md);
  font-weight: var(--fw-regular);
  color: var(--c-ink);
}
.cart-item__remove {
  font-family: var(--f-serif);
  font-size: var(--t-2xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-ink-muted);
  transition: color var(--dur-fast);
}
.cart-item__remove:hover { color: var(--c-error); }

.cart-empty {
  text-align: center;
  padding: var(--sp-16) 0;
  color: var(--c-ink-muted);
}
.cart-empty svg {
  margin: 0 auto var(--sp-6);
  display: block;
  color: var(--c-gold);
  opacity: .5;
}

.cart-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-5);
}
.cart-summary__label {
  font-family: var(--f-serif);
  font-size: var(--t-xs);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-ink-muted);
}
.cart-summary__total {
  font-family: var(--f-display);
  font-size: var(--t-2xl);
  font-weight: var(--fw-thin);
  color: var(--c-ink);
  letter-spacing: -.02em;
}

/* ════════════════════════════════════════════════════════
   STEPS (checkout progress)
════════════════════════════════════════════════════════ */
.steps {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  justify-content: center;
  margin-bottom: var(--sp-12);
}
.step {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.step__num {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: var(--t-sm);
  font-weight: var(--fw-regular);
  border: 1px solid var(--c-line-strong);
  color: var(--c-ink-muted);
  flex-shrink: 0;
  transition: all var(--dur-normal);
}
.step__label {
  font-family: var(--f-serif);
  font-size: var(--t-xs);
  font-weight: var(--fw-regular);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-ink-muted);
  transition: color var(--dur-normal);
  white-space: nowrap;
}
.step.is-active .step__num {
  background: var(--c-ink);
  border-color: var(--c-ink);
  color: var(--c-bone);
}
.step.is-active .step__label { color: var(--c-ink); }
.step.is-done .step__num {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-bone);
}
.step.is-done .step__label { color: var(--c-gold-deep); }
.step-bar { flex: 0 0 60px; height: 1px; background: var(--c-line-strong); }
@media (max-width: 640px) {
  .step__label { display: none; }
  .step-bar { flex: 0 0 30px; }
}

/* ════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--c-urushi);
  color: rgba(255,251,242,.55);
  padding: var(--sp-28) var(--gutter) var(--sp-12);
  position: relative;
  overflow: hidden;
}
.site-footer__lineart {
  position: absolute;
  right: -10%;
  bottom: -20%;
  width: min(500px, 50vw);
  opacity: .06;
  pointer-events: none;
}
.site-footer__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: var(--sp-12);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid var(--c-line-dark);
  margin-bottom: var(--sp-8);
}
@media (max-width: 1100px) {
  .site-footer__top { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 720px) {
  .site-footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .site-footer__top { grid-template-columns: 1fr; }
}
.footer-brand h4 {
  font-family: var(--f-display);
  font-size: var(--t-md);
  font-weight: var(--fw-light);
  letter-spacing: .04em;
  color: var(--c-bone);
  margin-bottom: var(--sp-4);
}
.footer-brand p {
  font-family: var(--f-serif);
  font-size: var(--t-sm);
  font-weight: var(--fw-light);
  line-height: var(--lh-loose);
  max-width: 320px;
  margin-bottom: var(--sp-6);
}
.footer-col h5 {
  font-family: var(--f-serif);
  font-size: var(--t-2xs);
  font-weight: var(--fw-regular);
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255,251,242,.4);
  margin-bottom: var(--sp-5);
}
.footer-col a {
  display: block;
  font-family: var(--f-serif);
  font-size: var(--t-sm);
  font-weight: var(--fw-light);
  color: rgba(255,251,242,.55);
  margin-bottom: var(--sp-3);
  transition: color var(--dur-fast);
}
.footer-col a:hover { color: var(--c-gold-light); }

.footer-newsletter input {
  background: rgba(255,251,242,.04);
  border-color: rgba(255,251,242,.15);
  color: var(--c-bone);
}
.footer-newsletter input::placeholder { color: rgba(255,251,242,.3); }
.footer-newsletter input:focus { border-color: var(--c-gold); background: rgba(255,251,242,.06); }

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
  font-family: var(--f-serif);
  font-size: var(--t-xs);
  font-weight: var(--fw-light);
  color: rgba(255,251,242,.3);
}
.site-footer__bottom-links {
  display: flex;
  gap: var(--sp-6);
}
.site-footer__bottom-links a {
  color: rgba(255,251,242,.4);
  transition: color var(--dur-fast);
}
.site-footer__bottom-links a:hover { color: var(--c-gold-light); }
.footer-social {
  display: flex;
  gap: var(--sp-2);
  margin-top: var(--sp-2);
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,251,242,.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,251,242,.55);
  transition: all var(--dur-fast);
}
.footer-social a:hover {
  border-color: var(--c-gold);
  color: var(--c-gold-light);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════
   MISC
════════════════════════════════════════════════════════ */
.layout-sidebar {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--sp-12);
  align-items: start;
}
@media (max-width: 900px) {
  .layout-sidebar { grid-template-columns: 1fr; }
}

/* Filter pill strip */
.pill-strip {
  display: flex;
  gap: var(--sp-2);
  overflow-x: auto;
  scrollbar-width: none;
  padding-block: var(--sp-2);
}
.pill-strip::-webkit-scrollbar { display: none; }
.pill {
  flex-shrink: 0;
  padding: .7em 1.5em;
  border: 1px solid var(--c-line-strong);
  border-radius: var(--r-full);
  font-family: var(--f-serif);
  font-size: var(--t-xs);
  font-weight: var(--fw-regular);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-ink-muted);
  background: transparent;
  white-space: nowrap;
  transition: all var(--dur-fast);
}
.pill:hover,
.pill.is-active {
  background: var(--c-ink);
  color: var(--c-bone);
  border-color: var(--c-ink);
}

/* Quote */
.quote {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: var(--fw-thin);
  font-style: italic;
  line-height: 1.3;
  letter-spacing: var(--ls-snug);
  color: var(--c-ink);
  position: relative;
  padding-left: 2em;
}
.quote::before {
  content: '"';
  position: absolute;
  left: 0; top: -.2em;
  font-family: var(--f-display);
  font-size: 4em;
  font-weight: var(--fw-thin);
  color: var(--c-gold);
  line-height: 1;
  font-style: normal;
}
.quote__cite {
  display: block;
  font-family: var(--f-serif);
  font-style: normal;
  font-size: var(--t-xs);
  font-weight: var(--fw-regular);
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--c-ink-muted);
  margin-top: var(--sp-6);
}

/* Tag */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--r-sm);
  background: var(--c-paper-warm);
  font-family: var(--f-serif);
  font-size: var(--t-2xs);
  letter-spacing: .12em;
  color: var(--c-ink-soft);
}

/* Auth card / login */
.auth-card {
  background: var(--c-bone);
  border: 1px solid var(--c-line);
  border-radius: var(--r-2xl);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-lg);
}

/* Toast */
.toast {
  padding: .9rem 1.6rem;
  border-radius: var(--r-full);
  font-family: var(--f-serif);
  font-size: var(--t-sm);
  font-weight: var(--fw-regular);
  letter-spacing: .06em;
  background: var(--c-ink);
  color: var(--c-bone);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.toast--success { background: var(--c-success); }
.toast--error { background: var(--c-error); }

/* Tabs */
.tabs {
  display: flex;
  gap: var(--sp-6);
  border-bottom: 1px solid var(--c-line);
  margin-bottom: var(--sp-8);
}
.tab-trigger {
  position: relative;
  padding: var(--sp-3) 0;
  font-family: var(--f-serif);
  font-size: var(--t-xs);
  font-weight: var(--fw-regular);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-ink-muted);
  transition: color var(--dur-fast);
}
.tab-trigger::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: var(--c-ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-normal) var(--ease-out);
}
.tab-trigger:hover { color: var(--c-ink); }
.tab-trigger.is-active { color: var(--c-ink); }
.tab-trigger.is-active::after { transform: scaleX(1); }
.tab-panel { display: none; }
.tab-panel.is-active {
  display: block;
  animation: fade-in var(--dur-normal) var(--ease-out);
}
