/* ============================================================
   FORTU — styles
   Palette from the room: sumi near-black · dark walnut · lantern gold · washi cream
   Accents: urushi lacquer red (the 福 seal) · sakura blush (the bar)
   Type: Shippori Mincho B1 (display) · Zen Kaku Gothic New (text/UI) · system CJK for the kanji accents
   Mood: lantern-lit, sleek, intimate — dark cinematic stages, washi interludes
   ============================================================ */
:root {
  --washi: #EFE6D4;
  --washi-2: #E8DCC5;
  --washi-3: #DFD0B4;
  --sumi: #0F0B08;
  --sumi-2: #1A1310;
  --walnut: #2E211A;
  --urushi: #8C2F27;
  --urushi-2: #A03A30;
  --kin: #C79A52;
  --kin-2: #DDB26E;
  --sakura: #E4AFB8;
  --ink: #26190F;
  --muted: #837055;
  --line: rgba(60, 42, 24, .18);

  --display: 'Shippori Mincho B1', 'Hiragino Mincho ProN', 'Yu Mincho', 'Iowan Old Style', Georgia, serif;
  --sans: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Avenir Next', 'Helvetica Neue', Arial, sans-serif;
  --jp: 'Shippori Mincho B1', 'Hiragino Mincho ProN', 'Yu Mincho', serif;

  --wrap: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 14px;
  --shadow: 0 24px 60px -30px rgba(15, 11, 8, .45);
  --tatami: repeating-linear-gradient(180deg, rgba(0,0,0,0) 0 27px, rgba(60, 42, 24, .05) 27px 28px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  margin: 0;
  background: var(--washi);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
:focus-visible { outline: 2px solid var(--kin); outline-offset: 3px; border-radius: 4px; }
.wrap { width: min(var(--wrap), 100% - 2 * var(--gutter)); margin-inline: auto; }

/* Type */
h1, h2, h3, .display { font-family: var(--display); font-weight: 700; letter-spacing: .005em; line-height: 1.04; margin: 0; color: var(--ink); }
h1 { font-size: clamp(46px, 6.8vw, 108px); font-weight: 800; }
h2 { font-size: clamp(32px, 4.4vw, 60px); }
h3 { font-size: clamp(22px, 2.6vw, 32px); }
.display { font-size: clamp(32px, 4.1vw, 62px); }
.lead { font-size: clamp(16.5px, 1.3vw, 19px); line-height: 1.6; color: var(--ink); max-width: 56ch; }
.eyebrow { font: 700 12.5px/1.3 var(--sans); letter-spacing: .24em; text-transform: uppercase; color: var(--urushi); margin: 0 0 16px; }
.jp { font-family: var(--jp); font-weight: 700; color: var(--ink); font-size: clamp(38px, 4.6vw, 72px); line-height: 1.15; margin: 0; letter-spacing: .12em; }
.jp.light { color: var(--washi); text-shadow: 0 2px 30px rgba(0,0,0,.6); }
p { margin: 0 0 1em; }
em { font-style: italic; }

/* The 福 seal — lacquer-red square, washi glyph */
.brand-seal { display: inline-grid; place-items: center; width: 1.45em; height: 1.45em; margin-right: .5em; background: var(--urushi); color: var(--washi); border-radius: .22em; font-family: var(--jp); font-weight: 700; font-size: .72em; line-height: 1; vertical-align: -0.28em; letter-spacing: 0; box-shadow: 0 2px 12px -4px rgba(140, 47, 39, .8); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 26px; border-radius: 2px; font: 700 13px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; border: 1.5px solid transparent; transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease; white-space: nowrap; }
.btn:hover { transform: translateY(-1px); }
.btn-lacquer { background: var(--urushi); color: var(--washi); box-shadow: 0 10px 30px -12px rgba(140, 47, 39, .7); }
.btn-lacquer:hover { background: var(--urushi-2); }
.btn-cream { background: var(--washi); color: var(--sumi); }
.btn-cream:hover { background: #FFF8E8; }
.btn-gold { background: var(--kin); color: var(--sumi); }
.btn-gold:hover { background: var(--kin-2); }
.btn-ghost { background: rgba(15, 11, 8, .32); color: var(--washi); border-color: rgba(239, 230, 212, .5); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(15, 11, 8, .58); }
.btn-ghost-dark { background: transparent; color: var(--ink); border-color: rgba(60, 42, 24, .45); }
.btn-ghost-dark:hover { background: rgba(60, 42, 24, .08); }
.btn-nav { padding: 11px 18px; font-size: 12px; background: var(--urushi); color: var(--washi); }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Loader ---------- */
.loader { position: fixed; inset: 0; z-index: 100; background: var(--sumi); display: grid; place-items: center; transition: opacity .7s ease, visibility .7s; --p: 0; }
.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; width: min(340px, 78vw); }
.loader-seal { display: inline-grid; place-items: center; width: 64px; height: 64px; background: var(--urushi); color: var(--washi); border-radius: 8px; font-family: var(--jp); font-weight: 700; font-size: 38px; margin: 0 auto 18px; box-shadow: 0 8px 40px -8px rgba(140, 47, 39, .9); }
.loader-word { font-family: var(--display); font-weight: 800; font-size: 34px; color: var(--washi); margin: 0 0 30px; letter-spacing: .34em; text-indent: .34em; }
.loader-bar { height: 2px; background: rgba(239, 230, 212, .14); border-radius: 2px; overflow: hidden; }
.loader-bar span { display: block; height: 100%; width: calc(var(--p) * 100%); background: var(--kin); transition: width .3s ease; }
.loader-note { margin: 14px 0 0; font: 500 12px/1.5 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: rgba(239, 230, 212, .55); }

/* ---------- Nav ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; display: flex; align-items: center; gap: 28px; padding: 18px var(--gutter); transition: background .35s ease, box-shadow .35s ease, padding .35s ease; color: var(--washi); }
.nav.scrolled { background: rgba(15, 11, 8, .84); backdrop-filter: blur(14px) saturate(1.2); -webkit-backdrop-filter: blur(14px) saturate(1.2); box-shadow: 0 1px 0 rgba(199, 154, 82, .28); padding-block: 12px; }
.brand { font-family: var(--display); font-weight: 800; font-size: 21px; letter-spacing: .3em; color: var(--washi); white-space: nowrap; }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a { font: 500 14.5px/1 var(--sans); letter-spacing: .05em; color: var(--washi); position: relative; padding: 6px 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px; background: var(--kin); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid rgba(239, 230, 212, .4); background: rgba(15, 11, 8, .4); cursor: pointer; position: relative; }
.nav-toggle span { position: absolute; left: 12px; right: 12px; height: 1.5px; background: var(--washi); transition: transform .3s ease, top .3s ease; top: 17px; }
.nav-toggle span:last-child { top: 25px; }
.nav-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }
.mobile-menu { position: fixed; inset: 0; z-index: 45; background: var(--sumi); display: flex; flex-direction: column; justify-content: center; gap: 6px; padding: 96px var(--gutter) 40px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .35s ease, visibility .35s, transform .35s ease; }
.mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu > a:not(.btn) { font-family: var(--display); font-weight: 700; font-size: clamp(30px, 8vw, 44px); color: var(--washi); padding: 10px 0; border-bottom: 1px solid rgba(199, 154, 82, .25); }
.mobile-menu .btn { align-self: flex-start; margin-top: 22px; background: var(--urushi); color: var(--washi); }
.mm-foot { margin-top: auto; color: rgba(239, 230, 212, .6); font-size: 14px; }
.mm-foot a { color: var(--kin-2); }

/* ---------- Scrub sections ---------- */
.scrub { position: relative; height: 520vh; }
.scrub.pour { height: 460vh; }
.scrub.kingcrab { height: 460vh; }
.scrub.date { height: 440vh; }
.stage { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; background: var(--sumi); }
.stage canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.stage .poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 1; transition: opacity .4s ease; }
.scrub.has-frame .poster { opacity: 0; }
.stage-shade { position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(15, 11, 8, .62) 0%, rgba(15, 11, 8, .32) 26%, rgba(15, 11, 8, 0) 52%),
              linear-gradient(0deg, rgba(15, 11, 8, .58) 0%, rgba(15, 11, 8, 0) 32%),
              linear-gradient(180deg, rgba(15, 11, 8, .5) 0%, rgba(15, 11, 8, 0) 22%); }
.stage-shade.shade-warm { background: linear-gradient(90deg, rgba(15, 11, 8, .6) 0%, rgba(15, 11, 8, .3) 26%, rgba(15, 11, 8, 0) 50%),
              linear-gradient(270deg, rgba(15, 11, 8, .55) 0%, rgba(15, 11, 8, .25) 22%, rgba(15, 11, 8, 0) 46%),
              linear-gradient(0deg, rgba(15, 11, 8, .6) 0%, rgba(15, 11, 8, 0) 34%); }
.reveal-line { position: absolute; opacity: 0; will-change: opacity, transform; max-width: min(540px, 38vw); color: var(--washi); }
.reveal-line.ml { left: var(--gutter); top: 50%; transform: translateY(-50%); }
.reveal-line.mr { right: var(--gutter); top: 50%; transform: translateY(-50%); text-align: right; }
.reveal-line.mr .cta-row { justify-content: flex-end; }
.reveal-line.center { left: 50%; top: 50%; transform: translate(-50%, -50%) !important; text-align: center; max-width: min(760px, 86vw); margin-left: 0; }
.reveal-line.center.low { top: auto; bottom: 10vh; transform: translateX(-50%) !important; }
.scrub .display { color: var(--washi); text-shadow: 0 2px 26px rgba(0,0,0,.5); }
.scrub .lead { color: rgba(239, 230, 212, .95); margin-top: 20px; text-shadow: 0 1px 14px rgba(0,0,0,.6); }
.scrub .eyebrow { color: var(--kin-2); text-shadow: 0 1px 10px rgba(0,0,0,.6); }
/* Hero layout: title top-left over the lanterns, lead + CTAs bottom-left over the bar */
.hero-title { left: var(--gutter); top: clamp(92px, 13vh, 150px); max-width: min(820px, 64vw); }
.hero-title h1 { color: var(--washi); text-shadow: 0 2px 34px rgba(0,0,0,.55); }
.hero-ctas { left: var(--gutter); bottom: 6vh; max-width: 620px; }
.hero-ctas .lead { max-width: 58ch; margin: 0 0 18px; font-size: 16.5px; }
.hero-mid { left: 0; right: 0; top: clamp(96px, 14vh, 150px); text-align: center; max-width: none; padding: 0 var(--gutter); }
.hero-mid .mid-note, .hero-end .mid-note { font-size: 17px; color: rgba(239, 230, 212, .92); max-width: 46ch; margin: 14px auto 0; text-shadow: 0 1px 14px rgba(0,0,0,.7); }
.hero-end { left: var(--gutter); bottom: 8vh; max-width: 620px; }
.hero-end .awards { font-family: var(--display); font-weight: 700; font-size: clamp(19px, 2vw, 28px); color: var(--washi); line-height: 1.25; margin: 0 0 6px; text-shadow: 0 2px 20px rgba(0,0,0,.6); }
.hero-end .awards small { font-family: var(--sans); font-weight: 500; font-size: .55em; letter-spacing: .14em; text-transform: uppercase; color: var(--kin-2); margin-left: 10px; }
.hero-end .btn { margin-top: 14px; }
.board-list { font-family: var(--display); font-weight: 700; font-size: clamp(16px, 1.6vw, 22px); line-height: 1.4; color: var(--washi); margin: 0 auto 18px; max-width: 36em; text-shadow: 0 1px 16px rgba(0,0,0,.65); }
.scroll-hint { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); font: 700 11px/1 var(--sans); letter-spacing: .26em; text-transform: uppercase; color: rgba(239, 230, 212, .85); display: flex; flex-direction: column; align-items: center; gap: 10px; transition: opacity .4s; }
.scroll-hint span { width: 1.5px; height: 44px; background: linear-gradient(var(--kin), transparent); animation: hint 1.8s ease-in-out infinite; }
@keyframes hint { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
.progress { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(239, 230, 212, .12); }
.progress-fill { height: 100%; width: 0; background: var(--kin); }

/* QA mode (?static=…): un-stick stages so full-page screenshots render every clip */
.static-preview .scrub, .static-preview .scrub.pour, .static-preview .scrub.kingcrab, .static-preview .scrub.date { height: 100vh; }
.static-preview .stage { position: relative; height: 100vh; }
.static-preview .scroll-hint { display: none; }

/* ---------- Beltline (lacquer band, kanji ticks) ---------- */
.beltline { background: var(--sumi-2); color: var(--washi); overflow: hidden; border-top: 2px solid var(--kin); border-bottom: 2px solid var(--kin); position: relative; }
.beltline::before, .beltline::after { content: ""; position: absolute; left: 0; right: 0; height: 1px; background: rgba(199, 154, 82, .4); }
.beltline::before { top: 5px; } .beltline::after { bottom: 5px; }
.belt-track { display: flex; align-items: center; gap: 34px; padding: 16px 0; width: max-content; animation: belt 46s linear infinite; font-family: var(--display); font-weight: 700; font-size: 14px; letter-spacing: .22em; text-transform: uppercase; white-space: nowrap; }
.belt-track i { font-style: normal; font-family: var(--jp); font-size: 13px; color: var(--kin-2); letter-spacing: 0; }
@keyframes belt { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .belt-track { animation: none; } }

/* ---------- Philosophy ---------- */
.story { background: var(--washi); background-image: var(--tatami); padding: clamp(80px, 10vw, 140px) 0; position: relative; }
.story-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 6vw, 96px); align-items: center; }
.story-photo { margin: 0; position: relative; }
.story-photo img { border-radius: var(--radius); box-shadow: var(--shadow); }
.story-photo figcaption { margin-top: 14px; font: 500 12.5px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.story-text h2 { margin-bottom: 26px; }
.story-text p { font-size: 17.5px; color: var(--ink); max-width: 56ch; }
.facts { list-style: none; margin: 34px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.facts li { border-top: 1px solid var(--line); padding-top: 12px; font-size: 15.5px; color: var(--ink); font-family: var(--display); font-weight: 600; }
.facts strong { display: block; font: 700 11.5px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--urushi); margin-bottom: 6px; }

/* ---------- Menu ---------- */
.menu { background: var(--walnut); color: var(--washi); padding: clamp(80px, 10vw, 140px) 0; position: relative; }
.menu::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 90% at 50% 0%, rgba(221, 178, 110, .09), rgba(0,0,0,0) 55%), repeating-linear-gradient(180deg, rgba(0,0,0,0) 0 27px, rgba(15, 11, 8, .12) 27px 28px); pointer-events: none; }
.menu .wrap { position: relative; }
.menu-head { max-width: 780px; margin-bottom: clamp(40px, 5vw, 64px); }
.menu-head .eyebrow { color: var(--kin-2); }
.menu-head h2 { color: var(--washi); }
.menu-head .lead { color: rgba(239, 230, 212, .93); margin-top: 20px; }
.boards { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 36px); align-items: start; }
.boards > .board:last-child { grid-column: 1 / -1; }
.board { background: var(--washi); color: var(--ink); border-radius: 8px; padding: clamp(26px, 3vw, 44px); box-shadow: 0 30px 70px -36px rgba(15, 11, 8, .8), inset 0 0 0 1px rgba(60, 42, 24, .14); position: relative; }
.board::before { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(140, 47, 39, .25); border-radius: 4px; pointer-events: none; }
.board header { text-align: center; margin-bottom: 22px; }
.board-jp { font-family: var(--jp); font-weight: 700; font-size: clamp(34px, 3.4vw, 46px); color: var(--urushi); line-height: 1.1; margin: 0; letter-spacing: .16em; }
.board h3 { font-size: 13.5px; font-family: var(--sans); font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li { display: flex; align-items: baseline; gap: 12px; padding: 10px 0; border-bottom: 1px dashed rgba(60, 42, 24, .28); font-family: var(--display); font-weight: 600; font-size: clamp(17px, 1.5vw, 20px); color: var(--ink); }
.menu-list li > span { flex: 1; }
.menu-list li > b, .menu-list span b { font-weight: 600; color: var(--urushi); white-space: nowrap; }
.menu-list li > b::before, .menu-list span b::before { content: "$"; font-size: .68em; vertical-align: .18em; margin-right: 1px; opacity: .8; }
.menu-list.specialty { column-gap: 40px; }
.board-featured .menu-list.specialty { columns: 2; }
.menu-list.specialty li { display: block; padding: 12px 0; break-inside: avoid; }
.menu-list.specialty span { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.menu-list.specialty p { font-family: var(--sans); font-size: 14.5px; line-height: 1.5; color: rgba(38, 25, 15, .8); margin: 5px 0 0; max-width: 58ch; font-weight: 400; }
.tag { display: inline-block; font: 700 10px/1.1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--washi); background: var(--urushi); border-radius: 2px; padding: 5px 10px 4px; vertical-align: middle; margin-left: 8px; font-style: normal; }
.board-notes { margin-top: 24px; border-top: 1px dashed rgba(60, 42, 24, .28); padding-top: 18px; }
.board-notes h4 { margin: 0 0 8px; font-family: var(--jp); font-weight: 700; font-size: 24px; color: var(--urushi); line-height: 1.2; letter-spacing: .1em; }
.board-notes h4 span { font-family: var(--sans); font-weight: 700; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-left: 10px; }
.board-notes p { margin: 0; font-size: 14.5px; line-height: 1.65; color: rgba(38, 25, 15, .85); }
.board-notes b { font-family: var(--display); font-weight: 600; color: var(--urushi); }
.board-notes b::before { content: "$"; font-size: .68em; vertical-align: .18em; margin-right: 1px; opacity: .8; }
.board-fine { margin: 18px 0 0; font-size: 13px; color: var(--muted); text-align: center; }
.board-fine a { color: var(--urushi); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Bar ---------- */
.bar { background: var(--sumi-2); color: var(--washi); padding: clamp(80px, 10vw, 140px) 0; position: relative; }
.bar::before { content: ""; position: absolute; inset: 0; background: radial-gradient(90% 60% at 50% 0%, rgba(199, 154, 82, .1), rgba(0,0,0,0) 60%); pointer-events: none; }
.bar .wrap { position: relative; }
.bar-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.bar-head .eyebrow { color: var(--kin-2); }
.bar-head h2 { color: var(--washi); }
.bar-head .lead { color: rgba(239, 230, 212, .88); margin-top: 20px; }
.cellar-cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: clamp(20px, 3vw, 36px); align-items: start; }
.cellar-col { border: 1px solid rgba(199, 154, 82, .3); border-radius: 8px; padding: clamp(24px, 2.6vw, 36px); background: rgba(239, 230, 212, .03); }
.cellar-col h3 { color: var(--kin-2); font-family: var(--sans); font-weight: 700; font-size: 12px; letter-spacing: .24em; text-transform: uppercase; margin-bottom: 18px; display: flex; flex-direction: column; gap: 8px; }
.cellar-col h3 .board-jp { color: var(--kin); font-size: clamp(30px, 2.8vw, 40px); text-transform: none; letter-spacing: .14em; }
.wine-list { list-style: none; margin: 0; padding: 0; }
.wine-list li { display: flex; align-items: baseline; gap: 12px; padding: 10px 0; border-bottom: 1px dashed rgba(199, 154, 82, .25); font-size: 15px; color: rgba(239, 230, 212, .94); }
.wine-list li span { flex: 1; }
.wine-list li span i { font-style: normal; font-size: .78em; letter-spacing: .08em; text-transform: uppercase; color: rgba(239, 230, 212, .5); }
.wine-list li b { font-family: var(--display); font-weight: 700; color: var(--kin-2); }
.wine-list li b::before { content: "$"; font-size: .7em; vertical-align: .15em; margin-right: 1px; opacity: .8; }
.bar .board-fine { color: rgba(239, 230, 212, .55); text-align: left; }

/* ---------- Visit ---------- */
.visit { background: var(--washi); background-image: var(--tatami); padding: clamp(80px, 10vw, 140px) 0; }
.visit-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 6vw, 96px); align-items: center; }
.visit-text .lead { margin: 22px 0 26px; }
.order-links { list-style: none; margin: 30px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.order-links a { display: inline-block; font: 700 12.5px/1 var(--sans); letter-spacing: .1em; text-transform: uppercase; color: var(--ink); border: 1px solid rgba(60, 42, 24, .4); border-radius: 2px; padding: 11px 16px; transition: background .25s ease; }
.order-links a:hover { background: rgba(60, 42, 24, .08); }
.hours-card { background: var(--sumi-2); border-radius: 14px; padding: clamp(14px, 2vw, 22px); box-shadow: var(--shadow); }
.hours-inner { background: var(--washi); border-radius: 6px; padding: clamp(24px, 2.8vw, 38px); box-shadow: inset 0 0 0 1px rgba(60, 42, 24, .14); }
.hours-title { font-family: var(--display); font-weight: 700; font-size: clamp(22px, 2.2vw, 30px); color: var(--ink); text-align: center; margin: 0 0 18px; line-height: 1.3; }
.hours-title span { color: var(--urushi); font-family: var(--jp); letter-spacing: .12em; margin-right: 10px; }
.hours-list { list-style: none; margin: 0 0 20px; padding: 0; }
.hours-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 10px 0; border-bottom: 1px dashed rgba(60, 42, 24, .28); font-family: var(--display); font-weight: 600; font-size: 18px; color: var(--ink); }
.hours-facts { list-style: none; margin: 0; padding: 16px 0 0; display: grid; gap: 14px; }
.hours-facts li { font-size: 15.5px; color: var(--ink); line-height: 1.45; }
.hours-facts strong { display: block; font: 700 11px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--urushi); margin-bottom: 5px; }
.hours-facts a { color: var(--ink); font-weight: 700; }

/* ---------- Private events ---------- */
.events { background: var(--sumi); color: var(--washi); padding: clamp(80px, 10vw, 140px) 0; }
.events-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 6vw, 96px); align-items: center; }
.events-photo { margin: 0; }
.events-photo img { border-radius: var(--radius); box-shadow: 0 30px 80px -30px rgba(0,0,0,.7); }
.events .eyebrow { color: var(--kin-2); }
.events h2 { color: var(--washi); }
.events .lead { color: rgba(239, 230, 212, .9); margin: 22px 0 26px; }
.events-note { margin-top: 22px; font-size: 15px; color: rgba(239, 230, 212, .7); }
.events-note a { color: var(--kin-2); font-weight: 700; }

/* ---------- Gallery strip ---------- */
.ig { background: var(--washi-2); padding: clamp(60px, 7vw, 100px) 0; }
.ig-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 26px; flex-wrap: wrap; }
.ig-head .eyebrow { margin: 0; }
.ig-handle { font-family: var(--display); font-weight: 700; font-size: clamp(19px, 2.4vw, 32px); color: var(--ink); }
.ig-strip { display: flex; gap: 14px; padding: 0 var(--gutter); overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.ig-strip::-webkit-scrollbar { display: none; }
.ig-strip a { flex: 0 0 auto; width: clamp(220px, 24vw, 320px); aspect-ratio: 4 / 3; border-radius: 10px; overflow: hidden; scroll-snap-align: start; box-shadow: var(--shadow); }
.ig-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.ig-strip a:hover img { transform: scale(1.04); }

/* ---------- Footer ---------- */
.footer { background: var(--sumi); color: var(--washi); }
.beltline-foot { border-top-color: var(--kin); }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: clamp(30px, 5vw, 70px); padding: clamp(56px, 7vw, 90px) 0 40px; }
.foot-word { font-family: var(--display); font-weight: 800; font-size: 28px; color: var(--washi); margin: 0; letter-spacing: .3em; }
.foot-brand > p:not(.foot-word):not(.foot-jp) { margin: 18px 0 0; max-width: 42ch; color: rgba(239, 230, 212, .75); font-size: 15px; }
.foot-jp { font-family: var(--jp); font-weight: 700; font-size: 22px; color: var(--kin); margin: 22px 0 0; line-height: 1; letter-spacing: .2em; }
.foot-col h3 { margin: 0 0 16px; font: 700 11.5px/1 var(--sans); letter-spacing: .22em; text-transform: uppercase; color: var(--kin-2); }
.foot-col a { display: block; padding: 6px 0; color: var(--washi); font-size: 15.5px; }
.foot-col a:hover { color: var(--kin-2); }
.foot-legal { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 22px 0 34px; border-top: 1px solid rgba(239, 230, 212, .12); font-size: 13px; color: rgba(239, 230, 212, .55); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .boards { grid-template-columns: 1fr; }
  .board-featured .menu-list.specialty { columns: 2; }
  .cellar-cols { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav { gap: 14px; }
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: block; }
  .brand { font-size: 18px; letter-spacing: .24em; }
  .story-grid, .visit-grid, .events-grid { grid-template-columns: 1fr; }
  .story-photo { max-width: 560px; order: -1; }
  .hours-card { transform: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
  .board-featured .menu-list.specialty { columns: 1; }

  /* Scrub overlays: pin copy to the bottom over a bottom shade so the subject stays visible */
  .reveal-line { max-width: none; left: var(--gutter); right: var(--gutter); }
  .reveal-line.ml, .reveal-line.mr { top: auto; bottom: 8vh; transform: none; text-align: left; }
  .reveal-line.mr .cta-row { justify-content: flex-start; }
  .reveal-line.center, .reveal-line.center.low { left: var(--gutter); right: var(--gutter); transform: none !important; top: auto; bottom: 8vh; text-align: left; max-width: none; }
  .hero-title { top: 13vh; max-width: none; }
  .hero-title h1 { font-size: clamp(40px, 11vw, 60px); }
  .hero-ctas, .hero-end { bottom: 7vh; max-width: none; }
  .hero-ctas .lead { margin: 0 0 16px; font-size: 15px; }
  .hero-mid { top: 13vh; text-align: left; }
  .hero-mid .mid-note, .hero-end .mid-note { margin-left: 0; }
  .stage-shade, .stage-shade.shade-warm { background: linear-gradient(180deg, rgba(15, 11, 8, .62) 0%, rgba(15, 11, 8, .2) 20%, rgba(15, 11, 8, 0) 36%),
                    linear-gradient(0deg, rgba(15, 11, 8, .88) 0%, rgba(15, 11, 8, .55) 26%, rgba(15, 11, 8, 0) 54%); }
  .display { font-size: clamp(32px, 9vw, 52px); }
  .jp { font-size: clamp(34px, 9vw, 54px); }
  .board-list { margin-left: 0; font-size: 15.5px; }
  .scroll-hint { display: none; }
  .scrub { height: 420vh; }
  .scrub.pour { height: 380vh; }
  .scrub.kingcrab { height: 380vh; }
  .scrub.date { height: 360vh; }
}
@media (max-width: 560px) {
  .facts { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .ig-strip a { width: 78vw; }
  .hours-list li { font-size: 16.5px; }
}
