:root {
    color-scheme: light;
    --ink: #151312;
    --muted: #6c625c;
    --line: rgba(21, 19, 18, .12);
    --paper: rgba(255, 252, 247, .86);
    --paper-solid: #fffaf3;
    --accent: #b82421;
    --accent-dark: #861b18;
    --wasabi: #7f9b6a;
    --charcoal: #171411;
    --shadow: 0 18px 60px rgba(38, 28, 21, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
    color: var(--ink);
    background: #faf6ef;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(rgba(255, 250, 243, .84), rgba(255, 250, 243, .84)),
        var(--umami-bg-desktop, url('/storage/umami/tlo3.webp')) right center / auto min(100vh, 980px) no-repeat;
    pointer-events: none;
    transform: translateZ(0);
    will-change: transform;
}

body > * {
    position: relative;
    z-index: 1;
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button {
    font: inherit;
    color: inherit;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
}
[hidden] { display: none !important; }

.topbar {
    position: fixed;
    top: 16px;
    left: 50%;
    z-index: 20;
    width: min(1120px, calc(100% - 28px));
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,.44);
    border-radius: 8px;
    background: rgba(255, 250, 243, .78);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
    backdrop-filter: blur(22px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
    font-weight: 700;
}

.brand img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}

.nav a, .social-link, .pill {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.nav a {
    padding: 0 12px;
    color: #3d3833;
    font-size: 14px;
    font-weight: 650;
}

.nav a:hover { background: rgba(217, 69, 63, .1); color: var(--accent-dark); }

.top-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: max-content;
}

.social-link {
    width: 38px;
    border: 1px solid rgba(217, 69, 63, .22);
    background: rgba(217, 69, 63, .92);
}

.social-link img { width: 18px; height: 18px; object-fit: contain; }

.social-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
}

.language-switcher {
    display: inline-flex;
    gap: 4px;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,.68);
}

.language-switcher button, .language-switcher a {
    min-width: 38px;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #3d3833;
    cursor: pointer;
    font-size: 13px;
    font-weight: 780;
}

.language-switcher button.active,
.language-switcher a.active,
.language-switcher button:hover,
.language-switcher a:hover {
    background: var(--charcoal);
    color: white;
}

.pill {
    gap: 8px;
    padding: 0 14px;
    border: 1px solid rgba(217, 69, 63, .22);
    background: var(--accent);
    color: white;
    font-size: 14px;
    font-weight: 760;
}

.hero {
    min-height: 92vh;
    min-height: 92svh;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: white;
    background: #151312 var(--umami-hero-poster, url('/storage/umami/res1.webp')) center / cover no-repeat;
}

.hero.video-ready {
    background-image: none;
}

.hero video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    opacity: .72;
    background: #151312;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.64) 64%, rgba(0,0,0,.82));
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 132px 0 72px;
}

.hero-logo {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 24px;
    box-shadow: 0 18px 60px rgba(0,0,0,.32);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: rgba(255,255,255,.84);
    font-size: 14px;
    font-weight: 740;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--accent);
}

h1 {
    max-width: 760px;
    margin: 0;
    font-size: 64px;
    line-height: .98;
    letter-spacing: 0;
}

.hero p {
    max-width: 600px;
    margin: 22px 0 28px;
    color: rgba(255,255,255,.82);
    font-size: 20px;
    line-height: 1.55;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.ghost {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.28);
    color: white;
}

.ghost.dark {
    background: rgba(23,20,17,.08);
    border-color: rgba(23,20,17,.14);
    color: var(--ink);
}

.section {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 82px 0;
}

.section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
    gap: 28px;
    align-items: end;
    margin-bottom: 30px;
}

h2 {
    margin: 0;
    font-size: 42px;
    line-height: 1.05;
    letter-spacing: 0;
}

.lead {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.best-grid, .info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.dish-card, .info-panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.dish-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    padding: 0;
    color: var(--ink);
    cursor: pointer;
    text-align: left;
    text-decoration: none;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.dish-card:hover {
    transform: translateY(-4px);
    border-color: rgba(217,69,63,.34);
    box-shadow: 0 24px 70px rgba(38,28,21,.18);
}

.dish-card img {
    width: 100%;
    flex: 0 0 auto;
    height: 218px;
    object-fit: cover;
    object-position: center center;
    background: #eee;
}

.best-grid .dish-card img {
    height: 270px;
}

.dish-body { padding: 16px; }
.dish-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
}

.dish-name {
    margin: 0;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.22;
}

.price {
    min-width: max-content;
    color: var(--accent-dark);
    font-weight: 800;
}

.dish-desc {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.menu-shell {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.category-tabs {
    position: sticky;
    top: 88px;
    display: grid;
    gap: 8px;
    max-height: calc(100vh - 112px);
    overflow: auto;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,250,243,.78);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.category-tabs button {
    min-height: 42px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #504943;
    cursor: pointer;
    padding: 0 12px;
    text-align: left;
    font-weight: 700;
}

.category-tabs button:hover,
.category-tabs button.active {
    background: var(--charcoal);
    color: white;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.menu-item {
    min-height: 128px;
    padding: 0;
}

.menu-item img {
    height: 190px;
}

.item-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.tag {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 9px;
    border-radius: 8px;
    background: rgba(127,155,106,.16);
    color: #526844;
    font-size: 12px;
    font-weight: 760;
}

.gallery-slider {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,250,243,.78);
    box-shadow: var(--shadow);
}

.gallery-track {
    display: flex;
    transition: transform .45s cubic-bezier(.2, .8, .2, 1);
}

.gallery-slide {
    flex: 0 0 100%;
    height: min(68vh, 640px);
    min-height: 360px;
    appearance: none;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.gallery-slide:hover img { transform: scale(1.025); }

.slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 44px;
    height: 44px;
    transform: translateY(-50%);
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 8px;
    background: rgba(23,20,17,.66);
    color: white;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    backdrop-filter: blur(12px);
}

.slider-arrow:hover { background: rgba(217,69,63,.86); }
.slider-arrow.prev { left: 14px; }
.slider-arrow.next { right: 14px; }

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: calc(100% - 96px);
    gap: 7px;
    transform: translateX(-50%);
}

.slider-dots button {
    position: relative;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
}

.slider-dots button::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 18px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.62);
    transition: width .2s ease, background .2s ease, transform .2s ease;
}

.slider-dots button.active::before {
    width: 24px;
    transform: translateX(-8px);
    background: white;
}

.about-band {
    background: rgba(23,20,17,.94);
    color: white;
}

.about-band .section {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 46px;
    align-items: center;
}

.about-band p {
    color: rgba(255,255,255,.75);
    font-size: 18px;
    line-height: 1.75;
}

.about-band img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
}

.info-panel {
    min-height: 220px;
    padding: 22px;
}

.info-panel h3 {
    margin: 0 0 12px;
    font-size: 20px;
}

.info-panel p { margin: 9px 0; color: var(--muted); line-height: 1.55; }
.info-panel strong { color: var(--ink); }

iframe {
    width: 100%;
    height: 420px;
    border: 0;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

footer {
    padding: 30px 16px 44px;
    color: var(--muted);
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
    margin-bottom: 14px;
}

.footer-links a {
    color: #4f4741;
    font-size: 14px;
    font-weight: 700;
}

.footer-links a:hover { color: var(--accent-dark); }

.legal-topbar .top-actions { margin-left: auto; }

.legal-page {
    width: min(920px, calc(100% - 32px));
    margin: 0 auto;
    padding: 138px 0 70px;
}

.legal-document {
    padding: clamp(22px, 5vw, 54px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 250, 243, .9);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
}

.legal-back {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--accent-dark);
    font-size: 14px;
    font-weight: 800;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: #8b817a;
    font-size: 13px;
    font-weight: 760;
}

.breadcrumbs a {
    color: var(--accent-dark);
}

.breadcrumbs span:last-child {
    color: var(--ink);
}

.legal-document h1 {
    max-width: 760px;
    color: var(--ink);
    font-size: clamp(38px, 6vw, 64px);
}

.legal-lead {
    max-width: 720px;
    margin: 18px 0 12px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.legal-updated {
    margin: 0 0 38px;
    color: #8b817a;
    font-size: 14px;
}

.legal-document section {
    padding: 26px 0;
    border-top: 1px solid var(--line);
}

.legal-document h2 {
    margin-bottom: 12px;
    font-size: 25px;
}

.legal-document p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.72;
}

.menu-page {
    padding: 138px 0 30px;
}

.menu-seo-head {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: clamp(24px, 5vw, 56px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 250, 243, .88);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
}

.menu-seo-head h1 {
    color: var(--ink);
    font-size: clamp(40px, 6vw, 72px);
}

.menu-seo-head p {
    max-width: 720px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.menu-seo-section {
    padding-top: 34px;
}

.menu-copy-section {
    padding-top: 0;
}

.seo-copy {
    padding: clamp(22px, 4vw, 42px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 250, 243, .88);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
}

.seo-copy h2 {
    max-width: 780px;
}

.seo-copy p {
    max-width: 860px;
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.78;
}

.section-head.single {
    display: block;
}

.product-hero {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    gap: 22px;
    align-items: stretch;
}

.product-media,
.product-content {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 250, 243, .9);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.product-media img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.product-content {
    padding: clamp(24px, 4vw, 46px);
}

.product-content h1 {
    color: var(--ink);
    font-size: clamp(38px, 5vw, 60px);
}

.product-content h2 {
    margin-top: 34px;
    font-size: 24px;
}

.product-content p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.72;
}

.cookie-consent {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 70;
    width: min(520px, calc(100% - 36px));
    display: grid;
    gap: 16px;
    padding: 18px;
    border: 1px solid rgba(21, 19, 18, .13);
    border-radius: 8px;
    background: rgba(255, 250, 243, .94);
    box-shadow: 0 22px 80px rgba(38, 28, 21, .22);
    backdrop-filter: blur(22px);
}

.cookie-consent h2 {
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
}

.cookie-consent p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.cookie-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

.cookie-button {
    min-height: 40px;
    padding: 0 14px;
    border-radius: 8px;
    border: 1px solid var(--line);
    cursor: pointer;
    font-size: 14px;
    font-weight: 760;
}

.cookie-button.primary {
    border-color: rgba(217, 69, 63, .22);
    background: var(--accent);
    color: white;
}

.cookie-button.secondary {
    background: rgba(255,255,255,.72);
    color: var(--ink);
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: none;
    place-items: center;
    padding: 20px;
    background: rgba(10, 8, 7, .64);
    backdrop-filter: blur(16px);
}

.modal.open { display: grid; }

.modal-card {
    position: relative;
    width: min(760px, 100%);
    max-height: calc(100vh - 40px);
    overflow: auto;
    border-radius: 8px;
    background: var(--paper-solid);
    box-shadow: 0 30px 120px rgba(0,0,0,.36);
}

.modal-image {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    background: #ece7df;
}

.modal-content { padding: 24px; }
.modal-content .item-meta { padding-right: 58px; }
.modal-content h3 { margin: 0 0 8px; font-size: 28px; }
.modal-content p { margin: 0; color: var(--muted); line-height: 1.7; white-space: pre-line; }
.modal-details-link { margin-top: 18px; }
.close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,.48);
    border-radius: 8px;
    background: rgba(23,20,17,.74);
    color: white;
    cursor: pointer;
    font-size: 24px;
}

@media (max-width: 900px) {
    .topbar { align-items: flex-start; }
    .nav { display: none; }
    h1 { font-size: 48px; }
    .section-head, .about-band .section, .menu-shell, .info-grid, .product-hero { grid-template-columns: 1fr; }
    .category-tabs {
        position: static;
        grid-auto-flow: column;
        grid-auto-columns: max-content;
        overflow-x: auto;
    }
    .category-tabs button { white-space: nowrap; }
    .best-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    body {
        background: #faf6ef;
    }
    body::before {
        background:
            linear-gradient(rgba(255, 250, 243, .64), rgba(255, 250, 243, .64)),
            var(--umami-bg-mobile, url('/storage/umami/tlo4.webp')) right top / auto 100svh no-repeat;
        min-height: 100vh;
        min-height: 100svh;
    }
}

@media (max-width: 620px) {
    .topbar { top: 10px; width: calc(100% - 20px); }
    .brand span { display: none; }
    .top-actions { gap: 6px; }
    .top-actions > .social-link { display: none; }
    .pill { padding: 0 10px; font-size: 13px; }
            .language-switcher button, .language-switcher a {
                min-width: 30px;
                min-height: 30px;
                font-size: 12px;
            }
    .hero {
        min-height: 86vh;
        min-height: 86svh;
    }
    .hero-logo { width: 78px; height: 78px; }
    h1 { font-size: 38px; }
    h2 { font-size: 32px; }
    .hero p { font-size: 17px; }
    .best-grid, .menu-grid { grid-template-columns: 1fr; }
    .gallery-slide {
        height: 430px;
        min-height: 430px;
    }
    .slider-dots { display: none; }
    .dish-card img { height: 204px; }
    .best-grid .dish-card img { height: 260px; }
    .cookie-consent {
        right: 10px;
        bottom: 10px;
        width: calc(100% - 20px);
        padding: 14px;
    }
    .cookie-actions { justify-content: stretch; }
    .cookie-button { flex: 1 1 150px; }
    .legal-page { padding-top: 112px; }
    .legal-document { padding: 22px; }
    .menu-page { padding-top: 112px; }
    .product-media img { min-height: 320px; }
}

.map-frame { margin-top: 18px; }
