/* Design tokens: warm paper, botanical greens, aged brass. System fonts and
   local SVG/WebP assets keep the site independent of third-party requests. */
:root {
  --paper: #f5f1e7;
  --paper-light: #fcfaf4;
  --ink: #293e32;
  --muted: #656a5c;
  --sage: #dce2d1;
  --green: #334b38;
  --gold: #9a7c45;
  --line: #d9d8c8;
  --serif: 'Iowan Old Style', 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  --sans: 'Avenir Next', Avenir, 'Segoe UI', sans-serif;
  --content: 1200px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 115px; }
body { margin: 0; overflow-x: clip; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 15px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
body.modal-open { overflow: hidden; }
/* Clip decorative vines without creating a scroll container for the header. */
#app { overflow: clip; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; cursor: pointer; }
button { border: 0; }
a { color: inherit; text-decoration: none; }
button, a, input { touch-action: manipulation; }
button:focus-visible, a:focus-visible, input:focus-visible { outline: 2px solid var(--gold); outline-offset: 5px; }
button:disabled { cursor: wait; }
img { display: block; max-width: 100%; height: auto; }
figure, p { margin: 0; }
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 400; }
h1, h2 { letter-spacing: -.055em; line-height: 1.06; text-wrap: balance; }
h1 { font-size: clamp(56px, 6.3vw, 91px); }
h2 { font-size: clamp(40px, 4.4vw, 64px); }
em { font-weight: 400; color: #758363; }
h1 em, h2 em { display: block; }
::selection { background: #d7dfc5; color: var(--ink); }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.section-wrap { width: min(var(--content), calc(100% - 100px)); margin-inline: auto; }
.icon { width: 22px; height: 22px; flex: 0 0 auto; display: inline-block; vertical-align: middle; }
.eyebrow { font-size: 10px; font-weight: 600; line-height: 1.6; letter-spacing: .19em; text-transform: uppercase; margin-bottom: 24px; }
.button { display: inline-flex; justify-content: center; align-items: center; gap: 26px; min-height: 52px; padding: 14px 23px; background: var(--green); color: var(--paper-light); font-size: 12px; font-weight: 500; border: 1px solid var(--green); transition: background .2s, transform .2s; }
.button:hover { background: #496047; transform: translateY(-2px); }
.button .icon { width: 19px; }
.text-link { display: inline-flex; align-items: center; justify-content: space-between; gap: 24px; padding: 8px 0; border-bottom: 1px solid #a6ac96; font-size: 12px; font-weight: 500; }
.text-link:hover .icon { transform: translateX(4px); }
.text-link .icon { transition: transform .2s; width: 18px; }
.icon-button { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: var(--paper-light); }
.small-note { display: block; font-size: 12px; }
.skip-link { position: fixed; left: 20px; top: -100px; z-index: 100; background: var(--green); color: white; padding: 10px 20px; }
.skip-link:focus { top: 10px; }
.initial-loader { width: 34px; height: 34px; border: 1px solid var(--line); border-top-color: var(--ink); border-radius: 50%; margin: 35vh auto; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Shared navigation */
.site-header { position: sticky; top: 0; z-index: 30; background: #f5f1e7f5; border-bottom: 1px solid var(--line); }
.header-inner { width: min(1380px, calc(100% - 72px)); margin: auto; min-height: 99px; display: flex; justify-content: space-between; align-items: center; gap: 32px; }
.brand { width: 121px; flex-shrink: 0; }
.brand img { width: 121px; height: 62px; object-fit: contain; filter: brightness(.48) saturate(.7); }
.main-nav { display: flex; align-items: center; gap: 29px; }
.main-nav a { font-size: 11px; white-space: nowrap; padding: 10px 0; border-bottom: 1px solid transparent; }
.main-nav a:hover, .main-nav a[aria-current] { border-bottom-color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: 25px; }
.header-book { min-height: 43px; padding: 9px 17px; font-size: 10px; gap: 17px; }
.language-picker { position: relative; }
.language-toggle { display: flex; align-items: center; gap: 7px; min-height: 44px; padding: 0 2px; background: transparent; font-size: 11px; }
.language-toggle .icon { width: 16px; }
.language-toggle .icon:last-child { width: 12px; }
.language-options { position: absolute; right: -20px; top: calc(100% + 13px); width: 200px; padding: 15px; background: var(--paper-light); box-shadow: 0 12px 36px #293e3224; border: 1px solid var(--line); }
.language-options p { font-size: 10px; color: var(--muted); padding: 4px 10px 10px; }
.language-options button { display: flex; align-items: center; justify-content: space-between; padding: 8px 10px; width: 100%; min-height: 40px; font-size: 13px; background: transparent; }
.language-options button:hover, .language-options button[aria-pressed="true"] { background: var(--sage); }
.language-options .icon { width: 16px; }
.nav-toggle { display: none; }

/* A living-room portrait in a vintage mirror, with a small dish overlapping. */
.hero { position: relative; min-height: 735px; display: grid; grid-template-columns: 1.1fr 1fr; align-items: center; gap: 20px; padding: 54px 0 96px; }
.hero-copy { position: relative; z-index: 2; padding-bottom: 22px; }
.hero .eyebrow { font-size: 9px; letter-spacing: .16em; margin-bottom: 29px; }
.hero h1 { max-width: 650px; }
.hero-body { margin-top: 30px; max-width: 355px; color: var(--muted); font-size: 14px; line-height: 1.9; }
.hero-links { display: flex; align-items: center; gap: 25px; margin-top: 33px; flex-wrap: wrap; }
.hero-links .text-link { font-size: 11px; gap: 15px; }
.hero-location { display: inline-flex; align-items: center; gap: 11px; font-size: 10px; line-height: 1.7; margin-top: 44px; color: var(--muted); }
.hero-location .icon { color: var(--gold); width: 18px; }
.hero-art { position: relative; justify-self: end; width: 91%; max-width: 470px; height: 555px; margin: 10px 14px 0 0; }
.hero-art::before { content: ''; position: absolute; z-index: 2; right: -84px; top: -75px; width: 130px; height: 620px; background: url('/assets/illustrations/pothos.svg') center / contain no-repeat; pointer-events: none; transform: rotate(-10deg); }
.hero-mirror { width: 100%; height: 100%; border-radius: 49% 49% 2px 2px; overflow: hidden; border: 5px solid var(--paper); outline: 1px solid #b59c6c; position: relative; }
.hero-mirror::after { content: ''; position: absolute; inset: 0; background: linear-gradient(transparent 68%, #182a258c); pointer-events: none; }
.hero-mirror > img { width: 100%; height: 100%; object-fit: cover; object-position: 57% center; }
.hero-mirror figcaption { position: absolute; bottom: 21px; right: 22px; color: #fff8e9; font-family: var(--serif); font-style: italic; z-index: 1; font-size: 15px; }
.mirror-outline { position: absolute; inset: -10px; border: 1px solid #b59c6c; border-radius: 49% 49% 2px 2px; }
.mirror-outline::before { content: '✧'; position: absolute; top: -28px; left: 50%; transform: translateX(-50%); background: var(--paper); font-size: 36px; line-height: 1; color: var(--gold); padding: 0 8px; }
.plant-stamp { position: absolute; z-index: 3; top: 29px; left: -42px; width: 105px; height: 105px; border-radius: 50%; background: var(--sage); box-shadow: inset 0 0 0 5px var(--sage), inset 0 0 0 6px #8e9c7e; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; transform: rotate(-13deg); }
.plant-stamp span { font-size: 9px; text-transform: uppercase; letter-spacing: .08em; text-align: center; }
.plant-stamp span:last-child { font-size: 13px; }
.plant-stamp .icon { width: 25px; height: 25px; }
.hero-dish { position: absolute; z-index: 3; bottom: -33px; left: -73px; width: 182px; height: 182px; border: 6px solid var(--paper); border-radius: 50%; box-shadow: 0 7px 24px #263e3226; transform: rotate(-9deg); overflow: hidden; }
.hero-dish img { width: 100%; height: 100%; object-fit: cover; }
.hero-dish span { position: absolute; bottom: 22px; left: 0; right: 0; color: #fff; font-family: var(--serif); text-shadow: 0 1px 5px #000; text-align: center; font-size: 15px; }
.hero-spark { position: absolute; right: -42px; bottom: 46px; font-size: 56px; color: var(--gold); font-weight: 200; }
.scroll-cue { position: absolute; bottom: 20px; left: 0; display: flex; align-items: center; gap: 18px; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.scroll-cue .icon { height: 20px; width: 14px; }
.ribbon { background: var(--sage); border-block: 1px solid #c9d1ba; display: flex; justify-content: center; gap: clamp(30px, 6vw, 100px); padding: 21px 30px; }
.ribbon > span { display: flex; align-items: center; gap: 28px; font-size: 10px; letter-spacing: .11em; text-transform: uppercase; white-space: nowrap; }
.ribbon .icon { width: 17px; color: #748364; }

/* Botanical paper and editorial sections */
.botanical { position: relative; }
.botanical::before, .botanical::after { content: ''; position: absolute; width: 155px; top: 0; bottom: 0; background: url('/assets/illustrations/pothos.svg') center / 100% 100% no-repeat; pointer-events: none; z-index: -1; }
.botanical::before { left: -70px; }
.botanical::after { right: -70px; transform: scaleX(-1); }
.intro { isolation: isolate; text-align: center; padding: 105px 15% 98px; }
.intro-leaf { width: 35px; height: 35px; color: var(--gold); margin-bottom: 20px; }
.intro .eyebrow { margin-bottom: 21px; }
.intro h2 { font-size: clamp(38px, 3.9vw, 56px); }
.intro > p:not(.eyebrow) { color: var(--muted); margin-top: 29px; font-size: 14px; line-height: 1.95; }
.intro .small-note { margin-top: 25px; color: #6b755e; font-style: italic; font-family: var(--serif); font-size: 17px; }
.selection { padding: 35px 0 104px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; }
.section-heading .text-link { margin-bottom: 6px; white-space: nowrap; }
.section-heading h2 { font-size: clamp(38px, 4vw, 56px); }
.section-description { font-size: 13px; color: var(--muted); margin: 24px 0 34px; }
.dish-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 37px 28px; }
.dish-card { padding: 0; background: transparent; text-align: left; display: flex; flex-direction: column; min-width: 0; }
.dish-image { display: block; position: relative; width: 100%; aspect-ratio: 1.17; overflow: hidden; background: #e1e2d5; }
.dish-image > img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.dish-card:hover .dish-image > img { transform: scale(1.045); }
.dish-card:focus-visible { outline-offset: 7px; }
.dish-category { position: absolute; left: 15px; top: 15px; background: #f5f1e7ed; font-size: 9px; padding: 5px 10px; letter-spacing: .05em; }
.dish-plus { position: absolute; right: 14px; bottom: 14px; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--paper-light); transition: transform .25s; }
.dish-card:hover .dish-plus { transform: rotate(90deg); }
.dish-plus .icon { width: 17px; }
.photo-count { position: absolute; left: 13px; bottom: 13px; font-size: 9px; color: white; background: #172b23b8; padding: 3px 7px; }
.dish-copy { display: flex; flex-direction: column; flex: 1; width: 100%; padding: 20px 0 13px; border-bottom: 1px solid var(--line); }
.dish-title { display: flex; align-items: center; justify-content: space-between; gap: 15px; font-family: var(--serif); font-size: 27px; letter-spacing: -.04em; line-height: 1.2; }
.price { font: 13px var(--sans); white-space: nowrap; }
.dish-description { display: block; margin-top: 10px; font-size: 12px; line-height: 1.7; color: var(--muted); max-width: 300px; }
.dish-view { display: flex; align-items: center; justify-content: space-between; padding-top: 22px; margin-top: auto; font-size: 10px; }
.dish-view .icon { width: 18px; }
.featured-grid .dish-card:nth-child(2) .dish-image { border-radius: 47% 47% 0 0; }
.story { padding: 34px 0 114px; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.story-photo { position: relative; margin-right: 20px; padding: 12px 12px 22px; background: #e8e5d8; transform: rotate(-3deg); border: 1px solid #d6d1bc; }
.story-photo > img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.story-photo figcaption { margin-top: 15px; text-align: center; font-family: var(--serif); font-style: italic; font-size: 15px; }
.photo-corner { position: absolute; bottom: -34px; right: -25px; font-size: 95px; color: #a4b18b; line-height: 1; }
.story-copy h2 { font-size: clamp(36px, 3.8vw, 56px); }
.story-copy p:not(.eyebrow) { margin-top: 25px; color: var(--muted); font-size: 13px; line-height: 1.9; }
.story-copy .text-link { margin-top: 25px; }
.vault-section { background: #293e32; color: var(--paper); overflow: hidden; }
.vault-inner { display: grid; grid-template-columns: 260px 1fr; gap: 95px; align-items: center; padding: 60px 70px; position: relative; }
.vault-drawing { width: 215px; height: 245px; }
.vault-inner .eyebrow { color: #cfbd8d; }
.vault-inner h2 { font-size: 47px; }
.vault-inner h2 em { color: #c0caa8; }
.vault-inner p:not(.eyebrow) { font-size: 12px; color: #d5dacb; max-width: 460px; margin-top: 23px; line-height: 1.9; }
.vault-inner .text-link { margin-top: 17px; color: #e0cfaa; border-color: #6f795f; font-size: 11px; }
.vault-star { position: absolute; right: 5px; top: 35px; font-size: 80px; color: #a7905e; }
.bar { isolation: isolate; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 110px; padding: 105px 70px; }
.bar::before { left: -70px; opacity: .6; }
.bar::after { display: none; }
.bar-copy p:not(.eyebrow) { font-size: 13px; color: var(--muted); margin-top: 25px; line-height: 1.9; }
.bar-copy .small-note { margin-top: 21px; font-size: 11px; }
.bar-copy .button { margin-top: 30px; }
.bar-photo { position: relative; }
.bar-photo > img { width: 100%; height: 460px; object-fit: cover; border-radius: 48% 48% 0 0; }
.bar-photo::before { content: ''; position: absolute; inset: -10px; border: 1px solid #ac9769; border-radius: 48% 48% 0 0; }
.bar-stamp { display: grid; place-items: center; position: absolute; right: -34px; bottom: 35px; width: 78px; height: 78px; border-radius: 50%; background: var(--sage); outline: 1px solid #a4b18b; outline-offset: -7px; transform: rotate(15deg); }
.bar-stamp .icon { width: 32px; height: 32px; }

/* Practical information */
.visit-section { background: #e3e7d8; border-top: 1px solid #cfd7c2; padding: 75px 0 60px; }
.visit-top { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; padding-bottom: 50px; border-bottom: 1px solid #bcc8b1; }
.visit-top p:not(.eyebrow) { font-size: 13px; line-height: 1.9; color: #57644f; max-width: 405px; }
.visit-top .button { margin-top: 24px; }
.visit-grid { display: grid; grid-template-columns: .95fr 1.2fr 1fr; gap: 50px; padding-top: 40px; }
.visit-grid .eyebrow { margin-bottom: 16px; }
.address { font-family: var(--serif); font-size: 22px; line-height: 1.5; letter-spacing: -.025em; }
.visit-grid .text-link { margin-top: 14px; font-size: 11px; }
.hours { margin: 0; font-size: 10px; line-height: 1.8; }
.hours > div { display: flex; justify-content: space-between; gap: 10px; padding: 3px 0; border-bottom: 1px solid #c8d1bd; }
.hours dd { margin: 0; white-space: nowrap; }
.hours-note { font-size: 9px; line-height: 1.65; margin-top: 13px; color: #58664f; }
.contact-phone { display: block; font-family: var(--serif); font-size: 24px; white-space: nowrap; }
.contact-email { display: block; font-size: 11px; margin-top: 3px; overflow-wrap: anywhere; }
.social-links { display: flex; gap: 23px; margin-top: 25px; flex-wrap: wrap; }
.social-links a { display: inline-flex; gap: 8px; align-items: center; font-size: 10px; }
.social-links .icon { width: 13px; }
.site-footer { background: #23392e; color: #e2e6d7; }
.footer-top { padding: 37px 0; display: flex; justify-content: space-between; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 40px; }
.footer-brand img { width: 130px; height: 67px; object-fit: contain; }
.footer-brand > span { font-size: 12px; font-family: var(--serif); font-style: italic; }
.footer-top .eyebrow { font-size: 8px; color: #c8d0b6; }
.footer-top .social-links { margin-top: 12px; }
.footer-bottom { border-top: 1px solid #4e5b46; padding: 19px 0; display: flex; justify-content: space-between; gap: 20px; font-size: 8px; color: #bdc7af; }
.footer-bottom > div { display: flex; gap: 25px; }
.footer-bottom button { background: transparent; font-size: 9px; padding: 3px 0; }
.footer-bottom button:hover { text-decoration: underline; }

/* Menu: filters stay clear and the full card is a single keyboard target. */
.menu-hero { isolation: isolate; text-align: center; padding: 69px 160px 47px; }
.menu-hero .eyebrow { margin-bottom: 23px; }
.menu-hero h1 { font-size: clamp(46px, 5.5vw, 78px); }
.menu-hero > p:not(.eyebrow) { max-width: 470px; margin: 22px auto; color: var(--muted); font-size: 13px; }
.plant-pill { display: inline-flex; align-items: center; gap: 7px; font-size: 10px; padding: 6px 12px; background: #e2e7d7; border: 1px solid #cad2bb; border-radius: 30px; }
.plant-pill .icon { width: 15px; height: 15px; }
.menu-section { padding-bottom: 60px; }
.menu-tools { display: flex; justify-content: space-between; gap: 24px; align-items: center; padding: 20px 0; border-block: 1px solid var(--line); }
.category-filters { display: flex; gap: 7px; flex-wrap: wrap; }
.category-filters button { min-height: 41px; padding: 8px 15px; font-size: 11px; border: 1px solid transparent; background: transparent; border-radius: 30px; white-space: nowrap; }
.category-filters button:hover { border-color: #a6b294; }
.category-filters button[aria-pressed="true"] { background: var(--green); color: var(--paper-light); }
.search-field { display: flex; align-items: center; position: relative; width: 270px; min-width: 210px; border-bottom: 1px solid #aeb59e; }
.search-field > .icon { width: 17px; height: 17px; }
.search-field input { color: var(--ink); padding: 10px; border: 0; background: transparent; width: 100%; min-width: 0; font-size: 11px; }
.search-field input::placeholder { color: #6a705e; opacity: 1; }
.search-field input::-webkit-search-cancel-button { display: none; }
.search-field .clear-search { width: 30px; height: 30px; flex-shrink: 0; background: transparent; }
.clear-search .icon { width: 15px; }
.menu-meta { display: flex; align-items: start; justify-content: space-between; gap: 35px; padding: 23px 0 30px; }
.menu-notice { font-size: 10px; line-height: 1.8; color: var(--muted); max-width: 650px; }
#result-count { font-size: 10px; white-space: nowrap; }
.menu-section .dish-grid { row-gap: 42px; }
.menu-contact { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 25px 0 55px; }
.menu-contact > p { font-family: var(--serif); font-size: 22px; font-style: italic; }
.empty-state { text-align: center; padding: 60px 25px; }
.empty-state > .icon { width: 45px; height: 45px; }
.empty-state p { margin: 20px auto; max-width: 430px; color: var(--muted); }
.photo-placeholder { min-height: 100%; width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; color: #586a4a; font-size: 12px; background: var(--sage); }
.photo-placeholder .icon { width: 60px; height: 60px; }

/* Native modal; the photo uses contain so the entire plate is always visible. */
dialog { padding: 0; border: 1px solid #bbbda6; color: var(--ink); background: var(--paper-light); box-shadow: 0 20px 100px #0005; max-height: calc(100dvh - 64px); }
dialog::backdrop { background: #11281ed9; backdrop-filter: blur(5px); }
.dish-dialog { width: min(1100px, calc(100% - 64px)); }
.dialog-close { position: absolute; right: 12px; top: 12px; z-index: 3; box-shadow: 0 1px 6px #0001; }
.gallery-layout { display: grid; grid-template-columns: 1.2fr 1fr; }
.gallery-side { min-width: 0; background: #e9e7dc; }
.gallery-stage { position: relative; display: flex; align-items: center; justify-content: center; height: min(64vh, 610px); min-height: 340px; touch-action: pan-y pinch-zoom; }
#gallery-image { height: 100%; width: 100%; object-fit: contain; }
.gallery-arrow { position: absolute; top: calc(50% - 22px); background: #fcfaf4ed; }
.gallery-arrow.previous { left: 12px; }
.gallery-arrow.next { right: 12px; }
.gallery-expand { position: absolute; top: 12px; left: 12px; background: #fcfaf4ed; }
#gallery-counter { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); padding: 4px 12px; background: #fcfaf4ed; font-size: 10px; border-radius: 20px; white-space: nowrap; }
.gallery-bottom { min-height: 83px; display: flex; align-items: center; justify-content: space-between; padding: 13px 17px; gap: 20px; }
.thumbnails { display: flex; gap: 9px; }
.thumbnails button { background: transparent; border: 1px solid transparent; padding: 3px; }
.thumbnails button[aria-pressed="true"] { border-color: var(--ink); }
.thumbnails img { width: 45px; height: 45px; object-fit: cover; }
#photo-credit { font-size: 8px; color: #65705c; text-align: right; }
#photo-credit a { text-decoration: underline; text-underline-offset: 3px; }
.gallery-description { padding: 60px 38px 30px; }
.gallery-description .plant-pill { margin-bottom: 26px; }
.gallery-description .eyebrow { margin-bottom: 15px; font-size: 9px; }
.gallery-description h2 { font-size: 40px; }
.gallery-description > p:not(.eyebrow) { margin-top: 19px; font-size: 13px; color: var(--muted); }
.ingredient-block { border-top: 1px solid var(--line); padding-top: 22px; margin-top: 25px; }
.gallery-description h3 { font-family: var(--sans); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: 10px; margin-bottom: 9px; }
.ingredient-block p, .allergen-block p { font-size: 12px; line-height: 1.8; }
.ingredient-block small { display: block; font-size: 9px; color: var(--muted); margin-top: 10px; }
.allergen-block { margin-top: 22px; background: #edeedf; border-left: 2px solid #929c75; padding: 15px; }
.allergen-block p { font-size: 10px; }
.image-fallback { text-align: center; font-size: 13px; }
.image-fallback .icon { display: block; width: 50px; height: 50px; margin: 0 auto 20px; }
.expanded .gallery-layout { grid-template-columns: 1fr; }
.expanded .gallery-description { display: none; }
.expanded .gallery-stage { height: calc(100dvh - 155px); }
.expanded .gallery-bottom { min-height: 70px; }
.info-dialog { width: min(550px, calc(100% - 36px)); padding: 50px 35px 35px; }
.info-dialog h2 { font-size: 38px; margin-bottom: 25px; }
.info-dialog p { font-size: 13px; line-height: 1.9; }
.info-dialog .button { margin-top: 25px; }
.info-dialog ul { padding-left: 20px; font-size: 12px; line-height: 2.5; }
.info-dialog li a { text-decoration: underline; }
.error-state, .not-found { min-height: 65vh; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 25px; text-align: center; padding: 60px 25px; }
.not-found > .icon { width: 60px; height: 60px; }
.not-found h1 { max-width: 700px; font-size: 55px; }

/* Responsive compositions, with no horizontal scroll traps. */
@media (min-width: 1500px) {
  .hero { min-height: 820px; }
  .hero-art { height: 590px; }
}
@media (max-width: 1150px) {
  .header-inner { width: calc(100% - 42px); gap: 20px; }
  .main-nav { gap: 17px; }
  .header-actions { gap: 18px; }
  .header-book { font-size: 9px; padding-inline: 12px; gap: 10px; }
  .main-nav a { font-size: 10px; }
  .hero { min-height: 670px; }
  .hero-art { height: 490px; }
  .hero-links { gap: 18px; }
  .hero-links .text-link { font-size: 10px; }
  .hero-dish { width: 155px; height: 155px; left: -45px; }
  .hero-art::before { right: -58px; width: 100px; }
  .hero-spark { right: -33px; }
  .intro { padding-inline: 12%; }
  .story { gap: 60px; }
  .bar { gap: 65px; padding-inline: 30px; }
  .vault-inner { padding-inline: 35px; gap: 60px; }
  .visit-grid { gap: 30px; }
  .visit-top { gap: 50px; }
  .hours { font-size: 9px; }
  .contact-phone { font-size: 21px; }
  .menu-tools { flex-direction: column; align-items: stretch; }
  .search-field { width: 100%; }
  .menu-hero { padding-inline: 110px; }
}
@media (max-width: 900px) {
  .section-wrap { width: calc(100% - 60px); }
  .header-inner { min-height: 80px; }
  .brand, .brand img { width: 105px; }
  .main-nav { position: absolute; left: 0; right: 0; top: 100%; display: none; background: var(--paper-light); border-bottom: 1px solid var(--line); padding: 20px 30px; box-shadow: 0 12px 16px #293e3210; }
  .main-nav.open { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav a { padding: 15px 0; font-size: 14px; }
  .nav-toggle { display: inline-flex; background: transparent; }
  .header-actions { gap: 16px; }
  .header-book { font-size: 11px; }
  .hero { gap: 15px; min-height: 620px; padding-top: 50px; }
  .hero h1 { font-size: 61px; }
  .hero-art { height: 440px; width: 90%; }
  .hero .eyebrow { font-size: 8px; }
  .hero-body { font-size: 12px; max-width: 290px; }
  .hero-dish { width: 135px; height: 135px; }
  .plant-stamp { width: 90px; height: 90px; left: -35px; top: 20px; }
  .plant-stamp span { font-size: 8px; }
  .hero-mirror figcaption { font-size: 12px; right: 12px; bottom: 18px; }
  .hero-spark { display: none; }
  .hero-art::before { right: -42px; width: 85px; }
  .ribbon { gap: 25px; padding-inline: 18px; }
  .ribbon > span { gap: 10px; font-size: 8px; }
  .intro { padding-block: 75px; }
  .botanical::before { left: -35px; width: 110px; }
  .botanical::after { right: -35px; width: 110px; }
  .dish-grid { gap: 30px 20px; }
  .dish-title { font-size: 24px; }
  .dish-description { font-size: 11px; }
  .story { gap: 40px; padding-bottom: 90px; }
  .story-copy h2 { font-size: 38px; }
  .story-copy p:not(.eyebrow) { font-size: 12px; margin-top: 17px; }
  .story-copy .eyebrow { font-size: 8px; }
  .story-photo { margin-right: 0; }
  .story-photo figcaption { font-size: 12px; }
  .vault-inner { grid-template-columns: 185px 1fr; gap: 45px; padding: 50px 10px; }
  .vault-drawing { width: 180px; }
  .vault-inner h2 { font-size: 39px; }
  .vault-star { display: none; }
  .bar { padding: 85px 25px; gap: 50px; }
  .bar h2 { font-size: 45px; }
  .bar-photo > img { height: 385px; }
  .visit-top h2 { font-size: 44px; }
  .visit-grid { grid-template-columns: 1fr 1.2fr; row-gap: 40px; }
  .visit-grid > div:last-child { grid-column: 1 / -1; }
  .contact-phone, .contact-email { display: inline-block; margin-right: 25px; }
  .hours { font-size: 11px; }
  .menu-hero { padding-inline: 70px; }
  .menu-meta { gap: 25px; }
  .gallery-description { padding: 62px 25px 25px; }
  .gallery-description h2 { font-size: 33px; }
  .gallery-layout { grid-template-columns: 1fr 1fr; }
  .gallery-stage { height: 470px; }
}
@media (max-width: 650px) {
  html { scroll-padding-top: 86px; }
  .section-wrap { width: calc(100% - 42px); }
  .header-inner { min-height: 74px; width: calc(100% - 30px); gap: 14px; }
  .brand, .brand img { width: 91px; height: 52px; }
  .header-actions { gap: 12px; }
  .header-book { display: none; }
  .nav-toggle { width: 36px; height: 40px; }
  .language-options { right: -35px; top: calc(100% + 10px); }
  .hero { display: flex; flex-direction: column; align-items: stretch; gap: 25px; padding: 45px 0 55px; min-height: 0; }
  .hero-copy { padding: 0; }
  .hero .eyebrow { font-size: 8px; letter-spacing: .13em; margin-bottom: 23px; }
  .hero h1 { font-size: clamp(51px, 11.5vw, 73px); max-width: 100%; }
  .hero-body { max-width: 340px; font-size: 13px; line-height: 1.8; margin-top: 23px; }
  .hero-links { gap: 20px; margin-top: 24px; }
  .hero-links .button { font-size: 11px; min-height: 48px; padding: 12px 17px; gap: 20px; }
  .hero-links .text-link { font-size: 10px; gap: 10px; }
  .hero-location { margin-top: 25px; font-size: 9px; }
  .hero-art { align-self: center; margin: 10px 0 32px 18px; height: 420px; width: min(78%, 340px); }
  .hero-art::before { right: -50px; width: 100px; height: 470px; top: -30px; }
  .hero-dish { width: 137px; height: 137px; left: -41px; bottom: -25px; border-width: 5px; }
  .hero-dish span { font-size: 12px; }
  .hero-mirror figcaption { font-size: 12px; bottom: 18px; right: 10px; max-width: 145px; text-align: right; }
  .plant-stamp { left: -34px; top: 20px; }
  .scroll-cue { bottom: 14px; font-size: 8px; left: 50%; transform: translateX(-50%); white-space: nowrap; }
  .ribbon { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 25px; padding: 20px 25px; }
  .ribbon > span { gap: 14px; font-size: 8px; white-space: normal; }
  .ribbon .icon { width: 15px; }
  .intro { padding: 62px 21px 60px; }
  .intro h2 { font-size: 39px; }
  .intro .eyebrow { font-size: 8px; }
  .intro > p:not(.eyebrow) { font-size: 12px; }
  .intro .small-note { font-size: 15px; line-height: 1.5; }
  .intro-leaf { width: 28px; height: 28px; }
  .botanical::before, .botanical::after { width: 65px; opacity: .65; }
  .botanical::before { left: -18px; }
  .botanical::after { right: -18px; }
  .selection { padding: 15px 0 65px; }
  .section-heading { align-items: start; flex-direction: column; gap: 15px; }
  .section-heading h2 { font-size: 42px; }
  .eyebrow { font-size: 9px; margin-bottom: 18px; }
  .section-description { margin: 15px 0 25px; font-size: 12px; }
  .dish-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 15px; }
  .featured-grid { grid-template-columns: 1fr; gap: 28px; }
  .featured-grid .dish-card { display: grid; grid-template-columns: 43% 1fr; gap: 19px; }
  .featured-grid .dish-image { aspect-ratio: .95; }
  .featured-grid .dish-copy { padding: 9px 0; }
  .featured-grid .dish-title { font-size: 26px; }
  .featured-grid .dish-view { padding-top: 12px; }
  .featured-grid .dish-category { display: none; }
  .featured-grid .dish-card:nth-child(2) .dish-image { border-radius: 0; }
  .dish-category { font-size: 8px; padding: 4px 7px; top: 8px; left: 8px; max-width: calc(100% - 16px); }
  .dish-plus { width: 29px; height: 29px; right: 8px; bottom: 8px; }
  .dish-plus .icon { width: 15px; }
  .photo-count { bottom: 8px; left: 8px; font-size: 8px; }
  .dish-title { font-size: 23px; }
  .dish-description { font-size: 10px; }
  .dish-view { font-size: 9px; padding-top: 16px; gap: 8px; }
  .dish-view .icon { width: 15px; }
  .dish-copy { padding-top: 15px; }
  .story { grid-template-columns: 1fr; gap: 43px; padding: 16px 10px 65px; }
  .story-photo { margin: 0 13px; }
  .story-copy h2 { font-size: 43px; }
  .story-copy .eyebrow { font-size: 8px; }
  .story-copy p:not(.eyebrow) { font-size: 13px; }
  .photo-corner { font-size: 75px; right: -23px; bottom: -24px; }
  .vault-inner { grid-template-columns: 1fr; gap: 10px; padding: 40px 10px 47px; text-align: center; }
  .vault-drawing { width: 140px; height: 160px; justify-self: center; margin-bottom: 16px; }
  .vault-inner h2 { font-size: 43px; }
  .vault-inner .eyebrow { font-size: 8px; }
  .vault-inner p:not(.eyebrow) { font-size: 12px; }
  .bar { display: flex; flex-direction: column-reverse; padding: 70px 14px 60px; gap: 45px; }
  .bar h2 { font-size: 46px; }
  .bar-photo { width: 80%; }
  .bar-photo > img { height: 375px; }
  .bar-stamp { width: 68px; height: 68px; right: -30px; }
  .bar-copy .button { margin-top: 24px; }
  .visit-section { padding: 48px 0; }
  .visit-top { grid-template-columns: 1fr; gap: 25px; padding-bottom: 33px; }
  .visit-top h2 { font-size: 46px; }
  .visit-top p:not(.eyebrow) { font-size: 12px; }
  .visit-top .button { font-size: 11px; }
  .visit-grid { grid-template-columns: 1fr; gap: 30px; padding-top: 28px; }
  .visit-grid > div:last-child { grid-column: auto; }
  .visit-grid .eyebrow { font-size: 9px; margin-bottom: 10px; }
  .hours { font-size: 11px; }
  .hours > div { padding: 5px 0; }
  .hours-note { font-size: 10px; }
  .contact-phone, .contact-email { display: block; margin-right: 0; }
  .contact-phone { font-size: 26px; }
  .contact-email { font-size: 12px; }
  .social-links { margin-top: 19px; }
  .social-links a { font-size: 11px; }
  .footer-top { align-items: start; gap: 25px; padding: 30px 0; }
  .footer-brand { flex-direction: column; align-items: start; gap: 12px; }
  .footer-brand img { width: 104px; height: 54px; }
  .footer-brand > span { font-size: 11px; max-width: 170px; }
  .footer-top .social-links { flex-direction: column; gap: 10px; }
  .footer-top .eyebrow { font-size: 8px; }
  .footer-bottom { flex-direction: column; gap: 10px; padding-block: 17px; font-size: 8px; }
  .footer-bottom button { font-size: 10px; min-height: 35px; }
  .menu-hero { padding: 46px 15px 30px; }
  .menu-hero h1 { font-size: 49px; }
  .menu-hero .eyebrow { font-size: 8px; }
  .menu-hero > p:not(.eyebrow) { font-size: 12px; margin-block: 19px; }
  .menu-tools { gap: 15px; padding: 16px 0; }
  .category-filters { gap: 5px; }
  .category-filters button { font-size: 10px; padding: 7px 11px; min-height: 38px; }
  .search-field input { font-size: 12px; padding-block: 11px; }
  .menu-meta { flex-direction: column; gap: 12px; padding-block: 17px 24px; }
  .menu-notice { font-size: 10px; }
  #result-count { font-size: 10px; }
  .menu-section .dish-grid { row-gap: 30px; }
  .menu-section { padding-bottom: 40px; }
  .menu-contact { flex-direction: column; align-items: start; padding: 10px 0 40px; gap: 15px; }
  .menu-contact > p { font-size: 20px; }
  .dish-dialog { width: calc(100% - 20px); max-height: calc(100dvh - 20px); }
  .gallery-layout { display: block; }
  .gallery-stage { height: 40dvh; min-height: 260px; max-height: 420px; }
  .gallery-description { padding: 25px; }
  .gallery-description .plant-pill { margin-bottom: 18px; }
  .gallery-description h2 { font-size: 38px; }
  .gallery-description > p:not(.eyebrow) { font-size: 13px; }
  .gallery-bottom { min-height: 61px; padding: 8px 12px; }
  .thumbnails img { width: 35px; height: 35px; }
  .gallery-expand { top: 10px; left: 10px; }
  .dialog-close { position: sticky; float: right; margin: 10px 10px -54px 0; top: 10px; right: 10px; }
  .expanded .gallery-stage { height: calc(100dvh - 100px); max-height: none; }
  .gallery-description .allergen-block p { font-size: 11px; }
  .ingredient-block small { font-size: 10px; }
  .info-dialog .dialog-close { position: absolute; margin: 0; }
  .info-dialog { padding: 55px 25px 30px; }
  .info-dialog h2 { font-size: 35px; }
}
@media (max-width: 360px) {
  .hero h1 { font-size: 47px; }
  .hero-links { gap: 12px; }
  .hero-links .text-link { font-size: 9px; }
  .hero-art { height: 370px; }
  .hero-dish { width: 115px; height: 115px; }
  .dish-grid:not(.featured-grid) { grid-template-columns: 1fr; }
  .hours { font-size: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
@media print {
  .site-header, .site-footer, .menu-tools, .hero-art, .scroll-cue, .dish-plus, .dish-view { display: none; }
  body { background: white; }
  .section-wrap { width: 100%; }
  .dish-card { break-inside: avoid; }
}
