:root {
  --paper: #f5f1e9;
  --paper-deep: #e9e1d4;
  --ink: #1f211c;
  --muted: #69685f;
  --red: #982719;
  --red-dark: #6e180f;
  --sage: #69715c;
  --line: rgba(31, 33, 28, .16);
  --white: #fffdf8;
  --shadow: 0 24px 60px rgba(42, 27, 15, .16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --wrap: min(1180px, calc(100vw - 40px));
  --radius: 3px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body { margin: 0; overflow-x: clip; background: var(--paper); color: var(--ink); font: 16px/1.65 var(--sans); -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .18em; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #d88e24; outline-offset: 4px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1, h2 { font-family: var(--serif); font-weight: 400; line-height: .98; letter-spacing: -.035em; }
h1 { font-size: clamp(3.4rem, 8vw, 7.8rem); }
h2 { font-size: clamp(2.5rem, 5vw, 5rem); }
h3 { line-height: 1.25; }
.wrap { width: var(--wrap); margin-inline: auto; }
.split > *, .form-shell > *, .page-hero-grid > *, .feature-columns > *, .service-grid > *, .location-card > * { min-width: 0; }
.section { padding: clamp(80px, 10vw, 150px) 0; }
.section-compact { padding: clamp(56px, 7vw, 90px) 0; }
.section-dark { background: var(--ink); color: var(--paper); }
.section-red { background: var(--red); color: var(--white); }
.section-paper-deep { background: var(--paper-deep); }
.eyebrow { margin-bottom: 18px; color: var(--red); font-size: .72rem; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }
.section-dark .eyebrow, .section-red .eyebrow { color: #f4b37e; }
.lede { max-width: 760px; font: clamp(1.25rem, 2.2vw, 1.75rem)/1.5 var(--serif); }
.muted { color: var(--muted); }
.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: 999; top: 8px; left: 8px; padding: 10px 16px; background: var(--white); transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 10px; padding: 13px 22px; border: 1px solid var(--red); border-radius: 999px; background: var(--red); color: var(--white); font-size: .85rem; font-weight: 760; letter-spacing: .04em; text-decoration: none; transition: background .2s, border-color .2s, transform .2s; }
.button:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); }
.button-outline { background: transparent; color: currentColor; border-color: currentColor; }
.button-outline:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.section-dark .button-outline, .section-red .button-outline { border-color: currentColor; }
.button-small { min-height: 42px; padding: 10px 17px; }
.text-link { display: inline-block; font-weight: 750; color: var(--red); }
.action-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 30px; }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; border-bottom: 1px solid transparent; transition: background .25s, border-color .25s, box-shadow .25s; }
.site-header.is-scrolled, body:not(.page-home) .site-header { background: rgba(245, 241, 233, .96); border-color: var(--line); box-shadow: 0 8px 30px rgba(30, 25, 20, .06); backdrop-filter: blur(16px); }
.page-home .site-header:not(.is-scrolled) { color: var(--white); }
.page-home .site-header:not(.is-scrolled) .brand img { filter: brightness(1.8) saturate(.7); }
.header-shell { width: min(1320px, calc(100vw - 32px)); height: 84px; margin: auto; display: grid; grid-template-columns: 150px 1fr auto; align-items: center; gap: 28px; }
.brand { width: 112px; height: 62px; display: grid; place-items: center; overflow: hidden; }
.brand img { width: 108px; height: auto; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(14px, 2vw, 30px); }
.desktop-nav a, .language-link { position: relative; font-size: .78rem; font-weight: 680; letter-spacing: .03em; text-decoration: none; }
.desktop-nav a::after { content: ""; position: absolute; inset: auto 0 -7px; height: 1px; background: var(--red); transform: scaleX(0); transition: transform .2s; }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { transform: none; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 12px 8px; }
.nav-toggle i { display: block; width: 100%; height: 1px; margin: 7px 0; background: currentColor; transition: transform .2s; }
.nav-toggle[aria-expanded="true"] i:first-of-type { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] i:last-of-type { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 84px 0 0; padding: 36px 24px; overflow: auto; background: var(--paper); }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font: 2rem/1.1 var(--serif); text-decoration: none; }
.mobile-menu-meta { display: grid; gap: 8px; padding-top: 28px; }

.hero { position: relative; min-height: min(850px, 100svh); display: flex; align-items: flex-end; overflow: hidden; background: #2f3028; color: var(--white); }
.hero-media, .hero-media::after { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 55% 50%; }
.hero-media::after { content: ""; background: linear-gradient(90deg, rgba(25, 24, 20, .78) 0%, rgba(25, 24, 20, .42) 54%, rgba(25, 24, 20, .12)), linear-gradient(0deg, rgba(22, 20, 17, .58), transparent 55%); }
.hero-content { position: relative; z-index: 1; width: var(--wrap); margin: 0 auto; padding: 170px 0 82px; }
.hero h1 { max-width: 920px; margin-bottom: 28px; }
.hero h1 span { display: block; color: #f0b89b; font-style: italic; }
.hero .lede { max-width: 640px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 14px 28px; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.35); font-size: .79rem; letter-spacing: .06em; text-transform: uppercase; }

.page-hero { padding: 180px 0 90px; border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 1000px; margin-bottom: 28px; }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr); gap: 70px; align-items: end; }
.page-hero-image { margin-top: 60px; }
.page-hero-image img { width: 100%; max-height: 650px; object-fit: cover; }

.facts { position: relative; z-index: 3; margin-top: -1px; background: var(--red); color: var(--white); }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.fact { padding: 28px 24px; border-left: 1px solid rgba(255,255,255,.24); }
.fact:last-child { border-right: 1px solid rgba(255,255,255,.24); }
.fact strong { display: block; font: 1.35rem var(--serif); }
.fact span { font-size: .73rem; opacity: .78; text-transform: uppercase; letter-spacing: .08em; }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 8vw, 110px); align-items: center; }
.split-wide { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); }
.editorial-image { position: relative; }
.editorial-image img { width: 100%; min-height: 480px; object-fit: cover; box-shadow: var(--shadow); }
.editorial-image::before { content: ""; position: absolute; z-index: -1; width: 45%; height: 48%; right: -24px; bottom: -24px; background: var(--red); }
.stat-line { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); }
.stat-line strong { display: block; font: 2.2rem var(--serif); }
.stat-line span { color: var(--muted); font-size: .78rem; }

.dish-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 50px; background: var(--line); border: 1px solid var(--line); }
.dish { min-height: 250px; padding: 34px; background: var(--paper); display: flex; flex-direction: column; justify-content: space-between; }
.dish:nth-child(2), .dish:nth-child(5) { background: var(--paper-deep); }
.dish-index { color: var(--red); font: italic 1.15rem var(--serif); }
.dish h3 { margin: 50px 0 10px; font: 1.65rem var(--serif); }
.dish p { margin-bottom: 0; color: var(--muted); font-size: .9rem; }

.range-banner { display: grid; grid-template-columns: .8fr 1.2fr; min-height: 620px; }
.range-copy { padding: clamp(50px, 8vw, 120px); background: var(--red); color: var(--white); display: flex; flex-direction: column; justify-content: center; }
.range-copy h2 { max-width: 650px; }
.range-image { position: relative; overflow: hidden; background: #332c25; }
.range-image img { width: 100%; height: 100%; object-fit: cover; }
.range-stamp { position: absolute; right: 28px; bottom: 28px; width: 148px; aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; background: var(--paper); color: var(--red); text-align: center; font: italic 1.1rem var(--serif); transform: rotate(-8deg); }

.feature-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; margin-top: 52px; }
.feature-columns article { border-top: 1px solid var(--line); padding-top: 28px; }
.feature-columns h3 { font: 1.55rem var(--serif); }
.feature-columns p { color: var(--muted); }
.section-dark .feature-columns article { border-color: rgba(255,255,255,.2); }
.section-dark .feature-columns p { color: rgba(255,255,255,.68); }

.mosaic { display: grid; grid-template-columns: 1.15fr .85fr .85fr; grid-template-rows: 320px 260px; gap: 12px; margin-top: 50px; }
.mosaic button { position: relative; min-width: 0; padding: 0; border: 0; background: #ddd; overflow: hidden; cursor: zoom-in; }
.mosaic button:first-child { grid-row: span 2; }
.mosaic button:nth-child(4) { grid-column: span 2; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.mosaic button:hover img { transform: scale(1.025); }
.lightbox { width: min(1000px, calc(100vw - 32px)); max-height: calc(100vh - 32px); padding: 0; border: 0; background: #151613; color: white; box-shadow: 0 20px 90px #0008; }
.lightbox::backdrop { background: rgba(14, 14, 12, .82); }
.lightbox img { width: 100%; max-height: calc(100vh - 100px); object-fit: contain; }
.lightbox-close { position: absolute; z-index: 2; top: 12px; right: 12px; width: 44px; height: 44px; border: 1px solid #fff8; border-radius: 50%; background: #151613aa; color: white; font-size: 1.5rem; }
.lightbox-caption { margin: 0; padding: 12px 18px; }

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 48px; background: rgba(255,255,255,.18); }
.review { min-height: 310px; padding: 34px; background: var(--ink); display: flex; flex-direction: column; justify-content: space-between; }
.review blockquote { margin: 0; font: 1.5rem/1.38 var(--serif); }
.review cite { font-size: .76rem; font-style: normal; color: #f4b37e; letter-spacing: .08em; text-transform: uppercase; }
.stars { letter-spacing: .12em; color: #f4b37e; }

.location-card { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); }
.location-card > div { padding: clamp(35px, 6vw, 80px); }
.location-card .location-visual { min-height: 420px; padding: 0; background: var(--sage); overflow: hidden; }
.location-card img { width: 100%; height: 100%; object-fit: cover; }
.hours-table { margin: 28px 0; border-top: 1px solid var(--line); }
.hours-table div { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line); }

.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; display: flex; justify-content: space-between; gap: 24px; padding: 22px 0; border: 0; background: transparent; color: inherit; text-align: left; font-weight: 720; }
.faq-item button::after { content: "+"; color: var(--red); font: 1.4rem var(--serif); }
.faq-item button[aria-expanded="true"]::after { content: "−"; }
.faq-panel { max-width: 760px; padding: 0 0 24px; color: var(--muted); }
.faq-panel p { margin: 0; }

.cta-panel { position: relative; overflow: hidden; padding: clamp(55px, 8vw, 100px); background: var(--red); color: var(--white); }
.cta-panel::after { content: "P"; position: absolute; right: -3vw; bottom: -12vw; opacity: .07; font: 36vw/.8 var(--serif); }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { max-width: 800px; }

.site-footer { background: #171814; color: var(--paper); }
.footer-main { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 50px; padding: 75px 0 55px; }
.footer-main h2 { margin-bottom: 18px; color: #e6a576; font: .75rem var(--sans); font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.footer-main p { color: rgba(255,255,255,.67); }
.footer-main a { color: var(--paper); }
.footer-intro img { width: 125px; margin-bottom: 20px; filter: brightness(1.6); }
.footer-intro p { max-width: 350px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 20px 0 28px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.54); font-size: .76rem; }

.subnav { position: sticky; z-index: 50; top: 84px; border-bottom: 1px solid var(--line); background: rgba(245,241,233,.97); backdrop-filter: blur(12px); }
.subnav-scroll { display: flex; gap: 8px; overflow-x: auto; padding: 11px max(20px, calc((100vw - 1180px) / 2)); scrollbar-width: none; }
.subnav a, .filter-chip { flex: 0 0 auto; padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: inherit; font-size: .75rem; font-weight: 700; text-decoration: none; }
.subnav a:hover, .filter-chip:hover, .filter-chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.subnav a.is-active { background: var(--red); border-color: var(--red); color: var(--white); }
.menu-tools { padding: 28px 0; border-bottom: 1px solid var(--line); }
.menu-type-row, .menu-filter-row { display: flex; flex-wrap: wrap; gap: 8px; }
.menu-type-row { margin-bottom: 16px; }
.menu-search-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px; margin-top: 18px; }
.menu-search-row label { min-width: 0; }
.menu-search-row input { width: 100%; min-height: 54px; padding: 12px 18px; border: 1px solid var(--line); background: var(--white); color: var(--ink); }
.menu-count { color: var(--muted); font-size: .8rem; white-space: nowrap; }
.menu-shell { width: min(920px, calc(100vw - 40px)); margin: 0 auto; padding: 40px 0 120px; }
.menu-category { padding: 64px 0 20px; border-bottom: 2px solid var(--ink); }
.menu-category-heading { min-width: 0; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 20px; margin-bottom: 12px; }
.menu-category-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -8px; }
.menu-category-heading h2 { min-width: 0; margin: 0; overflow-wrap: anywhere; font-size: clamp(2.5rem, 6vw, 4.8rem); }
.menu-category-heading > span { color: var(--muted); font: italic 1.2rem var(--serif); }
.menu-item { display: grid; grid-template-columns: 1fr auto; gap: 32px; padding: 24px 0; border-top: 1px solid var(--line); }
.menu-item h3 { margin: 0 0 6px; font: 1.2rem var(--serif); }
.menu-item h3 span { display: inline-block; min-width: 42px; color: var(--red); font: .72rem var(--sans); }
.menu-item h3 em { margin-left: 8px; color: var(--red); font-style: normal; }
.menu-item p { max-width: 650px; margin: 0; color: var(--muted); font-size: .88rem; }
.menu-item small { display: block; margin-top: 6px; color: var(--sage); font-size: .68rem; }
.menu-item strong { font-weight: 720; white-space: nowrap; }
.menu-empty { padding: 80px 0; text-align: center; }
.notice { padding: 22px; border-left: 3px solid var(--red); background: var(--paper-deep); color: var(--muted); font-size: .85rem; }

.form-shell { display: grid; grid-template-columns: minmax(260px, .65fr) minmax(0, 1.35fr); gap: clamp(40px, 8vw, 100px); align-items: start; }
.form-card { padding: clamp(28px, 5vw, 52px); background: var(--white); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: .76rem; font-weight: 720; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid #b9b5aa; border-radius: 0; background: var(--white); color: var(--ink); }
.field textarea { min-height: 145px; resize: vertical; }
.form-note { color: var(--muted); font-size: .78rem; }
.form-status { min-height: 26px; margin-top: 16px; font-weight: 650; }
.form-status.is-success { color: #2f6943; }
.form-status.is-error { color: #a01d16; }
.hp-field { position: absolute; left: -9999px; }
.submission-banner { position: fixed; z-index: 200; right: 20px; bottom: 20px; max-width: min(440px, calc(100vw - 40px)); padding: 17px 20px; background: var(--ink); color: var(--white); box-shadow: var(--shadow); }
.submission-banner.is-error { background: #8b1d17; }

.contact-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.contact-list a, .contact-list div { display: grid; grid-template-columns: 110px 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.contact-list span { color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; }

.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 45px; }
.service-card { min-height: 300px; padding: 34px; border: 1px solid var(--line); display: flex; flex-direction: column; justify-content: flex-end; background: var(--paper); }
.service-card h3 { font: 1.8rem var(--serif); }
.service-card p { margin-bottom: 0; color: var(--muted); }
.process { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 45px; }
.process article { counter-increment: step; padding-top: 24px; border-top: 1px solid currentColor; }
.process article::before { content: "0" counter(step); color: #f4b37e; font: italic 1.2rem var(--serif); }
.process h3 { margin-top: 34px; font: 1.5rem var(--serif); }

.legal { width: min(780px, calc(100vw - 40px)); margin: 0 auto; padding: 170px 0 110px; }
.legal h1 { font-size: clamp(3rem, 7vw, 6rem); }
.legal h2 { margin-top: 52px; font-size: 2rem; line-height: 1.1; }
.legal h3 { margin-top: 30px; }
.legal p, .legal li { color: #4f504a; }
.legal { overflow-wrap: anywhere; }

.mobile-actions { display: none; }
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .desktop-nav { display: none; }
  .header-shell { grid-template-columns: 1fr auto; }
  .nav-toggle { display: block; }
  .page-hero-grid, .split, .split-wide { grid-template-columns: 1fr; }
  .page-hero-grid { gap: 30px; }
  .range-banner { grid-template-columns: 1fr; }
  .range-image { min-height: 470px; }
  .editorial-image::before { right: 0; }
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-main > :last-child { grid-column: 2; }
}

@media (max-width: 760px) {
  :root { --wrap: min(100% - 28px, 1180px); }
  html { scroll-padding-top: 80px; }
  body.has-mobile-actions { padding-bottom: 64px; }
  .section { padding: 76px 0; }
  .section-compact { padding: 52px 0; }
  .header-shell { width: calc(100vw - 20px); height: 72px; }
  .mobile-menu { top: 72px; }
  .brand { width: 88px; height: 52px; }
  .brand img { width: 88px; }
  .language-link, .header-actions .button { display: none; }
  .hero { min-height: 760px; }
  .hero-content { padding: 140px 0 58px; }
  .hero h1 { font-size: clamp(3.25rem, 18vw, 5.4rem); }
  .hero-media img { object-position: 62% 50%; }
  .hero-meta { margin-top: 38px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .page-hero { padding: 135px 0 65px; }
  .page-hero h1 { font-size: clamp(3.2rem, 17vw, 5rem); }
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .fact:nth-child(odd) { border-left: 0; }
  .fact { padding: 20px 14px; border-bottom: 1px solid rgba(255,255,255,.22); }
  .fact strong { font-size: 1.08rem; }
  .dish-grid, .feature-columns, .reviews, .process { grid-template-columns: 1fr; }
  .dish { min-height: 210px; }
  .range-copy { padding: 65px 24px; }
  .range-image { min-height: 390px; }
  .mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 200px 200px; }
  .mosaic button:first-child { grid-column: span 2; grid-row: auto; }
  .mosaic button:nth-child(4) { grid-column: auto; }
  .location-card { grid-template-columns: 1fr; }
  .location-card .location-visual { min-height: 330px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-intro { grid-column: 1 / -1; }
  .footer-main > :last-child { grid-column: auto; }
  .footer-bottom { display: grid; }
  .subnav { top: 72px; }
  .menu-search-row { grid-template-columns: 1fr; gap: 8px; }
  .menu-item { gap: 16px; }
  .form-shell, .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .service-grid { grid-template-columns: 1fr; }
  .mobile-actions { position: fixed; z-index: 90; inset: auto 0 0; height: 64px; display: grid; grid-template-columns: repeat(3, 1fr); background: var(--ink); color: var(--paper); box-shadow: 0 -8px 30px #0002; }
  .mobile-actions a { display: grid; place-items: center; border-right: 1px solid rgba(255,255,255,.18); font-size: .72rem; font-weight: 730; text-decoration: none; }
  .mobile-actions a:last-child { background: var(--red); border: 0; }
}

@media (max-width: 430px) {
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .fact span { font-size: .62rem; }
  .stat-line { grid-template-columns: 1fr; }
  .mosaic { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .mosaic { max-width: 100%; contain: inline-size; }
  .mosaic button { flex: 0 0 86vw; height: 370px; scroll-snap-align: center; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-intro { grid-column: auto; }
  .menu-item h3 { font-size: 1.08rem; }
  .contact-list a, .contact-list div { grid-template-columns: 1fr; gap: 4px; }
}

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

@media print {
  .site-header, .site-footer, .mobile-actions, .subnav, .menu-tools { display: none !important; }
  body { background: white; color: black; }
  .menu-shell { width: 100%; padding: 0; }
  .menu-category { break-inside: avoid; padding-top: 24px; }
}
