/* =========================================================
   Pronto Pizza — Porlezza (CO)
   Stile caldo, rustico, pizzeria italiana
   Mobile-first
   ========================================================= */

:root {
    /* Palette calda */
    --cream: #f6efe0;
    --cream-2: #efe4cf;
    --paper: #fbf7ec;
    --ink: #2c2118;
    --ink-soft: #5a4a3b;
    --red: #a0272b;
    --red-dark: #7a1c1f;
    --green: #3d5a3d;
    --green-dark: #2a4029;
    --brown: #6b4423;
    --brown-soft: #8b6745;
    --yellow: #e8b24c;
    --line: #d9c9a8;

    /* Tipografia */
    --ff-serif: 'Playfair Display', Georgia, serif;
    --ff-hand: 'Caveat', cursive;
    --ff-body: 'Lora', Georgia, serif;

    /* Spazi */
    --radius: 6px;
    --shadow-sm: 0 2px 8px rgba(60, 30, 10, 0.08);
    --shadow: 0 8px 30px rgba(60, 30, 10, 0.15);
    --container: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}
html::-webkit-scrollbar { display: none; } /* Chrome/Safari */
body {
    font-family: var(--ff-body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
    /* leggera texture "carta" */
    background-image:
        radial-gradient(circle at 20% 10%, rgba(184, 140, 80, 0.07) 0, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(160, 39, 43, 0.05) 0, transparent 45%),
        repeating-linear-gradient(135deg, rgba(107, 68, 35, 0.02) 0 2px, transparent 2px 6px);
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--red); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--red-dark); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--ff-serif); font-weight: 700; color: var(--ink); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.4rem); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }

.section { padding: 4rem 0; position: relative; }
@media (min-width: 768px) { .section { padding: 6rem 0; } }

.eyebrow {
    font-family: var(--ff-hand);
    color: var(--red);
    font-size: 1.6rem;
    letter-spacing: 1px;
    margin-bottom: .25rem;
}

.section-head { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.section-head h2 { margin-bottom: 1rem; position: relative; display: inline-block; }
.section-head h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: var(--red);
    margin: .75rem auto 0;
    position: relative;
}
.section-head h2::before {
    content: "✦";
    display: block;
    color: var(--yellow);
    font-size: .9rem;
    text-align: center;
    margin-bottom: .5rem;
}
.section-sub { color: var(--ink-soft); font-size: 1.05rem; }

.lead { font-size: 1.1rem; color: var(--ink-soft); margin-bottom: 1rem; }
.handwritten {
    font-family: var(--ff-hand);
    font-size: 1.6rem;
    color: var(--green-dark);
    font-style: italic;
    line-height: 1.3;
    margin-top: 1.25rem;
    padding-left: 1rem;
    border-left: 3px solid var(--yellow);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: .85rem 1.6rem;
    border-radius: 40px;
    font-family: var(--ff-body);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: .3px;
    text-align: center;
    transition: all .25s ease;
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}
.btn-primary {
    background: var(--red);
    color: #fff;
    box-shadow: 0 4px 14px rgba(160, 39, 43, 0.35);
}
.btn-primary:hover { background: var(--red-dark); color: #fff; transform: translateY(-2px); }
.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-call {
    background: var(--green);
    color: #fff;
}
.btn-call:hover { background: var(--green-dark); color: #fff; }

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(251, 247, 236, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: -1;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 1.25rem;
    gap: 1rem;
}
.logo { display: flex; align-items: center; gap: .65rem; color: var(--ink); }
.logo:hover { color: var(--ink); }
.logo-mark { font-size: 1.9rem; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-title { font-family: var(--ff-serif); font-size: 1.3rem; font-weight: 700; }
.logo-sub { font-family: var(--ff-hand); font-size: 1rem; color: var(--red); margin-top: 2px; }

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    z-index: 110;
}
.nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

.primary-nav {
    position: fixed;
    inset: 0;
    background: #f6efe0;
    padding: 6rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform .35s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 99;
}
.primary-nav.open { transform: translateX(0); }
.primary-nav > ul { display: flex; flex-direction: column; gap: 1.25rem; }
.primary-nav a {
    font-family: var(--ff-serif);
    font-size: 1.5rem;
    color: var(--ink);
    font-weight: 500;
}
.primary-nav a:hover { color: var(--red); }
.nav-call { align-self: flex-start; margin-top: 1rem; }

@media (min-width: 900px) {
    .nav-toggle { display: none; }
    .primary-nav {
        position: static;
        transform: none;
        background: transparent;
        padding: 0;
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }
    .primary-nav > ul { flex-direction: row; gap: 1.75rem; }
    .primary-nav a { font-family: var(--ff-body); font-size: 1rem; font-weight: 500; }
    .primary-nav a:not(.nav-call) { position: relative; }
    .primary-nav a:not(.nav-call)::after {
        content: "";
        position: absolute;
        left: 0; bottom: -4px;
        width: 0; height: 2px;
        background: var(--red);
        transition: width .25s ease;
    }
    .primary-nav a:not(.nav-call):hover::after { width: 100%; }
    .nav-call { margin-top: 0; padding: .6rem 1.2rem; font-size: .95rem; }
}

/* ---------- Language Switcher ---------- */
.lang-switcher {
    position: relative;
}
.lang-btn {
    display: flex;
    align-items: center;
    gap: .3rem;
    padding: .38rem .75rem;
    border: 2px solid var(--line);
    border-radius: 30px;
    font-family: var(--ff-body);
    font-size: .88rem;
    font-weight: 600;
    color: var(--ink);
    background: transparent;
    cursor: pointer;
    transition: border-color .2s, color .2s;
    white-space: nowrap;
}
.lang-btn:hover { border-color: var(--red); color: var(--red); }
.lang-caret { font-size: .68rem; transition: transform .2s ease; display: inline-block; }
.lang-switcher.open .lang-caret { transform: rotate(180deg); }
.lang-menu {
    display: none;
    position: absolute;
    top: calc(100% + .5rem);
    right: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-width: 145px;
    z-index: 200;
    overflow: hidden;
}
.lang-switcher.open .lang-menu { display: block; }
.lang-menu li { border-bottom: 1px solid var(--line); }
.lang-menu li:last-child { border-bottom: none; }
.lang-menu button {
    width: 100%;
    padding: .55rem 1rem;
    text-align: left;
    font-family: var(--ff-body);
    font-size: .88rem;
    color: var(--ink);
    transition: background .15s;
}
.lang-menu button:hover { background: var(--cream); }
.lang-menu button[data-active] {
    font-weight: 700;
    color: var(--red);
    background: var(--cream-2);
}
@media (max-width: 899px) {
    .lang-switcher { align-self: flex-start; }
    .lang-menu {
        position: static;
        box-shadow: var(--shadow-sm);
        margin-top: .5rem;
        border: 1px solid var(--line);
    }
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    text-align: center;
}
.hero-bg {
    position: absolute; inset: 0;
    background: url('../img/esterno_1.jpg') center/cover no-repeat;
    filter: brightness(0.7) saturate(1.1);
    transform: scale(1.05);
}
.hero-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(44, 33, 24, 0.5) 0%, rgba(44, 33, 24, 0.75) 100%),
        radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.4) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 5rem 1.25rem;
    max-width: 860px;
}
.hero .eyebrow {
    color: var(--yellow);
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.hero h1 {
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
}
.hero h1 em {
    font-style: italic;
    color: var(--yellow);
    font-family: var(--ff-hand);
    font-size: 1.1em;
    display: inline-block;
    transform: rotate(-2deg);
}
.hero-claim {
    font-size: 1.15rem;
    max-width: 620px;
    margin: 0 auto 2rem;
    color: rgba(255,255,255,0.92);
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.hero-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; margin-bottom: 2.5rem; }
.hero-cta .btn-ghost { color: #fff; border-color: #fff; }
.hero-cta .btn-ghost:hover { background: #fff; color: var(--ink); }
.hero-hours {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(0,0,0,0.35);
    padding: .5rem 1rem;
    border-radius: 30px;
    font-size: .95rem;
    border: 1px solid rgba(255,255,255,0.2);
}
.hero-hours .dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: #7bc47f;
    box-shadow: 0 0 10px #7bc47f;
    animation: pulse 1.8s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}
.scroll-down {
    position: absolute;
    bottom: 1.5rem; left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.8rem;
    z-index: 3;
    animation: bounce 2s infinite;
    opacity: .8;
}
@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}

/* ---------- About ---------- */
.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 900px) {
    .about-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.about-text h2 { margin-bottom: 1.25rem; }
.about-image { position: relative; }
.about-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 8px solid #fff;
    transform: rotate(-1deg);
    transition: transform .4s ease;
}
.about-image:hover img { transform: rotate(0); }
.image-badge {
    position: absolute;
    bottom: -20px; right: 15px;
    background: var(--red);
    color: #fff;
    padding: .7rem 1.2rem;
    border-radius: 4px;
    font-family: var(--ff-hand);
    font-size: 1.3rem;
    transform: rotate(3deg);
    box-shadow: var(--shadow);
}

/* ---------- Features ---------- */
.features {
    background: var(--cream-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 3rem 0;
}
.features-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 1fr;
    text-align: center;
}
@media (min-width: 768px) {
    .features-grid { grid-template-columns: repeat(4, 1fr); }
}
.feature-icon { font-size: 2.5rem; margin-bottom: .5rem; }
.feature h3 { font-size: 1.2rem; margin-bottom: .25rem; color: var(--red-dark); }
.feature p { color: var(--ink-soft); font-size: .95rem; }

/* ---------- Menu cards ---------- */
.menu-section { background: var(--paper); }
.menu-grid {
    display: grid;
    gap: 1.75rem;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) { .menu-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }

.menu-card {
    background: #fff;
    padding: 1.75rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
    position: relative;
    transition: transform .3s ease, box-shadow .3s ease;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.menu-card--highlight {
    background: linear-gradient(160deg, #fff 0%, #fdf5e0 100%);
    border: 2px solid var(--yellow);
}
.menu-card--highlight::before {
    content: "⭐ Offerta";
    position: absolute;
    top: -12px; left: 1.5rem;
    background: var(--red);
    color: #fff;
    padding: .25rem .75rem;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .5px;
}
.menu-card-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1.25rem;
    padding-bottom: .75rem;
    border-bottom: 2px dashed var(--line);
}
.menu-card-head h3 { color: var(--green-dark); font-size: 1.35rem; }
.menu-tag {
    font-family: var(--ff-hand);
    font-size: 1.1rem;
    color: var(--red);
}
.menu-list li {
    display: flex;
    align-items: baseline;
    gap: .5rem;
    padding: .5rem 0;
    font-size: .98rem;
}
.menu-list .dish { color: var(--ink); flex-shrink: 1; }
.menu-list .dots {
    flex: 1;
    border-bottom: 2px dotted var(--line);
    min-width: 15px;
    align-self: center;
    height: .4em;
}
.menu-list .price {
    font-weight: 700;
    color: var(--red-dark);
    white-space: nowrap;
    font-family: var(--ff-serif);
}

.menu-cta {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
}

/* ---------- Gallery ---------- */
.gallery {
    background: linear-gradient(180deg, var(--paper) 0%, var(--cream-2) 100%);
}
.gallery-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
}
@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 220px;
        gap: 1.25rem;
    }
}
.gallery-item {
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    position: relative;
    box-shadow: var(--shadow-sm);
    cursor: zoom-in;
    background: var(--ink);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease, filter .3s ease;
}
.gallery-item::after {
    content: "🔍";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    color: #fff;
    font-size: 1.5rem;
    background: rgba(160, 39, 43, 0.9);
    width: 45px; height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s ease, transform .3s ease;
}
.gallery-item:hover img { transform: scale(1.08); filter: brightness(.7); }
.gallery-item:hover::after { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }
@media (max-width: 767px) {
    .gallery-item--tall { grid-row: span 1; }
}

/* Griglia perfetta 2x4 mobile / 4x2 desktop — 8 immagini senza buchi */
.gallery-grid--four {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
}
@media (min-width: 768px) {
    .gallery-grid--four {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 220px;
    }
}

/* ---------- Reviews ---------- */
.reviews { background: var(--white, #fff); }
.reviews-score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.reviews-score__badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #00af87;
    color: #fff;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}
.reviews-score__label {
    font-size: 0.95rem;
    color: var(--ink-soft, #666);
}
.reviews-score__stars { font-size: 1.3rem; letter-spacing: 1px; }
.reviews-grid {
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}
.review-card {
    background: var(--cream, #faf8f3);
    border: 1px solid var(--line, #e8e0d0);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.review-card__stars { font-size: 1rem; color: #f5a623; }
.review-card__text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--ink, #2a2018);
    flex: 1;
}
.review-card__meta {
    font-size: 0.8rem;
    color: var(--ink-soft, #888);
    border-top: 1px solid var(--line, #e8e0d0);
    padding-top: 0.75rem;
}
.review-card__meta strong { display: block; color: var(--ink, #2a2018); }
.reviews-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ---------- Contact ---------- */
.contact { background: var(--cream); border-top: 1px solid var(--line); }
.contact-grid {
    display: grid;
    gap: 3rem;
}
@media (min-width: 900px) {
    .contact-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.info-block { margin-bottom: 1.75rem; }
.info-block h3 {
    color: var(--red);
    font-size: 1.1rem;
    margin-bottom: .4rem;
    font-family: var(--ff-body);
    font-weight: 700;
    letter-spacing: .3px;
    text-transform: uppercase;
    font-size: .85rem;
}
.info-block p { font-size: 1.05rem; color: var(--ink); }
.phone-link {
    font-family: var(--ff-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--red);
}
.phone-link:hover { color: var(--red-dark); }

.hours li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .5rem 0;
    border-bottom: 1px dotted var(--line);
    font-size: .98rem;
}
.hours li:last-child { border-bottom: none; }
.hours li > span:first-child { font-weight: 600; color: var(--green-dark); }
.hours .closed { color: var(--red); font-style: italic; }

.socials {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.5rem;
}
.socials a {
    display: inline-block;
    padding: .5rem 1.1rem;
    border: 2px solid var(--green);
    color: var(--green-dark);
    border-radius: 30px;
    font-weight: 500;
    font-size: .9rem;
    transition: all .25s ease;
}
.socials a:hover { background: var(--green); color: #fff; }

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 400px;
    border: 6px solid #fff;
}

/* ---------- Sticky call (mobile) ---------- */
.sticky-call {
    position: fixed;
    bottom: 1.2rem;
    right: 1.2rem;
    width: 58px;
    height: 58px;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 6px 20px rgba(61, 90, 61, 0.5);
    z-index: 90;
    transition: transform .25s ease;
    animation: callPulse 2s infinite;
}
.sticky-call:hover { color: #fff; transform: scale(1.1); }
@keyframes callPulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(61, 90, 61, 0.5); }
    50% { box-shadow: 0 6px 30px rgba(61, 90, 61, 0.8), 0 0 0 10px rgba(61, 90, 61, 0.1); }
}
@media (min-width: 900px) { .sticky-call { display: none; } }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--ink);
    color: var(--cream);
    padding: 3rem 0 1.5rem;
}
.site-footer a { color: var(--yellow); }
.site-footer a:hover { color: #fff; }
.footer-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin-bottom: 2rem;
}
@media (min-width: 700px) {
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
.footer-col h4 {
    color: var(--yellow);
    font-family: var(--ff-hand);
    font-size: 1.5rem;
    margin-bottom: .5rem;
}
.footer-col p { font-size: .95rem; color: rgba(246, 239, 224, 0.8); line-height: 1.7; }
.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(246, 239, 224, 0.15);
    text-align: center;
    font-size: .85rem;
    color: rgba(246, 239, 224, 0.6);
}

/* ---------- Lightbox ---------- */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(20, 14, 8, 0.95);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    flex-direction: column;
}
.lightbox.open { display: flex; }
.lightbox img {
    max-width: 95vw;
    max-height: 85vh;
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    border: 6px solid #fff;
}
.lightbox-caption {
    color: var(--cream);
    font-family: var(--ff-hand);
    font-size: 1.3rem;
    margin-top: 1rem;
    text-align: center;
}
.lightbox-close {
    position: absolute;
    top: 1rem; right: 1.5rem;
    color: #fff;
    font-size: 2.5rem;
    line-height: 1;
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ---------- Menu page specifics ---------- */
.page-hero {
    background: linear-gradient(rgba(44, 33, 24, 0.7), rgba(44, 33, 24, 0.7)), url('../img/interno_2.jpg') center/cover;
    color: #fff;
    text-align: center;
    padding: 5rem 1.25rem 4rem;
    margin-top: 0;
}
.page-hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: .75rem; }
.page-hero .eyebrow { color: var(--yellow); }
.page-hero p { max-width: 620px; margin: 0 auto; color: rgba(255,255,255,0.9); }

.menu-full { padding: 4rem 0; }
.menu-category {
    margin-bottom: 3rem;
    background: #fff;
    padding: 2rem 1.75rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--red);
}
.menu-category h2 {
    color: var(--green-dark);
    margin-bottom: .25rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.menu-category .cat-note {
    font-family: var(--ff-hand);
    color: var(--red);
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    display: block;
}
.menu-category .menu-list li { padding: .65rem 0; }
.menu-category .menu-list li + li { border-top: 1px dotted var(--line); }
.menu-back {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-bottom: 2rem;
    color: var(--ink-soft);
    font-weight: 500;
}
.menu-back:hover { color: var(--red); }

/* Descrizione ingredienti inline (usata nella sezione pizze) */
.pizza-base {
    font-family: var(--ff-hand);
    color: var(--red);
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    display: block;
}
.menu-list .dish .desc {
    color: var(--ink-soft);
    font-size: .88rem;
    font-style: italic;
}
.menu-list-highlight {
    background: linear-gradient(90deg, rgba(232, 178, 76, 0.18) 0%, transparent 100%);
    padding-left: .75rem !important;
    border-left: 3px solid var(--yellow);
}
.pizza-badge {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-family: var(--ff-body);
    font-size: .7rem;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-left: .4rem;
    vertical-align: middle;
    font-weight: 500;
}

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

:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 2px;
    border-radius: 2px;
}
