/* ==========================================================================
   WORLDWIDE WHISKY CO. — design system
   Dark cinematic luxury · Japanese heritage · modern editorial
   ========================================================================== */

:root {
  /* Ink */
  --ink:       #0d0d0d;
  --ink-soft:  #121211;
  --ink-2:     #161614;
  --ink-3:     #1c1b18;

  /* Amber / gold */
  --amber:     #c4813a;
  --gold:      #b8972a;
  --gold-2:    #c9a544;   /* matches logo gold */
  --gold-3:    #d4b04a;
  --champagne: #ecdcae;
  --cedar:     #8b5e3c;

  /* Brand worlds */
  --forest:    #1d2b1c;
  --forest-2:  #2c4128;
  --moss:      #7da164;
  --charcoal:  #1a1a1c;
  --sakura:    #d9a8b4;

  /* Text */
  --cream:     #f4efe4;
  --body:      rgba(244, 239, 228, .72);
  --quiet:     rgba(244, 239, 228, .46);

  /* Hairlines */
  --line:      rgba(201, 165, 68, .18);
  --line-soft: rgba(201, 165, 68, .09);

  /* Type */
  --display: 'Fraunces', serif;
  --sans:    'Jost', sans-serif;
  --jp:      'Shippori Mincho', serif;

  /* Motion */
  --luxe: cubic-bezier(.22, 1, .36, 1);

  /* Rhythm */
  --pad-x: clamp(1.5rem, 5vw, 5rem);
  --pad-section: clamp(7rem, 13vw, 13rem);

  /* z-index scale */
  --z-base: 1; --z-raised: 2; --z-nav: 50; --z-menu: 60; --z-toast: 70;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--gold); color: var(--ink); }
:focus-visible { outline: 1px solid var(--gold-3); outline-offset: 4px; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

/* anchor targets land clear of the fixed header */
[id] { scroll-margin-top: 6.5rem; }

.skip-link {
  position: fixed; top: -100%; left: 1rem; z-index: 100;
  background: var(--gold); color: var(--ink); padding: .6rem 1.2rem;
  font-size: .8rem; letter-spacing: .1em; text-decoration: none;
  transition: top .3s;
}
.skip-link:focus { top: 1rem; }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-nav);
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem var(--pad-x);
  transition: background .5s var(--luxe), border-color .5s, padding .5s var(--luxe);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(13, 13, 13, .94);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding-top: .9rem; padding-bottom: .9rem;
}
.nav__brand { text-decoration: none; line-height: 1.3; }
.nav__brand-main {
  display: block; font-family: var(--display); font-weight: 400;
  font-size: 1.02rem; letter-spacing: .14em; text-transform: uppercase;
}
.nav__brand-sub {
  display: block; font-size: .58rem; letter-spacing: .34em;
  text-transform: uppercase; color: var(--gold-2);
}
.nav__links { display: flex; align-items: center; gap: clamp(1.4rem, 3vw, 2.8rem); }
.nav__links a {
  position: relative; padding: .5rem 0;
  font-size: .72rem; font-weight: 300; letter-spacing: .26em; text-transform: uppercase;
  color: var(--body); text-decoration: none; transition: color .3s;
}
.nav__links 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 .45s var(--luxe);
}
.nav__links a:hover { color: var(--champagne); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta {
  border: 1px solid rgba(201, 165, 68, .45);
  padding: .55rem 1.5rem !important; color: var(--champagne) !important;
  transition: background .3s, color .3s, border-color .3s !important;
}
.nav__cta::after { display: none; }
.nav__cta:hover { background: var(--gold); border-color: var(--gold); color: var(--ink) !important; }

/* Hamburger */
.nav__toggle {
  display: none; flex-direction: column; justify-content: center; gap: 7px;
  width: 48px; height: 48px; padding: 12px; z-index: calc(var(--z-menu) + 1);
}
.nav__toggle span { height: 1px; width: 100%; background: var(--champagne); transition: transform .45s var(--luxe); }
.nav__toggle.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__toggle.is-open span:last-child  { transform: translateY(-4px) rotate(-45deg); }

/* Mobile menu */
.menu {
  position: fixed; inset: 0; z-index: var(--z-menu);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 3rem;
  background: rgba(13, 13, 13, .98);
  opacity: 0; visibility: hidden;
  transition: opacity .5s var(--luxe), visibility .5s;
}
.menu.is-open { opacity: 1; visibility: visible; }
.menu nav { display: flex; flex-direction: column; align-items: center; }
.menu a {
  display: flex; align-items: baseline; gap: 1rem;
  font-family: var(--display); font-size: 2.1rem; font-weight: 300;
  color: var(--cream); text-decoration: none; padding: .8rem 1.4rem;
  opacity: 0; transform: translateY(18px);
  transition: opacity .55s var(--luxe), transform .55s var(--luxe), color .3s;
}
.menu a i { font-family: var(--sans); font-style: normal; font-size: .68rem; letter-spacing: .2em; color: var(--gold-2); }
.menu.is-open a { opacity: 1; transform: none; }
.menu.is-open a:nth-child(2) { transition-delay: .07s; }
.menu.is-open a:nth-child(3) { transition-delay: .14s; }
.menu.is-open a:nth-child(4) { transition-delay: .21s; }
.menu a:hover { color: var(--gold-3); }
.menu__foot { font-size: .62rem; letter-spacing: .4em; text-transform: uppercase; color: var(--quiet); }

/* ==========================================================================
   HERO — animated amber liquid
   ========================================================================== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: 8rem var(--pad-x) 6rem;
  overflow: hidden;
}
.hero__liquid { position: absolute; inset: 0; z-index: 0; }
/* Static fallback lives underneath the canvas — also the reduced-motion view */
.hero__liquid {
  background:
    radial-gradient(ellipse 75% 58% at 68% 78%, rgba(196, 129, 58, .26) 0%, transparent 62%),
    radial-gradient(ellipse 55% 45% at 30% 88%, rgba(184, 151, 42, .18) 0%, transparent 60%),
    radial-gradient(ellipse 90% 60% at 50% 110%, rgba(139, 94, 60, .22) 0%, transparent 65%),
    var(--ink);
}
#liquidCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(13,13,13,.82) 0%, transparent 28%, transparent 62%, rgba(13,13,13,.9) 100%),
    radial-gradient(ellipse 120% 90% at 50% 50%, transparent 55%, rgba(13,13,13,.75) 100%);
}

.hero__crow {
  position: absolute; z-index: var(--z-base);
  right: clamp(-8rem, -4vw, -2rem); top: 50%;
  width: clamp(24rem, 46vw, 44rem); height: auto;
  opacity: .055; pointer-events: none; user-select: none;
  transform: translateY(-50%);
}
.hero__vertical {
  position: absolute; z-index: var(--z-base);
  left: clamp(.6rem, 2.4vw, 2.6rem); top: 50%; transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: var(--jp); font-size: .86rem; letter-spacing: .9em;
  color: rgba(201, 165, 68, .4); user-select: none;
}

.hero__content { position: relative; z-index: var(--z-raised); max-width: 980px; margin-left: clamp(0rem, 6vw, 5rem); }
.hero__eyebrow {
  display: flex; align-items: center; gap: 1.2rem;
  font-size: .66rem; letter-spacing: .44em; text-transform: uppercase;
  color: var(--gold-2); margin-bottom: 2.4rem;
  animation: rise 1.3s var(--luxe) .15s both;
}
.hero__eyebrow::before { content: ''; width: 3.4rem; height: 1px; background: rgba(201,165,68,.5); }
.hero__title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(3.4rem, 11.5vw, 9rem);
  line-height: .98; letter-spacing: .01em; text-transform: uppercase;
  margin-bottom: 2.4rem;
}
.hero__title-line { display: block; overflow: hidden; }
.hero__title-line:first-child  { animation: rise 1.4s var(--luxe) .3s both; }
.hero__title-line:last-child   { animation: rise 1.4s var(--luxe) .45s both; }
.hero__title em {
  font-style: italic; font-weight: 300;
  background: linear-gradient(100deg, var(--gold) 10%, var(--champagne) 50%, var(--amber) 90%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: sheen 9s linear infinite;
}
.hero__lede {
  font-family: var(--display); font-style: italic; font-weight: 300;
  font-size: clamp(1.08rem, 2vw, 1.4rem); line-height: 1.75;
  color: var(--body); max-width: 34em; margin-bottom: 3.2rem;
  animation: rise 1.3s var(--luxe) .62s both;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 1.2rem; animation: rise 1.3s var(--luxe) .78s both; }

.hero__scroll {
  position: absolute; z-index: var(--z-raised);
  bottom: 2.6rem; right: var(--pad-x);
  display: flex; flex-direction: column; align-items: center; gap: .8rem;
  animation: fade 1.5s var(--luxe) 1.6s both;
}
.hero__scroll span { font-size: .56rem; letter-spacing: .42em; text-transform: uppercase; color: rgba(201,165,68,.55); }
.hero__scroll-line { width: 1px; height: 64px; background: linear-gradient(to bottom, rgba(201,165,68,.55), transparent); overflow: hidden; position: relative; }
.hero__scroll-line::after {
  content: ''; position: absolute; top: -60%; left: 0; width: 100%; height: 55%;
  background: var(--gold-3); animation: drip 2.8s var(--luxe) infinite;
}

@keyframes rise  { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: none; } }
@keyframes fade  { from { opacity: 0; } to { opacity: 1; } }
@keyframes sheen { to { background-position: 220% center; } }
@keyframes drip  { 0% { top: -60%; } 72%, 100% { top: 115%; } }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  position: relative; display: inline-block; overflow: hidden;
  padding: 1.05rem 2.7rem;
  font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
  text-decoration: none; border: 1px solid var(--gold); white-space: nowrap;
  transition: color .35s var(--luxe), border-color .35s, background-color .35s;
}
.btn--solid { background: var(--gold); color: var(--ink); font-weight: 500; }
.btn--solid::before {
  content: ''; position: absolute; inset: 0; background: var(--champagne);
  transform: translateX(-101%); transition: transform .55s var(--luxe);
}
.btn--solid:hover::before { transform: none; }
.btn--solid span { position: relative; z-index: 1; }
.btn--ghost { border-color: rgba(201,165,68,.45); color: var(--champagne); }
.btn--ghost:hover { border-color: var(--gold-3); color: var(--gold-3); background: rgba(201,165,68,.07); }
.btn--india { border-color: rgba(196,129,58,.5); color: var(--amber); }
.btn--india:hover { border-color: var(--amber); color: #d99a55; background: rgba(196,129,58,.08); }

/* ==========================================================================
   TICKER
   ========================================================================== */
.ticker {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--ink-soft); overflow: hidden; padding: 1.05rem 0;
}
.ticker__track {
  display: flex; gap: 3rem; width: max-content;
  animation: ticker 60s linear infinite;
}
.ticker__track span {
  font-size: .64rem; letter-spacing: .4em; text-transform: uppercase; color: var(--quiet);
  white-space: nowrap;
}
.ticker__track i { color: var(--gold-2); font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ==========================================================================
   SHARED EDITORIAL PIECES
   ========================================================================== */
section { padding: var(--pad-section) var(--pad-x); }

.chapter {
  display: block; font-size: .64rem; letter-spacing: .46em; text-transform: uppercase;
  color: var(--gold-2);
}
.chapter-jp {
  display: block; font-family: var(--jp); font-weight: 600;
  font-size: 2.6rem; color: transparent;
  -webkit-text-stroke: 1px rgba(201,165,68,.4);
  margin-top: 1rem; line-height: 1;
}
.display {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.06; letter-spacing: .005em;
  margin-bottom: 2.2rem;
}
.display em { font-style: italic; font-weight: 300; color: var(--gold-3); }
.prose { color: var(--body); max-width: 36em; }
.prose + .prose { margin-top: 1.4rem; }
.prose--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about { background: var(--ink); border-bottom: 1px solid var(--line-soft); }
.about__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(140px, .9fr) 2.4fr;
  gap: clamp(2rem, 6vw, 6rem); align-items: start;
}
.about__label { position: sticky; top: 8rem; }
.about__stats {
  display: grid; grid-template-columns: repeat(4, auto); justify-content: start;
  gap: clamp(1.6rem, 4vw, 4rem);
  margin-top: 3.6rem; padding-top: 2.2rem; border-top: 1px solid var(--line);
}
.about__stats dt { font-size: .6rem; letter-spacing: .28em; text-transform: uppercase; color: var(--quiet); margin-bottom: .5rem; }
.about__stats dd { font-family: var(--display); font-size: clamp(2rem, 3.4vw, 2.9rem); font-weight: 300; line-height: 1; color: var(--gold-3); }

/* ==========================================================================
   COLLECTION — tabs + plinths
   ========================================================================== */
.collection { background: var(--ink-soft); border-bottom: 1px solid var(--line-soft); }
.collection__head { text-align: center; max-width: 760px; margin: 0 auto 4rem; }
.collection__head .about__label { position: static; margin-bottom: 2rem; }

.tabs { display: flex; justify-content: center; border-bottom: 1px solid var(--line); margin-bottom: 5.5rem; }
.tabs__btn {
  position: relative; display: flex; align-items: center; gap: .85rem;
  padding: 1.15rem 3rem; min-height: 48px;
  font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--quiet); transition: color .35s;
}
.tabs__jp { font-family: var(--jp); font-size: 1rem; letter-spacing: .1em; color: rgba(201,165,68,.45); transition: color .35s; }
.tabs__btn::after {
  content: ''; position: absolute; left: 0; bottom: -1px; width: 100%; height: 1px;
  background: var(--gold-3); transform: scaleX(0); transition: transform .5s var(--luxe);
}
.tabs__btn:hover { color: var(--champagne); }
.tabs__btn[aria-selected="true"] { color: var(--gold-3); }
.tabs__btn[aria-selected="true"] .tabs__jp { color: var(--gold-3); }
.tabs__btn[aria-selected="true"]::after { transform: scaleX(1); }

.panel { display: none; }
.panel--active { display: block; animation: panelIn .65s var(--luxe); }
@keyframes panelIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* --- Museum plinths --- */
.plinths {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  max-width: 1380px; margin: 0 auto;
  background: var(--line-soft); border: 1px solid var(--line-soft);
}
.plinth {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  background: var(--ink-soft);
  min-height: 620px;
  transition: background .6s var(--luxe);
}
.plinth:hover { background: var(--ink-2); }

/* stage */
.plinth__stage {
  position: relative; height: 300px; flex: none;
  display: flex; align-items: center; justify-content: center;
}
.plinth--kumano .plinth__stage { background: radial-gradient(ellipse 80% 70% at 50% 64%, rgba(44, 65, 40, .5) 0%, transparent 72%); }
.plinth--sasa   .plinth__stage { background: radial-gradient(ellipse 80% 70% at 50% 64%, rgba(46, 46, 50, .55) 0%, transparent 72%); }
.plinth--yama   .plinth__stage { background: radial-gradient(ellipse 80% 70% at 50% 64%, rgba(72, 48, 54, .4) 0%, transparent 72%); }
.plinth__mark {
  width: 132px; height: 132px; object-fit: contain;
  filter: drop-shadow(0 16px 26px rgba(0,0,0,.6));
  transition: transform .9s var(--luxe);
}
.plinth:hover .plinth__mark { transform: translateY(-8px) scale(1.04); }
.plinth__base {
  position: absolute; bottom: 52px; left: 50%; transform: translateX(-50%);
  width: 150px; height: 14px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(201,165,68,.22) 0%, transparent 70%);
  transition: width .9s var(--luxe), opacity .9s;
}
.plinth:hover .plinth__base { width: 180px; opacity: .85; }
.plinth__base::after {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 100%; height: 1px; background: linear-gradient(to right, transparent, rgba(201,165,68,.5), transparent);
}

/* caption */
.plinth__caption { padding: .6rem 2rem 2.2rem; text-align: center; flex: 1; }
.plinth__no { font-family: var(--display); font-style: italic; font-size: .9rem; color: rgba(201,165,68,.55); display: block; margin-bottom: 1.1rem; }
.plinth__name { font-family: var(--display); font-weight: 400; font-size: 1.45rem; line-height: 1.25; margin-bottom: .8rem; }
.plinth__origin { font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 1.2rem; }
.plinth--yama .plinth__origin { color: var(--sakura); }
.plinth__note { font-family: var(--display); font-style: italic; font-weight: 300; font-size: .98rem; line-height: 1.7; color: var(--quiet); max-width: 24em; margin: 0 auto; }

/* specs — slide up on hover / focus */
.plinth__specs {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: var(--z-raised);
  background: rgba(13,13,13,.96); border-top: 1px solid var(--line);
  padding: 1.6rem 1.8rem 1.7rem;
  transform: translateY(101%);
  transition: transform .65s var(--luxe);
}
.plinth:hover .plinth__specs,
.plinth:focus-within .plinth__specs { transform: none; }
.plinth__specs dl { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem 1.4rem; margin-bottom: 1.3rem; }
.plinth__specs dt { font-size: .56rem; letter-spacing: .24em; text-transform: uppercase; color: var(--quiet); margin-bottom: .15rem; }
.plinth__specs dd { font-family: var(--display); font-size: 1.02rem; color: var(--champagne); line-height: 1.2; }
.plinth__link {
  display: inline-flex; align-items: center; gap: .7rem; min-height: 44px;
  font-size: .64rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold-3); text-decoration: none; transition: color .3s;
}
.plinth__link svg { transition: transform .4s var(--luxe); }
.plinth__link:hover { color: var(--champagne); }
.plinth__link:hover svg { transform: translateX(5px); }

/* touch devices: specs always visible, no hidden content */
@media (hover: none) {
  .plinth__specs { position: static; transform: none; border-top: 1px solid var(--line-soft); }
  .plinth { min-height: 0; }
}

/* --- Coming soon --- */
.soon {
  position: relative; overflow: hidden; text-align: center;
  max-width: 980px; margin: 0 auto;
  border: 1px solid rgba(196,129,58,.28); padding: clamp(4rem, 8vw, 7rem) 2rem;
}
.soon::before {
  content: ''; position: absolute; inset: 10px;
  border: 1px solid rgba(196,129,58,.12); pointer-events: none;
}
.soon__badge {
  display: inline-block; font-size: .6rem; letter-spacing: .44em; text-transform: uppercase;
  border: 1px solid rgba(196,129,58,.5); color: var(--amber);
  padding: .5rem 1.5rem; margin-bottom: 2.4rem;
}
.soon__title { font-family: var(--display); font-weight: 400; font-size: clamp(2.4rem, 5vw, 3.8rem); line-height: 1.1; margin-bottom: 1.4rem; }
.soon__title em { font-style: italic; font-weight: 300; color: var(--amber); }
.soon__sub { font-family: var(--display); font-style: italic; font-weight: 300; font-size: 1.12rem; color: var(--body); max-width: 32em; margin: 0 auto 3rem; }

/* ==========================================================================
   HOUSES — two brand worlds
   ========================================================================== */
.houses { padding-left: 0; padding-right: 0; background: var(--ink); padding-bottom: 0; }
.houses .collection__head { padding: 0 var(--pad-x); margin-bottom: 5.5rem; }

.house { position: relative; overflow: hidden; padding: clamp(5.5rem, 9vw, 9rem) var(--pad-x); }
.house--kumano {
  background: linear-gradient(150deg, #0e130d 0%, var(--forest) 48%, #0d0d0d 100%);
  border-top: 1px solid var(--line-soft);
}
.house--sasa {
  background: linear-gradient(150deg, #121214 0%, var(--charcoal) 50%, #0d0d0d 100%);
  border-top: 1px solid var(--line-soft);
}
.house__watermark {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: clamp(20rem, 38vw, 36rem); height: auto;
  color: var(--moss); opacity: .05; pointer-events: none; user-select: none;
}
.house--kumano .house__watermark { right: -6rem; }
.house__watermark--seal { color: var(--sakura); left: -5rem; right: auto; opacity: .045; }
.house__petal { position: absolute; width: 54px; opacity: .14; pointer-events: none; }
.house__petal--1 { top: 14%; right: 12%; transform: rotate(18deg); }
.house__petal--2 { bottom: 16%; right: 28%; width: 34px; transform: rotate(-24deg); opacity: .1; }

.house__inner {
  position: relative; z-index: var(--z-raised);
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(180px, .8fr) 2fr;
  gap: clamp(2.5rem, 6vw, 6rem); align-items: start;
}
.house__inner--flip { direction: rtl; }
.house__inner--flip > * { direction: ltr; }
.house__mark { width: 92px; height: 92px; object-fit: contain; margin-bottom: 1.6rem; }
.house__region { font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-2); line-height: 2; }
.house--sasa .house__region { color: var(--sakura); }
.house__est { font-family: var(--display); font-style: italic; font-size: 1rem; color: var(--quiet); margin-bottom: .6rem; }
.house__est span { font-size: 2rem; font-style: normal; color: var(--gold-3); letter-spacing: .06em; }
.house__name {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem); line-height: 1.08; margin-bottom: 1.8rem;
}
.house__name em { font-style: italic; font-weight: 300; color: var(--gold-3); }

/* ==========================================================================
   TRADE
   ========================================================================== */
.trade { background: var(--ink-soft); border-top: 1px solid var(--line-soft); }
.trade__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 7vw, 7rem); align-items: start;
}
.trade__intro .about__label { position: static; margin-bottom: 2rem; }
.trade__intro .btn { margin-top: 2.6rem; }
.trade__list { list-style: none; counter-reset: trade; }
.trade__list li {
  display: flex; gap: 1.8rem; align-items: flex-start;
  padding: 2rem 0; border-bottom: 1px solid var(--line);
}
.trade__list li:first-child { border-top: 1px solid var(--line); }
.trade__kanji { font-family: var(--jp); font-size: 1.75rem; color: var(--gold-2); opacity: .8; flex: none; line-height: 1.5; }
.trade__list h3 { font-family: var(--display); font-weight: 400; font-size: 1.3rem; margin-bottom: .45rem; }
.trade__list p { font-size: .92rem; color: var(--body); }

/* ==========================================================================
   ENQUIRY FORM
   ========================================================================== */
.enquiry { background: var(--ink-2); position: relative; overflow: hidden; }
.enquiry::before {
  content: '問'; position: absolute; right: 2%; top: 50%;
  transform: translateY(-50%);
  font-family: var(--jp); font-size: 26rem; font-weight: 800; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(201,165,68,.05);
  pointer-events: none; user-select: none;
}
.enquiry__inner { position: relative; z-index: var(--z-raised); max-width: 760px; margin: 0 auto; }
.enquiry .collection__head { margin-bottom: 4.5rem; }

.form { display: flex; flex-direction: column; gap: 2.4rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem 2.2rem; }
.form__field { display: flex; flex-direction: column; gap: .6rem; }
.form__field label { font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: var(--quiet); }
.form__field label span { color: var(--gold-2); }
.form__field input,
.form__field select,
.form__field textarea {
  background: transparent; border: none; border-bottom: 1px solid rgba(201,165,68,.28);
  border-radius: 0; color: var(--cream);
  font-family: var(--sans); font-weight: 300; font-size: 1rem;
  padding: .65rem .1rem; width: 100%; outline: none;
  transition: border-color .35s;
  -webkit-appearance: none; appearance: none;
}
.form__field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23c9a544' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .25rem center;
}
.form__field select option { background: var(--ink-2); color: var(--cream); }
.form__field input::placeholder, .form__field textarea::placeholder { color: rgba(244,239,228,.28); }
.form__field input:focus, .form__field select:focus, .form__field textarea:focus { border-bottom-color: var(--gold-3); }
.form__field textarea { resize: vertical; min-height: 120px; }
.form__field--full { width: 100%; }

.form__products { border: none; }
.form__products legend { font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: var(--quiet); margin-bottom: 1.2rem; }
.form__checks { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem 2rem; }
.check { display: flex; align-items: center; gap: .85rem; min-height: 32px; cursor: pointer; }
.check input { width: 16px; height: 16px; accent-color: var(--gold); flex: none; cursor: pointer; }
.check span { font-size: .94rem; color: var(--body); transition: color .3s; }
.check:hover span { color: var(--champagne); }

.form__submit { text-align: center; margin-top: .6rem; }
.form__submit .btn { min-width: 260px; }
.form__submit .btn[disabled] { opacity: .55; cursor: wait; }
.form__note { font-size: .74rem; color: var(--quiet); margin-top: 1.4rem; line-height: 1.8; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: #0a0a09; border-top: 1px solid var(--line); padding: 5rem var(--pad-x) 2.4rem; }
.footer__inner { max-width: 1200px; margin: 0 auto; }
.footer__top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem); margin-bottom: 4.5rem;
}
.footer__brand img { margin-bottom: 1.4rem; opacity: .85; }
.footer__name { font-family: var(--display); font-size: 1.05rem; letter-spacing: .14em; text-transform: uppercase; }
.footer__byline { font-size: .58rem; letter-spacing: .34em; text-transform: uppercase; color: var(--gold-2); margin: .4rem 0 1.8rem; }
.footer__contact { font-style: normal; }
.footer__contact a, .footer__contact span { display: block; font-size: .85rem; color: var(--body); text-decoration: none; margin-bottom: .5rem; transition: color .3s; }
.footer__contact a:hover { color: var(--gold-3); }
.footer__col h3 { font-size: .6rem; letter-spacing: .32em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 1.4rem; font-weight: 400; }
.footer__col a { display: block; font-size: .85rem; color: var(--quiet); text-decoration: none; margin-bottom: .7rem; transition: color .3s; }
.footer__col a:hover { color: var(--gold-3); }
.footer__bottom {
  border-top: 1px solid rgba(244,239,228,.07); padding-top: 2.2rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer__bottom p { font-size: .72rem; color: rgba(244,239,228,.35); }
.footer__bottom a { color: inherit; }

/* ==========================================================================
   TOAST
   ========================================================================== */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: var(--z-toast);
  display: flex; align-items: center; gap: .9rem;
  background: var(--ink-3); border: 1px solid rgba(201,165,68,.45);
  color: var(--champagne); padding: 1.1rem 1.7rem;
  font-size: .84rem; letter-spacing: .05em;
  box-shadow: 0 24px 50px rgba(0,0,0,.65);
  transform: translateY(130px); opacity: 0;
  transition: transform .55s var(--luxe), opacity .55s;
}
.toast.is-shown { transform: none; opacity: 1; }
.toast svg { flex: none; }

/* ==========================================================================
   SCROLL REVEALS
   ========================================================================== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 1.1s var(--luxe), transform 1.1s var(--luxe);
}
.reveal.is-visible { opacity: 1; transform: none; }
[data-parallax] { will-change: transform; }

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  #liquidCanvas { display: none; }          /* static gradient fallback shows */
  .ticker__track { animation: none; }
  .reveal { opacity: 1; transform: none; }
  .plinth__specs { position: static; transform: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1180px) {
  .plinths { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .about__grid, .trade__grid { grid-template-columns: 1fr; }
  .about__grid .about__label, .trade__intro .about__label { position: static; display: flex; align-items: baseline; gap: 1.4rem; margin-bottom: 2rem; }
  .about__grid .chapter-jp, .trade__intro .chapter-jp { margin-top: 0; font-size: 1.8rem; }
  .house__inner, .house__inner--flip { grid-template-columns: 1fr; direction: ltr; }
  .house__mark { width: 72px; height: 72px; }
  .hero__crow { opacity: .04; right: -10rem; }
  .about__stats { grid-template-columns: repeat(2, auto); gap: 2rem 4rem; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  body { font-size: 1rem; }
  .hero { padding: 7.5rem 1.4rem 6rem; }
  .hero__content { margin-left: 0; }
  .hero__title { font-size: clamp(2.3rem, 11.6vw, 3.2rem); }
  .hero__vertical { display: none; }
  .hero__scroll { right: 1.4rem; }
  .plinths { grid-template-columns: 1fr; }
  .plinth { min-height: 0; }
  .plinth__specs { position: static; transform: none; border-top: 1px solid var(--line-soft); }
  .tabs__btn { flex: 1; justify-content: center; padding: 1rem .6rem; font-size: .6rem; letter-spacing: .18em; }
  .tabs__jp { display: none; }
  .form__row, .form__checks { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .toast { left: 1.2rem; right: 1.2rem; bottom: 1.2rem; justify-content: center; text-align: left; }
  .enquiry::before { display: none; }
}
