/* Shared design system — no build step or external dependencies. */
:root {
  --paper: #f8f5ee;
  --surface: #efebe2;
  --ink: #302823;
  --muted: #756b63;
  --accent: #9b604c;
  --line: #dcd4c9;
  --serif: "Baskerville", "Times New Roman", "Yu Mincho", serif;
  --sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", 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: 14px; line-height: 2; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
a, button { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 6px; }
::selection { background: #dfc6b9; color: var(--ink); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; line-height: 1.05; letter-spacing: -.04em; }
h1 { font-size: clamp(64px, 7.7vw, 112px); }
h2 { font-size: clamp(46px, 4.8vw, 68px); margin-bottom: 26px; }
h3 { font-weight: 500; font-size: 16px; }
em { font-weight: 400; }
p { color: var(--muted); }
small { font-size: 11px; }
.wrap { width: min(1180px, 86%); margin-inline: auto; }
.eyebrow { font: 500 10px/1.6 Arial, sans-serif; letter-spacing: .23em; color: var(--accent); margin-bottom: 27px; }
.section { padding-block: 130px; }
.section-subtitle { font-size: 14px; letter-spacing: .06em; line-height: 2; }
.header { border-bottom: 1px solid var(--line); }
.header-inner { width: min(1320px, 88%); min-height: 116px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.brand { display: flex; flex-direction: column; }
.brand-name { font: 38px/1.1 var(--serif); letter-spacing: -.04em; }
.brand-caption { font-size: 8px; letter-spacing: .14em; margin-top: 10px; }
.header nav { display: flex; gap: 38px; }
.header nav a { font: 11px/2 Arial, sans-serif; letter-spacing: .13em; padding: 15px 0; position: relative; }
.header nav a::after { content: ""; position: absolute; bottom: 5px; left: 0; width: 100%; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .2s; }
.header nav a:hover::after, .header nav a[aria-current="page"]::after { transform: scaleX(1); }
.header nav a[aria-current="page"] { color: var(--accent); }
.nav-toggle { display: none; }
.hero { display: grid; grid-template-columns: 1fr 1fr; gap: 6%; align-items: center; padding-block: 74px 84px; }
.hero h1 { margin: 0 0 35px; }
.hero h1 em { color: var(--accent); }
.hero-japanese { font-size: 14px; color: var(--ink); letter-spacing: .035em; margin-bottom: 24px; }
.lead { font-size: 12px; line-height: 2.3; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: space-between; gap: 65px; border: 1px solid var(--ink); padding: 14px 24px; font-size: 12px; margin-top: 22px; transition: color .2s, background .2s; }
.button:hover { background: var(--ink); color: var(--paper); }
.button span { font-size: 19px; line-height: 1; }
.hero-note { font: 9px/2 Arial, sans-serif; letter-spacing: .13em; margin: 32px 0 0; }
.hero-note span { margin-left: 20px; }
.news { display: flex; align-items: baseline; gap: 30px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding-block: 24px; font-size: 11px; }
.news .eyebrow, .news p { margin: 0; }
.news p { flex: 1; }
.news time { font: 10px Arial, sans-serif; color: var(--muted); }
.news a { white-space: nowrap; border-bottom: 1px solid var(--line); }
.intro { display: grid; grid-template-columns: 1fr 1fr; gap: 10%; align-items: center; }
.intro > div:last-child { padding-top: 25px; }
.intro p:not(.eyebrow):not(.section-subtitle) { line-height: 2.6; font-size: 13px; margin-bottom: 25px; }
.text-link { display: inline-flex; align-items: center; gap: 55px; font-size: 12px; border-bottom: 1px solid var(--ink); padding: 10px 0; transition: color .2s; }
.text-link:hover { color: var(--accent); }
.featured { background: var(--surface); }
.section-heading { display: flex; justify-content: space-between; gap: 25px; align-items: center; margin-bottom: 52px; }
.section-heading h2 { margin-bottom: 19px; }
.section-heading .section-subtitle { margin-bottom: 0; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.card-title { display: flex; justify-content: space-between; align-items: baseline; gap: 15px; margin-top: 25px; }
.card-title h3 { margin-bottom: 12px; font-size: 15px; }
.card-title > span { font: 14px var(--serif); white-space: nowrap; }
.card p { font-size: 11px; line-height: 2; }
.visit { text-align: center; padding-block: 135px; }
.visit h2 { font-size: clamp(47px, 5.8vw, 78px); }
.visit > p:not(.eyebrow) { font-size: 13px; }
.visit .section-subtitle { color: var(--ink); margin-top: 30px; }
.footer { background: #302823; color: var(--paper); padding: 72px 7% 25px; }
.footer-inner, .footer-bottom { max-width: 1180px; margin-inline: auto; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr .8fr; gap: 45px; }
.footer-brand { font: 48px/1 var(--serif); letter-spacing: -.04em; }
.footer-brand span { display: block; font: 10px/2 var(--sans); letter-spacing: .2em; margin-top: 16px; }
.footer-tagline { font-size: 11px; color: #c6bcb2; margin-top: 19px; }
.footer .eyebrow { color: #cbb2a4; font-size: 9px; margin-bottom: 23px; }
.footer-hours p:not(.eyebrow) { font: 23px/1.5 var(--serif); color: var(--paper); }
.footer-hours small, .footer-social small { display: block; font: 10px/2 var(--sans); margin-top: 12px; color: #c6bcb2; }
.footer-social a { display: flex; justify-content: space-between; border-bottom: 1px solid #746359; padding-bottom: 9px; font: 20px/1.5 var(--serif); }
.footer-social a:hover { color: #ddc0af; }
.footer-bottom { border-top: 1px solid #5b5047; padding-top: 24px; margin-top: 65px; display: flex; justify-content: space-between; align-items: center; gap: 20px; color: #c6bcb2; }
.footer-bottom small, .footer-bottom a { font-size: 9px; letter-spacing: .07em; }
.page-heading { padding-block: 100px 78px; }
.page-heading h1 { font-size: clamp(58px, 7vw, 96px); margin-bottom: 35px; }
.page-heading .page-subtitle { font-size: 16px; color: var(--ink); margin-bottom: 12px; letter-spacing: .07em; }
.page-heading > p:last-child { font-size: 12px; }
.menu-section { padding-bottom: 110px; }
.filters { display: flex; gap: 32px; flex-wrap: wrap; border-bottom: 1px solid var(--line); }
.filters button { min-height: 48px; border: 0; border-bottom: 2px solid transparent; background: transparent; color: var(--muted); padding: 8px 4px 17px; font-size: 13px; }
.filters button[aria-pressed="true"] { border-bottom-color: var(--accent); color: var(--accent); }
.filters button:hover { color: var(--ink); }
.menu-note { font-size: 11px; margin: 27px 0 45px; }
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 75px; }
.menu-item { border-top: 1px solid var(--line); padding: 32px 0 36px; }
.menu-item .eyebrow { font-size: 9px; }
.menu-item h3 { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; font: 500 17px/1.9 var(--sans); letter-spacing: 0; margin: 16px 0 10px; }
.menu-item h3 span { font: 19px var(--serif); white-space: nowrap; }
.menu-item p { font-size: 12px; margin-bottom: 0; }
.filter-status { font-size: 11px; min-height: 22px; }
.story-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 9%; align-items: center; }
.story-art { background: #e4ddd1; height: 560px; position: relative; overflow: hidden; padding: 65px 45px; }
.story-art > span { font: 64px/1.15 var(--serif); letter-spacing: -.045em; position: relative; z-index: 1; }
.story-circle { width: 370px; height: 370px; border-radius: 50%; background: #f0e9de; position: absolute; bottom: -50px; right: -140px; box-shadow: -65px -55px 0 #c5b3a580; }
.story-art small { position: absolute; bottom: 30px; left: 35px; font-size: 8px; letter-spacing: .18em; }
.story-copy p:not(.eyebrow) { font-size: 12px; line-height: 2.5; }
.story-copy .section-subtitle { color: var(--ink); }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 45px; margin-top: 60px; }
.values article { border-top: 1px solid var(--line); padding-top: 26px; }
.values article > span { font: italic 35px var(--serif); color: var(--accent); }
.values h3 { margin: 25px 0 18px; }
.values p { font-size: 12px; line-height: 2.3; }
.access-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 7%; align-items: start; }
.shop-info h2 { font: 400 24px/1.6 var(--sans); letter-spacing: .08em; }
.shop-info dl { margin: 0; }
.shop-info dl > div { display: grid; grid-template-columns: 72px 1fr; gap: 18px; padding: 17px 0; border-top: 1px solid var(--line); font-size: 12px; }
.shop-info dt { color: var(--muted); }
.shop-info dd { margin: 0; }
.shop-info dd small { color: var(--muted); font-size: 10px; }
.access-message { margin-block: 100px 120px; padding: 65px 35px; text-align: center; background: var(--surface); }
.access-message p:not(.eyebrow) { font-size: 12px; }
.skip-link { position: fixed; top: -100px; left: 20px; padding: 10px 20px; background: var(--ink); color: white; z-index: 100; }
.skip-link:focus { top: 15px; }
[hidden] { display: none !important; }
.hero-art{height:580px;position:relative;overflow:hidden;background:linear-gradient(135deg,#9a9f80,#d8c39d 45%,#b9956b);border-radius:48% 48% 2px 2px;isolation:isolate}.window-light{position:absolute;inset:0;background:repeating-linear-gradient(112deg,transparent 0 80px,#f9ebc16e 82px 145px,transparent 148px 190px);filter:blur(3px)}.table-line{position:absolute;inset:70% -20% auto;height:2px;background:#735a3726;transform:rotate(-25deg)}.branch{position:absolute;top:5%;right:-40px;width:210px;height:55px;background:#3b503bd9;border-radius:100% 0 100% 0;transform:rotate(-35deg);filter:blur(2px);box-shadow:-60px 50px 0 #465539aa,-120px 100px 0 #4d60378c}.branch-two{top:22%;right:-90px;transform:rotate(-75deg);opacity:.5}.saucer{position:absolute;left:19%;top:35%;width:63%;aspect-ratio:1;border-radius:50%;background:radial-gradient(circle at 40% 35%,#f9f3df 0 50%,#d4ccb7 65%,#fcf7e6 69%,#d5c9b1 74%);box-shadow:18px 30px 22px #47331b55;transform:rotate(-15deg)}.cup{position:absolute;inset:17%;border:10px solid #f6f1df;border-radius:50%;background:#f8f2df;box-shadow:8px 12px 15px #6b513958}.cup:after{content:"";position:absolute;left:96%;top:32%;width:30%;height:27%;border:9px solid #eee7d3;border-radius:10px 45% 45% 10px;z-index:-1}.coffee{height:100%;border-radius:50%;background:radial-gradient(ellipse at 25% 20%,#c39860 0,#785032 20%,#3d2418 70%);box-shadow:inset 0 0 0 3px #b2854c,inset 0 4px 12px #28190f}.spoon{position:absolute;bottom:15%;right:18%;width:9px;height:100px;border-radius:8px;background:linear-gradient(90deg,#96836a,#e1d9c3,#998b73);transform:rotate(30deg);box-shadow:5px 6px 7px #63442350}.spoon:before{content:"";position:absolute;top:-25px;left:-7px;width:23px;height:38px;border-radius:50%;background:linear-gradient(110deg,#b1a087,#e5decc,#867660)}.art-label{position:absolute;left:10%;top:20%;color:#fff9e6;font:italic 29px Georgia,serif;transform:rotate(-10deg)}.art-caption{position:absolute;bottom:22px;left:0;right:0;text-align:center;font-size:8px;letter-spacing:3px;color:#f8f4e8}.food-art{height:235px;position:relative;display:flex;justify-content:center;align-items:center;overflow:hidden}.food-art>span{position:absolute;bottom:13px;left:17px;font-size:8px;letter-spacing:2px}.drink-art{background:#d6d9c7;font-size:100px}.pudding-art{background:#e7d9c3}.toast-art{background:#dcc9a9}.pudding{width:115px;height:98px;border-radius:45% 45% 25% 25%;background:linear-gradient(#75442b 0 17%,#b27942 18%,#e5b866 30%,#f0cd87);transform:perspective(220px) rotateX(12deg);box-shadow:0 15px 0 17px #eee9d9,10px 24px 17px 10px #725a3833}.toast{width:118px;height:132px;border:10px solid #aa6734;border-radius:35% 35% 12% 12%;background:radial-gradient(#e9ba67,#d79c4e);transform:rotate(-16deg);box-shadow:10px 10px 0 #f0e5ce,15px 16px 15px #68432030}.toast:after{content:"";position:absolute;width:35px;height:28px;left:30px;top:39px;background:#f7db87;box-shadow:2px 3px 2px #c28c3b}.map{height:450px;background:#e7e5d9;position:relative;overflow:hidden;border:10px solid #eeece3}.map-road{background:#fcfaf2;position:absolute}.road-vertical{height:100%;width:44px;left:38%;transform:rotate(10deg)}.road-horizontal{width:110%;height:40px;top:47%;transform:rotate(-8deg)}.map-park{position:absolute;left:7%;top:16%;background:#c7d1b6;padding:28px 15px;border-radius:40%;font-size:12px}.map-station{position:absolute;bottom:48px;left:20%;background:#8b9989;color:white;padding:8px 18px;font-size:12px}.map-cafe{position:absolute;right:8%;top:27%;text-align:center;font-family:var(--serif);font-size:20px;line-height:1.6;color:#815637}.map-north{position:absolute;right:18px;top:15px;font-size:12px}.map-note{position:absolute;bottom:10px;left:0;right:0;text-align:center;font-size:9px}/* Tonal illustrations: coffee, ceramics and natural paper. */
.hero-art { height: 590px; border-radius: 1px; background: linear-gradient(135deg,#958a7b,#d5c7b2 48%,#ad9580); filter: saturate(.4); }
.branch { background: #564b3cd9; box-shadow: -60px 50px 0 #625443aa,-120px 100px 0 #75634a8c; }
.art-label { top: 14%; font-size: 28px; }
.art-caption { color: #302823; font-size: 8px; }
.food-art { height: 285px; filter: saturate(.35); }
.drink-art { background: #ddd5c8; }
.pudding-art { background: #e4d9ca; }
.toast-art { background: #d8caba; }
.food-art > span { font: 8px/1.5 Arial,sans-serif; letter-spacing: .17em; bottom: 17px; left: 20px; }
.mini-saucer { position: relative; width: 152px; height: 152px; border-radius: 50%; background: radial-gradient(circle,#ddd3bf 50%,#f6f0e4 53%,#e7dfd1 70%); box-shadow: 12px 17px 19px #59422c25; }
.mini-cup { position: absolute; inset: 28px; border: 8px solid #f6f0e4; border-radius: 50%; background: radial-gradient(circle at 30% 25%,#956b4a,#3c261a 80%); box-shadow: 5px 6px 7px #4e392d40; }
.mini-cup:after { content: ""; position: absolute; width: 20px; height: 26px; right: -26px; top: 25px; border: 7px solid #f6f0e4; border-left: 0; border-radius: 0 45% 45% 0; }
.map { height: 510px; background: #e8e1d6; border: 12px solid var(--surface); }
.map-road { background: var(--paper); }
.map-park { background: #d6cbbd; }
.map-station { background: #796c5e; }
.map-cafe { color: var(--accent); }
@media (max-width: 1050px) {
  .header nav { gap: 25px; }
  .hero { gap: 4%; }
  .hero-art { height: 525px; }
  .hero h1 { font-size: 84px; }
  .hero-japanese { font-size: 12px; }
  .intro br { display: none; }
  .food-art { height: 235px; }
  .card-title { flex-wrap: wrap; gap: 0 15px; }
  .story-art { padding: 55px 30px; }
  .story-art > span { font-size: 53px; }
  .menu-grid { column-gap: 40px; }
}
@media (max-width: 760px) {
  .wrap { width: 86%; }
  .header-inner { min-height: 96px; flex-wrap: wrap; gap: 0; width: 88%; }
  .brand-name { font-size: 33px; }
  .brand-caption { font-size: 7px; margin-top: 8px; }
  .header nav { width: 100%; justify-content: space-between; gap: 12px; padding: 0 0 17px; }
  .header nav a { font-size: 9px; padding-block: 12px; }
  .js-ready .nav-toggle { display: flex; align-items: center; gap: 12px; min-height: 44px; border: 0; background: none; color: var(--ink); padding: 8px 0 8px 10px; font: 9px Arial,sans-serif; letter-spacing: .1em; }
  .toggle-lines { width: 20px; height: 7px; border-top: 1px solid; border-bottom: 1px solid; transition: transform .2s; }
  .nav-toggle[aria-expanded="true"] .toggle-lines { transform: rotate(-45deg); }
  .js-ready .header nav { display: none; }
  .js-ready .header nav.is-open { display: flex; }
  .hero { grid-template-columns: 1fr; padding-block: 56px 50px; gap: 44px; }
  .hero h1 { font-size: clamp(74px, 15vw, 104px); margin-bottom: 28px; }
  .hero .eyebrow { font-size: 8px; margin-bottom: 28px; }
  .hero-japanese { font-size: 12px; }
  .hero-art { width: 100%; height: auto; aspect-ratio: 4/4.6; max-height: 580px; }
  .hero-note { margin-top: 26px; }
  .news { flex-wrap: wrap; gap: 12px 18px; }
  .news .eyebrow { font-size: 8px; }
  .news p { flex-basis: 100%; order: 3; font-size: 11px; }
  .news a { margin-left: auto; font-size: 10px; }
  .section { padding-block: 80px; }
  .intro { grid-template-columns: 1fr; gap: 12px; }
  h2 { font-size: 51px; }
  .intro > div:last-child { padding-top: 0; }
  .intro p:not(.eyebrow):not(.section-subtitle) { font-size: 12px; }
  .section-heading { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 35px; }
  .section-heading h2 { font-size: clamp(40px, 9vw, 58px); }
  .cards { grid-template-columns: 1fr; gap: 40px; }
  .food-art { height: auto; aspect-ratio: 1.3; }
  .card-title { flex-wrap: nowrap; margin-top: 22px; }
  .card-title h3 { font-size: 14px; }
  .visit h2 { font-size: 46px; }
  .footer { padding-top: 60px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 38px 24px; }
  .footer-inner > div:first-child { grid-column: 1/-1; }
  .footer-hours p:not(.eyebrow) { font-size: 21px; }
  .footer .eyebrow { font-size: 8px; }
  .footer-hours small,.footer-social small { font-size: 9px; }
  .footer-bottom { margin-top: 42px; flex-wrap: wrap; gap: 14px; }
  .footer-bottom > small:nth-child(2) { order: 3; width: 100%; font-size: 8px; }
  .footer-bottom a { margin-left: auto; }
  .page-heading { padding-block: 65px 48px; }
  .page-heading h1 { font-size: 60px; }
  .page-heading .page-subtitle { font-size: 14px; }
  .menu-section { padding-bottom: 70px; }
  .filters { gap: 25px; }
  .filters button { font-size: 12px; }
  .menu-grid,.story-layout,.access-layout { grid-template-columns: 1fr; }
  .menu-item h3 { font-size: 15px; }
  .menu-item h3 span { font-size: 19px; }
  .story-layout { gap: 60px; }
  .story-art { height: 400px; padding: 45px 30px; }
  .story-art > span { font-size: 62px; }
  .values { grid-template-columns: 1fr; gap: 25px; margin-top: 40px; }
  .values h3 { margin-top: 20px; }
  .access-layout { gap: 45px; }
  .map { height: 390px; }
  .map-park { padding: 25px 10px; font-size: 10px; }
  .map-cafe { font-size: 17px; }
  .access-message { margin-block: 65px 80px; padding: 50px 25px; }
  .access-message h2 { font-size: 43px; }
}
@media (max-width: 360px) {
  .hero h1 { font-size: 68px; }
  .brand-caption { font-size: 6px; }
  .filters { gap: 20px; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
/* Photography-led homepage. Images retain their natural proportions. */
.hero-photo { display: block; position: relative; isolation: isolate; min-height: 710px; padding: 95px 0; overflow: hidden; background: #302823; }
.hero-background { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: -2; }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(28,22,18,.65),rgba(28,22,18,.28) 55%,rgba(28,22,18,.04)); z-index: -1; }
.hero-photo .hero-copy { max-width: 650px; }
.hero-photo h1, .hero-photo h1 em { color: #faf5ec; }
.hero-photo .eyebrow { color: #e4d0c1; }
.hero-photo .hero-japanese, .hero-photo .lead, .hero-photo .hero-note { color: #f1e7db; }
.hero-photo .button { color: #faf5ec; border-color: #d7c8ba; }
.hero-photo .button:hover { background: #faf5ec; color: var(--ink); }
.editorial-image { display: block; width: 100%; max-width: 100%; height: auto; object-fit: contain; }
.intro.with-photo { grid-template-columns: 1fr 1fr; align-items: center; }
.intro.with-photo .intro-copy { padding: 0; }
.intro.with-photo .intro-copy p:not(.eyebrow) { line-height: 2.3; }
.image-caption { margin-top: 16px; font: 9px/1.8 Arial,sans-serif; letter-spacing: .17em; color: var(--muted); }
.intro figure, .card figure { margin: 0; }
.card-photo { display: block; width: 100%; max-width: 100%; height: auto; object-fit: contain; }
.card .image-caption { margin-bottom: 0; }
.facilities { background: var(--surface); }
.facilities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 70px; margin: 50px 0 25px; }
.facilities-grid > div { padding: 28px 0; border-top: 1px solid var(--line); }
.facilities-grid dt { font: 10px/1.8 Arial,sans-serif; letter-spacing: .17em; color: var(--accent); }
.facilities-grid dt span { margin-left: 12px; font: 11px var(--sans); letter-spacing: 0; color: var(--muted); }
.facilities-grid dd { margin: 15px 0 0; font-size: 20px; }
.facilities-grid dd small { display: block; margin-top: 9px; font-size: 11px; color: var(--muted); }
.sample-note { font-size: 11px; line-height: 2; }
.osm-map { display: block; width: 100%; height: 480px; border: 1px solid var(--line); background: var(--surface); }
.map-panel .text-link { font-size: 11px; }
@media (max-width: 760px) {
 .hero-photo { min-height: 690px; padding-block: 70px; }
 .hero-background { object-position: 63% center; }
 .hero-photo::after { background: rgba(28,22,18,.52); }
 .hero-photo .hero-japanese { max-width: 26em; }
 .intro.with-photo { grid-template-columns: 1fr; gap: 40px; }
 .intro.with-photo figure { order: 2; }
 .facilities-grid { grid-template-columns: 1fr; margin-top: 35px; }
 .facilities h2 { font-size: 46px; }
 .osm-map { height: 380px; }
}
.story-layout > figure { margin: 0; }
.card-photo, .editorial-image { filter: saturate(.65); }

/* Category headings stay visible when their products are selected. */
.menu-category { margin-top: 60px; }
.menu-category > .eyebrow { margin-bottom: 14px; }
.menu-category > h2 { font-size: 48px; margin-bottom: 30px; }
.menu-category > h2 span { display: inline-block; margin-left: 20px; font: 12px/2 var(--sans); letter-spacing: .05em; color: var(--muted); }
.map-panel, .shop-info { min-width: 0; }
@media (max-width: 760px) {
  .menu-category { margin-top: 42px; }
  .menu-category > h2 { font-size: 42px; }
}
/* Optional interactions; no content is hidden for scroll animations. */
.toggle-lines { position: relative; }
.toggle-lines::after { content: ""; position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background: currentColor; transform: translateY(-50%); }
.back-to-top { position: fixed; right: max(22px, env(safe-area-inset-right)); bottom: max(22px, env(safe-area-inset-bottom)); z-index: 20; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 52px; height: 58px; border: 1px solid var(--line); background: var(--paper); color: var(--ink); box-shadow: 0 3px 15px #30282312; transition: transform .2s, background .2s, color .2s; }
.back-to-top > span:first-child { font-size: 22px; line-height: 1.2; }
.back-to-top-label { font: 8px/1.6 Arial, sans-serif; letter-spacing: .12em; }
.card { transition: transform .3s, box-shadow .3s; }
.button { transition: transform .2s, color .2s, background .2s; }
.filters button { transition: color .2s, background .2s; }
@media (hover: hover) and (pointer: fine) {
  .card:hover { transform: translateY(-5px); box-shadow: 0 14px 25px -20px #30282360; }
  .button:hover { transform: translateY(-2px); }
  .back-to-top:hover { transform: translateY(-3px); background: var(--ink); color: var(--paper); }
  .filters button:hover { background: var(--surface); }
}
@media (max-width: 760px) {
  .toggle-lines { height: 13px; }
  .nav-toggle[aria-expanded="true"] .toggle-lines { transform: none; border-color: transparent; }
  .nav-toggle[aria-expanded="true"] .toggle-lines::before,
  .nav-toggle[aria-expanded="true"] .toggle-lines::after { content: ""; position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background: currentColor; transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .toggle-lines::after { transform: rotate(-45deg); }
  .back-to-top { right: max(14px, env(safe-area-inset-right)); bottom: max(14px, env(safe-area-inset-bottom)); width: 46px; height: 50px; }
  .footer-bottom { padding-right: 50px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card:hover, .button:hover, .back-to-top:hover { transform: none; }
  *, *::before, *::after { transition: none !important; }
}
