/* ================================================================
   BEI FRANCO – GOAT-Level Design System
   Senior Webdesigner Edition
   ================================================================ */

/* ── Design Tokens ── */
:root {
    --bg: #0a0a0b;
    --surface: #121316;
    --surface-2: #1a1b1f;
    --surface-3: #222328;
    --gold: #d9a441;
    --gold-2: #f0ba52;
    --gold-3: #ffd074;
    --gold-glow: rgba(217, 164, 65, 0.35);
    --green: #25d366;
    --green-2: #1daa52;
    --green-glow: rgba(37, 211, 102, 0.3);
    --gold-soft: rgba(217, 164, 65, 0.1);
    --text: #f0f0f2;
    --text-secondary: #c8ccd6;
    --muted: #8b90a0;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --radius-sm: 0.75rem;
    --radius-md: 1.25rem;
    --radius-xl: 1.75rem;
    --radius-2xl: 2.25rem;
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.2);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 20px 80px rgba(217, 164, 65, 0.08);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration: 0.4s;
    --duration-slow: 0.7s;
}

/* ── Base ── */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ── Skip link (a11y) ── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 9999;
    padding: 0.75rem 1.25rem;
    background: var(--gold);
    color: #111;
    font-weight: 800;
    border-radius: 0 0 0.75rem 0.75rem;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus { top: 0; }

/* ── Focus styles (a11y) ── */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* ── Custom Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
    background: rgba(217, 164, 65, 0.25);
    border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(217, 164, 65, 0.45); }

/* ── Body + Film grain underlay ── */
body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    padding-top: 76px;
    position: relative;
    overflow-x: hidden;
}

@media screen {
    body::before {
        content: '';
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: 9998;
        opacity: 0.022;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
        background-repeat: repeat;
        background-size: 256px;
    }

    body::after {
        content: '';
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: -1;
        background:
            radial-gradient(ellipse 60% 40% at 85% 5%, rgba(217, 164, 65, 0.12), transparent),
            radial-gradient(ellipse 50% 50% at 10% 80%, rgba(217, 164, 65, 0.05), transparent),
            radial-gradient(ellipse 40% 30% at 50% 50%, rgba(255, 255, 255, 0.015), transparent);
    }
}

/* ── Selection ── */
::selection {
    background: rgba(217, 164, 65, 0.3);
    color: #fff;
}

/* ── Scroll Progress ── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--gold), var(--gold-3));
    z-index: 10000;
    pointer-events: none;
    transition: width 0.1s linear;
}

/* ── Typography ── */
.serif {
    font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
    letter-spacing: -0.02em;
}

.text-muted-custom { color: var(--muted) !important; }

.hero h1,
.section-title {
    font-size: clamp(2.4rem, 5vw, 5.8rem);
    font-weight: 900;
    line-height: 0.96;
    letter-spacing: -0.03em;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.6rem);
    margin-bottom: 1.2rem;
}

.hero h1 .accent,
.section-title .accent {
    background: linear-gradient(135deg, var(--gold-3), var(--gold), #e8943a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-kicker {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 0.9rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.section-kicker::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 2rem;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.kicker-icon {
    width: 0.95rem;
    height: 0.95rem;
    opacity: 0.75;
    flex-shrink: 0;
}

/* ── Navigation ── */
.navbar {
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    background: rgba(10, 10, 11, 0.65);
    border-bottom: 1px solid var(--border);
    transition: all 0.5s var(--ease-out);
    padding: 0.35rem 0;
}

.navbar.scrolled {
    background: rgba(10, 10, 11, 0.94);
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.5),
        0 1px 0 rgba(217, 164, 65, 0.06);
    padding: 0.15rem 0;
}

.navbar-brand {
    letter-spacing: 0.06em;
    font-weight: 900;
    text-transform: uppercase;
    transition: transform var(--duration) var(--ease-spring);
}

.navbar-brand:hover {
    transform: scale(1.03);
}

.navbar-brand span { color: var(--gold); }

.navbar-logo {
    height: 42px;
    width: auto;
    transition: height var(--duration) var(--ease-out), filter var(--duration) var(--ease-out);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.navbar.scrolled .navbar-logo {
    height: 38px;
}

/* Custom hamburger */
.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.4rem;
    border-radius: 0.5rem;
    transition: all var(--duration) var(--ease-out);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(217, 164, 65, 0.2);
}

.navbar-toggler:hover {
    border-color: rgba(217, 164, 65, 0.3);
    background: rgba(217, 164, 65, 0.06);
}

.toggler-icon {
    width: 1.3rem;
    height: 1.3rem;
    color: var(--gold-2);
    display: block;
}

/* Nav links with icons */
.nav-link {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    font-size: 0.88rem;
    transition: color var(--duration) var(--ease-out), background var(--duration) var(--ease-out);
    position: relative;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-link-icon {
    width: 0.95rem;
    height: 0.95rem;
    opacity: 0.45;
    flex-shrink: 0;
    transition: all var(--duration) var(--ease-out);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-3));
    border-radius: 2px;
    transition: width var(--duration) var(--ease-out), left var(--duration) var(--ease-out);
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 60%;
    left: 20%;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

.nav-link:hover .nav-link-icon {
    opacity: 0.85;
    color: var(--gold-2);
}

.nav-link.active {
    color: #fff;
}

.nav-link.active .nav-link-icon {
    opacity: 1;
    color: var(--gold-2);
    filter: drop-shadow(0 0 4px rgba(217, 164, 65, 0.3));
}

.nav-link:focus {
    color: #fff;
}

/* Nav divider */
.nav-divider {
    width: 1px;
    height: 1.4rem;
    background: var(--border);
    margin: 0 0.3rem;
    align-self: center;
}

/* Nav CTA buttons */
.btn-nav {
    padding: 0.55rem 1rem;
    font-size: 0.82rem;
}

.btn-nav .btn-icon {
    width: 0.88rem;
    height: 0.88rem;
    margin-right: 0.35rem;
}

/* Mobile nav panel */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(10, 10, 11, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid var(--border);
        margin-top: 0.5rem;
        padding: 1rem 0.5rem;
        border-radius: 0 0 var(--radius-md) var(--radius-md);
    }

    .nav-link {
        padding: 0.7rem 0.85rem;
        border-radius: var(--radius-sm);
        font-size: 0.95rem;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(255, 255, 255, 0.04);
    }

    .nav-link::after {
        display: none;
    }

    .nav-link.active::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 3px;
        height: 55%;
        border-radius: 999px;
        background: var(--gold);
    }

    .nav-divider {
        width: 100%;
        height: 1px;
        margin: 0.5rem 0;
    }

    .btn-nav {
        width: 100%;
        justify-content: center;
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
}

/* ── Buttons ── */
.btn-gold,
.btn-whatsapp,
.btn-outline-light-custom {
    border-radius: 999px;
    padding: 0.85rem 1.4rem;
    font-weight: 700;
    transition: all var(--duration) var(--ease-out);
    position: relative;
    isolation: isolate;
}

.btn-gold,
.btn-whatsapp {
    border: 0;
    font-weight: 800;
}

/* Button & Badge Icon helpers */
.btn-icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.45rem;
    vertical-align: -0.12em;
    flex-shrink: 0;
}

.badge-icon {
    width: 0.8rem;
    height: 0.8rem;
    margin-right: 0.15rem;
    vertical-align: -0.1em;
    opacity: 0.85;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-3), var(--gold), #c98c1d);
    color: #111;
    box-shadow: 0 8px 32px rgba(201, 140, 29, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-gold:hover {
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(201, 140, 29, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-gold:active {
    transform: translateY(0) scale(0.98);
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--green), var(--green-2));
    color: #fff;
    box-shadow: 0 8px 32px var(--green-glow), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-whatsapp:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(37, 211, 102, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-whatsapp:active {
    transform: translateY(0) scale(0.98);
}

.btn-outline-light-custom {
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--text);
    backdrop-filter: blur(8px);
}

.btn-outline-light-custom:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.22);
    color: var(--text);
    transform: translateY(-1px);
}

/* ── Links ── */
.text-link {
    color: var(--gold-2);
    text-decoration: none;
    font-weight: 700;
    transition: all var(--duration) var(--ease-out);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.text-link i {
    width: 1rem;
    height: 1rem;
    transition: transform var(--duration) var(--ease-spring);
}

.text-link:hover {
    color: var(--gold-3);
}

.text-link:hover i {
    transform: translateX(4px);
}

/* ── Sections ── */
section {
    padding: 110px 0;
    position: relative;
}

.section-dark {
    background: rgba(255, 255, 255, 0.012);
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.section-dark::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ── Hero ── */
.hero,
.page-hero {
    position: relative;
    overflow: hidden;
}

.hero-home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: -76px;
    padding-top: 76px;
}

.hero-home::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(95deg, rgba(10, 10, 10, 0.94) 0%, rgba(10, 10, 10, 0.78) 45%, rgba(10, 10, 10, 0.2) 100%),
        url('../img/hero.jpg') center/cover no-repeat;
    transform: scale(1.03) translateY(var(--parallax-y, 0px));
    will-change: transform;
}

.hero-home::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(to top, var(--bg), transparent);
    z-index: 1;
}

.hero > .container,
.page-hero > .container {
    position: relative;
    z-index: 2;
}

.page-hero {
    padding: 120px 0 60px;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.9rem;
    background: linear-gradient(135deg, rgba(217, 164, 65, 0.1), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(217, 164, 65, 0.15);
    color: var(--gold-2);
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.82rem;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(12px);
    letter-spacing: 0.04em;
    transition: all var(--duration) var(--ease-out);
}

.eyebrow:hover {
    background: linear-gradient(135deg, rgba(217, 164, 65, 0.16), rgba(255, 255, 255, 0.05));
    border-color: rgba(217, 164, 65, 0.28);
    box-shadow: 0 0 20px rgba(217, 164, 65, 0.06);
}

.eyebrow i {
    width: 0.9rem;
    height: 0.9rem;
    opacity: 0.8;
}

.hero-copy {
    max-width: 700px;
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    max-width: 580px;
}

.hero-meta .glass-card {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem 1.2rem;
    transition: all var(--duration) var(--ease-out);
    border-color: var(--border);
}

.hero-meta .glass-card:hover {
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.hero-meta .glass-card:hover .glass-card-icon {
    color: var(--gold-2);
    opacity: 1;
    transform: scale(1.1);
}

.glass-card-icon {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    color: var(--gold);
    opacity: 0.6;
    margin-top: 0.1rem;
    transition: all var(--duration) var(--ease-out);
}

.hero-meta strong {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 0.2rem;
}

.hero-meta span {
    font-size: 0.92rem;
    font-weight: 700;
}

/* ── Cards – Shared ── */
.glass-card,
.feature-card,
.menu-card,
.review-card,
.hours-card,
.form-card,
.legal-card,
.menu-section-card,
.showcase-card,
.map-placeholder {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    padding: 1.6rem;
    backdrop-filter: blur(6px);
    transition: all var(--duration) var(--ease-out);
}

.feature-card {
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
    opacity: 0;
    transition: opacity var(--duration) var(--ease-out);
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow), var(--shadow-glow);
}

.feature-card:hover::before {
    opacity: 1;
}

.menu-card {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.menu-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, transparent 40%, rgba(217, 164, 65, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--duration) var(--ease-out);
    pointer-events: none;
}

.menu-card::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(217, 164, 65, 0.12) 0%, transparent 70%);
    transition: all var(--duration) var(--ease-out);
}

.menu-card:hover {
    border-color: rgba(217, 164, 65, 0.15);
    transform: translateY(-4px);
    box-shadow: var(--shadow), 0 0 60px rgba(217, 164, 65, 0.06);
}

.menu-card:hover::before { opacity: 1; }

.menu-card:hover::after {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(217, 164, 65, 0.2) 0%, transparent 70%);
}

.showcase-card {
    position: relative;
    overflow: hidden;
}

.showcase-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(180deg, rgba(217, 164, 65, 0.15), transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.menu-section-card {
    background: linear-gradient(165deg, var(--surface), var(--surface-2));
    position: relative;
    overflow: hidden;
}

.menu-section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(217, 164, 65, 0.15), transparent);
}

/* ── Cards Content ── */
.showcase-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.showcase-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    transition: all var(--duration) var(--ease-out);
}

.showcase-item:hover {
    padding-left: 0.4rem;
}

.showcase-item:last-of-type {
    border-bottom: 0;
}

.showcase-item h3,
.menu-card h3,
.menu-line h3,
.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.showcase-item p,
.menu-line p {
    color: var(--muted);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.showcase-item span,
.menu-line strong {
    color: var(--gold-2);
    font-weight: 800;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.price-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: var(--gold-soft);
    border: 1px solid rgba(217, 164, 65, 0.12);
    font-weight: 800;
    color: var(--gold-2);
    font-variant-numeric: tabular-nums;
    font-size: 0.92rem;
    transition: all var(--duration) var(--ease-out);
}

.menu-card:hover .price-badge {
    background: rgba(217, 164, 65, 0.18);
    box-shadow: 0 0 20px rgba(217, 164, 65, 0.1);
}

.badge-soft {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-soft);
    color: var(--gold-2);
    border: 1px solid rgba(217, 164, 65, 0.18);
    border-radius: 999px;
    padding: 0.5rem 0.9rem;
    font-weight: 700;
    font-size: 0.82rem;
    transition: all var(--duration) var(--ease-out);
}

.badge-soft:hover {
    background: rgba(217, 164, 65, 0.18);
}

.icon-pill {
    width: 3.2rem;
    height: 3.2rem;
    display: inline-grid;
    place-items: center;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(217, 164, 65, 0.15), rgba(217, 164, 65, 0.04));
    border: 1px solid rgba(217, 164, 65, 0.1);
    color: var(--gold-2);
    margin-bottom: 1.2rem;
    transition: all var(--duration) var(--ease-out);
}

.icon-pill i {
    width: 1.4rem;
    height: 1.4rem;
}

.feature-card:hover .icon-pill {
    background: linear-gradient(135deg, rgba(217, 164, 65, 0.28), rgba(217, 164, 65, 0.1));
    border-color: rgba(217, 164, 65, 0.25);
    transform: scale(1.1);
    box-shadow: 0 0 28px rgba(217, 164, 65, 0.18);
}

/* ── Menu Lines ── */
.menu-item-id {
    --_id-size: 2rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: var(--_id-size);
    height: var(--_id-size);
    padding: 0 0.35rem;
    margin-right: 0.6rem;
    border-radius: 0.55rem;
    background: linear-gradient(135deg, rgba(217, 164, 65, 0.12) 0%, rgba(217, 164, 65, 0.04) 100%);
    border: 1px solid rgba(217, 164, 65, 0.12);
    color: var(--gold-3);
    font-size: 0.7rem;
    font-weight: 800;
    font-family: 'Inter', system-ui, sans-serif;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.04em;
    vertical-align: middle;
    isolation: isolate;
    transition:
        background var(--duration) var(--ease-out),
        border-color var(--duration) var(--ease-out),
        box-shadow var(--duration) var(--ease-out),
        transform 0.3s var(--ease-spring),
        color var(--duration) var(--ease-out);
}

.menu-item-id::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(217, 164, 65, 0.25), transparent 60%);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--duration) var(--ease-out);
}

.menu-item-id::after {
    content: '#';
    margin-right: 0.06em;
    font-weight: 600;
    opacity: 0.45;
    font-size: 0.65em;
}

.menu-line:hover .menu-item-id {
    background: linear-gradient(135deg, rgba(217, 164, 65, 0.22) 0%, rgba(217, 164, 65, 0.08) 100%);
    border-color: rgba(217, 164, 65, 0.35);
    box-shadow:
        0 0 16px rgba(217, 164, 65, 0.12),
        0 0 4px rgba(217, 164, 65, 0.08) inset;
    color: var(--gold-3);
    transform: scale(1.06);
}

.menu-line:hover .menu-item-id::before {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .menu-item-id { transition: none; }
    .menu-item-id::before { transition: none; }
    .menu-line:hover .menu-item-id { transform: none; }
}

.menu-line {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1rem 1.2rem;
    height: 100%;
    background: rgba(255, 255, 255, 0.02);
    transition: all var(--duration) var(--ease-out);
}

.menu-line:hover {
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(4px);
}

/* ── Size Prices (multi-size items) ── */
.size-prices {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: right;
    white-space: nowrap;
    flex-shrink: 0;
}

.size-price {
    color: var(--gold-2);
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    font-size: 0.88rem;
}

.size-price small {
    color: var(--muted);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: capitalize;
    margin-right: 0.3rem;
}

.size-served-icon {
    width: 0.85rem;
    height: 0.85rem;
    vertical-align: -0.1em;
    margin-right: 0.2rem;
    opacity: 0.55;
}

/* ── Allergen & Additive Tags ── */
.allergen-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-top: 0.35rem;
}

.allergen-tag,
.additive-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.4rem;
    height: 1.4rem;
    padding: 0 0.3rem;
    border-radius: 0.25rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    cursor: default;
    position: relative;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    background: var(--surface-2, #1e1e2e);
    color: #f0f0f0;
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: none;
    white-space: nowrap;
    padding: 0.35rem 0.6rem;
    border-radius: 0.35rem;
    border: 1px solid var(--border, rgba(255,255,255,0.1));
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

[data-tooltip]:hover::after {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.allergen-tag {
    background: rgba(255, 183, 77, 0.15);
    color: #ffb74d;
    border: 1px solid rgba(255, 183, 77, 0.3);
}

.additive-tag {
    background: rgba(129, 199, 132, 0.15);
    color: #81c784;
    border: 1px solid rgba(129, 199, 132, 0.3);
}

/* ── Legend ── */
.menu-legend {
    position: relative;
    background:
        linear-gradient(135deg, rgba(217, 164, 65, 0.03) 0%, transparent 50%),
        rgba(255, 255, 255, 0.015);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem 2.2rem;
    overflow: hidden;
}

.menu-legend::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 2rem;
    right: 2rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.25;
    border-radius: 999px;
}

/* Legend Header */
.legend-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.6rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--border);
}

.legend-header-icon {
    flex-shrink: 0;
    width: 2.4rem;
    height: 2.4rem;
    padding: 0.45rem;
    border-radius: 0.65rem;
    background: linear-gradient(135deg, rgba(217, 164, 65, 0.15), rgba(217, 164, 65, 0.04));
    border: 1px solid rgba(217, 164, 65, 0.12);
    color: var(--gold-2);
}

.legend-subtitle {
    font-size: 0.82rem;
    color: var(--muted);
    margin: 0.15rem 0 0;
}

/* Legend Grid – 2 columns on desktop */
.legend-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
}

@media (max-width: 768px) {
    .legend-grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }
    .menu-legend {
        padding: 1.4rem 1.2rem;
    }
}

/* Legend Group */
.legend-group {
    min-width: 0;
}

.legend-group-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}

.legend-group-header i {
    width: 1.1rem;
    height: 1.1rem;
    color: var(--muted);
    opacity: 0.7;
    flex-shrink: 0;
}

.legend-group-header strong {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.legend-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.65rem 0.3rem 0.35rem;
    border-radius: 0.45rem;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.78rem;
    color: var(--text-secondary);
    transition: all var(--duration) var(--ease-out);
}

.legend-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-hover);
    transform: translateY(-1px);
}

.legend-item-label {
    white-space: nowrap;
}

/* Legend Notes */
.legend-notes {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.4rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border);
}

.legend-notes-icon {
    flex-shrink: 0;
    width: 1.1rem;
    height: 1.1rem;
    margin-top: 0.15rem;
    color: var(--muted);
    opacity: 0.5;
}

.legend-notes ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.legend-notes li {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.5;
    padding-left: 0.9rem;
    position: relative;
}

.legend-notes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.4;
}

/* ── Menu Toolbar ── */
.menu-toolbar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.2rem;
    background:
        linear-gradient(135deg, rgba(217, 164, 65, 0.025) 0%, transparent 60%),
        rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    position: relative;
    z-index: 20;
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    transition: box-shadow var(--duration) var(--ease-out);
}

.menu-toolbar::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 1.5rem;
    right: 1.5rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(217, 164, 65, 0.2), transparent);
}

/* Search */
.menu-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.menu-search-icon {
    position: absolute;
    left: 1rem;
    width: 1.1rem;
    height: 1.1rem;
    color: var(--muted);
    opacity: 0.6;
    pointer-events: none;
    transition: color var(--duration) var(--ease-out), opacity var(--duration) var(--ease-out);
}

.menu-search-input {
    width: 100%;
    padding: 0.75rem 3.5rem 0.75rem 2.8rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 500;
    font-family: inherit;
    outline: none;
    transition:
        border-color var(--duration) var(--ease-out),
        background var(--duration) var(--ease-out),
        box-shadow var(--duration) var(--ease-out);
}

.menu-search-input::placeholder {
    color: var(--muted);
    opacity: 0.5;
}

.menu-search-input:focus {
    border-color: rgba(217, 164, 65, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(217, 164, 65, 0.06), 0 0 24px rgba(217, 164, 65, 0.05);
}

.menu-search-input:focus ~ .menu-search-icon {
    color: var(--gold-2);
    opacity: 1;
}

.menu-search-kbd {
    position: absolute;
    right: 0.85rem;
    padding: 0.15rem 0.5rem;
    border-radius: 0.3rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.65rem;
    font-family: inherit;
    font-weight: 600;
    letter-spacing: 0.04em;
    pointer-events: none;
    opacity: 0.5;
    transition: opacity var(--duration) var(--ease-out);
}

.menu-search-input:focus ~ .menu-search-kbd {
    opacity: 0.8;
}

/* Filter bar */
.menu-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
}

.menu-filter-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--border);
    color: var(--muted);
    font-weight: 600;
    font-size: 0.82rem;
    font-family: inherit;
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition:
        all var(--duration) var(--ease-out);
}

.menu-filter-btn i,
.menu-filter-btn svg {
    width: 0.95rem;
    height: 0.95rem;
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity var(--duration) var(--ease-out), color var(--duration) var(--ease-out);
}

.menu-filter-btn .filter-count {
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 1.2rem;
    text-align: center;
    padding: 0.05rem 0.3rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--muted);
    transition: all var(--duration) var(--ease-out);
}

.menu-filter-btn:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-hover);
}

.menu-filter-btn:hover i,
.menu-filter-btn:hover svg { opacity: 0.9; }

.menu-filter-btn.active {
    background: linear-gradient(135deg, rgba(217, 164, 65, 0.14), rgba(217, 164, 65, 0.06));
    border-color: rgba(217, 164, 65, 0.25);
    color: var(--gold-2);
    box-shadow:
        0 0 20px rgba(217, 164, 65, 0.06),
        0 0 0 1px rgba(217, 164, 65, 0.05) inset;
}

.menu-filter-btn.active i,
.menu-filter-btn.active svg {
    opacity: 1;
    color: var(--gold-2);
}

.menu-filter-btn.active .filter-count {
    background: rgba(217, 164, 65, 0.15);
    color: var(--gold-3);
}

/* No results */
.menu-no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 3rem 1rem;
    text-align: center;
    color: var(--muted);
}

.menu-no-results[hidden] { display: none; }

.menu-no-results i {
    width: 2.5rem;
    height: 2.5rem;
    opacity: 0.3;
    margin-bottom: 0.3rem;
}

.menu-no-results p {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

/* Search highlight */
.search-match mark {
    background: rgba(217, 164, 65, 0.25);
    color: var(--gold-3);
    border-radius: 0.15rem;
    padding: 0 0.12em;
}

.menu-line.search-hidden { display: none; }

@media (max-width: 768px) {
    .menu-toolbar {
        padding: 0.45rem;
        border-radius: var(--radius-sm);
        gap: 0.35rem;
        margin-bottom: 1.5rem;
    }
    .menu-toolbar::before {
        display: none;
    }
    .menu-filter-bar {
        gap: 0.25rem;
    }
    .menu-filter-btn span:not(.filter-count) {
        display: none;
    }
    .menu-filter-btn .filter-count {
        display: none;
    }
    .menu-filter-btn {
        padding: 0.45rem 0.55rem;
        border-radius: 0.5rem;
        min-width: 2.75rem;
        min-height: 2.75rem;
        justify-content: center;
        align-items: center;
    }
    .menu-filter-btn i,
    .menu-filter-btn svg {
        width: 1rem;
        height: 1rem;
    }
    .menu-search-input {
        font-size: 0.82rem;
        padding: 0.4rem 2rem 0.4rem 2rem;
    }
    .menu-search-icon {
        width: 0.85rem;
        height: 0.85rem;
        left: 0.65rem;
    }
    .menu-search-kbd {
        display: none;
    }
}

/* ── Category Icon ── */
.category-icon {
    color: var(--gold-2);
    font-size: 0.85em;
    margin-right: 0.25rem;
    opacity: 0.85;
}

.menu-section-card[data-category] {
    transition: opacity var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}

.menu-section-card.filter-hidden {
    display: none;
}

/* ── Forms ── */
.form-card .form-control {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--border);
    color: #fff;
    border-radius: var(--radius-md);
    padding: 0.95rem 1.1rem;
    transition: all var(--duration) var(--ease-out);
    font-size: 0.95rem;
}

.form-card .form-control::placeholder {
    color: var(--muted);
    opacity: 0.6;
}

.form-card .form-control:focus {
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(217, 164, 65, 0.35);
    color: #fff;
    box-shadow:
        0 0 0 3px rgba(217, 164, 65, 0.08),
        0 0 30px rgba(217, 164, 65, 0.06);
}

.form-card .form-label {
    font-weight: 700;
    color: var(--text-secondary);
    font-size: 0.88rem;
    letter-spacing: 0.02em;
}

/* ── About ── */
.about-image {
    min-height: 520px;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border);
    background: url('../img/about.jpg') center/cover no-repeat;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: all var(--duration-slow) var(--ease-out);
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 11, 0.4));
}

.about-image:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow), var(--shadow-glow);
}

/* ── Room Feature Image ── */
.room-feature-image {
    min-height: 480px;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border);
    background: center/cover no-repeat;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: all var(--duration-slow) var(--ease-out);
}

.room-feature-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 11, 0.4));
}

.room-feature-image:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow), var(--shadow-glow);
}

.check-list {
    display: grid;
    gap: 0.75rem;
}

.check-list div {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    color: var(--text-secondary);
    font-weight: 600;
    padding: 0.65rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.02);
    transition: all var(--duration) var(--ease-out);
}

.check-list div:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border);
    transform: translateX(4px);
}

.check-list div:hover i {
    transform: scale(1.15);
    filter: drop-shadow(0 0 6px rgba(217, 164, 65, 0.3));
}

.check-list i {
    flex-shrink: 0;
    width: 1.2rem;
    height: 1.2rem;
    color: var(--gold-2);
    transition: all var(--duration) var(--ease-spring);
}

/* ── CTA ── */
.cta-band {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    box-shadow: var(--shadow);
    background:
        radial-gradient(ellipse 80% 60% at 20% 100%, rgba(217, 164, 65, 0.12), transparent),
        linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(217, 164, 65, 0.2), transparent 50%, rgba(217, 164, 65, 0.08));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* ── Gallery ── */
.gallery-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all var(--duration-slow) var(--ease-out);
    cursor: pointer;
}

.gallery-image:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow), 0 0 40px rgba(217, 164, 65, 0.08);
    border-color: var(--border-hover);
}

/* ── Contact & Legal ── */
.contact-list a,
.legal-content a {
    color: var(--text);
    text-decoration: none;
    transition: color var(--duration) var(--ease-out);
}

.contact-list a:hover,
.legal-content a:hover {
    color: var(--gold-2);
}

/* ================================================================
   PRINT – Speisekarte
   ================================================================ */
@media print {
    /* ── Reset dark theme for paper ── */
    :root {
        --bg: #fff;
        --surface: #fff;
        --surface-2: #fff;
        --text: #111;
        --text-secondary: #333;
        --muted: #666;
        --gold: #b8860b;
        --gold-2: #996515;
        --border: #ddd;
        --border-hover: #ccc;
    }

    * {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
        transition: none !important;
        animation: none !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        filter: none !important;
        transform: none !important;
        will-change: auto !important;
        -webkit-text-fill-color: inherit !important;
    }

    *::before,
    *::after {
        content: none !important;
        display: none !important;
    }

    html, body {
        background: #fff !important;
        color: #111 !important;
        overflow: visible !important;
        height: auto !important;
        width: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        position: static !important;
    }

    body {
        font-size: 10pt;
        line-height: 1.4;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin: 0 !important;
    }

    /* Reset all content containers */
    main, section, .container, .row,
    .menu-section-card, .menu-legend,
    .hero, .page-hero,
    .col-lg-6, article {
        overflow: visible !important;
        background: transparent !important;
        position: static !important;
        float: none !important;
        display: block !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        border: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .row, .row.g-3 {
        display: flex !important;
    }

    /* ── Hide interactive / non-print elements ── */
    .navbar,
    .floating-actions,
    .consent-banner,
    .menu-toolbar,
    .menu-no-results,
    .menu-search-wrap,
    .menu-filter-bar,
    .page-hero .lead,
    .scroll-progress,
    footer,
    script,
    .btn,
    .badge-soft {
        display: none !important;
    }

    /* ── Page hero: compact header ── */
    .hero,
    .page-hero {
        padding: 0 !important;
        margin-bottom: 0.3cm;
        min-height: 0 !important;
    }

    .page-hero .section-kicker {
        font-size: 9pt;
        color: #888;
        margin-bottom: 0.1cm;
    }

    .page-hero .section-title {
        font-size: 16pt;
        color: #111;
        margin: 0;
    }

    .page-hero .accent {
        color: #996515 !important;
        -webkit-text-fill-color: #996515 !important;
        background: none !important;
        -webkit-background-clip: initial !important;
        background-clip: initial !important;
    }

    /* ── Category sections ── */
    .menu-section-card {
        border: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        margin-bottom: 0.4cm !important;
    }

    .menu-section-card .d-flex.mb-4 {
        margin-bottom: 0.15cm !important;
        border-bottom: 1.5pt solid #996515;
        padding-bottom: 0.1cm;
    }

    .menu-section-card h2 {
        font-size: 12pt;
        color: #111;
    }

    .category-icon {
        display: none;
    }

    /* ── Menu items ── */
    .menu-line {
        border: none !important;
        border-bottom: 0.5pt solid #ddd !important;
        border-radius: 0 !important;
        padding: 0.15cm 0 !important;
        background: none !important;
        page-break-inside: avoid;
        break-inside: avoid;
    }

    .menu-line:hover {
        transform: none;
    }

    .menu-line h3 {
        font-size: 10pt;
        font-weight: 700;
        color: #111;
    }

    .menu-line p {
        font-size: 8.5pt;
        color: #555;
        margin: 0;
    }

    .menu-line strong {
        font-size: 10pt;
        color: #111;
        white-space: nowrap;
    }

    .menu-item-id {
        font-size: 8pt;
        color: #888;
        background: none !important;
        border: none !important;
        padding: 0 !important;
        font-weight: 600;
    }

    .menu-item-id::before,
    .menu-item-id::after {
        display: none;
    }

    /* ── Size prices ── */
    .size-prices {
        font-size: 9pt;
    }

    .size-price {
        color: #111;
    }

    .size-price small {
        color: #666;
    }

    /* ── Allergen / Additive tags ── */
    .allergen-tag,
    .additive-tag {
        font-size: 7pt;
        padding: 0.5pt 3pt;
        border-radius: 2pt;
        font-weight: 700;
    }

    .allergen-tag {
        background: #fff3cd !important;
        color: #856404 !important;
        border: 0.5pt solid #c9a227 !important;
    }

    .additive-tag {
        background: #d4edda !important;
        color: #2d6a4f !important;
        border: 0.5pt solid #6fbf73 !important;
    }

    /* ── Grid: two-column layout ── */
    .row.g-3 {
        display: flex !important;
        flex-wrap: wrap !important;
        margin: 0 !important;
        gap: 0 !important;
    }

    .col-lg-6 {
        display: block !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding: 0 0.15cm !important;
        width: 50% !important;
    }

    /* ── Legend ── */
    .menu-legend {
        background: none !important;
        border: 1pt solid #ccc !important;
        border-radius: 0 !important;
        padding: 0.3cm !important;
        margin-top: 0.4cm !important;
        overflow: visible !important;
        page-break-before: auto;
    }

    .menu-legend::before {
        display: none !important;
    }

    .legend-header {
        margin-bottom: 0.2cm;
        padding-bottom: 0.1cm;
        border-bottom: 0.5pt solid #ccc;
    }

    .legend-header-icon {
        display: none;
    }

    .legend-header h2 {
        font-size: 11pt;
        color: #111;
    }

    .legend-subtitle {
        font-size: 8pt;
        color: #666;
    }

    .legend-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0.3cm;
    }

    .legend-group-header i {
        display: none;
    }

    .legend-group-header strong {
        font-size: 8.5pt;
        color: #333;
    }

    .legend-items {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.15cm;
    }

    .legend-item {
        display: inline-flex !important;
        align-items: center;
        gap: 0.1cm;
        background: none !important;
        border: none !important;
        padding: 1pt 0;
        font-size: 7.5pt;
        color: #333 !important;
    }

    .legend-item:hover {
        transform: none;
    }

    .legend-item-label {
        color: #333;
    }

    .legend-notes {
        margin-top: 0.2cm;
        padding-top: 0.15cm;
        border-top: 0.5pt solid #ccc;
    }

    .legend-notes-icon {
        display: none;
    }

    .legend-notes li {
        font-size: 7.5pt;
        color: #555;
        list-style: disc;
        margin-left: 1em;
    }

    .legend-notes li::before {
        display: none !important;
        opacity: 1;
    }

    /* ── Sections spacing ── */
    section {
        padding: 0 !important;
    }

    .container {
        max-width: 100% !important;
        padding: 0 0.5cm !important;
    }

    /* ── Force show filtered items ── */
    .menu-section-card.filter-hidden,
    .menu-line.search-hidden {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* ── Page margins ── */
    @page {
        size: A4;
        margin: 1.5cm 1.2cm;
    }
}

.legal-content h2,
.legal-content h3 {
    color: #fff;
    margin-top: 2.5rem;
}

.legal-content p,
.legal-content li {
    color: var(--muted);
    line-height: 1.85;
}

/* ── License Page ── */
.license-group {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1.6rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(6px);
    transition: all var(--duration) var(--ease-out);
}

.license-group:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-sm);
}

.license-group-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.license-group-icon {
    width: 2rem;
    height: 2rem;
    color: var(--gold);
    flex-shrink: 0;
}

.license-group-sub {
    color: var(--muted);
    font-size: 0.85rem;
    margin: 0.15rem 0 0;
}

.license-item {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.15rem 1.25rem;
    height: 100%;
    transition: all var(--duration) var(--ease-out);
}

.license-item:hover {
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

.license-item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.license-item-head strong {
    color: #fff;
    font-size: 0.95rem;
}

.license-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: var(--gold-soft);
    color: var(--gold-2);
    border: 1px solid rgba(217, 164, 65, 0.2);
    white-space: nowrap;
    flex-shrink: 0;
}

.license-badge-info {
    background: rgba(96, 165, 250, 0.1);
    color: #60a5fa;
    border-color: rgba(96, 165, 250, 0.2);
}

.license-item p {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0 0 0.6rem;
}

.license-item a {
    color: var(--muted);
    transition: color var(--duration) var(--ease-out);
}

.license-item a:hover {
    color: var(--gold-2);
}

.license-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--duration) var(--ease-out);
}

.license-link:hover {
    color: var(--gold-2);
}

.license-link i {
    width: 0.85rem;
    height: 0.85rem;
}

.license-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius-md);
    padding: 1.15rem 1.25rem;
    margin-top: 1rem;
}

.license-notice > i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.license-notice p {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.7;
    margin: 0;
}

/* ── Hours & Map ── */
.hours-card {
    position: relative;
    overflow: hidden;
}

.hours-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(217, 164, 65, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hours-list .list-group-item {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
    padding: 0.8rem 0;
    transition: all var(--duration) var(--ease-out);
}

.hours-list .list-group-item:hover {
    padding-left: 0.3rem;
    border-color: var(--border-hover);
}

.map-frame {
    width: 100%;
    min-height: 320px;
    border: 0;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.map-placeholder {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ── Cookie Banner ── */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1080;
    padding: 1rem 0;
    animation: slideUp 0.5s var(--ease-out);
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-banner__inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 1.1rem 1.4rem;
    border-radius: var(--radius-xl);
    background: rgba(18, 19, 22, 0.96);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    box-shadow: 0 -8px 60px rgba(0, 0, 0, 0.5);
}

/* ── Alerts ── */
.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    border-color: rgba(220, 53, 69, 0.2);
    color: #f5c6cb;
    border-radius: var(--radius-md);
}

.alert-success {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.2);
    color: #a3f0c0;
    border-radius: var(--radius-md);
}

/* ── Footer ── */
footer {
    border-top: none;
    background: var(--surface);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), rgba(217, 164, 65, 0.1), var(--border), transparent);
}

.footer-top {
    padding: 4rem 0 3rem;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 36px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    margin-bottom: 0.75rem;
}

.footer-tagline {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: var(--muted);
    transition: all var(--duration) var(--ease-out);
}

.footer-social-link i,
.footer-social-link svg {
    width: 1.05rem;
    height: 1.05rem;
}

.footer-social-link:hover {
    color: var(--gold-2);
    background: rgba(217, 164, 65, 0.1);
    border-color: rgba(217, 164, 65, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(217, 164, 65, 0.1);
}

.footer-heading {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text);
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1.5rem;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: all var(--duration) var(--ease-out);
}

.footer-nav a i,
.footer-nav a svg {
    width: 0.85rem;
    height: 0.85rem;
    opacity: 0.5;
    flex-shrink: 0;
    transition: all var(--duration) var(--ease-out);
}

.footer-nav a:hover {
    color: var(--gold-2);
    transform: translateX(3px);
}

.footer-nav a:hover i,
.footer-nav a:hover svg {
    opacity: 1;
    color: var(--gold-2);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.88rem;
    color: var(--muted);
}

.footer-contact li i,
.footer-contact li svg {
    width: 1rem;
    height: 1rem;
    color: var(--gold);
    opacity: 0.6;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.footer-contact a {
    color: var(--muted);
    text-decoration: none;
    transition: color var(--duration) var(--ease-out);
}

.footer-contact a:hover {
    color: var(--gold-2);
}

.footer-bottom {
    padding: 1.2rem 0;
    border-top: 1px solid var(--border);
}

.footer-copy {
    color: var(--muted);
    font-size: 0.8rem;
    margin: 0;
    opacity: 0.7;
}

.footer-back-top {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    transition: all var(--duration) var(--ease-out);
}

.footer-back-top i,
.footer-back-top svg {
    width: 0.85rem;
    height: 0.85rem;
}

.footer-back-top:hover {
    color: var(--gold-2);
    border-color: rgba(217, 164, 65, 0.25);
    background: rgba(217, 164, 65, 0.06);
    transform: translateY(-2px);
}

@media (max-width: 767.98px) {
    .footer-top {
        padding: 2.5rem 0 2rem;
    }
    .footer-heading {
        margin-bottom: 0.9rem;
    }
}

/* ── Floating Actions ── */
.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.floating-action {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all var(--duration) var(--ease-spring);
    font-size: 1.2rem;
}

.floating-action:hover {
    transform: scale(1.12) translateY(-2px);
}

.floating-action.btn-whatsapp {
    animation: floatPulse 3s ease-in-out infinite;
}

@keyframes floatPulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.3); }
    50% { box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 8px rgba(37, 211, 102, 0); }
}

/* ── Animations (screen only – print sees everything at full opacity) ── */
@media screen {
    .reveal-up {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity var(--duration-slow) var(--ease-out), transform var(--duration-slow) var(--ease-out);
    }

    .reveal-up.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Stagger children */
    .row > [class*="col-"] .reveal-up:nth-child(1) { transition-delay: 0s; }
    .row > [class*="col-"]:nth-child(2) .reveal-up { transition-delay: 0.1s; }
    .row > [class*="col-"]:nth-child(3) .reveal-up { transition-delay: 0.2s; }
    .row > [class*="col-"]:nth-child(4) .reveal-up { transition-delay: 0.25s; }
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .hero-home {
        min-height: auto;
        padding: 70px 0 90px;
    }

    .about-image {
        min-height: 360px;
    }

    .cookie-banner__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-band {
        padding: 2rem;
    }

    section {
        padding: 80px 0;
    }
}

@media (max-width: 767.98px) {
    .menu-line,
    .showcase-item {
        flex-direction: column;
    }

    .gallery-image {
        height: 240px;
    }
}

@media (max-width: 575.98px) {
    .hero-meta {
        grid-template-columns: 1fr;
    }

    .gallery-image {
        height: 220px;
    }

    .cta-band {
        padding: 1.5rem;
    }

    section {
        padding: 60px 0;
    }
}

/* ── Collapsible Info Boxes ── */
[data-bs-toggle="collapse"] > [data-lucide="chevron-down"] {
    transition: transform .3s ease;
}
[data-bs-toggle="collapse"].collapsed > [data-lucide="chevron-down"] {
    transform: rotate(-90deg);
}
