:root {
  --ink: #17110d;
  --ink-soft: #241b15;
  --smoke: #2b2521;
  --paper: #f2ede4;
  --paper-bright: #fbf8f2;
  --muted: #8b8077;
  --line: rgba(23, 17, 13, 0.18);
  --line-light: rgba(255, 255, 255, 0.2);
  --accent: #a33b27;
  --gold: #c7a169;
  --serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --shell: min(1240px, calc(100vw - 72px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-bright);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 18px;
  background: white;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.section { position: relative; padding: 140px 0; }
.section-shell { width: var(--shell); margin-inline: auto; }
.section--ink { color: white; background: var(--ink); }
.section--smoke { color: white; background: var(--smoke); }
.section--paper { background: var(--paper); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 96px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  border-bottom: 1px solid transparent;
  transition: height .35s ease, background .35s ease, border-color .35s ease, color .35s ease;
}
.site-header.is-scrolled {
  height: 76px;
  color: var(--ink);
  background: rgba(251, 248, 242, 0.94);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}
.site-logo { display: flex; flex-direction: column; line-height: 1; }
.site-logo__small { margin-bottom: 7px; font-size: 9px; letter-spacing: .3em; }
.site-logo__name { font-family: var(--serif); font-size: 28px; font-weight: 600; letter-spacing: .14em; }
.global-nav { display: flex; align-items: center; gap: 30px; font-size: 12px; letter-spacing: .08em; }
.global-nav > a:not(.global-nav__reserve) { position: relative; }
.global-nav > a:not(.global-nav__reserve)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}
.global-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }
.global-nav__reserve { padding: 13px 22px; color: white; background: var(--accent); }
.menu-toggle { display: none; }

.hero { min-height: 100svh; color: white; background: var(--ink); overflow: hidden; }
.hero__media, .hero__shade, .hero__grain { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 51%; animation: hero-in 1.6s cubic-bezier(.22,1,.36,1) both; }
.hero__shade { background: linear-gradient(90deg, rgba(14,9,6,.88) 0%, rgba(14,9,6,.52) 43%, rgba(14,9,6,.18) 74%), linear-gradient(0deg, rgba(14,9,6,.82), transparent 42%); }
.hero__grain { opacity: .11; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E"); pointer-events: none; }
.hero__content { position: relative; z-index: 2; width: min(930px, calc(100vw - 120px)); padding: 190px 0 180px 9vw; }
.eyebrow, .section-number { margin: 0 0 26px; font-size: 10px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; }
.eyebrow { color: rgba(255,255,255,.72); }
.hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(48px, 5.2vw, 84px); font-weight: 500; line-height: 1.34; letter-spacing: .04em; }
.hero h1 em { display: inline-block; color: #f3dcc2; font-style: normal; white-space: nowrap; }
.hero__lead { margin: 28px 0 0; color: rgba(255,255,255,.82); font-family: var(--serif); font-size: 16px; letter-spacing: .06em; }
.hero__actions { display: flex; align-items: center; gap: 30px; margin-top: 44px; }

.button { min-width: 210px; min-height: 58px; padding: 16px 24px; display: inline-flex; align-items: center; justify-content: space-between; gap: 26px; border: 1px solid transparent; font-size: 12px; font-weight: 600; letter-spacing: .12em; transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s ease; }
.button:hover { transform: translateY(-3px); }
.button--light { color: var(--ink); background: white; }
.button--light:hover { background: #f3dcc2; }
.button--dark { color: white; background: var(--ink); }
.button--dark:hover { background: var(--accent); }
.button--outline-light { color: white; border-color: rgba(255,255,255,.48); }
.button--outline-light:hover { color: var(--ink); background: white; border-color: white; }
.text-link { display: inline-flex; align-items: center; gap: 16px; padding-bottom: 6px; border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 600; letter-spacing: .08em; }
.text-link--light { color: white; }

.hero__facts {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(190px, 1fr));
  width: min(690px, 58vw);
  background: rgba(18,13,10,.72);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}
.hero__facts div { min-height: 96px; padding: 21px 25px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line-light); }
.hero__facts span { color: var(--gold); font-size: 8px; letter-spacing: .24em; }
.hero__facts strong { margin-top: 7px; font-family: var(--serif); font-size: 13px; font-weight: 500; }
.scroll-cue { position: absolute; z-index: 2; bottom: 25px; left: 30px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.scroll-cue span { font-size: 8px; letter-spacing: .2em; writing-mode: vertical-rl; }
.scroll-cue i { width: 1px; height: 55px; background: linear-gradient(white 50%, rgba(255,255,255,.2) 50%); background-size: 100% 200%; animation: scroll-line 2s linear infinite; }

.section-head { margin-bottom: 72px; display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; }
.section-head > p { margin: 0; color: var(--muted); font-family: var(--serif); font-size: 14px; }
.section-head--light > p { color: rgba(255,255,255,.58); }
.section-number { color: var(--accent); }
.section-head--light .section-number { color: var(--gold); }
.section h2 { margin: 0; font-family: var(--serif); font-size: clamp(38px, 4.3vw, 64px); font-weight: 500; line-height: 1.45; letter-spacing: .04em; }

.story { padding: 170px 0 190px; overflow: hidden; }
.story__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 10vw; }
.story__heading h2 { font-size: clamp(38px, 4.4vw, 68px); }
.story__copy { max-width: 490px; padding-top: 84px; }
.story__copy p { margin: 0 0 24px; font-family: var(--serif); font-size: 16px; line-height: 2.25; }
.story__copy .text-link { margin-top: 22px; }
.story__kanji { position: absolute; right: -40px; bottom: -230px; margin: 0; color: rgba(162, 59, 39, .045); font-family: var(--serif); font-size: 360px; font-weight: 700; letter-spacing: -.16em; white-space: nowrap; pointer-events: none; }

.signature-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px 34px; align-items: start; }
.signature-card { position: relative; }
.signature-card picture { display: block; overflow: hidden; }
.signature-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .8s cubic-bezier(.22,1,.36,1); }
.signature-card:hover img { transform: scale(1.035); }
.signature-card--large { grid-row: span 2; }
.signature-card--large img { aspect-ratio: 4 / 5; }
.signature-card--wide { grid-column: 2; }
.signature-card__body { padding: 25px 2px 0; display: grid; grid-template-columns: 38px 1fr auto; gap: 8px 16px; }
.signature-card__body > span { grid-row: 1 / span 3; color: var(--gold); font-size: 10px; letter-spacing: .16em; }
.signature-card__body h3 { margin: -5px 0 0; font-family: var(--serif); font-size: 25px; font-weight: 500; }
.signature-card__body p { grid-column: 2 / -1; max-width: 520px; margin: 0; color: rgba(255,255,255,.58); font-size: 13px; }
.signature-card__body strong { grid-column: 3; grid-row: 1; font-family: var(--serif); font-size: 20px; font-weight: 500; }
.signature-card__body small { font-size: 9px; font-weight: 400; }
.food__more { margin-top: 82px; text-align: center; }

.menu-picks { background: var(--paper-bright); }
.menu-list { border-top: 1px solid var(--line); }
.menu-item { min-height: 84px; display: flex; align-items: center; gap: 28px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 18px; }
.menu-item span { flex: 0 1 auto; }
.menu-item small { margin-left: 12px; color: var(--muted); font-family: var(--sans); font-size: 10px; }
.menu-item i { flex: 1; height: 1px; background-image: linear-gradient(to right, rgba(23,17,13,.25) 45%, transparent 45%); background-size: 8px 1px; }
.menu-item strong { min-width: 90px; text-align: right; font-weight: 500; }
.menu-note { margin: 22px 0 0; color: var(--muted); font-size: 10px; text-align: right; }

.course { padding: 0; display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); background: var(--paper); }
.course__image { min-height: 900px; overflow: hidden; }
.course__image picture, .course__image img { width: 100%; height: 100%; }
.course__image img { object-fit: cover; }
.course__content { padding: 130px clamp(50px, 7vw, 130px); align-self: center; }
.course__lead { max-width: 630px; margin: 34px 0 50px; font-family: var(--serif); font-size: 15px; line-height: 2.1; }
.course-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.course-card { min-height: 240px; padding: 30px; background: white; border: 1px solid var(--line); }
.course-card--accent { color: white; background: var(--accent); border-color: var(--accent); }
.course-card p { margin: 0 0 16px; color: var(--muted); font-size: 9px; letter-spacing: .18em; }
.course-card--accent p { color: rgba(255,255,255,.66); }
.course-card h3 { min-height: 68px; margin: 0; font-family: var(--serif); font-size: 19px; font-weight: 500; }
.course-card div { display: flex; align-items: baseline; gap: 7px; }
.course-card div strong { font-family: var(--serif); font-size: 30px; font-weight: 500; }
.course-card div span { font-size: 10px; }
.course-card small { display: block; margin-top: 18px; opacity: .7; font-size: 9px; }
.course__actions { margin-top: 34px; display: flex; align-items: center; gap: 28px; }
.course__actions p { margin: 0; font-size: 11px; }
.course__actions p strong { display: block; font-family: var(--serif); font-size: 18px; }

.gallery { overflow: hidden; }
.gallery-track { display: flex; gap: 18px; padding: 0 max(36px, calc((100vw - 1240px) / 2)); overflow-x: auto; scrollbar-width: thin; scrollbar-color: var(--gold) rgba(255,255,255,.12); scroll-snap-type: x proximity; }
.gallery-track::-webkit-scrollbar { height: 4px; }
.gallery-track::-webkit-scrollbar-track { background: rgba(255,255,255,.12); }
.gallery-track::-webkit-scrollbar-thumb { background: var(--gold); }
.gallery-track figure { flex: 0 0 clamp(280px, 29vw, 420px); margin: 0; padding-bottom: 28px; scroll-snap-align: start; overflow: hidden; }
.gallery-track figure:nth-child(even) { margin-top: 58px; }
.gallery-track img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .7s ease, filter .7s ease; }
.gallery-track figure:hover img { transform: scale(1.03); filter: saturate(1.08); }

.space-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 32px; align-items: end; }
.space-card { position: relative; margin: 0; overflow: hidden; }
.space-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform .8s ease; }
.space-card--primary img { aspect-ratio: 4 / 3.5; }
.space-card:hover img { transform: scale(1.025); }
.space-card::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(14,9,6,.8)); pointer-events: none; }
.space-card figcaption { position: absolute; z-index: 2; right: 28px; bottom: 25px; left: 28px; color: white; }
.space-card figcaption span { display: block; color: var(--gold); font-size: 9px; letter-spacing: .2em; }
.space-card figcaption strong { display: block; margin-top: 8px; font-family: var(--serif); font-size: 20px; font-weight: 500; }
.space-facts { margin: 68px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.space-facts li { min-height: 118px; padding: 24px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.space-facts li:last-child { border-right: 0; }
.space-facts span { color: var(--muted); font-size: 9px; letter-spacing: .14em; }
.space-facts strong { margin-top: 9px; font-family: var(--serif); font-size: 14px; font-weight: 500; }

.access__grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 9vw; align-items: center; }
.access__content h2 em { color: var(--accent); font-size: 1.3em; font-style: normal; }
.access-list { margin: 50px 0 0; border-top: 1px solid var(--line); }
.access-list div { padding: 18px 0; display: grid; grid-template-columns: 110px 1fr; border-bottom: 1px solid var(--line); }
.access-list dt { color: var(--muted); font-size: 10px; letter-spacing: .12em; }
.access-list dd { margin: 0; font-family: var(--serif); font-size: 14px; line-height: 1.8; }
.access-list dd small { color: var(--muted); font-family: var(--sans); font-size: 10px; }
.access__buttons { margin-top: 38px; display: flex; align-items: center; gap: 28px; }
.access__map { height: 700px; padding: 16px; background: #ded6c9; }
.access__map iframe { width: 100%; height: 100%; border: 0; filter: saturate(.65) sepia(.18) contrast(.95); }

.closing-cta { position: relative; min-height: 600px; color: white; display: grid; place-items: center; overflow: hidden; }
.closing-cta__media, .closing-cta__shade { position: absolute; inset: 0; }
.closing-cta__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.15); filter: saturate(.75); }
.closing-cta__shade { background: rgba(18,13,10,.7); }
.closing-cta__content { position: relative; z-index: 1; text-align: center; }
.closing-cta__content p { margin: 0 0 20px; color: var(--gold); font-size: 9px; letter-spacing: .28em; }
.closing-cta__content h2 { margin-bottom: 40px; }

.site-footer { padding: 90px 0 70px; color: white; background: var(--ink); }
.site-footer__grid { display: grid; grid-template-columns: 1fr auto; gap: 70px; }
.footer-logo { margin: 0 0 24px; display: flex; flex-direction: column; line-height: 1.1; }
.footer-logo small { margin-bottom: 8px; font-size: 9px; letter-spacing: .28em; }
.footer-logo strong { font-family: var(--serif); font-size: 34px; font-weight: 500; letter-spacing: .12em; }
.site-footer__grid > div:first-child > p:last-child { color: rgba(255,255,255,.48); font-family: var(--serif); font-size: 12px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; font-size: 12px; letter-spacing: .08em; }
.copyright { grid-column: 1 / -1; margin: 30px 0 0; padding-top: 28px; color: rgba(255,255,255,.35); border-top: 1px solid var(--line-light); font-size: 9px; letter-spacing: .12em; }
.mobile-actions { display: none; }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1); }
.reveal--delay { transition-delay: .13s; }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes hero-in { from { opacity: 0; transform: scale(1.06); } to { opacity: 1; transform: scale(1); } }
@keyframes scroll-line { from { background-position: 0 -100%; } to { background-position: 0 100%; } }

@media (max-width: 1080px) {
  :root { --shell: min(100% - 52px, 920px); }
  .site-header { padding-inline: 28px; }
  .global-nav { gap: 18px; }
  .global-nav > a:not(.global-nav__reserve) { display: none; }
  .hero__content { padding-left: 7vw; }
  .story__grid { gap: 7vw; }
  .signature-grid { gap: 55px 24px; }
  .course { grid-template-columns: .75fr 1.25fr; }
  .course__content { padding: 100px 50px; }
  .course-cards { grid-template-columns: 1fr; }
  .course-card { min-height: 210px; }
  .space-facts { grid-template-columns: repeat(2, 1fr); }
  .space-facts li:nth-child(2) { border-right: 0; }
  .space-facts li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .access__grid { gap: 50px; }
  .access__map { height: 600px; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100vw - 40px); }
  body { padding-bottom: 58px; font-size: 14px; }
  .section { padding: 92px 0; }
  .site-header, .site-header.is-scrolled { height: 70px; padding-inline: 20px; }
  .site-logo__small { font-size: 7px; }
  .site-logo__name { font-size: 23px; }
  .menu-toggle { position: relative; z-index: 2; width: 44px; height: 44px; padding: 10px; display: flex; flex-direction: column; justify-content: center; gap: 6px; background: transparent; border: 0; }
  .menu-toggle span { width: 100%; height: 1px; background: currentColor; transition: transform .3s ease, opacity .3s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .global-nav { position: fixed; inset: 0; padding: 110px 28px 90px; display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 0; color: white; background: var(--ink); visibility: hidden; opacity: 0; transform: translateY(-16px); transition: opacity .3s ease, transform .3s ease, visibility .3s; }
  .global-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .global-nav > a:not(.global-nav__reserve) { display: block; padding: 17px 0; border-bottom: 1px solid var(--line-light); font-family: var(--serif); font-size: 18px; }
  .global-nav__reserve { margin-top: 30px; padding: 18px; text-align: center; }
  .hero { min-height: 810px; }
  .hero__media img { object-position: 59% center; }
  .hero__shade { background: linear-gradient(0deg, rgba(14,9,6,.92) 0%, rgba(14,9,6,.42) 75%), linear-gradient(90deg, rgba(14,9,6,.55), transparent); }
  .hero__content { width: auto; padding: 170px 20px 235px; }
  .hero h1 { font-size: clamp(38px, 10.5vw, 48px); line-height: 1.38; }
  .hero h1 em { white-space: normal; }
  .hero h1 em span { display: block; }
  .hero__lead { font-size: 13px; }
  .hero__actions { align-items: stretch; flex-direction: column; gap: 20px; margin-top: 34px; }
  .hero__actions .button { width: 100%; }
  .hero__actions .text-link { align-self: flex-start; }
  .hero__facts { width: 100%; grid-template-columns: repeat(3, 1fr); }
  .hero__facts div { min-height: 84px; padding: 14px 10px; }
  .hero__facts span { font-size: 6px; }
  .hero__facts strong { font-size: 9px; line-height: 1.5; }
  .scroll-cue { display: none; }
  .section-head { margin-bottom: 46px; align-items: flex-start; flex-direction: column; gap: 20px; }
  .section-head > p { font-size: 12px; }
  .section h2 { font-size: clamp(32px, 9vw, 46px); }
  .section-number { margin-bottom: 16px; }
  .story { padding: 100px 0 120px; }
  .story__grid { grid-template-columns: 1fr; gap: 30px; }
  .story__copy { padding-top: 0; }
  .story__copy p { font-size: 14px; line-height: 2.15; }
  .story__kanji { right: -40px; bottom: -95px; font-size: 170px; }
  .signature-grid { grid-template-columns: 1fr; gap: 56px; }
  .signature-card--large, .signature-card--wide { grid-column: auto; grid-row: auto; }
  .signature-card--large img { aspect-ratio: 1 / 1; }
  .signature-card__body { grid-template-columns: 28px 1fr auto; }
  .signature-card__body h3 { font-size: 21px; }
  .food__more { margin-top: 60px; }
  .menu-item { min-height: 70px; gap: 12px; font-size: 14px; }
  .menu-item small { display: block; margin-left: 0; }
  .menu-item strong { min-width: 66px; }
  .menu-note { text-align: left; }
  .course { grid-template-columns: 1fr; }
  .course__image { min-height: 410px; }
  .course__content { padding: 84px 20px; }
  .course__lead { font-size: 13px; }
  .course-card { min-height: 195px; padding: 25px; }
  .course__actions { align-items: stretch; flex-direction: column; }
  .course__actions .button { width: 100%; }
  .gallery-track { gap: 12px; padding-inline: 20px; }
  .gallery-track figure { flex-basis: 76vw; }
  .gallery-track figure:nth-child(even) { margin-top: 34px; }
  .space-grid { grid-template-columns: 1fr; gap: 18px; }
  .space-card--primary img, .space-card img { aspect-ratio: 4 / 3.5; }
  .space-facts { margin-top: 40px; grid-template-columns: 1fr; }
  .space-facts li, .space-facts li:nth-child(2) { min-height: 86px; border-right: 0; border-bottom: 1px solid var(--line); }
  .space-facts li:last-child { border-bottom: 0; }
  .access__grid { grid-template-columns: 1fr; }
  .access-list div { grid-template-columns: 88px 1fr; }
  .access__buttons { align-items: stretch; flex-direction: column; }
  .access__buttons .button { width: 100%; }
  .access__map { height: 430px; padding: 8px; }
  .closing-cta { min-height: 520px; }
  .site-footer { padding: 75px 0 50px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .copyright { grid-column: auto; margin-top: 0; }
  .mobile-actions { position: fixed; z-index: 110; right: 0; bottom: 0; left: 0; height: 58px; display: grid; grid-template-columns: .75fr 1.25fr; color: white; background: var(--ink); box-shadow: 0 -8px 30px rgba(0,0,0,.16); }
  .mobile-actions a { display: grid; place-items: center; font-size: 11px; font-weight: 600; letter-spacing: .1em; }
  .mobile-actions a:first-child { border-right: 1px solid var(--line-light); }
  .mobile-actions a:last-child { background: var(--accent); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
