/* =============================================
   GRUPPO PERATONER — Immersive Experience
   ============================================= */

:root {
    --dark: #0D0A08;
    --crimson: #8B1A2B;
    --crimson-deep: #5C0E1A;
    --crimson-dark: #3A0A12;
    --crimson-light: #A62038;
    --gold: #C9A84C;
    --gold-light: #D4B96A;
    --gold-pale: #E8D5A0;
    --cream: #F5EDE0;
    --white: #FFF8F0;
    --accent: #9B7B2C;
    --specchi-blue: #2d2d44;
    --specchi-dark: #1a1a2e;

    /* Legacy aliases for compatibility */
    --chocolate: var(--crimson-dark);
    --chocolate-mid: var(--crimson);
    --chocolate-light: var(--crimson-light);

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Cormorant Garamond', Georgia, serif;
    --font-ui: 'Montserrat', sans-serif;
    --font-gothic: 'UnifrakturMaguntia', cursive;

    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Gothic font for "Peratoner" brand name */
.brand-gothic {
    font-family: var(--font-gothic);
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* Subtle wood texture overlay on dark sections */
.texture-wood {
    position: relative;
}
.texture-wood::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 40px,
            rgba(139,90,43,0.015) 40px,
            rgba(139,90,43,0.015) 41px
        ),
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 200px,
            rgba(100,60,20,0.01) 200px,
            rgba(100,60,20,0.01) 201px
        );
    pointer-events: none;
    z-index: 0;
}

/* Tulip lamp divider between sections */
.lamp-divider {
    display: flex;
    justify-content: center;
    padding: 30px 0;
    position: relative;
    z-index: 2;
}
.lamp-divider svg {
    width: 60px;
    height: 50px;
    opacity: 0.3;
    transition: opacity 0.5s ease;
}
.lamp-divider:hover svg {
    opacity: 0.6;
    cursor: default;
}

::selection { background: var(--gold); color: var(--dark); }

a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--cream); }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--chocolate-mid); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* =============================================
   CURSOR GLOW
   ============================================= */
.cursor-glow {
    position: fixed;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.05), rgba(139,26,43,0.02), transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    will-change: left, top;
}

/* (Preloader removed — replaced by hero-anim entrance) */

/* =============================================
   AMBIENT CANVAS
   ============================================= */
#ambient-canvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.25;
}

/* =============================================
   NAVIGATION
   ============================================= */
#main-nav {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    transition: all 0.5s var(--ease);
}
#main-nav.scrolled {
    background: rgba(13,10,8,0.94);
    backdrop-filter: blur(25px);
    padding: 12px 40px;
    box-shadow: 0 2px 40px rgba(0,0,0,0.4);
}
#main-nav.nav-hidden { transform: translateY(-100%); opacity: 0; }
#main-nav.nav-visible { transform: translateY(0); opacity: 1; }

.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
    transition: all 0.3s var(--ease);
}
#main-nav.scrolled .nav-logo-img { height: 38px; }

.nav-links { display: flex; list-style: none; gap: 24px; }
.nav-links a {
    font-family: var(--font-ui);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
    position: relative;
    padding: 4px 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
    padding: 10px;
}
.nav-toggle span { width: 25px; height: 2px; background: var(--cream); transition: all 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
    position: fixed; inset: 0;
    background: rgba(13,10,8,0.97);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; visibility: hidden;
    transition: all 0.5s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu li { margin: 18px 0; opacity: 0; transform: translateY(15px); transition: all 0.4s var(--ease); }
.mobile-menu.open li { opacity: 1; transform: translateY(0); }
.mobile-menu.open li:nth-child(1) { transition-delay: .08s; }
.mobile-menu.open li:nth-child(2) { transition-delay: .12s; }
.mobile-menu.open li:nth-child(3) { transition-delay: .16s; }
.mobile-menu.open li:nth-child(4) { transition-delay: .20s; }
.mobile-menu.open li:nth-child(5) { transition-delay: .24s; }
.mobile-menu.open li:nth-child(6) { transition-delay: .28s; }
.mobile-menu.open li:nth-child(7) { transition-delay: .32s; }
.mobile-menu a {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--cream);
}
.mobile-menu a:hover { color: var(--gold); }

/* =============================================
   SECTION BASE
   ============================================= */
.section {
    position: relative;
    min-height: 100vh;
    padding: 120px 60px;
    z-index: 2;
    overflow: hidden;
}

.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    color: var(--cream);
    line-height: 1.1;
}
.section-line {
    width: 60px; height: 2px;
    background: var(--gold);
    margin: 20px auto 0;
}

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */
.reveal-up, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 0;
    transition: all 0.9s var(--ease-out);
}
.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-scale { transform: scaleX(0); }

.reveal-up.revealed { opacity: 1; transform: translateY(0); }
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right.revealed { opacity: 1; transform: translateX(0); }
.reveal-scale.revealed { opacity: 1; transform: scaleX(1); }

.delay-1 { transition-delay: 0.15s !important; }
.delay-2 { transition-delay: 0.3s !important; }
.delay-3 { transition-delay: 0.45s !important; }
.delay-4 { transition-delay: 0.6s !important; }

/* =============================================
   HERO
   ============================================= */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 0;
}

.hero-bg-layers {
    position: absolute; inset: 0;
    z-index: 0;
}
.hero-layer {
    position: absolute; inset: 0;
}
.layer-1 {
    background: radial-gradient(ellipse at 50% 100%, rgba(139,26,43,0.4), transparent 60%);
}
.layer-2 {
    background: radial-gradient(ellipse at 20% 30%, rgba(201,168,76,0.06), transparent 50%);
    animation: layerDrift 15s ease-in-out infinite alternate;
}
.layer-3 {
    background: radial-gradient(ellipse at 80% 40%, rgba(92,14,26,0.2), transparent 50%);
    animation: layerDrift 20s ease-in-out infinite alternate-reverse;
}
@keyframes layerDrift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, -20px); }
}

.hero-content {
    position: relative; z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.25);
    display: inline-block;
    padding: 10px 28px;
    margin-bottom: 30px;
}

.hero-logo-wrapper {
    margin-bottom: 15px;
}
.hero-logo-img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 16px;
    filter: drop-shadow(0 10px 40px rgba(139,26,43,0.3));
    transition: transform 0.6s var(--ease);
}
.hero-logo-img:hover {
    transform: scale(1.05);
}

.hero-title { margin-bottom: 20px; }
.title-line {
    display: block;
    font-family: var(--font-display);
    color: var(--cream);
    line-height: 1;
}
.title-line:first-child {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    letter-spacing: 0.3em;
    color: var(--gold);
}
.title-main {
    font-size: clamp(4rem, 11vw, 9rem);
    font-weight: 900;
    text-shadow: 0 4px 40px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    font-weight: 300;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 50px;
}

/* Venue Cards */
.hero-venues {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.venue-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 8px;
    background: rgba(13,10,8,0.6);
    backdrop-filter: blur(15px);
    transition: all 0.4s var(--ease);
    text-decoration: none;
    padding: 16px 12px;
    gap: 8px;
}
.venue-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(201,168,76,0.15);
    background: rgba(92,14,26,0.4);
}
.venue-card-logo {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.4s var(--ease);
}
.venue-card-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.venue-card-monogram svg {
    width: 60px;
    height: 60px;
}
.venue-card-name {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
    text-align: center;
    line-height: 1.3;
}
.venue-card-sub {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: rgba(201,168,76,0.5);
    font-style: italic;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.scroll-mouse {
    width: 22px; height: 36px;
    border: 1.5px solid var(--gold);
    border-radius: 11px;
    position: relative;
    opacity: 0.5;
}
.scroll-wheel {
    width: 3px; height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 6px; left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
    0% { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 20px; }
}
.scroll-indicator span {
    font-family: var(--font-ui);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.4;
}

/* =============================================
   MONDO SECTION
   ============================================= */
.mondo-section {
    background: linear-gradient(180deg, var(--dark), var(--crimson-dark) 50%, var(--dark));
}
.mondo-container {
    max-width: 1100px;
    margin: 0 auto;
}
.mondo-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.mondo-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gold-light);
}

/* ---- CAROUSEL ---- */
.carousel-wrapper { margin-bottom: 60px; }
.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(201,168,76,0.15);
}
.carousel-track {
    display: flex;
    transition: transform 0.7s var(--ease-out);
    will-change: transform;
}
.carousel-slide {
    min-width: 100%;
    height: 420px;
    position: relative;
    overflow: hidden;
}
.slide-bg {
    position: absolute; inset: 0;
    transition: transform 0.7s var(--ease);
}
.slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.15) 100%);
}
.carousel-slide:hover .slide-bg { transform: scale(1.05); }

.slide-content {
    position: relative; z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}
.slide-location {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
}
.slide-content h3 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--cream);
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.slide-content p {
    font-size: 1.1rem;
    color: var(--gold-light);
    max-width: 500px;
    margin-bottom: 25px;
    line-height: 1.5;
}
.slide-cta {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.4);
    padding: 10px 28px;
    border-radius: 30px;
    transition: all 0.3s var(--ease);
}
.slide-cta:hover {
    background: var(--gold);
    color: var(--dark);
}

.carousel-controls {
    position: absolute;
    bottom: 20px; left: 0; right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 10;
}
.carousel-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.4);
    background: rgba(13,10,8,0.6);
    color: var(--gold);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    backdrop-filter: blur(10px);
}
.carousel-btn:hover {
    background: var(--gold);
    color: var(--dark);
}
.carousel-dots { display: flex; gap: 8px; }
.carousel-dots .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(201,168,76,0.3);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}
.carousel-dots .dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* ---- MARQUEE ---- */
.marquee-wrapper {
    overflow: hidden;
    padding: 30px 0;
    margin-bottom: 60px;
    border-top: 1px solid rgba(201,168,76,0.1);
    border-bottom: 1px solid rgba(201,168,76,0.1);
}
.marquee { overflow: hidden; white-space: nowrap; }
.marquee-content {
    display: inline-flex;
    gap: 30px;
    animation: marqueeScroll 30s linear infinite;
}
.marquee-content span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gold-light);
    flex-shrink: 0;
}
.marquee-dot { color: var(--gold); opacity: 0.4; }
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---- MONDO STATS ---- */
.mondo-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.mondo-stat {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 16px;
    transition: all 0.4s var(--ease);
}
.mondo-stat:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201,168,76,0.08);
}
.stat-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-text {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
}

/* =============================================
   VENUE SECTIONS (shared)
   ============================================= */
.venue-section {
    position: relative;
    padding: 140px 60px;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
}
.venue-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent 0%, var(--dark) 100%);
}
.venue-bg {
    position: absolute; inset: 0;
    z-index: 0;
}
.venue-ambient {
    position: absolute; inset: 0;
    z-index: 1;
    overflow: hidden;
}
.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 12s ease-in-out infinite alternate;
}
.orb-1 {
    width: 500px; height: 500px;
    top: -10%; left: -10%;
    background: radial-gradient(circle, rgba(201,168,76,0.08), transparent);
}
.orb-2 {
    width: 400px; height: 400px;
    bottom: -5%; right: -5%;
    background: radial-gradient(circle, rgba(139,105,20,0.06), transparent);
    animation-delay: -6s;
}
.orb-3 {
    width: 300px; height: 300px;
    top: 40%; right: 20%;
    background: radial-gradient(circle, rgba(201,168,76,0.04), transparent);
    animation-delay: -3s;
}
@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -30px) scale(1.1); }
}

.venue-container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
}

/* Venue Header */
.venue-header {
    text-align: center;
    margin-bottom: 80px;
}
.venue-location {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 15px;
}
.venue-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 900;
    color: var(--cream);
    line-height: 1.05;
    margin-bottom: 15px;
}
.venue-tagline {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--gold-light);
}
.venue-line {
    width: 60px; height: 2px;
    background: var(--gold);
    margin: 25px auto 0;
}

/* ---- STORY BLOCKS ---- */
.venue-story { margin-bottom: 80px; }

.story-block {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 30px;
    align-items: start;
    margin-bottom: 50px;
    padding: 30px;
    border-radius: 20px;
    background: rgba(13,10,8,0.3);
    border: 1px solid rgba(201,168,76,0.08);
    transition: all 0.5s var(--ease);
}
.story-block:hover {
    border-color: rgba(201,168,76,0.25);
    background: rgba(13,10,8,0.5);
    transform: translateX(5px);
}
.story-block.reverse {
    grid-template-columns: 1fr 120px;
}
.story-block.reverse .story-icon { order: 2; }
.story-block.reverse .story-text { order: 1; text-align: right; }
.story-block.reverse:hover { transform: translateX(-5px); }

.story-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px; height: 100px;
    border-radius: 50%;
    background: rgba(201,168,76,0.05);
    border: 1px solid rgba(201,168,76,0.15);
    transition: all 0.5s var(--ease);
}
.story-block:hover .story-icon {
    border-color: var(--gold);
    background: rgba(201,168,76,0.1);
    transform: scale(1.05);
}
.story-icon svg, .story-icon > div { width: 60px; height: 60px; }

.story-text h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: 12px;
}
.story-text p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--gold-light);
}
.story-text strong { color: var(--cream); }

/* Chocolate Fountain Icon */
.chocolate-fountain-icon {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.fountain-drip {
    position: absolute;
    width: 3px;
    background: var(--gold);
    border-radius: 2px;
    bottom: 15px;
    animation: drip 2s ease-in-out infinite;
}
.fountain-drip { left: 50%; height: 30px; transform: translateX(-50%); }
.fountain-drip.d2 { left: 35%; height: 20px; animation-delay: 0.5s; opacity: 0.6; }
.fountain-drip.d3 { left: 65%; height: 20px; animation-delay: 1s; opacity: 0.6; }
.fountain-base {
    width: 40px; height: 10px;
    background: rgba(201,168,76,0.3);
    border-radius: 50%;
    position: absolute;
    bottom: 5px;
}
@keyframes drip {
    0%, 100% { opacity: 0.3; height: 30px; }
    50% { opacity: 1; height: 25px; }
}

/* ---- TASTING SECTION (Peratoner) ---- */
.tasting-section {
    margin-bottom: 80px;
    text-align: center;
}
.tasting-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--cream);
    margin-bottom: 8px;
}
.tasting-sub {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--gold);
    font-style: italic;
    margin-bottom: 40px;
}

.tasting-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.tasting-item {
    padding: 30px 20px;
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.5s var(--ease);
    text-align: center;
}
.tasting-item:hover, .tasting-item.active {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(201,168,76,0.1);
}
.tasting-visual {
    width: 100px; height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
    transition: transform 0.5s var(--ease-bounce);
    overflow: hidden;
    border: 2px solid rgba(201,168,76,0.15);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
.tasting-item:hover .tasting-visual { transform: scale(1.15) rotate(5deg); }
.tasting-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease);
}
.tasting-item:hover .tasting-visual img { transform: scale(1.1); }
.tasting-item h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 10px;
}
.tasting-reveal {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease), opacity 0.3s;
    opacity: 0;
}
.tasting-item.active .tasting-reveal {
    max-height: 200px;
    opacity: 1;
}
.tasting-reveal p {
    font-size: 0.9rem;
    color: var(--gold-light);
    line-height: 1.5;
    margin-bottom: 12px;
}
.tasting-bar {
    height: 4px;
    background: rgba(201,168,76,0.15);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    margin-top: 8px;
}
.bar-fill {
    height: 100%;
    width: var(--fill);
    background: linear-gradient(90deg, var(--gold), var(--cream));
    border-radius: 2px;
    transition: width 1s var(--ease-out) 0.2s;
}
.tasting-bar span {
    font-family: var(--font-ui);
    font-size: 0.6rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: absolute;
    right: 0;
    top: -16px;
}

/* ---- I NOSTRI CAPOLAVORI — Scrollable Cards ---- */
.capolavori-section {
    margin-bottom: 80px;
    text-align: center;
}
.capolavori-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--cream);
    margin-bottom: 8px;
}
.capolavori-sub {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--gold);
    font-style: italic;
    margin-bottom: 40px;
}
.capolavori-scroll {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0 20px;
    scrollbar-width: thin;
    scrollbar-color: rgba(201,168,76,0.3) transparent;
}
.capolavori-scroll::-webkit-scrollbar {
    height: 6px;
}
.capolavori-scroll::-webkit-scrollbar-track {
    background: rgba(201,168,76,0.05);
    border-radius: 3px;
}
.capolavori-scroll::-webkit-scrollbar-thumb {
    background: rgba(201,168,76,0.3);
    border-radius: 3px;
}
.capolavoro-card {
    flex: 0 0 280px;
    min-width: 280px;
    max-width: 280px;
    scroll-snap-align: start;
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    text-align: left;
    background: rgba(13,10,8,0.5);
}
.capolavoro-card:hover,
.capolavoro-card.active {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(201,168,76,0.12);
}
.capolavoro-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
}
.capolavoro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease);
}
.capolavoro-card:hover .capolavoro-img img {
    transform: scale(1.08);
}
.capolavoro-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--cream);
    padding: 16px 20px 4px;
    margin: 0;
}
.capolavoro-tag {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    color: var(--gold);
    padding: 0 20px 12px;
    opacity: 0.8;
}
.capolavoro-detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease), padding 0.5s var(--ease);
    padding: 0 20px;
}
.capolavoro-card.active .capolavoro-detail {
    max-height: 350px;
    padding: 0 20px 20px;
}
.capolavoro-detail p {
    font-size: 0.9rem;
    color: var(--gold-light);
    line-height: 1.6;
    margin-bottom: 12px;
}
.capolavoro-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--cream);
    margin-bottom: 12px;
    padding-top: 8px;
    border-top: 1px solid rgba(201,168,76,0.1);
}
.capolavoro-meta strong {
    color: var(--gold);
    font-size: 1.1rem;
}
.capolavoro-buy {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--dark);
    background: var(--gold);
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s var(--ease);
    font-weight: 600;
}
.capolavoro-buy:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201,168,76,0.3);
}

@media (max-width: 768px) {
    .capolavoro-card {
        flex: 0 0 240px;
    }
    .capolavoro-img {
        height: 150px;
    }
}

/* ---- ORDINA / PRENOTA ---- */
.ordina-section {
    margin-bottom: 80px;
    background: rgba(13,10,8,0.5);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    box-sizing: border-box;
}
.ordina-header {
    text-align: center;
    margin-bottom: 30px;
}
.ordina-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--cream);
    margin-bottom: 8px;
}
.ordina-sub {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gold);
    font-style: italic;
    line-height: 1.5;
}
.ordina-form {
    max-width: 100%;
    margin: 0 auto;
}
.ordina-row {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.ordina-field {
    margin-bottom: 16px;
    width: 100%;
}
.ordina-field label {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}
.ordina-field input,
.ordina-field textarea {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 14px 16px;
    background: rgba(20,14,10,0.9);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 10px;
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 16px;
    transition: border-color 0.3s;
    outline: none;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}
.ordina-field input::placeholder,
.ordina-field textarea::placeholder {
    color: rgba(201,168,76,0.35);
}
.ordina-field input:focus,
.ordina-field textarea:focus {
    border-color: var(--gold);
    background: rgba(30,20,14,0.95);
}
.ordina-field textarea {
    resize: vertical;
    min-height: 110px;
}
.ordina-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}
.ordina-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 16px 24px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    width: 100%;
    box-sizing: border-box;
}
.ordina-btn svg {
    flex-shrink: 0;
}
.ordina-btn-email {
    background: var(--gold);
    color: var(--dark);
}
.ordina-btn-email:hover {
    background: var(--cream);
}
.ordina-btn-whatsapp {
    background: #25D366;
    color: #fff;
}
.ordina-btn-whatsapp:hover {
    background: #20bd5a;
}
@media (min-width: 769px) {
    .ordina-form { max-width: 600px; }
    .ordina-row { flex-direction: row; gap: 16px; }
    .ordina-row .ordina-field { flex: 1; }
    .ordina-actions { flex-direction: row; justify-content: center; }
    .ordina-btn { width: auto; border-radius: 30px; }
    .ordina-section { padding: 50px 40px; }
}

/* ---- VENUE CONTACT ---- */
.venue-contact {
    background: rgba(13,10,8,0.4);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}
.contact-block h4 {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}
.contact-block p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gold-light);
}
.social-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.social-tag {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--gold-light);
    padding: 4px 12px;
    background: rgba(201,168,76,0.08);
    border-radius: 6px;
    display: inline-block;
}

/* Social squares */
.cl-sq {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 12px;
    color: var(--gold);
    text-decoration: none;
    background: rgba(13,10,8,0.3);
    transition: all 0.3s var(--ease);
}
.cl-sq:hover {
    border-color: var(--gold);
    background: rgba(201,168,76,0.12);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,168,76,0.1);
}

/* Contact V3: 3 col top, map full, address bottom */
.cv3-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}
.cv3-social-col {
    display: flex !important;
    flex-direction: row !important;
    gap: 8px;
    margin-top: 8px;
}
.cv3-map {
    margin-bottom: 15px;
}
.cv3-map iframe {
    filter: grayscale(0.3);
    transition: filter 0.4s;
}
.cv3-map iframe:hover {
    filter: grayscale(0);
}
.cv3-address {
    text-align: center !important;
    padding-top: 12px;
    border-top: 1px solid rgba(201,168,76,0.1);
}
.cv3-address p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--gold-light);
    letter-spacing: 0.03em;
}
@media (max-width: 768px) {
    .cv3-top { grid-template-columns: 1fr !important; }
    .cv3-social-col { flex-direction: row !important; justify-content: center; }
}

/* Google Maps embed */
.contact-map iframe {
    filter: grayscale(0.3);
    transition: filter 0.4s ease;
}
.contact-map iframe:hover {
    filter: grayscale(0);
}

/* Map under address */
.contact-block-map {
    margin-top: 15px;
}
.contact-block-map iframe {
    filter: grayscale(0.3);
    transition: filter 0.4s;
}
.contact-block-map iframe:hover {
    filter: grayscale(0);
}

/* Social buttons full width */
.contact-socials-full {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}
.contact-social-btn-full {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 20px;
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 14px;
    text-decoration: none;
    color: var(--gold);
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(13,10,8,0.3);
    transition: all 0.4s var(--ease);
}
.contact-social-btn-full:hover {
    border-color: var(--gold);
    background: rgba(201,168,76,0.12);
    color: var(--cream);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201,168,76,0.1);
}
.contact-social-btn-full svg { flex-shrink: 0; }

@media (max-width: 768px) {
    .contact-socials-full { flex-direction: column; }
}

/* Reservation CTA */
.contact-reservation { text-align: center; }
.reservation-btn {
    display: inline-block;
    margin: 5px;
    padding: 12px 24px;
    background: var(--gold);
    color: var(--dark);
    font-family: var(--font-ui);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}
.reservation-btn:hover { background: var(--gold-pale); transform: translateY(-2px); color: var(--dark); }
.reservation-btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}
.reservation-btn-outline:hover { background: var(--gold); color: var(--dark); }

/* =============================================
   COFANETTI / GIFT BOXES
   ============================================= */
.cofanetti-section {
    margin-bottom: 60px;
    text-align: center;
}
.cofanetti-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--cream);
    margin-bottom: 8px;
}
.cofanetti-sub {
    font-family: var(--font-body);
    font-size: 1rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 35px;
}
.cofanetti-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.cofanetto-card {
    background: rgba(13,10,8,0.4);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s var(--ease);
    cursor: default;
}
.cofanetto-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.cofanetto-img-wrap {
    height: 180px;
    overflow: hidden;
}
.cofanetto-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.cofanetto-card:hover .cofanetto-img-wrap img {
    transform: scale(1.08);
}
.cofanetto-card h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--cream);
    padding: 16px 16px 6px;
}
.cofanetto-card p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--gold-light);
    padding: 0 16px 18px;
    line-height: 1.5;
}

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

/* =============================================
   VENUE IMMERSIVE HERO (full-viewport entrance)
   ============================================= */
.venue-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.venue-hero-img {
    position: absolute;
    inset: -15% 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: 0;
}

.venue-hero-overlay {
    position: absolute;
    inset: 0; z-index: 1;
    background:
        radial-gradient(ellipse at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%),
        linear-gradient(to top, rgba(13,10,8,1) 0%, rgba(13,10,8,0.5) 12%, transparent 40%, transparent 70%, rgba(13,10,8,0.4) 90%, rgba(13,10,8,0.95) 100%);
}
.venue-overlay-specchi {
    background:
        radial-gradient(ellipse at center, rgba(26,26,46,0.3) 0%, rgba(0,0,0,0.7) 100%),
        linear-gradient(to top, rgba(13,10,8,1) 0%, transparent 30%, transparent 70%, rgba(15,18,32,0.6) 100%);
}
.venue-overlay-bomboniera {
    background:
        radial-gradient(ellipse at center, rgba(45,26,15,0.3) 0%, rgba(0,0,0,0.65) 100%),
        linear-gradient(to top, rgba(13,10,8,1) 0%, transparent 30%, transparent 70%, rgba(26,16,10,0.6) 100%);
}
.venue-overlay-tommaseo {
    background:
        radial-gradient(ellipse at center, rgba(30,24,16,0.3) 0%, rgba(0,0,0,0.65) 100%),
        linear-gradient(to top, rgba(13,10,8,1) 0%, transparent 30%, transparent 70%, rgba(18,16,10,0.6) 100%);
}

.venue-hero-content {
    position: relative; z-index: 3;
    text-align: center;
    max-width: 700px;
    padding: 0 20px;
}
.venue-hero-location {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 20px;
    opacity: 0; transform: translateY(15px);
    transition: all 0.8s var(--ease-out) 0.2s;
}
.venue-hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--cream);
    line-height: 1.05;
    margin-bottom: 15px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
    opacity: 0; transform: translateY(25px);
    transition: all 1s var(--ease-out) 0.3s;
}
.venue-hero-tagline {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 20px;
    opacity: 0; transform: translateY(15px);
    transition: all 0.8s var(--ease-out) 0.5s;
}
.venue-hero-line {
    width: 50px; height: 2px;
    background: var(--gold);
    margin: 0 auto 20px;
    transform: scaleX(0);
    transition: transform 0.8s var(--ease-out) 0.6s;
}
.venue-hero-invite {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(245,237,224,0.6);
    opacity: 0; transform: translateY(10px);
    transition: all 0.8s var(--ease-out) 0.7s;
}

.venue-hero.in-view .venue-hero-location,
.venue-hero.in-view .venue-hero-title,
.venue-hero.in-view .venue-hero-tagline,
.venue-hero.in-view .venue-hero-invite {
    opacity: 1; transform: translateY(0);
}
.venue-hero.in-view .venue-hero-line { transform: scaleX(1); }

.venue-hero-scroll {
    position: absolute;
    bottom: 30px; left: 50%;
    transform: translateX(-50%); z-index: 3;
}
.venue-hero-scroll span {
    display: block;
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulseV 2s ease-in-out infinite;
}
@keyframes scrollPulseV {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 0.8; transform: scaleY(0.7); }
}

/* =============================================
   ATMOSPHERIC EFFECTS (per-venue)
   ============================================= */
.venue-hero-atmosphere {
    position: absolute;
    inset: 0; z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

/* Chocolate particles */
.venue-atmo-chocolate .atmo-particle {
    position: absolute;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: rgba(201,168,76,0.3);
    animation: floatUp 6s ease-in-out infinite;
}
.venue-atmo-chocolate .atmo-particle:nth-child(1) { left: 10%; bottom: -5%; animation-duration: 7s; width: 3px; height: 3px; }
.venue-atmo-chocolate .atmo-particle:nth-child(2) { left: 25%; bottom: -5%; animation-duration: 5s; animation-delay: 1s; width: 5px; height: 5px; background: rgba(139,26,43,0.2); }
.venue-atmo-chocolate .atmo-particle:nth-child(3) { left: 45%; bottom: -5%; animation-duration: 8s; animation-delay: 0.5s; }
.venue-atmo-chocolate .atmo-particle:nth-child(4) { left: 60%; bottom: -5%; animation-duration: 6s; animation-delay: 2s; width: 6px; height: 6px; background: rgba(201,168,76,0.15); }
.venue-atmo-chocolate .atmo-particle:nth-child(5) { left: 75%; bottom: -5%; animation-duration: 9s; animation-delay: 1.5s; width: 3px; height: 3px; }
.venue-atmo-chocolate .atmo-particle:nth-child(6) { left: 88%; bottom: -5%; animation-duration: 7s; animation-delay: 3s; background: rgba(139,26,43,0.15); }
.venue-atmo-chocolate .atmo-particle:nth-child(7) { left: 35%; bottom: -5%; animation-duration: 6.5s; animation-delay: 4s; width: 2px; height: 2px; }
.venue-atmo-chocolate .atmo-particle:nth-child(8) { left: 55%; bottom: -5%; animation-duration: 8s; animation-delay: 2.5s; width: 5px; height: 5px; }

@keyframes floatUp {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100vh) rotate(180deg); opacity: 0; }
}

/* Mirror reflections (Specchi) */
.venue-atmo-specchi .atmo-mirror {
    position: absolute;
    width: 150px; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(200,200,220,0.15), transparent);
    animation: mirrorGlint 5s ease-in-out infinite;
}
.venue-atmo-specchi .atmo-mirror:nth-child(1) { top: 20%; left: 10%; width: 200px; }
.venue-atmo-specchi .atmo-mirror:nth-child(2) { top: 40%; right: 15%; animation-delay: 1.5s; transform: rotate(45deg); }
.venue-atmo-specchi .atmo-mirror:nth-child(3) { top: 60%; left: 30%; animation-delay: 3s; width: 100px; transform: rotate(-20deg); }
.venue-atmo-specchi .atmo-mirror:nth-child(4) { top: 75%; right: 25%; animation-delay: 2s; transform: rotate(15deg); }
.venue-atmo-specchi .atmo-mirror:nth-child(5) { top: 35%; left: 50%; animation-delay: 4s; width: 180px; transform: rotate(-10deg); }

@keyframes mirrorGlint {
    0%, 100% { opacity: 0; }
    30% { opacity: 0.6; }
    50% { opacity: 1; }
    70% { opacity: 0.4; }
}

/* Steam (Bomboniera - wood oven) */
.venue-atmo-bomboniera .atmo-steam {
    position: absolute;
    width: 80px; height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(210,180,140,0.08), transparent);
    animation: steamRise 8s ease-in-out infinite;
}
.venue-atmo-bomboniera .atmo-steam:nth-child(1) { bottom: 10%; left: 20%; }
.venue-atmo-bomboniera .atmo-steam:nth-child(2) { bottom: 5%; left: 40%; animation-delay: 2s; width: 100px; height: 100px; }
.venue-atmo-bomboniera .atmo-steam:nth-child(3) { bottom: 15%; left: 60%; animation-delay: 4s; width: 60px; height: 60px; }
.venue-atmo-bomboniera .atmo-steam:nth-child(4) { bottom: 8%; left: 75%; animation-delay: 1s; }
.venue-atmo-bomboniera .atmo-steam:nth-child(5) { bottom: 12%; left: 35%; animation-delay: 3s; width: 120px; height: 120px; }

@keyframes steamRise {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    20% { opacity: 0.5; }
    100% { transform: translateY(-60vh) scale(2.5); opacity: 0; }
}

/* Warm candlelight (Tommaseo) */
.venue-atmo-tommaseo .atmo-light {
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(169,131,18,0.06), transparent 70%);
    animation: candleFlicker 4s ease-in-out infinite;
}
.venue-atmo-tommaseo .atmo-light:nth-child(1) { top: 25%; left: 15%; }
.venue-atmo-tommaseo .atmo-light:nth-child(2) { top: 35%; right: 20%; animation-delay: 1.5s; width: 250px; height: 250px; }
.venue-atmo-tommaseo .atmo-light:nth-child(3) { top: 55%; left: 45%; animation-delay: 3s; width: 180px; height: 180px; }

@keyframes candleFlicker {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    25% { opacity: 0.8; transform: scale(1.05); }
    50% { opacity: 0.5; transform: scale(0.95); }
    75% { opacity: 0.9; transform: scale(1.02); }
}

@media (max-width: 768px) {
    .venue-hero { height: 80vh; }
    .venue-hero-title { font-size: clamp(2.5rem, 8vw, 4rem); }
}

/* =============================================
   VENUE PHOTO GALLERY
   ============================================= */
.venue-gallery {
    margin-bottom: 60px;
}
.gallery-label {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    text-align: center;
    display: block;
    margin-bottom: 20px;
}
.gallery-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0 20px;
    scrollbar-width: thin;
    scrollbar-color: rgba(201,168,76,0.3) transparent;
}
.gallery-scroll::-webkit-scrollbar { height: 4px; }
.gallery-scroll::-webkit-scrollbar-track { background: transparent; }
.gallery-scroll::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.3); border-radius: 2px; }

.gallery-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(201,168,76,0.1);
    transition: all 0.5s var(--ease);
    cursor: pointer;
}
.gallery-item:hover {
    border-color: rgba(201,168,76,0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}
.gallery-item img {
    display: block;
    height: 260px;
    width: auto;
    min-width: 200px;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

/* Lazy loading blur-to-sharp */
.img-lazy {
    filter: blur(10px);
    opacity: 0.6;
    transition: filter 0.6s ease, opacity 0.6s ease;
}
.img-lazy.img-loaded {
    filter: blur(0);
    opacity: 1;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 30px 16px 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    font-family: var(--font-ui);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    color: var(--cream);
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s ease;
}
.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Gallery placeholder (for venues without enough photos) */
.gallery-placeholder {
    flex: 0 0 280px;
    height: 260px;
    border-radius: 14px;
    border: 1px dashed rgba(201,168,76,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}
.gallery-placeholder span {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-style: italic;
    color: rgba(201,168,76,0.3);
}

/* =============================================
   SCOMPOSIZIONE PASTICCINI
   ============================================= */
.pastry-decompose {
    margin-bottom: 60px;
    text-align: center;
}
.decompose-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--cream);
    margin-bottom: 8px;
}
.decompose-sub {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--gold);
    font-style: italic;
    margin-bottom: 40px;
}
.decompose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.decompose-item {
    background: rgba(13,10,8,0.4);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 16px;
    padding: 30px 20px;
    cursor: pointer;
    transition: all 0.5s var(--ease);
    text-align: center;
}
.decompose-item:hover, .decompose-item.open {
    border-color: var(--gold);
    background: rgba(13,10,8,0.6);
    transform: translateY(-5px);
}
.decompose-visual {
    margin-bottom: 15px;
    width: 100px; height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
    overflow: hidden;
    border: 2px solid rgba(201,168,76,0.15);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.5s cubic-bezier(0.68,-0.55,0.265,1.55);
}
.decompose-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease);
}
.decompose-item:hover .decompose-visual,
.decompose-item.open .decompose-visual {
    transform: scale(1.15) rotate(5deg);
    border-color: var(--gold);
}
.decompose-item:hover .decompose-img { transform: scale(1.1); }
.decompose-item h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 10px;
}

/* Layers: hidden by default, show on click */
.decompose-layers {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease), opacity 0.3s;
    opacity: 0;
}
.decompose-item.open .decompose-layers {
    max-height: 300px;
    opacity: 1;
}
.decompose-layer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    margin-top: 8px;
    border-radius: 8px;
    transition: background 0.3s;
    text-align: left;
}
.decompose-layer:hover {
    background: rgba(201,168,76,0.05);
}
.layer-color {
    width: 32px; height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid rgba(201,168,76,0.2);
}
.layer-info strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--cream);
    margin-bottom: 2px;
}
.layer-info span {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    color: var(--gold-light);
}

/* =============================================
   CURIOSITA' SECTION
   ============================================= */
.curiosita-section {
    margin-bottom: 60px;
    text-align: center;
}
.curiosita-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--cream);
    margin-bottom: 30px;
}
.curiosita-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: left;
}
.curiosita-card {
    padding: 25px;
    background: rgba(13,10,8,0.4);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 14px;
    transition: all 0.4s var(--ease);
}
.curiosita-card:hover {
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-3px);
}
.curiosita-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}
.curiosita-card p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gold-light);
}
.curiosita-card strong {
    color: var(--cream);
}

@media (max-width: 768px) {
    .decompose-grid { grid-template-columns: 1fr; }
    .curiosita-grid { grid-template-columns: 1fr; }
}

/* =============================================
   VENUE-SPECIFIC THEME OVERRIDES
   ============================================= */

/* --- PERATONER: Crimson + Gold --- */
.venue-peratoner { --v-primary: #8B1A2B; --v-secondary: #C9A84C; --v-accent: rgba(139,26,43,0.3); }
.venue-peratoner .venue-line { background: var(--v-secondary); }
.venue-peratoner .story-icon { border-color: rgba(201,168,76,0.2); background: rgba(139,26,43,0.15); }
.venue-peratoner .story-block:hover .story-icon { border-color: var(--v-secondary); background: rgba(139,26,43,0.25); }
.venue-peratoner .venue-contact { border-color: rgba(201,168,76,0.15); }

/* Decorative: floating chocolate particles */
.venue-peratoner::after {
    content: '';
    position: absolute;
    top: 15%; right: 5%;
    width: 150px; height: 150px;
    background: radial-gradient(circle, rgba(201,168,76,0.06), transparent 70%);
    border-radius: 50%;
    animation: orbFloat 10s ease-in-out infinite alternate;
    pointer-events: none; z-index: 1;
}

/* --- CAFFE' DEGLI SPECCHI: Deep Blue/Silver + Gold accents --- */
.venue-specchi { --v-primary: #a8863e; --v-secondary: #c8c8dc; --v-accent: rgba(168,134,62,0.2); }
.venue-specchi .venue-title { color: var(--cream); }
.venue-specchi .venue-line { background: linear-gradient(90deg, transparent, var(--v-secondary), var(--v-primary), var(--v-secondary), transparent); height: 1px; width: 120px; }
.venue-specchi .venue-tagline { color: var(--v-secondary); }
.venue-specchi .venue-location { color: var(--v-primary); }
.venue-specchi .story-icon { border-color: rgba(200,200,220,0.2); background: rgba(26,26,46,0.5); }
.venue-specchi .story-block:hover .story-icon { border-color: var(--v-secondary); background: rgba(45,45,68,0.6); }
.venue-specchi .story-text strong { color: var(--cream); }
.venue-specchi .contact-block h4 { color: var(--v-primary); }
.venue-specchi .venue-contact { border-color: rgba(200,200,220,0.12); background: rgba(26,26,46,0.4); }
.venue-specchi .social-tag { background: rgba(200,200,220,0.08); }
.venue-specchi .expanded-label { color: var(--v-primary); }
.venue-specchi .timeline-item::before { background: var(--specchi-dark); }
.venue-specchi .experience-card:hover { border-color: rgba(200,200,220,0.3); }
.venue-specchi .offerta-card:hover { border-color: rgba(200,200,220,0.3); }
.venue-specchi .venue-cta-block { border-color: rgba(200,200,220,0.12); background: rgba(26,26,46,0.4); }

/* Decorative: mirror reflection effect */
.venue-specchi::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        linear-gradient(135deg, transparent 40%, rgba(200,200,220,0.03) 50%, transparent 60%),
        linear-gradient(225deg, transparent 40%, rgba(200,200,220,0.02) 50%, transparent 60%);
    pointer-events: none; z-index: 1;
    animation: shimmer 8s ease-in-out infinite alternate;
}
@keyframes shimmer {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

/* --- LA BOMBONIERA: Warm cream/ivory + Art Nouveau motifs --- */
.venue-bomboniera { --v-primary: #B8860B; --v-secondary: #D2B48C; --v-accent: rgba(184,134,11,0.15); }
.venue-bomboniera .venue-title { color: var(--cream); }
.venue-bomboniera .venue-line { background: linear-gradient(90deg, var(--v-primary), var(--v-secondary), var(--v-primary)); width: 80px; }
.venue-bomboniera .venue-tagline { color: var(--v-secondary); }
.venue-bomboniera .venue-location { color: var(--v-primary); }
.venue-bomboniera .story-icon { border-color: rgba(184,134,11,0.2); background: rgba(60,30,15,0.4); }
.venue-bomboniera .story-block:hover .story-icon { border-color: var(--v-primary); background: rgba(60,30,15,0.6); }
.venue-bomboniera .story-text strong { color: var(--cream); }
.venue-bomboniera .contact-block h4 { color: var(--v-primary); }
.venue-bomboniera .venue-contact { border-color: rgba(184,134,11,0.15); background: rgba(40,20,10,0.4); }
.venue-bomboniera .social-tag { background: rgba(184,134,11,0.1); }

/* Decorative: Art Nouveau border motif */
.venue-bomboniera::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: repeating-linear-gradient(90deg,
        transparent 0px, transparent 20px,
        rgba(184,134,11,0.15) 20px, rgba(184,134,11,0.15) 22px,
        transparent 22px, transparent 40px,
        rgba(210,180,140,0.1) 40px, rgba(210,180,140,0.1) 42px
    );
    z-index: 3; pointer-events: none;
}
.venue-bomboniera::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: repeating-linear-gradient(90deg,
        transparent 0px, transparent 20px,
        rgba(184,134,11,0.15) 20px, rgba(184,134,11,0.15) 22px,
        transparent 22px, transparent 40px,
        rgba(210,180,140,0.1) 40px, rgba(210,180,140,0.1) 42px
    );
    z-index: 3; pointer-events: none;
}

/* --- TOMMASEO: Rich dark green/burgundy + antique gold --- */
.venue-tommaseo { --v-primary: #A98312; --v-secondary: #D4C5A0; --v-accent: rgba(169,131,18,0.15); }
.venue-tommaseo .venue-title { color: var(--cream); }
.venue-tommaseo .venue-line { background: var(--v-primary); width: 80px; }
.venue-tommaseo .venue-tagline { color: var(--v-secondary); }
.venue-tommaseo .venue-location { color: var(--v-primary); }
.venue-tommaseo .story-icon { border-color: rgba(169,131,18,0.2); background: rgba(30,15,10,0.5); }
.venue-tommaseo .story-block:hover .story-icon { border-color: var(--v-primary); background: rgba(50,25,15,0.6); }
.venue-tommaseo .story-text strong { color: var(--cream); }
.venue-tommaseo .contact-block h4 { color: var(--v-primary); }
.venue-tommaseo .venue-contact { border-color: rgba(169,131,18,0.12); background: rgba(20,10,5,0.5); }
.venue-tommaseo .social-tag { background: rgba(169,131,18,0.08); }

/* Decorative: literary book motif - subtle vertical lines like book spines */
.venue-tommaseo::before {
    content: '';
    position: absolute;
    top: 10%; left: 3%;
    width: 40px; height: 80%;
    background: repeating-linear-gradient(90deg,
        rgba(169,131,18,0.04) 0px, rgba(169,131,18,0.04) 2px,
        transparent 2px, transparent 8px
    );
    pointer-events: none; z-index: 1;
}
.venue-tommaseo::after {
    content: '';
    position: absolute;
    top: 10%; right: 3%;
    width: 40px; height: 80%;
    background: repeating-linear-gradient(90deg,
        rgba(169,131,18,0.04) 0px, rgba(169,131,18,0.04) 2px,
        transparent 2px, transparent 8px
    );
    pointer-events: none; z-index: 1;
}

/* --- IL LABORATORIO: Warm Brown + Gold --- */
.venue-laboratorio { --v-primary: #C9A84C; --v-secondary: #E8D5A0; --v-accent: rgba(201,168,76,0.15); }
.venue-laboratorio .venue-line { background: var(--v-primary); }
.venue-laboratorio .venue-location { color: var(--v-primary); }
.venue-laboratorio .contact-block h4 { color: var(--v-primary); }
.venue-laboratorio .venue-contact { border-color: rgba(201,168,76,0.15); }

/* =============================================
   LABORATORIO TOUR
   ============================================= */
.lab-tour-intro {
    text-align: center;
    margin-bottom: 50px;
}
.lab-tour-intro h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--cream);
    margin-bottom: 10px;
}
.lab-tour-intro p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--gold-light);
    max-width: 600px;
    margin: 0 auto;
}

.lab-tour-map { margin-bottom: 60px; }
.lab-map-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(13,10,8,0.5);
}
.lab-svg {
    width: 100%;
    height: auto;
    display: block;
}
.lab-zone {
    cursor: pointer;
    transition: all 0.3s ease;
}
.lab-zone:hover {
    fill: rgba(201,168,76,0.1);
    stroke: rgba(201,168,76,0.4);
}
.lab-hotspot {
    cursor: pointer;
    transition: all 0.3s ease;
}
.lab-hotspot:hover {
    fill: rgba(201,168,76,0.9);
    r: 10;
}
.hotspot-pulse {
    animation: hotspotPulse 2s ease-in-out infinite;
    pointer-events: none;
}
@keyframes hotspotPulse {
    0%, 100% { r: 8; opacity: 0.4; }
    50% { r: 14; opacity: 0; }
}

/* Detail Panel */
.lab-detail-panel {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 280px;
    background: rgba(13,10,8,0.95);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 16px;
    padding: 20px;
    z-index: 10;
    display: none;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}
.lab-detail-panel.visible { display: block; animation: panelIn 0.4s ease; }
@keyframes panelIn {
    from { opacity: 0; transform: translateY(-50%) translateX(20px); }
    to { opacity: 1; transform: translateY(-50%) translateX(0); }
}
.lab-detail-close {
    position: absolute;
    top: 10px; right: 14px;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}
.lab-detail-close:hover { color: var(--cream); }
.lab-detail-img {
    width: 100%;
    height: 140px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid rgba(201,168,76,0.1);
}
.lab-detail-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--cream);
    margin-bottom: 8px;
}
.lab-detail-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gold-light);
    line-height: 1.6;
    margin-bottom: 12px;
}
.lab-detail-specs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.lab-spec {
    padding: 4px 10px;
    background: rgba(201,168,76,0.08);
    border-radius: 6px;
    font-family: var(--font-ui);
    font-size: 0.65rem;
    color: var(--gold);
    letter-spacing: 0.05em;
}

/* Lab Stats Row */
.lab-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
}
.lab-stat-item {
    text-align: center;
    padding: 20px;
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 12px;
    transition: border-color 0.3s;
}
.lab-stat-item:hover { border-color: rgba(201,168,76,0.3); }
.lab-stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 4px;
}
.lab-stat-label {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
}

@media (max-width: 768px) {
    .lab-detail-panel {
        position: fixed;
        top: auto; bottom: 0; right: 0; left: 0;
        transform: none;
        width: 100%;
        border-radius: 16px 16px 0 0;
        max-height: 60vh;
        overflow-y: auto;
    }
    .lab-detail-panel.visible { animation: panelSlideUp 0.4s ease; }
    @keyframes panelSlideUp {
        from { opacity: 0; transform: translateY(100%); }
        to { opacity: 1; transform: translateY(0); }
    }
    .lab-stats-row { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   QUIZ SECTION
   ============================================= */
.quiz-section {
    min-height: auto;
    padding: 120px 60px;
}

.quiz-wrapper {
    background: rgba(13,10,8,0.5);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 24px;
    padding: 50px 40px;
    max-width: 700px;
    margin: 0 auto;
    min-height: 380px;
    position: relative;
}

.quiz-screen {
    display: none;
    text-align: center;
    animation: quizIn 0.5s var(--ease);
}
.quiz-screen.active { display: block; }
@keyframes quizIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.quiz-start-icon {
    width: 90px; height: 90px;
    margin: 0 auto 25px;
    animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}
.quiz-start p {
    font-size: 1.05rem;
    color: var(--gold-light);
    margin-bottom: 25px;
}

.quiz-btn {
    padding: 14px 40px;
    background: var(--gold);
    color: var(--dark);
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}
.quiz-btn:hover { background: var(--cream); transform: scale(1.03); }

.quiz-progress {
    width: 100%; height: 3px;
    background: rgba(201,168,76,0.12);
    border-radius: 2px;
    margin-bottom: 25px;
}
.quiz-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--cream));
    border-radius: 2px;
    transition: width 0.5s var(--ease);
}

.quiz-step {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 18px;
}
.quiz-question h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: 30px;
}
.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 480px;
    margin: 0 auto;
}
.quiz-option {
    padding: 14px 22px;
    background: rgba(92,14,26,0.4);
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: 12px;
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    text-align: left;
}
.quiz-option:hover {
    border-color: var(--gold);
    background: rgba(201,168,76,0.12);
    transform: translateX(5px);
}
.quiz-option.selected {
    border-color: var(--gold);
    background: rgba(201,168,76,0.2);
}

.result-chocolate-icon {
    width: 90px; height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
    animation: resultPop 0.6s var(--ease-bounce);
}
@keyframes resultPop {
    from { transform: scale(0); }
    to { transform: scale(1); }
}
.result-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 12px;
}
.result-desc {
    font-size: 1rem;
    color: var(--gold-light);
    line-height: 1.5;
    max-width: 480px;
    margin: 0 auto 25px;
}
.result-match {
    padding: 14px 28px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 25px;
}
.result-match span {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 4px;
}
.result-product {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--cream);
}

/* =============================================
   SOCIAL LINKS
   ============================================= */
.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 160px;
    padding: 30px 20px;
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 16px;
    text-decoration: none;
    color: var(--gold);
    background: rgba(13,10,8,0.4);
    transition: all 0.4s var(--ease);
}
.social-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(201,168,76,0.1);
    background: rgba(92,14,26,0.3);
    color: var(--cream);
}
.social-card svg { transition: transform 0.4s var(--ease); }
.social-card:hover svg { transform: scale(1.15); }
.social-card-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cream);
}
.social-card-handle {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    color: var(--gold-light);
    opacity: 0.7;
}
@media (max-width: 480px) {
    .social-card { width: 100%; }
}

/* =============================================
   NEWSLETTER (main site, dark theme)
   ============================================= */
.newsletter-section {
    position: relative; z-index: 2;
    padding: 80px 40px;
    background: linear-gradient(180deg, var(--dark), var(--crimson-dark), var(--dark));
    text-align: center;
}
.newsletter-container { max-width: 600px; margin: 0 auto; }
.newsletter-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 12px;
}
.newsletter-desc {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-bottom: 30px;
}
.newsletter-form-dark { margin-bottom: 12px; }
.newsletter-row {
    display: flex;
    gap: 10px;
}
.nl-input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 10px;
    background: rgba(13,10,8,0.6);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--cream);
    outline: none;
    transition: border-color 0.3s;
}
.nl-input:focus { border-color: var(--gold); }
.nl-input::placeholder { color: rgba(201,168,76,0.4); }
.nl-btn {
    padding: 14px 28px;
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 10px;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}
.nl-btn:hover { background: var(--gold-pale); transform: translateY(-2px); }
.newsletter-small {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-style: italic;
    color: rgba(201,168,76,0.35);
}
.newsletter-ok p {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 700;
}

@media (max-width: 768px) {
    .newsletter-row { flex-direction: column; }
    .newsletter-section { padding: 60px 20px; }
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    position: relative; z-index: 2;
    padding: 80px 60px 40px;
    border-top: 1px solid rgba(201,168,76,0.1);
    background: var(--dark);
}
.footer-content {
    max-width: 1100px;
    margin: 0 auto;
}
.footer-brand {
    text-align: center;
    margin-bottom: 50px;
}
.footer-logo-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 12px;
    display: block;
    margin: 0 auto 10px;
}
.footer-tagline {
    font-family: var(--font-ui);
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}
.footer-col-title {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.footer-col-links {
    list-style: none;
    padding: 0; margin: 0;
}
.footer-col-links li { margin-bottom: 10px; }
.footer-col-links a {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gold-light);
    transition: color 0.3s;
}
.footer-col-links a:hover { color: var(--cream); }
.footer-social-links {
    margin-top: 16px;
    display: flex;
    gap: 16px;
}
.footer-social-links a {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--gold);
    transition: color 0.3s;
}
.footer-social-links a:hover { color: var(--cream); }
.footer-privacy {
    color: rgba(201,168,76,0.35);
    transition: color 0.3s;
}
.footer-privacy:hover { color: var(--gold); }

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(201,168,76,0.08);
}
.footer-bottom p {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    color: rgba(201,168,76,0.35);
    margin-bottom: 4px;
}

/* =============================================
   LANGUAGE SELECTOR
   ============================================= */
.nav-lang {
    position: relative;
    cursor: pointer;
    margin-left: 20px;
    display: flex;
    align-items: center;
    padding: 10px 0 20px;
}
.lang-current {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 4px 10px;
    transition: color 0.3s;
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 4px;
}
.nav-lang:hover .lang-current,
.nav-lang.open .lang-current { color: var(--cream); border-color: var(--gold); }
.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 130px;
    background: rgba(13,10,8,0.97);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 8px;
    padding: 8px 0;
    z-index: 2000;
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
    backdrop-filter: blur(20px);
}
.nav-lang.open .lang-dropdown { display: block; }
.lang-option {
    display: block;
    padding: 8px 16px;
    font-family: var(--font-ui);
    font-size: 0.72rem;
    color: var(--gold-light);
    transition: all 0.2s;
}
.lang-option:hover { background: rgba(201,168,76,0.08); color: var(--cream); }
.lang-option.active { color: var(--gold); font-weight: 600; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .section, .venue-section { padding: 100px 40px; }
    .curiosita-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section, .venue-section { padding: 60px 16px; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .cursor-glow { display: none; }

    /* Hero */
    .hero-badge { font-size: 0.6rem; padding: 8px 16px; letter-spacing: 0.15em; }
    .hero-logo-img { width: 120px; height: 120px; }
    .hero-subtitle { margin-bottom: 30px; }

    /* Venue Cards — centered wrap on mobile */
    .hero-venues {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 0 10px;
        justify-items: center;
    }
    .venue-card {
        width: 100%;
        height: auto;
        min-height: 100px;
        padding: 12px 6px;
        gap: 6px;
    }
    .venue-card-logo { width: 36px; height: 36px; }
    .venue-card-monogram svg { width: 36px; height: 36px; }
    .venue-card-name { font-size: 0.5rem; }
    .venue-card-sub { font-size: 0.55rem; }

    /* Carousel */
    .carousel-slide { height: 300px; }
    .slide-content h3 { font-size: 1.3rem; }
    .slide-content p { font-size: 0.85rem; }

    /* Stats */
    .mondo-stats { grid-template-columns: repeat(2, 1fr); }

    /* Story blocks */
    .story-block, .story-block.reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .story-block .story-icon,
    .story-block.reverse .story-icon { order: 0; justify-self: center; }
    .story-block .story-text,
    .story-block.reverse .story-text { order: 1; text-align: center; }
    .story-block:hover, .story-block.reverse:hover { transform: translateY(-3px); }

    /* Capolavori */
    .capolavori-section { margin-bottom: 50px; }
    .capolavori-title { font-size: 1.6rem; }
    .capolavoro-card { flex: 0 0 220px; }
    .capolavoro-img { height: 140px; }
    .capolavoro-card h4 { font-size: 1.05rem; padding: 12px 16px 4px; }
    .capolavoro-tag { padding: 0 16px 10px; font-size: 0.65rem; }
    .capolavoro-detail { padding: 0 16px; }
    .capolavoro-card.active .capolavoro-detail { padding: 0 16px 16px; }
    .capolavoro-buy { font-size: 0.7rem; padding: 10px 20px; }

    /* Ordina */
    .ordina-section { padding: 24px 16px; margin-bottom: 50px; border-radius: 16px; }
    .ordina-title { font-size: 1.4rem; }
    .ordina-sub { font-size: 0.85rem; }
    .ordina-header { margin-bottom: 20px; }

    /* Curiosità */
    .curiosita-grid { grid-template-columns: 1fr; }
    .curiosita-card[style*="grid-column"] { grid-column: auto !important; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; }
    .venue-contact { padding: 25px 16px; }

    /* Venue hero */
    .venue-hero { height: 70vh; }
    .venue-hero-title { font-size: clamp(2rem, 8vw, 3.5rem); }
    .venue-hero-tagline { font-size: 0.9rem; }
    .venue-hero-invite { font-size: 0.85rem; }
    .venue-hero-location { font-size: 0.65rem; }
    .venue-container { padding: 0; }

    /* Gallery */
    .gallery-item { flex: 0 0 260px; height: 200px; }

    /* Dividers */
    .lamp-divider { padding: 20px 0; }

    /* Quiz */
    .quiz-wrapper { padding: 30px 20px; }

    /* Footer */
    .footer-columns { grid-template-columns: repeat(2, 1fr); }
    .nav-lang { display: none; }

    /* Seasonal */
    .seasonal-card { grid-template-columns: 1fr; }
    .seasonal-img { min-height: 200px; }
}

@media (max-width: 480px) {
    .section, .venue-section { padding: 50px 12px; }
    .title-main { font-size: 3rem; }

    .hero-venues { gap: 6px; padding: 0 6px; grid-template-columns: repeat(3, 1fr); }
    .venue-card { min-height: 85px; padding: 8px 4px; }
    .venue-card-logo { width: 28px; height: 28px; }
    .venue-card-monogram svg { width: 28px; height: 28px; }
    .venue-card-name { font-size: 0.43rem; letter-spacing: 0.03em; }
    .venue-card-sub { font-size: 0.48rem; }

    .carousel-slide { height: 250px; }
    .mondo-stats { grid-template-columns: 1fr 1fr; }

    .capolavoro-card { flex: 0 0 200px; }
    .capolavoro-img { height: 120px; }

    .venue-hero { height: 60vh; }
    .venue-hero-title { font-size: clamp(1.8rem, 7vw, 3rem); }

    .gallery-item { flex: 0 0 220px; height: 170px; }

    .footer-columns { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }

    .ordina-title { font-size: 1.3rem; }
    .ordina-sub { font-size: 0.9rem; }
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top { position:fixed; bottom:30px; right:30px; width:44px; height:44px; border-radius:50%; background:var(--gold); color:var(--dark); border:none; font-size:1.2rem; cursor:pointer; z-index:999; opacity:0; visibility:hidden; transition:all 0.3s; }
.back-to-top.visible { opacity:1; visibility:visible; }
.back-to-top:hover { background:var(--cream); transform:translateY(-3px); }

/* =============================================
   TESTIMONIAL SECTION
   ============================================= */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}
.testimonial-card {
    background: rgba(26,15,10,0.7);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 12px;
    padding: 32px 28px 24px;
    position: relative;
}
.testimonial-quote {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.5;
    position: absolute;
    top: 12px;
    left: 20px;
}
.testimonial-text {
    font-family: var(--font-body);
    font-size: 1rem;
    font-style: italic;
    color: var(--cream);
    line-height: 1.7;
    margin-top: 20px;
    margin-bottom: 20px;
}
.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(201,168,76,0.15);
    padding-top: 14px;
}
.testimonial-name {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
}
.testimonial-source {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245,237,224,0.4);
}
@media (max-width: 768px) {
    .testimonial-grid { grid-template-columns: 1fr; }
}

/* =============================================
   SEASONAL DASHBOARD
   ============================================= */
.seasonal-dashboard {
    max-width: 900px;
    margin: 60px auto 40px;
    padding: 0 20px;
}
.seasonal-card {
    display: grid;
    grid-template-columns: 380px 1fr;
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(13,10,8,0.5);
    transition: border-color 0.4s;
    min-height: 320px;
}
.seasonal-card:hover { border-color: rgba(201,168,76,0.3); }
.seasonal-img {
    height: 100%;
    min-height: 320px;
    position: relative;
    overflow: hidden;
}
.seasonal-img-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}
.seasonal-img-slide.active {
    opacity: 1;
}
.seasonal-info {
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.seasonal-label {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}
.seasonal-title {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 10px;
}
.seasonal-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--gold-light);
    line-height: 1.6;
    margin-bottom: 15px;
}
.seasonal-period {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}
.seasonal-products {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.seasonal-product-tag {
    padding: 4px 12px;
    background: rgba(139,26,43,0.2);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 20px;
    font-family: var(--font-ui);
    font-size: 0.65rem;
    color: var(--gold-light);
}
.seasonal-order-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 12px 24px;
    background: var(--gold);
    color: var(--dark);
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s var(--ease);
}
.seasonal-order-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,168,76,0.3);
    color: var(--dark);
}
.seasonal-order-btn svg { flex-shrink: 0; }
@media (max-width: 768px) {
    .seasonal-card { grid-template-columns: 1fr; }
    .seasonal-img { min-height: 200px; }
}

/* =============================================
   MOBILE OPTIMIZATIONS
   ============================================= */
@media (max-width: 768px) {
    /* Lab map: scrollable on mobile */
    .lab-mobile-hint { display: block !important; }
    .lab-map-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .lab-svg {
        min-width: 700px;
    }

    /* Touch targets: minimum 44x44px */
    .quiz-option {
        min-height: 44px;
        padding: 14px 22px;
    }
    .tasting-item {
        min-height: 44px;
    }
    .decompose-item {
        min-height: 44px;
    }
    .lab-hotspot {
        r: 14;
    }
    .lab-zone {
        cursor: pointer;
    }
    .blog-filter {
        min-height: 44px;
        min-width: 44px;
        padding: 10px 20px;
    }
    .back-to-top {
        width: 48px;
        height: 48px;
    }
}

/* =============================================
   HERO ENTRANCE ANIMATION (no preloader)
   ============================================= */
.hero-anim {
    opacity: 0;
    transform: translateY(30px);
    animation: heroEnter 0.9s var(--ease-out) forwards;
}
.ha-delay-1 { animation-delay: 0.15s; }
.ha-delay-2 { animation-delay: 0.3s; }
.ha-delay-3 { animation-delay: 0.45s; }
.ha-delay-4 { animation-delay: 0.6s; }

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

/* =============================================
   OTHER VENUES SECTION (venue sub-pages)
   ============================================= */
.other-venues-section {
    position: relative;
    z-index: 2;
    padding: 100px 60px 80px;
    background: var(--dark);
}

/* Footer venues grid (venue sub-pages) */
.footer-venues {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}
.footer-venue h4 {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}
.footer-venue p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gold-light);
    margin-bottom: 2px;
}
.footer-email {
    color: var(--gold);
    font-style: italic;
}

/* =============================================
   VENUE EXPANDED — Specchi classes
   ============================================= */

/* Intro Emozionale (Specchi) */
.venue-intro-emozionale {
    text-align: center;
    padding: 80px 20px 60px;
    max-width: 800px;
    margin: 0 auto 40px;
}
.intro-quote {
    font-family: var(--font-body);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    line-height: 1.9;
    color: var(--gold-light);
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.01em;
    border: none;
    margin: 0;
    padding: 0;
}

/* Expanded Section Headers (Specchi) */
.venue-expanded-section {
    margin-bottom: 80px;
}
.expanded-section-header {
    text-align: center;
    margin-bottom: 50px;
}
.expanded-label {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}
.expanded-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 12px;
}
.expanded-line {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto;
}

/* Timeline (Specchi) */
.venue-timeline {
    position: relative;
    padding-left: 60px;
}
.venue-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--gold) 10%, var(--gold) 90%, transparent);
    opacity: 0.3;
}
.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding: 25px 30px;
    background: rgba(13,10,8,0.35);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 16px;
    transition: all 0.5s var(--ease);
}
.timeline-item:hover {
    border-color: rgba(201,168,76,0.3);
    background: rgba(13,10,8,0.55);
    transform: translateX(8px);
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -44px;
    top: 30px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--specchi-dark);
    border: 2px solid var(--gold);
    box-shadow: 0 0 12px rgba(201,168,76,0.3);
    z-index: 2;
}
.timeline-year {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 6px;
    line-height: 1;
}
.timeline-content h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 8px;
}
.timeline-content p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--gold-light);
}
.timeline-content strong {
    color: var(--cream);
}

/* Experience Grid (Specchi) */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.experience-card {
    padding: 35px 28px;
    background: rgba(13,10,8,0.35);
    border: 1px solid rgba(201,168,76,0.08);
    border-radius: 18px;
    text-align: center;
    transition: all 0.4s var(--ease);
}
.experience-card:hover {
    border-color: rgba(201,168,76,0.3);
    background: rgba(13,10,8,0.55);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
.experience-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
}
.experience-icon svg {
    width: 100%;
    height: 100%;
}
.experience-card h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--cream);
    margin-bottom: 10px;
}
.experience-card p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gold-light);
}

/* Offerta Grid (Specchi) */
.offerta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.offerta-card {
    padding: 30px 24px;
    background: rgba(13,10,8,0.35);
    border: 1px solid rgba(201,168,76,0.08);
    border-radius: 18px;
    text-align: center;
    transition: all 0.4s var(--ease);
}
.offerta-card:hover {
    border-color: rgba(201,168,76,0.3);
    background: rgba(13,10,8,0.55);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
.offerta-visual {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 18px;
}
.offerta-card h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--cream);
    margin-bottom: 10px;
}
.offerta-card p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gold-light);
}

/* Venue CTA Block (Specchi) */
.venue-cta-block {
    text-align: center;
    padding: 60px 30px;
    margin-bottom: 60px;
    background: rgba(13,10,8,0.4);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}
.venue-cta-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.04), transparent 70%);
    pointer-events: none;
}
.cta-headline {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 14px;
    position: relative;
}
.cta-subline {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--gold-light);
    font-style: italic;
    max-width: 550px;
    margin: 0 auto 20px;
    position: relative;
}
.cta-line {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 30px;
}
.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}
.cta-btn {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s var(--ease);
}
.cta-btn-primary {
    background: var(--gold);
    color: var(--dark);
}
.cta-btn-primary:hover {
    background: var(--gold-light);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201,168,76,0.25);
}
.cta-btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}
.cta-btn-secondary:hover {
    background: var(--gold);
    color: var(--dark);
}

/* Specchi responsive */
@media (max-width: 768px) {
    .experience-grid,
    .offerta-grid {
        grid-template-columns: 1fr;
    }
    .venue-cta-block {
        padding: 40px 20px;
    }
    .cta-headline {
        font-size: 1.6rem;
    }
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    .cta-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    .venue-timeline {
        padding-left: 45px;
    }
    .venue-timeline::before {
        left: 16px;
    }
    .timeline-item::before {
        left: -36px;
        width: 12px;
        height: 12px;
    }
    .timeline-year {
        font-size: 1.4rem;
    }
    .other-venues-section {
        padding: 80px 20px 60px;
    }
}

/* =============================================
   SMOOTH ANIMATION REFINEMENTS & REDUCED MOTION
   ============================================= */

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .venue-hero-img {
        transform: none !important;
        will-change: auto;
    }
    .hero-content {
        transform: none !important;
        opacity: 1 !important;
    }
    #ambient-canvas {
        display: none;
    }
    .cursor-glow {
        display: none;
    }
    .reveal-up, .reveal-left, .reveal-right, .reveal-scale {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* =============================================
   VENUE PAGE EXPANDED — Peratoner Mini-Site
   ============================================= */

/* --- Intro Emozionale --- */
.vp-intro {
    text-align: center;
    padding: 80px 20px 60px;
    max-width: 800px;
    margin: 0 auto 40px;
}
.vp-intro-text {
    font-family: var(--font-body);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    line-height: 1.9;
    color: var(--gold-light);
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.01em;
}

/* --- Timeline --- */
.vp-storia {
    margin-bottom: 80px;
}
.vp-timeline {
    position: relative;
    padding-left: 60px;
}
.vp-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--gold) 10%, var(--gold) 90%, transparent);
    opacity: 0.3;
}
.vp-timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding: 25px 30px;
    background: rgba(13,10,8,0.35);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 16px;
    transition: all 0.5s var(--ease);
}
.vp-timeline-item:hover {
    border-color: rgba(201,168,76,0.3);
    background: rgba(13,10,8,0.55);
    transform: translateX(8px);
}
.vp-timeline-item::before {
    content: '';
    position: absolute;
    left: -44px;
    top: 30px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--crimson);
    border: 2px solid var(--gold);
    box-shadow: 0 0 12px rgba(201,168,76,0.3);
    z-index: 2;
}
.vp-timeline-year {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 6px;
    line-height: 1;
}
.vp-timeline-content h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 8px;
}
.vp-timeline-content p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--gold-light);
}
.vp-timeline-content strong {
    color: var(--cream);
}

/* --- Esperienza --- */
.vp-esperienza {
    margin-bottom: 80px;
}
.vp-esperienza-sub {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gold);
    margin-top: 15px;
}

/* --- Prodotti Grid --- */
.vp-prodotti {
    margin-bottom: 80px;
}
.vp-prodotti-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.vp-prodotto-card {
    background: rgba(13,10,8,0.4);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s var(--ease);
    cursor: default;
}
.vp-prodotto-card:hover {
    border-color: rgba(201,168,76,0.4);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.vp-prodotto-img {
    height: 200px;
    overflow: hidden;
}
.vp-prodotto-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.vp-prodotto-card:hover .vp-prodotto-img img {
    transform: scale(1.08);
}
.vp-prodotto-info {
    padding: 20px;
}
.vp-prodotto-info h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 8px;
}
.vp-prodotto-info p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--gold-light);
}
.vp-prodotto-info strong {
    color: var(--cream);
}

/* --- Gallery Expanded --- */
.vp-gallery-expanded {
    margin-bottom: 60px;
}
.vp-gallery-expanded .gallery-item img {
    height: 340px;
    min-width: 280px;
}

/* --- CTA Section --- */
.vp-cta {
    text-align: center;
    padding: 50px 30px;
    margin-bottom: 40px;
    background: rgba(139,26,43,0.15);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 20px;
    backdrop-filter: blur(8px);
}
.vp-cta h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--cream);
    margin-bottom: 12px;
}
.vp-cta p {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--gold-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Map embed inside contact --- */
.vp-map {
    margin-top: 30px;
}
.vp-map iframe {
    transition: filter 0.4s ease;
}
.vp-map iframe:hover {
    filter: grayscale(0) !important;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .vp-prodotti-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .vp-prodotti-grid {
        grid-template-columns: 1fr;
    }
    .vp-timeline {
        padding-left: 45px;
    }
    .vp-timeline::before {
        left: 16px;
    }
    .vp-timeline-item::before {
        left: -36px;
        width: 12px;
        height: 12px;
    }
    .vp-timeline-year {
        font-size: 1.4rem;
    }
    .vp-gallery-expanded .gallery-item img {
        height: 260px;
        min-width: 220px;
    }
    .vp-cta {
        padding: 35px 20px;
    }
    .vp-cta h3 {
        font-size: 1.5rem;
    }
}

/* =============================================
   VENUE PAGE EXPANDED — Bomboniera & Tommaseo
   ============================================= */

/* --- Section Headers --- */
.vp-section {
    margin-bottom: 80px;
}
.vp-section-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--cream);
    text-align: center;
    margin-bottom: 12px;
}
.vp-section-line {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 50px;
}

/* --- Features Grid --- */
.vp-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.vp-feature-card {
    padding: 35px 28px;
    background: rgba(13,10,8,0.35);
    border: 1px solid rgba(201,168,76,0.08);
    border-radius: 18px;
    text-align: center;
    transition: all 0.4s var(--ease);
}
.vp-feature-card:hover {
    border-color: rgba(201,168,76,0.3);
    background: rgba(13,10,8,0.55);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
.vp-feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
}
.vp-feature-icon svg {
    width: 100%;
    height: 100%;
}
.vp-feature-card h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--cream);
    margin-bottom: 10px;
}
.vp-feature-card p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gold-light);
}

/* --- Dolci Grid (Bomboniera) --- */
.vp-dolci-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.vp-dolce-card {
    padding: 28px 22px;
    background: rgba(13,10,8,0.35);
    border: 1px solid rgba(201,168,76,0.08);
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s var(--ease);
}
.vp-dolce-card:hover {
    border-color: rgba(184,134,11,0.35);
    background: rgba(13,10,8,0.55);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.vp-dolce-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--cream);
    margin-bottom: 10px;
}
.vp-dolce-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gold-light);
    margin-bottom: 14px;
}
.vp-dolce-origin {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
}

/* --- Menu Grid (Tommaseo) --- */
.vp-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.vp-menu-card {
    padding: 35px 24px;
    background: rgba(13,10,8,0.35);
    border: 1px solid rgba(201,168,76,0.08);
    border-radius: 18px;
    text-align: center;
    transition: all 0.4s var(--ease);
}
.vp-menu-card:hover {
    border-color: rgba(169,131,18,0.35);
    background: rgba(13,10,8,0.55);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
.vp-menu-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.vp-menu-card h4 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--cream);
    margin-bottom: 6px;
}
.vp-menu-detail {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.vp-menu-card > p:last-child {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gold-light);
}

/* --- CTA Section (Bomboniera & Tommaseo) --- */
.vp-cta-section {
    text-align: center;
    padding: 60px 30px;
    margin-bottom: 60px;
    background: rgba(13,10,8,0.4);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}
.vp-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.04), transparent 70%);
    pointer-events: none;
}
.vp-cta-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 14px;
    position: relative;
}
.vp-cta-text {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--gold-light);
    font-style: italic;
    max-width: 550px;
    margin: 0 auto 30px;
    position: relative;
}
.vp-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}
.vp-cta-btn {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s var(--ease);
    background: var(--gold);
    color: var(--dark);
}
.vp-cta-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201,168,76,0.25);
}
.vp-cta-btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}
.vp-cta-btn-outline:hover {
    background: var(--gold);
    color: var(--dark);
}

/* --- Bomboniera & Tommaseo Responsive --- */
@media (max-width: 900px) {
    .vp-dolci-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .vp-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .vp-features-grid {
        grid-template-columns: 1fr;
    }
    .vp-dolci-grid {
        grid-template-columns: 1fr;
    }
    .vp-menu-grid {
        grid-template-columns: 1fr;
    }
    .vp-cta-section {
        padding: 40px 20px;
    }
    .vp-cta-title {
        font-size: 1.6rem;
    }
    .vp-cta-actions {
        flex-direction: column;
        align-items: center;
    }
    .vp-cta-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}
