:root {
  color-scheme: light;
  --bg: #faf7f0;
  --bg-2: #f2ece0;
  --ink: #221b12;
  --muted: #6f6553;
  --faint: #9c917b;
  --line: rgba(34, 27, 18, 0.13);
  --line-strong: rgba(34, 27, 18, 0.22);
  --gold: #ac7f2c;
  --gold-2: #c69f56;
  --gold-soft: #e7d4a6;
  --shu: #c5402a;
  --green: #2f8a63;
  --green-deep: #0e3f31;
  --red: #c5402a;
  --paper: #ffffff;
  --paper-2: #f5efe3;
  --paper-ink: #221b12;
  --paper-muted: #6f6553;
  --white: #ffffff;
  --card: #ffffff;
  --card-strong: #ffffff;
  --shadow: 0 20px 50px rgba(72, 54, 22, 0.08);
  --soft-shadow: 0 10px 28px rgba(72, 54, 22, 0.06);
  --paper-gradient: linear-gradient(180deg, #ffffff, #f6f1e7);
  --paper-border: rgba(34, 27, 18, 0.12);
  --gold-deep: #86611f;
  --fs-display: clamp(2.15rem, 4.4vw, 4rem);
  --fs-h2: clamp(1.5rem, 3.2vw, 2.2rem);
  --fs-h3: clamp(1.05rem, 1.4vw, 1.2rem);
  --fs-body: 1rem;
  --fs-small: 0.84rem;
  --radius-s: 8px;
  --radius-m: 12px;
  --radius-pill: 999px;
  --font-sans: "Shippori Mincho", ui-serif, Georgia, "Times New Roman", serif;
  --font-display: "Shippori Mincho B1", "Shippori Mincho", ui-serif, Georgia, serif;
  font-family: var(--font-sans);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  min-width: 320px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(34, 27, 18, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 27, 18, 0.026) 1px, transparent 1px);
  background-size: 94px 94px;
  mask-image: linear-gradient(to bottom, #000, transparent 52%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
}

.site-header[data-elevated="true"] {
  border-bottom-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand strong {
  display: block;
  letter-spacing: 0.11em;
  font-size: 0.92rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
}

.crest {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: var(--gold-2);
}

.crest svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.crest .crest-fill {
  fill: rgba(216, 173, 85, 0.84);
  stroke: none;
}

.crest .crest-ring {
  fill: none;
  stroke-width: 4;
}

.crest .crest-ring.thin {
  stroke-width: 1.8;
}

.nav-links,
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links a {
  color: var(--muted);
  padding: 9px 10px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

select,
input {
  width: 100%;
  min-height: 44px;
  color: var(--ink);
  background: rgba(34, 27, 18, 0.09);
  border: 1px solid rgba(34, 27, 18, 0.2);
  border-radius: var(--radius-s);
  padding: 11px 12px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23c99b45' stroke-width='2'%3E%3Cpath d='M5 8l5 5 5-5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 13px;
  padding-right: 34px;
}

select:focus,
input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(216, 173, 85, 0.14);
}

select:focus-visible,
input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.select-label select {
  min-width: 92px;
}

.segmented {
  display: inline-flex;
  padding: 3px;
  border: 1px solid rgba(34, 27, 18, 0.18);
  border-radius: var(--radius-s);
  background: rgba(34, 27, 18, 0.06);
}

.segment {
  border: 0;
  color: var(--muted);
  background: transparent;
  border-radius: 6px;
  min-height: 38px;
  padding: 8px 12px;
  font-weight: 600;
  cursor: pointer;
}

.segment[aria-pressed="true"] {
  color: #1c1508;
  background: var(--gold-2);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  align-items: center;
  gap: clamp(26px, 4vw, 64px);
  min-height: calc(92svh - 68px);
  padding: clamp(30px, 5vw, 72px) clamp(18px, 4vw, 54px) 34px;
}

.hero-copy,
.section,
.site-footer {
  position: relative;
}

.logo-lockup {
  width: min(152px, 42vw);
  margin-bottom: 24px;
  padding: 11px;
  border: 1px solid var(--gold-soft);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #ffffff, #f4eddd);
  box-shadow: var(--shadow);
}

.logo-lockup img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 700;
}

.hero-copy .eyebrow {
  color: var(--shu);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-copy .eyebrow::before {
  content: "";
  width: 16px;
  height: 2px;
  background: var(--shu);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: var(--fs-display);
  line-height: 1.02;
  letter-spacing: -0.01em;
  font-weight: 800;
  white-space: pre-line;
  text-wrap: balance;
}

html[lang="ja"] h1 {
  font-size: clamp(1.95rem, 3.5vw, 3.05rem);
  line-height: 1.26;
  letter-spacing: 0.005em;
  font-weight: 800;
  word-break: normal;
  text-wrap: normal;
}

h2 {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: var(--fs-h2);
  line-height: 1.2;
  letter-spacing: -0.005em;
  font-weight: 800;
  text-wrap: balance;
}

html[lang="ja"] h2 {
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: 0.005em;
  word-break: auto-phrase;
}

h3 {
  margin-bottom: 10px;
  font-size: var(--fs-h3);
  font-weight: 700;
}

.hero-lede,
.section-heading p,
.waitlist-copy p,
.feature-grid p,
.flow-step p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-lede {
  max-width: 660px;
  font-size: clamp(1.05rem, 1.55vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius-s);
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.button.primary {
  color: #ffffff;
  background: var(--gold-deep);
  box-shadow: var(--soft-shadow);
}

.button.ghost {
  color: var(--ink);
  border-color: rgba(34, 27, 18, 0.22);
  background: rgba(34, 27, 18, 0.07);
}

.button.small {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 0.9rem;
}

.button.full {
  width: 100%;
}

.button:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin: 0;
}

.metrics div {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.metrics dt {
  color: var(--ink);
  font-size: clamp(1rem, 2vw, 1.34rem);
  font-weight: 700;
}

.metrics dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-ledger {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(20px, 2.4vw, 30px);
  border-radius: 16px;
  border: 1px solid rgba(240, 209, 135, 0.3);
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(201, 155, 69, 0.16), transparent 58%),
    linear-gradient(180deg, #ffffff, #fbf7ef);

  box-shadow: var(--shadow);
}

.hero-ledger::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background-image: linear-gradient(rgba(240, 209, 135, 0.05) 1px, transparent 1px);
  background-size: 100% 38px;
  mask-image: linear-gradient(180deg, transparent, #000 26%, #000 84%, transparent);
}

.ledger-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.ledger-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: flex-start;
  padding: 6px 13px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gold-soft);
  background: #f8f1e2;
  color: var(--gold-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.ledger-tag .pulse {
  box-shadow: 0 0 0 5px rgba(104, 195, 159, 0.14);
}

.ledger-title {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
}

html[lang="ja"] .ledger-title {
  font-weight: 800;
}

.ledger-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.ledger-stats > div {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
}

.ledger-stats dt {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

html[lang="ja"] .ledger-stats dt {
  text-transform: none;
  letter-spacing: 0.02em;
}

.ledger-stats dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 800;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.12;
}

.ledger-stats dd[data-ledger="series"] {
  font-family: var(--font-sans);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
}

.ledger-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.ledger-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 9px;
  border: 1px solid var(--line);
  background: #f5efe3;
  filter: saturate(0.95) contrast(1.02) brightness(1) sepia(0.05);
}

.ledger-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(242, 213, 137, 0.4);
  background: linear-gradient(135deg, rgba(240, 209, 135, 0.16), rgba(201, 155, 69, 0.08));
  color: var(--gold-2);
  font-weight: 700;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.ledger-cta:hover {
  transform: translateY(-1px);
  border-color: var(--gold-2);
  background: linear-gradient(135deg, rgba(240, 209, 135, 0.24), rgba(201, 155, 69, 0.12));
}

.pulse {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 99px;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(104, 195, 159, 0.16);
}

.notice-band {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding: 14px clamp(18px, 4vw, 54px);
  border-block: 1px solid rgba(240, 209, 135, 0.16);
  background: rgba(34, 27, 18, 0.05);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.notice-band::-webkit-scrollbar {
  display: none;
}

.notice-band a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  max-width: 460px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--ink);
  background: #ffffff;
  font-size: 0.86rem;
  font-weight: 600;
}

.trust-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 16px;
  border: 1px solid rgba(47, 138, 99, 0.32);
  border-radius: var(--radius-pill);
  color: var(--green-deep);
  background: #edf5ef;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.section {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 4vw, 54px);
  scroll-margin-top: 96px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(26px, 4vw, 40px);
  text-align: left;
  scroll-margin-top: 96px;
}

.section-heading .eyebrow {
  text-align: left;
}

.section-heading p:not(.eyebrow) {
  margin-top: 12px;
  margin-bottom: 0;
  max-width: 62ch;
}

.toolbar {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 0.8fr minmax(240px, 1.4fr);
  gap: 12px;
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid rgba(33, 23, 13, 0.1);
  border-radius: var(--radius-m);
  background: rgba(247, 239, 224, 0.92);
  box-shadow: var(--soft-shadow);
}

/* Noh-stage seam: dark shell meets the paper market floor */
.batch-section::before,
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 173, 85, 0.75) 18%, rgba(240, 209, 135, 0.9) 50%, rgba(216, 173, 85, 0.75) 82%, transparent);
  pointer-events: none;
}

/* Subtle paper grain across the market-floor sections */
.batch-section::after,
.venture-section::after,
.club-section::after,
.flow-section::after,
.waitlist-section::after,
.legal-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.6;
  background-image:
    repeating-linear-gradient(0deg, rgba(33, 23, 13, 0.02) 0px, transparent 1px, transparent 3px),
    repeating-linear-gradient(90deg, rgba(33, 23, 13, 0.015) 0px, transparent 1px, transparent 3px);
}

.batch-section {
  color: var(--paper-ink);
  background: var(--paper-gradient);
}

.batch-section .eyebrow,
.batch-section .sku,
.venture-section .eyebrow,
.club-section .eyebrow,
.waitlist-section .eyebrow,
.legal-section .eyebrow {
  color: var(--gold-deep);
}

.batch-section .section-heading p,
.batch-section label span,
.venture-section .section-heading p,
.club-section .section-heading p,
.legal-section .section-heading p {
  color: var(--paper-muted);
}

.batch-section select,
.batch-section input {
  color: var(--paper-ink);
  background: rgba(255, 252, 244, 0.86);
  border-color: rgba(33, 23, 13, 0.18);
}

.batch-section select:focus,
.batch-section input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 155, 69, 0.18);
}

.batch-section .button.ghost {
  color: var(--paper-ink);
  border-color: rgba(33, 23, 13, 0.18);
  background: rgba(33, 23, 13, 0.045);
}

.batch-section .button.ghost:hover:not(:disabled) {
  border-color: rgba(147, 103, 32, 0.38);
  background: rgba(201, 155, 69, 0.12);
}

label span,
legend {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  gap: 13px;
  min-height: 100%;
  padding: 14px;
  border: 1px solid rgba(33, 23, 13, 0.12);
  border-radius: var(--radius-m);
  color: var(--paper-ink);
  background: rgba(255, 252, 244, 0.86);
  box-shadow: 0 14px 34px rgba(72, 49, 20, 0.12);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(147, 103, 32, 0.3);
  box-shadow: 0 20px 46px rgba(72, 49, 20, 0.19);
}

.product-card:hover .product-art img {
  transform: scale(1.02);
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.product-actions .button {
  min-height: 44px;
  padding-inline: 10px;
  font-size: 0.86rem;
  border-radius: var(--radius-s);
}

.product-actions .button.ghost {
  color: var(--paper-ink);
  border-color: rgba(33, 23, 13, 0.18);
  background: rgba(33, 23, 13, 0.04);
}

.product-actions .button.ghost:hover:not(:disabled) {
  border-color: rgba(147, 103, 32, 0.38);
  background: rgba(201, 155, 69, 0.12);
}

.product-actions .button.primary:hover:not(:disabled) {
  box-shadow: 0 12px 26px rgba(201, 155, 69, 0.3);
}

.product-actions .button:disabled {
  color: var(--paper-muted);
  background: rgba(33, 23, 13, 0.05);
  box-shadow: none;
}

.product-card[data-status="sold"] {
  opacity: 0.58;
  filter: grayscale(0.55);
}

.product-art {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 0;
  border-radius: var(--radius-s);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(201, 155, 69, 0.18), transparent 42%),
    linear-gradient(45deg, #efe2c8, #fbf7ee);
  border: 1px solid rgba(33, 23, 13, 0.08);
}

.product-art img {
  transition: transform 200ms ease;
}

.product-art::before,
.product-art::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(242, 213, 137, 0.28);
}

.product-art::before {
  width: 86px;
  height: 118px;
  left: 28px;
  top: 26px;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(34, 27, 18, 0.16), rgba(216, 173, 85, 0.08));
  box-shadow: 28px 22px 0 rgba(12, 10, 7, 0.26);
  transform: rotate(-6deg);
}

.product-art::after {
  width: 54px;
  height: 54px;
  right: 30px;
  bottom: 32px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--gold) 0 18%, transparent 20% 100%);
}

.product-art.has-image {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(235, 224, 205, 0.84));
}

.product-art.has-image::before,
.product-art.has-image::after {
  display: none;
}

.product-art.has-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.hold-chip {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  padding: 6px 9px;
  border: 1px solid rgba(8, 22, 15, 0.12);
  border-radius: var(--radius-pill);
  color: #08160f;
  background: rgba(99, 193, 155, 0.9);
  box-shadow: 0 8px 20px rgba(8, 22, 15, 0.16);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.event-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 14px;
  padding: 10px 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(198, 159, 86, 0.16), rgba(231, 212, 166, 0.28));
  font-size: 0.88rem;
  text-align: center;
}

.event-banner-date {
  font-family: var(--font-display, inherit);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--shu);
}

.event-banner-text {
  color: var(--ink, #21170d);
  font-weight: 600;
}

.event-banner-link {
  color: var(--gold-deep);
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 12px;
  background: var(--card);
}

.event-banner-link:hover {
  border-color: var(--gold-2);
}

.photo-badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 1;
  padding: 5px 9px;
  border: 1px solid rgba(33, 23, 13, 0.14);
  border-radius: var(--radius-pill);
  color: #3a2d18;
  background: rgba(251, 247, 238, 0.88);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.empty-products {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px;
  border: 1px solid rgba(33, 23, 13, 0.12);
  border-radius: var(--radius-m);
  color: var(--paper-muted);
  background: rgba(255, 252, 244, 0.72);
}

.catalog-summary {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 20px;
  overflow: hidden;
  border: 1px solid rgba(33, 23, 13, 0.12);
  border-radius: var(--radius-m);
  background: rgba(33, 23, 13, 0.12);
  box-shadow: var(--soft-shadow);
}

.catalog-summary div {
  padding: 14px;
  background: rgba(255, 252, 244, 0.82);
}

.catalog-summary dt {
  color: var(--paper-ink);
  font-size: 1.35rem;
  font-weight: 700;
}

.catalog-summary dd {
  margin: 4px 0 0;
  color: var(--paper-muted);
  font-size: 0.76rem;
}

.catalog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
  color: var(--paper-muted);
}

.catalog-pagination .button {
  min-width: 132px;
}

.catalog-notice {
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px solid rgba(147, 103, 32, 0.36);
  border-radius: var(--radius-m);
  color: #6f4710;
  background: rgba(201, 155, 69, 0.14);
  font-weight: 600;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.sku {
  color: var(--gold-2);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.status {
  border-radius: var(--radius-pill);
  padding: 4px 9px;
  color: #15120b;
  background: var(--gold-2);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.status.sold {
  background: #8f8a80;
}

.status.reserved {
  color: #08160f;
  background: var(--green);
}

.product-card h3 {
  margin: 0;
  color: var(--paper-ink);
  line-height: 1.35;
}

.product-detail {
  color: var(--paper-muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.price {
  color: var(--paper-ink);
  font-size: 1.3rem;
  font-weight: 800;
  transition: opacity 140ms ease, transform 140ms ease;
}

body[data-price-updating="true"] .price {
  opacity: 0.58;
  transform: translateY(1px);
}

.tier {
  width: 14px;
  height: 14px;
  border-radius: 99px;
  box-shadow: 0 0 0 4px rgba(33, 23, 13, 0.08);
}

.tier.red {
  background: var(--red);
}

.tier.yellow {
  background: var(--gold);
}

.tier.white {
  background: var(--white);
  border: 1px solid rgba(33, 23, 13, 0.16);
}

.cart-strip {
  position: sticky;
  bottom: 16px;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(104, 195, 159, 0.35);
  border-radius: var(--radius-m);
  background: rgba(15, 32, 25, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.cart-strip span {
  color: var(--muted);
  margin-left: 8px;
}

.cart-strip .button {
  color: #1b1407;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 10px 24px rgba(201, 155, 69, 0.22);
}

.cart-strip[hidden] {
  display: none;
}

.product-dialog {
  width: min(1040px, calc(100vw - 32px));
  max-height: min(860px, calc(100svh - 32px));
  padding: 0;
  border: 1px solid rgba(240, 209, 135, 0.32);
  border-radius: var(--radius-m);
  color: var(--ink);
  background: #17130f;
  box-shadow: var(--shadow);
  animation: dialog-in 160ms ease;
}

.product-dialog::backdrop {
  background: rgba(5, 4, 3, 0.72);
  backdrop-filter: blur(6px);
  animation: dialog-backdrop-in 160ms ease;
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: scale(0.97);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes dialog-backdrop-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.product-dialog-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: 0;
  min-height: 560px;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(34, 27, 18, 0.16);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(18, 16, 12, 0.72);
  cursor: pointer;
}

.dialog-image {
  display: grid;
  place-items: center;
  min-height: 420px;
  background:
    linear-gradient(135deg, rgba(240, 209, 135, 0.16), transparent 42%),
    linear-gradient(45deg, #2b2720, #15130f);
}

.dialog-image.has-image {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(230, 216, 189, 0.9));
}

.dialog-image img {
  width: 100%;
  height: 100%;
  max-height: min(860px, calc(100svh - 32px));
  object-fit: contain;
  padding: 14px;
}

.dialog-copy {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 34px;
  overflow: auto;
}

.dialog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-right: 54px;
}

.dialog-copy h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.08;
}

.dialog-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.dialog-specs div {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(34, 27, 18, 0.12);
  border-radius: var(--radius-s);
  background: rgba(34, 27, 18, 0.06);
}

.dialog-specs dt,
.dialog-label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dialog-specs dd {
  margin: 8px 0 0;
  color: var(--ink);
  font-weight: 700;
}

.condition-dots {
  display: flex;
  gap: 5px;
  margin-top: 9px;
}

.condition-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(34, 27, 18, 0.22);
}

.condition-dots span.active {
  background: var(--gold-2);
  box-shadow: 0 0 0 3px rgba(240, 209, 135, 0.12);
}

.dialog-description {
  color: var(--muted);
  line-height: 1.72;
  white-space: pre-line;
}

.dialog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.dialog-tags span,
.interest-summary {
  border: 1px solid rgba(240, 209, 135, 0.24);
  border-radius: var(--radius-pill);
  color: var(--gold-2);
  background: rgba(216, 173, 85, 0.08);
  font-size: 0.82rem;
  font-weight: 600;
}

.dialog-tags span {
  padding: 8px 10px;
}

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.interest-summary {
  padding: 11px 13px;
  line-height: 1.45;
}

.order-dialog {
  width: min(560px, calc(100vw - 32px));
  max-height: min(720px, calc(100svh - 32px));
  padding: 0;
  border: 1px solid rgba(147, 103, 32, 0.28);
  border-radius: var(--radius-m);
  color: var(--paper-ink);
  background: var(--paper-gradient);
  box-shadow: var(--shadow);
  animation: dialog-in 160ms ease;
}

.order-dialog::backdrop {
  background: rgba(5, 4, 3, 0.72);
  backdrop-filter: blur(6px);
  animation: dialog-backdrop-in 160ms ease;
}

.order-dialog-panel {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 30px;
  overflow: auto;
  max-height: min(720px, calc(100svh - 32px));
}

.order-dialog-panel .dialog-close {
  color: var(--paper-ink);
  background: rgba(33, 23, 13, 0.08);
  border-color: rgba(33, 23, 13, 0.16);
}

.order-dialog-panel h2 {
  margin: 0;
  padding-right: 40px;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
}

.order-dialog-lead {
  margin: 0;
  color: var(--paper-muted);
  line-height: 1.65;
}

.order-items-summary {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(33, 23, 13, 0.14);
  border-radius: var(--radius-s);
  background: rgba(255, 252, 244, 0.7);
}

.order-item-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.order-item-row .order-item-sku {
  color: var(--gold-deep);
  font-weight: 700;
}

.order-item-row .order-item-name {
  flex: 1;
  margin: 0 10px;
  color: var(--paper-ink);
}

.order-item-row .order-item-price {
  color: var(--paper-ink);
  font-weight: 700;
}

.order-item-total {
  display: flex;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid rgba(33, 23, 13, 0.14);
  color: var(--paper-ink);
  font-weight: 800;
}

.order-form {
  display: grid;
  gap: 14px;
}

.order-form label span {
  color: var(--paper-muted);
}

.order-form input {
  color: var(--paper-ink);
  background: rgba(255, 252, 244, 0.86);
  border-color: rgba(33, 23, 13, 0.18);
}

.order-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 155, 69, 0.18);
}

.form-message {
  min-height: 1.3em;
  margin: 0;
  font-weight: 600;
}

.form-message.is-error {
  color: #b23a2d;
}

.form-message.is-success {
  color: #246a49;
}

.club-section {
  color: var(--paper-ink);
  background: var(--paper-gradient);
  border-block: 1px solid var(--paper-border);
}

.venture-section {
  padding-top: clamp(42px, 7vw, 90px);
  color: var(--paper-ink);
  background: var(--paper-gradient);
}

.venture-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.venture-grid article {
  display: grid;
  align-content: start;
  min-height: 240px;
  padding: 22px;
  border: 1px solid rgba(147, 103, 32, 0.22);
  border-radius: var(--radius-m);
  background:
    linear-gradient(145deg, rgba(255, 252, 244, 0.9), rgba(34, 27, 18, 0.55));
}

.venture-grid span {
  margin-bottom: 42px;
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.venture-grid p {
  color: var(--paper-muted);
  line-height: 1.65;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-grid article {
  padding: 22px;
  border: 1px solid var(--paper-border);
  border-radius: var(--radius-m);
  background:
    linear-gradient(180deg, rgba(255, 252, 244, 0.88), rgba(34, 27, 18, 0.5));
}

.feature-mark {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--gold-deep);
  font-weight: 700;
}

.feature-grid p {
  color: var(--paper-muted);
}

.flow-section {
  color: var(--paper-ink);
  background: var(--paper-gradient);
}

.flow-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(147, 103, 32, 0.24);
  border-radius: var(--radius-m);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(99, 193, 155, 0.14), transparent 38%),
    rgba(255, 252, 244, 0.55);
}

.flow-step {
  padding: 26px;
}

.flow-step + .flow-step {
  border-left: 1px solid var(--paper-border);
}

.flow-step span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: var(--radius-pill);
  color: #1b1407;
  background: var(--gold-2);
  font-weight: 700;
}

.flow-step p {
  color: var(--paper-muted);
}

.waitlist-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  color: var(--paper-ink);
  background: var(--paper-gradient);
}

.waitlist-copy p {
  color: var(--paper-muted);
}

.compliance-note {
  display: grid;
  gap: 8px;
  max-width: 500px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(147, 103, 32, 0.28);
  border-radius: var(--radius-m);
  background: rgba(201, 155, 69, 0.12);
}

.compliance-note span {
  color: var(--paper-muted);
  line-height: 1.6;
}

.waitlist-form {
  display: grid;
  gap: 20px;
  padding: 26px;
  border: 1px solid var(--paper-border);
  border-radius: var(--radius-m);
  color: var(--paper-ink);
  background: rgba(255, 252, 244, 0.92);
  box-shadow: var(--soft-shadow);
}

.waitlist-form select,
.waitlist-form input {
  color: var(--paper-ink);
  background: rgba(255, 252, 244, 0.86);
  border-color: rgba(33, 23, 13, 0.18);
}

.waitlist-form select:focus,
.waitlist-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 155, 69, 0.18);
}

.waitlist-form label span,
.waitlist-form legend {
  color: var(--paper-muted);
}

.waitlist-form .interest-summary {
  color: var(--gold-deep);
  background: rgba(201, 155, 69, 0.14);
  border-color: rgba(147, 103, 32, 0.32);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chips label {
  position: relative;
  cursor: pointer;
}

.chips input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.chips span {
  margin: 0;
  padding: 10px 14px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(33, 23, 13, 0.16);
  border-radius: var(--radius-pill);
  color: var(--paper-ink);
  background: rgba(33, 23, 13, 0.04);
  font-weight: 600;
}

.chips input:checked + span {
  color: #1b1407;
  background: var(--gold-2);
  border-color: transparent;
}

.chips input:focus-visible + span {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.consents {
  display: grid;
  gap: 10px;
}

.consents label {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  color: var(--paper-muted);
  line-height: 1.55;
}

.consents a {
  margin-left: 6px;
  color: var(--gold-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consents input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--gold);
}

.form-error {
  min-height: 1.3em;
  margin: 0;
  color: #b23a2d;
  font-weight: 600;
}

.payload-output {
  display: block;
  white-space: pre-wrap;
  max-height: 220px;
  overflow: auto;
  padding: 14px;
  border-radius: 8px;
  color: #d9f7e9;
  background: #101812;
  border: 1px solid rgba(104, 195, 159, 0.24);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.78rem;
}

.legal-section {
  color: var(--paper-ink);
  background: var(--paper-gradient);
  border-top: 1px solid var(--paper-border);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.legal-grid article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--paper-border);
  border-radius: var(--radius-m);
  background:
    linear-gradient(180deg, rgba(255, 252, 244, 0.85), rgba(34, 27, 18, 0.5));
}

.legal-grid span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.legal-grid p {
  color: var(--paper-muted);
  line-height: 1.7;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 54px);
  color: var(--muted);
}

.site-footer strong {
  display: block;
  color: var(--ink);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 1120px) {
  .hero,
  .waitlist-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .toolbar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-grid,
  .venture-grid,
  .legal-grid,
  .flow-card,
  .product-dialog-panel {
    grid-template-columns: 1fr;
  }

  .dialog-image img {
    max-height: 520px;
  }

  .flow-step + .flow-step {
    border-left: 0;
    border-top: 1px solid rgba(34, 27, 18, 0.1);
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .nav-links a,
  .segment {
    min-height: 44px;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero {
    min-height: 72svh;
    padding-top: 28px;
  }

  .hero-actions,
  .metrics,
  .toolbar,
  .form-row {
    grid-template-columns: 1fr;
  }

  .toolbar {
    display: grid;
  }

  .metrics {
    display: grid;
  }

  .catalog-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-ledger {
    padding: 20px;
  }

  .ledger-stats {
    grid-template-columns: 1fr;
  }

  .ledger-thumbs {
    grid-template-columns: repeat(5, 1fr);
  }

  .product-grid-wrap {
    position: relative;
    margin-inline: -18px;
  }

  .product-grid-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 36px;
    background: linear-gradient(90deg, transparent, rgba(247, 239, 224, 0.94));
    pointer-events: none;
  }

  .product-grid {
    display: flex;
    gap: 14px;
    padding-inline: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 18px;
    -webkit-overflow-scrolling: touch;
  }

  .product-grid .product-card {
    flex: 0 0 min(82vw, 340px);
    scroll-snap-align: start;
  }

  .empty-products {
    flex: 1 0 calc(100vw - 36px);
  }

  .cart-strip,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .dialog-copy {
    padding: 24px;
  }

  .product-dialog {
    width: 100%;
    max-width: none;
    height: 100svh;
    max-height: none;
    margin: 0;
    border-radius: 0;
  }

  .order-dialog {
    width: 100%;
    max-width: none;
    max-height: 100svh;
    margin: 0;
    border-radius: 0;
  }

  .order-dialog-panel {
    max-height: 100svh;
  }

  .product-dialog-panel {
    min-height: 100svh;
  }

  .dialog-image {
    min-height: 42svh;
  }

  .dialog-image img {
    max-height: 42svh;
  }

  .dialog-specs,
  .product-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .brand small,
  .nav-links a {
    font-size: 0.8rem;
  }

  .crest {
    width: 36px;
    height: 36px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .logo-lockup {
    width: min(118px, 33vw);
    margin-bottom: 18px;
  }

  h1 {
    font-size: clamp(2.1rem, 9vw, 2.6rem);
    line-height: 1.1;
  }

  html[lang="ja"] h1 {
    font-size: clamp(1.95rem, 8vw, 2.35rem);
    line-height: 1.28;
  }

  h2 {
    font-size: clamp(1.5rem, 6.6vw, 1.95rem);
  }

  html[lang="ja"] h2 {
    font-size: clamp(1.45rem, 6vw, 1.8rem);
  }

  .ledger-title {
    font-size: 1.4rem;
  }
}

/* Venues */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.venue-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 20px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.venue-card h3 {
  margin: 5px 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.28rem;
}

.venue-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.venue-tag {
  align-self: flex-start;
  padding: 3px 11px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gold-soft);
  background: #faf4e8;
  color: var(--gold-deep);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.venue-card:first-child .venue-tag {
  color: #ffffff;
  background: var(--shu);
  border-color: var(--shu);
}

.venue-status {
  margin-top: 8px;
  color: var(--faint);
  font-size: 0.8rem;
}

@media (max-width: 760px) {
  .venue-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Motion: quiet, refined ---- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal-in {
  opacity: 1;
  transform: none;
}

.venue-card,
.metrics div,
.ledger-stats > div {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.venue-card:hover,
.metrics div:hover,
.ledger-stats > div:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--gold-soft);
}

.product-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--gold-soft);
}

.hero-copy .eyebrow::before {
  transition: width 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.15s;
}

.hero-copy .eyebrow.reveal:not(.reveal-in)::before {
  width: 0;
}

@keyframes yz-breathe {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(47, 138, 99, 0.32);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(47, 138, 99, 0);
  }
}

.pulse {
  animation: yz-breathe 2.6s ease-out infinite;
}

.button {
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease,
    border-color 0.18s ease, color 0.18s ease;
}

.button.primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(134, 97, 31, 0.24);
}

.ledger-cta:hover {
  transform: translateY(-2px);
}

/* ============ Editorial elevation (art-directed polish) ============ */
::selection { background: rgba(197, 64, 42, 0.15); color: var(--ink); }

html { scrollbar-color: var(--gold-2) transparent; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-thumb { background: var(--gold-soft); border-radius: 99px; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-2); }

:focus-visible { outline: 2px solid var(--shu); outline-offset: 3px; }

/* Top ribbon: JAEBC pan-African tricolor meets YOROZUYA gold —
   visual continuity for visitors arriving from jaebc.com */
.seal-ribbon {
  position: fixed; inset: 0 0 auto 0; height: 3px; z-index: 40;
  background: linear-gradient(90deg, #3a9a5f 0%, #3a9a5f 26%, #e8b93c 26%, #e8b93c 58%, #c5402a 58%, #c5402a 82%, var(--gold-2) 82%);
}

.nav-links a { position: relative; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 1.5px;
  background: var(--shu); transform: scaleX(0); transform-origin: left;
  transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.nav-links a:hover::after { transform: scaleX(1); }

.hero { position: relative; overflow: hidden; }
.hero > .hero-copy, .hero > .hero-ledger { position: relative; z-index: 1; }
.hero-kanji {
  position: absolute; z-index: 0; right: -3%; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-weight: 800; line-height: 0.72;
  font-size: min(50vw, 540px); color: var(--ink); opacity: 0.04;
  pointer-events: none; user-select: none;
}
.hero-tate {
  position: absolute; z-index: 1; left: clamp(6px, 1.4vw, 20px); top: 132px;
  writing-mode: vertical-rl; text-orientation: upright;
  font-family: var(--font-display); font-weight: 600;
  letter-spacing: 0.32em; font-size: 0.82rem; color: var(--gold-deep); opacity: 0.85;
  pointer-events: none;
}
.hero-tate::after {
  content: ""; display: block; width: 1px; height: 44px; margin: 14px auto 0;
  background: linear-gradient(var(--shu), transparent);
}
@media (max-width: 1180px) { .hero-tate { display: none; } }
.hanko {
  position: absolute; z-index: 3; top: 4px; right: clamp(14px, 4vw, 50px);
  width: 62px; height: 62px; border-radius: 50%;
  border: 2.5px solid var(--shu); color: var(--shu);
  display: grid; place-items: center; transform: rotate(-7deg);
  box-shadow: inset 0 0 0 1.5px rgba(197, 64, 42, 0.28);
  background: rgba(197, 64, 42, 0.03);
}
.hanko span { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; line-height: 1; }
@media (max-width: 760px) { .hanko { width: 46px; height: 46px; top: 2px; right: 14px; } .hanko span { font-size: 1.08rem; } }

main { counter-reset: yzsec; }
.section { border-top: 1px solid var(--line); }
.section .section-heading { counter-increment: yzsec; }
.section .section-heading .eyebrow::after {
  content: " ／ " counter(yzsec, decimal-leading-zero);
  color: var(--gold-deep); opacity: 0.6; font-variant-numeric: tabular-nums; letter-spacing: 0.05em;
}

/* ---- Community section (SNS + events) ---- */
.sns-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.sns-card {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 20px 18px 18px;
  border: 1px solid var(--paper-border);
  border-radius: var(--radius-m);
  background: linear-gradient(180deg, rgba(255, 252, 244, 0.9), rgba(34, 27, 18, 0.5));
}

.sns-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 4px;
  border-radius: var(--radius-pill);
  color: var(--gold-deep);
  background: rgba(201, 155, 69, 0.14);
}

.sns-icon svg {
  width: 20px;
  height: 20px;
}

.sns-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.02rem;
}

.sns-sub {
  color: var(--faint);
  font-weight: 600;
  font-size: 0.82rem;
}

.sns-card p {
  margin: 0;
  color: var(--paper-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.sns-pill {
  align-self: flex-start;
  margin-top: 4px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  color: var(--faint);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: default;
}

.sns-pill[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.85;
}

.event-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 26px;
  padding: 22px 24px;
  border: 1px solid rgba(147, 103, 32, 0.24);
  border-radius: var(--radius-m);
  background: linear-gradient(135deg, rgba(240, 209, 135, 0.16), transparent 60%), rgba(255, 252, 244, 0.6);
}

.event-copy .eyebrow {
  margin-bottom: 8px;
}

.event-copy h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--paper-ink);
}

.event-copy p {
  margin: 0;
  color: var(--paper-muted);
  font-size: 0.92rem;
}

.feature-grid-support {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid-support article {
  padding: 16px 18px;
}

.feature-grid-support h3 {
  font-size: 0.98rem;
}

.feature-grid-support p {
  font-size: 0.86rem;
}

@media (max-width: 1120px) {
  .sns-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-block {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .sns-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer { position: relative; overflow: hidden; border-top: 1px solid var(--line); }
.site-footer::after { content: none; }
.site-footer > * { position: relative; z-index: 1; }

/* ============================================================
   Worldview redesign (v12): hero kanji, marquee, story,
   manifesto, journey, catalog teaser
   ============================================================ */

.hero {
  position: relative;
  overflow: hidden;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-kanji {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-kanji span {
  position: absolute;
  left: var(--fk-x, 10%);
  top: var(--fk-y, 10%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fk-s, 7rem);
  line-height: 1;
  color: rgba(172, 127, 44, 0.09);
  user-select: none;
  animation: kanjiDrift 13s ease-in-out infinite;
  animation-delay: var(--fk-d, 0s);
}

@keyframes kanjiDrift {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-22px) rotate(2.5deg); }
}

.hero-title {
  white-space: pre-line;
}

/* --- Marquee band --- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #171209, #221a0d);
  padding: 15px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.marquee-track {
  display: inline-flex;
  align-items: baseline;
  gap: clamp(34px, 5vw, 72px);
  white-space: nowrap;
  width: max-content;
  animation: marqueeScroll 34s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  color: #e9dcbc;
}

.marquee-track em {
  font-style: normal;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  color: rgba(233, 220, 188, 0.55);
  margin-left: 9px;
}

@keyframes marqueeScroll {
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .hero-kanji span { animation: none; }
}

/* --- Story section --- */
.story-section {
  overflow: hidden;
}

.story-watermark {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(16rem, 34vw, 30rem);
  line-height: 1;
  color: rgba(34, 27, 18, 0.045);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.story-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(200px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.story-kanji-block {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--gold-soft);
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 25%, rgba(240, 209, 135, 0.28), transparent 55%),
    var(--paper-gradient);
  box-shadow: var(--shadow);
}

.story-kanji {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(6rem, 12vw, 9.5rem);
  line-height: 1;
  background: linear-gradient(115deg, var(--gold-deep) 20%, var(--gold-2) 45%, var(--gold-deep) 70%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: goldShimmer 7s ease-in-out infinite;
}

.story-kanji small {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  color: var(--faint);
  -webkit-text-fill-color: var(--faint);
}

@keyframes goldShimmer {
  0%, 100% { background-position: 0% 0; }
  50% { background-position: 100% 0; }
}

.story-copy h2 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  line-height: 1.35;
}

.story-copy p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.95;
  max-width: 62ch;
}

.story-note {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold-deep) !important;
  border-left: 3px solid var(--gold-2);
  padding-left: 14px;
}

.brush-underline {
  position: relative;
  display: inline-block;
}

.brush-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--shu), var(--gold-2) 85%, transparent);
  opacity: 0.65;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
}

.reveal-in .brush-underline::after,
.brush-underline.reveal-in::after {
  transform: scaleX(1);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92) translateY(14px);
  transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-scale.reveal-in {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* --- Manifesto --- */
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.kanji-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--paper-border);
  border-radius: 16px;
  background: var(--paper-gradient);
  box-shadow: var(--soft-shadow);
  padding: clamp(22px, 3vw, 34px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.kanji-card:hover {
  transform: translateY(-7px);
  border-color: var(--gold-2);
  box-shadow: var(--shadow);
}

.kanji-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 12%, rgba(240, 209, 135, 0.35), transparent 46%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.kanji-card:hover::before {
  opacity: 1;
}

.kanji-glyph {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.4rem, 6vw, 4.6rem);
  line-height: 1;
  color: var(--gold-deep);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.kanji-card:hover .kanji-glyph {
  transform: scale(1.12) rotate(-3deg);
}

.kanji-reading {
  display: inline-block;
  margin: 12px 0 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--shu);
}

.kanji-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: var(--fs-h3);
}

.kanji-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.85;
}

/* --- Journey --- */
.journey {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  position: relative;
}

.journey::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-2) 12%, var(--gold-2) 88%, transparent);
  opacity: 0.5;
}

.journey-step {
  position: relative;
  text-align: center;
  padding: 0 8px;
}

.journey-node {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid var(--gold-2);
  background: var(--paper);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--gold-deep);
  box-shadow: 0 0 0 6px rgba(198, 159, 86, 0.14);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.journey-step:hover .journey-node {
  transform: scale(1.14);
  box-shadow: 0 0 0 10px rgba(198, 159, 86, 0.18);
}

.journey-step h3 {
  margin: 14px 0 8px;
  font-family: var(--font-display);
  font-size: 1.02rem;
}

.journey-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.8;
}

/* --- Catalog teaser --- */
.teaser-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.teaser-cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.teaser-note {
  color: var(--faint);
  font-size: 0.84rem;
}

/* --- Responsive --- */
@media (max-width: 1120px) {
  .teaser-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 34px;
  }

  .journey::before {
    display: none;
  }
}

@media (max-width: 900px) {
  .manifesto-grid {
    grid-template-columns: 1fr;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-kanji-block {
    max-width: 260px;
  }

  .story-watermark {
    font-size: 18rem;
    right: -18%;
  }
}

@media (max-width: 560px) {
  .teaser-grid,
  .journey {
    grid-template-columns: 1fr;
  }

  .hero-kanji span {
    font-size: calc(var(--fk-s, 7rem) * 0.55);
  }
}

/* --- JAEBC operator band --- */
.jaebc-band {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
  gap: clamp(26px, 4vw, 60px);
  align-items: center;
  border: 1px solid var(--paper-border);
  border-radius: 20px;
  background:
    radial-gradient(circle at 88% -10%, rgba(58, 154, 95, 0.1), transparent 45%),
    radial-gradient(circle at 8% 110%, rgba(197, 64, 42, 0.07), transparent 40%),
    var(--paper-gradient);
  box-shadow: var(--shadow);
  padding: clamp(26px, 4vw, 52px);
}

.jaebc-tricolor {
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #3a9a5f 0%, #3a9a5f 33%, #e8b93c 33%, #e8b93c 66%, #c5402a 66%);
}

.jaebc-copy h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  line-height: 1.4;
}

.jaebc-copy p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 62ch;
}

.jaebc-copy .button {
  margin-top: 6px;
}

.jaebc-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.jaebc-stats div {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  padding: 16px 18px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease;
}

.jaebc-stats div:hover {
  transform: translateY(-4px);
  border-color: var(--gold-2);
}

.jaebc-stats dt {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--gold-deep);
}

.jaebc-stats dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

.footer-operator {
  color: var(--muted);
  border-bottom: 1px dotted var(--gold-2);
  transition: color 0.25s ease;
}

.footer-operator:hover {
  color: var(--gold-deep);
}

@media (max-width: 900px) {
  .jaebc-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .jaebc-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* --- Track record section (single trustworthy page pass) --- */
.record-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 22px;
}

.record-stats div {
  background: var(--paper-gradient);
}

@media (max-width: 900px) {
  .record-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .record-stats {
    grid-template-columns: 1fr;
  }
}

/* --- Solo hero (minimal single-page pass, v17) --- */
.hero-solo {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  text-align: center;
  min-height: calc(86svh - 68px);
}

.hero-solo .hero-copy {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-solo .logo-lockup {
  margin-left: auto;
  margin-right: auto;
}

.hero-solo .hero-lede {
  margin-left: auto;
  margin-right: auto;
}

.hero-solo .hero-actions {
  justify-content: center;
}

.site-footer {
  justify-content: center;
  text-align: center;
  padding-top: 26px;
  padding-bottom: 30px;
}

/* --- Story without kanji block / note (v19) --- */
.story-grid {
  grid-template-columns: 1fr;
}

/* --- Contact section (v20) --- */
.contact-section {
  padding-top: 10px;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  max-width: 560px;
}

.contact-list li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  border: 1px solid var(--paper-border);
  border-radius: 14px;
  background: var(--paper-gradient);
  box-shadow: var(--soft-shadow);
  padding: 15px 20px;
}

.contact-label {
  flex: 0 0 92px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.contact-list a {
  font-family: var(--font-display);
  font-weight: 600;
  word-break: break-all;
  border-bottom: 1px dotted var(--gold-2);
  transition: color 0.25s ease;
}

.contact-list a:hover {
  color: var(--gold-deep);
}

/* ============================================================
   Official-site footer (v21) — brand + contact + operator
   ============================================================ */
.site-footer {
  display: block;
  margin-top: clamp(48px, 8vw, 96px);
  padding: 0;
  border-top: 0;
  background: linear-gradient(180deg, #1b150c, #12100c);
  color: #e9dcbc;
  text-align: left;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, #3a9a5f 0%, #3a9a5f 26%, #e8b93c 26%, #e8b93c 58%, #c5402a 58%, #c5402a 82%, var(--gold-2) 82%);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(44px, 6vw, 72px) clamp(20px, 5vw, 56px) clamp(28px, 4vw, 44px);
}

.footer-crest {
  display: block;
  width: 42px;
  margin-bottom: 16px;
}

.footer-crest svg {
  width: 100%;
  height: auto;
  fill: none;
  stroke: var(--gold-2);
  stroke-width: 2.1;
  stroke-linecap: round;
}

.footer-crest .crest-ring {
  stroke: rgba(198, 159, 86, 0.55);
}

.footer-crest .crest-fill {
  fill: rgba(198, 159, 86, 0.14);
  stroke: var(--gold-2);
}

.footer-wordmark {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.32rem;
  letter-spacing: 0.16em;
  color: #f4ead2;
}

.footer-wordmark span {
  display: block;
  margin-top: 4px;
  font-size: 0.92rem;
  letter-spacing: 0.34em;
  color: var(--gold-2);
}

.footer-tagline {
  margin: 0;
  max-width: 34ch;
  font-size: 0.88rem;
  line-height: 1.85;
  color: rgba(233, 220, 188, 0.66);
}

.footer-heading {
  margin: 0 0 16px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.footer-list li {
  display: grid;
  gap: 3px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-key {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(233, 220, 188, 0.42);
}

.footer-list a {
  color: #f4ead2;
  word-break: break-word;
  border-bottom: 1px solid rgba(198, 159, 86, 0.35);
  padding-bottom: 1px;
  transition: color 0.25s ease, border-color 0.25s ease;
  justify-self: start;
}

.footer-list a:hover {
  color: var(--gold-2);
  border-bottom-color: var(--gold-2);
}

.footer-base {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px clamp(20px, 5vw, 56px) clamp(30px, 4vw, 40px);
  border-top: 1px solid rgba(233, 220, 188, 0.12);
}

.footer-base small {
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: rgba(233, 220, 188, 0.5);
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-base {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   One continuous page (v24): hero + story in a single flow
   ============================================================ */
.hero-solo {
  min-height: 0;
  padding-bottom: clamp(40px, 7vw, 88px);
  row-gap: 0;
}

.hero-solo .hero-copy {
  padding-top: clamp(24px, 5vw, 56px);
}

.hero-solo .hero-lede {
  margin-bottom: 0;
}

.hero-solo .story-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  margin: 0 auto;
  padding-top: clamp(36px, 6vw, 72px);
  text-align: left;
}

.story-rule {
  display: block;
  width: 64px;
  height: 2px;
  margin: 0 auto clamp(28px, 4vw, 44px);
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
}

.hero-solo .story-copy h2 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  line-height: 1.4;
}

.hero-solo .story-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.95;
}

.hero-solo .story-copy p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   Motion design layer (v26)
   Luxury tone: long durations, soft easing, restrained micro-motion
   ============================================================ */
:root {
  --ease-silk: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
}

/* --- Scroll progress (reading indicator) --- */
.scroll-progress {
  position: fixed;
  inset: 3px 0 auto 0;
  height: 2px;
  z-index: 41;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold-2), var(--gold-deep));
  opacity: 0.85;
}

/* --- Hero title: line-by-line mask reveal --- */
.hero-title.is-split {
  white-space: normal;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line-inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition:
    transform 1.15s var(--ease-silk),
    opacity 0.9s var(--ease-soft);
}

.hero-title.is-in .line-inner {
  transform: translateY(0);
  opacity: 1;
}

/* --- Logo: entrance + gentle hover lift --- */
.motion-lift {
  transition:
    transform 0.85s var(--ease-silk),
    box-shadow 0.85s var(--ease-silk);
}

.motion-lift:hover {
  transform: translateY(-5px) rotate(-0.6deg);
  box-shadow: 0 26px 60px rgba(72, 54, 22, 0.16);
}

/* --- Hero kanji: pointer-reactive drift (composed with float) --- */
.hero-kanji {
  transition: transform 1.4s var(--ease-soft);
  will-change: transform;
}

/* --- Event banner: slow shimmer on the date --- */
.event-banner-date {
  background: linear-gradient(100deg, var(--shu) 25%, var(--gold-deep) 50%, var(--shu) 75%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: bannerShimmer 6.5s ease-in-out infinite;
}

@keyframes bannerShimmer {
  0%, 100% { background-position: 0% 0; }
  50% { background-position: 100% 0; }
}

/* --- Story rule: draws itself in --- */
.story-rule {
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 1.2s var(--ease-silk) 0.1s;
}

.story-rule.reveal-in,
.reveal-in > .story-rule {
  transform: scaleX(1);
}

/* --- Footer links: underline sweep --- */
.footer-list a {
  position: relative;
  border-bottom: 0;
  padding-bottom: 2px;
}

.footer-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold-2);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.55s var(--ease-silk);
}

.footer-list a:hover::after,
.footer-list a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.footer-list a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(198, 159, 86, 0.3);
}

/* --- Language switch: smoother pill --- */
.segment {
  transition: color 0.4s var(--ease-soft), background 0.5s var(--ease-silk);
}

/* --- Softer, longer reveals overall --- */
.reveal {
  transition:
    opacity 1s var(--ease-soft),
    transform 1.1s var(--ease-silk);
}

@media (prefers-reduced-motion: reduce) {
  .event-banner-date {
    animation: none;
    color: var(--shu);
    -webkit-text-fill-color: var(--shu);
  }
  .hero-title .line-inner {
    transform: none;
    opacity: 1;
  }
  .story-rule {
    transform: scaleX(1);
  }
  .scroll-progress {
    display: none;
  }
}
