:root {
  --paper: #f3efe6;
  --paper-deep: #e9e2d5;
  --ink: #29231f;
  --ink-soft: #5f5750;
  --accent: #9a583f;
  --line: rgba(41, 35, 31, .18);
  --serif: Georgia, "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
  --container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 15px; line-height: 2; font-weight: 400; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }
figure, h1, h2, h3, h4, p, blockquote { margin: 0; }
button { color: inherit; font: inherit; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 5px; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 1000; padding: 8px 14px; background: var(--ink); color: #fff; transform: translateY(-150%); }
.skip-link:focus { transform: none; }
.container { width: min(var(--container), calc(100% - 96px)); margin-inline: auto; }
.section-space { padding-block: clamp(120px, 13vw, 200px); }
.section-label { margin-bottom: 30px; color: var(--accent); font-size: 10px; line-height: 1.4; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; }
.section-label.light { color: rgba(255, 255, 255, .72); }
.display-heading { font-family: var(--serif); font-size: clamp(58px, 7vw, 104px); line-height: .98; font-weight: 400; letter-spacing: -.045em; }
.prose { max-width: 600px; color: var(--ink-soft); font-size: 15px; line-height: 2.25; }
.prose.large { font-size: 16px; }
.prose p + p { margin-top: 25px; }
.text-link { display: inline-flex; align-items: center; gap: 45px; margin-top: 42px; padding-bottom: 7px; border-bottom: 1px solid var(--ink); font-size: 10px; line-height: 1.4; font-weight: 600; letter-spacing: .18em; transition: color .25s, gap .25s; }
.text-link:hover { color: var(--accent); gap: 55px; }
.arrow-link { display: inline-flex; align-items: center; justify-content: space-between; gap: 55px; min-width: 220px; padding: 13px 0; border-bottom: 1px solid; font-size: 10px; line-height: 1.4; font-weight: 600; letter-spacing: .18em; }
.arrow-link i { font-family: var(--sans); font-size: 18px; font-style: normal; transition: transform .25s; }
.arrow-link:hover i { transform: translateX(7px); }
.arrow-link.light { color: #fff; }
.arrow-link, .text-link, .map-external-link { transition: color .25s, opacity .25s, gap .25s; }
.arrow-link:hover, .map-external-link:hover { color: var(--accent); }
.arrow-link.light:hover { color: #fff; opacity: .72; }
.mobile-link { display: none; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; height: 94px; display: flex; align-items: center; justify-content: space-between; padding: 0 clamp(32px, 5vw, 80px); border-bottom: 1px solid transparent; background: rgba(243, 239, 230, .92); backdrop-filter: blur(16px); transition: height .3s, border-color .3s; }
.site-header.is-scrolled { height: 76px; border-color: var(--line); }
.brand { display: flex; align-items: center; gap: 18px; }
.brand-ja { font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: 20px; letter-spacing: .18em; }
.brand-en { padding-left: 18px; border-left: 1px solid var(--line); color: var(--ink-soft); font-family: var(--serif); font-size: 9px; letter-spacing: .22em; }
.global-nav { display: flex; align-items: center; gap: clamp(30px, 3.2vw, 54px); }
.global-nav a { position: relative; padding: 10px 0; font-size: 10px; font-weight: 600; letter-spacing: .17em; }
.global-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 5px; height: 1px; background: var(--accent); transition: right .25s; }
.global-nav a:hover::after, .global-nav a[aria-current="page"]::after { right: 0; }
.nav-toggle { display: none; border: 0; background: none; padding: 8px 0; cursor: pointer; }

/* Hero */
.home-hero { position: relative; min-height: calc(100svh - 94px); display: grid; align-items: center; overflow: hidden; background: #4a3d32; }
.home-hero > img, .home-hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.home-hero > img { object-position: center; transform: scale(1.01); animation: hero-in 1.8s cubic-bezier(.2,.7,.2,1) both; }
.home-hero-shade { background: linear-gradient(90deg, rgba(26, 20, 16, .72) 0%, rgba(26, 20, 16, .33) 46%, rgba(26, 20, 16, .04) 78%); }
.home-hero-copy { position: relative; z-index: 1; width: min(720px, calc(100% - 96px)); margin-left: max(48px, calc((100% - var(--container)) / 2)); color: #fff; animation: copy-in 1s .25s ease both; }
.home-hero-copy h1 { font-family: var(--serif); font-size: clamp(66px, 8vw, 124px); line-height: .92; font-weight: 400; letter-spacing: -.055em; }
.hero-jp { margin: 38px 0 26px; color: rgba(255, 255, 255, .78); font-size: 14px; line-height: 2.15; }
.hero-scroll { position: absolute; z-index: 2; right: clamp(32px, 5vw, 80px); bottom: 0; display: flex; align-items: center; gap: 15px; color: rgba(255,255,255,.72); font-size: 8px; letter-spacing: .22em; writing-mode: vertical-rl; }
.hero-scroll span { display: block; width: 1px; height: 70px; background: rgba(255,255,255,.55); }
@keyframes hero-in { from { opacity: .35; transform: scale(1.06); } to { opacity: 1; transform: scale(1.01); } }
@keyframes copy-in { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* Home */
.split-intro, .story-section, .before-visit { display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: clamp(60px, 10vw, 170px); }
.split-intro .prose, .story-section .prose, .before-visit .prose { padding-top: 58px; }
.image-statement { position: relative; width: min(1460px, calc(100% - 64px)); height: min(72vw, 820px); min-height: 560px; margin-inline: auto; overflow: hidden; }
.image-statement::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(25,19,15,.07), rgba(25,19,15,.58)); }
.image-statement img { height: 100%; object-fit: cover; }
.image-statement > div { position: absolute; z-index: 1; right: 10%; top: 50%; transform: translateY(-50%); width: min(490px, 44%); color: #fff; }
.statement-copy { margin-bottom: 35px; font-family: var(--serif); font-size: clamp(58px, 6vw, 96px); line-height: .95; letter-spacing: -.045em; }
.image-statement > div > p:last-child { color: rgba(255,255,255,.76); }
.section-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 90px; }
.favorites-grid { display: grid; grid-template-columns: minmax(320px, .78fr) 1fr; gap: clamp(60px, 9vw, 140px); align-items: center; }
.favorite-image { height: 680px; overflow: hidden; }
.favorite-image img { height: 100%; object-fit: cover; }
.favorite-list { border-top: 1px solid var(--ink); }
.favorite-list article { display: grid; grid-template-columns: 32px 1fr auto; gap: 20px; align-items: center; padding: 34px 0; border-bottom: 1px solid var(--line); }
.favorite-list article > span { align-self: start; padding-top: 8px; color: var(--accent); font-family: var(--serif); font-size: 11px; }
.favorite-list h3 { font-family: var(--serif); font-size: 28px; line-height: 1.2; font-weight: 400; }
.favorite-list p { margin-top: 7px; color: var(--ink-soft); font-size: 12px; }
.favorite-list strong { font-family: var(--serif); font-size: 14px; font-weight: 400; }
.visit-band { padding: clamp(100px, 12vw, 170px) 0; background: var(--accent); color: #fff; }
.visit-band > .container > div { display: grid; grid-template-columns: 1fr auto auto; align-items: end; gap: 80px; }
.visit-band h2 { font-family: var(--serif); font-size: clamp(58px, 7vw, 100px); line-height: .95; font-weight: 400; letter-spacing: -.04em; }
.visit-band div > p { color: rgba(255,255,255,.75); font-size: 13px; }

/* Finished home page */
.home-about { display: grid; grid-template-columns: 1.15fr .85fr; grid-template-areas: "title title" "image copy"; gap: 85px clamp(60px, 8vw, 125px); align-items: end; }
.home-about-title { grid-area: title; }
.home-about-image { grid-area: image; overflow: hidden; background: var(--paper-deep); }
.home-about-image img { aspect-ratio: 3 / 2; object-fit: cover; }
.home-about-copy { grid-area: copy; padding-bottom: 8px; }
.home-about-lead { margin-bottom: 34px; font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(20px, 2.1vw, 29px); line-height: 1.75; letter-spacing: .05em; }
.home-menu { background: var(--paper-deep); }
.home-menu .section-head { align-items: end; }
.section-intro { color: var(--ink-soft); font-size: 13px; line-height: 2; }
.menu-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.menu-card { position: relative; min-width: 0; padding: 28px 30px 34px; overflow: hidden; border: 1px solid var(--line); background: var(--paper); transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease; }
.menu-card:hover { transform: translateY(-8px); border-color: rgba(41,35,31,.32); box-shadow: 0 18px 45px rgba(41,35,31,.08); }
.menu-card.featured { background: var(--accent); color: #fff; border-color: var(--accent); }
.menu-card-top { display: flex; justify-content: space-between; font-size: 8px; font-weight: 600; letter-spacing: .18em; }
.menu-card.featured .menu-card-top { color: rgba(255,255,255,.7); }
.menu-card-image { margin: 26px -2px 32px; overflow: hidden; background: var(--paper-deep); }
.menu-card-image img { display: block; width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.menu-card:hover .menu-card-image img { transform: scale(1.025); }
.menu-card-mark { position: absolute; top: 45%; left: 50%; color: rgba(154,88,63,.08); font-family: var(--serif); font-size: 260px; line-height: 1; transform: translate(-50%,-50%); pointer-events: none; }
.menu-card.featured .menu-card-mark { color: rgba(255,255,255,.08); }
.menu-card-body { position: relative; z-index: 1; }
.menu-card h3 { font-family: var(--serif); font-size: clamp(36px, 3.2vw, 50px); line-height: .98; font-weight: 400; letter-spacing: -.04em; }
.menu-card h4 { margin-top: 14px; font-size: 11px; font-weight: 500; letter-spacing: .08em; }
.menu-card-body > p { min-height: 96px; margin: 25px 0 38px; color: var(--ink-soft); font-size: 12px; line-height: 2; }
.menu-card.featured .menu-card-body > p { color: rgba(255,255,255,.72); }
.menu-card-price { display: flex; justify-content: space-between; align-items: end; padding-top: 18px; border-top: 1px solid var(--line); }
.menu-card.featured .menu-card-price { border-color: rgba(255,255,255,.25); }
.menu-card-price span { font-size: 8px; letter-spacing: .18em; }
.menu-card-price strong { font-family: var(--serif); font-size: 20px; font-weight: 400; }
.menu-card-footer { display: flex; justify-content: flex-end; }
.home-access { position: relative; min-height: 630px; display: grid; align-items: center; overflow: hidden; background: #2a2521; color: #fff; }
.home-access::before { content: ""; position: absolute; inset: 0; opacity: .16; background: linear-gradient(118deg, transparent 0 48%, rgba(255,255,255,.18) 48.1% 48.25%, transparent 48.35%), linear-gradient(28deg, transparent 0 58%, rgba(255,255,255,.1) 58.1% 58.25%, transparent 58.35%); }
.home-access-number { position: absolute; right: 4%; bottom: -26%; color: rgba(255,255,255,.035); font-family: var(--serif); font-size: min(58vw, 750px); line-height: 1; }
.home-access-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 90px; align-items: end; }
.home-access h2 { font-family: var(--serif); font-size: clamp(55px, 7vw, 100px); line-height: .97; font-weight: 400; letter-spacing: -.045em; }
.home-access-details { padding-bottom: 8px; }
.home-access-details > p { margin-bottom: 45px; color: rgba(255,255,255,.68); font-size: 12px; line-height: 2.1; }

/* Inner pages */
.page-hero { padding-top: clamp(110px, 13vw, 185px); padding-bottom: clamp(90px, 10vw, 145px); }
.page-hero h1 { margin-left: -.055em; font-family: var(--serif); font-size: clamp(100px, 16vw, 235px); line-height: .73; font-weight: 400; letter-spacing: -.075em; }
.page-hero > p:last-child { width: 440px; max-width: 100%; margin: 75px 0 0 auto; color: var(--ink-soft); line-height: 2.15; }
.wide-visual { height: min(66vw, 760px); overflow: hidden; }
.wide-visual img { height: 100%; object-fit: cover; object-position: center 62%; }
.menu-content { padding-top: clamp(130px, 14vw, 210px); }
.menu-category { display: grid; grid-template-columns: .72fr 1fr; gap: clamp(60px, 10vw, 155px); margin-bottom: 150px; }
.menu-category header { position: sticky; top: 120px; align-self: start; }
.menu-category h2 { font-family: var(--serif); font-size: clamp(60px, 6.5vw, 96px); line-height: .95; font-weight: 400; letter-spacing: -.05em; }
.menu-items { border-top: 1px solid var(--ink); }
.menu-items article { display: flex; justify-content: space-between; gap: 30px; padding: 29px 0; border-bottom: 1px solid var(--line); }
.menu-items h3 { font-family: var(--serif); font-size: 22px; line-height: 1.4; font-weight: 400; }
.menu-items h3 small { display: inline; margin-left: 12px; color: var(--ink-soft); font-family: var(--sans); font-size: 11px; }
.menu-items p { color: var(--ink-soft); font-size: 11px; }
.menu-items strong { white-space: nowrap; font-family: var(--serif); font-size: 14px; font-weight: 400; }
.menu-note { margin-left: auto; max-width: 620px; padding-top: 25px; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 10px; }
.story-visual { width: min(1460px, calc(100% - 64px)); height: min(66vw, 780px); margin-inline: auto; overflow: hidden; }
.story-visual img { height: 100%; object-fit: cover; }
.values-section { background: var(--paper-deep); }
.values-section > .container > .display-heading { margin-bottom: 100px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 55px; }
.values-grid article { padding-top: 25px; border-top: 1px solid var(--ink); }
.values-grid span { color: var(--accent); font-family: var(--serif); font-size: 11px; }
.values-grid h3 { margin-top: 55px; font-family: var(--serif); font-size: 28px; line-height: 1.2; font-weight: 400; }
.values-grid h4 { margin-top: 12px; font-size: 12px; font-weight: 500; letter-spacing: .08em; }
.values-grid p { margin-top: 24px; color: var(--ink-soft); font-size: 13px; line-height: 2; }
.quote-section { padding: clamp(120px, 14vw, 210px) 40px; background: var(--accent); color: #fff; text-align: center; }
.quote-section blockquote { font-family: var(--serif); font-size: clamp(44px, 6vw, 88px); line-height: 1.05; letter-spacing: -.045em; }
.quote-section > p:last-child { margin-top: 38px; color: rgba(255,255,255,.75); font-size: 12px; letter-spacing: .08em; }
.access-section { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(60px, 9vw, 140px); align-items: center; padding-bottom: clamp(120px, 14vw, 200px); }
.map-card { position: relative; aspect-ratio: 1.08; overflow: hidden; background: var(--paper-deep); border: 1px solid var(--line); }
.map-road { position: absolute; display: block; background: var(--paper); border: 1px solid rgba(41,35,31,.08); }
.road-one { width: 125%; height: 18%; left: -12%; top: 45%; transform: rotate(-9deg); }
.road-two { width: 15%; height: 130%; left: 26%; top: -15%; transform: rotate(4deg); }
.road-three { width: 12%; height: 90%; right: 20%; top: -5%; transform: rotate(-25deg); }
.map-north, .map-station, .map-park, .map-walk { position: absolute; z-index: 1; font-family: var(--serif); font-size: 9px; letter-spacing: .15em; }
.map-north { top: 7%; right: 7%; }
.map-station { left: 8%; bottom: 14%; padding: 6px 10px; background: var(--ink); color: #fff; }
.map-park { right: 7%; top: 16%; color: var(--accent); }
.map-walk { left: 46%; bottom: 28%; color: var(--ink-soft); transform: rotate(-9deg); }
.map-pin { position: absolute; z-index: 2; right: 24%; bottom: 22%; display: flex; align-items: center; gap: 12px; }
.map-pin b { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50% 50% 50% 0; background: var(--accent); color: #fff; font-family: var(--serif); font-size: 18px; font-weight: 400; transform: rotate(-45deg); }
.map-pin b::first-letter { transform: rotate(45deg); }
.map-pin small { padding: 4px 7px; background: var(--paper); font-size: 8px; letter-spacing: .12em; }
.access-details h2 { margin-bottom: 45px; font-family: "Yu Mincho", serif; font-size: 45px; font-weight: 400; letter-spacing: .13em; }
.access-details dl { margin: 0; border-top: 1px solid var(--ink); }
.access-details dl > div { display: grid; grid-template-columns: 100px 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.access-details dt { color: var(--accent); font-family: var(--serif); font-size: 9px; letter-spacing: .12em; }
.access-details dd { margin: 0; font-size: 13px; line-height: 1.8; }
.access-details dd span { color: var(--ink-soft); font-size: 11px; }
.demo-note { margin-top: 25px; color: var(--ink-soft); font-size: 9px; line-height: 1.7; }
.contact-band { padding: 110px 0; background: var(--accent); color: #fff; }
.contact-band > .container { display: grid; grid-template-columns: .4fr 1fr auto; align-items: end; gap: 60px; }
.contact-band h2 { font-family: var(--serif); font-size: clamp(48px, 5.4vw, 76px); line-height: 1; font-weight: 400; letter-spacing: -.04em; }

/* Menu catalog */
.menu-catalog { padding-top: clamp(120px, 13vw, 190px); }
.catalog-intro { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 85px; }
.catalog-intro > p { color: var(--ink-soft); font-size: 12px; }
.filter-bar { position: sticky; top: 76px; z-index: 20; display: grid; grid-template-columns: repeat(4, 1fr); margin-bottom: 125px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: rgba(243,239,230,.94); backdrop-filter: blur(12px); }
.filter-button { display: flex; justify-content: space-between; align-items: center; padding: 19px 22px; border: 0; border-right: 1px solid var(--line); background: transparent; font-size: 10px; font-weight: 600; letter-spacing: .16em; cursor: pointer; transition: color .2s, background .2s; }
.filter-button:last-child { border-right: 0; }
.filter-button span { color: var(--ink-soft); font-family: var(--serif); font-weight: 400; }
.filter-button:hover { color: var(--accent); }
.filter-button.is-active { background: var(--ink); color: #fff; }
.filter-button.is-active span { color: rgba(255,255,255,.55); }
.catalog-group { display: grid; grid-template-columns: .52fr 1fr; gap: clamp(60px, 9vw, 135px); padding-bottom: 145px; }
.catalog-group[hidden] { display: none; }
.catalog-group > header { align-self: start; }
.catalog-group > header h2 { font-family: var(--serif); font-size: clamp(60px, 7vw, 100px); line-height: .9; font-weight: 400; letter-spacing: -.05em; }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--ink); }
.product-item { min-width: 0; min-height: 245px; display: grid; grid-template-columns: 25px 1fr; grid-template-rows: 1fr auto; gap: 18px; padding: 28px 30px 24px 0; border-bottom: 1px solid var(--line); }
.product-item:nth-child(odd) { border-right: 1px solid var(--line); }
.product-item:nth-child(even) { padding-left: 30px; }
.product-item > span { color: var(--accent); font-family: var(--serif); font-size: 10px; }
.product-item h3 { font-family: var(--serif); font-size: 24px; line-height: 1.25; font-weight: 400; }
.product-item h3 small { display: block; margin-top: 7px; color: var(--ink-soft); font-family: var(--sans); font-size: 10px; font-weight: 500; letter-spacing: .06em; }
.product-item p { margin-top: 17px; color: var(--ink-soft); font-size: 11px; line-height: 1.9; }
.product-item strong { grid-column: 2; align-self: end; font-family: var(--serif); font-size: 16px; font-weight: 400; }
.product-item { transition: background-color .25s, transform .25s; }
.product-item:hover { background: rgba(154,88,63,.055); transform: translateY(-3px); }

/* Story and shop information */
.concept-section { display: grid; grid-template-columns: 1fr .86fr; gap: clamp(70px, 11vw, 175px); align-items: start; }
.concept-copy { padding-top: 65px; }
.concept-lead { margin-bottom: 35px; font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(21px, 2.3vw, 31px); line-height: 1.7; letter-spacing: .05em; }
.shop-info { display: grid; grid-template-columns: .6fr 1fr; gap: clamp(65px, 9vw, 135px); align-items: start; }
.shop-info-head { position: sticky; top: 115px; }
.shop-info-head .display-heading { font-size: clamp(55px, 6.4vw, 94px); }
.shop-info-head > p:last-child { margin-top: 35px; color: var(--ink-soft); font-size: 12px; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--ink); }
.info-grid > div { min-height: 260px; padding: 27px 25px 30px 0; border-bottom: 1px solid var(--line); }
.info-grid > div:nth-child(odd) { border-right: 1px solid var(--line); }
.info-grid > div:nth-child(even) { padding-left: 30px; }
.info-grid dt { color: var(--accent); font-size: 9px; font-weight: 600; letter-spacing: .18em; }
.info-grid dd { margin: 55px 0 0; }
.info-grid strong { display: block; font-family: var(--serif); font-size: clamp(33px, 3.2vw, 48px); line-height: 1; font-weight: 400; letter-spacing: -.035em; }
.info-grid span { display: block; margin-top: 25px; color: var(--ink-soft); font-size: 11px; line-height: 1.9; }
.info-grid > div { transition: background-color .25s, transform .25s; }
.info-grid > div:hover { background: rgba(154,88,63,.055); transform: translateY(-3px); }

/* Access and live map */
.place-info { display: grid; grid-template-columns: .55fr 1fr; gap: clamp(65px, 10vw, 150px); align-items: end; padding-bottom: clamp(120px, 13vw, 190px); }
.place-info-title h2 { font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(42px, 5vw, 68px); font-weight: 400; letter-spacing: .15em; }
.fiction-badge { display: inline-block; margin-top: 28px; padding: 6px 10px; border: 1px solid var(--accent); color: var(--accent); font-size: 8px; font-weight: 600; letter-spacing: .14em; }
.place-info-grid { display: grid; grid-template-columns: 1fr 1fr; margin: 0; border-top: 1px solid var(--ink); }
.place-info-grid > div { min-height: 155px; padding: 23px 25px 24px 0; border-bottom: 1px solid var(--line); }
.place-info-grid > div:nth-child(odd) { border-right: 1px solid var(--line); }
.place-info-grid > div:nth-child(even) { padding-left: 28px; }
.place-info-grid dt { color: var(--accent); font-family: var(--serif); font-size: 9px; letter-spacing: .14em; }
.place-info-grid dd { margin: 27px 0 0; font-size: 13px; line-height: 1.8; }
.place-info-grid dd span { color: var(--ink-soft); font-size: 11px; }
.map-section { background: var(--paper-deep); }
.map-section-head { display: flex; justify-content: space-between; align-items: end; gap: 60px; margin-bottom: 75px; }
.map-section-head > p { color: var(--ink-soft); font-size: 11px; line-height: 1.9; }
.osm-map { height: clamp(470px, 54vw, 700px); border: 1px solid var(--line); background: #ddd7ca; overflow: hidden; }
.osm-map iframe { display: block; width: 100%; height: 100%; border: 0; filter: sepia(.17) saturate(.72) contrast(.96); }
.map-external-link { display: flex; justify-content: space-between; align-items: center; padding: 19px 0 8px; border-bottom: 1px solid var(--ink); font-size: 9px; font-weight: 600; letter-spacing: .17em; }
.map-external-link span { font-size: 15px; transition: transform .2s; }
.map-external-link:hover span { transform: translate(3px,-3px); }
.fiction-note { margin-top: 70px; margin-bottom: 120px; padding: 35px 40px; border: 1px solid var(--line); display: grid; grid-template-columns: .3fr 1fr; gap: 40px; }
.fiction-note .section-label { margin: 0; }
.fiction-note > p:last-child { color: var(--ink-soft); font-size: 11px; line-height: 1.9; }

/* Footer */
.site-footer { padding: 100px 0 30px; background: #25211e; color: #f4efe5; }
.footer-main { display: grid; grid-template-columns: 1fr auto auto; gap: clamp(60px, 9vw, 140px); padding-bottom: 90px; }
.footer-brand { font-family: var(--serif); font-size: clamp(34px, 4vw, 54px); letter-spacing: -.03em; }
.footer-main > div:first-child p { margin-top: 18px; color: rgba(255,255,255,.55); font-size: 12px; }
.footer-main .section-label { margin-bottom: 25px; }
.footer-hours > p:last-child { font-family: var(--serif); font-size: 20px; line-height: 1.6; }
.footer-hours span { color: rgba(255,255,255,.5); font-family: var(--sans); font-size: 10px; letter-spacing: .08em; }
.footer-social { display: flex; flex-direction: column; align-items: start; }
.footer-social a { padding: 3px 0; font-family: var(--serif); font-size: 16px; border-bottom: 1px solid transparent; }
.footer-social a:hover { border-color: currentColor; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.42); font-size: 8px; letter-spacing: .17em; }

.reveal { opacity: 1; transform: none; }
.motion-ready .reveal { opacity: 0; transform: translateY(28px); transition: opacity .85s ease, transform .85s ease; }
.motion-ready .reveal.is-visible { opacity: 1; transform: none; }
.back-to-top { position: fixed; z-index: 90; right: clamp(18px, 3vw, 42px); bottom: clamp(18px, 3vw, 38px); width: 58px; height: 58px; display: grid; place-content: center; gap: 0; padding: 0; border: 1px solid rgba(243,239,230,.32); border-radius: 50%; background: var(--ink); color: var(--paper); box-shadow: 0 9px 30px rgba(41,35,31,.2); opacity: 0; visibility: hidden; transform: translateY(14px); cursor: pointer; transition: opacity .3s, visibility .3s, transform .3s, background-color .25s; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--accent); transform: translateY(-4px); }
.back-to-top span { font-family: var(--serif); font-size: 18px; line-height: 1; }
.back-to-top small { margin-top: 3px; font-size: 7px; font-weight: 600; letter-spacing: .14em; }

@media (max-width: 900px) {
  .container { width: min(100% - 48px, var(--container)); }
  .section-space { padding-block: 105px; }
  .site-header, .site-header.is-scrolled { height: 72px; padding-inline: 24px; }
  .brand-en { display: none; }
  .nav-toggle { position: relative; z-index: 102; display: flex; align-items: center; gap: 12px; }
  .nav-toggle-label { font-size: 9px; font-weight: 600; letter-spacing: .15em; }
  .nav-toggle-lines { width: 25px; }
  .nav-toggle-lines i { display: block; height: 1px; margin: 6px 0; background: currentColor; transition: transform .25s; }
  .nav-toggle.is-open .nav-toggle-lines i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open .nav-toggle-lines i:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open .nav-toggle-lines i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-open .site-header { background: var(--paper); border-color: var(--line); backdrop-filter: none; }
  .global-nav { position: fixed; inset: 72px 0 0; z-index: 101; height: calc(100dvh - 72px); display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; padding: 38px 28px max(40px, env(safe-area-inset-bottom)); overflow-y: auto; overscroll-behavior: contain; background: var(--paper); border-top: 1px solid var(--line); box-shadow: 0 22px 45px rgba(41,35,31,.14); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .3s, visibility .3s, transform .3s; }
  .global-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .global-nav a { width: 100%; display: flex; align-items: center; min-height: 82px; padding: 13px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: clamp(34px, 9vw, 56px); line-height: 1.05; font-weight: 400; letter-spacing: -.035em; }
  .global-nav a::after { bottom: -1px; }
  .nav-open .back-to-top { opacity: 0; visibility: hidden; }
  .home-hero { min-height: calc(100svh - 72px); }
  .home-hero-copy { width: calc(100% - 48px); margin-left: 24px; }
  .home-hero-copy h1 { font-size: clamp(56px, 15vw, 90px); }
  .hero-scroll { display: none; }
  .split-intro, .story-section, .before-visit { grid-template-columns: 1fr; gap: 45px; }
  .split-intro .prose, .story-section .prose, .before-visit .prose { padding-top: 0; }
  .display-heading { font-size: clamp(50px, 14vw, 80px); }
  .image-statement { width: 100%; min-height: 660px; height: 92svh; }
  .image-statement::after { background: linear-gradient(0deg, rgba(25,19,15,.68), rgba(25,19,15,.02) 75%); }
  .image-statement > div { right: 24px; left: 24px; top: auto; bottom: 55px; width: auto; transform: none; }
  .section-head { margin-bottom: 55px; }
  .desktop-link { display: none; }
  .mobile-link { display: inline-flex; }
  .favorites-grid { grid-template-columns: 1fr; gap: 55px; }
  .favorite-image { height: min(125vw, 650px); }
  .visit-band > .container > div { grid-template-columns: 1fr; gap: 40px; }
  .home-about { grid-template-columns: 1fr; grid-template-areas: "title" "image" "copy"; gap: 55px; }
  .home-about-image img { aspect-ratio: auto; object-fit: contain; }
  .section-intro { margin-top: 35px; }
  .menu-card-grid { grid-template-columns: 1fr; gap: 14px; }
  .menu-card-mark { font-size: 220px; }
  .home-access { min-height: 720px; }
  .home-access-inner { grid-template-columns: 1fr; gap: 70px; }
  .home-access-details { width: min(100%, 360px); }
  .page-hero { padding-top: 100px; padding-bottom: 85px; }
  .page-hero h1 { font-size: clamp(76px, 24vw, 130px); line-height: .8; }
  .page-hero > p:last-child { margin-top: 55px; }
  .wide-visual, .story-visual { width: 100%; height: 90svh; max-height: 760px; }
  .wide-visual img { object-position: center; }
  .menu-category { grid-template-columns: 1fr; gap: 55px; margin-bottom: 110px; }
  .menu-category header { position: static; }
  .values-grid { grid-template-columns: 1fr; gap: 60px; }
  .values-section > .container > .display-heading { margin-bottom: 70px; }
  .values-grid h3 { margin-top: 30px; }
  .access-section { grid-template-columns: 1fr; gap: 70px; padding-bottom: 110px; }
  .contact-band > .container { grid-template-columns: 1fr; align-items: start; gap: 30px; }
  .catalog-intro, .map-section-head { display: block; }
  .catalog-intro > p, .map-section-head > p { margin-top: 35px; }
  .filter-bar { position: static; top: auto; margin-bottom: 90px; overflow: visible; grid-template-columns: repeat(4, minmax(0, 1fr)); backdrop-filter: none; }
  .catalog-group, .concept-section, .shop-info, .place-info { grid-template-columns: 1fr; gap: 55px; }
  .product-grid, .info-grid, .place-info-grid { grid-template-columns: 1fr 1fr; }
  .shop-info-head { position: static; }
  .concept-copy { padding-top: 0; }
  .place-info { align-items: start; }
  .osm-map { height: 520px; }
  .fiction-note { grid-template-columns: 1fr; gap: 20px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > div:first-child { grid-column: 1 / -1; margin-bottom: 25px; }
}

@media (max-width: 520px) {
  body { font-size: 14px; }
  .home-hero-shade { background: linear-gradient(90deg, rgba(26,20,16,.67), rgba(26,20,16,.18)); }
  .home-hero > img { object-position: 62% center; }
  .hero-jp { font-size: 12px; }
  .home-about-lead { font-size: 20px; }
  .home-menu .section-head { display: block; }
  .menu-card { padding: 24px; }
  .menu-card-image { margin: 22px 0 28px; }
  .menu-card-image img { aspect-ratio: auto; object-fit: contain; }
  .menu-card-body > p { min-height: 0; }
  .home-access { min-height: 640px; }
  .home-access h2 { font-size: 49px; }
  .section-label { margin-bottom: 22px; }
  .favorite-list article { grid-template-columns: 24px 1fr auto; gap: 10px; padding: 27px 0; }
  .favorite-list h3 { font-size: 23px; }
  .favorite-list p { line-height: 1.7; }
  .menu-items h3 small { display: block; margin: 3px 0 0; }
  .map-card { aspect-ratio: .9; }
  .global-nav { padding-inline: 24px; }
  .global-nav a { min-height: 74px; font-size: clamp(32px, 10vw, 46px); }
  .filter-bar { width: 100%; margin-left: 0; padding-left: 0; grid-template-columns: 1fr 1fr; border: 1px solid var(--ink); }
  .filter-button { min-height: 52px; padding: 13px 15px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .filter-button:nth-child(2) { border-right: 0; }
  .filter-button:nth-child(3), .filter-button:nth-child(4) { border-bottom: 0; }
  .product-grid, .info-grid, .place-info-grid { grid-template-columns: 1fr; }
  .product-item { min-height: 210px; padding-right: 0; }
  .product-item:nth-child(odd) { border-right: 0; }
  .product-item:nth-child(even) { padding-left: 0; }
  .info-grid > div { min-height: 225px; padding-right: 0; }
  .info-grid > div:nth-child(odd), .place-info-grid > div:nth-child(odd) { border-right: 0; }
  .info-grid > div:nth-child(even), .place-info-grid > div:nth-child(even) { padding-left: 0; }
  .place-info-grid > div { min-height: 135px; }
  .osm-map { height: 58vh; min-height: 390px; max-height: 520px; }
  .fiction-note { width: calc(100% - 48px); margin-block: 48px 90px; padding: 25px; }
  .back-to-top { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .map-walk { display: none; }
  .access-details dl > div { grid-template-columns: 80px 1fr; }
  .quote-section { padding-inline: 24px; }
  .footer-main { grid-template-columns: 1fr; gap: 50px; }
  .footer-main > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

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