:root {
  --red-950: #2a0709;
  --red-900: #440a0e;
  --red-800: #6f0f16;
  --red-700: #8f1820;
  --gold-500: #d7ad58;
  --gold-400: #e6c77c;
  --gold-200: #f4e6bd;
  --cream-50: #fffaf0;
  --cream-100: #f8efdd;
  --ink-950: #17130f;
  --ink-800: #302820;
  --ink-600: #665a4e;
  --white: #fff;
  --success: #236b45;
  --warning: #8a5a00;
  --danger: #a5212b;
  --border: rgba(62, 41, 24, .18);
  --shadow: 0 20px 55px rgba(35, 15, 7, .14);
  --shadow-soft: 0 10px 30px rgba(35, 15, 7, .09);
  --radius-sm: .55rem;
  --radius: 1rem;
  --radius-lg: 1.65rem;
  --container: 1180px;
  --font-serif: Georgia, "Times New Roman", serif;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream-50); color: var(--ink-950); font-family: var(--font-sans); line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.nav-open, body.lightbox-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .18em; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
code { padding: .1em .35em; border-radius: .3em; background: rgba(111,15,22,.08); font-size: .92em; }
.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.skip-link { position: fixed; z-index: 9999; top: .7rem; left: .7rem; transform: translateY(-180%); padding: .8rem 1rem; background: var(--white); color: var(--red-900); border-radius: .4rem; font-weight: 800; box-shadow: var(--shadow); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 3px; }
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(42,7,9,.96); color: var(--white); border-bottom: 1px solid rgba(230,199,124,.25); backdrop-filter: blur(12px); }
.header-inner { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid var(--gold-500); border-radius: 50%; color: var(--gold-400); font-family: var(--font-serif); font-size: 1.08rem; letter-spacing: -.1em; }
.brand-text { display: grid; line-height: 1.1; }
.brand-text strong { font-family: var(--font-serif); font-size: 1.12rem; font-weight: 600; }
.brand-text small { margin-top: .3rem; color: var(--gold-200); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.nav-toggle { display: grid; gap: 5px; width: 45px; height: 45px; place-content: center; background: transparent; border: 1px solid rgba(255,255,255,.25); border-radius: .55rem; }
.nav-toggle span:not(.sr-only) { width: 22px; height: 2px; background: var(--white); transition: transform .25s, opacity .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
.main-nav { position: fixed; inset: 74px 0 auto 0; display: none; padding: 1.2rem 1rem 1.5rem; background: var(--red-950); box-shadow: var(--shadow); }
.main-nav.is-open { display: block; }
.main-nav ul { display: grid; list-style: none; padding: 0; margin: 0 0 1rem; }
.main-nav a { display: block; padding: .75rem; text-decoration: none; font-weight: 650; }
.main-nav a[aria-current="page"], .main-nav a:hover { color: var(--gold-400); }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: .5rem; padding: .75rem 1.15rem; border: 1px solid transparent; border-radius: 999px; text-decoration: none; font-weight: 800; line-height: 1.2; transition: transform .2s, box-shadow .2s, background .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.button--small { min-height: 40px; padding: .55rem 1rem !important; }
.button--gold { background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); color: var(--ink-950); border-color: var(--gold-400); }
.button--dark { background: var(--red-900); color: var(--white); border-color: var(--red-900); }
.button--light { background: var(--white); color: var(--red-900); }
.button--outline-light { color: var(--white); border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.04); }
.button--ghost, .button--ghost-dark { background: transparent; }
.button--ghost { color: var(--white); border-color: rgba(255,255,255,.45); }
.button--ghost-dark { color: var(--red-900); border-color: rgba(111,15,22,.35); }
.button--wide { width: 100%; }
.button-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.4rem; }
.button-row--center { justify-content: center; }
.text-link { color: var(--red-800); font-weight: 800; }
.center { display: flex; justify-content: center; margin-top: 2.2rem; }
.eyebrow { margin: 0 0 .7rem; color: var(--gold-400); font-size: .78rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow--dark { color: var(--red-700); }
h1, h2, h3 { font-family: var(--font-serif); line-height: 1.12; margin-top: 0; }
h1 { font-size: clamp(2.55rem, 10vw, 5.75rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 6vw, 3.6rem); font-weight: 500; }
h3 { font-size: 1.35rem; }
p { margin-top: 0; }
.hero { position: relative; min-height: min(820px, calc(100svh - 74px)); display: grid; align-items: center; color: var(--white); overflow: hidden; }
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { background: linear-gradient(90deg, rgba(31,4,6,.93) 0%, rgba(53,5,9,.74) 48%, rgba(35,4,6,.3) 100%), linear-gradient(0deg, rgba(31,4,6,.75), transparent 60%); }
.hero-content { position: relative; z-index: 1; padding-block: 5rem; }
.hero-content h1 { max-width: 900px; margin-bottom: 1.2rem; }
.hero-content h1 span { color: var(--gold-400); font-style: italic; }
.hero-lead { max-width: 650px; font-size: clamp(1.05rem, 3vw, 1.3rem); color: #f7ede5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.6rem; }
.verification-note { max-width: 680px; margin: 1.2rem 0 0; color: rgba(255,255,255,.72); font-size: .8rem; }
.quick-info { position: relative; z-index: 3; margin-top: -1.2rem; }
.quick-info-grid { display: grid; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.quick-info article { display: flex; gap: 1rem; padding: 1.5rem; border-bottom: 1px solid var(--border); }
.quick-info article:last-child { border-bottom: 0; }
.quick-info h2 { margin-bottom: .35rem; font-family: var(--font-sans); font-size: 1rem; font-weight: 850; }
.quick-info p { margin-bottom: .25rem; color: var(--ink-600); }
.quick-info small { color: var(--red-700); }
.icon-badge { display: grid; flex: 0 0 46px; height: 46px; place-items: center; border-radius: 50%; background: var(--cream-100); color: var(--red-800); font-family: var(--font-serif); }
.section { padding-block: clamp(4.5rem, 9vw, 8rem); }
.section--dark { position: relative; background: var(--red-950); color: var(--white); overflow: hidden; }
.section--dark::before { content: ""; position: absolute; inset: 0; opacity: .12; background-image: radial-gradient(circle at 10px 10px, var(--gold-400) 1px, transparent 1px); background-size: 24px 24px; }
.section--cream { background: var(--cream-100); }
.section-heading { max-width: 760px; margin: 0 auto 2.8rem; text-align: center; }
.section-heading p:last-child { color: var(--ink-600); }
.section-heading--light p:last-child { color: rgba(255,255,255,.72); }
.split-layout { display: grid; gap: 2.3rem; align-items: center; }
.image-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--cream-100); }
.image-frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.image-label { position: absolute; left: 1rem; bottom: 1rem; padding: .5rem .75rem; border-radius: 999px; background: rgba(42,7,9,.88); color: var(--white); font-size: .75rem; font-weight: 800; }
.content-block > p:not(.eyebrow) { color: var(--ink-600); }
.editorial-placeholder { margin: 1.5rem 0; padding: 1rem 1.15rem; border: 1px dashed var(--red-700); border-radius: var(--radius); background: rgba(111,15,22,.04); }
.editorial-placeholder p { margin: .3rem 0 0; font-size: .9rem; }
.feature-grid { position: relative; display: grid; gap: 1rem; }
.feature-card { padding: 1.6rem; border: 1px solid rgba(230,199,124,.24); border-radius: var(--radius); background: rgba(255,255,255,.06); }
.feature-card > span { display: grid; width: 48px; height: 48px; place-items: center; margin-bottom: 1rem; border: 1px solid var(--gold-500); border-radius: 50%; color: var(--gold-400); font-family: var(--font-serif); }
.feature-card h3 { color: var(--gold-200); }
.feature-card p { margin-bottom: 0; color: rgba(255,255,255,.72); }
.menu-preview-grid { display: grid; gap: 1rem; }
.menu-preview-grid article { overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-soft); }
.menu-preview-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.menu-preview-grid article > div { padding: 1.3rem; }
.menu-preview-grid h3 { margin-bottom: .5rem; }
.menu-preview-grid p:last-child { margin-bottom: 0; color: var(--ink-600); }
.tag { display: inline-block; margin-bottom: .65rem; padding: .25rem .55rem; border-radius: 999px; background: var(--cream-100); color: var(--red-800); font-size: .72rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; }
.gallery-item { position: relative; min-height: 180px; padding: 0; overflow: hidden; border: 0; border-radius: var(--radius); background: var(--ink-950); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s, opacity .3s; }
.gallery-item:hover img { transform: scale(1.035); opacity: .82; }
.gallery-item span { position: absolute; left: .75rem; bottom: .75rem; padding: .4rem .65rem; border-radius: 999px; background: rgba(42,7,9,.82); color: var(--white); font-size: .72rem; font-weight: 850; }
.gallery-item--wide { grid-column: span 2; min-height: 230px; }
.lightbox { position: fixed; z-index: 3000; inset: 0; display: grid; place-items: center; padding: 3.5rem 1rem 1rem; background: rgba(18,5,5,.95); color: var(--white); }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(1100px, 100%); max-height: 78vh; border-radius: var(--radius); box-shadow: var(--shadow); }
.lightbox p { margin: .8rem 0 0; text-align: center; }
.lightbox-close { position: fixed; top: 1rem; right: 1rem; width: 45px; height: 45px; border-radius: 50%; border: 1px solid rgba(255,255,255,.45); background: rgba(255,255,255,.08); color: var(--white); font-size: 1.8rem; }
.review-layout { display: grid; gap: 2rem; align-items: center; }
.review-layout > div > p:not(.eyebrow) { color: var(--ink-600); }
.review-card { padding: 2rem; border-radius: var(--radius-lg); background: var(--red-900); color: var(--white); box-shadow: var(--shadow); }
.review-stars { display: block; margin-bottom: .8rem; color: var(--gold-400); letter-spacing: .18em; }
.review-card strong { display: block; margin-bottom: .6rem; font-family: var(--font-serif); font-size: 1.45rem; }
.review-card p { color: rgba(255,255,255,.78); }
.review-card small { color: var(--gold-200); }
.cta-section { padding-block: 4.5rem; background: linear-gradient(135deg, var(--red-900), var(--red-950)); color: var(--white); }
.cta-inner { display: grid; gap: 1.5rem; align-items: center; }
.cta-inner h2 { margin-bottom: .55rem; }
.cta-inner p:last-child { max-width: 720px; color: rgba(255,255,255,.74); }
.cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.page-hero { padding-block: clamp(4.5rem, 10vw, 7.5rem); color: var(--white); background: linear-gradient(135deg, rgba(42,7,9,.96), rgba(111,15,22,.88)), url('../images/hero-placeholder.svg') center/cover; }
.page-hero .container { max-width: 900px; text-align: center; }
.page-hero h1 { margin-bottom: 1rem; font-size: clamp(2.7rem, 9vw, 5rem); }
.page-hero p:last-child { max-width: 720px; margin-inline: auto; color: rgba(255,255,255,.78); }
.notice { margin-bottom: 1.5rem; padding: 1rem 1.1rem; border-left: 4px solid; border-radius: var(--radius-sm); }
.notice--warning { background: #fff5d7; border-color: #b67a00; color: #5c3e00; }
.notice--error { background: #ffe9eb; border-color: var(--danger); color: #6e1118; }
.menu-toolbar { display: grid; gap: 1rem; margin-bottom: 1.4rem; padding: 1rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); }
.filter-group, .menu-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; }
.filter-group > span { font-weight: 850; }
.toggle { display: inline-flex; align-items: center; gap: .45rem; padding: .55rem .75rem; border: 1px solid var(--border); border-radius: 999px; cursor: pointer; }
.toggle:has(input:checked) { border-color: var(--red-700); background: rgba(111,15,22,.07); color: var(--red-800); }
.category-nav { display: flex; gap: .5rem; overflow-x: auto; padding-bottom: .55rem; margin-bottom: 1rem; scrollbar-width: thin; }
.category-nav a { flex: 0 0 auto; padding: .45rem .7rem; border: 1px solid var(--border); border-radius: 999px; background: var(--white); text-decoration: none; font-size: .84rem; font-weight: 800; }
.menu-status { margin: 1rem 0; color: var(--ink-600); }
.menu-category { scroll-margin-top: 100px; margin-top: 3rem; }
.menu-category-header { display: flex; align-items: end; justify-content: space-between; gap: 1rem; padding-bottom: .7rem; border-bottom: 2px solid var(--red-800); }
.menu-category-header h2 { margin-bottom: 0; font-size: clamp(1.7rem, 5vw, 2.5rem); }
.menu-category-header span { color: var(--ink-600); font-size: .82rem; }
.menu-list { display: grid; gap: .8rem; padding-top: 1rem; }
.menu-item { display: grid; gap: .75rem; padding: 1.15rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-soft); }
.menu-item-top { display: flex; justify-content: space-between; align-items: start; gap: 1rem; }
.menu-item h3 { margin-bottom: .25rem; font-family: var(--font-sans); font-size: 1.02rem; }
.menu-item p { margin-bottom: .5rem; color: var(--ink-600); font-size: .92rem; }
.menu-price { flex: 0 0 auto; color: var(--red-800); font-family: var(--font-serif); font-size: 1.12rem; font-weight: 700; }
.menu-badges { display: flex; flex-wrap: wrap; gap: .4rem; }
.menu-badge { padding: .22rem .48rem; border-radius: 999px; background: var(--cream-100); font-size: .68rem; font-weight: 800; }
.menu-badge--placeholder { background: #fff1bd; color: #694500; }
.menu-empty { padding: 1.5rem; border: 1px dashed var(--border); border-radius: var(--radius); text-align: center; color: var(--ink-600); }
.allergen-info { margin-top: 3rem; padding: 1.5rem; border-radius: var(--radius); background: var(--cream-100); }
.allergen-info h2 { font-size: 1.5rem; }
.form-layout { display: grid; gap: 2rem; align-items: start; }
.form-intro > p:not(.eyebrow) { color: var(--ink-600); }
.contact-card { margin-top: 1.4rem; padding: 1.25rem; border-radius: var(--radius); background: var(--red-900); color: var(--white); }
.contact-card h3 { margin-bottom: .5rem; }
.contact-card p { margin: .65rem 0 0; color: rgba(255,255,255,.75); }
.phone-link { color: var(--gold-400); font-family: var(--font-serif); font-size: 1.55rem; font-weight: 700; }
.form-card { padding: clamp(1.1rem, 4vw, 2rem); border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); }
.form-header p { color: var(--ink-600); }
.form-grid { display: grid; gap: 1rem; }
.field { display: grid; gap: .38rem; }
.field label { font-weight: 800; }
.field input, .field textarea { width: 100%; min-height: 48px; padding: .72rem .8rem; border: 1px solid #bdb2a7; border-radius: .55rem; background: #fffdf8; color: var(--ink-950); }
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--red-700); box-shadow: 0 0 0 3px rgba(111,15,22,.12); outline: none; }
.field [aria-invalid="true"] { border-color: var(--danger); box-shadow: 0 0 0 2px rgba(165,33,43,.12); }
.field-hint { color: var(--ink-600); font-size: .8rem; }
.field-error { min-height: 1.1rem; color: var(--danger); font-size: .8rem; }
.field-meta { display: flex; justify-content: space-between; gap: 1rem; color: var(--ink-600); font-size: .8rem; }
.check-field label { display: flex; align-items: flex-start; gap: .7rem; font-weight: 500; }
.check-field input { width: 19px; min-height: 19px; margin-top: .25rem; flex: 0 0 auto; }
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-status { min-height: 1.5rem; margin: .9rem 0; padding: 0; border-radius: .55rem; }
.form-status:not(:empty) { padding: .8rem; }
.form-status.is-success { background: #e2f4e9; color: #175433; }
.form-status.is-error { background: #ffe8ea; color: #7b1520; }
.form-status.is-info { background: #fff2c8; color: #654300; }
.form-footnote { margin: .8rem 0 0; color: var(--ink-600); font-size: .78rem; text-align: center; }
.contact-layout { display: grid; gap: 2rem; align-items: stretch; }
.contact-list { margin: 1.5rem 0; }
.contact-list > div { display: grid; gap: .25rem; padding: .85rem 0; border-bottom: 1px solid var(--border); }
.contact-list dt { font-weight: 850; color: var(--red-800); }
.contact-list dd { margin: 0; }
.placeholder-inline, .legal-placeholder { display: inline; padding: .08rem .24rem; background: #fff1bd; color: #684700; }
.small-note { color: var(--ink-600); font-size: .82rem; }
.travel-info { margin-top: 1.5rem; padding: 1.2rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--cream-100); }
.travel-info h3 { margin-bottom: .5rem; }
.travel-info p { margin-bottom: 0; }
.map-shell { min-height: 480px; display: grid; overflow: hidden; border-radius: var(--radius-lg); background: var(--red-950); box-shadow: var(--shadow); }
.map-consent { align-self: center; max-width: 520px; padding: 2rem; color: var(--white); text-align: center; margin-inline: auto; }
.map-consent p { color: rgba(255,255,255,.75); }
.map-icon { display: grid; width: 64px; height: 64px; place-items: center; margin: 0 auto 1rem; border: 1px solid var(--gold-500); border-radius: 50%; color: var(--gold-400); font-family: var(--font-serif); font-size: 1.5rem; }
.map-consent .text-link { display: block; margin-top: .8rem; color: var(--gold-200); }
.map-remember { display: flex; justify-content: center; align-items: center; gap: .5rem; margin-top: .85rem; font-size: .82rem; }
.map-shell iframe { width: 100%; height: 100%; min-height: 480px; border: 0; }
.legal-content { max-width: 860px; }
.legal-content h2 { margin-top: 2.2rem; font-size: 1.6rem; }
.legal-content li { margin-bottom: .55rem; }
.legal-review { margin-top: 2.5rem; padding-top: 1rem; border-top: 1px solid var(--border); color: var(--ink-600); font-size: .86rem; }
.settings-panel { max-width: 850px; padding: 1rem; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); }
.settings-panel section { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.2rem .5rem; border-bottom: 1px solid var(--border); }
.settings-panel h2 { margin-bottom: .3rem; font-family: var(--font-sans); font-size: 1.05rem; font-weight: 850; }
.settings-panel p { margin-bottom: 0; color: var(--ink-600); }
.settings-actions { display: flex; flex-wrap: wrap; gap: .75rem; padding: 1.2rem .5rem .5rem; }
.status-pill { flex: 0 0 auto; padding: .35rem .65rem; border-radius: 999px; font-size: .75rem; font-weight: 850; }
.status-pill--fixed { background: #e2f4e9; color: #175433; }
.switch { position: relative; flex: 0 0 auto; }
.switch input { position: absolute; opacity: 0; }
.switch > span[aria-hidden] { display: block; width: 54px; height: 30px; border-radius: 999px; background: #9e968d; transition: background .2s; }
.switch > span[aria-hidden]::after { content: ""; display: block; width: 24px; height: 24px; margin: 3px; border-radius: 50%; background: var(--white); transition: transform .2s; }
.switch input:checked + span { background: var(--red-700); }
.switch input:checked + span::after { transform: translateX(24px); }
.not-found { min-height: calc(100svh - 74px); display: grid; place-items: center; padding-block: 5rem; text-align: center; }
.not-found-code { display: block; color: var(--gold-500); font-family: var(--font-serif); font-size: clamp(6rem, 25vw, 12rem); line-height: .8; }
.site-footer { padding-top: 4rem; background: var(--ink-950); color: var(--white); }
.footer-grid { display: grid; gap: 2rem; }
.footer-title { margin-bottom: .75rem; color: var(--gold-400); font-family: var(--font-sans); font-size: .9rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.site-footer p, .site-footer address { color: rgba(255,255,255,.72); font-style: normal; }
.footer-note { font-size: .75rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .45rem; }
.footer-links a { color: rgba(255,255,255,.82); }
.social-placeholder { display: grid; gap: .35rem; margin-top: 1rem; color: rgba(255,255,255,.45); font-size: .78rem; }
.muted-light { color: rgba(255,255,255,.55); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem; margin-top: 3rem; padding-block: 1.25rem; border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom p { margin: 0; font-size: .75rem; }
.cookie-banner { position: fixed; z-index: 2500; left: .75rem; right: .75rem; bottom: .75rem; display: grid; gap: 1rem; max-width: 1000px; margin-inline: auto; padding: 1rem; border: 1px solid var(--gold-500); border-radius: var(--radius); background: var(--red-950); color: var(--white); box-shadow: var(--shadow); }
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: .3rem 0 0; color: rgba(255,255,255,.72); font-size: .84rem; }
.cookie-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .55rem; }
.cookie-actions .text-link { color: var(--gold-200); }
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (min-width: 680px) {
  .quick-info-grid, .feature-grid, .menu-preview-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-info article { border-bottom: 0; border-right: 1px solid var(--border); }
  .quick-info article:nth-child(2) { border-right: 0; }
  .quick-info article:last-child { grid-column: span 2; border-top: 1px solid var(--border); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-item--wide { grid-column: span 2; }
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .field--full { grid-column: 1 / -1; }
  .contact-list > div { grid-template-columns: 150px 1fr; }
}
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .main-nav { position: static; display: flex !important; align-items: center; gap: .5rem; padding: 0; background: transparent; box-shadow: none; }
  .main-nav ul { display: flex; align-items: center; margin: 0; }
  .main-nav a { padding: .65rem .72rem; font-size: .86rem; }
  .quick-info { margin-top: -3.2rem; }
  .quick-info-grid { grid-template-columns: repeat(3, 1fr); }
  .quick-info article:nth-child(2) { border-right: 1px solid var(--border); }
  .quick-info article:last-child { grid-column: auto; border-top: 0; }
  .split-layout { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(3rem, 7vw, 6rem); }
  .feature-grid { grid-template-columns: repeat(4, 1fr); }
  .menu-preview-grid { grid-template-columns: repeat(3, 1fr); }
  .review-layout { grid-template-columns: 1.2fr .8fr; gap: 5rem; }
  .cta-inner { grid-template-columns: 1fr auto; }
  .menu-toolbar { grid-template-columns: 1fr auto; align-items: center; }
  .form-layout { grid-template-columns: minmax(0, .7fr) minmax(520px, 1.3fr); gap: 4rem; }
  .contact-layout { grid-template-columns: .85fr 1.15fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1.15fr .9fr .7fr .9fr; }
  .cookie-banner { grid-template-columns: 1fr auto; align-items: center; }
}
@media (min-width: 1150px) { .main-nav a { padding-inline: .9rem; font-size: .91rem; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } }
@media print {
  .site-header, .site-footer, .page-hero, .menu-toolbar, .category-nav, .cookie-banner, .notice, .allergen-info { display: none !important; }
  body { background: #fff; color: #000; font-size: 10pt; }
  .section { padding: 0; }
  .container { width: 100%; }
  .menu-category { break-inside: avoid; margin-top: 1.1rem; }
  .menu-item { box-shadow: none; break-inside: avoid; padding: .6rem; }
  .menu-badge--placeholder { border: 1px solid #000; }
  a { text-decoration: none; }
}
