/* ===== COLOR PALETTE from poster ===== */
:root {
    --cream: #fdf6ed;
    --cream-dark: #f3e8d5;
    --white: #ffffff;
    --pink: #d4507a;
    --pink-light: #f2d0dc;
    --pink-dark: #b03860;
    --green: #4d8b31;
    --green-light: #e8f2e0;
    --green-dark: #35611f;
    --teal: #3a9e96;
    --teal-light: #d5f0ed;
    --purple: #7b5ea7;
    --purple-light: #ede5f5;
    --brown: #3d2c1e;
    --brown-light: #6b5744;
    --text: #2d2015;
    --text-muted: #7a6b5a;
    --text-light: #a89882;
    --border: rgba(61, 44, 30, 0.08);
    --shadow-sm: 0 2px 8px rgba(61, 44, 30, 0.06);
    --shadow-md: 0 8px 30px rgba(61, 44, 30, 0.08);
    --shadow-lg: 0 20px 60px rgba(61, 44, 30, 0.1);
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --container: 1140px;
}

/* ===== CUSTOM CURSOR GLOW ===== */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 80, 122, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

/* ===== FLOATING PARTICLES ===== */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

/* ===== ORGANIC BLOB SHAPES ===== */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
    animation: blobMorph 12s ease-in-out infinite alternate;
}

@keyframes blobMorph {
    0% { border-radius: 50% 40% 60% 50% / 40% 50% 50% 60%; transform: rotate(0deg) scale(1); }
    33% { border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%; }
    66% { border-radius: 60% 50% 40% 50% / 50% 60% 50% 40%; }
    100% { border-radius: 50% 40% 60% 50% / 60% 50% 40% 50%; transform: rotate(60deg) scale(1.1); }
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; color: inherit; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
    position: relative;
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--teal), var(--green));
    z-index: 1001;
    transform-origin: left;
    transform: scaleX(0);
    transition: none;
}

/* ===== ANIMATIONS ===== */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
    filter: blur(4px);
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

[data-animate="fade-left"] {
    transform: translateX(-50px) translateY(0);
}
[data-animate="fade-left"].is-visible {
    transform: translateX(0) translateY(0);
}

[data-animate="fade-right"] {
    transform: translateX(50px) translateY(0);
}
[data-animate="fade-right"].is-visible {
    transform: translateX(0) translateY(0);
}

[data-animate="scale-in"] {
    transform: scale(0.85);
}
[data-animate="scale-in"].is-visible {
    transform: scale(1);
}

[data-animate="zoom-rotate"] {
    transform: scale(0.8) rotate(-3deg);
}
[data-animate="zoom-rotate"].is-visible {
    transform: scale(1) rotate(0deg);
}

/* ===== TYPOGRAPHY ===== */
.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--pink-light), rgba(212, 80, 122, 0.08));
    padding: 6px 16px;
    border-radius: 100px;
    position: relative;
    overflow: hidden;
}

.section-label::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    animation: labelShine 4s ease-in-out infinite;
}

@keyframes labelShine {
    0%, 100% { left: -100%; }
    50% { left: 150%; }
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--brown);
}

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

.section-title em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--pink-light);
    border-radius: 3px;
    z-index: -1;
    opacity: 0.6;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-subtitle {
    max-width: 560px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.35s var(--ease);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: #fff;
    box-shadow: 0 4px 16px rgba(212, 80, 122, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--pink-dark), #9e2d52);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(212, 80, 122, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--brown);
    border: 1.5px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--pink);
    color: var(--pink);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 0.95rem;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.35s var(--ease);
}

.navbar.scrolled {
    background: rgba(253, 246, 237, 0.85);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    padding: 10px 0;
    box-shadow: 0 1px 12px rgba(61, 44, 30, 0.06);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-festa {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.logo-pestith {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--pink);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pink);
    border-radius: 2px;
    transition: width 0.4s var(--ease);
}

.nav-links a:hover {
    color: var(--pink);
}

.nav-links a:hover::after,
.nav-links a.nav-active::after {
    width: 100%;
}

.nav-links a.nav-active {
    color: var(--pink);
}

.nav-cta {
    padding: 9px 22px !important;
    background: var(--pink) !important;
    color: #fff !important;
    border-radius: 100px;
}

.nav-cta:hover {
    background: var(--pink-dark) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 26px;
    padding: 4px 0;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--brown);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-bg {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, var(--cream), transparent);
    z-index: 1;
    pointer-events: none;
}

.hero-bg-img {
    width: 100%;
    height: auto;
    display: block;
    animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.06); }
}

.hero-bottom {
    background: var(--cream);
    position: relative;
}

.hero-bottom-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 32px 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-info {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-date-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brown);
}

.hero-date-badge svg {
    color: var(--pink);
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ===== ABOUT ===== */
.about {
    background: var(--white);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 64px;
}

.about-text .section-title {
    margin-bottom: 16px;
}

.about-lead {
    font-size: 1.05rem;
    color: var(--brown);
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-text p {
    color: var(--text-muted);
    font-size: 0.93rem;
    margin-bottom: 12px;
}

.about-images {
    position: relative;
}

.about-images::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 3px solid var(--pink-light);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.5;
    animation: decorRotate 20s linear infinite;
}

@keyframes decorRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.about-images::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 20%;
    width: 80px;
    height: 80px;
    background: var(--green-light);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.4;
    animation: decorPulse 4s ease-in-out infinite;
}

@keyframes decorPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.about-img-main:hover img {
    transform: scale(1.03);
}

.about-img-secondary {
    position: absolute;
    bottom: -32px;
    left: -32px;
    width: 50%;
    border-radius: var(--radius);
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-md);
}

.about-img-secondary img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat-card {
    text-align: center;
    background: var(--cream);
    padding: 28px 16px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
    position: relative;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(212, 80, 122, 0.1);
    border-color: var(--pink-light);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--pink);
    display: inline;
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--pink);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 6px;
    font-weight: 500;
}

/* ===== COUNTDOWN ===== */
.countdown-section {
    background: var(--cream);
    padding: 80px 0;
    overflow: hidden;
}

.countdown-card {
    background: linear-gradient(135deg, var(--brown) 0%, #52392a 50%, #3d2c1e 100%);
    background-size: 200% 200%;
    animation: countdownGradient 8s ease-in-out infinite;
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@keyframes countdownGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.countdown-card::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 80, 122, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.countdown-card::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(77, 139, 49, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.countdown-text {
    position: relative;
    z-index: 1;
    margin-bottom: 36px;
}

.countdown-text .section-label {
    background: rgba(212, 80, 122, 0.2);
    color: var(--pink-light);
}

.countdown-text .section-title {
    color: #fff;
}

.countdown-text .section-title em {
    color: var(--pink-light);
}

.countdown-timer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 20px 24px;
    min-width: 100px;
    backdrop-filter: blur(4px);
    transition: all 0.4s var(--ease);
}

.countdown-unit:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(212, 80, 122, 0.3);
    box-shadow: 0 0 30px rgba(212, 80, 122, 0.15);
    transform: translateY(-4px);
}

.countdown-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
    transition: transform 0.3s var(--ease);
}

.countdown-number.tick {
    animation: countTick 0.4s var(--ease);
}

@keyframes countTick {
    0% { transform: translateY(0) scale(1); }
    30% { transform: translateY(-4px) scale(1.08); }
    100% { transform: translateY(0) scale(1); }
}

.countdown-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 8px;
}

.countdown-sep {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0.25);
    padding-bottom: 20px;
}

.countdown-cta {
    position: relative;
    z-index: 1;
}

.countdown-cta .btn-primary {
    background: var(--pink);
    box-shadow: 0 4px 20px rgba(212, 80, 122, 0.3);
}

.countdown-cta .btn-primary:hover {
    background: var(--pink-dark);
    box-shadow: 0 8px 32px rgba(212, 80, 122, 0.4);
}

@media (max-width: 640px) {
    .countdown-section { padding: 56px 0; }

    .countdown-card {
        padding: 40px 20px;
        border-radius: var(--radius-lg);
    }

    .countdown-timer {
        gap: 4px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .countdown-unit {
        min-width: 72px;
        padding: 14px 12px;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 0.6rem;
        margin-top: 6px;
    }

    .countdown-sep {
        font-size: 1.5rem;
        padding-bottom: 14px;
    }
}

@media (max-width: 380px) {
    .countdown-unit { min-width: 64px; padding: 12px 8px; }
    .countdown-number { font-size: 1.7rem; }
    .countdown-sep { font-size: 1.2rem; }
}

/* ===== MANIFESTO ===== */
.manifesto {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    inset: -15%;
    z-index: 0;
}

.parallax-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.manifesto-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(61, 44, 30, 0.65), rgba(77, 139, 49, 0.45));
    z-index: 1;
}

.manifesto .container {
    position: relative;
    z-index: 2;
}

.manifesto-quote {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

.manifesto-quote p {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 3vw, 2rem);
    line-height: 1.6;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.manifesto-quote::before {
    content: '\201C';
    display: block;
    font-family: var(--font-display);
    font-size: 6rem;
    line-height: 0.5;
    color: rgba(255,255,255,0.15);
    margin-bottom: 20px;
}

.manifesto-quote strong {
    color: var(--pink-light);
}

/* ===== PROGRAM ===== */
.program {
    background: var(--cream);
    overflow: hidden;
}

.program-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.tab-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 36px;
    border-radius: var(--radius);
    background: var(--white);
    border: 2px solid var(--border);
    transition: all 0.3s var(--ease);
}

.tab-btn:hover {
    border-color: var(--pink-light);
}

.tab-btn.active {
    background: var(--pink);
    color: #fff;
    border-color: var(--pink);
}

.tab-day {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

.tab-date {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-top: 2px;
}

.tab-content { display: none; }
.tab-content.active {
    display: block;
    animation: fadeSlideIn 0.45s var(--ease);
}

@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Timeline */
.timeline {
    max-width: 720px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: stretch;
}

.timeline-time {
    flex-shrink: 0;
    width: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--pink);
    padding-top: 22px;
    position: relative;
}

.timeline-time span {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 2px;
}

.timeline-time::after {
    content: '';
    flex: 1;
    width: 2px;
    background: linear-gradient(to bottom, var(--pink-light), var(--purple-light));
    margin-top: 8px;
    border-radius: 2px;
}

.timeline-time::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--pink);
    box-shadow: 0 0 12px rgba(212, 80, 122, 0.3);
    flex-shrink: 0;
    margin-bottom: 4px;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 8px rgba(212, 80, 122, 0.2); }
    50% { box-shadow: 0 0 20px rgba(212, 80, 122, 0.5); }
}

.timeline-item:last-child .timeline-time::after {
    display: none;
}

.timeline-card {
    flex: 1;
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
    transition: all 0.3s var(--ease);
}

.timeline-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.timeline-card-highlight {
    background: linear-gradient(135deg, #fef0f4, #fdf2f6);
    border-color: rgba(212, 80, 122, 0.15);
}

.timeline-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.tag-market { background: var(--green-light); color: var(--green); }
.tag-lab { background: var(--purple-light); color: var(--purple); }
.tag-food { background: #fef3e2; color: #c47a1a; }
.tag-event { background: var(--teal-light); color: var(--teal); }
.tag-dinner { background: var(--pink-light); color: var(--pink); }

.timeline-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 6px;
    color: var(--brown);
}

.timeline-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.timeline-host {
    color: var(--green) !important;
    font-weight: 600;
    font-size: 0.82rem !important;
    margin-bottom: 4px !important;
}

.chef-grid {
    display: flex;
    gap: 24px;
    margin-top: 8px;
}

.chef strong {
    display: block;
    color: var(--brown);
    font-size: 0.95rem;
}

.chef em {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.timeline-producers {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.timeline-producers span {
    padding: 4px 10px;
    background: var(--cream);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-muted);
    border: 1px solid var(--border);
    transition: all 0.3s var(--ease);
}

.timeline-producers span:hover {
    background: var(--pink-light);
    color: var(--pink);
    border-color: var(--pink-light);
    transform: translateY(-2px);
}

/* Extras */
.program-extras {
    margin-top: 56px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}

.program-extras > h3 {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 24px;
    color: var(--brown);
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 640px;
    margin: 0 auto;
}

.extra-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s var(--ease);
}

.extra-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.extra-emoji {
    font-size: 2rem;
    margin-bottom: 12px;
    display: inline-block;
    transition: transform 0.4s var(--ease-bounce);
}

.extra-card:hover .extra-emoji {
    transform: scale(1.3) rotate(-5deg);
}

.extra-card h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--brown);
    margin-bottom: 6px;
}

.extra-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ===== CHEFS SECTION ===== */
.chefs-section {
    background: linear-gradient(180deg, var(--white) 0%, #fef5f8 100%);
    overflow: hidden;
}

.chefs-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.chef-card {
    flex: 1;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.35s var(--ease);
}

.chef-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.chef-photo {
    width: 160px;
    height: 160px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--pink-light);
    box-shadow: 0 8px 30px rgba(212, 80, 122, 0.12);
    position: relative;
    transition: all 0.5s var(--ease);
}

.chef-card:hover .chef-photo {
    border-color: var(--pink);
    box-shadow: 0 12px 40px rgba(212, 80, 122, 0.25);
    transform: scale(1.05);
}

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

.chef-card-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--brown);
    margin-bottom: 4px;
}

.chef-restaurant {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--pink);
    margin-bottom: 12px;
}

.chef-bio {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.chefs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    flex-shrink: 0;
}

.chefs-divider span {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--pink);
    opacity: 0.5;
    animation: dividerSpin 6s ease-in-out infinite;
    display: inline-block;
}

@keyframes dividerSpin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.15); }
    50% { transform: rotate(180deg) scale(1); }
    75% { transform: rotate(270deg) scale(1.15); }
}

.chefs-cta {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 640px) {
    .chefs-grid {
        flex-direction: column;
        gap: 0;
    }

    .chef-card {
        padding: 32px 24px;
    }

    .chef-photo {
        width: 120px;
        height: 120px;
    }

    .chef-card-name {
        font-size: 1.15rem;
    }

    .chefs-divider {
        padding: 16px 0;
    }

    .chefs-divider span {
        font-size: 1.5rem;
    }
}

/* ===== FOOD AREA ===== */
.food-area {
    background: var(--white);
    overflow: hidden;
}

.food-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 16px;
}

.food-item {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    display: flex;
    flex-direction: column;
}

.food-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(61, 44, 30, 0.12);
}

.food-featured {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
}

.food-featured .food-img {
    min-height: 320px;
}

.food-img {
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.food-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
    position: absolute;
    inset: 0;
}

.food-item:hover .food-img img {
    transform: scale(1.08);
}

.food-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.04), transparent);
    z-index: 1;
    pointer-events: none;
}

.food-info {
    padding: 20px 22px 22px;
    flex: 0 0 auto;
}

.food-featured .food-info {
    padding: 24px 28px 28px;
}

.food-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--pink);
    background: var(--pink-light);
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 10px;
}

.food-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--brown);
    margin-bottom: 4px;
    line-height: 1.3;
}

.food-featured .food-name {
    font-size: 1.35rem;
}

.food-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.food-featured .food-desc {
    font-size: 0.9rem;
}

.food-collettivo {
    grid-column: span 1;
}

.food-collettivo .food-tag {
    background: var(--green-light);
    color: var(--green);
}

/* ===== GALLERY ===== */
.gallery {
    background: var(--cream);
    padding-bottom: 60px;
    overflow: hidden;
}

.gallery-marquee {
    overflow: hidden;
    margin-bottom: 12px;
    mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
}

.marquee-track {
    display: flex;
    gap: 12px;
    animation: marquee 50s linear infinite;
    width: max-content;
}

.gallery-marquee-reverse .marquee-track {
    animation: marqueeReverse 55s linear infinite;
}

.marquee-item {
    flex-shrink: 0;
    width: 300px;
    height: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.marquee-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 80, 122, 0.2), rgba(58, 158, 150, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    border-radius: var(--radius);
}

.marquee-item:hover::after {
    opacity: 1;
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease), filter 0.4s ease;
}

.marquee-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes marqueeReverse {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

/* ===== CTA TICKETS ===== */
.tickets-cta {
    background: var(--white);
    padding: 80px 0;
}

.cta-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(135deg, #fef0f4, #fdf6ed, #e8f2e0);
    background-size: 300% 300%;
    animation: ctaGradient 10s ease-in-out infinite;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(212, 80, 122, 0.1);
    transition: box-shadow 0.5s var(--ease);
}

.cta-card:hover {
    box-shadow: 0 24px 64px rgba(212, 80, 122, 0.12);
}

@keyframes ctaGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.cta-image img {
    transition: transform 0.8s var(--ease);
}

.cta-card:hover .cta-image img {
    transform: scale(1.05);
}

.cta-content {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 28px;
}

.cta-content .btn {
    align-self: flex-start;
    margin-bottom: 28px;
}

.cta-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.cta-meta-item svg {
    color: var(--pink);
    flex-shrink: 0;
}

.cta-image {
    position: relative;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== INFO ===== */
.info-section {
    background: var(--cream);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.info-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.info-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.info-image:hover img {
    transform: scale(1.03);
}

.info-content p {
    color: var(--text-muted);
    font-size: 0.93rem;
    margin-bottom: 20px;
}

.info-email {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--pink);
    margin-bottom: 24px;
    border-bottom: 2px solid var(--pink-light);
    padding-bottom: 2px;
    transition: border-color 0.3s ease;
}

.info-email:hover {
    border-color: var(--pink);
}

.info-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    border: 1px solid var(--border);
    transition: all 0.3s var(--ease);
}

.social-link:hover {
    border-color: var(--pink);
    color: var(--pink);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--brown);
    color: rgba(255, 255, 255, 0.7);
    padding: 48px 0 32px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--teal), var(--green), var(--purple));
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: #fff;
    display: block;
    margin-bottom: 4px;
}

.footer-brand p {
    font-size: 0.8rem;
    line-height: 1.5;
}

.footer-nav {
    display: flex;
    gap: 24px;
}

.footer-nav a {
    font-size: 0.83rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--pink-light);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.3s var(--ease);
}

.footer-social a:hover {
    background: var(--pink);
    color: #fff;
}

.footer-bottom p {
    font-size: 0.75rem;
    opacity: 0.5;
}

/* ===== DIRECTIONS ===== */
.directions-section {
    background: var(--white);
}

.directions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.directions-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
    border: 1px solid var(--border);
}

.directions-map iframe {
    display: block;
}

.directions-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.direction-route,
.direction-parking {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--cream);
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s var(--ease);
}

.direction-route:hover,
.direction-parking:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-light);
}

.route-icon,
.direction-parking > svg {
    flex-shrink: 0;
    color: var(--green);
    margin-top: 2px;
}

.direction-parking > svg {
    color: var(--teal);
    margin-top: 2px;
}

.direction-route h4,
.direction-parking h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--brown);
    margin-bottom: 4px;
}

.direction-route p,
.direction-parking p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 968px) {
    .directions-grid {
        grid-template-columns: 1fr;
    }

    .directions-map {
        min-height: 280px;
    }
}

@media (max-width: 640px) {
    .directions-map { min-height: 220px; }

    .direction-route,
    .direction-parking {
        padding: 16px;
        gap: 12px;
    }
}

/* ===== FAQ ===== */
.faq-section {
    background: var(--cream);
}

.faq-list {
    max-width: 740px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow 0.3s var(--ease);
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-item.is-open {
    box-shadow: 0 8px 30px rgba(212, 80, 122, 0.1);
    border-color: rgba(212, 80, 122, 0.15);
    background: linear-gradient(135deg, var(--white), #fef8fa);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brown);
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--pink);
}

.faq-icon {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background: var(--pink);
    border-radius: 2px;
    transition: transform 0.3s var(--ease);
}

.faq-icon::before {
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
    padding: 0 24px;
}

.faq-item.is-open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--pink);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.faq-answer a:hover {
    color: var(--pink-dark);
}

@media (max-width: 640px) {
    .faq-question {
        padding: 16px 18px;
        font-size: 0.9rem;
    }

    .faq-answer {
        padding: 0 18px;
    }

    .faq-item.is-open .faq-answer {
        padding: 0 18px 16px;
    }
}

/* ===== SECTION DECORATIVE DIVIDERS ===== */
.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--teal));
    border-radius: 3px;
    margin: 0 auto 24px;
}

.section-header .section-divider {
    margin-top: -8px;
}

/* ===== CHATBOT ===== */
.chatbot {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 5000;
    font-family: var(--font-body);
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(212, 80, 122, 0.35);
    transition: all 0.4s var(--ease);
    position: relative;
    z-index: 2;
}

.chatbot-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(212, 80, 122, 0.45);
}

.chatbot-toggle::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--teal));
    z-index: -1;
    opacity: 0;
    animation: chatPulse 2.5s ease-in-out infinite;
}

@keyframes chatPulse {
    0%, 100% { transform: scale(1); opacity: 0; }
    50% { transform: scale(1.3); opacity: 0.2; }
}

.chatbot-icon-close { display: none; }
.chatbot.is-open .chatbot-icon-open { display: none; }
.chatbot.is-open .chatbot-icon-close { display: block; }
.chatbot.is-open .chatbot-toggle::before { display: none; }

.chatbot-panel {
    position: absolute;
    bottom: 76px;
    right: 0;
    width: 380px;
    max-height: 520px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(61, 44, 30, 0.18), 0 0 0 1px var(--border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(16px) scale(0.95);
    pointer-events: none;
    transition: all 0.4s var(--ease);
}

.chatbot.is-open .chatbot-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.chatbot-header {
    padding: 18px 20px;
    background: linear-gradient(135deg, var(--brown), #52392a);
    color: #fff;
    flex-shrink: 0;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chatbot-name {
    display: block;
    font-weight: 600;
    font-size: 0.92rem;
}

.chatbot-status {
    display: block;
    font-size: 0.72rem;
    opacity: 0.6;
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 200px;
    max-height: 300px;
    scroll-behavior: smooth;
}

.chat-msg {
    display: flex;
    gap: 8px;
    animation: msgIn 0.4s var(--ease) both;
}

@keyframes msgIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-bubble {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.85rem;
    line-height: 1.55;
}

.chat-msg-bot .chat-bubble {
    background: var(--cream);
    color: var(--text);
    border-bottom-left-radius: 4px;
}

.chat-bubble strong { font-weight: 700; }
.chat-bubble em { font-style: italic; }
.chat-bubble code {
    background: rgba(0,0,0,0.06);
    padding: 1px 5px;
    border-radius: 4px;
    font-size: 0.82em;
    font-family: monospace;
}
.chat-bubble a {
    color: var(--pink);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.chat-bubble ul, .chat-bubble ol {
    margin: 6px 0;
    padding-left: 18px;
}
.chat-bubble li {
    margin-bottom: 3px;
}
.chat-bubble br + br { display: none; }

.chat-msg-user {
    justify-content: flex-end;
}

.chat-msg-user .chat-bubble {
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: #fff;
    border-bottom-right-radius: 4px;
}

.chat-typing {
    display: flex;
    gap: 4px;
    padding: 14px 18px;
}

.chat-typing span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--text-light);
    animation: typingDot 1.4s ease-in-out infinite;
}

.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
}

.chatbot-suggestions {
    padding: 0 16px 12px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.chat-suggestion {
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    background: var(--cream);
    color: var(--text-muted);
    border: 1px solid var(--border);
    transition: all 0.25s var(--ease);
}

.chat-suggestion:hover {
    background: var(--pink-light);
    color: var(--pink);
    border-color: var(--pink-light);
}

.chatbot-input {
    display: flex;
    gap: 8px;
    padding: 14px 16px;
    border-top: 1px solid var(--border);
    background: var(--cream);
    flex-shrink: 0;
}

.chatbot-input input {
    flex: 1;
    padding: 10px 16px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: var(--white);
    font-family: inherit;
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.chatbot-input input:focus {
    border-color: var(--pink);
}

.chatbot-input button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--pink);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s var(--ease);
}

.chatbot-input button:hover {
    background: var(--pink-dark);
    transform: scale(1.06);
}

@media (max-width: 640px) {
    .chatbot { bottom: 16px; right: 16px; }
    .chatbot-toggle { width: 52px; height: 52px; }

    .chatbot-panel {
        width: calc(100vw - 32px);
        right: 0;
        bottom: 68px;
        max-height: 70vh;
    }
}

/* ===== PATROCINI ===== */
.patrocini-section {
    background: var(--white);
    padding: 60px 0;
}

.patrocini-section .section-header {
    margin-bottom: 32px;
}

.patrocini-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.patrocinio-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.patrocinio-item img {
    height: 64px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s var(--ease);
}

.patrocinio-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.patrocinio-regione img {
    height: 80px;
}

@media (max-width: 640px) {
    .patrocini-grid {
        gap: 32px;
    }

    .patrocinio-item img {
        height: 48px;
    }

    .patrocinio-regione img {
        height: 60px;
    }
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.is-open {
    opacity: 1;
    pointer-events: all;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 8, 6, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lightbox-content {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    transform: scale(0.92);
    opacity: 0;
    transition: transform 0.35s var(--ease), opacity 0.3s ease;
}

.lightbox.is-open .lightbox-img {
    transform: scale(1);
    opacity: 1;
}

.lightbox-img.is-switching {
    transition: opacity 0.15s ease;
    opacity: 0;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 3;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    transition: all 0.25s ease;
    line-height: 1;
}

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

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    transition: all 0.25s ease;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    transform: translateY(-50%) scale(1.06);
}

.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 18px;
    border-radius: 100px;
    letter-spacing: 0.05em;
}

@media (max-width: 640px) {
    .lightbox-prev,
    .lightbox-next {
        width: 42px;
        height: 42px;
        top: auto;
        bottom: 72px;
        transform: none;
    }

    .lightbox-prev:hover,
    .lightbox-next:hover {
        transform: none;
    }

    .lightbox-prev { left: calc(50% - 56px); }
    .lightbox-next { right: calc(50% - 56px); }

    .lightbox-close {
        top: 12px;
        right: 12px;
        width: 42px;
        height: 42px;
    }

    .lightbox-counter {
        bottom: 24px;
    }

    .lightbox-content {
        max-width: 95vw;
        max-height: 70vh;
    }

    .lightbox-img {
        max-height: 70vh;
        border-radius: 6px;
    }
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablet */
@media (max-width: 968px) {
    .section { padding: 72px 0; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-images { order: -1; }

    .about-img-secondary {
        left: auto;
        right: -16px;
        bottom: -24px;
        width: 45%;
    }

    .about-img-main img { height: 340px; }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .info-image img { height: 300px; }

    .food-bento {
        grid-template-columns: 1fr 1fr;
    }

    .food-featured {
        grid-column: span 2;
        grid-row: span 1;
    }

    .food-featured .food-img { min-height: 240px; }

    .cta-card {
        grid-template-columns: 1fr;
    }

    .cta-content { padding: 40px 32px; }

    .cta-image {
        height: 260px;
    }

    .timeline-item { gap: 16px; }
    .timeline-time { width: 56px; font-size: 0.9rem; padding-top: 20px; }

    .footer-top { flex-direction: column; gap: 24px; }
    .footer-nav { flex-wrap: wrap; gap: 16px; }
}

/* Mobile */
@media (max-width: 640px) {
    .container { padding: 0 16px; }
    .section { padding: 56px 0; }

    /* Navbar mobile */
    .nav-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
        background: rgba(253, 246, 237, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding: 40px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s var(--ease);
    }

    .nav-links.open {
        opacity: 1;
        pointer-events: all;
    }

    .nav-links a { font-size: 1.15rem; color: var(--brown); }

    /* Hero mobile */
    .hero-bottom-inner {
        flex-direction: column;
        align-items: stretch;
        padding: 24px 16px 32px;
        gap: 20px;
    }

    .hero-info {
        flex-direction: column;
        gap: 10px;
    }

    .hero-date-badge { font-size: 0.85rem; }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* About mobile */
    .about-img-main img { height: 280px; }
    .about-img-secondary { width: 40%; bottom: -16px; right: -8px; }
    .about-img-secondary img { height: 140px; }

    .about-lead { font-size: 0.97rem; }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .stat-card { padding: 20px 12px; }
    .stat-number { font-size: 2.2rem; }

    /* Program mobile */
    .program-tabs {
        width: 100%;
    }

    .tab-btn {
        flex: 1;
        padding: 14px 16px;
    }

    .tab-date { font-size: 0.95rem; }

    .timeline-item {
        flex-direction: column;
        gap: 0;
    }

    .timeline-time {
        width: auto;
        flex-direction: row;
        gap: 6px;
        padding: 0 0 8px;
        font-size: 0.85rem;
    }

    .timeline-time::after { display: none; }
    .timeline-time span { margin-top: 0; }
    .timeline-time span::before { content: '– '; }

    .timeline-card { padding: 20px; }
    .timeline-card h3 { font-size: 1.05rem; }

    .chef-grid {
        flex-direction: column;
        gap: 12px;
    }

    .extras-grid { grid-template-columns: 1fr; }
    .extra-card { padding: 24px 20px; }

    /* Food mobile */
    .food-bento {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .food-featured {
        grid-column: span 1;
        grid-row: span 1;
    }

    .food-featured .food-img { min-height: 200px; }
    .food-featured .food-name { font-size: 1.15rem; }
    .food-featured .food-info { padding: 20px 22px 22px; }

    .food-img { min-height: 180px; }
    .food-info { padding: 16px 18px 18px; }
    .food-name { font-size: 1rem; }
    .food-collettivo { grid-column: span 1; }

    /* Gallery mobile */
    .marquee-item { width: 220px; height: 150px; }

    /* CTA mobile */
    .tickets-cta { padding: 56px 0; }
    .cta-content { padding: 32px 24px; }
    .cta-content .btn { width: 100%; justify-content: center; }
    .cta-image { height: 220px; }

    /* Info mobile */
    .info-image img { height: 240px; }
    .info-email { font-size: 1rem; }
    .info-socials { flex-direction: column; }

    /* Manifesto mobile */
    .manifesto { padding: 80px 0; }
    .manifesto-quote p { font-size: 1.15rem; }

    /* Footer mobile */
    .footer-nav { gap: 12px; }
}

/* Very small screens */
@media (max-width: 380px) {
    .about-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
    .stat-card { padding: 16px 8px; }
    .stat-number { font-size: 1.8rem; }
    .stat-label { font-size: 0.68rem; }
    .hero-date-badge { font-size: 0.8rem; }
    .tab-btn { padding: 12px 10px; }
    .tab-date { font-size: 0.85rem; }
}
