﻿:root {
    --bg: #f7f3eb;
    --bg-soft: #efe6d8;
    --surface: rgba(255, 255, 255, 0.82);
    --surface-strong: #ffffff;
    --text: #1c2b3c;
    --muted: #667181;
    --line: rgba(18, 52, 95, 0.12);
    --primary: #12345f;
    --primary-2: #1d4a82;
    --accent: #e59d00;
    --accent-2: #c98700;
    --accent-soft: #f6e4b7;
    --shadow: 0 20px 60px rgba(18, 52, 95, 0.10);
    --radius: 18px;
    --radius-lg: 28px;
    --container: 1180px;
    --header-height: 96px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background: radial-gradient(900px 500px at 10% 0%, rgba(229, 157, 0, 0.13), transparent 60%), radial-gradient(900px 500px at 100% 10%, rgba(18, 52, 95, 0.10), transparent 60%), linear-gradient(180deg, #f8f4ec 0%, #f1eadf 100%);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.site-shell {
    min-height: 100vh;
}

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
    background: rgba(248, 244, 236, 0.88);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.brand-logo-img {
    height: 82px;
    width: auto;
    display: block;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

    .brand-text strong {
        font-size: 1.05rem;
        color: var(--primary);
    }

    .brand-text small {
        font-size: 0.82rem;
        color: var(--accent);
        font-weight: 700;
        letter-spacing: 0.02em;
    }

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

    .site-nav a {
        font-weight: 700;
        color: var(--primary);
        transition: color 0.2s ease, opacity 0.2s ease;
    }

        .site-nav a:hover {
            color: var(--accent);
        }

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

    .nav-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--primary);
        margin: 5px auto;
        transition: 0.25s ease;
    }

.hero {
    position: relative;
    overflow: hidden;
    padding: 4rem 0 3rem;
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(rgba(248, 244, 236, 0.72), rgba(248, 244, 236, 0.78)), radial-gradient(700px 300px at 15% 10%, rgba(18, 52, 95, 0.10), transparent 65%), radial-gradient(600px 260px at 85% 20%, rgba(229, 157, 0, 0.13), transparent 65%), url('/assets/img/altes_haus.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    filter: grayscale(100%) contrast(0.95);
    transform: scale(1.02);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
    min-height: calc(100vh - var(--header-height) - 2rem);
}

.eyebrow,
.section-label {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: #ffffff;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.hero h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    line-height: 1.02;
    color: var(--primary);
    text-align: center;
}

.lead {
    max-width: 720px;
    font-size: 1.1rem;
    color: var(--primary);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0 1.5rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

    .hero-badges span {
        padding: 0.7rem 1rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.76);
        border: 1px solid var(--line);
        color: var(--primary);
        font-weight: 600;
    }

.card {
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-card,
.info-card,
.hours-card,
.form-card,
.reservation-note,
.menu-card {
    padding: 1.5rem;
}

.feature-list {
    margin: 1rem 0 1.5rem;
    padding-left: 1.2rem;
    color: var(--muted);
}

.section {
    padding: 5rem 0;
}

.alt-section {
    background: rgba(255, 255, 255, 0.34);
    border-top: 1px solid rgba(255, 255, 255, 0.62);
    border-bottom: 1px solid rgba(255, 255, 255, 0.62);
}

.section h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.1;
    color: var(--primary);
}

.section-text,
.muted {
    color: var(--muted);
}

.section-head {
    margin-bottom: 2rem;
}

    .section-head.center {
        text-align: center;
    }

.two-col {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 2rem;
    align-items: start;
}

.info-points {
    display: grid;
    gap: 1rem;
}

.cards-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.menu-card h3 {
    margin-top: 0;
    color: var(--primary);
}

.hours-card h3,
.info-card h3,
.reservation-note h3,
.form-card h3 {
    color: var(--primary);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 2rem;
}

    .hours-grid div {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        padding-bottom: 0.8rem;
        border-bottom: 1px solid var(--line);
    }

.reservation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 760px;
    margin: 0 auto;
}

.reserve-form {
    display: block;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.25rem;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

    .form-group label {
        font-weight: 700;
        font-size: 0.95rem;
        color: var(--primary);
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        border: 1px solid var(--line);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.92);
        padding: 0.9rem 1rem;
        font: inherit;
        color: var(--text);
        outline: none;
        transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: rgba(229, 157, 0, 0.45);
            box-shadow: 0 0 0 4px rgba(229, 157, 0, 0.10);
        }

.checkbox-row {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 0.75rem;
    align-items: start;
}

    .checkbox-row input {
        margin-top: 0.2rem;
    }

.form-actions {
    margin-top: 1.25rem;
}

.form-hint {
    margin: 0.75rem 0 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.field-hint {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.9rem;
    color: #7a6f63;
    line-height: 1.4;
}

.form-message {
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    display: none;
    font-weight: 600;
}

    .form-message.success,
    .form-message.error {
        display: block;
    }

    .form-message.success {
        background: rgba(18, 52, 95, 0.08);
        color: var(--primary);
        border: 1px solid rgba(18, 52, 95, 0.18);
    }

    .form-message.error {
        margin-top: 1rem;
        background: rgba(181, 66, 66, 0.08);
        color: #b42318;
        border: 1px solid rgba(181, 66, 66, 0.18);
        font-weight: 500;
    }

.input-error {
    border-color: rgba(181, 66, 66, 0.45) !important;
    box-shadow: 0 0 0 4px rgba(181, 66, 66, 0.08);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.95rem 1.3rem;
    border-radius: 14px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

    .btn:hover {
        transform: translateY(-1px);
    }

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    box-shadow: 0 12px 30px rgba(229, 157, 0, 0.24);
}

    .btn-primary:hover {
        background: linear-gradient(135deg, #f0aa12, #b97800);
    }

.btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary);
    border-color: rgba(18, 52, 95, 0.14);
}

    .btn-secondary:hover {
        color: var(--accent);
        border-color: rgba(229, 157, 0, 0.35);
    }

.btn-block {
    width: 100%;
}

.site-footer {
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.36);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

    .footer-grid h4 {
        margin-top: 0;
        margin-bottom: 0.75rem;
        color: var(--primary);
    }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.92rem;
}

.footer-peek-logo-link {
    display: inline-flex;
    align-items: center;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

    .footer-peek-logo-link:hover {
        opacity: 0.9;
        transform: translateY(-1px);
    }

.footer-peek-logo {
    height: 32px;
    width: auto;
    display: block;
    object-fit: contain;
}

.pdf-viewer {
    padding: 1.25rem;
}

.pdf-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.pdf-counter {
    font-weight: 700;
    color: var(--primary);
}

.pdf-stage {
    padding: 0.75rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(246,240,229,0.96) 100%);
    border: 1px solid var(--line);
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdf-canvas {
    width: 100%;
    height: auto;
    max-width: 100%;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(18, 52, 95, 0.12);
}

.pdf-actions {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.pdf-error {
    padding: 2rem 1rem;
    text-align: center;
    color: #8f2f2f;
    font-weight: 700;
}

.pdf-single .pdf-toolbar {
    justify-content: center;
}

.pdf-viewer-compact {
    max-width: 760px;
    margin: 0 auto;
    padding: 1rem;
}

    .pdf-viewer-compact .pdf-toolbar {
        justify-content: center;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .pdf-viewer-compact .pdf-stage {
        max-width: 620px;
        margin: 0 auto;
        padding: 0.75rem;
        min-height: auto;
    }

    .pdf-viewer-compact .pdf-canvas {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .pdf-viewer-compact .pdf-actions {
        margin-top: 1rem;
    }

    .pdf-viewer-compact .btn {
        min-height: 44px;
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

.pdf-announcement-compact {
    max-width: 620px;
    margin: 0 auto;
    padding: 1rem;
}

    .pdf-announcement-compact .pdf-toolbar {
        justify-content: center;
        margin-bottom: 0.9rem;
    }

    .pdf-announcement-compact .pdf-stage {
        max-width: 460px;
        margin: 0 auto;
        padding: 0.75rem;
        min-height: auto;
    }

    .pdf-announcement-compact .pdf-canvas {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .pdf-announcement-compact .pdf-actions {
        margin-top: 1rem;
    }

    .pdf-announcement-compact .btn {
        min-height: 44px;
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

.admin-reservations-card {
    padding: 1.5rem;
}

.admin-table-wrap {
    width: 100%;
    overflow-x: auto;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 980px;
}

    .admin-table th,
    .admin-table td {
        padding: 0.9rem 1rem;
        text-align: left;
        vertical-align: top;
        border-bottom: 1px solid var(--line);
    }

    .admin-table thead th {
        font-size: 0.92rem;
        font-weight: 700;
        color: var(--primary);
        background: rgba(18, 52, 95, 0.06);
        white-space: nowrap;
    }

    .admin-table tbody td {
        color: var(--text);
    }

    .admin-table tbody tr:hover {
        background: rgba(229, 157, 0, 0.05);
    }

.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    border: 1px solid transparent;
}

.status-pending {
    background: rgba(229, 157, 0, 0.12);
    color: #8a621b;
    border-color: rgba(229, 157, 0, 0.22);
}

.status-confirmed {
    background: rgba(45, 90, 61, 0.14);
    color: #2d5a3d;
    border-color: rgba(45, 90, 61, 0.22);
}

.status-declined {
    background: rgba(163, 58, 50, 0.14);
    color: #a33a32;
    border-color: rgba(163, 58, 50, 0.20);
}

.reservation-message-cell {
    min-width: 220px;
    max-width: 280px;
    line-height: 1.45;
    white-space: normal;
    word-break: break-word;
}

.hours-card-fancy {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
    padding: 1.6rem 1.7rem;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(250,247,241,0.96) 100%);
    border: 1px solid rgba(18, 52, 95, 0.08);
    box-shadow: 0 20px 50px rgba(18, 52, 95, 0.08), 0 6px 18px rgba(229, 157, 0, 0.06);
    overflow: hidden;
}

.hours-grid-fancy {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    position: relative;
    z-index: 1;
}

.hours-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent), #f3b32b, var(--primary));
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(18, 52, 95, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

    .hours-row:hover {
        transform: translateY(-2px);
        border-color: rgba(229, 157, 0, 0.28);
        box-shadow: 0 10px 24px rgba(18, 52, 95, 0.08);
        background: rgba(255, 255, 255, 0.82);
    }

    .hours-row strong {
        display: inline-flex;
        align-items: center;
        gap: 0.7rem;
        color: var(--primary);
        font-size: 1rem;
        min-width: 0;
    }

    .hours-row span {
        color: var(--text);
        font-weight: 500;
        text-align: right;
        font-size: 0.95rem;
        white-space: nowrap;
    }

.hours-row-highlight {
    border-left: 4px solid var(--accent);
    background: linear-gradient(90deg, rgba(229, 157, 0, 0.08) 0%, rgba(255,255,255,0.7) 22%);
}

.hours-row-closed {
    background: linear-gradient(90deg, rgba(18, 52, 95, 0.04) 0%, rgba(255,255,255,0.65) 22%);
    border-left: 4px solid rgba(18, 52, 95, 0.35);
}

    .hours-row-closed span {
        color: #8a5a00;
        font-weight: 700;
    }

.hours-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(18, 52, 95, 0.08);
    border: 1px solid rgba(18, 52, 95, 0.10);
}

    .hours-icon svg {
        width: 15px;
        height: 15px;
        stroke-width: 1.9;
        stroke-linecap: round;
        stroke-linejoin: round;
        fill: none;
    }

.hours-icon-day {
    background: rgba(18, 52, 95, 0.08);
    border-color: rgba(18, 52, 95, 0.14);
}

    .hours-icon-day svg {
        stroke: var(--primary);
    }

.hours-icon-special {
    background: rgba(229, 157, 0, 0.12);
    border-color: rgba(229, 157, 0, 0.22);
}

    .hours-icon-special svg {
        stroke: var(--accent);
    }

.hours-icon-closed {
    background: rgba(18, 52, 95, 0.06);
    border-color: rgba(18, 52, 95, 0.16);
}

    .hours-icon-closed svg {
        stroke: #8a5a00;
    }

.about-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.image-card {
    padding: 1rem;
    text-align: center;
}

.about-image {
    display: block;
    width: 100%;
    max-width: 340px;
    height: auto;
    margin: 0 auto;
    border-radius: 16px;
}

.info-card h3 {
    margin-top: 0;
}

.beer-section-wood {
    position: relative;
    background: linear-gradient(rgba(120, 72, 30, 0.18), rgba(120, 72, 30, 0.22)), radial-gradient(circle at top left, rgba(255, 214, 120, 0.20), transparent 35%), linear-gradient(135deg, #a86834 0%, #c48344 50%, #e3ae6b 100%);
    padding: 5rem 0;
    overflow: hidden;
}

    .beer-section-wood::before {
        content: "";
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient( 90deg, rgba(255, 255, 255, 0.04) 0px, rgba(255, 255, 255, 0.04) 2px, transparent 2px, transparent 90px );
        pointer-events: none;
        opacity: 0.24;
    }

.beer-wood-card {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(148, 90, 44, 0.82) 0%, rgba(126, 73, 34, 0.86) 100%);
    border: 1px solid rgba(255, 235, 195, 0.28);
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(96, 55, 20, 0.18), inset 0 1px 0 rgba(255, 245, 222, 0.12);
    padding: 3rem;
    overflow: hidden;
}

    .beer-wood-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #f7d67a 0%, #ffd86f 35%, #f3b32b 70%, #fff0b8 100%);
        box-shadow: 0 0 18px rgba(255, 216, 111, 0.35);
    }

.beer-grid {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr) 260px;
    gap: 2.5rem;
    align-items: center;
}

.beer-image,
.beer-fass-image {
    text-align: center;
}

    .beer-image img {
        width: 100%;
        max-width: 240px;
        height: auto;
        display: inline-block;
        filter: drop-shadow(0 18px 24px rgba(90, 52, 20, 0.18));
    }

    .beer-fass-image img {
        width: 100%;
        max-width: 260px;
        aspect-ratio: 4 / 5;
        object-fit: cover;
        display: inline-block;
        border-radius: 28px;
        filter: drop-shadow(0 18px 24px rgba(90, 52, 20, 0.18));
    }

.beer-content-wood h2 {
    color: #fff9f0;
    margin: 0.4rem 0 0.9rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.beer-label-wood {
    display: inline-block;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 233, 180, 0.14);
    color: #fff0c7;
    border: 1px solid rgba(255, 233, 180, 0.28);
    font-weight: 600;
}

.beer-badge-wood {
    display: inline-block;
    margin: 0 0 1rem;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 232, 177, 0.18) 0%, rgba(255, 232, 177, 0.10) 100%);
    border: 1px solid rgba(255, 232, 177, 0.26);
    color: #fff4d4;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.beer-highlight-wood {
    color: #ffd86f;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.beer-text-wood {
    color: rgba(255, 249, 240, 0.96);
    line-height: 1.75;
    margin-bottom: 1rem;
}

    .beer-text-wood strong {
        color: #fff7df;
    }

@media (max-width: 1100px) {
    .beer-grid {
        grid-template-columns: 210px minmax(0, 1fr) 210px;
        gap: 1.8rem;
    }

    .beer-image img {
        max-width: 210px;
    }

    .beer-fass-image img {
        max-width: 210px;
    }
}

@media (max-width: 980px) {
    .hero-grid,
    .two-col,
    .reservation-grid,
    .cards-3,
    .footer-grid,
    .hours-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .site-nav {
        position: absolute;
        top: calc(var(--header-height) - 6px);
        left: 1rem;
        right: 1rem;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
    }

        .site-nav.is-open {
            display: flex;
        }

    .nav-toggle {
        display: inline-block;
    }

    .brand-logo-img {
        height: 68px;
    }

    .admin-reservations-card {
        padding: 1rem;
    }

    .hours-card-fancy {
        max-width: 620px;
    }
}

@media (max-width: 900px) {
    .two-col {
        grid-template-columns: 1fr;
    }

    .about-side {
        align-items: stretch;
    }

    .image-card {
        text-align: center;
    }

    .about-image {
        max-width: 300px;
    }

    .beer-wood-card {
        padding: 2rem 1.25rem;
    }

    .beer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .beer-image img {
        max-width: 230px;
    }
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group-full {
        grid-column: auto;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: 2.5rem;
    }

    .container {
        width: min(100% - 1.2rem, var(--container));
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .brand-logo-img {
        height: 58px;
    }

    .brand-text strong {
        font-size: 0.95rem;
    }

    .brand-text small {
        font-size: 0.76rem;
    }

    .footer-peek-logo {
        height: 26px;
    }

    .hours-card-fancy {
        padding: 1rem;
        border-radius: 22px;
    }

    .hours-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }

        .hours-row span {
            text-align: left;
            white-space: normal;
        }
}

.reservation-action-group {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.reservation-action-btn {
    width: 100%;
    min-height: 42px;
    padding: 0.7rem 0.9rem;
    font-size: 0.92rem;
}

.reservation-action-btn-danger {
    background: rgba(163, 58, 50, 0.10);
    color: #a33a32;
    border: 1px solid rgba(163, 58, 50, 0.20);
}

    .reservation-action-btn-danger:hover {
        background: rgba(163, 58, 50, 0.16);
        color: #8d2f28;
        border-color: rgba(163, 58, 50, 0.28);
    }

.impressions-section {
    position: relative;
    overflow: hidden;
}

    .impressions-section::before {
        content: "";
        position: absolute;
        inset: auto -10% 8% -10%;
        height: 260px;
        background: radial-gradient(circle at center, rgba(229, 157, 0, 0.12), transparent 68%);
        pointer-events: none;
    }

.impressions-slider {
    position: relative;
    padding: 1.4rem 3.6rem 1.7rem;
    overflow: hidden;
}

.impressions-track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0.35rem 0.2rem 1.2rem;
    scrollbar-width: none;
}

    .impressions-track::-webkit-scrollbar {
        display: none;
    }

.impression-slide {
    flex: 0 0 calc((100% - 2.5rem) / 3);
    scroll-snap-align: center;
}

.impression-card {
    width: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    border-radius: 26px;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(18, 52, 95, 0.14);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

    .impression-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 24px 58px rgba(18, 52, 95, 0.18);
    }

    .impression-card img {
        width: 100%;
        aspect-ratio: 3 / 4;
        object-fit: cover;
        border-radius: 26px;
        display: block;
    }

.impression-nav {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(18, 52, 95, 0.14);
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(18, 52, 95, 0.12);
    transform: translateY(-50%);
    transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

    .impression-nav:hover {
        color: var(--accent);
        border-color: rgba(229, 157, 0, 0.35);
        transform: translateY(-50%) scale(1.04);
    }

.impression-prev {
    left: 1rem;
}

.impression-next {
    right: 1rem;
}

.impression-dots {
    display: flex;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 0.3rem;
}

.impression-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    background: rgba(18, 52, 95, 0.22);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

    .impression-dot.is-active {
        width: 28px;
        background: var(--accent);
    }

.impression-lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(12, 20, 31, 0.82);
    backdrop-filter: blur(10px);
}

    .impression-lightbox.is-open {
        display: flex;
    }

.impression-lightbox-content {
    width: min(520px, 82vw);
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .impression-lightbox-content img {
        max-width: 100%;
        max-height: 88vh;
        object-fit: contain;
        border-radius: 24px;
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    }

.impression-lightbox-close,
.impression-lightbox-nav {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

    .impression-lightbox-close:hover,
    .impression-lightbox-nav:hover {
        background: rgba(255, 255, 255, 0.24);
        transform: scale(1.04);
    }

.impression-lightbox-close {
    top: 1.2rem;
    right: 1.2rem;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    font-size: 2rem;
    line-height: 1;
}

.impression-lightbox-nav {
    top: 50%;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    font-size: 2.4rem;
    line-height: 1;
    transform: translateY(-50%);
}

    .impression-lightbox-nav:hover {
        transform: translateY(-50%) scale(1.04);
    }

.impression-lightbox-prev {
    left: 1.4rem;
}

.impression-lightbox-next {
    right: 1.4rem;
}

@media (max-width: 980px) {
    .impression-slide {
        flex-basis: calc((100% - 1.25rem) / 2);
    }
}

@media (max-width: 640px) {
    .impressions-slider {
        padding: 1rem 0.85rem 1.35rem;
    }

    .impressions-track {
        gap: 1rem;
    }

    .impression-slide {
        flex-basis: 86%;
    }

    .impression-nav {
        width: 40px;
        height: 40px;
        font-size: 1.7rem;
    }

    .impression-prev {
        left: 0.5rem;
    }

    .impression-next {
        right: 0.5rem;
    }

    .impression-lightbox {
        padding: 1rem;
    }

    .impression-lightbox-content {
        width: 92vw;
    }

    .impression-lightbox-nav {
        width: 42px;
        height: 42px;
        font-size: 1.9rem;
    }

    .impression-lightbox-prev {
        left: 0.5rem;
    }

    .impression-lightbox-next {
        right: 0.5rem;
    }
}

/* Panorama showcase */
.panorama-showcase {
    margin-top: clamp(2.5rem, 5vw, 5rem);
}

.panorama-head {
    max-width: 720px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

    .panorama-head h3 {
        margin: 0.35rem 0 0.5rem;
        font-size: clamp(1.6rem, 3vw, 2.4rem);
        color: var(--color-heading, #2b1b12);
    }

    .panorama-head p {
        margin: 0;
        color: var(--color-text-muted, #6f5b4d);
    }

.panorama-frame {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: clamp(0.45rem, 1vw, 0.75rem);
    background: linear-gradient(135deg, rgba(255, 248, 231, 0.95), rgba(211, 161, 86, 0.28)), rgba(255, 255, 255, 0.72);
    box-shadow: 0 28px 70px rgba(62, 36, 18, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

    .panorama-frame::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        border-radius: inherit;
        background: linear-gradient(120deg, rgba(255,255,255,0.35), transparent 35%, transparent 65%, rgba(255,255,255,0.18));
        z-index: 3;
    }

.panorama-glow {
    position: absolute;
    width: 45%;
    height: 80%;
    right: -12%;
    top: -30%;
    background: radial-gradient(circle, rgba(255, 197, 94, 0.35), transparent 65%);
    filter: blur(8px);
    pointer-events: none;
}

.panorama-viewport {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #2d2018;
}

    .panorama-viewport img {
        display: block;
        width: 100%;
        height: clamp(240px, 24vw, 390px);
        object-fit: cover;
        object-position: center;
        transform: scale(1.01);
        transition: transform 0.8s ease, filter 0.8s ease;
    }

.panorama-frame:hover .panorama-viewport img {
    transform: scale(1.045);
    filter: saturate(1.08) contrast(1.04);
}

.panorama-overlay {
    position: absolute;
    left: clamp(1.2rem, 3vw, 2.4rem);
    bottom: clamp(1.2rem, 3vw, 2.4rem);
    z-index: 4;
    max-width: min(420px, 80%);
    padding: 0.9rem 1.15rem;
    border-radius: 18px;
    background: rgba(40, 25, 16, 0.62);
    color: #fff8ea;
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
}

    .panorama-overlay span {
        display: block;
        margin-bottom: 0.2rem;
        font-size: 0.78rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        opacity: 0.82;
    }

    .panorama-overlay strong {
        display: block;
        font-size: clamp(1.05rem, 2vw, 1.45rem);
    }

.panorama-scroll-hint {
    display: none;
}

/* Mobile panorama behavior */
@media (max-width: 768px) {
    .panorama-showcase {
        margin-top: 3rem;
    }

    .panorama-head {
        text-align: left;
        margin-bottom: 1rem;
    }

    .panorama-frame {
        margin-left: -0.25rem;
        margin-right: -0.25rem;
        border-radius: 24px;
        padding: 0.45rem;
    }

    .panorama-viewport {
        overflow-x: auto;
        overflow-y: hidden;
        border-radius: 20px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
    }

        .panorama-viewport::-webkit-scrollbar {
            height: 6px;
        }

        .panorama-viewport::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.3);
            border-radius: 999px;
        }

        .panorama-viewport::-webkit-scrollbar-thumb {
            background: rgba(122, 78, 39, 0.55);
            border-radius: 999px;
        }

        .panorama-viewport img {
            width: auto;
            max-width: none;
            height: 270px;
            min-width: 1160px;
            object-fit: contain;
            object-position: left center;
            scroll-snap-align: start;
            transform: none;
        }

    .panorama-frame:hover .panorama-viewport img {
        transform: none;
        filter: none;
    }

    .panorama-overlay {
        left: 1rem;
        bottom: 1rem;
        max-width: calc(100% - 2rem);
        padding: 0.75rem 0.9rem;
        border-radius: 16px;
    }

        .panorama-overlay span {
            font-size: 0.68rem;
        }

        .panorama-overlay strong {
            font-size: 1rem;
        }

    .panorama-scroll-hint {
        display: inline-flex;
        position: absolute;
        right: 1rem;
        top: 1rem;
        z-index: 4;
        padding: 0.5rem 0.75rem;
        border-radius: 999px;
        background: rgba(40, 25, 16, 0.68);
        color: #fff8ea;
        font-size: 0.78rem;
        backdrop-filter: blur(10px);
        pointer-events: none;
        animation: panoramaHintPulse 1.8s ease-in-out infinite;
    }
}

@media (max-width: 480px) {
    .panorama-viewport img {
        height: 235px;
        min-width: 1040px;
    }

    .panorama-overlay {
        bottom: 0.85rem;
    }
}

@keyframes panoramaHintPulse {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.82;
    }

    50% {
        transform: translateX(-6px);
        opacity: 1;
    }
}

.panorama-viewport {
    cursor: grab;
}

    .panorama-viewport.is-dragging {
        cursor: grabbing;
    }

.menu-section {
    position: relative;
    overflow: hidden;
}

.menu-highlight {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: clamp(1.25rem, 3vw, 2.25rem);
    align-items: stretch;
    margin: clamp(2rem, 4vw, 3.5rem) 0;
    padding: clamp(0.75rem, 1.5vw, 1rem);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255,255,255,0.88), rgba(255,255,255,0.62)), rgba(255,255,255,0.72);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.menu-highlight__image {
    position: relative;
    min-height: 360px;
    border-radius: 22px;
    overflow: hidden;
    isolation: isolate;
}

    .menu-highlight__image::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(0,0,0,0.06), transparent 45%), linear-gradient(0deg, rgba(0,0,0,0.18), transparent 48%);
        z-index: 1;
        pointer-events: none;
    }

    .menu-highlight__image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center;
        transform: scale(1.01);
        transition: transform 0.6s ease;
    }

.menu-highlight:hover .menu-highlight__image img {
    transform: scale(1.06);
}

.menu-highlight__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.25rem, 3vw, 2.75rem);
}

.menu-highlight__label {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 0.9rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b2b10;
    background: #ffe2b8;
}

.menu-highlight__content h3 {
    margin: 0 0 0.9rem;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 0.98;
    color: #2b1a10;
}

.menu-highlight__content p {
    margin: 0;
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.65;
    color: rgba(43, 26, 16, 0.78);
}

.menu-highlight__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

    .menu-highlight__tags span {
        padding: 0.55rem 0.8rem;
        border-radius: 999px;
        font-size: 0.9rem;
        font-weight: 700;
        color: #3a2417;
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(90, 58, 35, 0.12);
    }

.menu-card--featured {
    position: relative;
    overflow: hidden;
}

    .menu-card--featured::before {
        content: "Ripperl-Tipp";
        position: absolute;
        top: 1rem;
        right: 1rem;
        padding: 0.35rem 0.7rem;
        border-radius: 999px;
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: #6b2b10;
        background: #ffe2b8;
    }

/* Tablet */
@media (max-width: 992px) {
    .menu-highlight {
        grid-template-columns: 1fr;
    }

    .menu-highlight__image {
        min-height: 300px;
    }

    .menu-highlight__content {
        padding-top: 0.75rem;
    }
}

/* Smartphone */
@media (max-width: 576px) {
    .menu-highlight {
        margin: 1.75rem 0 2rem;
        border-radius: 22px;
        padding: 0.6rem;
    }

    .menu-highlight__image {
        min-height: 230px;
        border-radius: 18px;
    }

    .menu-highlight__content {
        padding: 1.1rem 0.75rem 1rem;
    }

    .menu-highlight__tags span {
        font-size: 0.82rem;
    }

    .menu-card--featured::before {
        position: static;
        display: inline-flex;
        margin-bottom: 0.8rem;
    }
}

.site-footer .muted a {
    color: inherit;
    text-decoration: none;
    position: relative;
    font-weight: 500;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

    .site-footer .muted a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -3px;
        width: 0;
        height: 2px;
        background: currentColor;
        border-radius: 999px;
        transition: width 0.25s ease;
    }

    .site-footer .muted a:hover,
    .site-footer .muted a:focus-visible {
        color: #f4c76b;
        text-shadow: 0 0 14px rgba(244, 199, 107, 0.45);
    }

        .site-footer .muted a:hover::after,
        .site-footer .muted a:focus-visible::after {
            width: 100%;
        }

.hours-kitchen-note {
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: 16px;
    text-align: center;
    font-weight: 700;
    color: var(--color-dark, #2b1b12);
    background: rgba(184, 132, 76, 0.14);
    border: 1px solid rgba(184, 132, 76, 0.28);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

    .hours-kitchen-note::before {
        content: "🍽️";
        margin-right: 8px;
    }

/* =========================
   Footer dark style
   ========================= */

.site-footer {
    margin-top: 64px;
    padding: 3rem 0 1.4rem;
    background: radial-gradient(700px 260px at 15% 0%, rgba(229, 157, 0, 0.10), transparent 60%), linear-gradient(180deg, #2b1a12 0%, #1f130d 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 248, 235, 0.86);
}

    .site-footer h4 {
        margin-top: 0;
        margin-bottom: 0.75rem;
        color: #f4c76b;
        font-weight: 800;
        letter-spacing: 0.01em;
    }

    .site-footer .muted {
        color: rgba(255, 248, 235, 0.76);
    }

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.site-footer a {
    color: rgba(255, 248, 235, 0.88);
}

.site-footer .muted a {
    color: rgba(255, 248, 235, 0.88);
    text-decoration: none;
    position: relative;
    font-weight: 600;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

    .site-footer .muted a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -3px;
        width: 0;
        height: 2px;
        background: currentColor;
        border-radius: 999px;
        transition: width 0.25s ease;
    }

    .site-footer .muted a:hover,
    .site-footer .muted a:focus-visible {
        color: #f4c76b;
        text-shadow: 0 0 14px rgba(244, 199, 107, 0.35);
    }

        .site-footer .muted a:hover::after,
        .site-footer .muted a:focus-visible::after {
            width: 100%;
        }

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 248, 235, 0.72);
    font-size: 0.92rem;
}

    .footer-bottom > span {
        justify-self: start;
    }

.site-footer-links {
    justify-self: center;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

    .site-footer-links a {
        color: rgba(255, 248, 235, 0.92);
        text-decoration: none;
        font-weight: 600;
        transition: color 0.2s ease, text-shadow 0.2s ease;
    }

        .site-footer-links a:hover,
        .site-footer-links a:focus-visible {
            color: #f4c76b;
            text-decoration: underline;
            text-underline-offset: 4px;
            text-shadow: 0 0 14px rgba(244, 199, 107, 0.35);
        }

    .site-footer-links span {
        color: rgba(255, 248, 235, 0.35);
    }

.footer-peek-logo-link {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    color: rgba(255, 248, 235, 0.72);
    font-weight: 500;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

    .footer-peek-logo-link:hover {
        opacity: 0.92;
        transform: translateY(-1px);
    }

    .footer-peek-logo-link span {
        color: rgba(255, 248, 235, 0.72);
    }

.footer-peek-logo {
    height: 32px;
    width: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 980px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding: 2.5rem 0 1.3rem;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 0.75rem;
    }

        .footer-bottom > span,
        .site-footer-links,
        .footer-peek-logo-link {
            justify-self: center;
        }

    .footer-peek-logo {
        height: 26px;
    }
}