:root {
    --tomato: #b92d24;
    --tomato-dark: #842018;
    --cream: #fff4dc;
    --olive: #2f6b3f;
    --ink: #241713;
    --site-nav-height: 86px;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1030;
    height: var(--site-nav-height);
    padding: 0;
    background: #fff;
    border-bottom: 1px solid rgba(36, 23, 19, 0.08);
    box-shadow: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

body.site-public {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: var(--site-nav-height);
}

.site-main {
    flex: 1 0 auto;
}

.site-nav .container {
    min-height: var(--site-nav-height);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
    margin-right: 1rem;
    min-height: var(--site-nav-height);
    padding-block: 0;
}

.site-brand img {
    width: auto;
    height: 62px;
    max-width: 200px;
    object-fit: contain;
}

.site-brand span {
    white-space: nowrap;
    font-size: 2rem;
    line-height: 1;
    font-weight: 800;
    color: var(--ink);
}

.site-nav .nav-link {
    padding-top: 0;
    padding-bottom: 0;
    line-height: 1.2;
    color: rgba(36, 23, 19, 0.76);
    font-weight: 650;
}

.site-nav .navbar-nav {
    min-height: var(--site-nav-height);
}

.site-nav .navbar-collapse {
    min-height: var(--site-nav-height);
}

.site-nav .nav-link:hover,
.site-nav .nav-link:focus {
    color: var(--tomato-dark);
}

@media (max-width: 991px) {
    .site-brand img {
        height: 54px;
        max-width: 170px;
    }

    .site-brand span {
        font-size: 1.6rem;
    }
}

.btn-cream {
    background: var(--cream);
    color: var(--tomato-dark);
    font-weight: 700;
}

.btn-cream:hover,
.btn-cream:focus {
    background: #f1dfb5;
    border-color: #f1dfb5;
    color: var(--tomato-dark);
}

.admin-top-action {
    border-color: rgba(36, 23, 19, 0.2);
    color: var(--ink);
    font-weight: 700;
}

.admin-top-action:hover,
.admin-top-action:focus {
    background: rgba(36, 23, 19, 0.06);
    border-color: rgba(36, 23, 19, 0.28);
    color: var(--ink);
}

.btn-tomato {
    background: var(--tomato);
    border-color: var(--tomato);
    color: #fff;
    font-weight: 700;
}

.btn-tomato:hover {
    background: var(--tomato-dark);
    border-color: var(--tomato-dark);
    color: #fff;
}

.btn-save {
    background: #2e8b57;
    border-color: #2e8b57;
    color: #fff;
    font-weight: 700;
}

.btn-save:hover,
.btn-save:focus {
    background: #256f46;
    border-color: #256f46;
    color: #fff;
}

.hero-section {
    min-height: calc(100svh - var(--site-nav-height));
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(36, 23, 19, 0.86), rgba(36, 23, 19, 0.25)),
        url("https://images.unsplash.com/photo-1513104890138-7c749659a591?auto=format&fit=crop&w=1800&q=80") center/cover;
    color: #fff;
}

.hero-inner {
    max-width: 760px;
    margin-left: max(1rem, calc((100vw - 1140px) / 2));
}

.hero-section h1 {
    font-size: clamp(3rem, 7vw, 6.8rem);
    line-height: 0.95;
    font-weight: 900;
}

.hero-copy {
    max-width: 580px;
    margin-bottom: 1.5rem;
}

.kicker {
    color: var(--olive);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-section .kicker {
    color: #9ee0a7;
}

.section-band {
    padding: 5rem 0;
}

.narrow {
    max-width: 820px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 2rem;
}

.section-heading h2,
.section-band h2 {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 850;
}

.section-subtitle,
.section-heading p {
    font-size: 1.12rem;
}

.story-section {
    min-height: 520px;
}

.story-copy-card {
    position: relative;
    max-width: 46rem;
    padding: clamp(1.4rem, 3vw, 2.2rem);
}

.story-copy-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1rem;
    bottom: 1rem;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(47, 107, 63, 0.9), rgba(184, 66, 47, 0.18));
}

.site-public .site-brand span,
.site-public .hero-section h1,
.site-public .section-heading h2,
.site-public .section-band h2,
.site-public .reservation-form-title,
.hero-section.section-band--accent h1,
.section-band--accent h2,
.section-band--accent em,
.section-band--accent blockquote,
.script-accent {
    font-family: var(--accent-font-family);
}

.story-copy {
    max-width: 44rem;
    color: rgba(36, 23, 19, 0.78);
    font-size: 1.03rem;
    line-height: 1.75;
}

.story-copy p {
    margin-bottom: 1rem;
}

.opening-hours-section {
    background:
        radial-gradient(circle at top right, rgba(47, 107, 63, 0.09), transparent 26%),
        linear-gradient(180deg, #fff7e8 0%, #fffaf0 100%);
}

.opening-hours-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.3fr);
    gap: 2rem 3rem;
    align-items: start;
}

.opening-hours-intro {
    max-width: 28rem;
}

.opening-hours-list {
    display: grid;
    gap: 0;
}

.opening-hours-row {
    display: grid;
    grid-template-columns: minmax(150px, 210px) minmax(0, 1fr);
    gap: 1.1rem;
    align-items: start;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(36, 23, 19, 0.08);
}

.opening-hours-row:last-child {
    border-bottom: 0;
}

.opening-hours-day {
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(36, 23, 19, 0.72);
}

.opening-hours-detail {
    font-size: 1.08rem;
    line-height: 1.55;
    font-weight: 500;
    color: var(--ink);
}

.opening-hours-detail--closed {
    color: var(--tomato-dark);
    font-weight: 700;
}

@media (max-width: 767px) {
    .opening-hours-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .opening-hours-row {
        grid-template-columns: 1fr;
        gap: 0.4rem;
        padding: 0.95rem 0;
    }

    .opening-hours-detail {
        font-size: 1rem;
    }
}

.story-image-frame {
    overflow: hidden;
    position: relative;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 28px 55px rgba(36, 23, 19, 0.12);
}

.story-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    border-radius: 28px;
}

.menu-band {
    background: #fffaf0;
}

@media (max-width: 767px) {
    .story-copy-card {
        padding: 1.1rem 0 0 1rem;
    }

    .story-copy-card::before {
        top: 0.4rem;
        bottom: 0.4rem;
    }
}

.menu-list ul {
    display: grid;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-list li {
    border-top: 1px solid rgba(132, 32, 24, 0.2);
    padding: 1rem 0;
    font-size: 1.08rem;
}

.menu-pdf-card {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
    justify-content: space-between;
    gap: 1.5rem 2rem;
    padding: 0;
}

.menu-pdf-copy-wrap {
    max-width: 40rem;
}

.menu-pdf-copy {
    max-width: 38rem;
    color: rgba(36, 23, 19, 0.76);
    font-size: 1.03rem;
    line-height: 1.65;
}

.menu-pdf-side {
    display: grid;
    gap: 1rem;
    align-content: center;
    justify-items: start;
}

.menu-pdf-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

@media (max-width: 767px) {
    .menu-pdf-card {
        grid-template-columns: 1fr;
    }

    .menu-pdf-side {
        justify-items: stretch;
    }
}

.contact-band {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 24%),
        linear-gradient(135deg, #314b36 0%, #24362a 52%, #1c2920 100%);
    color: #fff;
}

.maintenance-hero {
    min-height: calc(100vh - 88px);
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    padding: 4rem 0;
}

.maintenance-card {
    max-width: 760px;
    padding: clamp(2rem, 4vw, 3.25rem);
    border-radius: 16px;
    background: rgba(255, 250, 240, 0.94);
    box-shadow: 0 24px 60px rgba(36, 23, 19, 0.2);
    border: 1px solid rgba(36, 23, 19, 0.08);
}

.maintenance-card-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.maintenance-logo {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.maintenance-title {
    font-size: clamp(2.8rem, 6vw, 5.4rem);
    line-height: 0.95;
    font-weight: 900;
    margin-bottom: 1rem;
}

.maintenance-site-name {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.maintenance-copy {
    max-width: 42rem;
    font-size: 1.1rem;
}

.maintenance-copy p:last-child {
    margin-bottom: 0;
}

.maintenance-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(36, 23, 19, 0.12);
}

.maintenance-contact a {
    color: var(--tomato-dark);
    font-weight: 700;
    text-decoration: none;
}

.maintenance-contact a:hover,
.maintenance-contact a:focus {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .maintenance-card-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .maintenance-logo {
        height: 48px;
    }
}

.contact-band .kicker {
    color: #d8e8c8;
}

.reservation-preview {
    background: #fffaf0;
    color: var(--ink);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(36, 23, 19, 0.14);
    box-shadow: 0 18px 40px rgba(36, 23, 19, 0.14);
}

.reservation-form-top {
    display: grid;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.reservation-form-title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
}

.reservation-form-note {
    margin: 0.35rem 0 0;
    color: rgba(36, 23, 19, 0.68);
    font-size: 0.92rem;
}

.reservation-form-error,
.reservation-flash {
    border-radius: 8px;
    font-weight: 600;
}

.reservation-flash-success {
    color: var(--ink);
}

.required-mark {
    color: var(--tomato);
    font-weight: 800;
}

.optional-note {
    color: rgba(36, 23, 19, 0.6);
    font-size: 0.92rem;
    font-weight: 500;
}

.reservation-preview .form-label {
    font-weight: 650;
}

.reservation-preview .form-control,
.reservation-preview .form-select {
    min-height: 48px;
    border-color: rgba(36, 23, 19, 0.12);
}

.reservation-preview textarea.form-control {
    min-height: 112px;
}

.reservation-preview .is-invalid {
    border-color: #dc3545;
    background-image: none;
}

.reservation-preview .text-danger {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.88rem;
}

.reservation-preview .btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    filter: saturate(0.8);
}

.site-footer {
    flex-shrink: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 240, 0.96));
    color: var(--ink);
    border-top: 1px solid rgba(36, 23, 19, 0.08);
}

.site-footer-shell {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem 2rem;
    padding: 1rem 0;
}

.site-footer-brand {
    min-width: 0;
    max-width: 28rem;
}

.site-footer-title {
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.site-footer-address {
    color: rgba(36, 23, 19, 0.68);
    line-height: 1.5;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.65rem 1.1rem;
}

.legal-links a {
    display: inline-flex;
    align-items: center;
    color: rgba(36, 23, 19, 0.76);
    text-decoration: none;
    font-weight: 600;
}

.legal-link-button {
    display: inline-flex;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(36, 23, 19, 0.76);
    font-weight: 600;
    text-decoration: none;
}

.legal-link-button:hover,
.legal-link-button:focus,
.legal-links a:hover {
    color: var(--tomato-dark);
    text-decoration: underline;
}

@media (max-width: 767px) {
    .site-footer-shell {
        align-items: flex-start;
    }

    .legal-links {
        justify-content: flex-start;
    }
}

.legal-page {
    background: #fffaf0;
}

.legal-page h1 {
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 800;
}

.legal-page h2,
.legal-content h2 {
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    font-weight: 700;
    margin-top: 2rem;
}

.legal-content {
    margin-top: 2rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.legal-content.cms-richtext {
    line-height: 1.35;
}

.cms-richtext p,
.cms-richtext div,
.cms-richtext li,
.cms-richtext ul,
.cms-richtext ol {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.cms-richtext p + p,
.cms-richtext div + div,
.cms-richtext p + div,
.cms-richtext div + p,
.cms-richtext ul + p,
.cms-richtext ol + p,
.cms-richtext p + ul,
.cms-richtext p + ol,
.cms-richtext ul + ul,
.cms-richtext ol + ol,
.cms-richtext ul + ol,
.cms-richtext ol + ul {
    margin-top: 0.9rem;
}

.cms-richtext br + br {
    display: block;
    margin-top: 0.9rem;
}

.legal-content.cms-richtext p + p,
.legal-content.cms-richtext div + div,
.legal-content.cms-richtext p + div,
.legal-content.cms-richtext div + p,
.legal-content.cms-richtext ul + p,
.legal-content.cms-richtext ol + p,
.legal-content.cms-richtext p + ul,
.legal-content.cms-richtext p + ol,
.legal-content.cms-richtext ul + ul,
.legal-content.cms-richtext ol + ol,
.legal-content.cms-richtext ul + ol,
.legal-content.cms-richtext ol + ul,
.legal-content.cms-richtext br + br {
    margin-top: 0.18rem;
}

.legal-page--impressum .legal-content {
    display: block;
    max-width: 54rem;
}

.legal-page--impressum .legal-content p {
    margin: 0;
    padding: 0;
}

.legal-page--impressum .legal-content p:first-child {
    font-size: 1.08rem;
    line-height: 1.8;
}

.legal-page--impressum .legal-content p:nth-child(3) {
    max-width: none;
}

.legal-page--impressum .legal-content p:last-child {
    padding-bottom: 0;
}

.legal-page--impressum .legal-content strong {
    display: inline-block;
    margin-bottom: 0.2rem;
    font-size: 1.02rem;
}

.legal-page--impressum .legal-content a {
    color: var(--tomato-dark);
    font-weight: 700;
    text-decoration: none;
}

.legal-page--impressum .legal-content a:hover,
.legal-page--impressum .legal-content a:focus {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .legal-page--impressum .legal-content {
        max-width: none;
    }

    .legal-page--impressum .legal-content p:nth-child(3) {
        max-width: none;
    }
}

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2140;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    max-width: none;
    padding: 1rem 1.5rem;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.98);
    color: var(--ink);
    border-top: 1px solid rgba(36, 23, 19, 0.08);
    box-shadow: 0 -10px 24px rgba(36, 23, 19, 0.08);
    isolation: isolate;
    pointer-events: auto;
}

.cookie-banner[hidden] {
    display: none !important;
}

.cookie-copy {
    min-width: 0;
}

.cookie-banner strong {
    display: block;
    margin-bottom: 0.15rem;
}

.cookie-banner--right {
    left: 0;
    right: 0;
    bottom: 0;
}

.cookie-banner--left {
    left: 0;
    right: 0;
    bottom: 0;
}

.cookie-banner--center,
.cookie-banner--bottom {
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
}

.cookie-banner--top {
    left: 0;
    right: 0;
    top: 1rem;
    bottom: auto;
    transform: none;
}

.cookie-banner--popup {
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    transform: none;
    width: 100%;
}

.cookie-banner p {
    margin: 0.25rem 0 0;
}

.cookie-note {
    color: rgba(36, 23, 19, 0.64);
    font-size: 0.94rem;
}

.cookie-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    flex-shrink: 0;
    justify-content: flex-end;
}

.cookie-actions .btn,
.cookie-actions a,
.cookie-actions button,
.cookie-banner button,
.cookie-banner a {
    pointer-events: auto;
}

@media (max-width: 767.98px) {
    .cookie-banner {
        left: 0;
        right: 0;
        top: auto;
        bottom: 0;
        width: 100%;
        max-width: none;
        transform: none;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
    }

    .cookie-actions {
        justify-content: stretch;
    }

    .cookie-actions > * {
        width: 100%;
    }
}

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

.gallery-grid img,
.section-thumb {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
}

.gallery-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
    gap: 1rem 2rem;
}

.gallery-showcase {
    position: relative;
}

.gallery-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    align-items: stretch;
}

.belcolpo-carousel {
    overflow: hidden;
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 28%),
        linear-gradient(135deg, #201512 0%, #140d0b 100%);
    box-shadow: 0 28px 60px rgba(36, 23, 19, 0.18);
    border: 1px solid rgba(36, 23, 19, 0.08);
}

.carousel-media {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #140d0b;
}

.gallery-media-overlay {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    pointer-events: none;
}

.gallery-media-chip,
.gallery-media-count {
    display: inline-flex;
    align-items: center;
    min-height: 2.2rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 250, 240, 0.88);
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.gallery-media-count {
    background: rgba(36, 23, 19, 0.72);
    color: #fffaf0;
}

.belcolpo-carousel .carousel-control-prev,
.belcolpo-carousel .carousel-control-next {
    width: 4.5rem;
    opacity: 1;
}

.belcolpo-carousel .carousel-control-prev-icon,
.belcolpo-carousel .carousel-control-next-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    background-color: rgba(255, 250, 240, 0.88);
    background-size: 42% 42%;
    box-shadow: 0 8px 20px rgba(36, 23, 19, 0.16);
}

.gallery-thumbs {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 0;
}

.gallery-thumb {
    position: relative;
    width: 132px;
    flex: 0 0 132px;
    min-height: 104px;
    border: 0;
    margin: 0;
    padding: 0.85rem;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 250, 240, 0.12), rgba(255, 250, 240, 0.02)),
        rgba(255, 255, 255, 0.06);
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 0 1px rgba(255, 250, 240, 0.12);
    color: #fff;
    text-indent: 0;
    opacity: 0.72;
    transition: transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
}

.gallery-thumb:hover,
.gallery-thumb:focus-visible {
    transform: translateY(-2px);
    opacity: 1;
    box-shadow:
        inset 0 0 0 1px rgba(255, 250, 240, 0.28),
        0 12px 28px rgba(0, 0, 0, 0.18);
}

.gallery-thumb.active {
    opacity: 1;
    box-shadow:
        inset 0 0 0 2px rgba(255, 250, 240, 0.92),
        0 12px 28px rgba(0, 0, 0, 0.22);
}

.gallery-thumb-type,
.gallery-thumb-index {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.gallery-thumb-type {
    padding: 0.35rem 0.65rem;
    background: rgba(36, 23, 19, 0.52);
}

.gallery-thumb-index {
    position: absolute;
    right: 0.85rem;
    bottom: 0.75rem;
    min-width: 1.85rem;
    justify-content: center;
    padding: 0.28rem 0.5rem;
    background: rgba(255, 250, 240, 0.88);
    color: var(--ink);
}

@media (max-width: 767px) {
    .gallery-media-overlay {
        left: 0.85rem;
        right: 0.85rem;
        bottom: 0.85rem;
    }

    .gallery-media-chip,
    .gallery-media-count {
        min-height: 2rem;
        padding: 0.35rem 0.7rem;
        font-size: 0.76rem;
    }

    .gallery-layout {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .gallery-thumbs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }

    .gallery-thumb {
        width: 100%;
        flex: initial;
    }
}

.admin-body {
    background: #f7efe0;
    padding-top: var(--site-nav-height);
}

.admin-main {
    min-height: calc(100svh - var(--site-nav-height));
}

.admin-panel {
    background: #fffaf0;
    border: 1px solid rgba(36, 23, 19, 0.12);
    border-radius: 8px;
    padding: 1.5rem;
}

.admin-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.admin-toolbar .btn {
    min-width: 132px;
}

.admin-page-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.admin-alert {
    border-width: 1px;
    border-radius: 8px;
}

.admin-stat-card {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-height: 140px;
    justify-content: center;
    background: linear-gradient(180deg, #fffaf0 0%, #fff5e7 100%);
}

.admin-stat-label {
    margin: 0;
    color: rgba(36, 23, 19, 0.7);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.admin-stat-value {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    line-height: 1;
    font-weight: 850;
    color: var(--tomato-dark);
}

.admin-table-wrap {
    margin-top: 1rem;
}

.admin-table {
    margin-bottom: 0;
}

.admin-table thead th {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
    border-bottom-width: 1px;
    color: rgba(36, 23, 19, 0.7);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.admin-table tbody td {
    padding-top: 1rem;
    padding-bottom: 1rem;
    vertical-align: middle;
}

.reservation-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
}

.reservation-status-badge--new {
    background: rgba(180, 66, 47, 0.12);
    color: #8f341f;
}

.reservation-status-badge--confirmed {
    background: rgba(33, 115, 70, 0.14);
    color: #1f6b43;
}

.reservation-status-badge--cancelled {
    background: rgba(90, 90, 90, 0.16);
    color: #4e4e4e;
}

.admin-inline-form {
    margin: 0;
}

.reservation-filter-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    line-height: 1.2;
}

.admin-actions {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.admin-actions form {
    margin: 0;
}

.admin-form-panel {
    padding: 1.75rem;
}

.admin-help {
    display: block;
    margin-top: 0.4rem;
    color: rgba(36, 23, 19, 0.6);
    font-size: 0.88rem;
    line-height: 1.4;
}

.admin-toggle {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0.65rem 0.85rem;
    width: 100%;
    border: 1px solid rgba(36, 23, 19, 0.12);
    border-radius: 8px;
    background: #fff;
}

.admin-switch {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-height: 1.5rem;
}

.admin-switch .form-check-input {
    float: none;
    margin: 0;
    width: 2.5rem;
    height: 1.4rem;
    cursor: pointer;
}

.admin-switch .form-check-label {
    margin: 0;
    color: var(--ink);
    font-weight: 600;
    cursor: pointer;
}

.admin-upload-card {
    padding: 1rem;
    border: 1px solid rgba(36, 23, 19, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.55);
}

.admin-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.admin-form-actions .btn {
    min-width: 150px;
}

.email-preview-frame {
    overflow: auto;
    max-height: 780px;
    border: 1px solid rgba(36, 23, 19, 0.12);
    border-radius: 8px;
    background: #fff;
}

.admin-collapse-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
}

.admin-collapse-icon {
    font-size: 1rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.admin-collapse-toggle[aria-expanded="false"] .admin-collapse-icon {
    transform: rotate(-90deg);
}

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

.admin-gallery-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(36, 23, 19, 0.12);
    border-radius: 8px;
    background: #fff;
}

.admin-gallery-card--pending {
    border-style: dashed;
}

.admin-gallery-card[data-gallery-card] {
    cursor: grab;
}

.admin-gallery-card--dragging {
    opacity: 0.55;
}

.admin-gallery-card--drop-target {
    outline: 2px solid rgba(180, 66, 47, 0.35);
    outline-offset: 2px;
}

.admin-gallery-pending {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: rgba(180, 66, 47, 0.12);
    color: #8f341f;
    font-size: 0.76rem;
    font-weight: 700;
}

.admin-gallery-media-wrap {
    background: #f7f1e6;
}

.admin-gallery-media {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #140d0b;
}

.admin-gallery-meta {
    padding: 0.85rem;
}

.admin-gallery-type {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: rgba(36, 23, 19, 0.08);
    color: var(--ink);
    font-size: 0.76rem;
    font-weight: 700;
    margin-bottom: 0.55rem;
}

.admin-gallery-drag {
    color: rgba(36, 23, 19, 0.45);
    font-size: 1rem;
    line-height: 1;
    user-select: none;
}

.admin-gallery-url {
    color: rgba(36, 23, 19, 0.72);
    font-size: 0.86rem;
    line-height: 1.4;
    word-break: break-word;
}

.admin-gallery-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    border: 1px dashed rgba(36, 23, 19, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.45);
    color: rgba(36, 23, 19, 0.58);
    text-align: center;
    padding: 1rem;
}

.trumbowyg-box,
.trumbowyg-editor-box {
    border-color: rgba(36, 23, 19, 0.12);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.trumbowyg-button-pane {
    background: #fff7eb;
    border-bottom-color: rgba(36, 23, 19, 0.12);
    padding: 0.25rem 0.4rem;
}

.trumbowyg-editor {
    min-height: 320px;
    line-height: 1.35;
    padding: 1rem 1.1rem;
}

.trumbowyg-editor.trumbowyg-reset-css p,
.trumbowyg-editor.trumbowyg-reset-css div,
.trumbowyg-editor.trumbowyg-reset-css li,
.trumbowyg-editor.trumbowyg-reset-css ul,
.trumbowyg-editor.trumbowyg-reset-css ol {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.trumbowyg-editor.trumbowyg-reset-css p:last-child,
.trumbowyg-editor.trumbowyg-reset-css div:last-child {
    margin-bottom: 0 !important;
}

.trumbowyg-editor.trumbowyg-reset-css br + br {
    display: none;
}

.trumbowyg-button-pane button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 6px;
}

.trumbowyg-button-pane .trumbowyg-button-group::after {
    margin: 0 0.4rem;
    height: 38px;
}

.trumbowyg-box svg,
.trumbowyg-modal svg {
    width: 18px;
    height: 18px;
}

.logo-preview {
    display: flex;
    align-items: center;
    min-height: 86px;
    padding: 1rem;
    border: 1px solid rgba(36, 23, 19, 0.12);
    border-radius: 8px;
    background: #fff;
}

.logo-preview img {
    max-width: 100%;
    max-height: 64px;
    object-fit: contain;
}

.captcha-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.55rem 0.9rem;
    border: 1px dashed rgba(36, 23, 19, 0.45);
    border-radius: 8px;
    background: #f6ead4;
    color: var(--ink);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    user-select: none;
    min-width: 104px;
}

.captcha-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.captcha-refresh {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 8px;
    font-size: 1.1rem;
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 720px;
        background-position: center;
    }

    .section-band {
        padding: 3.5rem 0;
    }

    .admin-form-actions .btn,
    .admin-toolbar .btn,
    .admin-page-links .btn {
        width: 100%;
    }
}
