:root {
    --bg: #0E3027;
    --text: #ffffff;
    --accent-1: #F4A26A;
    --accent-2: #CC5D3E;
    --card: #0E3027;
    --line: rgba(255, 255, 255, 0.18);
    --max-width: 1120px;
}

/* Admin login (50/50 Split, schmales Formular, Logo darüber) */
body.admin-login-page {
    margin: 0;
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
}

.admin-login-split {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(0, 1fr);
}

.admin-login-visual {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    background: #061a14;
}

.admin-login-visual-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.admin-login-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(7, 33, 25, 0.2) 0%,
        rgba(14, 48, 39, 0.45) 70%,
        rgba(14, 48, 39, 0.75) 100%
    );
    pointer-events: none;
}

.admin-login-aside {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: clamp(1.25rem, 4vw, 2.25rem);
    background: linear-gradient(180deg, #0a261f 0%, var(--bg) 55%);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-login-stack {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
}

.admin-login-form-logo {
    display: block;
    width: min(240px, 88%);
    height: auto;
    margin: 0 auto 0.15rem;
    object-fit: contain;
}

.admin-login-card {
    background: #072119;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1rem;
    padding: 1.15rem 1.25rem 1.25rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.admin-login-lead {
    margin: 0 0 1rem;
    font-size: 0.88rem;
    line-height: 1.45;
    opacity: 0.9;
}

.admin-login-error {
    margin: 0 0 1rem;
    padding: 0.55rem 0.65rem;
    border-radius: 0.55rem;
    border: 1px solid rgba(244, 162, 106, 0.45);
    background: rgba(204, 93, 62, 0.12);
    color: var(--accent-1);
    font-size: 0.86rem;
    line-height: 1.35;
}

.admin-login-card label {
    display: block;
    margin: 0 0 0.28rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
}

.admin-login-card label + input {
    margin-bottom: 0.85rem;
}

.admin-login-card input[type="text"],
.admin-login-card input[type="password"] {
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0.55rem 0.65rem;
    border-radius: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: #0b2a21;
    color: var(--text);
    font: inherit;
    font-size: 0.92rem;
}

.admin-login-card input:focus-visible {
    outline: 2px solid rgba(244, 162, 106, 0.55);
    outline-offset: 2px;
}

.admin-login-card .btn[type="submit"] {
    width: 100%;
    margin-top: 0.35rem;
    text-align: center;
}

.admin-login-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.admin-login-footer .btn-outline {
    font-size: 0.82rem;
    padding: 0.48rem 0.85rem;
}

@media (max-width: 860px) {
    .admin-login-split {
        grid-template-columns: 1fr;
        grid-template-rows: minmax(200px, 36vh) auto;
        min-height: 100vh;
    }

    .admin-login-visual::after {
        background: linear-gradient(
            180deg,
            rgba(7, 33, 25, 0.15) 0%,
            rgba(14, 48, 39, 0.72) 100%
        );
    }

    .admin-login-aside {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .admin-login-card .btn {
        transition: none;
    }
}

/* Admin (PHP/FTP) */
.admin-shell {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    min-height: 100vh;
    background: #0E3027;
}

body.admin-res-sidebar-open .admin-shell {
    grid-template-columns: 280px minmax(0, 1fr) min(300px, 32vw);
}

body.res-kiosk-mode.admin-res-sidebar-open .admin-shell {
    grid-template-columns: minmax(0, 1fr) min(300px, 32vw);
}

.admin-sidebar {
    background: #072119;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1rem 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    height: 100vh;
    position: sticky;
    top: 0;
    overflow-y: auto;
}

.admin-logo {
    display: block;
    width: min(138px, 100%);
    margin: 0 auto 50px;
}

.admin-brand,
.admin-sub {
    text-align: center;
}

.admin-brand {
    margin: 0;
    font-size: 1.22rem;
}

.admin-sub {
    margin: 0.2rem 0 0.9rem;
    opacity: 0.8;
    font-size: 0.9rem;
}

.admin-nav a {
    display: block;
    text-decoration: none;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.65rem;
    padding: 0.55rem 0.72rem;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.admin-nav a:hover,
.admin-nav a.is-active {
    border-color: rgba(244, 162, 106, 0.6);
    background: rgba(244, 162, 106, 0.13);
    transform: translateY(-1px);
}

.admin-actions {
    margin-top: auto;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.admin-actions .btn {
    font-size: 0.82rem;
    padding: 0.48rem 0.75rem;
}

.admin-main {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0 1rem 0.85rem;
    font-size: 0.94rem;
    box-sizing: border-box;
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin: 0 -1rem 0.7rem;
    padding: 0.72rem 1rem;
    background: #03120e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 40;
}

.admin-topbar-title,
.admin-topbar h1 {
    margin: 0;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.01em;
    color: #f4a26a;
    flex-shrink: 0;
}

.admin-topbar-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.55rem;
    margin-left: auto;
    flex-wrap: wrap;
}

.admin-notify-wrap {
    position: relative;
    flex-shrink: 0;
}

.admin-notify-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.92);
    cursor: pointer;
    outline: none;
    box-shadow: none;
    transition: color 0.18s ease, opacity 0.18s ease;
}

.admin-notify-btn:hover,
.admin-notify-btn:focus,
.admin-notify-btn:focus-visible,
.admin-notify-btn:active {
    border: none;
    background: transparent;
    color: #f4a26a;
    outline: none;
    box-shadow: none;
}

.admin-notify-btn.has-unread {
    color: #f4a26a;
}

.admin-notify-icon {
    display: block;
}

.admin-notify-badge {
    position: absolute;
    top: -0.2rem;
    right: -0.2rem;
    min-width: 1.1rem;
    height: 1.1rem;
    padding: 0 0.28rem;
    border-radius: 999px;
    background: #db6542;
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1.1rem;
    text-align: center;
    box-shadow: 0 0 0 2px #03120e;
}

.admin-res-sidebar {
    display: none;
    flex-direction: column;
    min-width: 0;
    height: 100vh;
    height: 100dvh;
    position: sticky;
    top: 0;
    overflow: hidden;
    background: #072119;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
}

.admin-res-sidebar:not([hidden]) {
    display: flex;
}

.admin-res-sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    flex-shrink: 0;
    padding: 1rem 0.9rem 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-res-sidebar-title {
    margin: 0;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #f4a26a;
}

.admin-res-sidebar-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0.45rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.admin-res-sidebar-close:hover,
.admin-res-sidebar-close:focus-visible {
    border-color: rgba(244, 162, 106, 0.45);
    background: rgba(244, 162, 106, 0.12);
    color: #f4a26a;
    outline: none;
}

.admin-res-sidebar-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding: 0.65rem 0.75rem;
}

.admin-res-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.admin-res-sidebar-item--unread .admin-notify-item-main {
    border-color: rgba(219, 101, 66, 0.45);
    background: rgba(219, 101, 66, 0.12);
}

.admin-res-sidebar-item--unread .admin-notify-item-main strong {
    color: #ffd4b8;
}

.admin-res-sidebar-foot {
    flex-shrink: 0;
    padding: 0.65rem 0.75rem 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #061a14;
}

.admin-notify-panel-head {
    margin: 0 0 0.45rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #f4a26a;
}

.admin-notify-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.admin-notify-list li {
    margin: 0 0 0.35rem;
    padding: 0.45rem 0.5rem;
    border-radius: 0.4rem;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.92);
}

.admin-notify-list li.admin-notify-item {
    padding: 0;
    background: transparent;
    border: none;
}

.admin-notify-item-main {
    padding: 0.45rem 0.5rem;
    border-radius: 0.4rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.12s ease, border-color 0.12s ease;
}

.admin-notify-item-main:hover,
.admin-notify-item-main:focus-visible {
    background: rgba(244, 162, 106, 0.18);
    border-color: rgba(244, 162, 106, 0.35);
    color: #fff;
}

.admin-notify-item-main:hover strong,
.admin-notify-item-main:focus-visible strong {
    color: #ffd4b8;
}

.admin-notify-item-main span {
    color: rgba(255, 255, 255, 0.82);
}

.admin-notify-item-actions {
    display: flex;
    gap: 0.35rem;
    padding: 0 0.5rem 0.45rem;
}

.admin-notify-act {
    flex: 1;
    font-size: 0.72rem !important;
    padding: 0.28rem 0.4rem !important;
    line-height: 1.2;
}

.admin-notify-act--reject {
    border-color: rgba(200, 120, 100, 0.45) !important;
    color: #f0c4b8 !important;
}

.admin-notify-list li:last-child {
    margin-bottom: 0;
}

.admin-notify-list strong {
    display: block;
    color: #f4a26a;
    font-weight: 600;
    margin-bottom: 0.12rem;
}

.admin-notify-list .admin-notify-empty {
    background: transparent;
    opacity: 0.75;
    font-style: italic;
}

.admin-notify-panel-foot {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.55rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-notify-panel-foot .btn {
    flex: 1 1 auto;
    font-size: 0.78rem;
    padding: 0.38rem 0.55rem;
}

.admin-card {
    background: #072119;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0.8rem;
    padding: 0.75rem;
    margin-bottom: 0.65rem;
}

.admin-card h2 {
    margin: 0 0 0.45rem;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.admin-card h3 {
    margin: 0.7rem 0 0.35rem;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.92rem;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.admin-card p {
    margin: 0 0 0.45rem;
    line-height: 1.35;
    font-size: 0.86rem;
    opacity: 0.9;
}

.admin-card label {
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
    display: block;
    opacity: 0.92;
}

.admin-card input:not(.res-filter-q):not(.res-filter-date):not(.res-settings-input):not(.res-settings-layout-text):not(.res-settings-layout-num):not(.res-fp-seats-input):not(.res-fp-size-cm):not(.res-fp-edit-name),
.admin-card textarea:not(.res-embed-code),
.admin-card select:not(.res-card-field):not(.res-action-sel):not(.res-filter-sel):not(.res-settings-select):not(.res-fp-size-preset):not(.res-fp-door-variant-sel) {
    width: 100%;
    background: #0b2a21;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0.5rem;
    padding: 0.43rem 0.55rem;
    font: inherit;
    font-size: 0.88rem;
    line-height: 1.3;
}

#section-reservations .res-filter-bar,
#section-reservation-settings .res-filter-bar {
    background: #fff;
    border-color: rgba(14, 48, 39, 0.1);
}

#section-reservations .res-filter-q,
#section-reservations .res-filter-sel,
#section-reservations .res-filter-date,
#section-reservations .res-filter-reset,
#section-reservation-settings .res-filter-q,
#section-reservation-settings .res-filter-sel,
#section-reservation-settings .res-filter-date,
#section-reservation-settings .res-filter-reset {
    background: #fff;
    color: #0e3027;
    border-color: rgba(14, 48, 39, 0.12);
}

#section-reservations .res-filter-reset,
#section-reservation-settings .res-filter-reset {
    background: #fff;
    color: #3d5a53;
}

#section-reservation-settings input:not([type="checkbox"]):not([type="radio"]),
#section-reservation-settings select,
#section-reservation-settings textarea.res-embed-code {
    background-color: #fff;
    color: #0e3027;
    border: 1px solid rgba(14, 48, 39, 0.14);
}

#section-reservation-settings select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235a6d66' d='M3 4.5L6 8l3-3.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.65rem center;
    padding-right: 2.1rem;
}

#section-reservation-settings input:focus,
#section-reservation-settings select:focus,
#section-reservation-settings textarea.res-embed-code:focus {
    outline: none;
    border-color: rgba(219, 101, 66, 0.45);
    box-shadow: 0 0 0 3px rgba(219, 101, 66, 0.12);
}

#section-reservation-settings input[readonly] {
    background-color: #f6f9f7;
    color: #3d5a53;
}

#section-reservations .res-fp-edit input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
#section-reservations .res-fp-edit select,
#section-reservations .res-fp-room-size-inline input,
#section-reservation-stats input:not([type="checkbox"]):not([type="radio"]),
#section-reservation-stats select,
.res-detail-dialog input:not([type="checkbox"]):not([type="radio"]),
.res-detail-dialog select,
.res-detail-dialog textarea,
.res-create-form input,
.res-create-form select,
.res-create-form textarea {
    background-color: #fff;
    color: #0e3027;
    border: 1px solid rgba(14, 48, 39, 0.14);
}

#section-reservations .res-fp-edit input:focus,
#section-reservations .res-fp-edit select:focus,
#section-reservations .res-fp-room-size-inline input:focus,
.res-detail-dialog input:focus,
.res-detail-dialog select:focus,
.res-detail-dialog textarea:focus,
.res-create-form input:focus,
.res-create-form select:focus,
.res-create-form textarea:focus {
    outline: none;
    border-color: rgba(219, 101, 66, 0.45);
    box-shadow: 0 0 0 3px rgba(219, 101, 66, 0.12);
}

.admin-card textarea {
    resize: vertical;
    min-height: 76px;
}

.list-item {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.58rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.48rem;
    margin-bottom: 0.44rem;
}

.item-actions-inline {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    flex-wrap: wrap;
}

.admin-main .btn {
    padding: 0.42rem 0.72rem;
    font-size: 0.82rem;
}

.admin-main .btn.btn-outline {
    border-width: 1px;
}

.admin-main .admin-row {
    display: grid;
    gap: 0.38rem;
    margin-bottom: 0.42rem;
    align-items: center;
}

@media (max-width: 980px) {
    .admin-shell {
        grid-template-columns: minmax(0, 1fr);
    }

    body.admin-res-sidebar-open .admin-shell {
        grid-template-columns: minmax(0, 1fr) min(260px, 42vw);
    }

    .admin-main {
        padding: 0 0.72rem 0.72rem;
    }

    .admin-topbar {
        margin-left: -0.72rem;
        margin-right: -0.72rem;
        flex-wrap: wrap;
    }

    .admin-topbar-actions {
        width: 100%;
        justify-content: space-between;
    }
}

@font-face {
    font-family: "Vogun";
    src: local("Vogun"), local("Vogun Medium"), url("fonts/Vogun-Medium.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Awesome Ways";
    src: local("Awesome Ways"), url("fonts/Awesome_Ways.otf") format("opentype");
    font-display: swap;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    margin: 0;
    font-family: "Montserrat", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: clip;
    scrollbar-color: #CC5D3E transparent;
    scrollbar-width: thin;
}

*::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background: #CC5D3E;
    border-radius: 999px;
    border: 2px solid transparent;
}

*::-webkit-scrollbar-thumb:hover {
    background: #d46a4c;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--accent-1);
    text-underline-offset: 2px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 0.8rem;
    color: var(--accent-1);
    line-height: 1.15;
    font-family: "Vogun", "Awesome Ways", "Satisfy", "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: 0.02em;
}

p {
    margin: 0 0 1rem;
}

.container {
    width: min(100% - 2rem, var(--max-width));
    margin-inline: auto;
}

.section {
    padding: 5.2rem 0;
}

#about {
    position: relative;
    isolation: isolate;
}

#menu {
    position: relative;
    isolation: isolate;
}

#gallery {
    position: relative;
    isolation: isolate;
}

#reservierung {
    position: relative;
    isolation: isolate;
}

#zeiten {
    position: relative;
    isolation: isolate;
}

#faq {
    position: relative;
    isolation: isolate;
}

#about::before,
#menu::before,
#gallery::before,
#reservierung::before,
#zeiten::before,
#faq::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    /* 100vw zählt oft die Scrollbar mit → rechter Streifen; svw/dvw passen besser zum sichtbaren Viewport */
    width: 100vw;
    width: 100svw;
    transform: translateX(-50%);
    z-index: -1;
}

#about::before {
    background: #0E3027;
}

#menu::before {
    background: #07211A;
}

#gallery::before {
    background: #0E3027;
}

#reservierung::before {
    background: #07211A;
}

#faq::before {
    background: #0E3027;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
}

.skip-link:focus {
    left: 1rem;
    background: var(--accent-2);
    color: var(--text);
    padding: 0.6rem 0.8rem;
    border-radius: 0.5rem;
}

.scroll-toc {
    position: fixed;
    left: 2.4rem;
    top: 56%;
    transform: translateY(-50%);
    z-index: 25;
    display: flex;
    flex-direction: column;
    gap: 56px;
    padding: 0;
}

.toc-item {
    display: block;
    width: 0.72rem;
    height: 0.72rem;
    color: #ffffff;
    text-decoration: none;
    position: relative;
    opacity: 0.72;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.toc-item::before {
    content: none;
}

.toc-item:first-child::before {
    display: none;
}

.toc-dot {
    display: block;
    flex: 0 0 0.72rem;
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 999px;
    border: 1px solid #F4A26A;
    background: rgba(7, 33, 26, 0.92);
    box-shadow: 0 0 0 0 rgba(204, 93, 62, 0.45);
    transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.toc-label {
    position: absolute;
    left: 2rem;
    top: 50%;
    display: block;
    min-width: auto;
    white-space: nowrap;
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    opacity: 0;
    transform: translate(-8px, -50%);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, color 0.22s ease;
}

.toc-item:hover .toc-label,
.toc-item.is-active .toc-label {
    opacity: 1;
    transform: translate(0, -50%);
    color: #ffffff;
}

.toc-item.is-active .toc-label {
    line-height: 1.05;
}

.toc-item:hover .toc-dot,
.toc-item.is-active .toc-dot {
    transform: scale(1.18);
    border-color: #CC5D3E;
    background: #CC5D3E;
    box-shadow: 0 0 0 6px rgba(204, 93, 62, 0.18);
}

.toc-item:hover,
.toc-item.is-active {
    opacity: 1;
    transform: translateX(2px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: #0E3027;
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(6px);
    transition: padding 0.18s ease, min-height 0.18s ease;
}

.topbar {
    background: #07211A;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.topbar p {
    margin: 0;
}

.topbar-inner {
    width: min(100% - 2rem, var(--max-width));
    margin: 0 auto;
    padding: 0.45rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
}

.topbar-hours {
    position: relative;
}

.topbar-hours-toggle,
.topbar-lang-toggle {
    border: 0;
    background: transparent;
    color: #ffffff;
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font: inherit;
    cursor: pointer;
    user-select: none;
}

#opening-status {
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 400;
    text-align: left;
}

.topbar-caret {
    color: #CC5D3E;
    width: 0.82rem;
    height: 0.82rem;
    transform: translateY(1px);
    transition: transform 0.15s ease;
}

.topbar-caret svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.topbar-hours-toggle[aria-expanded="true"] .topbar-caret,
.topbar-lang-toggle[aria-expanded="true"] .topbar-caret {
    transform: rotate(180deg) translateY(-1px);
}

.topbar-hours-panel,
.topbar-lang-panel {
    position: absolute;
    left: 0;
    top: calc(100% + 0.35rem + 1px);
    min-width: 290px;
    padding: 0.55rem 0.7rem;
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 0.65rem 0.65rem;
    background: #07211A;
    z-index: 30;
    overflow: hidden;
    opacity: 0;
    transform-origin: top center;
    transform: translateY(-4px) scaleY(0.08);
    max-height: 0;
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), max-height 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.topbar-lang-panel {
    left: auto;
    right: 0;
    min-width: 10.5rem;
    z-index: 40;
    padding: 0.45rem 0.5rem;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.topbar-hours-panel.is-open,
.topbar-lang-panel.is-open {
    opacity: 1;
    transform: translateY(0) scaleY(1);
    max-height: 16rem;
    pointer-events: auto;
}

.topbar-hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.topbar-hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.16rem 0;
    font-size: 0.78rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.topbar-hours-panel.is-open .topbar-hours-list li {
    opacity: 1;
    transform: translateY(0);
}

.topbar-hours-panel.is-open .topbar-hours-list li:nth-child(1) {
    transition-delay: 0.34s;
}

.topbar-hours-panel.is-open .topbar-hours-list li:nth-child(2) {
    transition-delay: 0.45s;
}

.topbar-hours-panel.is-open .topbar-hours-list li:nth-child(3) {
    transition-delay: 0.56s;
}

.topbar-hours-panel.is-open .topbar-hours-list li:nth-child(4) {
    transition-delay: 0.67s;
}

.topbar-hours-panel.is-open .topbar-hours-list li:nth-child(5) {
    transition-delay: 0.78s;
}

.topbar-hours-panel.is-open .topbar-hours-list li:nth-child(6) {
    transition-delay: 0.89s;
}

@media (prefers-reduced-motion: reduce) {
    .topbar-hours-panel,
    .topbar-lang-panel,
    .topbar-hours-list li,
    .topbar-lang-option,
    .topbar-caret {
        transition: none;
    }

    .hero-visual img {
        animation: none;
        transform: none;
        will-change: auto;
    }
}

.topbar-address {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 400;
    white-space: nowrap;
    text-decoration: none;
}

.topbar-address:hover,
.topbar-address:focus-visible {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.location-icon {
    color: #CC5D3E;
    width: 0.95rem;
    height: 0.95rem;
    line-height: 1;
}

.location-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: currentColor;
    stroke: none;
}

.location-icon svg circle {
    fill: #07211A;
}

.topbar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    flex: 0 1 auto;
    min-width: 0;
    margin-left: auto;
}

.topbar-lang-wrap {
    position: relative;
    flex: 0 0 auto;
}

.topbar-lang-current {
    letter-spacing: 0.02em;
    font-size: 0.8rem;
    font-weight: 400;
}

.topbar-lang-option {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    width: 100%;
    margin: 0;
    padding: 0.38rem 0.55rem;
    border: 0;
    border-radius: 0.4rem;
    background: transparent;
    color: #ffffff;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 400;
    text-align: left;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.topbar-lang-option-flag {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.38rem;
    height: 0.92rem;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.22);
}

.topbar-lang-flag-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.topbar-lang-panel.is-open .topbar-lang-option {
    opacity: 1;
    transform: translateY(0);
}

.topbar-lang-panel.is-open .topbar-lang-option:nth-child(1) {
    transition-delay: 0.34s;
}

.topbar-lang-panel.is-open .topbar-lang-option:nth-child(2) {
    transition-delay: 0.45s;
}

.topbar-lang-panel.is-open .topbar-lang-option:nth-child(3) {
    transition-delay: 0.56s;
}

.topbar-lang-option:hover,
.topbar-lang-option:focus-visible {
    background: rgba(255, 255, 255, 0.08);
}

.topbar-lang-option:focus-visible {
    outline: 2px solid #f4a26a;
    outline-offset: 2px;
}

@media (max-width: 920px) {
    .topbar-inner {
        flex-wrap: nowrap;
        gap: 0.75rem;
        justify-content: center;
        padding: 0.18rem 0;
    }
    .topbar-hours {
        margin: 0;
    }

    .topbar-right {
        display: none;
    }
    .topbar-hours-panel {
        left: 50%;
        right: auto;
        min-width: 250px;
        width: min(320px, calc(100vw - 2rem));
        transform: translateX(-50%) translateY(-10px) scaleY(0.08);
    }
    .topbar-hours-panel.is-open {
        transform: translateX(-50%) translateY(-6px) scaleY(1);
    }
    .topbar-address {
        display: none;
    }
    #opening-status {
        text-align: center;
        font-size: 0.84rem;
        line-height: 1.2;
    }
}

.nav {
    min-height: 94px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
    transition: min-height 0.18s ease;
}

.nav-burger {
    display: none;
}

.mobile-menu,
.mobile-menu-backdrop {
    display: none;
}

.site-header.is-scrolled .topbar {
    display: none;
}

.nav-left {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.nav-left li+li {
    position: relative;
    padding-left: 1rem;
}

.nav-left li+li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 1rem;
    background: #CC5D3E;
}

.nav-left a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.92rem;
    opacity: 0.92;
}

.nav-left a:hover {
    color: var(--accent-1);
}

.logo-link {
    justify-self: center;
}

.logo-stack {
    position: relative;
    display: block;
    width: clamp(105px, 12vw, 155px);
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
    transition: width 0.34s cubic-bezier(0.22, 0.8, 0.2, 1), margin 0.34s cubic-bezier(0.22, 0.8, 0.2, 1), transform 0.34s cubic-bezier(0.22, 0.8, 0.2, 1);
}

.logo {
    width: 100%;
    display: block;
    margin: 0;
    transition: opacity 0.32s cubic-bezier(0.22, 0.8, 0.2, 1), transform 0.32s cubic-bezier(0.22, 0.8, 0.2, 1);
}

.logo-compact {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(0);
}

.logo-full {
    opacity: 1;
    filter: blur(0);
    transition: opacity 0.46s cubic-bezier(0.22, 0.8, 0.2, 1), filter 0.46s cubic-bezier(0.22, 0.8, 0.2, 1), transform 0.46s cubic-bezier(0.22, 0.8, 0.2, 1);
}

.site-header.is-scrolled .nav {
    min-height: 62px;
}

.site-header.is-scrolled .logo-stack {
    width: clamp(92px, 10.5vw, 138px);
    margin-top: 0.1rem;
    margin-bottom: 0.2rem;
    transform: translateY(-23px);
}

.site-header.is-scrolled .logo-full {
    opacity: 0;
}

.site-header.is-scrolled .logo-compact {
    opacity: 1;
}

.call-btn {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.call-btn svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

.nav-actions {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.nav-social {
    gap: 0.5rem;
    margin-right: 0.55rem;
}

.nav-social a {
    color: #ffffff;
    border-color: #ffffff;
}

.nav-social a:hover,
.nav-social a:focus-visible {
    color: var(--accent-1);
    border-color: var(--accent-1);
    opacity: 1;
}

.hero {
    --hero-ken-duration: 14s;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding-top: 6.4rem;
    padding-bottom: 2.2rem;
}

.eyebrow {
    font-family: "Awesome Ways", "Satisfy", "Montserrat", sans-serif;
    color: var(--text);
    font-size: clamp(1.22rem, 2.2vw, 1.98rem);
    font-weight: 200;
    letter-spacing: 0.02em;
    margin-bottom: 30px;
}

h1 {
    font-size: clamp(2rem, 6vw, 4.2rem);
    margin-bottom: 1.3rem;
}

h2 {
    font-size: clamp(1.6rem, 4vw, 2.7rem);
}

h3 {
    font-size: clamp(1.2rem, 2.4vw, 1.7rem);
}

.lead {
    margin: 0 0 1.5rem;
    font-size: 1.06rem;
    max-width: 62ch;
}

@keyframes hero-ken-burns {
    0% {
        transform: scale(1.04) translate3d(1.2%, 0.4%, 0);
    }
    100% {
        transform: scale(1.14) translate3d(-2.2%, -1.2%, 0);
    }
}

.hero-facts {
    margin: 1.3rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.3rem;
    font-size: 0.95rem;
    opacity: 0.92;
}

.hero-visual {
    overflow: hidden;
    border-radius: 1.2rem;
    border: 1px solid var(--line);
    isolation: isolate;
}

.hero-visual img {
    display: block;
    width: 100%;
    border-radius: 0;
    border: 0;
    object-fit: cover;
    height: 560px;
    transform-origin: 28% 42%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    animation: hero-ken-burns var(--hero-ken-duration, 14s) ease-in-out infinite alternate;
    will-change: transform;
}

.hero-actions {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.btn {
    display: inline-block;
    border: 0;
    border-radius: 999px;
    background: var(--accent-2);
    color: var(--text);
    text-decoration: none;
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 600;
    padding: 0.75rem 1.15rem;
    cursor: pointer;
    transition: transform 0.15s ease, filter 0.15s ease;
}

.btn:hover,
.btn:focus-visible {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.btn-outline {
    background: #0E3027;
    border: 1px solid var(--accent-1);
}

.menu-grid {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.menu-paper {
    background: #0E3027;
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 0.6rem 1.1rem;
}

.menu-item {
    padding: 0.9rem 0;
    border-bottom: 1px dashed var(--line);
}

.menu-item:last-child {
    border-bottom: 0;
}

.menu-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
}

.menu-line h3 {
    margin: 0;
    color: #ffffff;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: 0;
}

.menu-desc {
    margin: 0.35rem 0 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 1rem;
}

.card-image {
    width: 100%;
    height: 190px;
    border-radius: 0.8rem;
    object-fit: cover;
    margin-bottom: 0.7rem;
}

.price {
    margin: 0;
    color: var(--accent-1);
    font-weight: 700;
    white-space: nowrap;
}

.price .price-prefix {
    font-weight: 300;
    font-style: italic;
    opacity: 0.92;
    margin-right: 0.2rem;
}

.menu-note {
    margin-top: 1rem;
    font-size: 0.95rem;
}

.section.container>.eyebrow {
    margin-top: 0.35rem;
    margin-bottom: 30px;
    text-align: center;
    font-size: clamp(1.43rem, 2.6vw, 2.34rem);
    line-height: 1.1;
}

.section.container>h2 {
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
    font-size: clamp(2.08rem, 5.2vw, 3.51rem);
    line-height: 1.08;
}

.section.container>h2::after {
    content: none;
}

#menu {
    display: grid;
    gap: 1rem;
}

#menu>.eyebrow {
    margin-bottom: 30px;
}

#menu .menu-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: -0.45rem 0 0.55rem;
    width: 100%;
    justify-content: center;
    align-items: center;
}

#menu .menu-filter-btn {
    border: 1px solid rgba(244, 162, 106, 0.45);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.94);
    border-radius: 999px;
    padding: 0.35rem 0.78rem;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.79rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

#menu .menu-filter-btn:hover,
#menu .menu-filter-btn:focus-visible {
    background: rgba(244, 162, 106, 0.12);
    border-color: rgba(244, 162, 106, 0.7);
    transform: translateY(-1px);
}

#menu .menu-filter-btn.is-active {
    background: rgba(244, 162, 106, 0.2);
    border-color: rgba(244, 162, 106, 0.85);
    color: #fff;
}

#menu .menu-filter-empty {
    margin: 0.25rem 0 0.85rem;
    padding: 0.7rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0.7rem;
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.92rem;
}

#menu>h2:not(:first-of-type) {
    margin-top: 1.6rem;
    margin-bottom: 0.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 0;
    font-size: clamp(1.45rem, 3vw, 2rem);
    text-align: left;
}

#menu .menu-paper {
    display: block;
    margin-bottom: 0.4rem;
    padding: 0.9rem 1.25rem;
    border-radius: 1.1rem;
    background: #0E3027;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

#menu .menu-paper-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 0.4rem;
}

#menu .menu-paper-grid .menu-paper {
    margin-bottom: 0;
}

#menu .menu-duo {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 0.4rem;
}

#menu .menu-subtitle {
    margin-top: 1.6rem;
    margin-bottom: 0.35rem;
    padding-bottom: 0.5rem;
    border-bottom: 0;
    font-size: clamp(1.45rem, 3vw, 2rem);
    text-align: left;
}

#menu .menu-item {
    padding: 1rem 0;
}

#menu .menu-line {
    align-items: flex-end;
    gap: 0.6rem;
}

#menu .menu-line::after {
    content: "";
    order: 2;
    flex: 1;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.45);
    margin-bottom: 0.35rem;
}

#menu .menu-line h3 {
    order: 1;
    font-size: calc(1.06rem - 1pt);
    font-weight: 700;
}

#menu .menu-flags {
    margin-left: 0.18rem;
    font-size: 0.56em;
    letter-spacing: 0.18em;
    font-weight: 300;
    color: rgba(244, 162, 106, 0.95);
    position: relative;
    cursor: help;
}

#menu .menu-flags::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%) translateY(4px);
    min-width: 220px;
    max-width: 340px;
    padding: 0.5rem 0.65rem;
    border-radius: 0.55rem;
    background: #CC5D3E;
    color: #ffffff;
    font-size: 0.72rem;
    line-height: 1.32;
    letter-spacing: 0.01em;
    text-transform: none;
    white-space: normal;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 8;
}

#menu .menu-flags:hover::after,
#menu .menu-flags:focus-visible::after,
#menu .menu-flags.is-active::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

#menu .price {
    order: 3;
    min-width: 5.2rem;
    text-align: right;
    font-size: calc(1rem - 1pt);
}

#menu .menu-desc {
    margin-top: 0.4rem;
    opacity: 0.88;
    max-width: 80%;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

#menu .menu-wiki-link {
    color: inherit;
    text-decoration: none;
    border: 0;
    padding: 0;
    margin: 0;
    font: inherit;
    font-weight: inherit;
    cursor: inherit;
    background: transparent;
    box-shadow: none;
}

#menu .menu-wiki-link:hover,
#menu .menu-wiki-link:visited,
#menu .menu-wiki-link:active {
    color: inherit;
    text-decoration: none;
}

#menu .menu-wiki-link:focus-visible {
    outline: 1px dotted rgba(255, 255, 255, 0.45);
    outline-offset: 2px;
}

#menu .menu-line h3 .menu-wiki-link {
    font-weight: 600;
}

#menu .menu-desc .ingredient+.ingredient::before {
    content: " | ";
}

.allergen-panel {
    margin-top: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 0.95rem;
    background: #07211A;
    padding: 0.95rem 1.05rem;
}

.allergen-panel summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--accent-1);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.allergen-panel summary::-webkit-details-marker {
    display: none;
}

.allergen-panel summary::after {
    content: " +";
    color: #CC5D3E;
    margin-left: 1rem;
    flex: 0 0 auto;
}

.allergen-panel[open] summary::after {
    content: " −";
}

.allergen-note {
    margin: 0.55rem 0 0.6rem;
    font-size: 0.86rem;
    opacity: 0.9;
}

.allergen-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem 0.9rem;
}

.allergen-list li {
    font-size: 0.9rem;
    line-height: 1.35;
}

.about-grid,
.reserve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.panel {
    background: #0E3027;
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 1.1rem;
}

#about .panel {
    background: #07211A;
}

.contact-box {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

address {
    font-style: normal;
}

.hours {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 520px;
}

.hours li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--line);
}

.faq-list details {
    border: 1px solid rgba(244, 162, 106, 0.28);
    border-radius: 1rem;
    padding: 1rem 1.15rem;
    margin-bottom: 0.95rem;
    background: #07211A;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.faq-list details[open] {
    border-color: rgba(244, 162, 106, 0.55);
    transform: translateY(-1px);
}

.faq-list summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--accent-1);
    font-size: 1.02rem;
    line-height: 1.35;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    flex: 0 0 1.7rem;
    width: 1.7rem;
    height: 1.7rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid #CC5D3E;
    background: #CC5D3E;
    color: #ffffff;
    font-weight: 500;
    font-size: 1.15rem;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    margin: 0.7rem 0 0.2rem;
    max-width: 72ch;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(var(--gallery-columns, 5), minmax(0, 1fr));
    gap: 0.9rem;
    --gallery-columns-mobile: 2;
}

.gallery-grid img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 0.9rem;
    border: 1px solid var(--line);
    cursor: zoom-in;
    transition: transform 0.22s ease, filter 0.22s ease;
}

.gallery-grid img:hover,
.gallery-grid img:focus-visible {
    transform: scale(1.03);
    filter: brightness(1.03);
}

@media (max-width: 1280px) {
    .gallery-grid {
        grid-template-columns: repeat(var(--gallery-columns-tablet, 3), minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    .gallery-grid {
        grid-template-columns: repeat(var(--gallery-columns-mobile, 2), minmax(0, 1fr));
    }

    .gallery-grid img {
        height: auto;
        aspect-ratio: 1 / 1;
    }
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.84);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    z-index: 120;
}

.lightbox.is-open {
    display: flex;
}

.lightbox-dialog {
    position: relative;
    width: auto;
    max-width: 94vw;
    max-height: 92vh;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    width: auto;
    height: auto;
    max-width: 94vw;
    max-height: 92vh;
    object-fit: contain;
    border-radius: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.5);
    background: #071f18;
}

.lightbox-close {
    position: absolute;
    top: -0.45rem;
    right: -0.45rem;
    width: 2.2rem;
    height: 2.2rem;
    border: 0;
    border-radius: 999px;
    background: #CC5D3E;
    color: #ffffff;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
}

.lightbox-share {
    margin-top: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    flex-wrap: nowrap;
}

.lightbox-share-text {
    margin: 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
}

.lightbox-share-btn {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #fff;
    border-radius: 999px;
    padding: 0.48rem 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    cursor: pointer;
    font-size: 0.82rem;
    line-height: 1;
}

.lightbox-share-icon {
    width: 0.95rem;
    height: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lightbox-share-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.lightbox-share-btn:hover,
.lightbox-share-btn:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.55);
}

.reservation-popup {
    position: fixed;
    inset: 0;
    background: rgba(3, 12, 10, 0.68);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 90;
    padding: 1.1rem;
}

.reservation-popup.is-open {
    display: flex;
}

.reservation-popup-dialog {
    position: relative;
    width: min(520px, calc(100vw - 2.2rem));
    max-width: 100%;
    min-width: 0;
    max-height: min(92vh, 92dvh, 720px);
    height: auto;
    border-radius: 1rem;
    overflow: hidden;
    background: linear-gradient(160deg, #072119 0%, #0b2a21 100%);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 26px 56px rgba(0, 0, 0, 0.45);
}

.reservation-popup-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    padding: 0.62rem 0.72rem 0.62rem 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.reservation-popup-kicker {
    margin: 0;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.78;
}

.reservation-popup-title {
    margin: 0.1rem 0 0;
    color: #f4a26a;
    font-size: 1rem;
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 600;
}

.reservation-popup-body {
    position: relative;
    max-height: calc(92vh - 58px);
    height: auto;
    padding: 0.85rem;
    overflow: auto;
    overflow-x: hidden;
    min-width: 0;
    box-sizing: border-box;
}

.reservation-inline-root {
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.88rem;
    line-height: 1.45;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.reservation-inline-notice {
    margin: 0;
    padding: 0.55rem 0.65rem;
    border-radius: 0.55rem;
    background: rgba(244, 162, 106, 0.12);
    border: 1px solid rgba(244, 162, 106, 0.35);
    font-size: 0.82rem;
}

.reservation-newsletter-opt {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin: 0.65rem 0 0.85rem;
    font-size: 0.78rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.88);
    cursor: pointer;
}

.reservation-newsletter-opt input {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.reservation-newsletter-opt a {
    color: var(--accent-1);
    text-decoration: underline;
}

.reservation-inline-notice--last-step {
    margin: 0.75rem 0 0.95rem;
}

.reservation-inline-success:not([hidden]) {
    margin: 0 0 0.75rem;
}

.reservation-stepper {
    margin: 0 0 0.85rem;
}

.reservation-stepper-track {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.15rem;
}

.reservation-stepper-item {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.22rem;
    text-align: center;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.52);
    font-weight: 500;
}

.reservation-stepper-item.is-active {
    color: rgba(244, 162, 106, 0.98);
    font-weight: 700;
}

.reservation-stepper-num {
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.92);
}

.reservation-stepper-item.is-active .reservation-stepper-num {
    border-color: rgba(244, 162, 106, 0.75);
    background: rgba(244, 162, 106, 0.16);
    color: #fff;
}

.reservation-stepper-line {
    flex: 0 0 1.25rem;
    height: 2px;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 1px;
    margin-bottom: 1.1rem;
}

.reservation-step-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.55rem;
    margin-top: 0.95rem;
    flex-wrap: wrap;
}

.reservation-step-actions--end {
    justify-content: flex-end;
}

.reservation-step-actions .btn {
    flex: 1 1 auto;
    min-width: 0;
}

.reservation-summary {
    margin: 0 0 0.35rem;
    padding: 0.55rem 0.62rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.82rem;
    line-height: 1.45;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.reservation-summary-list {
    margin: 0;
    padding-left: 1.05rem;
    list-style: disc;
}

.reservation-summary-list li {
    margin: 0.45rem 0;
}

.reservation-summary-list strong {
    color: rgba(244, 162, 106, 0.95);
    font-weight: 600;
}

@media (max-width: 420px) {
    .reservation-step-actions {
        flex-direction: column;
    }

    .reservation-step-actions .btn {
        width: 100%;
        flex: none;
    }
}

.reservation-inline-form {
    display: grid;
    gap: 0.95rem;
    min-width: 0;
    max-width: 100%;
}

.reservation-inline-form > .reservation-step[hidden] {
    display: none !important;
}

.reservation-inline-form > .reservation-step:not([hidden]) {
    min-width: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.reservation-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.62rem;
    min-width: 0;
    max-width: 100%;
}

/* Datum + Uhrzeit: Flex, gleiche max. Spaltenbreite (50% − Gap), nie breiter als Popup-Inhalt */
.reservation-field-row--datetime {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 0.55rem;
    min-width: 0;
    max-width: 100%;
    width: 100%;
}

.reservation-field-row--datetime > .reservation-field--date,
.reservation-field-row--datetime > .reservation-field--time {
    flex: 1 1 0;
    min-width: 0;
    max-width: calc(50% - 0.275rem);
    width: 100%;
}

.reservation-field-row--datetime .reservation-field--date input[type="date"],
.reservation-field-row--datetime .reservation-field--time select {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    height: 2.75rem;
    min-height: 2.75rem;
    max-height: 2.75rem;
    padding: 0 0.5rem;
    font-size: 0.875rem;
    line-height: 1.2;
}

.reservation-field-row--datetime .reservation-field--time select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M3 4.5L6 8l3-3.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.4rem center;
    padding-right: 1.35rem;
}

@media (max-width: 520px) {
    .reservation-field-row {
        grid-template-columns: 1fr;
    }

    .reservation-field-row--datetime {
        flex-direction: column;
        align-items: stretch;
    }

    .reservation-field-row--datetime > .reservation-field--date,
    .reservation-field-row--datetime > .reservation-field--time {
        flex: 1 1 auto;
        max-width: none;
        width: 100%;
    }
}

.reservation-field,
.reservation-fieldset {
    display: grid;
    gap: 0.5rem;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.reservation-field span,
.reservation-fieldset legend {
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(244, 162, 106, 0.95);
}

.reservation-field input,
.reservation-field select {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    border-radius: 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background-color: rgba(255, 255, 255, 0.06);
    color: #fff;
    padding: 0.42rem 0.5rem;
    font-size: 0.88rem;
}

.reservation-field input[type="date"] {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.reservation-fieldset {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0.5rem;
    padding: 0.55rem 0.65rem;
    margin: 0;
}

.reservation-fieldset legend {
    padding: 0 0.25rem;
}

.reservation-radio {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.84rem;
    margin: 0.22rem 0;
    cursor: pointer;
}

.reservation-inline-error {
    margin: 0;
    padding: 0.45rem 0.55rem;
    border-radius: 0.45rem;
    background: rgba(180, 60, 50, 0.25);
    border: 1px solid rgba(255, 120, 100, 0.45);
    color: #ffd6d0;
    font-size: 0.82rem;
}

.reservation-inline-success {
    margin: 0;
    padding: 0.45rem 0.55rem;
    border-radius: 0.45rem;
    background: rgba(30, 120, 80, 0.35);
    border: 1px solid rgba(120, 220, 160, 0.35);
    color: #e8fff0;
    font-size: 0.82rem;
}

.reservation-submit {
    margin-top: 0.25rem;
    justify-self: start;
}

/* Embed-Seite / externes Popup: helles Theme (Variablen per Script-Tag oder URL ?tp_bg= …) */
body.tp-res-embed-page {
    --tp-res-bg: #f7f9f8;
    --tp-res-text: #0e3027;
    --tp-res-accent: #db6542;
    --tp-res-muted: #3d5a53;
    --tp-res-input-bg: #fff;
    --tp-res-input-border: rgba(14, 48, 39, 0.14);
    --tp-res-input-text: #0e3027;
    --tp-res-surface: rgba(14, 48, 39, 0.04);
    --tp-res-border: rgba(14, 48, 39, 0.12);
    background: var(--tp-res-bg);
    color: var(--tp-res-text);
}

body.tp-res-embed-page .reservation-embed-head .reservation-popup-kicker {
    color: var(--tp-res-accent);
}

body.tp-res-embed-page .reservation-embed-head .reservation-popup-title {
    color: var(--tp-res-text);
}

body.tp-res-embed-page .reservation-inline-root {
    color: var(--tp-res-text);
}

body.tp-res-embed-page .reservation-stepper-item {
    color: var(--tp-res-muted);
}

body.tp-res-embed-page .reservation-stepper-item.is-active {
    color: var(--tp-res-accent);
}

body.tp-res-embed-page .reservation-stepper-num {
    border-color: var(--tp-res-border);
    background: var(--tp-res-surface);
    color: var(--tp-res-text);
}

body.tp-res-embed-page .reservation-stepper-item.is-active .reservation-stepper-num {
    border-color: rgba(219, 101, 66, 0.45);
    background: rgba(219, 101, 66, 0.12);
    color: var(--tp-res-accent);
}

body.tp-res-embed-page .reservation-stepper-line {
    background: var(--tp-res-border);
}

body.tp-res-embed-page .reservation-field span,
body.tp-res-embed-page .reservation-fieldset legend {
    color: var(--tp-res-accent);
}

body.tp-res-embed-page .reservation-field input,
body.tp-res-embed-page .reservation-field select {
    border-color: var(--tp-res-input-border);
    background-color: var(--tp-res-input-bg);
    color: var(--tp-res-input-text);
}

body.tp-res-embed-page .reservation-field-row--datetime .reservation-field--time select {
    background-color: var(--tp-res-input-bg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='%230e3027' d='M3 4.5L6 8l3-3.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.4rem center;
    background-size: 10px 10px;
}

body.tp-res-embed-page .reservation-fieldset {
    border-color: var(--tp-res-border);
}

body.tp-res-embed-page .reservation-radio {
    color: var(--tp-res-text);
}

body.tp-res-embed-page .reservation-newsletter-opt {
    color: var(--tp-res-muted);
}

body.tp-res-embed-page .reservation-summary {
    border-color: var(--tp-res-border);
    background: var(--tp-res-surface);
    color: var(--tp-res-text);
}

body.tp-res-embed-page .reservation-summary-list strong {
    color: var(--tp-res-accent);
}

body.tp-res-embed-page .reservation-inline-error {
    color: #7f1d1d;
    background: #fdecea;
    border-color: #e57373;
}

body.tp-res-embed-page .reservation-inline-success {
    color: #1b5e20;
    background: #e8f5e9;
    border-color: #81c784;
}

.footer-reservation-dev-trigger:not([hidden]) {
    min-width: 1.25rem;
    min-height: 1.25rem;
    line-height: 1;
    vertical-align: middle;
}

.footer-reservation-dev-trigger:hover,
.footer-reservation-dev-trigger:focus-visible {
    color: rgba(244, 162, 106, 0.95);
    outline: none;
}

.reservation-popup-loading {
    position: absolute;
    inset: 0.85rem;
    margin: 0;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    background: rgba(7, 33, 26, 0.92);
    z-index: 1;
    border-radius: 0.75rem;
}

.reservation-popup-loading.is-hidden {
    display: none;
}

.reservation-popup-close {
    position: static;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(7, 33, 26, 0.55);
    color: #fff;
    font-size: 1.15rem;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
}

.reservation-popup-close:hover,
.reservation-popup-close:focus-visible {
    border-color: rgba(244, 162, 106, 0.8);
    background: rgba(204, 93, 62, 0.35);
}

.wiki-term-dialog {
    padding: 0;
    border: none;
    background: transparent;
    max-width: calc(100vw - 2rem);
    width: min(34rem, calc(100vw - 2rem));
    color: var(--text);
}

.wiki-term-dialog::backdrop {
    background: rgba(3, 12, 10, 0.72);
    backdrop-filter: blur(4px);
}

.wiki-term-dialog-panel {
    position: relative;
    border-radius: 1rem;
    background: linear-gradient(160deg, #072119 0%, #0b2a21 100%);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.48);
    padding: 1rem 1.05rem 1.1rem;
    max-height: min(72vh, 28rem);
    overflow: auto;
}

.wiki-term-dialog-close {
    position: absolute;
    top: 0.55rem;
    right: 0.55rem;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(7, 33, 26, 0.55);
    color: #fff;
    font-size: 1.15rem;
    line-height: 1;
    cursor: pointer;
    z-index: 1;
}

.wiki-term-dialog-close:hover,
.wiki-term-dialog-close:focus-visible {
    border-color: rgba(244, 162, 106, 0.8);
    background: rgba(204, 93, 62, 0.35);
}

.wiki-term-dialog-body {
    padding-right: 0.25rem;
}

.wiki-term-dialog-body h3 {
    margin: 0 2.25rem 0.55rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #f4a26a;
    font-family: "Montserrat", Arial, sans-serif;
    line-height: 1.2;
}

.wiki-term-dialog-body p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
}

.wiki-term-dialog-body p + p {
    margin-top: 0.65rem;
}

.wiki-term-dialog-footer {
    margin-top: 0.95rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.wiki-term-dialog-wiki-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    background: rgba(255, 255, 255, 0.04);
    transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.wiki-term-dialog-wiki-link:hover,
.wiki-term-dialog-wiki-link:focus-visible {
    color: rgba(255, 255, 255, 0.88);
    border-color: rgba(244, 162, 106, 0.35);
    background: rgba(244, 162, 106, 0.08);
}

@media (max-width: 900px) {
    .reservation-popup {
        padding: 0.7rem;
    }

    .reservation-popup-dialog {
        width: min(520px, calc(100vw - 1.4rem));
        max-width: 100%;
        min-width: 0;
        max-height: min(92vh, 92dvh, 720px);
        height: auto;
    }

    .reservation-popup-body {
        padding: 0.7rem;
        min-width: 0;
    }

    .reservation-popup-loading {
        inset: 0.7rem;
    }
}

.site-footer {
    background: #072119;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    padding: 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 0.9rem 1.6rem;
}

.site-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
}

.footer-brand {
    letter-spacing: 0.01em;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: var(--accent-1);
    opacity: 1;
}

.footer-links,
.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-content: flex-end;
}

.footer-links a {
    font-size: 0.92rem;
}

.footer-social a {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-social a:hover,
.footer-social a:focus-visible {
    color: var(--accent-1);
    border-color: var(--accent-1);
}

.footer-social a svg {
    width: 1.1rem;
    height: 1.1rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-social a:nth-child(2) svg {
    fill: currentColor;
    stroke: none;
}

.footer-credit {
    grid-column: 1 / -1;
    margin-top: 0.4rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.76);
}

.footer-credit a {
    color: var(--accent-1);
}

.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;
}

.cookie-banner {
    position: fixed;
    left: 0.9rem;
    right: auto;
    bottom: 1rem;
    z-index: 40;
    background: #0E3027;
    border: 1px solid var(--line);
    border-radius: 0.9rem;
    padding: 0.7rem 0.8rem;
    width: min(320px, calc(100vw - 1.8rem));
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.cookie-banner.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-banner.is-hiding {
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
}

.cookie-banner p {
    margin-bottom: 0.55rem;
    font-size: 0.82rem;
    line-height: 1.35;
}

.cookie-more-info-link {
    font-size: 0.85rem;
}

.cookie-actions {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cookie-actions .btn {
    padding: 0.5rem 0.85rem;
    font-size: 0.85rem;
}

.back-to-top {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    width: 2.6rem;
    height: 2.6rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #CC5D3E;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
    z-index: 72;
    transition: transform 0.15s ease, filter 0.15s ease;
}

.back-to-top svg {
    width: 1.15rem;
    height: 1.15rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.back-to-top:hover,
.back-to-top:focus-visible {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

@media (max-width: 920px) {
    .section {
        padding: 4rem 0;
    }
    .nav {
        display: flex;
        justify-content: center;
        position: relative;
        padding: 0.08rem 0;
        min-height: 46px;
        align-items: center;
    }
    .scroll-toc {
        display: none;
    }
    .logo-link {
        order: 0;
        justify-self: center;
    }
    .logo-stack {
        width: clamp(110px, 32vw, 146px);
        margin-top: 8px;
        margin-bottom: 8px;
    }
    .nav-left,
    .nav-actions {
        display: none;
    }
    .nav-burger {
        display: block;
        border: 0;
        border-radius: 0;
        width: 1.9rem;
        height: 1.75rem;
        background: transparent;
        color: #ffffff;
        cursor: pointer;
        padding: 0.2rem 0;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    .nav-burger span {
        display: block;
        width: 100%;
        height: 2px;
        background: currentColor;
        margin: 0.22rem 0;
    }
    .site-header.is-scrolled .logo-stack {
        width: clamp(98px, 29vw, 132px);
        margin-top: 6px;
        margin-bottom: 6px;
        transform: translateY(-1px);
    }
    .site-header.is-scrolled .logo-full {
        opacity: 0;
        filter: blur(6px);
        transform: scale(0.985);
    }
    .site-header.is-scrolled .logo-compact {
        opacity: 1;
        transform: translateY(-17px);
    }
    .mobile-menu-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.42);
        z-index: 88;
    }
    .mobile-menu-backdrop[hidden] {
        display: none;
    }
    .mobile-menu {
        display: grid;
        position: fixed;
        top: 0;
        right: 0;
        width: min(90vw, 390px);
        height: 100dvh;
        min-height: 100svh;
        padding: env(safe-area-inset-top, 0) 1rem calc(env(safe-area-inset-bottom) + 0.9rem);
        background: #0D2F26;
        border-left: 1px solid rgba(255, 255, 255, 0.18);
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.22, 0.8, 0.2, 1);
        z-index: 89;
        gap: 1rem;
        box-shadow: none;
        grid-template-rows: auto 1fr auto;
        align-content: start;
        overscroll-behavior: contain;
        pointer-events: none;
    }
    .mobile-menu.is-open {
        transform: translateX(0);
        pointer-events: auto;
        box-shadow: -18px 0 34px rgba(0, 0, 0, 0.35);
    }
    .mobile-menu-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        align-self: start;
        width: 100%;
        padding: 0;
        padding-left: env(safe-area-inset-left, 0);
        padding-right: env(safe-area-inset-right, 0);
        border: 0;
        gap: 0.75rem;
        position: relative;
        z-index: 5;
    }
    .mobile-menu-head .topbar-lang-wrap--mobile {
        flex: 0 0 auto;
        transform: translateX(10px);
        position: relative;
        z-index: 6;
    }
    .mobile-menu .topbar-lang-toggle {
        border-radius: 0.55rem;
        min-height: 2.15rem;
        padding: 0.22rem 0.55rem;
        background: transparent;
        border: 0;
        gap: 0.35rem;
        align-items: center;
    }
    .mobile-menu .topbar-lang-current {
        font-size: 0.82rem;
        font-weight: 500;
        letter-spacing: 0.05em;
        color: #fff5ef;
    }
    .mobile-menu .topbar-lang-panel {
        right: 0;
        left: auto;
        min-width: 11rem;
        padding: 0.5rem 0.55rem;
        background: rgba(8, 38, 30, 0.94);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 0;
        border-radius: 0.85rem;
        box-shadow: 0 14px 36px rgba(0, 0, 0, 0.42);
        z-index: 10;
    }
    .mobile-menu .topbar-lang-option {
        border-radius: 0.5rem;
        color: rgba(255, 255, 255, 0.96);
    }
    .mobile-menu .topbar-lang-option:hover,
    .mobile-menu .topbar-lang-option:focus-visible {
        background: rgba(244, 162, 106, 0.16);
    }

    .mobile-menu .topbar-lang-panel.is-open .topbar-lang-option:nth-child(1),
    .mobile-menu .topbar-lang-panel.is-open .topbar-lang-option:nth-child(2),
    .mobile-menu .topbar-lang-panel.is-open .topbar-lang-option:nth-child(3) {
        transition-delay: 0s;
    }
    .mobile-menu-head p {
        display: none;
    }
    .mobile-menu-close {
        border: 0;
        background: transparent;
        color: #ffffff;
        border-radius: 0;
        width: 2.15rem;
        height: 2.15rem;
        font-size: 1.55rem;
        line-height: 1;
        cursor: pointer;
        box-shadow: none;
        outline: none;
        transform: translateX(-5px);
    }
    .mobile-nav-links {
        list-style: none;
        margin: 0 auto;
        padding: 0.35rem 0 0.1rem;
        display: grid;
        gap: 1.15rem;
        align-self: center;
        justify-self: center;
        width: 100%;
        max-width: 320px;
        transform: translateY(-6rem);
        position: relative;
        z-index: 1;
    }
    .mobile-nav-links a {
        display: block;
        border: 0;
        border-radius: 0;
        padding: 0.28rem 0;
        text-decoration: none;
        color: var(--accent-1);
        background: transparent;
        font-family: "Vogun", "Awesome Ways", "Satisfy", "Times New Roman", serif;
        font-size: clamp(1.72rem, 8.3vw, 2.4rem);
        line-height: 1.08;
        letter-spacing: 0.01em;
        transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
    }
    .mobile-nav-links a:hover,
    .mobile-nav-links a:focus-visible {
        color: #ffd2b1;
        transform: translateX(4px);
        opacity: 1;
    }
    .mobile-menu-social {
        justify-content: flex-end;
        gap: 0.65rem;
        padding-top: 0.15rem;
    }
    .mobile-menu-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 0.72rem 0.95rem;
        border-radius: 0.8rem;
        text-align: center;
    }
    .mobile-menu-address {
        display: inline-flex;
        margin-top: 0.1rem;
        font-size: 0.86rem;
        white-space: normal;
        align-items: flex-start;
        line-height: 1.35;
        opacity: 0.95;
    }
    .mobile-menu-contact-row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.55rem;
    }

    .mobile-menu-contact-row .mobile-menu-social {
        margin-left: auto;
    }
    .mobile-menu-footer {
        margin-top: auto;
        position: static;
        background: transparent;
        padding-top: 0.4rem;
        padding-bottom: calc(env(safe-area-inset-bottom) + 0.2rem);
        display: grid;
        gap: 0.7rem;
    }
    .hero {
        grid-template-columns: 1fr;
        padding-top: 1rem;
    }
    .hero .hero-visual {
        order: -1;
    }
    .hero-visual img {
        height: 420px;
    }
    .eyebrow {
        font-size: clamp(1.75rem, 6.2vw, 2.45rem);
    }
    .section.container>.eyebrow {
        margin-top: 0.3rem;
        margin-bottom: 30px;
        font-size: clamp(1.88rem, 6.8vw, 2.85rem);
    }
    .section.container>h2 {
        font-size: clamp(1.95rem, 9.5vw, 2.73rem);
    }
    #menu>h2:not(:first-of-type) {
        margin-top: 1.3rem;
    }
    #menu .menu-paper {
        padding: 0.8rem 1rem;
    }
    #menu .menu-paper-grid {
        grid-template-columns: 1fr;
    }
    #menu .menu-duo {
        grid-template-columns: 1fr;
    }
    #menu .menu-subtitle {
        margin-top: 1.3rem;
    }
    #menu .price {
        min-width: 4.6rem;
    }
    #menu .menu-desc {
        max-width: 100%;
    }
    #menu .menu-filter-row {
        flex-wrap: nowrap;
        gap: 0.4rem;
        justify-content: stretch;
    }
    #menu .menu-filter-btn {
        flex: 1 1 0;
        min-width: 0;
        padding: 0.3rem 0.45rem;
        font-size: 0.72rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 0.75rem;
        text-align: center;
    }
    .footer-links,
    .footer-social {
        justify-content: center;
    }
    .footer-credit {
        margin-top: 0.2rem;
        padding-top: 0.7rem;
    }
    .footer-credit-intro {
        display: block;
    }
    .footer-credit a {
        display: block;
        margin-top: 0.15rem;
    }
}

/* Tre Pazzi Wiki – schlicht, ohne Verläufe (Unterseite wiki.html) */
.wiki-page {
    padding: 2.5rem 0 4rem;
}

.wiki-pagehead {
    margin: 0 auto 1.75rem;
    max-width: 62ch;
    text-align: center;
}

.wiki-pagehead h1 {
    margin-bottom: 0.65rem;
    text-align: center;
}

.wiki-lead {
    margin: 0 auto;
    max-width: 54ch;
    line-height: 1.65;
    font-size: 1rem;
    opacity: 0.92;
    text-align: center;
}

.wiki-toolbar.panel {
    margin-bottom: 1rem;
    padding: 1rem 1.1rem;
}

.wiki-search-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent-1);
    margin-bottom: 0.45rem;
}

.wiki-search-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.wiki-search-input {
    flex: 1 1 220px;
    min-width: 0;
    padding: 0.62rem 0.85rem;
    border-radius: 0.55rem;
    border: 1px solid var(--line);
    background: #0b2a21;
    color: var(--text);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.95rem;
}

.wiki-search-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.wiki-search-input:focus {
    outline: 2px solid rgba(244, 162, 106, 0.45);
    outline-offset: 1px;
}

.wiki-search-clear {
    flex: 0 0 auto;
}

.wiki-search-hint {
    margin: 0.55rem 0 0;
    font-size: 0.86rem;
    opacity: 0.82;
}

.wiki-alpha.panel {
    margin-bottom: 2rem;
    padding: 0.85rem 1rem 1rem;
}

.wiki-alpha-title {
    margin: 0 0 0.55rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-1);
}

.wiki-alpha-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    align-items: center;
}

.wiki-alpha-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.1rem;
    height: 2.1rem;
    padding: 0 0.35rem;
    border-radius: 0.4rem;
    border: 1px solid var(--line);
    background: #0b2a21;
    color: var(--accent-1);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
}

.wiki-alpha-link:hover,
.wiki-alpha-link:focus-visible {
    border-color: rgba(244, 162, 106, 0.55);
    color: #ffd2b1;
}

.wiki-alpha-dead {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.1rem;
    height: 2.1rem;
    border-radius: 0.4rem;
    border: 1px dashed rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.78rem;
    cursor: default;
}

.wiki-glossary {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
}

.wiki-letter {
    scroll-margin-top: 12.5rem;
}

.wiki-letter.is-wiki-empty {
    display: none;
}

.wiki-letter-head {
    margin: 0 0 0.85rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--line);
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.wiki-letter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: 0.75rem;
}

.wiki-page .wiki-term.panel {
    margin: 0;
    padding: 1rem 1.05rem;
    border-radius: 0.85rem;
    border: 1px solid var(--line);
    background: var(--card);
    box-shadow: none;
    transition:
        border-color 0.2s ease,
        border-width 0.85s ease,
        box-shadow 0.85s ease,
        background 0.85s ease,
        outline 0.85s ease,
        outline-offset 0.85s ease;
    scroll-margin-top: 12.5rem;
}

.wiki-page .wiki-term.panel:hover {
    border-color: rgba(244, 162, 106, 0.35);
    transform: none;
    box-shadow: none;
}

.wiki-page .wiki-term.panel.is-wiki-highlight {
    border: 2px solid #CC5D3E;
    outline: 2px solid rgba(244, 162, 106, 0.55);
    outline-offset: 3px;
    box-shadow:
        0 0 0 3px rgba(204, 93, 62, 0.22),
        0 0 48px rgba(204, 93, 62, 0.28),
        0 16px 40px rgba(0, 0, 0, 0.35);
    background: linear-gradient(165deg, rgba(42, 22, 18, 0.55) 0%, rgba(14, 48, 39, 1) 45%, rgba(10, 38, 30, 1) 100%);
    transition:
        border-color 0.25s ease,
        border-width 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        outline 0.25s ease,
        outline-offset 0.25s ease;
}

.wiki-page .wiki-term.panel.is-wiki-highlight h3 {
    color: #ffd2b1;
    font-weight: 700;
    text-shadow: 0 0 24px rgba(204, 93, 62, 0.45);
}

.wiki-page .wiki-term.panel.is-wiki-highlight p {
    opacity: 1;
}

.wiki-page .wiki-term.panel.is-wiki-highlight:hover {
    border-color: #e07052;
    outline-color: rgba(255, 210, 177, 0.65);
    box-shadow:
        0 0 0 3px rgba(204, 93, 62, 0.3),
        0 0 56px rgba(204, 93, 62, 0.35),
        0 18px 44px rgba(0, 0, 0, 0.38);
}

@media (max-width: 920px) {
    .wiki-letter {
        scroll-margin-top: 11.25rem;
    }

    .wiki-page .wiki-term.panel {
        scroll-margin-top: 11.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wiki-page .wiki-term.panel,
    .wiki-page .wiki-term.panel.is-wiki-highlight {
        transition: none;
    }

    .wiki-page .wiki-term h3 {
        transition: none;
    }

    .wiki-page .wiki-term p {
        transition: none;
    }
}

.wiki-term.is-wiki-hidden {
    display: none !important;
}

.wiki-page .wiki-term h3 {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.5rem;
    padding: 0;
    border-bottom: 0;
    letter-spacing: 0;
    transition: color 0.85s ease, text-shadow 0.85s ease, font-weight 0.55s ease;
}

.wiki-page .wiki-term p {
    margin: 0;
    font-size: 0.93rem;
    line-height: 1.58;
    opacity: 0.9;
    transition: opacity 0.85s ease;
}

.wiki-note.panel {
    margin-top: 2rem;
    max-width: 62ch;
    border-style: solid;
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.03);
}

.wiki-note strong {
    display: block;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent-1);
    margin-bottom: 0.4rem;
}

.wiki-note p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    opacity: 0.88;
}

.wiki-foot-actions {
    margin-top: 1.75rem;
    text-align: left;
}

@media (max-width: 520px) {
    .wiki-alpha-link,
    .wiki-alpha-dead {
        min-width: 1.85rem;
        height: 1.85rem;
        font-size: 0.76rem;
    }
}