:root {
  --paper: #f4efe6;
  --paper-deep: #ebe3d7;
  --ink: #241d19;
  --muted: #756d66;
  --accent: #9a4f3c;
  --line: rgba(36, 29, 25, .18);
  --serif: Georgia, "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --page: 1240px;
  --gutter: clamp(22px, 5vw, 72px);
}

* { 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: 1.9; text-rendering: optimizeLegibility; }
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, figure, blockquote { margin-top: 0; }
h1, h2, h3 { margin-bottom: 0; font-family: var(--serif); font-weight: 400; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 100; top: 10px; left: 10px; padding: 10px 16px; color: var(--paper); background: var(--ink); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; z-index: 30; top: 0; border-bottom: 1px solid var(--line); background: rgba(244, 239, 230, .92); backdrop-filter: blur(14px); transition: box-shadow .25s; }
.site-header.is-scrolled { box-shadow: 0 10px 35px rgba(36, 29, 25, .06); }
.header-inner { max-width: var(--page); min-height: 108px; margin: auto; padding: 0 var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.brand { display: inline-flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: "Yu Mincho", serif; font-size: 1.25rem; letter-spacing: .08em; }
.brand-sub { margin-top: 8px; color: var(--accent); font-family: Arial, sans-serif; font-size: .63rem; font-weight: 700; letter-spacing: .26em; }
.global-nav { display: flex; gap: clamp(26px, 4vw, 58px); align-items: center; }
.global-nav a { min-height: 40px; display: inline-flex; align-items: center; gap: 9px; position: relative; font-family: Arial, sans-serif; font-size: .73rem; font-weight: 700; letter-spacing: .12em; }
.global-nav a span { color: var(--accent); font-family: var(--serif); font-size: .68rem; letter-spacing: 0; }
.global-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: var(--accent); transition: right .3s ease; }
.global-nav a:hover::after, .global-nav a:focus-visible::after, .global-nav a[aria-current="page"]::after { right: 0; }
.nav-toggle { display: none; width: 48px; height: 48px; padding: 14px 8px; border: 0; background: transparent; cursor: pointer; }
.nav-toggle > span:not(.sr-only) { display: block; width: 28px; height: 1px; margin: 7px auto; background: var(--ink); transition: transform .25s ease; }

.section-label { margin-bottom: 24px; color: var(--accent); font-family: Arial, sans-serif; font-size: .68rem; font-weight: 700; line-height: 1.4; letter-spacing: .28em; }
.jp-heading { margin-bottom: 18px; font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(1.2rem, 2vw, 1.55rem); letter-spacing: .05em; }
.arrow-link { width: fit-content; display: inline-flex; gap: 40px; align-items: center; padding: 13px 0 10px; border-bottom: 1px solid var(--ink); font-family: Arial, sans-serif; font-size: .7rem; font-weight: 700; letter-spacing: .16em; transition: color .25s, border-color .25s; }
.arrow-link:hover, .arrow-link:focus-visible { color: var(--accent); border-color: var(--accent); }
.arrow-link span, .button span { font-size: 1rem; transition: transform .25s; }
.arrow-link:hover span, .button:hover span { transform: translate(3px, -3px); }

.home-hero { max-width: var(--page); min-height: calc(100vh - 109px); margin: auto; padding: clamp(70px, 9vw, 140px) var(--gutter) 110px; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr); grid-template-rows: auto auto; column-gap: clamp(55px, 8vw, 120px); align-items: end; }
.hero-heading { position: relative; z-index: 2; align-self: start; }
.hero-heading h1 { max-width: 820px; font-size: clamp(4.4rem, 8.7vw, 8.6rem); line-height: .88; letter-spacing: -.055em; }
.hero-visual { grid-column: 2; grid-row: 1 / 3; align-self: stretch; position: relative; min-height: 650px; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.65) contrast(.94); }
.image-note { position: absolute; right: 22px; bottom: 18px; margin: 0; color: #fff; font-family: Arial, sans-serif; font-size: .62rem; line-height: 1.6; text-align: right; letter-spacing: .16em; }
.hero-intro { max-width: 530px; align-self: end; padding-top: 80px; }
.hero-intro > p:not(.jp-heading) { margin-bottom: 34px; color: var(--muted); }

.content-section { max-width: var(--page); margin: auto; padding: clamp(120px, 14vw, 210px) var(--gutter); border-top: 1px solid var(--line); position: relative; }
.section-index { position: absolute; top: 44px; left: var(--gutter); color: var(--accent); font-family: var(--serif); font-size: .75rem; font-style: italic; }
.home-story { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(60px, 11vw, 170px); align-items: end; }
.section-copy h2, .favorites-heading h2 { font-size: clamp(3.8rem, 7vw, 7rem); line-height: .95; letter-spacing: -.05em; }
.section-copy .jp-heading, .favorites-heading .jp-heading { margin-top: 42px; }
.section-body { padding-bottom: 8px; }
.section-body p { max-width: 470px; margin-bottom: 26px; color: var(--muted); }
.section-body .arrow-link { margin-top: 18px; }

.favorites { max-width: none; display: grid; grid-template-columns: minmax(0, 1fr) minmax(400px, 1fr); column-gap: clamp(70px, 12vw, 190px); background: var(--paper-deep); }
.favorites > * { min-width: 0; }
.favorites .section-index { left: var(--gutter); }
.favorites-heading { padding-left: max(0px, calc((100vw - var(--page)) / 2)); }
.favorite-list { padding-right: max(0px, calc((100vw - var(--page)) / 2)); }
.favorite-item { min-height: 170px; padding: 32px 0; display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; border-top: 1px solid var(--ink); }
.favorite-item span { color: var(--accent); font-family: Arial, sans-serif; font-size: .62rem; font-weight: 700; letter-spacing: .2em; }
.favorite-item h3 { margin-top: 8px; font-size: clamp(1.65rem, 2.8vw, 2.5rem); line-height: 1.1; }
.favorite-item p { margin: 14px 0 0; color: var(--muted); font-size: .88rem; }
.favorite-item strong { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; }
.favorite-list > .arrow-link { margin-top: 38px; }

.visit-block { max-width: var(--page); margin: auto; padding: clamp(120px, 15vw, 220px) var(--gutter); text-align: center; }
.visit-block h2 { max-width: 920px; margin: 0 auto; font-size: clamp(4rem, 8.5vw, 8.5rem); line-height: .9; letter-spacing: -.06em; }
.visit-meta { margin: 65px auto 45px; display: flex; justify-content: center; gap: clamp(50px, 10vw, 150px); }
.visit-meta p { min-width: 230px; margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.9; }
.button { min-width: 180px; min-height: 56px; padding: 14px 25px; display: inline-flex; justify-content: center; align-items: center; gap: 42px; color: var(--paper); background: var(--accent); font-family: Arial, sans-serif; font-size: .7rem; font-weight: 700; letter-spacing: .17em; transition: background .25s; }
.button:hover, .button:focus-visible { background: var(--ink); }

.page-intro { max-width: var(--page); margin: auto; padding: clamp(100px, 12vw, 180px) var(--gutter) clamp(85px, 10vw, 150px); }
.page-intro h1 { font-size: clamp(5.2rem, 13vw, 12.5rem); line-height: .78; letter-spacing: -.065em; }
.page-intro-footer { margin-top: clamp(55px, 8vw, 100px); display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding-top: 28px; border-top: 1px solid var(--line); }
.page-intro-footer p { max-width: 470px; margin: 0; color: var(--muted); }
.page-intro-footer .jp-heading { color: var(--ink); }

.menu-wrap { max-width: var(--page); margin: auto; padding: 40px var(--gutter) clamp(130px, 15vw, 220px); }
.menu-category { display: grid; grid-template-columns: .8fr 2.2fr; gap: clamp(50px, 10vw, 150px); padding: 70px 0 110px; border-top: 1px solid var(--ink); }
.category-heading { position: sticky; top: 145px; align-self: start; }
.category-heading h2 { font-size: clamp(2.8rem, 5vw, 5rem); line-height: 1; }
.category-heading p:last-child { color: var(--muted); font-size: .88rem; }
.menu-list { margin: 0; padding: 0; list-style: none; }
.menu-list li { min-height: 118px; padding: 27px 0; display: grid; grid-template-columns: 1fr auto; align-items: start; gap: 20px; border-bottom: 1px solid var(--line); }
.menu-list h3 { font-size: 1.5rem; }
.menu-list p { margin: 7px 0 0; color: var(--muted); font-size: .85rem; }
.menu-list strong { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; }
.menu-note { padding: 25px 0; color: var(--muted); border-top: 1px solid var(--line); font-size: .8rem; }

.story-lead { max-width: var(--page); margin: auto; padding: 10px var(--gutter) clamp(120px, 15vw, 210px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(60px, 10vw, 150px); align-items: center; }
.story-image { margin: 0; position: relative; }
.story-image img { aspect-ratio: 4 / 5; object-fit: cover; filter: saturate(.55) contrast(.95); }
.story-image figcaption { margin-top: 12px; color: var(--muted); font-family: Arial, sans-serif; font-size: .62rem; letter-spacing: .18em; }
.story-text h2 { margin-bottom: 45px; font-size: clamp(3.2rem, 6vw, 6.5rem); line-height: .95; letter-spacing: -.045em; }
.story-text > p:not(.section-label) { margin-bottom: 26px; color: var(--muted); }
.values-block { max-width: none; padding: clamp(120px, 14vw, 200px) var(--gutter); background: var(--ink); color: var(--paper); }
.values-inner { max-width: var(--page); margin: auto; }
.values-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-bottom: 90px; }
.values-heading h2 { font-size: clamp(3.8rem, 7vw, 7rem); line-height: .95; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(244,239,230,.3); }
.value-item { min-height: 280px; padding: 35px 35px 20px 0; border-right: 1px solid rgba(244,239,230,.3); }
.value-item + .value-item { padding-left: 35px; }
.value-item:last-child { border-right: 0; }
.value-item span { color: #c77a64; font-family: var(--serif); font-style: italic; }
.value-item h3 { margin-top: 55px; font-size: 1.7rem; }
.value-item p { color: #bdb3aa; font-size: .88rem; }
.quote-block { max-width: 960px; margin: auto; padding: clamp(120px, 15vw, 220px) var(--gutter); text-align: center; }
.quote-block blockquote { font-family: "Yu Mincho", serif; font-size: clamp(2rem, 4.5vw, 4.2rem); line-height: 1.55; }
.quote-block cite { color: var(--muted); font-size: .76rem; font-style: normal; letter-spacing: .16em; }

.access-main { max-width: var(--page); margin: auto; padding: 0 var(--gutter) clamp(130px, 15vw, 220px); }
.access-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(60px, 9vw, 130px); align-items: start; }
.map-card { min-height: 620px; position: relative; overflow: hidden; background-color: var(--paper-deep); background-image: linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px); background-size: 46px 46px; }
.map-road { position: absolute; background: var(--paper); border: 1px solid rgba(36,29,25,.06); }
.road-one { width: 130%; height: 82px; top: 58%; left: -15%; transform: rotate(-7deg); }
.road-two { width: 72px; height: 130%; top: -15%; left: 27%; transform: rotate(11deg); }
.road-three { width: 58px; height: 130%; top: -15%; right: 17%; transform: rotate(-17deg); }
.map-card > span { position: absolute; z-index: 2; font-size: .7rem; font-weight: 700; }
.map-station { left: 8%; bottom: 17%; padding: 10px 16px; color: var(--paper); background: var(--ink); }
.map-park { right: 9%; top: 14%; width: 130px; height: 85px; display: grid; place-items: center; color: var(--paper); background: #6e6953; border-radius: 50%; }
.map-pin { left: 49%; top: 37%; display: flex; flex-direction: column; align-items: center; color: var(--accent); }
.map-pin i { width: 54px; height: 54px; display: grid; place-items: center; color: var(--paper); background: var(--accent); border: 4px solid var(--paper); border-radius: 50%; font-family: var(--serif); font-size: 1.2rem; font-style: normal; box-shadow: 0 8px 24px rgba(36,29,25,.15); }
.map-label { left: 51%; bottom: 29%; transform: rotate(-7deg); color: var(--muted); }
.access-info { padding-top: 10px; }
.access-info h2 { margin-bottom: 48px; font-size: clamp(3.2rem, 5vw, 5.2rem); line-height: .95; }
.access-info dl { margin: 0; }
.access-info dl div { padding: 22px 0; border-bottom: 1px solid var(--line); }
.access-info dt { color: var(--accent); font-family: Arial, sans-serif; font-size: .62rem; font-weight: 700; letter-spacing: .18em; }
.access-info dd { margin: 8px 0 0; }
.access-info small { color: var(--muted); }
.directions { margin-top: clamp(100px, 13vw, 180px); padding-top: 55px; border-top: 1px solid var(--ink); }
.directions-heading { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; margin-bottom: 65px; }
.directions-heading h2 { font-size: clamp(3.2rem, 6vw, 6rem); line-height: .95; }
.direction-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.direction-item { padding: 30px 36px 10px 0; border-top: 1px solid var(--line); }
.direction-item + .direction-item { padding-left: 36px; border-left: 1px solid var(--line); }
.direction-item span { color: var(--accent); font-family: var(--serif); font-style: italic; }
.direction-item h3 { margin-top: 35px; font-size: 1.5rem; }
.direction-item p { color: var(--muted); font-size: .88rem; }
.access-notice { margin-top: 90px; padding: 28px 0; display: flex; gap: 45px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.access-notice strong { white-space: nowrap; font-family: var(--serif); font-weight: 400; }
.access-notice p { margin: 0; color: var(--muted); font-size: .85rem; }

.site-footer { padding: clamp(80px, 10vw, 130px) var(--gutter) 30px; color: var(--paper); background: var(--ink); }
.footer-top, .footer-bottom { max-width: var(--page); margin: auto; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr .7fr; gap: 60px; padding-bottom: 80px; }
.footer-brand { font-family: "Yu Mincho", serif; font-size: clamp(1.8rem, 3vw, 2.8rem); letter-spacing: .08em; }
.footer-top p { margin-top: 15px; color: #bdb3aa; font-size: .85rem; }
.footer-hours, .footer-social { display: flex; flex-direction: column; align-items: flex-start; }
.footer-hours span, .footer-social span { margin-bottom: 18px; color: #c77a64; font-family: Arial, sans-serif; font-size: .6rem; font-weight: 700; letter-spacing: .2em; }
.footer-hours strong { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.footer-hours small { margin-top: 3px; color: #bdb3aa; }
.footer-social a { margin-bottom: 8px; font-family: Arial, sans-serif; font-size: .72rem; letter-spacing: .12em; border-bottom: 1px solid transparent; }
.footer-social a:hover { border-color: #c77a64; }
.footer-bottom { padding-top: 25px; display: flex; justify-content: space-between; border-top: 1px solid rgba(244,239,230,.2); }
.footer-bottom p, .footer-bottom a { margin: 0; color: #8f867f; font-family: Arial, sans-serif; font-size: .6rem; letter-spacing: .16em; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .site-header { backdrop-filter: none; }
  .header-inner { min-height: 84px; }
  .nav-toggle { display: block; z-index: 2; }
  .nav-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .global-nav { visibility: hidden; opacity: 0; position: fixed; inset: 0; padding: 140px var(--gutter) 70px; display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 0; background: var(--paper); transition: opacity .25s, visibility .25s; }
  .global-nav.is-open { visibility: visible; opacity: 1; }
  .global-nav a { min-height: 72px; justify-content: space-between; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 2rem; font-weight: 400; letter-spacing: -.02em; }
  .global-nav a span { order: 2; }
  .global-nav a::after { display: none; }
  .home-hero { min-height: auto; grid-template-columns: 1fr; grid-template-rows: auto auto auto; row-gap: 50px; }
  .hero-heading h1 { font-size: clamp(4.1rem, 15vw, 7rem); }
  .hero-visual { grid-column: 1; grid-row: 2; min-height: 620px; }
  .hero-intro { padding-top: 10px; }
  .home-story, .favorites { grid-template-columns: 1fr; gap: 65px; }
  .favorites-heading, .favorite-list { padding-left: 0; padding-right: 0; }
  .page-intro-footer, .story-lead, .access-grid, .values-heading { grid-template-columns: 1fr; }
  .menu-category { grid-template-columns: 1fr; gap: 40px; }
  .category-heading { position: static; }
  .footer-top { grid-template-columns: 1.3fr 1fr; }
  .footer-social { grid-column: 2; }
}

@media (max-width: 620px) {
  body { line-height: 1.85; }
  .brand-name { font-size: 1.05rem; }
  .header-inner { min-height: 76px; }
  .home-hero { padding-top: 70px; padding-bottom: 90px; row-gap: 40px; }
  .hero-heading h1 { font-size: clamp(3.6rem, 17vw, 5.5rem); line-height: .9; }
  .hero-visual { min-height: 480px; }
  .content-section { padding-top: 125px; padding-bottom: 125px; }
  .section-copy h2, .favorites-heading h2 { font-size: 3.7rem; }
  .favorite-item { min-height: 155px; }
  .favorite-item h3 { font-size: 1.7rem; }
  .visit-block h2 { font-size: 3.8rem; }
  .visit-meta { flex-direction: column; gap: 22px; }
  .page-intro { padding-top: 100px; }
  .page-intro h1 { font-size: clamp(4.8rem, 23vw, 7rem); }
  .page-intro-footer { gap: 20px; margin-top: 70px; }
  .menu-category { padding: 55px 0 80px; }
  .menu-list h3 { font-size: 1.25rem; }
  .story-lead { gap: 70px; }
  .story-text h2 { font-size: 3.8rem; }
  .value-grid, .direction-grid { grid-template-columns: 1fr; }
  .value-item { min-height: 230px; padding: 35px 0; border-right: 0; border-bottom: 1px solid rgba(244,239,230,.3); }
  .value-item + .value-item { padding-left: 0; }
  .directions-heading { grid-template-columns: 1fr; gap: 30px; }
  .direction-item, .direction-item + .direction-item { padding: 30px 0; border-left: 0; }
  .map-card { min-height: 430px; }
  .access-notice { flex-direction: column; gap: 8px; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; padding-bottom: 60px; }
  .footer-social { grid-column: auto; }
  .footer-bottom { gap: 20px; }
}

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