:root {
    --color-bg: #0f0e0d;
    --color-bg-soft: #1a1816;
    --color-bg-card: #221f1c;
    --color-gold: #c9a84c;
    --color-gold-light: #e8d5a3;
    --color-burgundy: #6b1c2a;
    --color-cream: #f5f0e8;
    --color-text: #f5f0e8;
    --color-text-muted: #a89f94;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', system-ui, sans-serif;
    --header-height: 80px;
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.row > [class*="col-"] {
    min-width: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

main {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-gold-light); }

/* Header */
.site-header .navbar {
    background: rgba(15, 14, 13, 0.92);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    transition: background var(--transition);
}

.site-header .navbar.scrolled {
    background: rgba(15, 14, 13, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand,
.brand-logo-link {
    display: flex;
    align-items: center;
    color: var(--color-cream) !important;
    padding: 0;
    margin-right: 1rem;
    flex-shrink: 0;
    text-decoration: none;
}

.brand-logo-link:hover {
    color: var(--color-cream) !important;
}

.brand-logo-shell {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(165deg, #faf7f1 0%, #f3ebe0 48%, #e8dfd0 100%);
    border: 1px solid rgba(201, 168, 76, 0.38);
    border-radius: 12px;
    padding: 0.5rem 0.7rem;
    box-shadow:
        0 4px 22px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.brand-logo-link:hover .brand-logo-shell {
    transform: translateY(-1px);
    border-color: rgba(201, 168, 76, 0.55);
    box-shadow:
        0 8px 28px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.brand-logo-img {
    display: block;
    height: 54px;
    width: auto;
    max-width: 76px;
    object-fit: contain;
}

@media (max-width: 991px) {
    .brand-logo-shell {
        border-radius: 10px;
        padding: 0.35rem 0.55rem;
    }

    .brand-logo-img {
        height: 40px;
        max-width: 58px;
    }
}

@media (max-width: 575px) {
    .brand-logo-shell {
        padding: 0.3rem 0.45rem;
    }

    .brand-logo-img {
        height: 36px;
        max-width: 52px;
    }
}

@media (min-width: 1200px) {
    .brand-logo-img {
        height: 58px;
        max-width: 82px;
    }
}

.brand-mark {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gold), #8b6914);
    color: var(--color-bg);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 4px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text strong {
    font-family: var(--font-display);
    font-size: 1.25rem;
    letter-spacing: 0.02em;
}

.brand-text small {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.nav-link {
    color: var(--color-cream) !important;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: all var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after { width: 60%; }

.navbar-toggler {
    border-color: rgba(201, 168, 76, 0.3);
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* Header layout — lang always visible on toolbar */
.site-nav-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
}

.site-nav-tools {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    order: 2;
}

.site-nav-inner > .navbar-brand {
    order: 1;
}

.site-nav-inner > .navbar-collapse {
    order: 3;
    flex-basis: 100%;
    width: 100%;
}

.lang-switcher--toolbar {
    margin-left: 0;
    flex-shrink: 0;
    background: rgba(201, 168, 76, 0.08);
}

.site-nav-reserve-mobile {
    padding: 0.45rem 0.85rem !important;
    font-size: 0.68rem !important;
    white-space: nowrap;
}

@media (min-width: 992px) {
    .site-nav-inner {
        flex-wrap: nowrap;
    }

    .site-nav-tools {
        order: 3;
        margin-left: 0;
    }

    .site-nav-inner > .navbar-collapse {
        order: 2;
        flex-basis: auto;
        width: auto;
    }

    .lang-switcher--toolbar {
        margin-right: 0.25rem;
    }
}

@media (max-width: 991.98px) {
    .site-header .navbar {
        padding: 0.65rem 0;
    }

    .site-nav-inner > .navbar-collapse {
        margin-top: 0.35rem;
        padding: 0.85rem 0 1rem;
        border-top: 1px solid rgba(201, 168, 76, 0.15);
        background: rgba(15, 14, 13, 0.98);
        border-radius: 0 0 12px 12px;
        max-height: calc(100vh - var(--header-height) - 1rem);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .site-header .navbar-nav {
        gap: 0.15rem;
    }

    .site-header .nav-link {
        padding: 0.75rem 0.5rem !important;
        border-radius: 6px;
        text-align: left;
    }

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

    .site-header .nav-link:hover,
    .site-header .nav-link:focus {
        background: rgba(201, 168, 76, 0.08);
    }

    body.nav-open {
        overflow: hidden;
        touch-action: none;
    }
}

/* Buttons */
.btn-gold {
    background: linear-gradient(135deg, var(--color-gold), #a08030);
    color: var(--color-bg) !important;
    border: none;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 0.75rem 1.75rem;
    border-radius: 2px;
    transition: all var(--transition);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3);
    color: var(--color-bg) !important;
}

.btn-wiggle {
    animation: btnWiggle 0.5s ease;
}

@keyframes btnWiggle {
    0%, 100% { transform: translateY(-2px) rotate(0); }
    25% { transform: translateY(-2px) rotate(-2deg); }
    75% { transform: translateY(-2px) rotate(2deg); }
}

.btn-outline-gold {
    border: 1px solid var(--color-gold);
    color: var(--color-gold) !important;
    background: transparent;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 0.75rem 1.75rem;
    border-radius: 2px;
    transition: all var(--transition);
}

.btn-outline-gold:hover {
    background: var(--color-gold);
    color: var(--color-bg) !important;
}

.btn-outline-light {
    border-color: rgba(245, 240, 232, 0.5);
    color: var(--color-cream) !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

/* Hero */
.hero-section {
    position: relative;
    min-height: 58vh;
    max-height: 620px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--color-bg) center/cover no-repeat;
    transform: scale(1.06);
    transform-origin: center center;
    animation: kenBurns 18s ease-in-out infinite alternate;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(15, 14, 13, 0.88) 0%, rgba(107, 28, 42, 0.35) 45%, rgba(15, 14, 13, 0.75) 100%);
    z-index: 1;
}

.hero-sparkles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 8px var(--color-gold);
    animation: sparkleFloat 6s ease-in-out infinite;
}

.sparkle:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 35%; left: 75%; animation-delay: 1.2s; width: 3px; height: 3px; }
.sparkle:nth-child(3) { top: 60%; left: 25%; animation-delay: 2.4s; }
.sparkle:nth-child(4) { top: 45%; left: 55%; animation-delay: 3.6s; width: 5px; height: 5px; }
.sparkle:nth-child(5) { top: 25%; left: 88%; animation-delay: 4.8s; }

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: calc(var(--header-height) + 2rem) 0 3rem;
}

.hero-row {
    min-height: auto;
}

.hero-eyebrow {
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 600;
    line-height: 1.12;
    margin-bottom: 1rem;
    color: var(--color-cream);
}

.hero-text {
    font-size: 1rem;
    color: var(--color-text-muted);
    max-width: 480px;
    line-height: 1.65;
}

/* Hero entrance animations */
.hero-animate .anim-item {
    opacity: 0;
    transform: translateY(24px);
    animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-animate .anim-item:nth-child(1) { animation-delay: 0.15s; }
.hero-animate .anim-item:nth-child(2) { animation-delay: 0.35s; }
.hero-animate .anim-item:nth-child(3) { animation-delay: 0.55s; }
.hero-animate .anim-item:nth-child(4) { animation-delay: 0.75s; }

.btn-pulse {
    animation: btnGlow 2.5s ease-in-out infinite;
}

.scroll-indicator {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-gold);
    font-size: 1.25rem;
    animation: bounce 2s infinite;
    z-index: 3;
    opacity: 0.8;
}

@keyframes kenBurns {
    0% { transform: scale(1.04); }
    100% { transform: scale(1.08); }
}

@keyframes heroFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes sparkleFloat {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
    30% { opacity: 0.9; transform: translateY(-12px) scale(1); }
    60% { opacity: 0.4; transform: translateY(-24px) scale(0.8); }
}

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25); }
    50% { box-shadow: 0 6px 28px rgba(201, 168, 76, 0.45); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* Sections */
.section-padding {
    padding: 6rem 0;
}

.bg-dark-section {
    background: var(--color-bg-soft);
}

.section-label {
    display: inline-block;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-label::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible .section-label::after,
.label-shine::after {
    width: 48px;
}

.label-shine {
    animation: labelShimmer 3s ease-in-out infinite;
}

@keyframes labelShimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.75; }
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--color-cream);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    max-width: 600px;
}

.text-center .section-subtitle,
.page-hero .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.text-muted-soft { color: var(--color-text-muted); }

/* Image frame */
.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 168, 76, 0.2);
    z-index: 1;
    pointer-events: none;
    margin: 12px;
}

.image-frame img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.image-float {
    animation: gentleFloat 5s ease-in-out infinite;
}

.image-float:hover {
    animation-play-state: paused;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Dish cards */
.dish-card {
    background: var(--color-bg-card);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.08);
    transition: all var(--transition);
    height: 100%;
}

.dish-card:hover,
.dish-card-anim:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(201, 168, 76, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.dish-card-anim .dish-image {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.dish-card-anim:hover .dish-image {
    transform: scale(1.06);
}

.dish-image {
    height: 220px;
    background: var(--color-bg-soft) center/cover no-repeat;
}

.dish-body {
    padding: 1.5rem;
}

.dish-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
}

.dish-body h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin: 0.5rem 0;
    color: var(--color-cream);
}

.dish-body p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.dish-price {
    font-weight: 600;
    color: var(--color-gold);
    font-size: 1.1rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/3;
    display: block;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(107, 28, 42, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
    color: var(--color-cream);
    font-size: 2rem;
}

.gallery-item:hover img { transform: scale(1.08) rotate(1deg); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-item:hover .gallery-overlay i {
    animation: zoomPop 0.5s ease;
}

@keyframes zoomPop {
    0% { transform: scale(0.5); opacity: 0; }
    70% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox[hidden] { display: none !important; }

.lightbox img {
    max-height: 80vh;
    max-width: 90vw;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--color-cream);
    font-size: 2.5rem;
    cursor: pointer;
}

#lightbox-caption {
    color: var(--color-text-muted);
    margin-top: 1rem;
    text-align: center;
}

/* Testimonials */
.testimonial-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 4px;
    padding: 2rem;
    height: 100%;
    margin: 0;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-anim:hover {
    transform: translateY(-4px) rotate(-0.5deg);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.testimonial-anim .stars i {
    display: inline-block;
    animation: starTwinkle 2s ease-in-out infinite;
}

.testimonial-anim .stars i:nth-child(2) { animation-delay: 0.2s; }
.testimonial-anim .stars i:nth-child(3) { animation-delay: 0.4s; }
.testimonial-anim .stars i:nth-child(4) { animation-delay: 0.6s; }
.testimonial-anim .stars i:nth-child(5) { animation-delay: 0.8s; }

@keyframes starTwinkle {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.85; }
}

.badge-glow {
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 rgba(201, 168, 76, 0); }
    50% { box-shadow: 0 0 20px rgba(201, 168, 76, 0.15); }
}

.testimonial-card .stars {
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.testimonial-card footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.source-badge {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: var(--color-bg-card);
    border-radius: 4px;
    border: 1px solid rgba(201, 168, 76, 0.15);
}

.google-badge strong {
    color: var(--color-gold);
    font-size: 1.25rem;
}

/* Contact */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: var(--color-text-muted);
}

.contact-list i {
    color: var(--color-gold);
    font-size: 1.25rem;
    margin-top: 0.2rem;
}

.contact-list-large li {
    margin-bottom: 2rem;
}

.contact-list-large strong {
    display: block;
    color: var(--color-cream);
    margin-bottom: 0.25rem;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 4px;
    padding: 1.5rem;
}

.contact-form-card .form-label {
    color: var(--color-cream);
    font-size: 0.9rem;
}

.contact-form-card .form-control {
    background: rgba(0, 0, 0, 0.25);
    border-color: rgba(201, 168, 76, 0.25);
    color: var(--color-cream);
}

.contact-privacy-check .form-check-label {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-privacy-check .form-check-label a {
    color: var(--color-gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-privacy-check .form-check-input {
    border-color: rgba(201, 168, 76, 0.45);
    background-color: transparent;
}

.contact-privacy-check .form-check-input:checked {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
}

.contact-privacy-check .form-check-input:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 0.2rem rgba(201, 168, 76, 0.2);
}

.contact-form-card .form-control:focus {
    background: rgba(0, 0, 0, 0.35);
    border-color: var(--color-gold);
    color: var(--color-cream);
    box-shadow: 0 0 0 0.2rem rgba(201, 168, 76, 0.15);
}

.map-container {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.15);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

.map-container-large iframe { height: 450px; }

/* Reservation */
.reservation-cta {
    background: linear-gradient(135deg, var(--color-burgundy), #4a1220);
}

.reservation-form {
    background: var(--color-bg-card);
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.reservation-form .form-label {
    color: var(--color-cream);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.reservation-form .form-control,
.reservation-form .form-select {
    background: var(--color-bg);
    border: 1px solid rgba(201, 168, 76, 0.2);
    color: var(--color-cream);
    padding: 0.75rem 1rem;
    border-radius: 2px;
}

.reservation-form .form-control:focus,
.reservation-form .form-select:focus {
    background: var(--color-bg);
    border-color: var(--color-gold);
    color: var(--color-cream);
    box-shadow: 0 0 0 0.2rem rgba(201, 168, 76, 0.15);
}

/* Menu page */
.page-hero {
    padding: 10rem 0 4rem;
    background: linear-gradient(180deg, var(--color-bg-soft) 0%, var(--color-bg) 100%);
    text-align: center;
}

.menu-category {
    margin-bottom: 4rem;
}

.menu-category-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-gold);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-item h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin: 0 0 0.25rem;
    color: var(--color-cream);
}

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

.menu-item-price {
    font-weight: 600;
    color: var(--color-gold);
    white-space: nowrap;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-content h3 {
    font-family: var(--font-display);
    color: var(--color-gold);
    margin-top: 2rem;
}

.page-content ul {
    color: var(--color-text-muted);
}

.page-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-cream);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.page-content h3 {
    font-size: 1.1rem;
    color: var(--color-gold);
    margin-top: 1.5rem;
}

.page-content p,
.page-content li {
    color: var(--color-text-muted);
}

.page-content a {
    color: var(--color-gold);
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background: var(--color-bg-soft);
    padding: 4rem 0 0;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.site-footer h5 {
    font-family: var(--font-display);
    color: var(--color-cream);
    margin-bottom: 1.25rem;
}

.footer-grid {
    align-items: flex-start;
}

.footer-col {
    min-width: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a { color: var(--color-text-muted); }
.footer-links a:hover { color: var(--color-gold); }

.google-rating .rating-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
    display: block;
}

.google-rating .rating-stars {
    color: var(--color-gold);
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 100px;
    margin-left: 0.5rem;
}

.lang-switcher-link {
    color: var(--color-text-muted) !important;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lang-switcher-link.is-active,
.lang-switcher-link:hover {
    color: var(--color-gold) !important;
}

.lang-switcher-sep {
    color: rgba(201, 168, 76, 0.35);
    font-size: 0.75rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-muted);
    font-size: 0.85rem;
    text-align: center;
}

.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-credit a {
    color: var(--color-gold);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.footer-credit a:hover {
    color: var(--color-gold-light);
}

/* Cookie consent */
.cookie-consent {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 9998;
    padding: 1rem;
    pointer-events: none;
    animation: cookieSlideUp 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.cookie-consent.is-hiding {
    animation: cookieSlideDown 0.4s ease forwards;
}

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

@keyframes cookieSlideDown {
    to { transform: translateY(110%); opacity: 0; }
}

body.cookie-banner-open {
    padding-bottom: 0;
}

.cookie-consent-card {
    pointer-events: auto;
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    gap: 1.15rem;
    align-items: flex-start;
    padding: 1.35rem 1.5rem;
    background: linear-gradient(145deg, rgba(34, 31, 28, 0.98), rgba(15, 14, 13, 0.98));
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 16px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(201, 168, 76, 0.08) inset;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.cookie-consent-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 1.45rem;
    color: var(--color-gold);
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.25);
    animation: cookieIconPulse 2.5s ease-in-out infinite;
}

@keyframes cookieIconPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.2); }
    50% { transform: scale(1.05); box-shadow: 0 0 20px rgba(201, 168, 76, 0.25); }
}

.cookie-consent-body {
    flex: 1;
    min-width: 0;
}

.cookie-consent-badge {
    display: inline-block;
    margin: 0 0 0.35rem;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.25);
    color: var(--color-gold);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cookie-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--color-cream);
    margin: 0 0 0.5rem;
    line-height: 1.2;
}

.cookie-consent-text {
    margin: 0 0 1rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.cookie-consent-text a {
    color: var(--color-gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-consent-text a:hover {
    color: var(--color-gold-light);
}

.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
}

.cookie-btn-accept {
    box-shadow: 0 4px 18px rgba(201, 168, 76, 0.28);
}

.cookie-btn-reject {
    background: transparent !important;
}

.cookie-link-more {
    display: inline-flex;
    align-items: center;
    color: var(--color-text-muted);
    font-size: 0.82rem;
    text-decoration: none;
    padding: 0.35rem 0.5rem;
    border-radius: 6px;
    transition: color 0.25s ease, background 0.25s ease;
}

.cookie-link-more:hover {
    color: var(--color-gold);
    background: rgba(201, 168, 76, 0.08);
}

/* Footer mobile collapse */
.footer-title-static {
    font-family: var(--font-display);
    color: var(--color-cream);
    margin-bottom: 1rem;
}

.footer-mobile-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 0;
    margin: 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: transparent;
    color: var(--color-cream);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.footer-mobile-toggle i {
    color: var(--color-gold);
    font-size: 0.95rem;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-mobile-toggle:not(.collapsed) i {
    transform: rotate(180deg);
}

.footer-collapse-panel {
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .site-footer {
        padding-top: 2.5rem;
    }

    .footer-col--brand {
        padding-bottom: 0.5rem;
        border-bottom: 1px solid rgba(201, 168, 76, 0.12);
        margin-bottom: 0.25rem;
    }

    .footer-collapse-panel {
        padding: 0 0 1rem;
    }
}

@media (min-width: 992px) {
    .footer-col .footer-collapse-panel.collapse {
        display: block !important;
        height: auto !important;
        visibility: visible !important;
    }
}

@media (max-width: 576px) {
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent {
        padding: 0.75rem;
    }

    .cookie-consent-card {
        flex-direction: column;
        padding: 1.15rem 1.1rem;
        border-radius: 14px;
    }

    .cookie-consent-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .cookie-title {
        font-size: 1.2rem;
    }

    .cookie-consent-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .cookie-consent-actions .btn,
    .cookie-link-more {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0s);
}

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

.reveal-left {
    transform: translateX(-40px);
}

.reveal-left.visible {
    transform: translateX(0);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-right.visible {
    transform: translateX(0);
}

.reveal-scale {
    transform: translateY(24px) scale(0.96);
}

.reveal-scale.visible {
    transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
    .hero-bg,
    .sparkle,
    .hero-animate .anim-item,
    .btn-pulse,
    .image-float,
    .badge-glow,
    .testimonial-anim .stars i,
    .scroll-indicator {
        animation: none !important;
    }

    .hero-animate .anim-item {
        opacity: 1;
        transform: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Home — Para Picar */
.home-para-picar {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-soft) 100%);
}

.home-para-picar-visual {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

.home-para-picar-main {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(201, 168, 76, 0.15);
    aspect-ratio: 5 / 4;
    object-fit: cover;
}

.home-para-picar-accent {
    position: absolute;
    right: 0.75rem;
    bottom: 0.75rem;
    width: 42%;
    max-width: 180px;
    border-radius: 10px;
    border: 3px solid var(--color-bg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    object-fit: cover;
}

.home-para-picar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.home-para-picar-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 10px;
    padding: 1.15rem 1.25rem;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.home-para-picar-card:hover {
    border-color: rgba(201, 168, 76, 0.32);
    transform: translateY(-3px);
}

.home-para-picar-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.home-para-picar-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--color-cream);
    margin: 0;
    line-height: 1.3;
}

.home-para-picar-star {
    color: var(--color-gold);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.home-para-picar-price {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--color-gold);
}

@media (max-width: 991px) {
    .home-para-picar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-para-picar-accent {
        right: 0.5rem;
        bottom: 0.5rem;
        width: 38%;
        max-width: 140px;
    }
}

@media (max-width: 575px) {
    .home-para-picar-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .section-padding { padding: 4rem 0; }
    .menu-item { flex-direction: column; gap: 0.5rem; }
    .reservation-form { padding: 1.5rem; }
    .hero-section {
        min-height: 52vh;
        max-height: 520px;
    }

    .hero-bg {
        animation: none;
        transform: scale(1.05);
    }

    .image-float {
        animation: none;
    }

    .reveal-left,
    .reveal-right {
        transform: translateY(24px);
    }

    .reveal-left.visible,
    .reveal-right.visible {
        transform: translateY(0);
    }

    .row {
        --bs-gutter-x: 1.25rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-section {
        min-height: 48vh;
        max-height: 460px;
    }
    .hero-title { font-size: 1.85rem; }
    .hero-content { padding-bottom: 2.5rem; }
    .gallery-grid { grid-template-columns: 1fr; }

    .home-para-picar-accent {
        right: 0.5rem;
        bottom: 0.5rem;
        width: 36%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
    }
}
