/* Montserrat se carga vía <link> en el <head> (no @import, que bloquea el render) */

/* ─── Custom Fonts ─────────────────────────────────────── */
@font-face {
    font-family: 'Buffon';
    src: url('../fonts/Buffon-Heavy.otf') format('opentype');
    font-weight: 900;
    font-display: swap;
}
@font-face {
    font-family: 'Buffon';
    src: url('../fonts/Buffon-Bold.otf') format('opentype');
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: 'Buffon';
    src: url('../fonts/Buffon-Regular.otf') format('opentype');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Espiritu';
    src: url('../fonts/Espiritu-Expanded.otf') format('opentype');
    font-weight: 400;
    font-display: swap;
}

/* ─── Design Tokens ─────────────────────────────────────── */
:root {
    --gold:       #cc9846;
    --gold-light: #e8b96a;
    --gold-dim:   #987554;
    --brown-dark: #2d1f17;
    --brown-deep: #1a100c;
    --brown-mid:  #3d2a1f;
    --beige:      #efe6da;
    --beige-card: #e6dccf;
    --text-light: #efe6da;
    --text-muted: rgba(239,230,218,0.65);

    --font-head: 'Buffon', 'Georgia', serif;
    --font-body: 'Espiritu', 'Montserrat', sans-serif;
    --font-ui:   'Montserrat', sans-serif;

    --radius: 14px;
    --radius-sm: 8px;
    --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    background: var(--brown-deep);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

::selection { background: var(--gold); color: var(--brown-deep); }

/* Accesibilidad: foco visible solo con teclado */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }

/* Skip link */
.skip-link {
    position: fixed;
    top: -100px;
    left: 1rem;
    z-index: 2000;
    background: var(--gold);
    color: var(--brown-deep);
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.7rem 1.2rem;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

/* ─── Navbar ─────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.5rem;
    background: rgba(26, 16, 12, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(204, 152, 70, 0.18);
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(26, 16, 12, 0.97);
}
.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
}
.brand-mark {
    height: 46px;
    width: auto;
    transition: transform var(--transition), filter var(--transition);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}
.brand:hover .brand-mark {
    transform: scale(1.05) rotate(-2deg);
    filter: drop-shadow(0 3px 12px rgba(204, 152, 70, 0.4));
}
.navbar-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.navbar-links a {
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color var(--transition);
}
.navbar-links a:hover { color: var(--gold); }

.navbar-cta {
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.55rem 1.2rem;
    border: 1.5px solid var(--gold);
    border-radius: 50px;
    color: var(--gold);
    transition: var(--transition);
    white-space: nowrap;
    min-height: 44px;
    display: flex;
    align-items: center;
}
.navbar-cta:hover {
    background: var(--gold);
    color: var(--brown-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-ui);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.85rem 2.2rem;
    min-height: 52px;
    background: var(--gold);
    color: var(--brown-dark);
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 24px rgba(204, 152, 70, 0.35);
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(204, 152, 70, 0.5);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-ui);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.85rem 2.2rem;
    min-height: 52px;
    background: transparent;
    color: var(--text-light);
    border-radius: 50px;
    border: 1.5px solid rgba(239, 230, 218, 0.4);
    cursor: pointer;
    transition: var(--transition);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* ─── Section Base ───────────────────────────────────────── */
section {
    padding: 5rem 1.25rem;
    scroll-margin-top: 84px; /* compensa el navbar fijo al saltar por anclas */
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}
.section-label {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}
.section-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 1.25rem;
}
.section-body {
    font-family: var(--font-ui);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 600px;
}

/* ─── Hero ───────────────────────────────────────────────── */
#hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 1.25rem 4rem;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(204,152,70,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 50% 85%, rgba(152,117,84,0.15) 0%, transparent 60%),
        linear-gradient(180deg, var(--brown-deep) 0%, #110a07 100%);
}

/* Ember particles */
.embers {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.ember {
    position: absolute;
    bottom: -10px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0;
    animation: float-ember linear infinite;
    filter: blur(0.5px);
}
.ember:nth-child(1)  { left: 10%; animation-duration: 6s;  animation-delay: 0s;    width: 3px; height: 3px; background: #e8c070; }
.ember:nth-child(2)  { left: 20%; animation-duration: 8s;  animation-delay: 1.5s;  width: 5px; height: 5px; }
.ember:nth-child(3)  { left: 30%; animation-duration: 7s;  animation-delay: 0.8s;  width: 3px; height: 3px; background: #ff8c42; }
.ember:nth-child(4)  { left: 45%; animation-duration: 9s;  animation-delay: 2.2s;  width: 4px; height: 4px; }
.ember:nth-child(5)  { left: 55%; animation-duration: 6.5s;animation-delay: 0.3s;  width: 3px; height: 3px; background: #e8c070; }
.ember:nth-child(6)  { left: 65%; animation-duration: 8.5s;animation-delay: 1.1s;  width: 5px; height: 5px; background: #ff8c42; }
.ember:nth-child(7)  { left: 75%; animation-duration: 7.5s;animation-delay: 3s;    width: 3px; height: 3px; }
.ember:nth-child(8)  { left: 85%; animation-duration: 6s;  animation-delay: 1.8s;  width: 4px; height: 4px; background: #e8c070; }
.ember:nth-child(9)  { left: 5%;  animation-duration: 10s; animation-delay: 4s;    width: 3px; height: 3px; }
.ember:nth-child(10) { left: 92%; animation-duration: 7s;  animation-delay: 2.5s;  width: 5px; height: 5px; background: #ff8c42; }
.ember:nth-child(11) { left: 38%; animation-duration: 8s;  animation-delay: 0.5s;  width: 3px; height: 3px; }
.ember:nth-child(12) { left: 70%; animation-duration: 9.5s;animation-delay: 3.5s;  width: 4px; height: 4px; background: #e8c070; }

@keyframes float-ember {
    0%   { transform: translateY(0) translateX(0)    scale(1);   opacity: 0; }
    10%  { opacity: 0.9; }
    50%  { transform: translateY(-45vh) translateX(20px)  scale(0.8); opacity: 0.7; }
    80%  { transform: translateY(-75vh) translateX(-15px) scale(0.5); opacity: 0.3; }
    100% { transform: translateY(-100vh) translateX(5px)  scale(0.1); opacity: 0; }
}

/* Horizontal flame divider */
.flame-divider {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}
.flame-divider::before,
.flame-divider::after {
    content: '';
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(204,152,70,0.5));
}
.flame-divider::after {
    background: linear-gradient(270deg, transparent, rgba(204,152,70,0.5));
}

.hero-logo {
    width: min(460px, 84vw);
    height: auto;
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 38px rgba(204, 152, 70, 0.3));
    animation: logo-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes logo-rise {
    from { opacity: 0; transform: translateY(20px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-tagline {
    font-family: var(--font-head);
    font-weight: 400;
    font-size: clamp(2.2rem, 6vw, 4rem);
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: var(--text-light);
    position: relative;
    z-index: 1;
    margin-bottom: 0.75rem;
}
.hero-tagline span {
    color: var(--gold);
}
.hero-sub {
    font-family: var(--font-ui);
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
    margin-bottom: 2.5rem;
}
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    opacity: 0.45;
    animation: bob 2.4s ease-in-out infinite;
}
.hero-scroll span {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.hero-scroll svg { width: 20px; }
@keyframes bob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─── Nosotros ───────────────────────────────────────────── */
#nosotros {
    background: var(--beige);
    color: var(--brown-dark);
    padding: 5rem 1.25rem;
}
#nosotros .section-body {
    color: rgba(45, 31, 23, 0.75);
}
#nosotros .section-label { color: var(--gold-dim); }
#nosotros .section-title { color: var(--brown-dark); }

.nosotros-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}
.nosotros-pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.pillar {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}
.pillar-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(204, 152, 70, 0.12);
    border: 1px solid rgba(204, 152, 70, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}
.pillar-icon svg { width: 22px; height: 22px; }
.pillar h3 {
    font-family: var(--font-body); /* Espiritu — fuente secundaria de marca */
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.18;
    color: var(--brown-dark);
    letter-spacing: 0.012em;
    margin-bottom: 0.5rem;
}
.pillar p {
    font-family: var(--font-ui);
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(45, 31, 23, 0.78);
}

/* Gold separator */
.gold-rule {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dim));
    margin: 1.25rem 0;
    border-radius: 2px;
}

/* ─── Especialidades ─────────────────────────────────────── */
#especialidades {
    background: var(--brown-mid);
    padding: 5rem 1.25rem;
}
.dishes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
}
.dish-card {
    background: rgba(26, 16, 12, 0.6);
    border: 1px solid rgba(204, 152, 70, 0.15);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}
.dish-card:hover {
    border-color: rgba(204, 152, 70, 0.4);
    background: rgba(26, 16, 12, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.dish-info {}
.dish-name {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.02em;
}
.dish-desc {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
    font-style: italic;
}
.dish-price {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
}
.dish-tag {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    background: rgba(204, 152, 70, 0.15);
    color: var(--gold);
    border: 1px solid rgba(204, 152, 70, 0.3);
    margin-top: 0.4rem;
}

/* ─── Menu CTA ───────────────────────────────────────────── */
#menu-cta {
    background:
        radial-gradient(ellipse 70% 80% at 50% 50%, rgba(204,152,70,0.08) 0%, transparent 70%),
        var(--brown-deep);
    padding: 5.5rem 1.25rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
#menu-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(204,152,70,0.4), transparent);
}
#menu-cta::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(204,152,70,0.4), transparent);
}
.menu-cta-icon {
    margin: 0 auto 1.5rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-cta-icon svg { width: 52px; height: 52px; }
#menu-cta .section-title {
    margin-left: auto;
    margin-right: auto;
}
#menu-cta .section-body {
    margin: 0 auto 2.5rem;
    color: var(--text-muted);
}
.menu-cta-note {
    margin-top: 1.25rem;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    color: rgba(239,230,218,0.35);
    letter-spacing: 0.05em;
}

/* ─── Contacto ───────────────────────────────────────────── */
#contacto {
    background: var(--brown-dark);
    padding: 5rem 1.25rem;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2.5rem;
}
.contact-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.4rem 1.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(204, 152, 70, 0.18);
    background: rgba(26, 16, 12, 0.4);
    transition: var(--transition);
    min-height: 72px;
    cursor: pointer;
}
.contact-card:hover {
    border-color: rgba(204, 152, 70, 0.45);
    background: rgba(26, 16, 12, 0.7);
    transform: translateY(-2px);
}
.contact-card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(204, 152, 70, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-card-icon svg { width: 22px; height: 22px; }
.contact-card-label {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 0.2rem;
}
.contact-card-value {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

/* ─── Footer ─────────────────────────────────────────────── */
footer {
    background: var(--brown-deep);
    border-top: 1px solid rgba(204, 152, 70, 0.12);
    padding: 2rem 1.25rem;
    text-align: center;
}
.footer-brand {
    display: inline-block;
    margin: 0 auto 1.1rem;
    transition: opacity var(--transition), transform var(--transition);
    opacity: 0.78;
}
.footer-brand:hover { opacity: 1; transform: translateY(-2px); }
.footer-logo {
    width: min(210px, 60vw);
    height: auto;
    margin: 0 auto;
}
footer p {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(239,230,218,0.3);
    letter-spacing: 0.06em;
}

/* ─── Mobile nav drawer ──────────────────────────────────── */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26,16,12,0.97);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-light);
    transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-close {
    position: absolute;
    top: 1.2rem; right: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-menu-close svg { width: 24px; height: 24px; stroke: var(--gold); }

/* ─── Responsive ─────────────────────────────────────────── */
@media (min-width: 480px) {
    .nosotros-pillars { grid-template-columns: 1fr 1fr; }
    .dishes-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
    section { padding: 6.5rem 2rem; }
    .nosotros-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    .nosotros-pillars { grid-template-columns: 1fr; }
    .dishes-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
    .navbar { padding: 1rem 3rem; }
    .hamburger { display: none !important; }
    .navbar-links { display: flex !important; }
    .navbar-cta-wrap { display: flex !important; }
    .dishes-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1023px) {
    .navbar-links,
    .navbar-cta-wrap { display: none; }
    .hamburger { display: flex; }
}

/* ─── WhatsApp floating button ───────────────────────────── */
.wa-fab {
    position: fixed;
    right: max(1.25rem, env(safe-area-inset-right));
    bottom: max(1.25rem, env(safe-area-inset-bottom));
    z-index: 1500;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform var(--transition), box-shadow var(--transition);
}
.wa-fab svg {
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 1;
}
.wa-fab:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 12px 34px rgba(37, 211, 102, 0.55), 0 3px 10px rgba(0, 0, 0, 0.35);
}
.wa-fab:active { transform: scale(1.02); }
.wa-fab-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25d366;
    z-index: 0;
    animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
    0%   { transform: scale(1);   opacity: 0.55; }
    70%  { transform: scale(1.9); opacity: 0; }
    100% { transform: scale(1.9); opacity: 0; }
}
@media (min-width: 768px) {
    .wa-fab {
        right: max(1.75rem, env(safe-area-inset-right));
        bottom: max(1.75rem, env(safe-area-inset-bottom));
        width: 62px;
        height: 62px;
    }
    .wa-fab svg { width: 32px; height: 32px; }
}

/* ─── Polish: micro-interacciones ────────────────────────── */
.btn-primary {
    position: relative;
    overflow: hidden;
}
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transform: skewX(-18deg);
    transition: left 0.6s ease;
}
.btn-primary:hover::after { left: 140%; }

.dish-card {
    position: relative;
    overflow: hidden;
}
.dish-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--gold), var(--gold-dim));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform var(--transition);
}
.dish-card:hover::before { transform: scaleY(1); }

/* Brillo cálido extra detrás del logo del hero */
#hero::after {
    content: '';
    position: absolute;
    top: 22%;
    left: 50%;
    width: min(620px, 90vw);
    height: 360px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, rgba(204, 152, 70, 0.16) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ─── Reduced motion ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .ember { animation: none; }
    .hero-scroll { animation: none; }
    .wa-fab-ring { animation: none; }
    .hero-logo { animation: none; }
    * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
