/* Shared visual system: warm neutrals + one muted terracotta accent. */
[hidden] { display: none !important; }
.menu-controls { padding-top: 36px; }
.category-filters { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.category-filters button { font: inherit; font-size: 14px; min-height: 48px; padding: 10px 28px; border: 1px solid var(--line); color: var(--ink); background: transparent; cursor: pointer; }
.category-filters button:hover { border-color: var(--accent); }
.category-filters button[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: var(--paper); }
.concept-photo img { height: auto; object-fit: contain; }
.facilities { border-top: 1px solid var(--line); }
.facility-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-block: 48px 28px; }
.facility-grid article { padding: 32px; border: 1px solid var(--line); }
.facility-grid h3 { margin-bottom: 16px; font-size: 24px; }
.facility-grid article > p:last-child { color: var(--muted); }
.demo-notice { border-left: 2px solid var(--accent); padding: 16px 20px; background: #eee8de; margin-block: 26px; color: var(--muted); font-size: 14px; line-height: 1.9; }
.map-section { padding-bottom: 100px; }
.osm-map { display: block; width: 100%; height: 480px; border: 1px solid var(--line); background: #eee8de; }
.map-links { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-block: 18px; font-size: 14px; }
.map-links a { text-decoration: underline; text-underline-offset: 5px; }
@media (max-width: 700px) {
  .facility-grid { grid-template-columns: 1fr; }
  .category-filters button { flex: 1 1 40%; }
  .osm-map { height: 380px; }
  .map-section { padding-bottom: 65px; }
}
:root {
  --paper: #f7f4ed;
  --ink: #302923;
  --muted: #74675d;
  --accent: #99624b;
  --line: #d9d0c4;
  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 16px; line-height: 2; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
a, button { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 6px; }
::selection { background: #dfc7b7; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
figure, h1, h2, h3, p { margin: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; line-height: 1.05; letter-spacing: -.045em; }
h2 { font-size: clamp(44px, 5.1vw, 76px); }
h3 { font-size: 19px; font-weight: 500; line-height: 1.8; }
em { font-weight: 400; color: var(--accent); }
.accent { color: var(--accent); }
.wrap { width: min(1280px, 88%); margin-inline: auto; }
.section { padding-block: 120px; }
.eyebrow { color: var(--accent); font-size: 12px; font-weight: 600; letter-spacing: .2em; line-height: 1.6; margin-bottom: 28px; }
.skip-link { position: fixed; top: -100px; left: 20px; padding: 10px 20px; background: var(--ink); color: var(--paper); z-index: 100; }
.skip-link:focus { top: 10px; }
.site-header { width: 88%; max-width: 1280px; min-height: 112px; margin: auto; display: flex; justify-content: space-between; align-items: center; gap: 24px; border-bottom: 1px solid var(--line); position: relative; z-index: 10; }
.brand { font-family: var(--serif); font-size: 34px; letter-spacing: -.035em; line-height: 1; display: inline-block; }
.brand-small { display: block; font-family: var(--sans); font-size: 10px; font-weight: 500; letter-spacing: .3em; line-height: 1.8; margin-bottom: 3px; }
.brand-dot { color: var(--accent); }
.site-nav { display: flex; gap: clamp(20px, 3vw, 46px); }
.site-nav a { font-size: 12px; letter-spacing: .12em; padding-block: 12px; position: relative; }
.site-nav a::after { content: ""; position: absolute; height: 1px; bottom: 6px; left: 0; width: 0; background: var(--accent); transition: width .2s; }
.site-nav a:hover::after, .site-nav a[aria-current]::after { width: 100%; }
.site-nav a[aria-current] { color: var(--accent); }
.nav-toggle { display: none; }
.hero { display: grid; grid-template-columns: 1.1fr 1fr; gap: 6%; align-items: center; padding-block: 62px 56px; }
.hero h1 { font-size: clamp(56px, 6.3vw, 94px); margin-bottom: 34px; }
.hero-jp { font-size: 21px; letter-spacing: .09em; margin-bottom: 18px; }
.hero-copy > p:not(.eyebrow):not(.hero-jp) { color: var(--muted); font-size: 15px; line-height: 2.2; }
.hero-photo { height: clamp(420px, 42vw, 600px); position: relative; padding-bottom: 26px; }
.hero-photo img, .story-photo img { filter: saturate(.55); }
figcaption { font-size: 10px; letter-spacing: .15em; color: var(--muted); padding-top: 10px; }
.text-link { display: inline-flex; gap: 48px; align-items: center; border-bottom: 1px solid var(--accent); padding: 12px 0; margin-top: 26px; font-size: 14px; }
.text-link span, .social-link span { color: var(--accent); transition: transform .2s; }
.text-link:hover span, .social-link:hover span { transform: translate(3px, -3px); }
.text-link:hover { color: var(--accent); }
.visit-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 19px 0; display: flex; justify-content: space-between; font-size: 14px; letter-spacing: .03em; }
.visit-strip small { margin-left: 22px; color: var(--muted); font-size: 12px; }
.visit-strip a:hover { color: var(--accent); }
.story-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 10%; align-items: start; }
.prose h3 { margin-bottom: 26px; }
.prose p:not(.eyebrow) { margin-bottom: 22px; line-height: 2.2; color: var(--muted); }
.prose h2 { margin-bottom: 35px; }
.values { border-top: 1px solid var(--line); }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6%; margin-top: 64px; }
.principles article { border-top: 1px solid var(--line); padding-top: 25px; }
.number { color: var(--accent); font-family: var(--serif); font-size: 20px; }
.principles h3 { margin: 20px 0 14px; }
.principles p { color: var(--muted); font-size: 15px; }
.visit-section { border-top: 1px solid var(--line); text-align: center; padding-block: 110px 130px; }
.visit-section h2 { font-size: clamp(64px, 8vw, 112px); margin-bottom: 25px; }
.visit-section p:not(.eyebrow) { color: var(--muted); }
.site-footer { background: #eee8de; padding: 72px 6% 24px; }
.footer-main, .footer-bottom { max-width: 1280px; margin: auto; }
.footer-main { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 55px; padding-bottom: 65px; }
.footer-brand { font-size: 43px; margin-bottom: 25px; }
.footer-main p { font-size: 13px; color: var(--muted); }
.footer-main .eyebrow { font-size: 11px; color: var(--accent); margin-bottom: 20px; }
.footer-main .footer-hours { font-family: var(--serif); color: var(--ink); font-size: 30px; line-height: 1.5; margin-bottom: 8px; }
.social-link { display: inline-flex; align-items: center; gap: 45px; font-family: var(--serif); font-size: 24px; border-bottom: 1px solid var(--line); padding-bottom: 9px; margin-bottom: 12px; }
.footer-main .fine-print, .fine-print { font-size: 12px; line-height: 1.8; color: var(--muted); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 22px; display: flex; justify-content: space-between; gap: 18px; font-size: 12px; color: var(--muted); }
.page-heading { padding-block: 92px 86px; border-bottom: 1px solid var(--line); }
.page-heading h1 { font-size: clamp(60px, 7.8vw, 112px); max-width: 1100px; margin-bottom: 30px; }
.page-heading > p:last-child { color: var(--muted); letter-spacing: .04em; }
.menu-section { display: grid; grid-template-columns: .85fr 1.5fr; gap: 10%; border-bottom: 1px solid var(--line); padding-block: 90px; }
.menu-heading > p:last-child { color: var(--muted); font-size: 14px; margin-top: 26px; }
.menu-list { padding: 0; margin: 0; list-style: none; }
.menu-list li { display: flex; justify-content: space-between; gap: 28px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.menu-list li:first-child { padding-top: 0; }
.menu-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.menu-list h3 { font-size: 17px; margin-bottom: 7px; }
.menu-list p { color: var(--muted); font-size: 14px; }
.menu-list li > span { font-family: var(--serif); font-size: 24px; white-space: nowrap; }
.menu-note { padding-block: 35px 90px; color: var(--muted); font-size: 13px; }
.story-layout { display: grid; grid-template-columns: .9fr 1fr; gap: 10%; align-items: center; }
.story-photo { height: 580px; padding-bottom: 28px; }
.story-layout h2 { font-size: clamp(40px, 4.1vw, 61px); }
.access-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 12%; }
.access-layout h2 { font-size: clamp(40px, 4.1vw, 62px); }
.directions { margin-block: 45px 25px; padding: 32px; border: 1px solid var(--line); display: grid; grid-template-columns: 35px 1fr; column-gap: 16px; align-items: center; }
.walk-line { height: 50px; width: 1px; background: var(--accent); margin-left: 10px; }
.walk-label { font-size: 13px; color: var(--muted); }
.shop-info h3 { font-family: var(--serif); font-size: 35px; font-weight: 400; margin-bottom: 25px; }
dl { margin: 0; display: grid; grid-template-columns: 90px 1fr; }
dt, dd { padding-block: 22px; border-bottom: 1px solid var(--line); font-size: 14px; }
dt { color: var(--muted); }
dd { margin: 0; }
.muted { color: var(--muted); }
dd .fine-print { display: block; }
@media (max-width: 900px) {
  .hero { gap: 5%; }
  .hero h1 { font-size: 60px; }
  .hero-copy > p:not(.eyebrow):not(.hero-jp) br { display: none; }
  .section { padding-block: 85px; }
  .principles { gap: 25px; }
  .principles p br { display: none; }
  .footer-main { gap: 30px; }
}
@media (max-width: 700px) {
  .wrap, .site-header { width: 88%; }
  .site-header { min-height: 90px; flex-wrap: wrap; padding-block: 18px; gap: 18px; }
  .brand { font-size: 30px; }
  .site-nav { width: 100%; flex-wrap: wrap; gap: 8px 24px; }
  .nav-toggle:not([hidden]) { display: flex; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 7px; background: transparent; border: 1px solid var(--line); cursor: pointer; padding: 12px; }
  .nav-toggle span { width: 18px; height: 1px; background: var(--ink); transition: transform .2s; }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .nav-ready .site-nav { display: none; position: absolute; top: 100%; left: -6.82%; width: 113.64%; background: var(--paper); border-bottom: 1px solid var(--line); padding: 22px 6%; }
  .nav-ready .site-nav.open { display: flex; flex-direction: column; }
  .site-nav a { min-height: 44px; }
  .hero { grid-template-columns: 1fr; padding-block: 56px 30px; gap: 45px; }
  .hero h1 { font-size: clamp(49px, 12vw, 77px); margin-bottom: 27px; }
  .eyebrow { font-size: 11px; margin-bottom: 22px; }
  .hero-jp { font-size: 19px; }
  .hero-photo { height: 430px; }
  .visit-strip { gap: 12px; flex-direction: column; font-size: 13px; }
  .visit-strip small { margin-left: 15px; }
  .section { padding-block: 75px; }
  .story-intro, .story-layout, .access-layout, .menu-section { grid-template-columns: 1fr; gap: 45px; }
  h2 { font-size: 48px; }
  .principles { grid-template-columns: 1fr; gap: 35px; margin-top: 40px; }
  .principles article { position: relative; padding-left: 48px; }
  .principles .number { position: absolute; top: 25px; left: 0; }
  .principles h3 { margin-top: 0; }
  .visit-section { padding-block: 75px 85px; }
  .site-footer { padding-top: 55px; }
  .footer-main { grid-template-columns: 1fr; gap: 38px; padding-bottom: 45px; }
  .footer-bottom { flex-direction: column; gap: 5px; }
  .page-heading { padding-block: 60px; }
  .page-heading h1 { font-size: clamp(52px, 12vw, 78px); }
  .page-heading > p:last-child { font-size: 14px; }
  .menu-list h3 { font-size: 16px; }
  .menu-list li { gap: 16px; }
  .menu-list p { font-size: 13px; }
  .menu-note { padding-bottom: 65px; }
  .story-photo { height: 450px; }
}
/* Keep supplied photos fully visible, without cropping or distortion. */
.intro-image { width: 100%; height: auto; object-fit: contain; margin-top: 38px; }
.favorite-image { width: 100%; height: auto; object-fit: contain; margin-bottom: 28px; }
/* Home: generated local photography and typographic menu cards. */
.home-hero { position: relative; isolation: isolate; min-height: min(800px, 85svh); background: #302923; color: var(--paper); display: flex; flex-direction: column; justify-content: center; padding-block: 95px 35px; }
.home-hero-image { position: absolute; inset: 0; z-index: -2; object-position: center; }
.home-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(22,17,13,.7), rgba(22,17,13,.35) 52%, rgba(22,17,13,.08)); }
.home-hero-content { padding-block: 35px 60px; }
.home-hero .eyebrow { color: #e5cbb6; }
.home-hero h1 { font-size: clamp(56px, 7.5vw, 112px); margin-bottom: 30px; }
.home-hero h1 em { color: inherit; }
.home-hero-lead { font-size: 22px; letter-spacing: .08em; margin-bottom: 14px; }
.home-hero-content > p:not(.eyebrow):not(.home-hero-lead) { font-size: 16px; line-height: 2.1; }
.home-hero .text-link { border-color: #e5cbb6; }
.home-hero .text-link:hover, .home-hero .text-link span { color: #e5cbb6; }
.home-hero-caption { display: flex; justify-content: space-between; gap: 16px; font-size: 12px; letter-spacing: .1em; margin-top: auto; }
.favorites { border-top: 1px solid var(--line); scroll-margin-top: 30px; }
.favorites-heading { display: flex; align-items: end; justify-content: space-between; gap: 35px; margin-bottom: 55px; }
.favorites-heading > p { color: var(--muted); font-size: 16px; }
.favorite-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 25px; }
.favorite-card { display: flex; flex-direction: column; padding: 36px 30px; border: 1px solid var(--line); background: #f0eae0; }
.favorite-card .eyebrow { margin-bottom: 38px; }
.favorite-english { font-family: var(--serif); font-size: clamp(35px, 3.6vw, 54px); line-height: 1.05; letter-spacing: -.04em; margin-bottom: 35px; }
.favorite-card h3 { font-size: 17px; margin-bottom: 15px; }
.favorite-description { font-size: 16px; line-height: 2; color: var(--muted); margin-bottom: 30px; }
.favorite-price { margin-top: auto; border-top: 1px solid var(--line); padding-top: 22px; font-family: var(--serif); font-size: 30px; }
.favorite-price span { font-family: var(--sans); color: var(--muted); font-size: 12px; margin-left: 6px; }
.favorites-more { text-align: right; margin-top: 18px; }
@media (max-width: 700px) {
  .home-hero { min-height: 660px; padding-block: 42px 26px; }
  .home-hero-image { object-position: 58% center; }
  .home-hero::before { background: rgba(22,17,13,.65); }
  .home-hero-content { padding-block: 25px 48px; }
  .home-hero h1 { font-size: clamp(46px, 11vw, 76px); }
  .home-hero-lead { font-size: 19px; }
  .home-hero-content > p:not(.eyebrow):not(.home-hero-lead) br { display: none; }
  .home-hero-caption { flex-direction: column; gap: 5px; font-size: 11px; }
  .favorites-heading { display: block; }
  .favorites-heading > p { margin-top: 28px; }
  .favorite-grid { grid-template-columns: 1fr; gap: 20px; }
  .favorite-card { padding: 30px; }
  .favorite-english { font-size: 46px; }
  .favorites-more { text-align: left; }
}
/* Motion is an enhancement: no initial opacity or visibility hiding. */
@keyframes soft-arrival {
  from { opacity: .35; translate: 0 18px; }
  to { opacity: 1; translate: 0 0; }
}
.scroll-arrive { animation: soft-arrival .7s ease-out; }
.back-to-top { position: fixed; right: max(20px, env(safe-area-inset-right)); bottom: max(20px, env(safe-area-inset-bottom)); z-index: 20; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 56px; height: 64px; color: var(--paper); background: var(--ink); border: 1px solid var(--line); font-size: 11px; letter-spacing: .12em; line-height: 1.5; box-shadow: 0 4px 18px #30292320; }
.back-to-top > span:first-child { font-size: 22px; }
.site-footer { padding-bottom: 100px; }
.favorite-card, .facility-grid article, .category-filters button, .nav-toggle, .text-link, .back-to-top { transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, border-color .22s ease; }
.back-to-top:focus-visible { background: var(--accent); }
@media (hover: hover) and (pointer: fine) {
  .favorite-card:hover, .facility-grid article:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: 0 12px 28px #3029230d; }
  .category-filters button:hover, .nav-toggle:hover { transform: translateY(-2px); }
  .text-link:hover { transform: translateY(-2px); }
  .back-to-top:hover { background: var(--accent); transform: translateY(-3px); }
}
@media (max-width: 700px) {
  .nav-toggle:not([hidden]) { gap: 5px; }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-6px) rotate(-45deg); }
  .back-to-top { right: max(12px, env(safe-area-inset-right)); bottom: max(12px, env(safe-area-inset-bottom)); width: 48px; height: 56px; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-arrive { animation: none; }
  .favorite-card:hover, .facility-grid article:hover, .category-filters button:hover, .nav-toggle:hover, .text-link:hover, .back-to-top:hover { transform: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
