/* Site behavior and accessible interactive elements. Original design: styles.css. */
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
section, footer { scroll-margin-top: 80px; }
nav { direction: ltr; }
nav.is-scrolled { background: hsl(var(--background) / .97); padding-block: 12px; box-shadow: 0 2px 18px #0000000d; backdrop-filter: blur(12px); }
nav.is-scrolled a, nav.is-scrolled button { color: hsl(var(--foreground)); }
nav.is-scrolled > div:first-child > a img:first-child { opacity: 1; }
nav.is-scrolled > div:first-child > a img:nth-child(2) { opacity: 0; }
#mobile-nav { padding: 12px 24px 24px; background: hsl(var(--background)); box-shadow: 0 8px 12px #0001; }
#mobile-nav a { display: block; padding: 12px 0; color: hsl(var(--foreground)); }
[hidden] { display: none !important; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #b3885b; outline-offset: 5px; }
.menu-tab { display: flex; align-items: center; gap: 8px; border-radius: 999px; padding: 10px 20px; font-size: 14px; background: hsl(var(--secondary)); color: hsl(var(--foreground)); transition: background .2s, color .2s; }
.menu-tab:hover { background: hsl(var(--foreground) / .1); }
.menu-tab.menu-active { background: hsl(var(--foreground)); color: hsl(var(--background)); box-shadow: 0 4px 6px #0001; }
.menu-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 20px 0; border-bottom: 1px solid hsl(var(--border) / .5); }
.menu-row:last-child { border: 0; }
.menu-row h2 { font-size: 18px; font-weight: 600; color: hsl(var(--foreground)); }
.menu-row p { font-size: 14px; margin-top: 4px; line-height: 1.65; color: hsl(var(--muted-foreground)); }
.menu-price { white-space: nowrap; color: hsl(var(--primary)); font-family: var(--font-heading), serif; font-size: 20px; }
.menu-note { text-align: center; color: hsl(var(--muted-foreground)); font-size: 14px; margin-bottom: 24px; }
.section-enter { animation: appear .6s ease-out; }
@keyframes appear { from { opacity: .65; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@media (max-width: 767px) {
  #hero { min-height: 600px; height: 100svh; }
  footer { padding-bottom: 110px !important; }
  .menu-row h2 { font-size: 16px; }
  .menu-price { font-size: 18px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }

/* Image enlargement, directions, and live opening hours. */
.zoomable-photo { cursor: zoom-in; }
.photo-dialog { position: fixed; inset: 0; width: 100vw; height: 100dvh; max-width: none; max-height: none; margin: 0; padding: 64px 20px 24px; border: 0; background: rgb(12 10 8 / .96); color: white; }
.photo-dialog::backdrop { background: rgb(0 0 0 / .8); }
.photo-dialog[open] { display: grid; place-items: center; }
.photo-dialog figure { margin: 0; max-width: 100%; text-align: center; pointer-events: none; }
.photo-dialog img { display: block; max-width: 92vw; max-height: calc(100dvh - 130px); object-fit: contain; margin: auto; pointer-events: auto; }
.photo-dialog figcaption { padding-top: 12px; font-size: 14px; }
.photo-close { position: absolute; top: 12px; right: 16px; width: 44px; height: 44px; border: 1px solid #ffffff60; border-radius: 50%; font-size: 32px; line-height: 1; background: #ffffff15; }
.waze-button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 22px; border-radius: 999px; background: hsl(var(--primary)); color: #201a14; font-weight: 600; transition: filter .2s; }
.waze-button:hover { filter: brightness(1.12); }
.opening-status { display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 12px; text-align: center; }
.opening-status strong { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; }
.opening-status strong::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #d3ad80; }
.opening-status[data-state="open"] strong::before { background: #8fceaa; }
.opening-status[data-state="closed"] strong::before { background: #ddad9e; }
.opening-status span { opacity: .85; }
.hero-status { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 8px 14px; max-width: min(460px, 100%); color: #f7efe5; border: 1px solid rgb(211 173 128 / .24); border-radius: 999px; padding: 12px 20px; margin-top: 24px; background: rgb(28 23 19 / .68); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 8px 28px #0002, inset 0 1px 0 #ffffff08; }
.hero-status strong { font-size: 13px; font-weight: 600; white-space: nowrap; }
.hero-status strong::before { width: 6px; height: 6px; box-shadow: 0 0 0 4px rgb(211 173 128 / .1); }
.hero-status[data-state="closed"] strong::before { background: #d3ad80; }
.hero-status[data-state="open"] strong::before { box-shadow: 0 0 0 4px rgb(143 206 170 / .12); }
.hero-status span { font-size: 12px; opacity: 1; color: #d2c6b8; border-inline-start: 1px solid #ffffff25; padding-inline-start: 14px; line-height: 1.6; }
@media (max-width: 480px) {
  .hero-status { flex-direction: column; gap: 5px; border-radius: 18px; padding: 11px 20px; margin-top: 20px; }
  .hero-status span { border: 0; padding: 0; }
}
.hours-source { font-size: 11px; opacity: .65; text-decoration: underline; text-underline-offset: 3px; }

/* Accessibility and privacy controls. */
.skip-link { position: fixed; top: 8px; right: 12px; z-index: 200; transform: translateY(-180%); padding: 12px 20px; background: #fff; color: #201a14; border: 2px solid #201a14; }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid #201a14; outline-offset: 3px; box-shadow: 0 0 0 6px #fff !important; }
#main-content:focus { outline: none; box-shadow: none !important; }
a, button, input { scroll-margin-block: 110px; }
nav button { min-width: 44px; min-height: 44px; }
nav a:hover { text-decoration: underline; }
.photo-trigger { display: block; width: 100%; height: 100%; cursor: zoom-in; text-align: inherit; }
.photo-trigger:focus-visible { outline-offset: -6px; outline-color: white; box-shadow: inset 0 0 0 9px #201a14 !important; }
.certificate-image .photo-trigger { max-width: 24rem; height: auto; }
.certificate-note { margin-top: 20px; font-size: 14px; line-height: 1.7; color: #51483f; }
main .text-primary, main .menu-price { color: #80572e; }
main .text-muted-foreground, .menu-row p, .menu-note { color: #60564d; }
#hero > .bg-black\/50 { background: rgb(0 0 0 / .65); }
#hero .bg-primary { color: #241b12; }
footer .text-background\/40 { color: #c8bfb5; }
.legal-links { display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: center; margin-top: 32px; }
.legal-links a, .legal-links button { padding: 10px 2px; text-decoration: underline; text-underline-offset: 4px; font-size: 14px; color: #f7f4ed; }
.privacy-banner { position: fixed; left: 20px; bottom: 20px; z-index: 55; width: min(360px, calc(100vw - 40px)); max-height: calc(100dvh - 110px); overflow: auto; padding: 20px; background: #f7f4ed; color: #29221c; border: 1px solid #cbb9a5; border-radius: 18px; box-shadow: 0 12px 40px #29221c26; }
.privacy-banner h2 { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.privacy-banner p { max-width: 900px; font-size: 14px; line-height: 1.8; }
.privacy-banner a, .legal-page a { text-decoration: underline; text-underline-offset: 3px; }
.privacy-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.privacy-actions button, .policy-button { padding: 12px 18px; min-height: 44px; border: 1px solid #51483f; border-radius: 8px; background: #fff; color: #29221c; font-size: 14px; font-weight: 600; }
.privacy-actions button:hover, .policy-button:hover { background: #eee6dc; }
.privacy-dialog { position: fixed; inset: 0; margin: auto; width: min(640px, calc(100% - 32px)); max-height: calc(100dvh - 40px); overflow: auto; border-radius: 16px; padding: 28px; color: #29221c; background: #f7f4ed; }
.privacy-dialog::backdrop { background: #000a; }
.privacy-dialog h2 { font-size: 24px; font-weight: 600; margin-bottom: 16px; }
.privacy-dialog h3 { font-size: 18px; font-weight: 600; margin-top: 20px; }
.privacy-dialog p { font-size: 15px; line-height: 1.8; margin-block: 10px; }
.privacy-option { display: flex; align-items: center; gap: 12px; padding-block: 16px 4px; font-weight: 600; cursor: pointer; }
.privacy-option input { width: 24px; height: 24px; accent-color: #80572e; }
.legal-page { max-width: 900px; margin: auto; padding: 120px 24px 72px; color: #29221c; }
.legal-page h1 { font-size: clamp(30px, 5vw, 44px); margin-bottom: 12px; }
.legal-page h2 { font-size: 24px; font-weight: 600; margin-block: 30px 12px; }
.legal-page p, .legal-page li { font-size: 17px; line-height: 1.9; margin-bottom: 14px; }
.legal-page ul { list-style: disc; padding-inline-start: 24px; }
.legal-page .updated { font-size: 14px; color: #60564d; }
body:has(.legal-page) nav { background: #211b16; }
body:has(.legal-page) nav a, body:has(.legal-page) nav button { color: #fff; }
body:has(.legal-page) nav > div > a img:first-child { opacity: 0; }
body:has(.legal-page) nav > div > a img:nth-child(2) { opacity: 1; }
.menu-price-note { color: #eee3d3; font-size: 14px; margin-bottom: 16px; }
main > .bg-foreground .text-primary { color: #d3ad80; }
body nav #mobile-nav a { color: #29221c; }
@media (max-width: 480px) { .privacy-actions { flex-direction: column; } .privacy-actions button { width: 100%; } .privacy-dialog { padding: 24px 18px; } }

/* Compact privacy notice; both consent choices have equal visual weight. */
.privacy-banner h2 { font-size: 18px; line-height: 1.5; margin-bottom: 8px; }
.privacy-banner p { font-size: 14px; line-height: 1.65; }
.privacy-banner .privacy-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 14px; }
.privacy-banner .privacy-actions button { padding: 9px 8px; min-height: 44px; width: 100%; }
.privacy-banner [data-choice="settings"] { grid-column: 1 / -1; background: transparent; border-color: transparent; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 767px) {
  .privacy-banner { left: 12px; bottom: 158px; width: min(340px, calc(100vw - 24px)); max-height: calc(100dvh - 242px); padding: 16px; }
}
@media (max-height: 500px) {
  .privacy-banner { top: 84px; bottom: auto; max-height: calc(100dvh - 100px); }
}
.seo-home-heading { color: #fff; font-size: clamp(22px, 4vw, 34px); font-weight: 600; line-height: 1.4; margin: 0 0 16px; }
