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

:root {
    --bg: #f7f3ed;
    --bg-warm: #efe9de;
    --bg-dark: #2b2520;
    --bg-darker: #1e1a16;
    --text: #2b2520;
    --text-light: #6b6056;
    --text-muted: #9a8e82;
    --accent: #c47a2a;
    --accent-dark: #a56420;
    --rust: #b85c38;
    --olive: #5a6350;
    --olive-light: #7a8a6e;
    --cream: #faf8f4;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --display: 'Oswald', 'Playfair Display', Georgia, serif;
    --sans: 'Inter', -apple-system, sans-serif;
    --hand: 'Caveat', cursive;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ═══════ GRAIN ═══════ */
.grain {
    position: fixed; inset: 0;
    pointer-events: none; z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    animation: grainAnim 6s steps(8) infinite;
}
@keyframes grainAnim {
    0%,100% { transform: translate(0); }
    25% { transform: translate(-3%, 5%); }
    50% { transform: translate(5%, -3%); }
    75% { transform: translate(-5%, 2%); }
}

/* ═══════ LOADER ═══════ */
#loader {
    position: fixed; inset: 0;
    background: var(--bg-dark);
    z-index: 10000;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s;
}
#loader.hidden { opacity: 0; visibility: hidden; }
#loader img {
    width: 100px; height: 100px;
    object-fit: contain;
    animation: loaderPulse 1.5s ease-in-out infinite;
}
@keyframes loaderPulse {
    0%, 100% { opacity: 0.5; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1); }
}
.loader-text {
    font-family: var(--serif);
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 1.5rem;
}

/* ═══════ NAV ═══════ */
nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.5rem 3rem;
    display: flex; justify-content: space-between; align-items: center;
    transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
nav.scrolled {
    background: rgba(247,243,237,0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 3rem;
    box-shadow: 0 1px 0 rgba(43,37,32,0.06);
}
nav.scrolled .nav-links a { color: var(--text-light); }
nav.scrolled .nav-links a:hover { color: var(--text); }
nav.scrolled .nav-cta {
    border-color: var(--text);
    color: var(--text);
}
nav.scrolled .nav-cta:hover {
    background: var(--text);
    color: var(--cream);
}
.nav-logo {
    display: flex; align-items: center; gap: 0.8rem;
}
.nav-logo img {
    width: 40px; height: 40px;
    object-fit: contain;
    transition: transform 0.3s;
}
.nav-logo:hover img { transform: rotate(10deg); }
.nav-logo-text {
    font-family: var(--serif);
    font-size: 1.1rem; font-weight: 600;
    letter-spacing: 1px;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
    font-size: 0.78rem; letter-spacing: 1.5px;
    text-transform: uppercase; font-weight: 400;
    color: rgba(250,248,244,0.6);
    position: relative;
    transition: color 0.3s;
}
.nav-links a::after {
    content: ''; position: absolute;
    bottom: -3px; left: 0; width: 0; height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border: 1px solid rgba(250,248,244,0.4);
    border-radius: 50px;
    font-size: 0.75rem; letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(250,248,244,0.7);
    transition: all 0.3s;
}
.nav-cta:hover {
    background: var(--text);
    color: var(--cream);
}
.lang-flags,
.lang-switch {
    display: flex; gap: 0.5rem; align-items: center; margin-left: 1.5rem;
}
.lang-flags a,
.lang-switch a {
    font-size: 1.1rem; text-decoration: none; opacity: 0.5; transition: opacity 0.3s;
}
.lang-flags a:hover,
.lang-switch a:hover { opacity: 1; }

/* ═══════ HERO ═══════ */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--bg-dark);
}
.hero-slider {
    position: absolute; inset: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-slider-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(30,26,22,0.55) 0%,
        rgba(30,26,22,0.45) 50%,
        rgba(30,26,22,0.7) 100%
    );
    z-index: 1;
}
.hero-content {
    position: relative; z-index: 2;
    padding: 2rem;
}
.hero-logo {
    width: clamp(280px, 45vw, 500px);
    height: auto;
    object-fit: contain;
    margin: 0 auto 2rem;
    opacity: 0;
    animation: heroFadeIn 1s 0.3s ease forwards;
    filter: drop-shadow(0 0 60px rgba(0,0,0,0.3));
}
.hero-eyebrow {
    font-family: var(--hand);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--accent);
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: heroFadeIn 1s 0.6s ease forwards;
}
.hero-title {
    font-family: var(--display);
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 0.9;
    color: var(--cream);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: heroFadeIn 1s 0.8s ease forwards;
}
.hero-title em {
    font-style: italic;
    color: var(--accent);
}
.hero-date {
    font-family: var(--serif);
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    font-weight: 300;
    color: rgba(250,248,244,0.5);
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: heroFadeIn 1s 1s ease forwards;
}
.hero-location {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(250,248,244,0.35);
    opacity: 0;
    animation: heroFadeIn 1s 1.2s ease forwards;
}
.hero-cta {
    margin-top: 3rem;
    opacity: 0;
    animation: heroFadeIn 1s 1.4s ease forwards;
}
.hero-cta a {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 1rem 2.5rem;
    border: 1px solid rgba(250,248,244,0.25);
    border-radius: 50px;
    color: var(--cream);
    font-size: 0.8rem; letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s;
}
.hero-cta a:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}
.hero-scroll {
    position: absolute; bottom: 3rem;
    left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column;
    align-items: center; gap: 0.5rem;
    opacity: 0;
    animation: heroFadeIn 1s 1.6s ease forwards;
}
.hero-scroll span {
    font-size: 0.65rem; letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(250,248,244,0.3);
}
.scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, rgba(196,122,42,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ═══════ SECTIONS ═══════ */
section { position: relative; }
.pad { padding: 5rem 3rem; max-width: 1200px; margin: 0 auto; }
.pad-wide { padding: 5rem 3rem; max-width: 1400px; margin: 0 auto; }

.reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

.label {
    font-family: var(--hand);
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 0.4rem;
}
.section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 1.2rem;
}
.section-title strong { font-weight: 600; }
.section-desc {
    font-weight: 300; line-height: 1.8;
    color: var(--text-light);
    max-width: 550px;
    font-size: 1rem;
}

.h-sep {
    width: 60px; height: 1px;
    background: var(--accent);
    margin: 1.5rem 0;
}
.h-sep-center { margin: 1.5rem auto; }

/* ═══════ INFO BAR ═══════ */
.info-bar {
    background: var(--cream);
    border-bottom: 1px solid rgba(43,37,32,0.06);
    padding: 2rem 3rem;
}
.info-bar-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: center;
    gap: 4rem; flex-wrap: wrap;
}
.info-item {
    display: flex; align-items: center; gap: 0.8rem;
    font-size: 0.85rem;
    color: var(--text-light);
}
.info-item .icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(196,122,42,0.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
}
.info-item strong {
    color: var(--text);
    font-weight: 500;
}

/* ═══════ ABOUT ═══════ */
#about { background: var(--bg); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-visual {
    position: relative;
    aspect-ratio: auto;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-warm);
}
.about-visual img {
    width: 100%; height: auto;
    display: block;
}
.about-quote {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.5;
    color: var(--text);
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 2px solid var(--accent);
}

/* ═══════ ABOUT GALLERY (MASONRY) ═══════ */
.about-gallery {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 1rem;
    height: auto;
}
.ag-main {
    border-radius: 14px;
    overflow: hidden;
}
.ag-main img {
    width: 100%; height: auto;
    display: block;
    transition: transform 0.6s ease;
}
.ag-main:hover img { transform: scale(1.04); }
.ag-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
}
.ag-side .ag-small:nth-child(1) img {
    object-position: center 30%;
}
.ag-side .ag-small:nth-child(2) img {
    object-position: center 60%;
}
.ag-small {
    border-radius: 14px;
    overflow: hidden;
}
.ag-small img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.ag-small:hover img { transform: scale(1.05); }

/* ═══════ QUICK TICKETS ═══════ */
.quick-tickets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.qt-card {
    background: var(--cream);
    border: 1px solid rgba(43,37,32,0.06);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s;
}
.qt-card:hover {
    box-shadow: 0 8px 30px rgba(43,37,32,0.06);
    transform: translateY(-3px);
}
.qt-disabled { opacity: 0.55; pointer-events: none; }
.qt-badge {
    position: absolute;
    top: -8px; left: 50%; transform: translateX(-50%);
    background: var(--accent);
    color: var(--cream);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    white-space: nowrap;
}
.qt-badge-soon { background: var(--text-muted); }
.qt-name {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 500;
    margin-top: 0.5rem;
    margin-bottom: 0.3rem;
}
.qt-price {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.3rem;
}
.qt-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

/* ═══════ VINTAGE ICONS ═══════ */
#vintage-icons { background: var(--cream); }
.vintage-icons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.vintage-icon-card {
    text-align: center;
    padding: 3rem 1.5rem;
    border-radius: 16px;
    background: var(--bg);
    border: 1px solid rgba(43,37,32,0.04);
    transition: transform 0.3s, box-shadow 0.3s;
}
.vintage-icon-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(43,37,32,0.05);
}
.vintage-icon-svg {
    width: 64px; height: 64px;
    margin: 0 auto 1.5rem;
    color: var(--accent);
}
.vintage-icon-png {
    width: 64px; height: 64px;
    margin: 0 auto 1.5rem;
}
.vintage-icon-png img {
    width: 100%; height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(55%) sepia(40%) saturate(600%) hue-rotate(10deg) brightness(90%) contrast(90%);
}
.vintage-icon-card h3 {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
}
.vintage-icon-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.vintage-card-photo {
    margin-top: 1rem;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.vintage-card-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.vintage-card-photo:hover img { transform: scale(1.05); }

/* ═══════ LINEUP ═══════ */
#lineup { background: var(--cream); }
.lineup-category {
    margin-bottom: 4rem;
}
.lineup-cat-label {
    font-family: var(--hand);
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}
.lineup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.artist-card {
    padding: 2.5rem;
    border-radius: 16px;
    background: var(--bg);
    border: 1px solid rgba(43,37,32,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.artist-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--rust));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s;
}
.artist-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(43,37,32,0.06);
}
.artist-card:hover::before { transform: scaleX(1); }
.artist-emoji {
    width: 40px; height: 40px;
    color: var(--accent);
    margin-bottom: 1rem;
}
.artist-name {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}
.artist-type {
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}
.artist-desc {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-light);
    margin-top: 0.8rem;
    line-height: 1.6;
}

/* ═══════ PROGRAMMA ═══════ */
#programma { background: var(--bg); }
.programma-days {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.day-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(43,37,32,0.06);
    background: var(--cream);
}
.day-header {
    padding: 1.5rem 2rem;
    background: var(--bg-dark);
    color: var(--cream);
}
.day-header .day-name {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 300;
}
.day-header .day-date {
    font-size: 0.78rem;
    letter-spacing: 1px;
    color: rgba(250,248,244,0.5);
    margin-top: 0.2rem;
}
.day-body {
    padding: 2rem;
}
.day-event {
    display: flex; gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(43,37,32,0.05);
}
.day-event:last-child { border-bottom: none; }
.event-time {
    font-family: var(--hand);
    font-size: 1.1rem;
    color: var(--accent);
    min-width: 60px;
    padding-top: 0.1rem;
}
.event-icon {
    width: 20px; height: 20px;
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 0.15rem;
}
.event-info h4 {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.event-info p {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 300;
}

/* ═══════ LOCATION ═══════ */
#location {
    background: var(--bg-dark);
    color: var(--cream);
}
#location .label { color: var(--accent); }
#location .section-desc { color: rgba(250,248,244,0.6); }
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.location-map {
    aspect-ratio: 4/3;
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(196,122,42,0.08), rgba(90,99,80,0.06)),
        rgba(250,248,244,0.03);
    border: 1px solid rgba(250,248,244,0.08);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 1rem;
}
.location-map .pin {
    font-size: 3rem;
    animation: pinFloat 3s ease-in-out infinite;
}
@keyframes pinFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.location-map-text {
    font-family: var(--hand);
    font-size: 1.2rem;
    color: rgba(250,248,244,0.5);
}
.location-details { list-style: none; }
.location-details li {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(250,248,244,0.06);
    display: flex; align-items: flex-start; gap: 1rem;
}
.location-details .ld-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(196,122,42,0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.location-details strong {
    font-weight: 500;
}
.location-details span {
    font-weight: 300;
    color: rgba(250,248,244,0.5);
    font-size: 0.9rem;
}

/* ═══════ CAROSELLO ═══════ */
#carosello { background: var(--bg); overflow: hidden; }
.carousel-wrapper {
    position: relative;
    margin-top: 3rem;
}
.carousel-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1.25rem;
    padding: 1rem 0 2rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-slide {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: var(--bg-warm);
    animation: fadeInSlide 0.6s ease;
}
.carousel-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
}
@keyframes fadeInSlide {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
.carousel-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.carousel-slide:hover img { transform: scale(1.05); }
.carousel-nav {
    display: flex; justify-content: center;
    gap: 1rem; margin-top: 1rem;
}
.carousel-btn {
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(43,37,32,0.15);
    background: var(--cream);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}
.carousel-btn:hover {
    background: var(--text);
    color: var(--cream);
    border-color: var(--text);
}

/* ═══════ COUNTDOWN ═══════ */
#countdown {
    background: var(--cream);
    text-align: center;
}
.countdown-grid {
    display: flex; justify-content: center;
    gap: 3rem; flex-wrap: wrap;
    margin-top: 3rem;
}
.cd-item { display: flex; flex-direction: column; align-items: center; }
.cd-num {
    font-family: var(--serif);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 300;
    line-height: 1;
    color: var(--accent);
}
.cd-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.4rem;
}
.cd-sep {
    font-family: var(--serif);
    font-size: 3rem;
    color: rgba(196,122,42,0.2);
    align-self: flex-start;
    margin-top: 0.5rem;
}

/* ═══════ ISCRIZIONE ═══════ */
#iscrizione { background: var(--bg); }
.register-card {
    max-width: 720px;
    margin: 3rem auto 0;
    background: var(--cream);
    border: 1px solid rgba(43,37,32,0.06);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}
.register-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--rust), var(--olive));
}
.ticket-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}
.ticket-option {
    position: relative;
    cursor: pointer;
}
.ticket-option input { position: absolute; opacity: 0; width: 0; height: 0; }
.ticket-box {
    border: 2px solid rgba(43,37,32,0.08);
    border-radius: 14px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    background: var(--bg);
}
.ticket-option input:checked + .ticket-box {
    border-color: var(--accent);
    background: rgba(196,122,42,0.04);
    box-shadow: 0 0 0 3px rgba(196,122,42,0.1);
}
.ticket-box:hover {
    border-color: rgba(196,122,42,0.3);
}
.ticket-icon {
    width: 40px; height: 40px;
    margin: 0 auto 0.8rem;
    background: rgba(196,122,42,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.ticket-icon svg { width: 20px; height: 20px; color: var(--accent); }
.ticket-name {
    font-family: var(--serif);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: var(--text);
}
.ticket-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}
.ticket-price {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
}
.ticket-price span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
}
.ticket-badge {
    position: absolute;
    top: -8px; right: -8px;
    background: var(--accent);
    color: var(--cream);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}
.form-group {
    display: flex; flex-direction: column;
    margin-bottom: 1.2rem;
}
.form-group.full { grid-column: span 2; }
.form-group label {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
    background: var(--bg);
    border: 1px solid rgba(43,37,32,0.08);
    border-radius: 10px;
    padding: 0.9rem 1.1rem;
    color: var(--text);
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 300;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(196,122,42,0.08);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group select { cursor: pointer; appearance: none; }
.form-group select option { background: var(--bg); }
.form-divider {
    height: 1px;
    background: rgba(43,37,32,0.06);
    margin: 1.5rem 0;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
}
.summary-row.total {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    border-top: 2px solid rgba(43,37,32,0.08);
    padding-top: 1rem;
    margin-top: 0.5rem;
}
.summary-row.total .summary-amount { color: var(--accent); }
.pay-btn {
    width: 100%;
    padding: 1.1rem;
    margin-top: 1.5rem;
    background: var(--accent);
    color: var(--cream);
    border: none;
    border-radius: 14px;
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}
.pay-btn:hover { background: #b06a20; transform: translateY(-1px); }
.pay-btn:disabled {
    background: rgba(43,37,32,0.15);
    color: var(--text-muted);
    cursor: not-allowed;
    transform: none;
}
.pay-btn svg { width: 18px; height: 18px; }
.pay-secure {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.72rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}
.pay-secure svg { width: 12px; height: 12px; }
.ticket-soon { opacity: 0.55; pointer-events: none; }
.badge-soon { background: var(--text-muted) !important; }
.addon-section { margin-top: 0.5rem; }
.qty-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(43,37,32,0.12);
    background: var(--bg);
    color: var(--text);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
    font-family: var(--sans);
}
.qty-btn:hover { border-color: var(--accent); color: var(--accent); }
.qty-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.promo-row {
    display: flex;
    align-items: stretch;
    gap: 0.6rem;
}
.promo-row input { flex: 1; }
.promo-btn {
    padding: 0 1.4rem;
    background: var(--accent);
    color: var(--cream);
    border: none;
    border-radius: 10px;
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.promo-btn:hover { background: #b06a20; }
.promo-btn:disabled { background: rgba(43,37,32,0.15); color: var(--text-muted); cursor: not-allowed; }
.promo-msg { font-size: 0.8rem; margin-top: 0.4rem; min-height: 1rem; }
.photo-upload {
    border: 2px dashed rgba(43,37,32,0.12);
    border-radius: 14px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s;
    position: relative;
    overflow: hidden;
}
.photo-upload:hover { border-color: var(--accent); background: rgba(196,122,42,0.02); }
.photo-upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}
.photo-upload-placeholder svg { color: var(--accent); opacity: 0.6; }
.photo-upload-preview {
    position: relative;
    display: flex;
    justify-content: center;
}
.photo-upload-preview img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 10px;
    object-fit: cover;
}
.photo-remove {
    position: absolute;
    top: 8px; right: 8px;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    font-size: 0.75rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.photo-remove:hover { background: rgba(0,0,0,0.8); }
@media (max-width: 600px) {
    .ticket-grid { grid-template-columns: 1fr; }
    .register-card { padding: 2rem 1.5rem; }
}

.btn {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: var(--sans);
    font-size: 0.82rem; font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}
.btn-primary {
    background: var(--text);
    color: var(--cream);
}
.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(196,122,42,0.15);
}
.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(43,37,32,0.2);
}
.btn-outline:hover {
    border-color: var(--text);
    background: var(--text);
    color: var(--cream);
}

/* ═══════ FAQ ═══════ */
#faq { background: var(--bg-warm); }
.faq-grid {
    max-width: 800px; margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid rgba(43,37,32,0.08);
    padding: 1.5rem 0;
}
.faq-item summary {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 400;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--accent);
    transition: transform 0.3s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { color: var(--accent); }
.faq-answer {
    padding-top: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(43,37,32,0.6);
}

/* ═══════ BOTTOM ═══════ */
#bottom {
    background: var(--bg-darker);
    color: var(--cream);
    padding: 4rem 3rem;
}
.bottom-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
}
.bottom-col h4 {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.bottom-col p, .bottom-col span {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(250,248,244,0.5);
}
.bottom-form input,
.bottom-form textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    margin-bottom: 0.8rem;
    background: rgba(250,248,244,0.05);
    border: 1px solid rgba(250,248,244,0.1);
    border-radius: 8px;
    color: var(--cream);
    font-family: var(--body);
    font-size: 0.9rem;
}
.bottom-form input::placeholder,
.bottom-form textarea::placeholder {
    color: rgba(250,248,244,0.25);
}
.bottom-form input:focus,
.bottom-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}
.bottom-form textarea { resize: vertical; min-height: 80px; }
.bottom-form button {
    width: 100%;
    padding: 0.75rem;
    background: var(--accent);
    color: var(--cream);
    border: none;
    border-radius: 8px;
    font-family: var(--body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}
.bottom-form button:hover { opacity: 0.85; }
.meteo-temp {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--cream);
}
.meteo-desc {
    font-size: 0.9rem;
    color: rgba(250,248,244,0.4);
    margin-top: 0.3rem;
}
.vintage-def {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(250,248,244,0.5);
}
.vintage-def em { color: var(--accent); font-style: normal; }
@media (max-width: 768px) {
    .bottom-grid { grid-template-columns: 1fr; }
}

/* ═══════ FOOTER ═══════ */
footer {
    background: var(--bg-darker);
    color: var(--cream);
    padding: 4rem 3rem 2rem;
}
.footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}
.footer-brand img {
    width: 50px; height: 50px;
    object-fit: contain;
    margin-bottom: 1rem;
}
.footer-brand p {
    font-weight: 300;
    color: rgba(250,248,244,0.4);
    line-height: 1.7;
    font-size: 0.9rem;
}
.footer-col h4 {
    font-family: var(--serif);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 400;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(250,248,244,0.4);
    transition: color 0.3s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
    max-width: 1200px; margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(250,248,244,0.06);
    display: flex; justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(250,248,244,0.25);
}
.footer-socials { display: flex; gap: 0.8rem; }
.footer-socials a {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(250,248,244,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s;
}
.footer-socials a:hover {
    border-color: var(--accent);
    background: rgba(196,122,42,0.1);
}

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-gallery { grid-template-columns: 1fr; height: auto; }
    .ag-main { height: 280px; }
    .ag-side { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .ag-small { height: 180px; }
    .quick-tickets { grid-template-columns: 1fr; gap: 1rem; }
    .programma-days { grid-template-columns: 1fr; }
    .location-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-inner { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .form-group.full { grid-column: span 1; }
    .info-bar-inner { gap: 1.5rem; }
    nav { padding: 1rem 1.5rem; }
    .nav-links, .nav-cta, .lang-flags, .lang-switch { display: none; }
    .pad, .pad-wide { padding: 4rem 1.5rem; }
    .cd-sep { display: none; }
    .countdown-grid { gap: 1.5rem; }
    .vintage-icons-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .lineup-grid { grid-template-columns: 1fr; }
    .carousel-track { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 1fr); }
    .vintage-icons-grid { grid-template-columns: 1fr; }
    .about-quote { white-space: normal !important; overflow: visible !important; text-overflow: unset !important; font-size: 1.1rem !important; text-align: center; }
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: rgba(30,27,24,0.95); backdrop-filter: blur(16px);
    padding: 1.5rem 3rem; z-index: 2000;
    display: flex; align-items: center; justify-content: space-between; gap: 2rem;
    transform: translateY(100%); transition: transform 0.5s ease;
    border-top: 1px solid rgba(196,122,42,0.2);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p {
    font-size: 0.85rem; color: rgba(250,248,244,0.7); line-height: 1.6; margin: 0;
}
.cookie-banner a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.8rem; flex-shrink: 0; }
.cookie-btn {
    padding: 0.6rem 1.5rem; border-radius: 8px; font-size: 0.8rem;
    cursor: pointer; border: none; font-family: var(--sans); letter-spacing: 0.5px;
    transition: all 0.3s;
}
.cookie-accept { background: var(--accent); color: #fff; }
.cookie-accept:hover { background: #b06a20; }
.cookie-settings { background: transparent; color: rgba(250,248,244,0.5); border: 1px solid rgba(250,248,244,0.15); }
.cookie-settings:hover { border-color: rgba(250,248,244,0.3); color: rgba(250,248,244,0.8); }
@media (max-width: 768px) {
    .cookie-banner { flex-direction: column; padding: 1.2rem 1.5rem; gap: 1rem; }
    .cookie-actions { width: 100%; }
    .cookie-btn { flex: 1; }
}
