@charset "UTF-8";

/* Cream, warm brown, and a single muted terracotta accent. */
:root {
  --paper: #f8f4ed;
  --ink: #302924;
  --muted: #71665e;
  --line: #dcd3c8;
  --accent: #98624e;
  --surface: #eee6da;
  --serif: "Baskerville", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 2; -webkit-font-smoothing: antialiased; }
::selection { background: var(--accent); color: var(--paper); }
a { color: inherit; text-decoration: none; text-underline-offset: 7px; }
a, button { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 6px; }
button { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; line-height: 1.1; letter-spacing: -.035em; }
h2 { font-size: clamp(2.5rem, 4.7vw, 4.25rem); margin-bottom: 25px; }
h3 { font-size: 1.125rem; font-weight: 500; line-height: 1.8; }
em { font-weight: 400; }
.site-header, main, .site-footer { width: min(1240px, calc(100% - 112px)); margin-inline: auto; }
.site-header { min-height: 144px; display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.brand { display: inline-flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--serif); font-size: 2.75rem; letter-spacing: -.06em; }
.brand-period, .heading-period { color: var(--accent); }
.brand-small { font-size: .75rem; letter-spacing: .24em; margin-top: 12px; }
nav { display: flex; align-items: center; gap: 38px; }
nav a { position: relative; padding-block: 14px; font: .75rem/1.5 Arial, sans-serif; letter-spacing: .13em; }
nav a::after { content: ""; position: absolute; inset: auto 0 3px; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
nav a:hover::after, nav a[aria-current]::after { transform: scaleX(1); }
nav a[aria-current] { color: var(--accent); }
.nav-toggle { display: none; }
.skip-link { position: fixed; top: -100px; left: 20px; z-index: 10; padding: 10px 20px; background: var(--ink); color: var(--paper); }
.skip-link:focus { top: 12px; }
.eyebrow, .item-number { font: .75rem/1.8 Arial, sans-serif; font-weight: 500; letter-spacing: .19em; color: var(--accent); margin-bottom: 28px; }
.hero { display: grid; grid-template-columns: 1.15fr 1fr; column-gap: 60px; border-top: 1px solid var(--line); padding-top: 48px; }
.hero-copy { padding-block: 40px 54px; }
.hero h1 { font-size: clamp(3.25rem, 6.7vw, 6rem); margin-bottom: 30px; line-height: 1.12; }
.hero h1 em { color: var(--accent); }
.hero-japanese { font-size: 1.375rem; letter-spacing: .13em; margin-bottom: 20px; }
.hero-copy > p:not(.eyebrow):not(.hero-japanese) { color: var(--muted); line-height: 2.2; margin-bottom: 34px; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 50px; padding: 16px 26px; min-height: 56px; border: 1px solid var(--ink); background: var(--ink); color: var(--paper); font-size: .875rem; transition: background .2s, border-color .2s; }
.button:hover { background: var(--accent); border-color: var(--accent); }
.button span, .text-link span { font-size: 1.2rem; }
.hero-panel { padding: 36px 42px; color: var(--paper); background: var(--accent); display: flex; flex-direction: column; justify-content: space-between; min-height: 590px; }
.panel-top, .panel-bottom { font: .75rem/1.7 Arial, sans-serif; letter-spacing: .15em; }
.panel-title { font: clamp(5.5rem, 8.5vw, 8rem)/.95 var(--serif); letter-spacing: -.06em; margin: 35px 0 48px; }
.panel-title em { display: inline-block; margin-left: 35px; }
.panel-bottom { padding-top: 22px; border-top: 1px solid rgba(248,244,237,.4); }
.hero-foot { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); padding-block: 25px; margin-top: 30px; font-size: .875rem; color: var(--muted); }
.section { padding-block: 120px; }
.intro { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.intro > div:last-child { padding-top: 38px; }
.intro p:not(.eyebrow):not(.section-subtitle) { color: var(--muted); }
.intro p { margin-bottom: 25px; }
.section-subtitle { font-size: .9375rem; letter-spacing: .06em; margin-bottom: 32px; }
.text-link { display: inline-flex; align-items: center; justify-content: space-between; gap: 44px; min-height: 44px; padding-bottom: 6px; border-bottom: 1px solid var(--accent); font-size: .875rem; }
.text-link:hover { color: var(--accent); }
.favorites { border-top: 1px solid var(--line); }
.section-heading { display: flex; justify-content: space-between; align-items: center; gap: 32px; margin-bottom: 32px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.feature { padding-top: 32px; border-top: 1px solid var(--line); }
.item-number { display: block; margin-bottom: 34px; }
.feature h3 { margin-bottom: 16px; }
.feature p { color: var(--muted); margin-bottom: 22px; }
.price { font: 1.5rem/1.5 var(--serif); }
.note { font-size: .875rem; color: var(--muted); }
.favorites > .note { margin: 34px 0 0; }
.visit { padding: 86px 40px; text-align: center; background: var(--surface); }
.visit h2 { font-size: clamp(2.75rem, 6vw, 5rem); }
.visit .section-subtitle { margin-bottom: 18px; }
.visit > p:not(.eyebrow):not(.section-subtitle) { color: var(--muted); }
.button-light { background: transparent; color: var(--ink); margin-top: 22px; }
.button-light:hover { color: var(--paper); }
.page-heading { padding-block: 74px 70px; border-block: 1px solid var(--line); }
.page-heading h1 { font-size: clamp(4.5rem, 9.5vw, 8.5rem); margin-bottom: 38px; }
.page-subtitle { font-size: 1.25rem; letter-spacing: .07em; margin-bottom: 16px; }
.page-heading > p:last-child { margin: 0; color: var(--muted); }
.menu-section { display: grid; grid-template-columns: 1fr 1.65fr; gap: 90px; padding-top: 95px; }
.menu-section h2 { font-size: clamp(2.5rem, 4vw, 3.6rem); }
.menu-list { margin: 0; }
.menu-list > div { display: flex; justify-content: space-between; gap: 28px; padding-block: 28px; border-bottom: 1px solid var(--line); }
.menu-list > div:first-child { padding-top: 0; }
.menu-list dt { font-size: 1.125rem; }
.menu-list dt span { display: block; font: .75rem/1.8 Arial, sans-serif; color: var(--accent); letter-spacing: .09em; margin-top: 5px; }
.menu-list dt p { font-size: .9375rem; color: var(--muted); margin: 12px 0 0; }
.menu-list dd { margin: 0; white-space: nowrap; font: 1.5rem/1.6 var(--serif); }
.menu-note { border-left: 2px solid var(--accent); padding-left: 26px; margin-top: 64px; font-size: .875rem; color: var(--muted); }
.menu-note p { margin: 0; }
.story { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; padding-top: 96px; }
.story-banner { background: var(--surface); padding: 48px; min-height: 440px; display: flex; flex-direction: column; justify-content: space-between; }
.story-banner p { font: clamp(3rem, 5.6vw, 5rem)/1.2 var(--serif); letter-spacing: -.035em; margin-block: 42px; }
.story-banner em { color: var(--accent); }
.story-banner small { font: .75rem/1.8 Arial, sans-serif; letter-spacing: .13em; }
.story-copy h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); }
.story-copy > p:not(.eyebrow):not(.section-subtitle) { color: var(--muted); }
.page-end { text-align: center; padding: 65px 0 0; }
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; padding-top: 96px; }
.access-grid h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); }
.shop-info { margin: 35px 0 0; }
.shop-info > div { display: grid; grid-template-columns: 90px 1fr; gap: 24px; border-bottom: 1px solid var(--line); padding-block: 23px; font-size: .9375rem; }
.shop-info dt { color: var(--muted); }
.shop-info dd { margin: 0; }
.directions { background: var(--surface); padding: 42px; }
.directions ol { padding-left: 23px; margin-top: 35px; }
.directions li { padding: 10px 0 16px 12px; }
.directions li::marker { color: var(--accent); font-family: var(--serif); }
.directions h3 { margin-bottom: 10px; }
.directions li p { font-size: .9375rem; color: var(--muted); }
.directions > .note { margin-bottom: 0; }
.site-footer { margin-top: 120px; border-top: 1px solid var(--line); }
.footer-main { display: grid; grid-template-columns: 1.4fr 1fr .8fr; gap: 50px; padding-block: 64px; }
.footer-brand .brand-name { font-size: 3.25rem; }
.footer-tagline { margin: 24px 0 0; font-size: .9375rem; color: var(--muted); }
.footer-main .eyebrow { margin-bottom: 24px; }
.footer-hours > p:last-child { font-size: 1.25rem; margin-bottom: 0; }
.footer-hours span { display: block; font-size: .875rem; color: var(--muted); margin-top: 6px; }
.social-pending, .footer-social a { font-family: Arial, var(--sans); font-size: 1rem; }
.social-pending > span { margin-left: 12px; color: var(--muted); font: .75rem var(--sans); }
.footer-bottom { border-top: 1px solid var(--line); padding-block: 25px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: var(--muted); }
.footer-bottom small, .footer-bottom a { font: .75rem/1.8 Arial, sans-serif; letter-spacing: .07em; }
.footer-bottom p { font-size: .75rem; margin: 0; }
.footer-bottom a { padding-block: 10px; }
.footer-bottom a:hover { color: var(--accent); }
@media (max-width: 1050px) {
  .site-header, main, .site-footer { width: calc(100% - 64px); }
  nav { gap: 25px; }
  .hero { column-gap: 36px; }
  .hero-panel { padding: 30px; min-height: 560px; }
  .intro, .story, .access-grid, .menu-section { gap: 45px; }
  .feature-grid { gap: 30px; }
  .footer-main { gap: 30px; }
  .directions { padding: 28px; }
}
@media (max-width: 760px) {
  .site-header, main, .site-footer { width: calc(100% - 40px); }
  .site-header { min-height: 110px; padding-block: 24px; flex-wrap: wrap; gap: 24px; }
  .brand-name { font-size: 2.3rem; }
  .brand-small { font-size: .75rem; margin-top: 8px; }
  .nav-toggle:not([hidden]) { display: block; background: transparent; border: 1px solid var(--line); padding: 10px 12px; min-height: 44px; font-size: .875rem; color: var(--ink); cursor: pointer; }
  nav { width: 100%; flex-wrap: wrap; gap: 12px 26px; border-top: 1px solid var(--line); padding-top: 16px; }
  nav a { font-size: .8125rem; }
  .js-nav nav { display: none; }
  .js-nav nav.is-open { display: flex; }
  .hero { grid-template-columns: 1fr; padding-top: 0; }
  .hero-copy { padding-block: 48px; }
  .hero h1 { font-size: clamp(3rem, 10vw, 5rem); }
  .hero-japanese { font-size: 1.25rem; }
  .hero-panel { min-height: 370px; padding: 28px; }
  .panel-title { font-size: clamp(5rem, 17vw, 7rem); margin: 30px 0; }
  .hero-foot { grid-row: 2; flex-direction: column; margin: 0 0 32px; padding: 0 0 24px; gap: 6px; }
  .section { padding-block: 72px; }
  .intro, .story, .access-grid, .menu-section { grid-template-columns: 1fr; gap: 30px; }
  .intro > div:last-child { padding-top: 0; }
  .intro br { display: none; }
  .intro h2 br { display: initial; }
  .section-heading { flex-direction: column; align-items: flex-start; gap: 0; margin-bottom: 40px; }
  .feature-grid { grid-template-columns: 1fr; gap: 38px; }
  .feature { padding-top: 24px; }
  .item-number { margin-bottom: 22px; }
  .visit { padding: 64px 22px; }
  .page-heading { padding-block: 54px; }
  .page-heading h1 { font-size: clamp(3.6rem, 14vw, 6rem); margin-bottom: 28px; }
  .page-subtitle { font-size: 1.125rem; }
  .menu-section { padding-top: 64px; gap: 12px; }
  .menu-section h2 { margin-bottom: 16px; }
  .menu-list > div { gap: 18px; }
  .menu-list dd { font-size: 1.3rem; }
  .story, .access-grid { padding-top: 64px; gap: 48px; }
  .story-banner { padding: 32px; min-height: 350px; }
  .story-banner p { font-size: clamp(2.8rem, 10vw, 4rem); }
  .shop-info > div { grid-template-columns: 70px 1fr; gap: 18px; }
  .directions { padding: 28px 24px; }
  .page-end { padding-top: 48px; }
  .site-footer { margin-top: 80px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px 24px; padding-block: 48px; }
  .footer-main > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-wrap: wrap; gap: 12px 24px; }
  .footer-bottom p { order: 3; width: 100%; }
  .footer-bottom a { margin-left: auto; }
}
@media (max-width: 380px) {
  .site-header { gap: 16px; }
  .brand-name { font-size: 2rem; }
  .nav-toggle:not([hidden]) { font-size: .75rem; }
  .footer-main { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.9rem; }
}
/* Home: full-width photographic opening and three editorial menu cards. */
.home-page main { width: 100%; }
.home-page .intro, .home-page .favorites, .home-page .visit {
  width: min(1240px, calc(100% - 112px));
  margin-inline: auto;
}
.home-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 720px;
  padding: 80px max(56px, calc((100% - 1240px) / 2));
  border: 0;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(30,24,20,.77) 0%, rgba(30,24,20,.55) 48%, rgba(30,24,20,.09) 100%);
}
.home-hero .hero-copy { padding: 0; max-width: 680px; }
.home-hero h1 { font-size: clamp(3.5rem, 6.7vw, 6rem); }
.home-hero h1 em, .home-hero .eyebrow,
.home-hero .hero-copy > p:not(.eyebrow):not(.hero-japanese) { color: var(--paper); }
.home-hero .eyebrow { margin-bottom: 30px; }
.home-hero .hero-copy > p:not(.eyebrow):not(.hero-japanese) { margin-bottom: 28px; }
.home-hero .button { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.home-hero .button:hover { background: var(--surface); border-color: var(--surface); }
.home-hero .hero-foot {
  color: var(--paper);
  border-bottom: 0;
  border-top: 1px solid rgba(248,244,237,.4);
  padding: 20px 0 0;
  margin: 48px 0 0;
  width: 100%;
}
.home-favorites .feature-grid { gap: 24px; }
.menu-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 38px 32px 30px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.menu-card .item-number { margin-bottom: 48px; }
.menu-card h3 { font-size: 1.25rem; }
.menu-card .price { margin-top: auto; padding-top: 24px; border-top: 1px solid var(--line); }
.home-page .visit { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: transparent; }
@media (max-width: 1050px) {
  .home-page .intro, .home-page .favorites, .home-page .visit { width: calc(100% - 64px); }
  .home-hero { padding-inline: 32px; }
  .menu-card { padding: 30px 24px; }
}
@media (max-width: 760px) {
  .home-page .intro, .home-page .favorites, .home-page .visit { width: calc(100% - 40px); }
  .home-hero { min-height: 660px; padding: 56px 24px 30px; }
  .home-hero .hero-copy { padding: 0; }
  .home-hero h1 { font-size: clamp(2.8rem, 10.4vw, 4.5rem); }
  .hero-image { object-position: 62% center; }
  .home-hero::before { background: rgba(30,24,20,.68); }
  .home-hero .hero-foot { margin-top: 40px; padding-top: 20px; }
  .home-favorites .feature-grid { gap: 20px; }
  .menu-card { padding: 30px; }
  .menu-card .item-number { margin-bottom: 28px; }
  .home-page .visit { padding-inline: 8px; }
}
.home-page .intro-photo {
  grid-column: 1;
  grid-row: 1 / 3;
  display: block;
  width: 100%;
  height: auto;
}
.home-page .intro { column-gap: 90px; row-gap: 24px; }
.home-page .intro-heading { grid-column: 2; }
.home-page .intro > div:last-child { grid-column: 2; padding-top: 0; }
.home-page .intro-heading .section-subtitle { margin-bottom: 0; }
.menu-photo {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 28px;
}
.home-favorites .menu-card .item-number { margin-bottom: 24px; }
@media (min-width: 761px) and (max-width: 1050px) {
  .home-page .intro { column-gap: 45px; }
}
@media (max-width: 760px) {
  .home-page .intro { gap: 30px; }
  .home-page .intro-photo { grid-column: 1; grid-row: 2; }
  .home-page .intro-heading { grid-column: 1; grid-row: 1; }
  .home-page .intro > div:last-child { grid-column: 1; grid-row: 3; }
}
.menu-filter { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 48px; }
.menu-filter button { min-height: 48px; padding: 10px 28px; border: 1px solid var(--line); background: transparent; color: var(--ink); cursor: pointer; }
.menu-filter button:hover { border-color: var(--accent); }
.menu-filter button[aria-pressed="true"] { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.filter-status { margin: 20px 0 0; }
#menu-results .menu-section { padding-top: 64px; }
.story-photo { width: 100%; height: auto; display: block; }
.store-details { padding: 64px; background: var(--surface); display: grid; grid-template-columns: 1fr 1.3fr; gap: 32px 64px; }
.store-details .shop-info { margin: 0; }
.store-details > .note { grid-column: 1 / -1; margin: 0; }
.contact-note { display: block; font-size: .875rem; color: var(--muted); }
.map-section { margin-top: 100px; padding-top: 64px; border-top: 1px solid var(--line); }
.map-notice { padding: 20px 24px; border-left: 2px solid var(--accent); background: var(--surface); font-size: .9375rem; }
.access-map { width: 100%; height: 480px; display: block; border: 1px solid var(--line); background: var(--surface); margin-top: 30px; }
.map-footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-block: 20px; }
.map-footer p { margin: 0; }
.map-section > .note a { text-decoration: underline; }
@media (max-width: 760px) {
  .menu-filter { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 32px; }
  .menu-filter button { padding-inline: 16px; }
  #menu-results .menu-section { padding-top: 40px; }
  .store-details { padding: 32px 24px; grid-template-columns: 1fr; gap: 20px; }
  .map-section { margin-top: 64px; padding-top: 48px; }
  .access-map { height: 360px; }
  .map-notice { padding: 18px; }
}
[hidden] { display: none !important; }
.nav-icon { display: flex; flex-direction: column; gap: 5px; width: 22px; }
.nav-icon span { display: block; width: 22px; height: 1px; background: currentColor; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] .nav-icon span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-icon span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-icon span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.button, .menu-filter button, .nav-toggle, .back-to-top { transition: transform .2s, background .2s, color .2s, border-color .2s, box-shadow .2s; }
.feature { transition: transform .25s, box-shadow .25s, border-color .25s; }
.back-to-top { position: fixed; right: max(20px, env(safe-area-inset-right)); bottom: max(20px, env(safe-area-inset-bottom)); z-index: 5; display: flex; flex-direction: column; justify-content: center; align-items: center; width: 56px; height: 64px; background: var(--ink); color: var(--paper); border: 1px solid var(--paper); box-shadow: 0 3px 14px rgba(48,41,36,.15); line-height: 1.3; }
.back-to-top > span:first-child { font-size: 1.4rem; }
.back-to-top-label { font: .625rem/1.5 Arial, sans-serif; letter-spacing: .12em; }
.site-footer { padding-bottom: 84px; }
body:focus { outline: none; }
@media (hover: hover) and (pointer: fine) {
  .button:hover, .menu-filter button:hover { transform: translateY(-2px); }
  .feature:hover { transform: translateY(-4px); border-color: var(--accent); }
  .menu-card:hover { box-shadow: 0 12px 26px rgba(48,41,36,.08); }
  .nav-toggle:hover, .back-to-top:hover { background: var(--accent); color: var(--paper); }
  .back-to-top:hover { transform: translateY(-3px); }
}
@media (max-width: 760px) {
  .nav-toggle:not([hidden]) { width: 48px; height: 48px; padding: 12px; }
  .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) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
  .button:hover, .menu-filter button:hover, .feature:hover, .back-to-top:hover { transform: none; }
}
