@charset "UTF-8";

/* Shared palette: warm paper, brown ink, and a single terracotta accent. */
:root {
  --paper: #f7f3eb;
  --surface: #eee7dc;
  --ink: #302923;
  --muted: #6c6259;
  --accent: #9b5943;
  --line: #d8cec1;
  --serif: "Baskerville", "Times New Roman", "Yu Mincho", serif;
  --sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --page-width: 1280px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 2rem; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 1rem/2 var(--sans); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; text-underline-offset: .4em; }
a, button { -webkit-tap-highlight-color: transparent; }
a { transition: color .2s ease, background-color .2s ease; }
a:hover { color: var(--accent); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 6px; }
button { font: inherit; }
p { margin: 0 0 1.5rem; }
h1, h2 { font-family: var(--serif); font-weight: 400; line-height: 1.05; letter-spacing: -.045em; margin: 0 0 2rem; text-wrap: balance; }
h1 { font-size: clamp(3.5rem, 7.2vw, 7rem); }
h2 { font-size: clamp(2.8rem, 4.8vw, 4.7rem); }
h1 em, h2 em { font-weight: 400; }
h1 span { color: var(--accent); }
h3 { font: 500 1.125rem/1.8 var(--sans); margin: 1.4rem 0 .8rem; }
small, .small { font-size: .875rem; color: var(--muted); }
.eyebrow, .item-number { font: 500 .75rem/1.7 var(--sans); letter-spacing: .2em; color: var(--accent); }
.eyebrow { margin-bottom: 2rem; }
.section-lead { font-size: 1.125rem; color: var(--ink); letter-spacing: .045em; }
.section { width: min(var(--page-width), 88%); margin-inline: auto; padding-block: 130px; }
/* Header */
.site-header { width: 88%; max-width: var(--page-width); margin: auto; min-height: 126px; display: flex; align-items: center; gap: 3rem; border-bottom: 1px solid var(--line); }
.brand { display: flex; flex-direction: column; line-height: 1.2; padding-block: 16px; }
.brand-jp { font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: 2rem; letter-spacing: .14em; white-space: nowrap; }
.brand-jp small { color: var(--ink); font-size: .875rem; }
.brand-dot { color: var(--accent); }
.brand-en { font-size: .625rem; letter-spacing: .24em; margin-top: .75rem; }
.main-nav { display: flex; gap: clamp(1.5rem, 3vw, 3rem); margin-left: auto; }
.main-nav a { display: flex; align-items: center; min-height: 44px; font-size: .75rem; letter-spacing: .13em; position: relative; }
.main-nav a::after { content: ""; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.main-nav a:hover::after, .main-nav a[aria-current]::after { transform: scaleX(1); }
.header-hours { padding-left: 2rem; border-left: 1px solid var(--line); font-size: .875rem; white-space: nowrap; }
.header-hours small { display: block; }
.nav-toggle { display: none; }
/* Home */
.hero { width: min(var(--page-width), 88%); margin: 70px auto 0; display: grid; grid-template-columns: 1.1fr 1fr; position: relative; align-items: center; padding-bottom: 65px; }
.hero-copy { padding: 35px 0; position: relative; z-index: 1; }
.hero h1 { font-size: clamp(3.25rem, 6.3vw, 6.4rem); white-space: nowrap; margin-bottom: 2rem; }
.hero h1 em { color: var(--accent); }
.hero-copy > p:not(.eyebrow):not(.hero-japanese):not(.hero-hours) { color: var(--muted); }
.hero-japanese { font-size: 1.125rem; letter-spacing: .08em; margin-bottom: 1.25rem; }
.hero-photo { height: clamp(480px, 47vw, 680px); margin-left: 1rem; background-color: var(--surface); background-image: linear-gradient(0deg, rgba(35,25,20,.35), transparent 50%), var(--cafe-image); background-size: cover; background-position: 52% center; position: relative; }
.photo-caption { position: absolute; bottom: 24px; left: 24px; right: 24px; color: white; font-size: .625rem; letter-spacing: .18em; }
.hero-note { position: absolute; right: 0; bottom: 10px; font-size: .875rem; letter-spacing: .13em; color: var(--muted); }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 3.5rem; background: var(--accent); color: var(--paper); padding: 16px 26px; font-size: .875rem; min-height: 56px; margin-top: .5rem; }
.button:hover { color: var(--paper); background: var(--ink); }
.hero-hours { display: flex; align-items: center; flex-wrap: wrap; gap: .5rem 1rem; font-size: .875rem; margin: 1.75rem 0 0; color: var(--muted); }
.hero-hours a { text-decoration: underline; padding-block: .4rem; }
.intro { display: grid; grid-template-columns: 1fr 1.5fr; border-bottom: 1px solid var(--line); align-items: start; }
.intro > .eyebrow { padding-top: .75rem; }
.intro > div { max-width: 650px; }
.intro p:not(.eyebrow):not(.section-lead) { color: var(--muted); }
.text-link { display: inline-flex; align-items: center; justify-content: space-between; gap: 3rem; min-height: 48px; border-bottom: 1px solid var(--accent); padding: .5rem 0; font-size: .875rem; }
.text-link span { color: var(--accent); }
.feature { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem; }
.feature h2 { margin-bottom: 1.2rem; }
.favorites { width: 100%; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 3.5rem; margin-top: 2rem; }
.favorites article { padding-top: 2rem; border-top: 1px solid var(--line); }
.favorites p { color: var(--muted); font-size: 1rem; }
.favorites article > span:last-child { font-size: 1rem; }
/* Inner pages */
.page-heading { width: min(var(--page-width), 88%); margin: auto; padding: 100px 0 80px; border-bottom: 1px solid var(--line); }
.page-heading h1 { margin-bottom: 2rem; }
.page-heading > p:last-child { color: var(--muted); margin-bottom: 0; }
.page-heading .section-lead { margin-bottom: .75rem; }
.menu-layout { display: grid; grid-template-columns: 1fr 2.2fr; gap: 8%; padding-top: 85px; }
.category-nav { display: grid; margin-bottom: 2rem; }
.category-nav a { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--line); padding: 1.2rem 0; }
.category-nav span { color: var(--accent); font-size: .875rem; }
.menu-sections section { margin-bottom: 90px; }
.menu-sections .eyebrow { margin-bottom: 1.5rem; }
.menu-sections h2 { margin-bottom: 1rem; }
.category-jp { font-size: 1rem; margin-bottom: 2rem; color: var(--muted); }
.menu-list { margin: 0; }
.menu-list > div { display: flex; justify-content: space-between; gap: 1.5rem; border-bottom: 1px solid var(--line); padding: 1.75rem 0; }
.menu-list dt { font-size: 1.125rem; }
.menu-list small { display: block; font-size: 1rem; margin-top: .5rem; }
.menu-list dd { margin: 0; font-size: 1rem; white-space: nowrap; font-variant-numeric: tabular-nums; }
.story { display: grid; grid-template-columns: 1fr 1.2fr; align-items: center; gap: 10%; }
.story-title { background: var(--surface); min-height: 540px; display: flex; align-items: center; justify-content: center; flex-direction: column; }
.large-mark { font-family: "Yu Mincho", serif; font-size: 5rem; writing-mode: vertical-rl; letter-spacing: .4em; margin: 60px 0; color: var(--accent); }
.story-title .eyebrow { color: var(--muted); font-size: .625rem; }
.story-copy > p:not(.eyebrow):not(.section-lead) { color: var(--muted); }
.values { border-top: 1px solid var(--line); }
.access-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 8%; }
.shop-info { margin: 2rem 0 0; }
.shop-info > div { display: grid; grid-template-columns: 100px 1fr; gap: 1rem; border-bottom: 1px solid var(--line); padding: 1.5rem 0; }
.shop-info dt { color: var(--muted); }
.shop-info dd { margin: 0; }
.shop-info small { display: block; }
.visit-panel { background: var(--surface); padding: 45px; align-self: start; }
.visit-panel h2 { font-size: clamp(2.5rem, 3.5vw, 3.5rem); }
.directions { list-style: none; padding: 0; margin: 2rem 0; }
.directions li { display: flex; gap: 1.5rem; padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
.directions li > span { color: var(--accent); font-size: .875rem; }
.directions h3 { margin: 0 0 .5rem; font-size: 1rem; }
.directions p { color: var(--muted); margin: 0; }
.sample-note { font-size: .875rem; color: var(--muted); margin: 0; }
/* Footer */
.site-footer { background: var(--ink); color: var(--paper); padding: 85px max(6%, calc((100vw - var(--page-width))/2)) 28px; }
.footer-main { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; padding-bottom: 75px; }
.footer-brand { display: inline-block; font: 400 5rem/1 var(--serif); letter-spacing: -.06em; }
.footer-brand span { color: #c99987; }
.footer-identity .footer-jp { font-size: 1rem; letter-spacing: .2em; margin: 1.3rem 0 .75rem; }
.footer-identity > p:last-child { color: #d1c5b9; font-size: .875rem; }
.site-footer .eyebrow { color: #d1c5b9; margin: .5rem 0 1.5rem; }
.footer-hours p { font-size: .875rem; margin-bottom: 1rem; }
.footer-hours .hours { font-family: var(--serif); font-size: 1.75rem; }
.footer-link { display: inline-flex; gap: 2rem; min-height: 44px; align-items: center; font-size: .875rem; letter-spacing: .08em; border-bottom: 1px solid #837164; }
.site-footer a:hover { color: #d7aa98; }
.social-pending { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; font-size: 1rem; }
.social-pending small { color: #d1c5b9; font-size: .875rem; }
.footer-bottom { border-top: 1px solid #64564b; padding-top: 25px; display: flex; justify-content: space-between; gap: 1rem; font-size: .875rem; color: #d1c5b9; }
.skip-link { position: absolute; top: -100px; left: 1rem; z-index: 10; background: var(--ink); color: var(--paper); padding: 1rem; }
.skip-link:focus { top: 1rem; }
@media (max-width: 1100px) {
  .header-hours { display: none; }
  .site-header { gap: 1.5rem; }
  .hero { grid-template-columns: 1.1fr 1fr; }
  .hero h1 { font-size: clamp(3rem, 6.6vw, 5rem); }
  .hero-japanese { font-size: 1rem; }
  .hero-copy > p:not(.eyebrow):not(.hero-japanese):not(.hero-hours) { max-width: 30ch; }
  .favorites { gap: 2rem; }
  .story { gap: 6%; }
  .access-layout { gap: 5%; }
  .visit-panel { padding: 30px; }
}
@media (max-width: 760px) {
  .site-header { min-height: 100px; flex-wrap: wrap; gap: .5rem 1rem; padding-block: 12px; }
  .brand-jp { font-size: 1.7rem; }
  .main-nav { width: 100%; margin: 0; flex-wrap: wrap; justify-content: space-between; gap: .5rem 1rem; padding-bottom: .75rem; }
  .main-nav a { font-size: .75rem; }
  .js .nav-toggle { display: flex; align-items: center; gap: 1rem; margin-left: auto; padding: 8px 0 8px 12px; min-height: 44px; border: 0; background: transparent; color: var(--ink); font-size: .875rem; cursor: pointer; }
  .js .main-nav { display: none; }
  .js .main-nav.is-open { display: flex; }
  .section { padding-block: 80px; }
  .hero { margin-top: 38px; grid-template-columns: 1fr; padding-bottom: 45px; }
  .hero-copy { padding: 0 0 40px; }
  .hero h1 { font-size: clamp(2.8rem, 10vw, 4.7rem); white-space: normal; }
  .hero .eyebrow { font-size: .75rem; margin-bottom: 1.5rem; }
  .hero-japanese { font-size: 1rem; }
  .hero-copy > p:not(.eyebrow):not(.hero-japanese):not(.hero-hours) { max-width: none; }
  .hero-photo { height: 440px; height: clamp(320px, 100vw, 480px); margin: 0; }
  .photo-caption { font-size: .625rem; left: 20px; right: 20px; }
  .hero-note { font-size: .75rem; bottom: 3px; }
  .intro { grid-template-columns: 1fr; gap: 1rem; }
  .intro br { display: none; }
  .intro h2 br { display: initial; }
  .feature { gap: 1rem; }
  .favorites { grid-template-columns: 1fr; gap: 2.5rem; }
  .favorites article { padding-top: 1.5rem; }
  .page-heading { padding: 65px 0 55px; }
  .page-heading h1 { font-size: clamp(3rem, 11vw, 5rem); }
  .menu-layout, .story, .access-layout { grid-template-columns: 1fr; gap: 60px; }
  .menu-layout { padding-top: 50px; }
  .menu-layout aside > .eyebrow { margin-bottom: 1rem; }
  .menu-sections section { margin-bottom: 65px; }
  .menu-list > div { gap: 1rem; }
  .menu-list dt { font-size: 1rem; }
  .menu-list small { font-size: 1rem; }
  .story-title { min-height: 350px; }
  .large-mark { font-size: 4rem; margin: 40px 0; }
  .visit-panel { padding: 28px; }
  .shop-info > div { grid-template-columns: 76px 1fr; gap: .75rem; }
  .directions li { gap: 1rem; }
  .site-footer { padding-top: 60px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; padding-bottom: 50px; }
  .footer-identity { grid-column: 1 / -1; }
  .footer-brand { font-size: 4.5rem; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 380px) {
  .footer-main { grid-template-columns: 1fr; }
  .main-nav { gap: .5rem; }
  .main-nav a { letter-spacing: .06em; }
  .hero h1 { font-size: 2.8rem; }
  .visit-panel { padding: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* Finished home page. The generated image is a local, build-free asset. */
.home-hero { position: relative; isolation: isolate; min-height: 690px; min-height: min(820px, max(690px, calc(100svh - 126px))); display: flex; align-items: center; color: var(--paper); background: var(--ink); }
.home-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(35,27,22,.76), rgba(35,27,22,.57) 48%, rgba(35,27,22,.08) 100%); }
.home-hero-content { width: min(var(--page-width), 88%); margin-inline: auto; padding: 80px 0 115px; }
.home-hero .eyebrow { color: var(--paper); margin-bottom: 2rem; font-size: .75rem; }
.home-hero h1 { font-size: clamp(3.8rem, 7.1vw, 7.4rem); margin-bottom: 2.2rem; }
.home-hero-lead { font-size: 1.125rem; letter-spacing: .07em; margin-bottom: 1rem; }
.home-hero-description { max-width: 37rem; line-height: 2.1; }
.hero-link { display: inline-flex; gap: 4rem; align-items: center; padding: .7rem 0; min-height: 48px; border-bottom: 1px solid rgba(247,243,235,.7); font-size: .875rem; }
.hero-link:hover, .home-hero-bottom a:hover { color: var(--paper); border-color: var(--paper); background: rgba(247,243,235,.1); }
.home-hero-bottom { position: absolute; bottom: 28px; left: 6%; right: 6%; max-width: var(--page-width); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-size: .875rem; }
.hero-day { margin-left: 1rem; }
.home-hero-bottom a { display: inline-flex; min-height: 44px; align-items: center; gap: 1.5rem; font-size: .625rem; letter-spacing: .18em; }
.home-story { display: grid; grid-template-columns: 1fr 1fr; gap: 10%; align-items: center; }
.home-story h2 { margin-bottom: 0; }
.home-story-copy { max-width: 32rem; padding-top: 1rem; }
.home-story-copy p:not(.section-lead) { color: var(--muted); }
.home-story-copy .section-lead { font-size: 1.25rem; margin-bottom: 2rem; }
.home-favorites { border-top: 1px solid var(--line); }
.home-favorites-heading { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; }
.home-favorites-heading h2 { margin-bottom: 1.25rem; }
.home-favorites-heading .section-lead { margin-bottom: 0; }
.menu-cards { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; }
.menu-card { background: var(--surface); border: 1px solid var(--line); padding: clamp(24px, 3vw, 44px); display: flex; flex-direction: column; }
.menu-card > .eyebrow { margin-bottom: 3rem; }
.menu-card-en { font-family: var(--serif); font-size: clamp(2.6rem, 4vw, 4rem); line-height: 1.05; letter-spacing: -.04em; margin-bottom: 2.5rem; color: var(--accent); }
.menu-card h3 { margin: 0 0 1rem; font-size: 1.125rem; }
.menu-card-description { color: var(--muted); margin-bottom: 2rem; flex: 1; }
.menu-card-price { margin: 0; padding-top: 1.2rem; border-top: 1px solid var(--line); font-family: var(--serif); font-size: 1.75rem; }
.menu-card-price span { font-family: var(--sans); font-size: .875rem; color: var(--muted); margin-left: .6rem; }
.home-access { background: var(--surface); }
.home-access-inner { display: grid; grid-template-columns: 1.2fr 1fr; align-items: center; gap: 8%; padding-block: 105px; }
.home-access h2 { margin-bottom: 0; }
.home-access-copy > p:not(.section-lead) { color: var(--muted); }
.home-access-hours { font-family: var(--serif); font-size: 1.6rem; margin: 2rem 0 1rem; }
.home-access-hours span { font-family: var(--sans); font-size: .875rem; display: inline-block; margin-left: 1rem; }
@media (min-width: 1800px) { .home-hero::before { background: linear-gradient(90deg,rgba(35,27,22,.78),rgba(35,27,22,.6) 55%,rgba(35,27,22,.12)); } }
@media (max-width: 900px) { .menu-cards { gap: 16px; } .menu-card { padding: 24px; } .menu-card h3 { font-size: 1rem; } }
@media (max-width: 760px) {
  .home-hero { min-height: 690px; }
  .home-hero-image { object-position: 60% center; }
  .home-hero::before { background: rgba(35,27,22,.66); }
  .home-hero-content { padding: 65px 0 110px; }
  .home-hero h1 { font-size: clamp(2.9rem, 11.5vw, 5rem); }
  .home-hero .eyebrow { max-width: 28ch; font-size: .75rem; line-height: 1.9; }
  .home-hero-lead { font-size: 1rem; }
  .home-hero-description { font-size: 1rem; }
  .home-hero-bottom { bottom: 18px; align-items: flex-start; flex-wrap: wrap; gap: .25rem 1rem; }
  .home-hero-bottom a { font-size: .625rem; }
  .home-story, .home-access-inner { grid-template-columns: 1fr; gap: 40px; }
  .home-story-copy { padding-top: 0; }
  .desktop-break { display: none; }
  .home-favorites-heading { align-items: flex-start; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
  .menu-cards { grid-template-columns: 1fr; gap: 20px; }
  .menu-card { padding: 32px; }
  .menu-card > .eyebrow { margin-bottom: 2rem; }
  .menu-card-en { font-size: 3.4rem; margin-bottom: 2rem; }
  .menu-card h3 { font-size: 1.125rem; }
  .home-access-inner { padding-block: 80px; }
}

/* Menu photographs retain their full original aspect ratio on every screen. */
.menu-card { padding: 0; min-width: 0; }
.menu-card-image { display: block; width: 100%; height: auto; }
.menu-card-body { display: flex; flex-direction: column; flex: 1; padding: clamp(24px, 2.5vw, 36px); }
.menu-card-body > .eyebrow { margin-bottom: 1.25rem; }
.menu-card-description { flex: 1; }

/* Story image: preserve the full composition without cropping. */
.home-story > * { min-width: 0; }
.home-story-image { display: block; width: 100%; height: auto; margin-top: 2.5rem; }

/* Inner pages share the home page's quiet typography, paper and photo treatment. */
[hidden] { display: none !important; }
.catalog { padding-top: 55px; }
.menu-filters { display: flex; gap: 12px; flex-wrap: wrap; }
.menu-filters button { border: 1px solid var(--line); background: transparent; color: var(--ink); min-height: 48px; padding: 10px 28px; cursor: pointer; }
.menu-filters button:hover { border-color: var(--accent); }
.menu-filters button[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: var(--paper); }
.filter-status { font-size: .875rem; color: var(--muted); margin: 22px 0 55px; }
.catalog-category { margin-bottom: 90px; }
.catalog-category h2 { margin-bottom: 1rem; }
.catalog-category h2 span { color: var(--accent); }
.catalog-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; align-items: start; }
.catalog-item { border: 1px solid var(--line); background: var(--surface); min-width: 0; }
.catalog-image, .concept-photo img { display: block; width: 100%; height: auto; }
.catalog-copy { padding: 28px; }
.catalog-copy h3 { margin: 0 0 1rem; }
.catalog-copy > p:not(.catalog-price) { color: var(--muted); }
.catalog-copy .catalog-price { font: 1.6rem/1.5 var(--serif); border-top: 1px solid var(--line); padding-top: 20px; margin: 0; }
.catalog-price small { font-family: var(--sans); margin-left: .5rem; }
.catalog-note { border-top: 1px solid var(--line); padding-top: 30px; color: var(--muted); font-size: .875rem; }
.concept-photo { margin: 0; min-width: 0; }
.concept-photo figcaption { margin-top: 1rem; color: var(--muted); font-size: .875rem; }
.cafe-details { border-top: 1px solid var(--line); }
.details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 45px 0 30px; }
.details-grid > div { background: var(--surface); padding: 32px; }
.details-grid dt { font-size: .75rem; color: var(--accent); letter-spacing: .12em; }
.details-grid dt span { display: block; color: var(--muted); font-size: .875rem; margin-top: .4rem; }
.details-grid dd { margin: 1.5rem 0 0; font-size: 1.25rem; }
.details-grid small { display: block; margin-top: .5rem; }
.access-content { padding-top: 55px; }
.fiction-notice { padding: 25px 30px; border-left: 3px solid var(--accent); background: var(--surface); margin-bottom: 70px; }
.fiction-notice .eyebrow { margin-bottom: .75rem; }
.fiction-notice p:last-child { margin: 0; }
.access-summary { margin: 0; }
.map-section { padding-top: 0; }
.map-description { max-width: 850px; color: var(--muted); }
.access-map { display: block; width: 100%; height: 480px; border: 1px solid var(--line); background: var(--surface); margin: 35px 0 20px; }
.map-caption { display: flex; align-items: start; justify-content: space-between; gap: 20px; font-size: .875rem; color: var(--muted); }
.map-section > .small a { text-decoration: underline; }
@media (max-width: 1000px) { .catalog-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (max-width: 760px) {
 .catalog-grid, .details-grid { grid-template-columns: 1fr; }
 .menu-filters { gap: 8px; }
 .menu-filters button { padding: 10px 18px; }
 .catalog-category { margin-bottom: 65px; }
 .details-grid > div, .catalog-copy { padding: 26px; }
 .fiction-notice { padding: 22px; margin-bottom: 45px; }
 .access-map { height: 380px; }
 .map-caption { flex-direction: column; }
 .map-caption .text-link { margin-bottom: 1rem; }
}

/* Motion is an enhancement; no reveal target is hidden in CSS. */
.button, .text-link, .hero-link, .menu-filters button, .back-to-top,
.menu-card, .catalog-item { transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, border-color .25s ease, color .25s ease; }
@media (hover: hover) and (pointer: fine) {
  .button:hover, .hero-link:hover, .menu-filters button:hover { transform: translateY(-2px); }
  .text-link:hover { transform: translateX(3px); }
  .menu-card:hover, .catalog-item:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: 0 12px 25px rgba(48,41,35,.08); }
  .back-to-top:hover { transform: translateY(-3px); background: var(--accent); color: var(--paper); }
}
.button:active, .menu-filters button:active, .back-to-top:active { transform: translateY(0); }
.hamburger { position: relative; width: 24px; height: 18px; display: block; }
.hamburger span { display: block; position: absolute; left: 0; width: 24px; height: 1.5px; background: currentColor; transition: transform .25s ease, opacity .2s ease; }
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }
.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.back-to-top { position: fixed; right: max(24px, env(safe-area-inset-right)); bottom: max(24px, env(safe-area-inset-bottom)); z-index: 20; display: flex; flex-direction: column; justify-content: center; align-items: center; width: 56px; height: 64px; background: var(--paper); color: var(--ink); border: 1px solid var(--line); box-shadow: 0 3px 16px rgba(48,41,35,.12); line-height: 1.2; }
.back-to-top > span:first-child { font-size: 1.5rem; }
.top-label { font-size: .625rem; letter-spacing: .12em; margin-top: 4px; }
.site-footer { padding-bottom: 105px; }
@media (max-width: 760px) {
 .js .nav-toggle { width: 48px; height: 48px; padding: 12px; justify-content: center; }
 .js .main-nav.is-open { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 20px; padding-top: 12px; }
 .main-nav a { min-height: 48px; }
 .back-to-top { right: max(16px, env(safe-area-inset-right)); bottom: max(16px, 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, .hero-link:hover, .menu-filters button:hover, .text-link:hover,
 .menu-card:hover, .catalog-item:hover, .back-to-top:hover { transform: none; }
}
