/* ================================================================
   SAGRA DELLA BISTECCA CHIANINA · SESTINO (AR) · v3
   Layout lineare a sezioni, pulito e diretto
   ================================================================ */

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

:root {
    --rosso:    #b8321c;
    --rosso-sc: #8a2414;
    --oro:      #c4893c;
    --oro-ch:   #e8a830;
    --crema:    #faf4ea;
    --avorio:   #f2ead8;
    --marrone:  #6d4c3a;
    --m-sc:     #3d1f0f;
    --verde:    #2a4a30;
    --g-sc:     #1e1410;
    --grigio:   #5a4a40;
    --bianco:   #ffffff;

    --ft: 'Playfair Display', Georgia, serif;
    --fb: 'Inter', system-ui, sans-serif;
    --r:  10px;
    --sh: 0 2px 14px rgba(0,0,0,.10);
    --sh2:0 6px 28px rgba(0,0,0,.18);
    --tr: .25s ease;
    --W:  1100px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--fb); color: var(--g-sc); background: var(--crema); line-height: 1.65; }
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
figure { margin: 0; }

.wrap { max-width: var(--W); margin-inline: auto; padding-inline: 1.5rem; }

/* Sfondi */
.bg-crema  { background: var(--crema); }
.bg-avorio { background: var(--avorio); }
.bg-bianco { background: var(--bianco); }
.bg-scuro  { background: var(--m-sc); color: #fff; }

/* Sezione generica */
.s-sezione { padding: 4.5rem 0; }

/* Titolo sezione */
.s-titolo { margin-bottom: 2.5rem; }
.s-titolo h2 { font-family: var(--ft); font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.15; }
.s-titolo h3 { font-family: var(--ft); font-size: 1.4rem; }
.s-titolo > p, .s-sub { color: var(--grigio); margin-top: .4rem; font-size: .95rem; }
.s-titolo--chiaro h2 { color: #fff; }
.s-titolo--chiaro .s-sub { color: rgba(255,255,255,.65); }

/* Chip / badge */
.chip {
    display: inline-block; font-size: .7rem; font-weight: 700;
    letter-spacing: .16em; text-transform: uppercase;
    background: rgba(184,50,28,.1); color: var(--rosso);
    padding: .3rem .9rem; border-radius: 50px; margin-bottom: .65rem;
}
.chip--oro   { background: rgba(228,168,48,.18); color: var(--oro-ch); }
.chip--viola { background: rgba(160,90,220,.18); color: #c07fff; }

/* Pulsanti */
.btn {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .68rem 1.55rem; border-radius: 50px;
    font-family: var(--fb); font-size: .92rem; font-weight: 600;
    border: 2px solid transparent; cursor: pointer;
    transition: transform var(--tr), background var(--tr), box-shadow var(--tr);
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-rosso   { background: var(--rosso); color: #fff; border-color: var(--rosso); }
.btn-rosso:hover { background: var(--rosso-sc); box-shadow: 0 4px 16px rgba(184,50,28,.4); }
.btn-outline { background: transparent; color: var(--rosso); border-color: var(--rosso); }
.btn-outline:hover { background: var(--rosso); color: #fff; }
.btn-oro     { background: var(--oro); color: var(--m-sc); border-color: var(--oro); font-weight: 700; }
.btn-oro:hover { background: var(--oro-ch); box-shadow: 0 4px 16px rgba(196,137,60,.4); }

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 900;
    padding: .85rem 1.5rem;
    transition: background var(--tr), box-shadow var(--tr), padding var(--tr);
}
.navbar.compatta {
    background: rgba(22,8,4,.94); backdrop-filter: blur(14px);
    padding: .5rem 1.5rem; box-shadow: 0 2px 18px rgba(0,0,0,.4);
}
.nav-inner { max-width: var(--W); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-left: 0; }
.nav-logo { display: flex; align-items: flex-start; color: #fff; flex-shrink: 0; margin-right: clamp(1rem, 2.5vw, 3rem); margin-left: -1rem; margin-top: -.75rem; }
.nav-logo-img { height: 100px; width: auto; display: block; object-fit: contain; transition: height var(--tr); }
.navbar.compatta .nav-logo-img { height: 52px; }

.nav-links { display: flex; align-items: center; gap: clamp(0.55rem, 1.2vw, 1.5rem); flex-wrap: nowrap; }
.nav-links a {
    color: rgba(255,255,255,.82); font-size: clamp(.7rem, 0.85vw, .82rem); font-weight: 500;
    position: relative; padding-bottom: 2px; transition: color var(--tr); white-space: nowrap;
}
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--oro-ch); transform: scaleX(0); transition: transform var(--tr); transform-origin: left; }
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }

/* Dropdown Menù */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: .3rem; }
.nav-dropdown > a::before { content: '▾'; font-size: .65rem; opacity: .7; order: 1; }

/* Ponte invisibile che riempie il gap tra link e pannello */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -1rem; right: -1rem;
    height: .75rem;
}

.nav-submenu {
    position: absolute; top: calc(100% + .75rem); left: 50%;
    transform: translateX(-50%);
    background: rgba(22,8,4,.96); backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.12); border-radius: 8px;
    padding: .5rem 0; min-width: 160px;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .2s ease, visibility .2s;
    box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
    opacity: 1; visibility: visible; pointer-events: auto;
}
.nav-submenu a {
    display: block; padding: .5rem 1.1rem; font-size: .8rem;
    color: rgba(255,255,255,.82); white-space: nowrap;
}
.nav-submenu a::after { display: none; }
.nav-submenu a:hover { color: var(--oro-ch); background: rgba(255,255,255,.06); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .2rem; z-index: 950; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform var(--tr), opacity var(--tr); }
.hamburger.aperto span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.aperto span:nth-child(2) { opacity: 0; }
.hamburger.aperto span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   1 · EVENTO (date + descrizione)
   ================================================================ */
.s-evento {
    background: linear-gradient(160deg, #3d1205 0%, #1a0704 100%);
    padding: 8rem 0 4.5rem; color: #fff; position: relative; overflow: hidden;
}
.s-evento::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse at 70% 40%, rgba(184,50,28,.25) 0%, transparent 60%);
}
.s-evento .wrap { position: relative; z-index: 1; }

.evento-header { margin-bottom: 2.5rem; }
.evento-header h1 { font-family: var(--ft); font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 800; line-height: 1.05; text-shadow: 0 2px 20px rgba(0,0,0,.4); }
.evento-header h1 em { color: var(--oro-ch); font-style: italic; }
.evento-luogo { font-size: 1rem; opacity: .75; letter-spacing: .07em; text-transform: uppercase; margin-top: .75rem; }

.evento-date-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.data-card { background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.2); border-radius: var(--r); padding: .85rem 1.4rem; display: flex; align-items: baseline; gap: .75rem; backdrop-filter: blur(4px); }
.dc-num { font-family: var(--ft); font-size: 3rem; font-weight: 800; color: var(--oro-ch); line-height: 1; }
.dc-txt { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; opacity: .7; line-height: 1.4; }
.data-sep { font-family: var(--ft); font-size: 1.8rem; color: rgba(255,255,255,.2); }
.data-anno { font-family: var(--ft); font-size: 2rem; font-weight: 700; color: var(--oro-ch); padding-left: .6rem; border-left: 2px solid rgba(228,168,48,.35); line-height: 1; }

.countdown-box { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.countdown-pre { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; opacity: .55; }
.countdown-num { display: flex; gap: 1rem; font-family: var(--ft); }
.countdown-num span { display: flex; flex-direction: column; align-items: center; color: var(--oro-ch); font-size: 1.4rem; font-weight: 800; line-height: 1; min-width: 2.6rem; text-align: center; }
.countdown-num small { font-family: var(--fb); font-size: .58rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .55; margin-top: .15rem; }

.evento-desc { max-width: 740px; margin-bottom: 2rem; }
.evento-desc p { font-size: .95rem; color: rgba(255,255,255,.78); line-height: 1.75; margin-bottom: .85rem; }
.evento-desc p strong { color: #fff; }
.evento-cta { display: flex; gap: .85rem; flex-wrap: wrap; }

/* ================================================================
   2 · FOTO PRINCIPALE
   ================================================================ */
.s-foto-evento { position: relative; }
.foto-principale { position: relative; margin: 0; }
.foto-principale-img { width: 100%; height: 500px; object-fit: cover; object-position: center 55%; display: block; }
.foto-principale figcaption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,.6), transparent);
    color: rgba(255,255,255,.7); font-size: .78rem; font-style: italic;
    padding: 2rem 1.5rem .75rem; text-align: center;
}
.foto-cifre {
    display: grid; grid-template-columns: repeat(4,1fr);
    background: var(--rosso-sc);
    margin-top: 2.5rem;
}
.fcifra { color: #fff; text-align: center; padding: 1.25rem 1rem; border-right: 1px solid rgba(255,255,255,.15); }
.fcifra:last-child { border-right: none; }
.fcifra strong { display: block; font-family: var(--ft); font-size: clamp(1.6rem,3vw,2.4rem); color: var(--oro-ch); line-height: 1; }
.fcifra span { font-size: .72rem; opacity: .72; text-transform: uppercase; letter-spacing: .05em; margin-top: .2rem; display: block; }

/* ================================================================
   3 · PROGRAMMA
   ================================================================ */
.prog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 2rem; }
.prog-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r); padding: 1.75rem; position: relative; transition: transform var(--tr), box-shadow var(--tr); }
.prog-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,.4); }
.prog-card--star { background: rgba(228,168,48,.1); border-color: rgba(228,168,48,.4); }
.prog-badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--oro); color: var(--m-sc); font-size: .64rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: .24rem .85rem; border-radius: 50px; white-space: nowrap; }
.prog-head { display: flex; align-items: baseline; gap: .6rem; margin-bottom: 1.2rem; padding-bottom: .9rem; border-bottom: 2px solid rgba(228,168,48,.45); }
.prog-n { font-family: var(--ft); font-size: 2.8rem; font-weight: 800; color: var(--oro-ch); line-height: 1; }
.prog-head > div { display: flex; flex-direction: column; gap: .15rem; }
.prog-head strong { font-family: var(--ft); font-size: 1.75rem; line-height: 1.05; color: #fff; }
.prog-head span { font-size: .82rem; opacity: 1; color: var(--oro-ch); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.prog-card--star .prog-head strong { color: var(--oro-ch); }
.prog-card ul { display: flex; flex-direction: column; gap: .8rem; }
.prog-card li { display: grid; grid-template-columns: 48px 1fr; gap: .5rem; font-size: .84rem; opacity: .82; }
.prog-card time { font-weight: 700; color: var(--oro-ch); opacity: 1; font-size: .78rem; }
.prog-nota { text-align: center; font-size: .72rem; opacity: .4; margin-top: 1.75rem; font-style: italic; }
/* Link alla locandina dell'evento */
.prog-locandina { display: inline-block; margin-top: .35rem; font-size: .68rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: var(--oro-ch); text-decoration: none; border: 1px solid rgba(228,168,48,.45); border-radius: 50px; padding: .12rem .6rem; white-space: nowrap; transition: background var(--tr), color var(--tr); }
.prog-locandina:hover { background: var(--oro-ch); color: var(--m-sc); }
/* Anteprima locandina (modale) */
.locandina-modal { position: fixed; inset: 0; background: rgba(0,0,0,.82); display: none; align-items: center; justify-content: center; z-index: 2000; padding: 2rem; }
.locandina-modal.aperta { display: flex; }
.locandina-modal img { max-width: min(88vw, 460px); max-height: 82vh; width: auto; height: auto; border-radius: 8px; box-shadow: 0 14px 44px rgba(0,0,0,.6); }
.locandina-close { position: absolute; top: 1.1rem; right: 1.3rem; width: 2.6rem; height: 2.6rem; border-radius: 50%; border: none; background: rgba(255,255,255,.16); color: #fff; font-size: 1.9rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--tr); }
.locandina-close:hover { background: rgba(255,255,255,.32); }
/* Box scarica programma PDF */
.dl-box { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r); padding: 1.5rem 1.75rem; margin-top: 2.5rem; }
.dl-box h3 { font-family: var(--ft); font-size: 1.35rem; color: #fff; margin-bottom: .25rem; }
.dl-box p { font-size: .9rem; color: rgba(255,255,255,.6); }
.dl-btns { display: flex; gap: .75rem; flex-wrap: wrap; }
@media (max-width: 560px) { .dl-box { flex-direction: column; align-items: stretch; text-align: center; } .dl-btns { justify-content: center; } }
/* Mappa dell'evento */
.mappa-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; margin-top: 2rem; }
.mappa-img { border-radius: var(--r); overflow: hidden; box-shadow: var(--sh2); }
.mappa-img img { width: 100%; height: auto; display: block; }
.mappa-legenda { display: flex; flex-direction: column; gap: 1.1rem; }
.mappa-legenda li { display: flex; align-items: flex-start; gap: .9rem; }
.mp-num { flex-shrink: 0; width: 2.1rem; height: 2.1rem; border-radius: 50%; color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 1rem; box-shadow: var(--sh); }
.mappa-legenda strong { display: block; font-family: var(--ft); font-size: 1.15rem; color: var(--m-sc); margin-bottom: .15rem; }
.mappa-legenda li > div span { font-size: .86rem; color: var(--grigio); line-height: 1.45; }
@media (max-width: 760px) { .mappa-layout { grid-template-columns: 1fr; gap: 1.75rem; } }
/* Parcheggi */
.park-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 1.25rem; margin-top: 2rem; }
.park-card { display: flex; align-items: flex-start; gap: .9rem; background: var(--crema); border: 1px solid rgba(0,0,0,.06); border-radius: var(--r); padding: 1.25rem; box-shadow: var(--sh); transition: transform var(--tr), box-shadow var(--tr); }
.park-card:hover { transform: translateY(-2px); box-shadow: var(--sh2); }
.park-icon { font-size: 1.8rem; flex-shrink: 0; line-height: 1; }
.park-card strong { display: block; font-family: var(--ft); font-size: 1.1rem; color: var(--m-sc); margin-bottom: .2rem; }
.park-card p { font-size: .85rem; color: var(--grigio); line-height: 1.45; }
.park-link { display: inline-block; margin-top: .5rem; font-size: .82rem; font-weight: 600; color: var(--rosso); text-decoration: none; }
.park-link:hover { text-decoration: underline; }
.dormire-zona { font-family: var(--ft); font-size: 1.2rem; color: var(--rosso); margin: 2.2rem 0 1rem; padding-bottom: .4rem; border-bottom: 2px solid rgba(196,137,60,.4); }
.dormire-zona:first-of-type { margin-top: 1.5rem; }

/* ================================================================
   3b · LA CHIANTINA — Area Dance & Drink
   ================================================================ */
.bg-notte {
    background: linear-gradient(160deg, #1c0932 0%, #0e0419 100%);
    color: #fff; position: relative; overflow: hidden;
}
.bg-notte::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse at 30% 60%, rgba(160,80,220,.15) 0%, transparent 55%),
                radial-gradient(ellipse at 80% 20%, rgba(228,168,48,.08) 0%, transparent 45%);
}
.bg-notte .wrap { position: relative; z-index: 1; }

.bg-notte .s-sub--chiaro { color: rgba(255,255,255,.55); }
.em-viola { color: #c07fff; font-style: italic; }

.chiantina-event-layout {
    display: grid; grid-template-columns: 1fr 400px; gap: 3.5rem; align-items: start;
}

.chiantina-col-testo > p {
    font-size: .95rem; color: rgba(255,255,255,.75); line-height: 1.75; margin-bottom: 1.1rem;
}
.chiantina-col-testo > p strong { color: #fff; }

.tarangi-box {
    display: flex; gap: 1rem; align-items: flex-start;
    background: rgba(255,255,255,.06); border: 1px solid rgba(228,168,48,.25);
    border-radius: var(--r); padding: 1.3rem; margin-bottom: 1.1rem;
}
.tarangi-icon { font-size: 2.4rem; flex-shrink: 0; line-height: 1; padding-top: .1rem; }
.tarangi-testo strong {
    display: block; font-family: var(--ft); font-size: 1.05rem;
    color: var(--oro-ch); margin-bottom: .45rem;
}
.tarangi-testo p { font-size: .84rem; color: rgba(255,255,255,.68); line-height: 1.65; margin: 0; }

.chiantina-dj {
    background: rgba(255,255,255,.05); border: 1px solid rgba(160,90,220,.25);
    border-radius: var(--r); padding: 1.3rem; margin-bottom: 1.4rem;
}
.chiantina-dj h3 { font-family: var(--ft); font-size: 1rem; color: #fff; margin-bottom: .5rem; }
.chiantina-dj p { font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.65; margin-bottom: .85rem; }
.chiantina-dj p strong { color: #fff; }
.dj-chips { display: flex; gap: .5rem; flex-wrap: wrap; }
.dj-chips span {
    background: rgba(160,80,220,.15); border: 1px solid rgba(160,80,220,.3);
    border-radius: 50px; padding: .28rem .85rem;
    font-size: .75rem; color: #c07fff; font-weight: 600;
}

.chiantina-stats {
    display: grid; grid-template-columns: repeat(4,1fr); gap: .75rem;
}
.cstat {
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r); padding: 1rem .75rem; text-align: center;
}
.cstat strong { display: block; font-family: var(--ft); font-size: 1.65rem; color: var(--oro-ch); line-height: 1; }
.cstat span { font-size: .65rem; opacity: .5; text-transform: uppercase; letter-spacing: .08em; margin-top: .25rem; display: block; }

.chiantina-col-foto { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; position: sticky; top: 90px; }
.chiantina-fig img {
    width: 100%; border-radius: var(--r); object-fit: cover;
    aspect-ratio: 4/3; box-shadow: 0 8px 32px rgba(0,0,0,.55); display: block;
    background: #200a38;
}
.chiantina-fig figcaption {
    font-size: .72rem; color: rgba(255,255,255,.38); font-style: italic;
    text-align: center; margin-top: .4rem;
}

/* ================================================================
   4 · MENÙ (con foto bistecca)
   ================================================================ */
.menu-layout { display: grid; grid-template-columns: 380px 1fr; gap: 3.5rem; align-items: start; }

/* Colonna foto */
.menu-foto-col { position: sticky; top: 90px; }
.bistecca-frame { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; background: #120503; box-shadow: 0 16px 48px rgba(0,0,0,.5), 0 0 0 1px rgba(228,168,48,.18); margin-bottom: 1.25rem; }
.bistecca-frame img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; display: block; }
.bistecca-frame img.nascosta { display: none; }
.bistecca-fallback { position: absolute; inset: 0; z-index: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .8rem; background: radial-gradient(ellipse at center, #3a1405 0%, #120503 70%); text-align: center; }
.bistecca-frame img.nascosta ~ .bistecca-fallback { z-index: 2; }
.brace-glow { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 80%, rgba(255,90,20,.2) 0%, transparent 60%); animation: bg-pulse 3s ease-in-out infinite alternate; }
@keyframes bg-pulse { from { opacity: .4; } to { opacity: 1; } }
.bistecca-fallback > span { font-size: 4rem; position: relative; z-index: 1; }
.bistecca-fallback p { color: rgba(255,255,255,.65); font-style: italic; font-size: .86rem; position: relative; z-index: 1; line-height: 1.5; }
.bistecca-fallback p strong { color: var(--oro-ch); }

.bistecca-info { background: var(--m-sc); color: #fff; border-radius: var(--r); padding: 1.35rem; margin-bottom: 1rem; }
.bistecca-info h3 { font-family: var(--ft); font-size: 1.1rem; color: var(--oro-ch); margin-bottom: .55rem; }
.bistecca-info p { font-size: .84rem; color: rgba(255,255,255,.75); line-height: 1.65; margin-bottom: .85rem; }
.bistecca-info p strong { color: #fff; }
.bistecca-chips { display: flex; flex-direction: column; gap: .35rem; }
.bistecca-chips li { font-size: .76rem; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 50px; padding: .3rem .85rem; color: rgba(255,255,255,.7); text-align: center; }

.chiantina-box { background: linear-gradient(135deg, var(--m-sc), #280c04); border-radius: var(--r); padding: 1.35rem; border: 1px solid rgba(228,168,48,.2); }
.chiantina-label { font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--oro-ch); display: block; margin-bottom: .4rem; }
.chiantina-box h4 { font-family: var(--ft); font-size: 1.2rem; color: #fff; margin-bottom: .65rem; }
.chiantina-box h4 em { color: var(--oro-ch); font-style: italic; }
.chiantina-box p { font-size: .82rem; color: rgba(255,255,255,.72); line-height: 1.65; margin-bottom: .9rem; }
.chiantina-box p strong { color: #fff; }
.chiantina-eq { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.chiantina-eq span { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 50px; padding: .3rem .8rem; font-size: .78rem; color: rgba(255,255,255,.75); }
.chiantina-eq strong { color: var(--oro-ch); font-family: var(--ft); font-size: 1.1rem; }
.eq-res { background: rgba(228,168,48,.18) !important; border-color: rgba(228,168,48,.4) !important; color: var(--oro-ch) !important; font-weight: 700; }

/* Colonna voci menù */
.menu-voci { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.menu-col { display: flex; flex-direction: column; gap: 1.1rem; }
.menu-cat { background: #fff; border-radius: var(--r); padding: 1.35rem; box-shadow: var(--sh); border: 1px solid rgba(0,0,0,.055); position: relative; transition: transform var(--tr), box-shadow var(--tr); }
.menu-cat:hover { transform: translateY(-2px); box-shadow: var(--sh2); }
.menu-cat--re { background: linear-gradient(135deg,#fff8ef,#fff3e0); border: 2px solid var(--oro); }
.re-badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--rosso); color: #fff; font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: .24rem .85rem; border-radius: 50px; white-space: nowrap; }
.menu-cat h3 { font-family: var(--ft); font-size: .95rem; color: var(--m-sc); margin-bottom: .8rem; }
#menu .menu-cat h3 { font-size: 1.35rem; color: var(--rosso); margin-bottom: 1rem; padding-bottom: .55rem; border-bottom: 2px solid rgba(196,137,60,.5); letter-spacing: .2px; }
#menu .menu-cat--re h3 { font-size: 1.5rem; border-bottom-color: var(--oro); }
.menu-day-title { font-family: var(--ft); font-size: 1.6rem; color: var(--rosso); display: inline-block; margin: .4rem 0; padding: .35rem 1.5rem; border-top: 2px solid var(--oro); border-bottom: 2px solid var(--oro); letter-spacing: .3px; }
#menu .menu-cat ul { gap: .7rem; }
#menu .menu-cat li { font-size: 1rem; color: var(--g-sc); font-weight: 500; line-height: 1.55; }
#menu .menu-cat li::before { font-size: 1.1rem; }
#menu .menu-cat li strong { font-weight: 700; }
.menu-servizio { display: flex; align-items: center; gap: 1.1rem; background: linear-gradient(135deg,#fff8ef,#fff3e0); border: 2px solid var(--oro); border-radius: var(--r); padding: 1.15rem 1.5rem; margin-bottom: 2rem; box-shadow: var(--sh); }
.menu-servizio-icon { font-size: 2rem; flex-shrink: 0; }
.menu-servizio p { font-size: 1rem; color: var(--m-sc); line-height: 1.55; margin: 0; }
.menu-servizio strong { color: var(--rosso); }
.menu-cat ul { display: flex; flex-direction: column; gap: .45rem; }
.menu-cat li { font-size: .84rem; color: var(--grigio); padding-left: .75rem; position: relative; line-height: 1.45; display: flex; justify-content: space-between; align-items: baseline; gap: .75rem; }
.menu-cat li::before { content: '·'; position: absolute; left: 0; color: var(--rosso); font-weight: 700; }
.menu-cat li > span:first-child { flex: 1; min-width: 0; }
.menu-cat li strong { color: var(--m-sc); }
.menu-cat li em { font-style: italic; color: var(--marrone); font-size: .8rem; }
.prezzo { font-weight: 700; color: var(--rosso); white-space: nowrap; font-size: .82rem; flex-shrink: 0; }
.allerg { font-size: .65rem; color: #bbb; font-weight: 400; margin-left: .15rem; }
.surgelato { color: var(--rosso); font-weight: 700; font-size: .75rem; }
.menu-nota { font-size: .74rem; color: var(--rosso); font-weight: 600; font-style: italic; margin-top: .7rem; }
.menu-note { background: rgba(0,0,0,.03); border-radius: var(--r); padding: .9rem 1.1rem; border: 1px solid rgba(0,0,0,.07); margin-top: .25rem; }
.menu-note p { font-size: .73rem; color: #999; line-height: 1.55; margin-bottom: .3rem; }
.menu-note p:last-child { margin-bottom: 0; }
.allerg-key { font-style: italic; }

/* ================================================================
   2b · LA NOSTRA STORIA
   ================================================================ */
.storia-layout { display: grid; grid-template-columns: 1fr 380px; gap: 3.5rem; align-items: start; }
.storia-testo p { color: var(--grigio); line-height: 1.75; margin-bottom: 1rem; font-size: .95rem; }
.storia-testo p strong { color: var(--m-sc); }
.storia-regina { display: inline-block; color: var(--rosso); font-style: italic; font-family: 'Playfair Display', serif; font-size: 1.1em; margin-top: .2rem; }

/* Organizzatori */
.storia-org { margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid rgba(0,0,0,.08); }
.storia-org-grid { display: grid; grid-template-columns: 160px 1fr; gap: 2.5rem; align-items: center; }
.org-fig { display: flex; flex-direction: column; align-items: center; }
.org-fig img { width: 150px; height: 150px; object-fit: contain; border-radius: 50%; box-shadow: var(--sh2); }
.org-logo-fallback { width: 150px; height: 150px; border-radius: 50%; background: var(--m-sc); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .3rem; }
.org-logo-fallback strong { font-family: var(--ft); font-size: 1rem; letter-spacing: .05em; }
.org-logo-fallback span { font-size: .7rem; letter-spacing: .1em; opacity: .7; text-transform: uppercase; }
.storia-org-testo h3 { font-family: var(--ft); font-size: 1.35rem; color: var(--m-sc); margin-bottom: .9rem; }
.storia-org-testo h3 em { color: var(--rosso); font-style: italic; }
.storia-org-testo p { color: var(--grigio); line-height: 1.75; margin-bottom: .75rem; font-size: .93rem; }
.storia-org-testo p strong { color: var(--m-sc); }
.org-grazie { font-style: italic; color: var(--marrone) !important; font-size: 1rem !important; }

/* Patrocinio item principale */
.patrocinio-item--main { font-weight: 700; color: var(--oro-ch) !important; border-color: rgba(228,168,48,.4) !important; background: rgba(228,168,48,.1) !important; font-size: .9rem !important; }

/* ================================================================
   5 · INFO SESTINO
   ================================================================ */
.sestino-layout { display: grid; grid-template-columns: 1fr 380px; gap: 3.5rem; align-items: start; }
.sestino-testo p { color: var(--grigio); line-height: 1.75; margin-bottom: 1rem; font-size: .95rem; }
.sestino-testo p strong { color: var(--m-sc); }
.sestino-testo p em { font-style: italic; }

.sestino-chips { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1.75rem; }
.sestino-chips span { background: rgba(184,50,28,.08); color: var(--rosso-sc); border: 1px solid rgba(184,50,28,.2); border-radius: 50px; padding: .28rem .8rem; font-size: .75rem; font-weight: 600; }

.sestino-come { background: var(--avorio); border-radius: var(--r); padding: 1.35rem; border: 1px solid rgba(0,0,0,.07); }
.sestino-come h3 { font-family: var(--ft); font-size: 1rem; color: var(--m-sc); margin-bottom: .75rem; }
.sestino-come li { font-size: .85rem; color: var(--grigio); padding: .3rem 0; border-bottom: 1px solid rgba(0,0,0,.06); }
.sestino-come li:last-child { border-bottom: none; }
.sestino-come li strong { color: var(--m-sc); }
.sestino-sede { font-size: .83rem; color: var(--grigio); margin-bottom: .75rem; }
.sestino-parcheggi { font-size: .82rem; color: var(--grigio); margin-top: .85rem; line-height: 1.55; }

.sestino-foto-col { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 1rem; }
.sestino-fig img { width: 100%; border-radius: var(--r); object-fit: cover; aspect-ratio: 16/10; box-shadow: var(--sh2); display: block; }
.sestino-fig figcaption { font-size: .72rem; color: var(--grigio); font-style: italic; text-align: center; margin-top: .4rem; }

/* ================================================================
   6 · PUNTI D'INTERESSE
   ================================================================ */
.luoghi-lista { display: flex; flex-direction: column; gap: 0; border: 1px solid rgba(0,0,0,.08); border-radius: 14px; overflow: hidden; margin-bottom: 3rem; box-shadow: var(--sh); }

.luogo { display: grid; grid-template-columns: 56px 1fr; background: #fff; border-bottom: 1px solid rgba(0,0,0,.07); transition: background var(--tr); }
.luogo:last-child { border-bottom: none; }
.luogo:hover { background: #fffaf4; }

.luogo-num { background: var(--avorio); color: var(--rosso); font-family: var(--ft); font-size: 1.1rem; font-weight: 800; display: flex; align-items: flex-start; justify-content: center; padding-top: 1.5rem; border-right: 1px solid rgba(0,0,0,.07); }

.luogo-body { padding: 1.4rem 1.6rem; }
.luogo-head { display: flex; align-items: flex-start; gap: .85rem; margin-bottom: .65rem; }
.luogo-ico { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.luogo-head > div { display: flex; flex-direction: column; gap: .2rem; }
.luogo-body h3 { font-family: var(--ft); font-size: 1.08rem; color: var(--m-sc); margin: 0; }
.luogo-body > p { font-size: .87rem; color: var(--grigio); line-height: 1.65; }
.luogo-body p strong { color: var(--m-sc); }
.luogo-body p em { font-style: italic; }

.luogo-foto { margin-top: 1rem; }
.luogo-foto img { width: 100%; max-height: 320px; object-fit: cover; border-radius: var(--r); }

.luogo-tag { display: inline-block; font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .2rem .6rem; border-radius: 4px; }
.tag-cultura { background: rgba(184,50,28,.1);  color: var(--rosso-sc); }
.tag-fede    { background: rgba(85,85,170,.1);  color: #4a4a9a; }
.tag-natura  { background: rgba(42,74,48,.1);   color: var(--verde); }
.tag-storia  { background: rgba(109,76,58,.1);  color: var(--marrone); }
.tag-gusto   { background: rgba(196,137,60,.12);color: #7a4a18; }


/* Mappa */
.mappa-wrap { margin-top: 3rem; }
.mappa-clip { border-radius: 14px; overflow: hidden; box-shadow: var(--sh2); border: 3px solid var(--rosso); margin-bottom: 1.25rem; }
#mappa-leaflet { width: 100%; height: 600px; display: block; }
.leaflet-popup-content-wrapper { border-radius: var(--r) !important; box-shadow: var(--sh2) !important; }
.leaflet-popup-content { font-family: var(--fb) !important; font-size: .83rem !important; line-height: 1.55 !important; }
.popup-titolo { font-family: var(--ft) !important; font-size: .98rem !important; font-weight: 700 !important; color: var(--m-sc) !important; margin-bottom: .3rem !important; }
.popup-tag { display: inline-block; font-size: .58rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .14rem .48rem; border-radius: 4px; margin-bottom: .4rem; }

.mappa-legenda { padding: .75rem 0 0; }
.mappa-legenda span { font-size: .78rem; color: var(--grigio); font-style: italic; }

/* ================================================================
   7 · SPONSOR
   ================================================================ */
.sponsor-grid { display: flex; flex-wrap: wrap; gap: .5rem .65rem; justify-content: center; align-items: center; margin-bottom: 2.5rem; }
/* Forza l'a capo: ogni fascia di dimensione su una nuova riga */
.sponsor-break { flex-basis: 100%; width: 100%; height: 0; margin: 0; }
/* Ogni logo dentro un riquadro che si adatta alle sue dimensioni */
.sponsor-slot {
    box-sizing: border-box; display: inline-flex; align-items: center; justify-content: center;
    background: #fff; border-radius: var(--r); padding: .55rem; box-shadow: var(--sh);
    transition: transform var(--tr), box-shadow var(--tr);
}
.sponsor-slot:hover { transform: translateY(-3px); box-shadow: var(--sh2); }
.sponsor-slot--dark { background: #fff; }
.sponsor-slot--dark img { background: #000; padding: .35rem .6rem; border-radius: 6px; }
.sponsor-slot img { display: block; width: auto; height: auto; }
/* Riquadro-testo per gli sponsor ancora senza logo */
.sponsor-slot--txt { text-align: center; }
.sponsor-slot--txt span { font-size: .82rem; font-weight: 700; color: var(--m-sc); line-height: 1.25; }
.sponsor-slot--txt.s-400 span, .sponsor-slot--txt.s-300 span, .sponsor-slot--txt.s-150 span { font-size: 1rem; }
.sponsor-slot--txt.s-100 span { font-size: .88rem; }
/* Altezza del logo proporzionale al contributo: 100 = doppio di 50, 150 = triplo, ecc. */
.s-400 img { height: 440px; }
.s-300 img { height: 330px; }
.s-200 img { height: 220px; }
.s-150 img { height: 165px; }
.s-100 img { height: 110px; }
.s-50  img { height: 55px; }
.s-20  img { height: 22px; }
.s-fix img { height: 50px; }
/* Riquadri-testo (senza logo): altezza minima della fascia + larghezza per il nome */
.sponsor-slot--txt.s-100 { min-height: 110px; width: 175px; }
.sponsor-slot--txt.s-50 { min-height: 55px; width: 158px; }
.sponsor-slot--txt.s-20 { min-height: 46px; width: 130px; }
.sponsor-slot--txt.s-fix { min-height: 50px; width: 140px; }
/* Su schermi piccoli riduco le altezze mantenendo le proporzioni */
@media (max-width: 680px) {
    .s-400 img { height: 240px; }
    .s-300 img { height: 180px; }
    .s-200 img { height: 120px; }
    .s-150 img { height: 90px; }
    .s-100 img { height: 60px; }
    .s-50  img { height: 30px; }
    .s-fix img { height: 28px; }
}
.sponsor-sublabel { width: 100%; text-align: center; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); margin: 1.4rem 0 .2rem; }
.sponsor-cta { text-align: center; padding: 1.5rem; background: rgba(255,255,255,.06); border-radius: var(--r); margin-bottom: 2rem; }
.sponsor-cta p { color: rgba(255,255,255,.68); font-size: .9rem; margin-bottom: 1rem; }

/* ================================================================
   GALLERY / CAROSELLO
   ================================================================ */
.carousel-wrap { position: relative; margin-bottom: 1.5rem; }
.carousel-track-wrap { overflow: hidden; border-radius: 16px; }
.carousel-track { display: flex; transition: transform .45s cubic-bezier(.4,0,.2,1); }
.car-slide { flex-shrink: 0; width: 100%; cursor: zoom-in; margin: 0; }
.car-slide img { width: 100%; height: 560px; object-fit: cover; display: block; }
.car-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,.55); color: #fff; border: none;
    width: 52px; height: 52px; border-radius: 50%; font-size: 2rem; line-height: 1;
    cursor: pointer; z-index: 10; transition: background var(--tr);
    display: flex; align-items: center; justify-content: center;
}
.car-btn:hover { background: rgba(0,0,0,.85); }
.car-btn--prev { left: 1rem; }
.car-btn--next { right: 1rem; }
.carousel-dots { display: flex; justify-content: center; gap: .55rem; margin-top: 1.25rem; }
.car-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.25); border: none; cursor: pointer; padding: 0; transition: background var(--tr), transform var(--tr); }
.car-dot.attivo { background: var(--oro-ch); transform: scale(1.35); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.93); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s; }
.lightbox.aperta { opacity: 1; pointer-events: all; }
.lb-img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: 8px; box-shadow: 0 8px 40px rgba(0,0,0,.6); }
.lb-close { position: absolute; top: 1.25rem; right: 1.5rem; background: none; border: none; color: #fff; font-size: 2.2rem; line-height: 1; cursor: pointer; opacity: .75; transition: opacity var(--tr); }
.lb-close:hover { opacity: 1; }

/* ================================================================
   7b · CONTATTI PRO LOCO
   ================================================================ */
.proloco-grid { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: start; margin-bottom: 2.5rem; }
.proloco-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r); padding: 2rem; display: flex; flex-direction: column; gap: 1.4rem; }
.proloco-item { display: flex; align-items: flex-start; gap: 1rem; }
.proloco-icon { font-size: 1.4rem; line-height: 1; flex-shrink: 0; }
.proloco-item div { display: flex; flex-direction: column; gap: .2rem; }
.proloco-item strong { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.proloco-item span { font-size: .95rem; color: rgba(255,255,255,.8); }
.proloco-link { font-size: .95rem; color: var(--oro-ch); text-decoration: none; }
.proloco-link:hover { text-decoration: underline; }
.proloco-mappa-cta { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.25rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r); padding: 2rem; text-align: center; }
.proloco-mappa-cta p { color: rgba(255,255,255,.65); font-size: .9rem; line-height: 1.5; }

.patrocinio { border-top: 1px solid rgba(255,255,255,.1); padding-top: 2rem; }
.patrocinio-label { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: .9rem; }
.patrocinio-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.patrocinio-item { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 50px; padding: .5rem 1.1rem; font-size: .8rem; color: rgba(255,255,255,.65); }

/* ================================================================
   RECENSIONI GOOGLE
   ================================================================ */
.rec-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 2.5rem; background: #fff; border-radius: var(--r); padding: 1.5rem 2rem; box-shadow: var(--sh); }
.rec-score { display: flex; flex-direction: column; gap: .3rem; }
.rec-num { font-family: var(--ft); font-size: 3rem; font-weight: 800; color: var(--m-sc); line-height: 1; }
.rec-stars { font-size: 1.6rem; color: #f5a623; letter-spacing: .05em; }
.rec-stars .star.empty { color: #ddd; }
.rec-score small { font-size: .75rem; color: var(--grigio); }
.rec-g-badge { font-size: 1.5rem; font-weight: 700; letter-spacing: -.02em; }

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

.rec-card { background: #fff; border-radius: var(--r); padding: 1.25rem; box-shadow: var(--sh); border: 1px solid rgba(0,0,0,.055); display: flex; flex-direction: column; gap: .75rem; transition: transform var(--tr), box-shadow var(--tr); }
.rec-card:hover { transform: translateY(-3px); box-shadow: var(--sh2); }
.rec-card--critica { border-color: rgba(184,50,28,.2); background: #fff9f8; }

.rec-top { display: flex; align-items: center; gap: .75rem; }
.rec-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--rosso); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 700; flex-shrink: 0; }
.rec-avatar--critica { background: #c0392b; }
.rec-top > div:nth-child(2) { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: .1rem; }
.rec-top strong { font-size: .88rem; color: var(--m-sc); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rec-data { font-size: .72rem; color: var(--grigio); }

.rec-card-stars { font-size: .95rem; color: #f5a623; white-space: nowrap; }
.rec-card-stars.rec-4 { color: #f5a623; }
.rec-card-stars.rec-1 { color: var(--rosso); }

.rec-card p { font-size: .85rem; color: var(--grigio); line-height: 1.6; font-style: italic; flex: 1; }

/* ================================================================
   FOOTER
   ================================================================ */
/* ================================================================
   PAGE HERO (sub-pages)
   ================================================================ */
.page-hero { padding: 6rem 0 3rem; text-align: center; }
.page-hero .chip { margin-bottom: .75rem; display: inline-block; }
.page-hero h1 { font-family: var(--ft); font-size: clamp(2rem,5vw,3.2rem); color: #fff; margin-bottom: .75rem; }
.page-hero-sub { font-size: 1rem; color: rgba(255,255,255,.65); max-width: 560px; margin-inline: auto; line-height: 1.6; }

/* Tab sottosezioni menù (Cibo / Vini) */
.menu-tabs { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }
.btn-outline--chiaro { color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline--chiaro:hover { background: #fff; color: var(--m-sc); border-color: #fff; }

/* Nav link attivo */
.nav-links a[aria-current="page"] { color: var(--oro-ch); font-weight: 700; }

/* ================================================================
   CTA CARDS
   ================================================================ */
.cta-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: .5rem; }
.cta-card { background: #fff; border-radius: var(--r); padding: 2rem 1.75rem; box-shadow: var(--sh); text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: .75rem; border-bottom: 3px solid transparent; transition: border-color var(--tr), transform .25s, box-shadow var(--tr); }
.cta-card:hover { border-color: var(--rosso); transform: translateY(-4px); box-shadow: var(--sh2); }
.cta-icon { font-size: 2.2rem; line-height: 1; }
.cta-card h3 { font-family: var(--ft); font-size: 1.25rem; color: var(--m-sc); }
.cta-card p { font-size: .88rem; color: var(--grigio); line-height: 1.6; flex: 1; }
.cta-link { font-size: .82rem; font-weight: 700; color: var(--rosso); letter-spacing: .02em; }

.footer { background: #100803; color: #fff; padding: 2.5rem 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; text-align: center; }
.footer-brand { display: flex; align-items: center; gap: .75rem; font-size: .9rem; font-family: var(--ft); line-height: 1.4; }
.footer-brand > span:first-child { font-size: 1.5rem; }
.footer-nav { display: flex; gap: 1.35rem; flex-wrap: wrap; justify-content: center; }
.footer-nav a { font-size: .78rem; opacity: .45; transition: opacity var(--tr); }
.footer-nav a:hover { opacity: 1; }
.footer-copy { font-size: .72rem; opacity: .35; line-height: 1.55; }

/* ================================================================
   ANIMAZIONE SCROLL-IN
   ================================================================ */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.fade-in.visibile { opacity: 1; transform: translateY(0); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 960px) {
    .cta-grid { grid-template-columns: 1fr 1fr; }
    .menu-layout { grid-template-columns: 1fr; }
    .menu-voci { grid-template-columns: 1fr; }
    .menu-foto-col { position: static; }
    .bistecca-frame { max-width: 480px; }
    .storia-layout { grid-template-columns: 1fr; }
    .storia-org-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
    .sestino-layout { grid-template-columns: 1fr; }
    .sestino-foto-col { position: static; flex-direction: row; }
    .sestino-fig { flex: 1; }
    .sponsor-grid { grid-template-columns: repeat(3,1fr); }
    .proloco-grid { grid-template-columns: 1fr; }
    .chiantina-event-layout { grid-template-columns: 1fr; }
    .chiantina-col-foto { position: static; flex-direction: row; }
    .chiantina-fig { flex: 1; }
}

@media (max-width: 768px) {
    .cta-grid { grid-template-columns: 1fr; }
    .prog-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
    .foto-cifre { grid-template-columns: repeat(2,1fr); }
    .fcifra { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
    .fcifra:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12); }
    .fcifra:last-child { border-bottom: none; }
    .sestino-foto-col { flex-direction: column; }
    .car-slide img { height: 340px; }
    .sponsor-grid { grid-template-columns: repeat(3,1fr); }
    .proloco-grid { grid-template-columns: 1fr; }
    .patrocinio-row { flex-direction: column; }
    #mappa-leaflet { height: 380px; }
}

@media (max-width: 860px) {
    .nav-links {
        position: fixed; top: 0; left: 0; right: 0; height: 100svh;
        background: rgba(20,6,4,.97);
        flex-direction: column; justify-content: center; align-items: center;
        gap: 1.8rem; transform: translateX(100%);
        transition: transform .3s cubic-bezier(.4,0,.2,1); z-index: 800;
    }
    .nav-links.aperto { transform: translateX(0); }
    .nav-links a { font-size: 1.1rem; white-space: normal; }
    .hamburger { display: flex; }

    .s-evento { padding: 7rem 0 3.5rem; }
    .evento-header h1 { font-size: clamp(2.2rem, 9vw, 3.2rem); }
    .evento-date-row { gap: .6rem; }
    .data-card { padding: .7rem 1rem; }
    .dc-num { font-size: 2.4rem; }
    .foto-principale-img { height: 280px; }
    .luogo { grid-template-columns: 40px 1fr; }
    .luogo-num { font-size: .9rem; padding-top: 1.4rem; }
    .car-slide img { height: 240px; }
    .car-btn { width: 38px; height: 38px; font-size: 1.5rem; }
    .car-btn--prev { left: .4rem; }
    .car-btn--next { right: .4rem; }
    .sponsor-grid { grid-template-columns: repeat(2,1fr); }
    .proloco-mappa-cta { padding: 1.25rem; }
    #mappa-leaflet { height: 300px; }
    .s-sezione { padding: 3.5rem 0; }
    .chiantina-eq { gap: .4rem; }
    .chiantina-col-foto { flex-direction: column; }
    .chiantina-stats { grid-template-columns: repeat(2,1fr); }
    .tarangi-box { flex-direction: column; gap: .65rem; }
}