/* ============================================
   DON INACIO — DESIGN SYSTEM
   Luxury Portuguese Restaurant
   ============================================ */

/* Fuentes cargadas desde index.html con media="print" onload para evitar bloqueo de render */

/* ---- CSS VARIABLES ---- */
:root {
    --gold: #c8962a;
    --gold-light: #e8b84b;
    --gold-pale: #f5e6c0;
    --cream: #faf6ee;
    --dark: #1a1208;
    --dark-mid: #2c1e0a;
    --text: #3a2e1a;
    --text-muted: #7a6a50;
    --white: #ffffff;
    --nav-h: 64px;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---- RESET ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
    width: 100%;
}

body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

/* ============================================
   PAGE LOADER
   ============================================ */
#page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #0d0d0d;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease;
}

#page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loader-logo {
    max-width: 180px;
    height: auto;
    opacity: 0;
    animation: loaderLogoIn 0.6s ease 0.2s forwards;
    filter: drop-shadow(0 4px 24px rgba(200, 150, 42, 0.35));
}

@keyframes loaderLogoIn {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.loader-tagline {
    color: rgba(200, 150, 42, 0.75);
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0;
    animation: loaderFadeIn 0.6s ease 0.6s forwards;
}

@keyframes loaderFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    opacity: 0;
    animation: loaderFadeIn 0.3s ease 0.5s forwards;
}

.loader-bar span {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    animation: loaderBarFill 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

@keyframes loaderBarFill {
    0% {
        width: 0%;
    }

    60% {
        width: 75%;
    }

    100% {
        width: 100%;
    }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 900;
    transition: background 0.4s ease, box-shadow 0.4s ease;
    background: linear-gradient(to bottom, rgba(20, 10, 2, 0.85) 0%, transparent 100%);
}

.navbar.scrolled {
    background: rgba(20, 12, 3, 0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.nav-logo img {
    height: 42px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(200, 150, 42, 0.3));
    transition: transform 0.3s var(--ease-spring);
}

.nav-logo img:hover {
    transform: scale(1.06);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 auto;
}

.nav-links li a,
.nav-links li .nav-btn-productos {
    display: flex;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 4px;
    transition: color 0.25s, background 0.25s;
    white-space: nowrap;
}

.nav-links li a:hover,
.nav-links li .nav-btn-productos:hover {
    color: var(--gold-light);
    background: rgba(200, 150, 42, 0.12);
}

.nav-arrow {
    font-size: 1rem !important;
    transition: transform 0.3s ease;
}

.nav-reservar {
    background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
    color: var(--dark) !important;
    font-weight: 600 !important;
    border-radius: 40px !important;
    padding: 9px 20px !important;
}

.nav-reservar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 150, 42, 0.4) !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ---- Language Switcher ---- */
.lang-switcher {
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 7px 11px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.25s ease;
    background: none;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}

.lang-current:hover,
.lang-switcher.open .lang-current {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.lang-flag {
    font-size: 1rem;
    line-height: 1;
}

.lang-code {
    font-size: 0.7rem;
}

.lang-arrow {
    font-size: 0.95rem !important;
    transition: transform 0.25s ease;
}

.lang-switcher.open .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(20, 12, 3, 0.97);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(200, 150, 42, 0.25);
    border-radius: 12px;
    padding: 6px;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1100;
}

.lang-switcher.open .lang-dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 14px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: all 0.18s ease;
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    width: 100%;
    text-align: left;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.lang-option.active {
    background: rgba(200, 150, 42, 0.15);
    color: var(--gold-light);
}

.btn-chef-filosofia {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(200, 150, 42, 0.15);
    border: 1px solid rgba(200, 150, 42, 0.4);
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 40px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-chef-filosofia img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(10deg);
    border-radius: 50%;
}

.btn-chef-filosofia:hover {
    background: rgba(200, 150, 42, 0.3);
    border-color: var(--gold-light);
    transform: translateY(-1px);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: 6px;
    transition: background 0.2s;
}

.nav-hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-hamburger span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    width: 100%;
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   MOBILE DRAWER
   ============================================ */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 310px;
    max-width: 90vw;
    height: 100dvh;
    background: var(--dark);
    z-index: 9100;
    overflow-y: auto;
    transition: right 0.38s var(--ease-out);
    display: flex;
    flex-direction: column;
}

.mobile-drawer.open {
    right: 0;
}

.mobile-drawer::-webkit-scrollbar {
    width: 4px;
}

.mobile-drawer::-webkit-scrollbar-thumb {
    background: var(--gold);
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    z-index: 9050;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.drawer-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.drawer-inner {
    padding: 24px 24px 40px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.drawer-close {
    align-self: flex-end;
    color: rgba(255, 255, 255, 0.6);
    padding: 6px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    margin-bottom: 16px;
}

.drawer-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.drawer-close .material-symbols-outlined {
    font-size: 1.4rem;
}

.drawer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.drawer-logo img {
    height: 50px;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 13px 16px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    width: 100%;
    text-align: left;
}

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

.drawer-link .material-symbols-outlined {
    font-size: 1.25rem;
    color: var(--gold);
}

.drawer-arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
    font-size: 1.1rem !important;
    color: rgba(255, 255, 255, 0.4) !important;
}

.drawer-productos-toggle.open .drawer-arrow {
    transform: rotate(180deg);
}

.drawer-productos-panel {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s var(--ease-out), opacity 0.3s ease;
    padding-left: 16px;
}

.drawer-productos-panel.open {
    max-height: 800px;
    opacity: 1;
}

.drawer-cat-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 12px 16px 6px;
}

.drawer-sublink {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.drawer-sublink:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
}

.drawer-ver-todos {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 16px 4px;
    padding: 10px 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 40px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.drawer-ver-todos:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(200, 150, 42, 0.4);
}

.drawer-ver-todos .material-symbols-outlined {
    font-size: 1rem;
}

.drawer-reservar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark) !important;
    font-size: 0.92rem;
    font-weight: 700;
    border-radius: 40px;
    text-align: center;
    justify-content: center;
    margin-top: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.drawer-reservar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 150, 42, 0.4);
}

.drawer-reservar .material-symbols-outlined {
    font-size: 1.1rem;
}

/* ============================================
   PRODUCTOS MODAL
   ============================================ */
.productos-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    z-index: 8900;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.productos-modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.productos-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -46%) scale(0.95);
    width: min(880px, 94vw);
    max-height: 88vh;
    background: var(--dark);
    border: 1px solid rgba(200, 150, 42, 0.25);
    border-radius: 20px;
    z-index: 9000;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.38s var(--ease-out), opacity 0.3s ease;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.productos-modal.open {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: all;
}

.productos-modal::-webkit-scrollbar {
    width: 4px;
}

.productos-modal::-webkit-scrollbar-thumb {
    background: var(--gold);
}

.productos-modal-inner {
    padding: 44px 40px 36px;
}

.productos-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    transition: all 0.2s;
}

.productos-modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: rotate(90deg);
}

.productos-modal-close .material-symbols-outlined {
    font-size: 1.2rem;
}

.productos-modal-header {
    margin-bottom: 32px;
}

.productos-modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.productos-modal-header p {
    color: var(--gold-light);
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.06em;
}

.productos-modal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.pm-category h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(200, 150, 42, 0.25);
}

.pm-category h3 .material-symbols-outlined {
    font-size: 1rem;
}

.pm-category ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pm-category ul li a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.86rem;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color 0.2s, padding-left 0.2s;
}

.pm-category ul li a:hover {
    color: var(--gold-light);
    padding-left: 6px;
}

.productos-modal-footer {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(200, 150, 42, 0.2);
}

.pm-ver-todos {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 12px 32px;
    border-radius: 40px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pm-ver-todos:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 150, 42, 0.4);
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero {
    position: relative;
    width: 100%;
    height: 100dvh;
    min-height: 500px;
    overflow: hidden;
    background: var(--dark);
}

.hero-track {
    position: absolute;
    inset: 0;
    display: flex;
    will-change: transform;
    transition: transform 0.9s var(--ease-out);
}

.hero-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Progressive loading overlay on hero */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(20, 10, 2, 0.35) 0%,
            rgba(20, 10, 2, 0.15) 40%,
            rgba(20, 10, 2, 0.55) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

.hero-logo img {
    width: clamp(200px, 45vw, 480px);
    height: auto;
    filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.6));
    animation: heroLogoIn 1.2s var(--ease-out) forwards;
}

@keyframes heroLogoIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.93);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-controls {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    border-radius: 50%;
    backdrop-filter: blur(8px);
    transition: background 0.2s, transform 0.2s;
}

.hero-btn:hover {
    background: rgba(200, 150, 42, 0.5);
    transform: scale(1.1);
}

.hero-btn .material-symbols-outlined {
    font-size: 1.1rem;
}

.hero-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.hero-dot.active {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: scale(1.4);
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */
.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(200, 150, 42, 0.1);
    border: 1px solid rgba(200, 150, 42, 0.3);
    padding: 5px 14px;
    border-radius: 40px;
    margin-bottom: 18px;
}

.section-label.light {
    color: var(--gold-light);
    background: rgba(200, 150, 42, 0.12);
    border-color: rgba(200, 150, 42, 0.35);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 18px;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.section-title.light {
    color: #fff;
}

.section-title.light em {
    color: var(--gold-light);
}

.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 560px;
    margin-bottom: 48px;
    font-weight: 400;
}

.section-desc.section-desc--center {
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   PRODUCTOS SECTION
   ============================================ */
.section-productos {
    padding: 100px 5% 80px;
    background: var(--cream);
    text-align: center;
}

.productos-showcase {
    position: relative;
    margin: 0 -5%;
}

/* Mini Slider */
.showcase-slider {
    position: relative;
    overflow: hidden;
    padding: 0 60px;
}

.showcase-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s var(--ease-out);
    will-change: transform;
    padding: 20px 4px 32px;
}

.showcase-item {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 280px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(60, 40, 0, 0.08);
    cursor: pointer;
    transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease;
    border: 1px solid rgba(200, 150, 42, 0.12);
}

.showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(200, 150, 42, 0.2);
}

.showcase-img {
    position: relative;
    height: 450px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.showcase-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 10, 2, 0.5) 0%, transparent 60%);
    transition: opacity 0.3s;
}

.showcase-item:hover .showcase-img::after {
    opacity: 0.5;
}

.showcase-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 40px;
    z-index: 2;
}

.showcase-info {
    padding: 22px 24px 24px;
    text-align: left;
}

.showcase-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.showcase-info p {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Slider controls */
.showcase-prev,
.showcase-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1.5px solid rgba(200, 150, 42, 0.3);
    border-radius: 50%;
    color: var(--gold);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: all 0.25s var(--ease-spring);
}

.showcase-prev {
    left: 8px;
}

.showcase-next {
    right: 8px;
}

.showcase-prev:hover,
.showcase-next:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}

.showcase-prev .material-symbols-outlined,
.showcase-next .material-symbols-outlined {
    font-size: 1.3rem;
}

.showcase-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.showcase-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(200, 150, 42, 0.3);
    border: 1.5px solid rgba(200, 150, 42, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.showcase-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.3);
}

.section-cta {
    margin-top: 40px;
}

.btn-catalogo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 36px;
    border-radius: 40px;
    box-shadow: 0 6px 24px rgba(200, 150, 42, 0.3);
    transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}

.btn-catalogo:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(200, 150, 42, 0.45);
}

.btn-catalogo .material-symbols-outlined {
    font-size: 1.1rem;
}

/* ============================================
   MENÚ SECTION
   ============================================ */
.section-menu {
    position: relative;
    padding: 100px 5%;
    background: var(--dark);
    overflow: hidden;
    text-align: center;
}

.section-menu::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 100%, rgba(200, 150, 42, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 20% 20%, rgba(200, 150, 42, 0.07) 0%, transparent 60%);
    pointer-events: none;
}

.menu-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: clamp(80px, 18vw, 220px);
    font-weight: 900;
    color: rgba(200, 150, 42, 0.04);
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: 0.2em;
    user-select: none;
}

.menu-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-highlights {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.menu-highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.menu-highlight-item .material-symbols-outlined {
    font-size: 1.1rem;
    color: var(--gold);
}

.btn-ver-menu {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid var(--gold);
    color: var(--gold-light);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 36px;
    border-radius: 40px;
    transition: all 0.3s ease;
}

.btn-ver-menu:hover {
    background: var(--gold);
    color: var(--dark);
    box-shadow: 0 8px 28px rgba(200, 150, 42, 0.35);
    transform: translateY(-2px);
}

.btn-ver-menu .material-symbols-outlined {
    font-size: 1.2rem;
}

/* ============================================
   GALERÍA 3 FILAS MARQUEE
   ============================================ */
.section-galeria {
    padding: 80px 0;
    background: var(--cream);
    overflow: hidden;
}

.galeria-header {
    text-align: center;
    padding: 0 5%;
    margin-bottom: 48px;
}

.galeria-marquee-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
}

.galeria-row {
    overflow: hidden;
    width: 100%;
}

.galeria-track {
    display: flex;
    gap: 16px;
    width: max-content;
}

.row-right .galeria-track {
    animation: marqueeRight 38s linear infinite;
}

.row-left .galeria-track {
    animation: marqueeLeft 32s linear infinite;
}

/* Different speeds for visual interest */
.galeria-row:nth-child(3) .galeria-track {
    animation-duration: 44s;
}

@keyframes marqueeRight {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes marqueeLeft {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* Pause on hover */
.galeria-row:hover .galeria-track {
    animation-play-state: paused;
}

.galeria-img {
    flex: 0 0 auto;
    width: clamp(180px, 22vw, 320px);
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--dark-mid);
}

.galeria-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.88) contrast(1.1);
    transition: filter 0.3s, transform 0.5s;
}

.galeria-img:hover img {
    filter: brightness(1) contrast(1.1);
    transform: scale(1.04);
}

/* Fade edges */
.galeria-marquee-wrap::before,
.galeria-marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.galeria-marquee-wrap {
    position: relative;
}

.galeria-marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--cream), transparent);
}

.galeria-marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--cream), transparent);
}

.galeria-footer {
    text-align: center;
    margin-top: 48px;
    padding: 0 5%;
}

.btn-galeria {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--dark);
    color: var(--gold-light);
    border: 1.5px solid rgba(200, 150, 42, 0.4);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 36px;
    border-radius: 40px;
    transition: all 0.3s ease;
}

.btn-galeria:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    box-shadow: 0 8px 24px rgba(200, 150, 42, 0.3);
    transform: translateY(-2px);
}

.btn-galeria .material-symbols-outlined {
    font-size: 1.1rem;
}

/* ============================================
   RESTAURANTE INFO SECTION
   ============================================ */
.section-info {
    padding: 100px 5%;
    background: var(--dark);
}

.info-wrap {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto 60px;
    align-items: start;
}

.info-left {
    text-align: center;
}

.info-logo {
    height: 90px;
    width: auto;
    margin: 0 auto 20px;
    filter: drop-shadow(0 4px 16px rgba(200, 150, 42, 0.25));
}

.info-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

.info-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-card {
    display: flex;
    gap: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(200, 150, 42, 0.15);
    border-radius: 14px;
    padding: 22px 20px;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.info-card:hover {
    background: rgba(200, 150, 42, 0.07);
    border-color: rgba(200, 150, 42, 0.35);
    transform: translateY(-3px);
}

.info-card>.material-symbols-outlined {
    font-size: 1.6rem;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.info-card h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 6px;
}

.info-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

.info-card p a {
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.2s;
}

.info-card p a:hover {
    color: var(--gold-light);
}

.info-link {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.82rem;
    color: var(--gold-light);
    font-weight: 500;
    transition: color 0.2s, letter-spacing 0.2s;
}

.info-link:hover {
    color: var(--gold);
    letter-spacing: 0.03em;
}

.whatsapp-link {
    color: #5adb8b !important;
}

.whatsapp-link:hover {
    color: #3fbc72 !important;
}

.mapa-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.mapa-wrap iframe {
    width: 100%;
    height: 380px;
    border-radius: 16px;
    border: 2px solid rgba(200, 150, 42, 0.2);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

/* ============================================
   MODAL FILOSOFÍA DEL CHEF
   ============================================ */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(10px);
    z-index: 9500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.overlay.active {
    opacity: 1;
    pointer-events: all;
}

.overlay.active .overlay-content {
    transform: translateY(0) scale(1);
}

.overlay-content {
    background: #fff;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90dvh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    transform: translateY(40px) scale(0.97);
    transition: transform 0.42s var(--ease-out);
}

.overlay-content::-webkit-scrollbar {
    width: 4px;
}

.overlay-content::-webkit-scrollbar-thumb {
    background: var(--gold);
}

.overlay-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    color: var(--text);
    z-index: 2;
    transition: background 0.2s, transform 0.2s;
}

.overlay-close:hover {
    background: #e53935;
    color: #fff;
    transform: rotate(90deg);
}

.overlay-close .material-symbols-outlined {
    font-size: 1.2rem;
}

/* Lang switcher inside the philosophy modal */
.overlay-lang-switcher {
    display: flex;
    gap: 8px;
    justify-content: center;
    padding: 16px 40px 0;
}

.overlay-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    color: rgba(60, 40, 10, 0.55);
    background: rgba(200, 150, 42, 0.08);
    border: 1.5px solid rgba(200, 150, 42, 0.18);
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
    cursor: pointer;
}

.overlay-lang-btn:hover {
    background: rgba(200, 150, 42, 0.18);
    border-color: rgba(200, 150, 42, 0.45);
    color: var(--dark);
    transform: translateY(-1px);
}

.overlay-lang-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    box-shadow: 0 3px 10px rgba(200, 150, 42, 0.35);
}

.overlay-lang-code {
    font-weight: 700;
}

.overlay-top {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 44px 40px 32px;
    background: linear-gradient(135deg, var(--cream) 0%, #fff 100%);
    border-bottom: 3px solid var(--gold);
}

.chef-photo {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 14px;
    overflow: hidden;
    border: 3px solid var(--gold);
    box-shadow: 0 8px 32px rgba(200, 150, 42, 0.25);
}

.chef-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chef-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.chef-title h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.overlay-bottom {
    padding: 36px 40px 40px;
}

.philosophy-text p {
    font-size: 0.97rem;
    line-height: 1.85;
    color: #444;
    margin-bottom: 18px;
}

.philosophy-text strong {
    font-weight: 700;
    color: var(--dark);
}

.philosophy-text blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text);
    background: linear-gradient(135deg, rgba(200, 150, 42, 0.08), rgba(232, 184, 75, 0.06));
    border-left: 4px solid var(--gold);
    padding: 20px 24px;
    margin: 28px 0;
    border-radius: 0 12px 12px 0;
}

.quote-block {
    background: rgba(200, 150, 42, 0.07);
    border-radius: 12px;
    padding: 20px 24px;
    font-style: italic;
    color: var(--text-muted) !important;
}

.final-note {
    font-weight: 600 !important;
    color: var(--gold) !important;
    text-align: center;
    background: rgba(200, 150, 42, 0.06);
    padding: 14px !important;
    border-radius: 8px;
}

.signature {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    text-align: center;
    color: var(--gold) !important;
    letter-spacing: 0.2em;
    padding-top: 24px;
    border-top: 2px solid var(--gold-pale);
    margin-top: 24px !important;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.section-contact {
    padding: 100px 5%;
    background: linear-gradient(135deg, var(--dark-mid), var(--dark));
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.contact-detail-item .material-symbols-outlined {
    font-size: 1.2rem;
    color: var(--gold);
}

a.contact-detail-item:hover {
    color: rgba(255, 255, 255, 0.9);
}

.contact-form {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(200, 150, 42, 0.15);
    border-radius: 20px;
    padding: 36px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(200, 150, 42, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #fff;
    transition: border-color 0.25s, background 0.25s;
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    background: rgba(200, 150, 42, 0.07);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 24px;
    border-radius: 40px;
    margin-top: 8px;
    transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(200, 150, 42, 0.45);
}

.btn-whatsapp .material-symbols-outlined {
    font-size: 1.1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--dark);
    border-top: 1px solid rgba(200, 150, 42, 0.15);
    padding: 60px 5% 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto 48px;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
}

.footer-nav h4,
.footer-contact h4 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 16px;
}

.footer-nav ul li,
.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.87rem;
    margin-bottom: 10px;
}

.footer-nav ul li a {
    transition: color 0.2s;
}

.footer-nav ul li a:hover {
    color: var(--gold-light);
}

.footer-contact ul li .material-symbols-outlined {
    font-size: 1rem;
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.25);
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.btn-resena {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f4c430, #e8a020);
    color: #2a1800;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    height: 46px;
    padding: 0 18px 0 14px;
    border-radius: 40px;
    box-shadow: 0 6px 20px rgba(200, 150, 42, 0.45);
    z-index: 800;
    transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
    animation: pulseGold 3s ease-in-out infinite;
}

.btn-resena:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 10px 30px rgba(200, 150, 42, 0.55);
    animation: none;
}

.btn-resena .material-symbols-outlined {
    font-size: 1.1rem;
}

@keyframes pulseGold {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(200, 150, 42, 0.45);
    }

    50% {
        box-shadow: 0 6px 28px rgba(200, 150, 42, 0.7);
    }
}

.scroll-top {
    position: fixed;
    bottom: 86px;
    right: 24px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 150, 42, 0.9);
    color: var(--dark);
    border-radius: 50%;
    z-index: 800;
    box-shadow: 0 4px 16px rgba(200, 150, 42, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s var(--ease-spring);
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: all;
}

.scroll-top:hover {
    transform: translateY(-3px) scale(1.08);
}

.scroll-top .material-symbols-outlined {
    font-size: 1.2rem;
}

/* ============================================
   NOTIFICATION
   ============================================ */
.notification {
    position: fixed;
    top: 80px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 500;
    z-index: 99999;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    animation: notifIn 0.3s var(--ease-out);
    max-width: 340px;
}

.notification.success {
    background: #1a3d2b;
    color: #5adb8b;
    border: 1px solid rgba(90, 219, 139, 0.3);
}

.notification.error {
    background: #3d1a1a;
    color: #ff7070;
    border: 1px solid rgba(255, 112, 112, 0.3);
}

.notification .material-symbols-outlined {
    font-size: 1.1rem;
}

@keyframes notifIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Modal "no disponible" */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s;
}

.modal-overlay.active {
    opacity: 1;
}

.modal-box {
    background: #fff;
    border-radius: 18px;
    padding: 36px 32px;
    text-align: center;
    max-width: 420px;
    width: 92%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: scale(0.9);
    transition: transform 0.3s var(--ease-spring);
    border-top: 4px solid var(--gold);
}

.modal-overlay.active .modal-box {
    transform: scale(1);
}

.modal-icon {
    color: var(--gold);
    font-size: 2.8rem;
    margin-bottom: 14px;
}

.modal-icon .material-symbols-outlined {
    font-size: 2.8rem;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 14px;
}

.modal-message {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
}

.modal-signature {
    margin-top: 16px !important;
    font-style: italic;
    color: #999;
    border-top: 1px solid var(--gold-pale);
    padding-top: 12px;
}

.modal-signature em {
    color: var(--gold);
    font-size: 0.85rem;
    display: block;
    margin-top: 4px;
}

.modal-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark);
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(200, 150, 42, 0.4);
}

/* ============================================
   FADE IN ANIMATIONS (Intersection Observer)
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s var(--ease-out);
}

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

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
    .productos-modal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .info-right {
        grid-template-columns: 1fr 1fr;
    }

    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .showcase-item {
        flex: 0 0 calc(50% - 16px);
    }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
    :root {
        --nav-h: 58px;
    }

    /* Navbar mobile */
    .navbar {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .btn-chef-filosofia {
        padding: 8px;
        border-radius: 50%;
        width: 38px;
        height: 38px;
        justify-content: center;
    }

    .btn-chef-filosofia .chef-btn-text {
        display: none;
    }

    .btn-chef-filosofia img {
        width: 20px;
        height: 20px;
        margin: 0;
    }

    .nav-hamburger {
        display: flex;
    }

    /* Products modal */
    .productos-modal-grid {
        grid-template-columns: 1fr;
    }

    .productos-modal-inner {
        padding: 32px 20px 28px;
    }

    /* Hero */
    .hero-controls {
        bottom: 20px;
        gap: 12px;
    }

    .hero-btn {
        width: 34px;
        height: 34px;
    }

    /* Sections */
    .section-productos,
    .section-menu,
    .section-info,
    .section-contact {
        padding: 60px 5%;
    }

    .section-galeria {
        padding: 60px 0;
    }

    /* Products showcase */
    .showcase-slider {
        padding: 0 44px;
    }

    .showcase-item {
        flex: 0 0 calc(100% - 8px);
        min-width: unset;
    }

    .showcase-img {
        height: 180px;
    }

    .showcase-prev {
        left: 2px;
    }

    .showcase-next {
        right: 2px;
    }

    /* Menu section */
    .menu-highlights {
        gap: 16px;
    }

    /* Galería rows */
    .galeria-img {
        width: clamp(140px, 48vw, 220px);
        height: 150px;
    }

    .galeria-marquee-wrap {
        gap: 10px;
    }

    /* Info */
    .info-right {
        grid-template-columns: 1fr;
    }

    .mapa-wrap iframe {
        height: 260px;
    }

    /* Contact */
    .contact-form {
        padding: 24px 20px;
    }

    /* Footer */
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: auto;
    }

    /* Floating */
    .btn-resena {
        bottom: 16px;
        right: 16px;
        height: 42px;
        padding: 0 14px 0 12px;
        font-size: 0.72rem;
    }

    .scroll-top {
        bottom: 74px;
        right: 16px;
        width: 40px;
        height: 40px;
    }

    /* Chef overlay mobile */
    .overlay-top {
        flex-direction: column;
        text-align: center;
        padding: 36px 20px 24px;
        gap: 20px;
    }

    .chef-photo {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }

    .chef-title h2 {
        font-size: 1.8rem;
    }

    .overlay-bottom {
        padding: 24px 20px 28px;
    }

    .philosophy-text p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .galeria-img {
        width: 140px;
        height: 120px;
    }
}

/* ============================================
   MEDIA: reduce-motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}

/* ============================================
   MODAL: SECCIÓN NO DISPONIBLE
   ============================================ */
.nodisponible-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 18, 8, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease-out), visibility 0.3s;
}

.nodisponible-overlay.open {
    opacity: 1;
    visibility: visible;
}

.nodisponible-modal {
    background: #fff;
    border-radius: 16px;
    padding: 2.4rem 2rem 2rem;
    max-width: 380px;
    width: 100%;
    text-align: center;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(18px) scale(0.97);
    transition: transform 0.35s var(--ease-spring);
}

.nodisponible-overlay.open .nodisponible-modal {
    transform: translateY(0) scale(1);
}

.nodisponible-icon {
    width: 52px;
    height: 52px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    color: var(--gold);
}

.nodisponible-icon .material-symbols-outlined {
    font-size: 26px;
}

.nodisponible-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.9rem;
}

.nodisponible-body {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.4rem;
}

.nodisponible-body strong {
    color: var(--dark);
    font-weight: 600;
}

.nodisponible-sep {
    border: none;
    border-top: 1px solid #e8e0d0;
    margin: 0 0 1.1rem;
}

.nodisponible-firma {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.nodisponible-restaurante {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1.6rem;
}

.nodisponible-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--gold);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.nodisponible-btn:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.nodisponible-btn .material-symbols-outlined {
    font-size: 18px;
}