/* ======================================================
RESET
====================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Georgia,"Times New Roman",serif;

    color:#f2eadf;

    background:
    linear-gradient(
        to bottom,
        #080808 0%,
        #141212 35%,
        #101010 100%
    );

    line-height:1.7;
}

a{
    text-decoration:none;
}

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

/* ======================================================
HERO
====================================================== */

.hero{

    position:relative;

    height:620px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    background:
    linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.70)
    ),
    url("../../assets/img/COCINA/lechazo-asado-horno-lena-manyosa.webp");

    background-size:cover;
    background-position:center;
}

.hero-content{

    width:min(900px,90%);
}

.hero h1{

    font-size:clamp(3rem,7vw,5rem);

    font-weight:400;

    line-height:.95;

    margin-bottom:1rem;

    color:#fff;
}

.hero p{

    max-width:650px;

    margin:0 auto 2rem;

    color:rgba(255,255,255,.82);

    font-size:1.05rem;
}

.btn{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:
    1rem
    2rem;

    border-radius:6px;

    background:#6E0F1F;

    color:white;

    letter-spacing:.10em;

    text-transform:uppercase;

    font-size:.75rem;

    transition:.3s;
}

.btn:hover{

    background:#8a172b;

    transform:translateY(-2px);
}

/* ======================================================
MENU STICKY
====================================================== */

.sticky-menu{

    position:sticky;

    top:0;

    z-index:100;

    display:flex;

    justify-content:center;

    gap:1.5rem;

    padding:1rem;

    background:
    rgba(10,10,10,.92);

    backdrop-filter:blur(12px);

    border-bottom:
    1px solid rgba(200,154,75,.15);

    overflow-x:auto;
}

.sticky-menu a{

    color:#c89a4b;

    white-space:nowrap;

    font-size:.78rem;

    letter-spacing:.12em;

    text-transform:uppercase;
}

/* ======================================================
CONTENIDO
====================================================== */

.section{

    width:min(1100px,92%);

    margin:auto;

    padding:
    4rem
    0;
}

.section + .section{
    border-top:none;
}

.section h2{

    margin-bottom:2rem;

    color:#c89a4b;

    font-size:clamp(2rem,4vw,3rem);

    font-weight:400;

    letter-spacing:-.04em;
}

/* ======================================================
LISTA PLATOS
====================================================== */

ul{

    list-style:none;
}

li{

    display:flex;

    justify-content:space-between;

    align-items:flex-end;

    gap:20px;

    padding:
    1rem
    0;

    border-bottom:
    1px solid rgba(255,255,255,.08);

    font-size:1.05rem;
}

li span{

    color:#d9b06b;

    white-space:nowrap;

    font-weight:600;
}

/* ======================================================
DESTACADOS
====================================================== */

.section:first-of-type{

    margin-top:3rem;
}

.section:first-of-type::before{

    content:"";

    display:block;

    width:100%;

    height:260px;

    margin-bottom:2rem;

    border-radius:20px;

    background:
    url("assets/img/COCINA/ensalada-casa-manyosa.webp");

    background-size:cover;

    background-position:center;
}

/* ======================================================
FOOTER CTA
====================================================== */

.cta-final{

    text-align:center;

    padding:
    6rem
    1.5rem;

    background:
    linear-gradient(
        to bottom,
        #101010,
        #180d09
    );
}

.cta-final h2{

    font-size:clamp(2.2rem,5vw,4rem);

    margin-bottom:1rem;
}

.cta-final p{

    max-width:650px;

    margin:
    0 auto
    2rem;

    color:rgba(255,255,255,.72);
}

/* ======================================================
MOBILE
====================================================== */

@media(max-width:768px){

    .hero{

        height:700px;
    }

    .hero h1{

        font-size:3rem;
    }

    .section{

        padding:
        2.5rem
        0;
    }

    .section h2{

        font-size:2rem;
    }

    li{

        font-size:.95rem;
    }

    .sticky-menu{

        justify-content:flex-start;
    }
}

/* ======================================================
IMAGENES CATEGORIA
====================================================== */

.category-image{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:20px;
    margin-bottom:2rem;
    border:1px solid rgba(200,154,75,.35);

    box-shadow:
        0 0 0 1px rgba(200,154,75,.08),
        inset 0 0 0 1px rgba(200,154,75,.05);
}

.section:first-of-type::before{
    display:none;
}

@media(max-width:768px){
    .category-image{
        height:200px;
        border-radius:14px;
    }
}



/* ======================================================
HERO MOBILE
====================================================== */

@media(max-width:768px){

    .hero{

        height:700px;

        background:
        linear-gradient(
            rgba(0,0,0,.25),
            rgba(0,0,0,.35)
        ),
        url("../../assets/img/COCINA/lechazo-asado-horno-lena-manyosa-2.webp");

        background-size:cover;
        background-position:center center;
    }
}


/* HERO EDITORIAL */

.hero-content{
    text-align:left;
    max-width:700px;
}

.hero-kicker{
    color:#d9b06b;
    letter-spacing:.08em;
    font-size:.95rem;
    margin-bottom:1rem;
}

.hero h1{
    margin-bottom:.25rem;
}

.hero-subtitle{
    color:#d9b06b;
    font-size:clamp(2rem,4vw,3.5rem);
    margin-bottom:1rem;
}

.hero-divider{
    margin:1rem 0 1.5rem;
    display:flex;
    align-items:center;
}

.hero-divider span{
    width:220px;
    height:1px;
    background:linear-gradient(to right,#c89a4b,transparent);
    position:relative;
}



.hero p{
    margin:0 0 2rem;
    max-width:500px;
}


/* ======================================================
PARA COMPARTIR
====================================================== */

.compartir-hero{
    width:min(1100px,92%);
    position:relative;
    z-index:5;
    margin:-60px auto 2rem;
    overflow:hidden;
    border-radius:24px;
    border:1px solid rgba(200,154,75,.35);

    box-shadow:
        0 0 0 1px rgba(200,154,75,.08),
        inset 0 0 0 1px rgba(200,154,75,.05);
    background:#111;
}

.compartir-hero img{
    height:320px;
    object-fit:cover;
}

.compartir-content{
    padding:2rem;
}

.compartir-kicker{
    display:block;
    color:#d9b06b;
    letter-spacing:.18em;
    font-size:.72rem;
    margin-bottom:1rem;
}

.compartir-content h2{
    font-size:clamp(2.2rem,5vw,4rem);
    font-weight:400;
    margin-bottom:.75rem;
}

.compartir-content p{
    color:rgba(255,255,255,.75);
    margin-bottom:1.5rem;
}

.compartir-destacado{
    display:flex;
    justify-content:space-between;
    gap:20px;
    padding:1rem 0;
    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
    color:#f2eadf;
}

.compartir-destacado span,
.compartir-secundarios span{
    color:#d9b06b;
    font-weight:600;
}

.compartir-secundarios div{
    display:flex;
    justify-content:space-between;
    gap:20px;
    padding:1rem 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

@media(max-width:768px){
    .compartir-hero img{
        height:220px;
    }

    .compartir-content{
        padding:1.5rem;
    }
}


/* HERO AJUSTES */

.hero-content{
    padding-top:0rem;
    padding-bottom:2rem;
}

.hero-kicker{
    margin-bottom:2rem;
}

.hero-price{
    margin-top:2rem;
    font-size:3.2rem;
    line-height:1;
    color:#d9b06b;
    letter-spacing:-.04em;
}

.hero-price span{
    display:block;
    margin-top:.8rem;
    font-size:1rem;
    color:#f2eadf;
    letter-spacing:.08em;
    text-transform:uppercase;
}

@media(max-width:768px){

    .hero-content{
        padding-top:3rem;
    }

    .hero-price{
        font-size:2.8rem;
    }

    .hero-price span{
        font-size:.9rem;
    }
}


/* HERO OVERLAP REFINADO */

@media(max-width:768px){

    .hero{
        background-position:center -120px;
    }

    .hero-content{
        padding-top:0rem;
        padding-bottom:2rem;
        transform:translateY(-120px);
    }

    .compartir-hero{
        margin:-170px auto 2rem;
    }
}


/* VEGETARIANO */

.veg-icon{
    display:inline-flex;
    align-items:center;
    margin-left:8px;
    color:#c89a4b;
    vertical-align:middle;
}

.veg-icon svg{
    width:18px;
    height:18px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.7;
    stroke-linecap:round;
    stroke-linejoin:round;
}


.dish-name{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:inherit;
    text-transform:none;
    white-space:normal;
}

.dish-name .veg-icon{
    flex-shrink:0;
    margin:0;
}

.veg-icon svg{
    width:18px;
    height:18px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.7;
    stroke-linecap:round;
    stroke-linejoin:round;
}


/* CORRECCIÓN PESO TEXTO VEGETARIANO */

.dish-name{
    font-weight:400 !important;
}


.compartir-nota{
    margin-top:1rem;
    color:rgba(255,255,255,.55);
    font-size:.9rem;
    font-style:italic;
}


/* AJUSTE FINAL BLOQUE IBÉRICOS */

.compartir-editorial-subtitle{
    margin:0 0 1.25rem;
}

.compartir-editorial-price{
    color:#d9b06b;
    margin-bottom:2rem;
}

.compartir-content{
    padding:2rem 2rem 1rem;
}


/* REFINADO PROMO IBÉRICOS */

.compartir-content h2{
    font-size:clamp(2.2rem,5vw,3.2rem);
    line-height:1.05;
    margin-bottom:.75rem;
}

.compartir-editorial-price{
    color:#d9b06b;
    font-size:2.5rem;
    line-height:1;
    margin-bottom:2rem;
}

@media(max-width:768px){

    .compartir-content h2{
        font-size:1.8rem;
        letter-spacing:-0.03em;
    }
}


/* DESTACADOS SIN NEGRITA */

.featured-dish{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:inherit;
    font-weight:400 !important;
}

.featured-dish .featured-icon{
    flex-shrink:0;
}

.featured-icon{
    color:#c89a4b;
}

.featured-icon svg{
    width:16px;
    height:16px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.7;
    stroke-linecap:round;
    stroke-linejoin:round;
}


/* ACORDEONES */
.menu-accordion{
    width:min(1100px,92%);
    margin:0 auto 1.5rem;
    border:1px solid rgba(200,154,75,.15);
    border-radius:16px;
    background:rgba(255,255,255,.02);
}
.menu-accordion summary{
    cursor:pointer;
    padding:1.2rem 1.5rem;
    color:#c89a4b;
    font-size:1.15rem;
}
.accordion-content{
    padding:0 1.5rem 1.5rem;
}
.accordion-note{
    color:rgba(255,255,255,.6);
    margin-bottom:1rem;
}


.dish-note{
    display:block;
    margin-top:.35rem;
    color:rgba(255,255,255,.5);
    font-size:.85rem;
}

.section-subtitle{
    margin-top:-1rem;
    margin-bottom:2rem;
    color:rgba(255,255,255,.6);
    font-size:.95rem;
    font-style:italic;
}

.menu-accordion summary{
    list-style:none;
}
.menu-accordion summary::-webkit-details-marker{
    display:none;
}
.menu-accordion summary::after{
    content:"+";
    float:right;
}
.menu-accordion[open] summary::after{
    transform:rotate(45deg);
}


/* ======================================================
CIERRE EDITORIAL DE CATEGORÍAS
====================================================== */

.section > ul::after{
    content:"";
    display:block;
    width:100px;
    height:1px;
    margin:2rem auto 0;
    background:linear-gradient(
        to right,
        transparent,
        rgba(200,154,75,.45),
        transparent
    );
}


/* PRECIO CON ACLARACIÓN */

.price-with-note{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    justify-content:center;
    color:#d9b06b;
    font-weight:600;
    line-height:1.1;
}

.price-note{
    margin-top:.45rem;
    font-size:.75rem;
    color:rgba(255,255,255,.55);
    font-weight:400;
    text-transform:none;
}


/* AJUSTE ASADOS */

#asados li:first-child{
    align-items:center !important;
}

.dish-with-note{
    align-items:flex-start !important;
}


/* POSTRES - GELATO */

#postres > ul::after{
    display:none !important;
}

#postres > ul > li:last-child{
    border-bottom:none !important;
}

#postres .menu-accordion{
    margin-top:1rem;
    margin-bottom:0;
}

.section-gelato-end{
    display:block;
    width:100px;
    height:1px;
    margin:2rem auto 0;
    background:linear-gradient(
        to right,
        transparent,
        rgba(200,154,75,.45),
        transparent
    );
}




/* ======================================================
INFANTIL - JERARQUÍA VISUAL
====================================================== */

.accordion-note{
    display:flex;
    align-items:center;
    gap:.75rem;

    margin:1.75rem 0 .75rem;

    color:#e4c48a;

    font-size:.78rem;
    font-weight:600;
    letter-spacing:.14em;
    text-transform:uppercase;
}

.accordion-note::after{
    content:"";
    flex:1;
    height:1px;
    background:rgba(228,196,138,.25);
}

.accordion-note:first-child{
    margin-top:.5rem;
}


.child-menu-intro{
    margin-bottom:1.5rem;
    color:rgba(255,255,255,.65);
    font-size:.95rem;
    font-style:italic;
}


/* INFANTIL - NOTAS EDITORIALES */

.child-menu-intro,
.child-menu-note{
    color:rgba(255,255,255,.65);
    font-size:.95rem;
    font-style:italic;
}

.child-menu-intro{
    margin-bottom:1.5rem;
}

.child-menu-note{
    margin:.75rem 0;
}


/* ======================================================
BODEGA CTA FINAL
====================================================== */

.bodega-banner{
    position:relative;
    overflow:hidden;

    display:flex;
    align-items:flex-end;

    width:min(1100px,92%);
    margin:2rem auto 4rem;

    min-height:260px;

    border-radius:30px;

    text-decoration:none;
    color:inherit;

    background:
    linear-gradient(
        to right,
        rgba(0,0,0,.84) 0%,
        rgba(0,0,0,.38) 36%,
        rgba(0,0,0,.06) 100%
    ),
    url("../../assets/img/CARTA/vino-medieval-bodega-romantica.webp");

    background-size:cover;
    background-position:center;

    border:1px solid rgba(200,154,75,.35);

    box-shadow:
        0 0 0 1px rgba(200,154,75,.08),
        inset 0 0 0 1px rgba(200,154,75,.05);
}

.bodega-overlay{
    position:absolute;
    inset:0;
}

.bodega-content{
    position:relative;
    z-index:2;
    padding:2rem 1.8rem;
}

.bodega-label{
    display:inline-block;
    margin-bottom:.55rem;
    color:#d6a15d;
    font-size:.62rem;
    letter-spacing:.22em;
    text-transform:uppercase;
}

.bodega-content h2{
    max-width:420px;
    font-size:clamp(2.4rem,5vw,4rem);
    line-height:.88;
    letter-spacing:-.06em;
}

.bodega-link{
    display:inline-flex;
    align-items:center;
    gap:.45rem;
    margin-top:1rem;
    color:#d6a15d;
    font-size:.72rem;
    letter-spacing:.16em;
    text-transform:uppercase;
}

@media(max-width:768px){

    .bodega-banner{
        min-height:220px;
        margin:2rem auto 3rem;
    }

    .bodega-content{
        padding:1.5rem;
    }

    .bodega-content h2{
        max-width:260px;
        font-size:2.7rem;
    }
}

/* ======================================================
FOOTER CTA
====================================================== */

.cta-final{

    text-align:center;

    padding:
    6rem
    1.5rem;

    background:
    linear-gradient(
        to bottom,
        #101010,
        #180d09
    );
}

.cta-final h2{

    font-size:clamp(2.2rem,5vw,4rem);

    margin-bottom:1rem;
}

.cta-final p{

    max-width:650px;

    margin:
    0 auto
    2rem;

    color:rgba(255,255,255,.72);
}

/* ======================================================
MOBILE
====================================================== */

@media(max-width:768px){

    .hero{

        height:700px;
    }

    .hero h1{

        font-size:3rem;
    }

    .section{

        padding:
        2.5rem
        0;
    }

    .section h2{

        font-size:2rem;
    }

    li{

        font-size:.95rem;
    }

    .sticky-menu{

        justify-content:flex-start;
    }
}

/* ======================================================
IMAGENES CATEGORIA
====================================================== */

.category-image{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:20px;
    margin-bottom:2rem;
    border:1px solid rgba(200,154,75,.35);

    box-shadow:
        0 0 0 1px rgba(200,154,75,.08),
        inset 0 0 0 1px rgba(200,154,75,.05);
}

.section:first-of-type::before{
    display:none;
}

@media(max-width:768px){
    .category-image{
        height:200px;
        border-radius:14px;
    }
}



/* ======================================================
HERO MOBILE
====================================================== */

@media(max-width:768px){

    .hero{

        height:700px;

        background:
        linear-gradient(
            rgba(0,0,0,.25),
            rgba(0,0,0,.35)
        ),
        url("../../assets/img/COCINA/lechazo-asado-horno-lena-manyosa-2.webp");

        background-size:cover;
        background-position:center center;
    }
}


/* HERO EDITORIAL */

.hero-content{
    text-align:left;
    max-width:700px;
}

.hero-kicker{
    color:#d9b06b;
    letter-spacing:.08em;
    font-size:.95rem;
    margin-bottom:1rem;
}

.hero h1{
    margin-bottom:.25rem;
}

.hero-subtitle{
    color:#d9b06b;
    font-size:clamp(2rem,4vw,3.5rem);
    margin-bottom:1rem;
}

.hero-divider{
    margin:1rem 0 1.5rem;
    display:flex;
    align-items:center;
}

.hero-divider span{
    width:220px;
    height:1px;
    background:linear-gradient(to right,#c89a4b,transparent);
    position:relative;
}



.hero p{
    margin:0 0 2rem;
    max-width:500px;
}


/* ======================================================
PARA COMPARTIR
====================================================== */

.compartir-hero{
    width:min(1100px,92%);
    position:relative;
    z-index:5;
    margin:-60px auto 2rem;
    overflow:hidden;
    border-radius:24px;
    border:1px solid rgba(200,154,75,.35);

    box-shadow:
        0 0 0 1px rgba(200,154,75,.08),
        inset 0 0 0 1px rgba(200,154,75,.05);
    background:#111;
}

.compartir-hero img{
    height:320px;
    object-fit:cover;
}

.compartir-content{
    padding:2rem;
}

.compartir-kicker{
    display:block;
    color:#d9b06b;
    letter-spacing:.18em;
    font-size:.72rem;
    margin-bottom:1rem;
}

.compartir-content h2{
    font-size:clamp(2.2rem,5vw,4rem);
    font-weight:400;
    margin-bottom:.75rem;
}

.compartir-content p{
    color:rgba(255,255,255,.75);
    margin-bottom:1.5rem;
}

.compartir-destacado{
    display:flex;
    justify-content:space-between;
    gap:20px;
    padding:1rem 0;
    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
    color:#f2eadf;
}

.compartir-destacado span,
.compartir-secundarios span{
    color:#d9b06b;
    font-weight:600;
}

.compartir-secundarios div{
    display:flex;
    justify-content:space-between;
    gap:20px;
    padding:1rem 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

@media(max-width:768px){
    .compartir-hero img{
        height:220px;
    }

    .compartir-content{
        padding:1.5rem;
    }
}


/* HERO AJUSTES */

.hero-content{
    padding-top:0rem;
    padding-bottom:2rem;
}

.hero-kicker{
    margin-bottom:2rem;
}

.hero-price{
    margin-top:2rem;
    font-size:3.2rem;
    line-height:1;
    color:#d9b06b;
    letter-spacing:-.04em;
}

.hero-price span{
    display:block;
    margin-top:.8rem;
    font-size:1rem;
    color:#f2eadf;
    letter-spacing:.08em;
    text-transform:uppercase;
}

@media(max-width:768px){

    .hero-content{
        padding-top:3rem;
    }

    .hero-price{
        font-size:2.8rem;
    }

    .hero-price span{
        font-size:.9rem;
    }
}


/* HERO OVERLAP REFINADO */

@media(max-width:768px){

    .hero{
        background-position:center -120px;
    }

    .hero-content{
        padding-top:0rem;
        padding-bottom:2rem;
        transform:translateY(-120px);
    }

    .compartir-hero{
        margin:-170px auto 2rem;
    }
}


/* VEGETARIANO */

.veg-icon{
    display:inline-flex;
    align-items:center;
    margin-left:8px;
    color:#c89a4b;
    vertical-align:middle;
}

.veg-icon svg{
    width:18px;
    height:18px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.7;
    stroke-linecap:round;
    stroke-linejoin:round;
}


.dish-name{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:inherit;
    text-transform:none;
    white-space:normal;
}

.dish-name .veg-icon{
    flex-shrink:0;
    margin:0;
}

.veg-icon svg{
    width:18px;
    height:18px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.7;
    stroke-linecap:round;
    stroke-linejoin:round;
}


/* CORRECCIÓN PESO TEXTO VEGETARIANO */

.dish-name{
    font-weight:400 !important;
}


.compartir-nota{
    margin-top:1rem;
    color:rgba(255,255,255,.55);
    font-size:.9rem;
    font-style:italic;
}


/* AJUSTE FINAL BLOQUE IBÉRICOS */

.compartir-editorial-subtitle{
    margin:0 0 1.25rem;
}

.compartir-editorial-price{
    color:#d9b06b;
    margin-bottom:2rem;
}

.compartir-content{
    padding:2rem 2rem 1rem;
}


/* REFINADO PROMO IBÉRICOS */

.compartir-content h2{
    font-size:clamp(2.2rem,5vw,3.2rem);
    line-height:1.05;
    margin-bottom:.75rem;
}

.compartir-editorial-price{
    color:#d9b06b;
    font-size:2.5rem;
    line-height:1;
    margin-bottom:2rem;
}

@media(max-width:768px){

    .compartir-content h2{
        font-size:1.8rem;
        letter-spacing:-0.03em;
    }
}


/* DESTACADOS SIN NEGRITA */

.featured-dish{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:inherit;
    font-weight:400 !important;
}

.featured-dish .featured-icon{
    flex-shrink:0;
}

.featured-icon{
    color:#c89a4b;
}

.featured-icon svg{
    width:16px;
    height:16px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.7;
    stroke-linecap:round;
    stroke-linejoin:round;
}


/* ACORDEONES */
.menu-accordion{
    width:min(1100px,92%);
    margin:0 auto 1.5rem;
    border:1px solid rgba(200,154,75,.15);
    border-radius:16px;
    background:rgba(255,255,255,.02);
}
.menu-accordion summary{
    cursor:pointer;
    padding:1.2rem 1.5rem;
    color:#c89a4b;
    font-size:1.15rem;
}
.accordion-content{
    padding:0 1.5rem 1.5rem;
}
.accordion-note{
    color:rgba(255,255,255,.6);
    margin-bottom:1rem;
}


.dish-note{
    display:block;
    margin-top:.35rem;
    color:rgba(255,255,255,.5);
    font-size:.85rem;
}

.section-subtitle{
    margin-top:-1rem;
    margin-bottom:2rem;
    color:rgba(255,255,255,.6);
    font-size:.95rem;
    font-style:italic;
}

.menu-accordion summary{
    list-style:none;
}
.menu-accordion summary::-webkit-details-marker{
    display:none;
}
.menu-accordion summary::after{
    content:"+";
    float:right;
}
.menu-accordion[open] summary::after{
    transform:rotate(45deg);
}


/* ======================================================
CIERRE EDITORIAL DE CATEGORÍAS
====================================================== */

.section > ul::after{
    content:"";
    display:block;
    width:100px;
    height:1px;
    margin:2rem auto 0;
    background:linear-gradient(
        to right,
        transparent,
        rgba(200,154,75,.45),
        transparent
    );
}


/* PRECIO CON ACLARACIÓN */

.price-with-note{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    justify-content:center;
    color:#d9b06b;
    font-weight:600;
    line-height:1.1;
}

.price-note{
    margin-top:.45rem;
    font-size:.75rem;
    color:rgba(255,255,255,.55);
    font-weight:400;
    text-transform:none;
}


/* AJUSTE ASADOS */

#asados li:first-child{
    align-items:center !important;
}

.dish-with-note{
    align-items:flex-start !important;
}


/* POSTRES - GELATO */

#postres > ul::after{
    display:none !important;
}

#postres > ul > li:last-child{
    border-bottom:none !important;
}

#postres .menu-accordion{
    margin-top:1rem;
    margin-bottom:0;
}

.section-gelato-end{
    display:block;
    width:100px;
    height:1px;
    margin:2rem auto 0;
    background:linear-gradient(
        to right,
        transparent,
        rgba(200,154,75,.45),
        transparent
    );
}




/* ======================================================
INFANTIL - JERARQUÍA VISUAL
====================================================== */

.accordion-note{
    display:flex;
    align-items:center;
    gap:.75rem;

    margin:1.75rem 0 .75rem;

    color:#e4c48a;

    font-size:.78rem;
    font-weight:600;
    letter-spacing:.14em;
    text-transform:uppercase;
}

.accordion-note::after{
    content:"";
    flex:1;
    height:1px;
    background:rgba(228,196,138,.25);
}

.accordion-note:first-child{
    margin-top:.5rem;
}


.child-menu-intro{
    margin-bottom:1.5rem;
    color:rgba(255,255,255,.65);
    font-size:.95rem;
    font-style:italic;
}


/* INFANTIL - NOTAS EDITORIALES */

.child-menu-intro,
.child-menu-note{
    color:rgba(255,255,255,.65);
    font-size:.95rem;
    font-style:italic;
}

.child-menu-intro{
    margin-bottom:1.5rem;
}

.child-menu-note{
    margin:.75rem 0;
}


/* ======================================================
BODEGA CTA FINAL
====================================================== */

.bodega-banner{
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:flex-end;

    width:min(1100px,92%);
    margin:2rem auto 4rem;

    min-height:260px;

    border-radius:30px;

    background:
    linear-gradient(
        to right,
        rgba(0,0,0,.84) 0%,
        rgba(0,0,0,.38) 36%,
        rgba(0,0,0,.06) 100%
    ),
    url("../../assets/img/CARTA/vino-medieval-bodega-romantica.webp");

    background-size:cover;
    background-position:center;

    border:1px solid rgba(200,154,75,.15);
}

.bodega-overlay{
    position:absolute;
    inset:0;
}

.bodega-content{
    position:relative;
    z-index:2;
    padding:2rem 1.8rem;
}

.bodega-label{
    display:inline-block;
    margin-bottom:.55rem;
    color:#d6a15d;
    font-size:.62rem;
    letter-spacing:.22em;
    text-transform:uppercase;
}

.bodega-content h2{
    max-width:420px;
    font-size:clamp(2.4rem,5vw,4rem);
    line-height:.88;
    letter-spacing:-.06em;
}

.bodega-link{
    display:inline-flex;
    align-items:center;
    gap:.45rem;
    margin-top:1rem;
    color:#d6a15d;
    font-size:.72rem;
    letter-spacing:.16em;
    text-transform:uppercase;
}

@media(max-width:768px){

    .bodega-banner{
        min-height:220px;
        margin:2rem auto 3rem;
    }

    .bodega-content{
        padding:1.5rem;
    }

    .bodega-content h2{
        max-width:260px;
        font-size:2.7rem;
    }
}


/* ======================================================
FOOTER
====================================================== */

.footer{
    padding:4rem 0;
    background:#090909;
    border-top:1px solid rgba(255,255,255,.04);
}

.footer-inner{
    width:min(1100px,92%);
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:2rem;
}

.footer-label{
    display:inline-block;
    margin-bottom:.8rem;
    color:#c89a4b;
    font-size:.66rem;
    letter-spacing:.22em;
    text-transform:uppercase;
}

.footer-brand p{
    max-width:340px;
    color:rgba(255,255,255,.55);
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:.9rem;
}

.footer-links a{
    color:rgba(255,255,255,.75);
    font-size:.82rem;
}

@media(max-width:980px){
    .footer-inner{
        flex-direction:column;
    }
}


.child-menu-price{
    font-weight:600;
    margin-top:.5rem;
}

.child-menu-price span{
    color:#d9b06b;
}


.footer-brand p{
    max-width:340px;
    color:#f2eadf;
    font-size:1.1rem;
    line-height:1.9;
    margin-bottom:1rem;
}

.footer-manifesto{
    color:rgba(255,255,255,.55);
    font-style:italic;
}

.footer-links a{
    color:rgba(255,255,255,.78);
    font-size:.82rem;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.footer-links a:hover{
    color:#c89a4b;
}


/* ======================================================
FOOTER CINEMATOGRÁFICO
====================================================== */

.footer{
    position:relative;
    overflow:hidden;

    padding:5rem 0;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.97) 0%,
        rgba(0,0,0,.95) 25%,
        rgba(0,0,0,.82) 45%,
        rgba(0,0,0,.25) 65%,
        rgba(0,0,0,.05) 100%
    ),
    url("../../assets/img/MENU ESPECIAL/mesa-romantica-fortaleza-medieval-noche.webp");

    background-size:cover;
    background-position:center;
    border-top:1px solid rgba(200,154,75,.12);
}

.footer-inner{
    position:relative;
    z-index:2;
    width:min(1100px,92%);
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:3rem;
}

.footer-label{
    display:inline-block;
    margin-bottom:1rem;
    color:#c89a4b;
    font-size:.72rem;
    letter-spacing:.24em;
    text-transform:uppercase;
}

.footer-poem{
    color:#f2eadf;
    font-size:1.35rem;
    line-height:1.9;
    margin-bottom:1rem;
}

.footer-manifesto{
    color:rgba(255,255,255,.65);
    font-style:italic;
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:1rem;
}

.footer-links a{
    color:#f2eadf;
    font-size:.82rem;
    letter-spacing:.14em;
    text-transform:uppercase;
}

.footer-links a:hover{
    color:#c89a4b;
}

@media(max-width:980px){

    .footer{

        position:relative;

        overflow:hidden;

        padding:4rem 0;

        background:none;
    }

    .footer::before{

        content:"";

        position:absolute;
        inset:0;

        background-image:url("../../assets/img/MENU ESPECIAL/mesa-romantica-fortaleza-medieval-noche.webp");

        background-size:cover;
        background-position:78% center;

        z-index:0;
    }

    .footer::after{

        content:"";

        position:absolute;
        inset:0;

        background:
        linear-gradient(
            to top,
            rgba(0,0,0,.96) 0%,
            rgba(0,0,0,.82) 35%,
            rgba(0,0,0,.55) 65%,
            rgba(0,0,0,.25) 100%
        );

        z-index:1;
    }

    .footer-inner{

        position:relative;
        z-index:2;

        flex-direction:column;
        gap:2rem;
    }

    .footer-poem{
        font-size:1.15rem;
    }
}


/* FOOTER MANYOSA REFINADO */

.footer-filigree{
    width:240px;
    height:18px;
    margin:0 0 2rem;
    background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='18' viewBox='0 0 240 18'%3E%3Cpath d='M0 9H110M130 9H240' stroke='%23c89a4b' stroke-width='1'/%3E%3Cpath d='M120 4L125 9L120 14L115 9Z' fill='none' stroke='%23c89a4b' stroke-width='1'/%3E%3C/svg%3E") center no-repeat;
}

.footer-divider{
    width:70px;
    height:1px;
    margin:2rem 0;
    background:#c89a4b;
}

.footer-manifesto{
    color:#c89a4b;
    font-style:italic;
    font-size:1.1rem;
}

.footer-links a{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:330px;
    padding:.9rem 0;
    border-bottom:1px solid rgba(200,154,75,.18);
    color:#c89a4b;
}

.footer-links a::after{
    content:"→";
    font-size:1.5rem;
    line-height:1;
}


/* AJUSTES FINALES FOOTER */

.footer-filigree{
    width:150px !important;
}

.footer-divider{
    width:50px !important;
    margin:1.6rem 0 1.8rem !important;
}

.footer-manifesto{
    font-size:1rem !important;
}

.footer-links a{
    width:260px !important;
}

.footer{
    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.98) 0%,
        rgba(0,0,0,.97) 35%,
        rgba(0,0,0,.88) 55%,
        rgba(0,0,0,.30) 72%,
        rgba(0,0,0,.08) 100%
    ),
    url("../../assets/img/MENU ESPECIAL/mesa-romantica-fortaleza-medieval-noche.webp") !important;

    background-size:cover !important;
    background-position:center !important;
}


/* AJUSTE DESKTOP FOOTER VISIBILIDAD */

@media (min-width: 981px){

    .bodega-banner{
        margin:2rem auto 2rem !important;
    }

    .footer{
        padding:3rem 0 !important;
    }

    .footer-inner{
        gap:2rem !important;
    }
}


/* ======================================================
ESPECIAL FIN DE SEMANA
====================================================== */

.especial-fin-semana{
    width:min(1100px,92%);
    margin:0 auto 3rem;
    overflow:hidden;
    border-radius:24px;
    background:#111;
    border:1px solid rgba(200,154,75,.35);
    box-shadow:
        0 0 0 1px rgba(200,154,75,.08),
        inset 0 0 0 1px rgba(200,154,75,.05);
}

.especial-fin-semana img{
    width:100%;
    height:420px;
    object-fit:cover;
}

.especial-content{
    padding:2rem;
}

.especial-kicker{
    display:block;
    margin-bottom:1rem;
    color:#d9b06b;
    font-size:.72rem;
    letter-spacing:.22em;
    text-transform:uppercase;
}

.especial-content h2{
    font-size:clamp(2rem,4vw,3.2rem);
    line-height:1.05;
    font-weight:400;
    margin-bottom:1rem;
}

.especial-content p{
    color:rgba(255,255,255,.75);
    margin-bottom:1.5rem;
}

.especial-price{
    color:#d9b06b;
    font-size:2.4rem;
    line-height:1;
}

@media(max-width:768px){

    .especial-fin-semana{
        margin:0 auto 2rem;
    }

    .especial-fin-semana img{
        height:240px;
    }

    .especial-content{
        padding:1.5rem;
    }

    .especial-content h2{
        font-size:1.9rem;
    }

    .especial-price{
        font-size:2rem;
    }
}


/* ======================================================
ESPECIAL FIN DE SEMANA - MISMO FORMATO QUE TABLA IBÉRICOS
====================================================== */

@media (min-width:769px){

    .especial-fin-semana{
        width:min(1100px,92%);
        max-width:1100px;
        margin:0 auto 2rem;
    }

    .especial-fin-semana img{
        height:320px;
    }

    .especial-content{
        padding:2rem 2rem 1rem;
    }

    .especial-content h2{
        font-size:clamp(2.2rem,5vw,3.2rem);
        line-height:1.05;
        margin-bottom:.75rem;
    }

    .especial-price{
        font-size:2.5rem;
        margin-bottom:0;
    }
}


/* HERO DESKTOP REFINADO */

@media (min-width:769px){

    .hero{

        justify-content:flex-start;

        padding-left:8%;

        text-align:left;

        background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.92) 0%,
            rgba(0,0,0,.88) 28%,
            rgba(0,0,0,.55) 52%,
            rgba(0,0,0,.15) 100%
        ),
        url("../../assets/img/COCINA/lechazo-asado-horno-lena-manyosa.webp");

        background-size:cover;
        background-position:center right;
    }

    .hero-content{

        max-width:520px;

        margin-left:0;
    }

    .hero h1{

        font-size:5.5rem;

        line-height:.9;
    }

    .hero-subtitle{

        font-size:4rem;

        line-height:.95;
    }

    .hero p{

        max-width:420px;
    }
}


/* GELATO INLINE */
.gelato-item{
    display:block;
}

.gelato-row{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:20px;
}

.gelato-name{
    color:#f2eadf !important;
    font-weight:400 !important;
}

.gelato-flavors-toggle{
    margin-top:.35rem;
}

.gelato-flavors-toggle summary{
    cursor:pointer;
    list-style:none;
    color:rgba(200,154,75,.85);
    font-size:.82rem;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.gelato-flavors-toggle summary::-webkit-details-marker{
    display:none;
}

.gelato-flavors-toggle summary::after{
    content:" +";
}

.gelato-flavors-toggle[open] summary::after{
    content:" −";
}


/* ======================================================
CONTROL BANNER FIN DE SEMANA
Cambiar mostrar-especial por ocultar-especial en el HTML
====================================================== */

.mostrar-especial{
    display:block;
}

.ocultar-especial{
    display:none;
}
