:root {
    --color-deep-charcoal: #1a1a1a;
    --color-charcoal: #2a2a2a;
    --color-charcoal-light: #3a3a3a;
    --color-warm-cream: #f4f0e8;
    --color-cream: #e8e0d4;
    --color-gold: #c9a84c;
    --color-gold-light: #d4b45c;
    --color-burgundy: #8b3a3a;
    --color-burgundy-light: #a84a4a;
    --color-coffee: #5c3a1e;
    --color-coffee-light: #7a4e2a;
    --color-wood: #6b4423;
    --color-wood-light: #8b5e3c;
    --font-serif: "Cormorant Garamond", Georgia, serif;
    --font-display: "Playfair Display", serif;
    --font-sans: "Cormorant Garamond", sans-serif;
    --max-width: 1200px;
    --transition-smooth: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: var(--font-serif);
    background-color: var(--color-deep-charcoal);
    color: var(--color-warm-cream);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== SKIP LINK ===== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold);
    color: var(--color-deep-charcoal);
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    transition: top 0.3s;
    font-size: 0.9em;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.skip-link:focus {
    top: 20px;
}

/* ===== NAV ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}
nav.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}
.nav-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--color-warm-cream);
    text-decoration: none;
    letter-spacing: 0.3em;
}
.nav-logo .gold {
    color: var(--color-gold);
}
.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}
.nav-links a {
    color: var(--color-warm-cream);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s;
}
.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.4s;
}
.nav-links a:hover,
.nav-links a:focus {
    color: var(--color-gold);
}
.nav-links a:hover::after,
.nav-links a:focus::after {
    width: 100%;
}
.nav-english {
    color: var(--color-gold) !important;
    font-weight: 500;
    font-size: 0.8rem;
}
.nav-english::after {
    background: transparent !important;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(26, 26, 26, 0.3) 0%,
        rgba(26, 26, 26, 0.5) 40%,
        rgba(26, 26, 26, 0.85) 70%,
        rgba(26, 26, 26, 1) 100%
    );
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}
.hero-subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease 0.3s forwards;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease 0.6s forwards;
}
.hero-title .line-break {
    display: block;
    font-size: 0.5em;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin-bottom: 8px;
    font-weight: 300;
}
.hero-description {
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.9;
    font-weight: 300;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease 0.9s forwards;
}
.hero-description span {
    color: var(--color-gold);
}

.scroll-indicator {
    position: absolute;
    bottom: 25px;
    /*left: 50%;
transform: translateX(-50%);*/
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center; /* Aligns children horizontally in vertical flex */
    justify-content: center;
    text-align: center; /* Fixes text centering offset caused by letter-spacing */
    gap: 8px;
    opacity: 0;
    animation: fadeUp 1s ease 1.3s forwards;
    width: max-content; /* Prevents dynamic width recalculation bugs */
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--color-gold);
    position: relative;
}
.scroll-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: var(--color-gold);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%,
    100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== SECTION STYLES ===== */
section {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.section-header {
    margin-bottom: 64px;
}
.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}
.section-subtitle {
    font-size: 1rem;
    max-width: 520px;
    line-height: 1.85;
    color: var(--color-cream);
    font-weight: 300;
}
.section-divider {
    width: 60px;
    height: 1px;
    background: var(--color-gold);
    margin: 24px 0;
}

/* ===== CONTENT AREAS ===== */
.content-area {
    font-size: 1.02rem;
    line-height: 1.9;
    color: var(--color-cream);
    /*font-weight: 300;*/
}
.content-area p {
    margin-bottom: 24px;
}
.content-area p:last-child {
    margin-bottom: 0;
}
.content-area p:first-child {
    font-size: 1.15rem;
    line-height: 1.8;
}

/* ===== TWO COLUMN ===== */
.two-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    margin-top: 64px;
}
@media (min-width: 900px) {
    .two-column {
        grid-template-columns: 1fr 1.2fr;
    }
}

/* ===== IMAGE GRID ===== */
.image-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
}
.image-grid img {
    width: 100%;
    border-radius: 4px;
    transition:
        transform 0.6s ease,
        box-shadow 0.6s ease;
}
.image-grid img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* ===== FEATURED IMAGE (hero size) ===== */
.featured-image {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.featured-image img {
    width: 100%;
    height: 90vh;
    object-fit: cover;
    display: block;
}

/* ===== HORIZONTAL IMAGE ===== */
.horizontal-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--color-charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.horizontal-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(129, 58, 58, 0.15) 0%,
        rgba(201, 168, 76, 0.05) 50%,
        rgba(129, 58, 58, 0.15) 100%
    );
}
.horizontal-image .placeholder-text {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-cream);
    font-size: 1.8rem;
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.horizontal-image .placeholder-text span {
    color: var(--color-burgundy);
}

/* ===== PARALLAX ===== */
.parallax-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.parallax-bg {
    position: absolute;
    inset: -10%;
    z-index: 0;
}
.parallax-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.7);
    z-index: 1;
}
.parallax-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0 20px;
}
.parallax-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    margin-bottom: 16px;
}
.parallax-subtitle {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-cream);
    opacity: 0.9;
}

/* ===== TESTIMONIAL ===== */
.testimonial {
    text-align: center;
    margin-top: 80px;
}
.testimonial-blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-style: italic;
    font-weight: 300;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 24px;
    color: var(--color-warm-cream);
}
.testimonial-author {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
}

/* ===== FOOTER ===== */
footer {
    background: var(--color-deep-charcoal);
    padding: 80px 40px 40px;
    border-top: 1px solid var(--color-charcoal);
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}
.footer-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 16px;
}
.footer-brand .gold {
    color: var(--color-gold);
}
.footer-text {
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--color-cream);
    opacity: 0.6;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: var(--color-cream);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--color-gold);
}
.footer-bottom {
    max-width: 1200px;
    margin: 48px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--color-charcoal);
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}
.footer-bottom p {
    font-size: 0.75rem;
    color: var(--color-cream);
    opacity: 0.4;
    letter-spacing: 0.05em;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 {
    transition-delay: 0.1s;
}
.reveal-delay-2 {
    transition-delay: 0.2s;
}
.reveal-delay-3 {
    transition-delay: 0.3s;
}
.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ===== BORDERS ===== */
.border-line {
    width: 60px;
    height: 1px;
    background: var(--color-gold);
}
.border-line.left {
    margin-right: 20px;
}
.border-line.right {
    margin-left: 20px;
}

/* ===== ACTIVE NAV ===== */
.nav-link.active {
    color: var(--color-gold);
}
.nav-link.active::after {
    width: 100%;
}

/* ===== MOBILE MENU & RESPONSIVE RECTIFICATIONS ===== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 8px;
    width: 40px;
    height: 40px;
}
.mobile-menu-btn span {
    width: 28px;
    height: 1px;
    background: var(--color-warm-cream);
    transition:
        transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        opacity 0.3s ease;
    transform-origin: center;
}

/* Fixed Hamburger Animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    nav {
        padding: 18px 24px;
    }
    .mobile-menu-btn {
        display: flex;
    }

    /* Full width mobile menu fix */
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98);
        padding: 100px 40px 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition:
            opacity 0.4s ease,
            transform 0.4s ease,
            visibility 0.4s;
        z-index: 1000;
    }
    .nav-links.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .nav-links a {
        color: var(--color-warm-cream);
        font-size: 1.2rem;
        letter-spacing: 0.2em;
    }
    .nav-links a::after {
        display: none;
    }
    .hero-content {
        padding: 0 20px;
    }
    /* Correzione per la sezione Parallax e l'immagine i002.jpg */
    .parallax-section {
        min-height: auto;
        padding: 80px 20px; /* Dà respiro al testo evitando che esca dai bordi */
    }

    .parallax-bg {
        inset: 0; /* Riporta lo sfondo esattamente nei confini del contenitore */
    }

    .parallax-bg img {
        width: 100%;
        max-width: 100vw; /* Garantisce che la larghezza non superi la viewport */
        height: 100%;
        object-fit: cover;
        object-position: center; /* Assicura che l'immagine sia centrata */
        transform: none !important; /* Disabilita lo spostamento JS su mobile per evitare sovrapposizioni */
    }
}

/* ===== EXPERIENCES PAGE ===== */

/* Page hero (smaller than home hero) */
.exp-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding-bottom: 80px;
    background: linear-gradient(
        180deg,
        var(--color-charcoal) 0%,
        var(--color-deep-charcoal) 100%
    );
}
.exp-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    padding: 0 20px;
}
.exp-hero-content .hero-subtitle {
    animation-delay: 0.2s;
}
.exp-hero-content .hero-title {
    font-size: clamp(2.2rem, 6vw, 4.2rem);
    animation-delay: 0.4s;
}
.exp-hero-content .hero-description {
    animation-delay: 0.6s;
}

/* Breadcrumb / back link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    text-decoration: none;
    margin-bottom: 24px;
    transition: opacity 0.3s;
    opacity: 0;
    animation: fadeUp 1s ease 0.1s forwards;
}
.back-link:hover {
    opacity: 0.7;
}
.back-link::before {
    content: "←";
    font-size: 1rem;
}

/* ===== ESSENZA CARD ===== */
.essenza-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 64px 0;
    border-bottom: 1px solid var(--color-charcoal-light);
}
.essenza-card:last-child {
    border-bottom: none;
}
@media (min-width: 900px) {
    .essenza-card {
        grid-template-columns: 320px 1fr;
        gap: 64px;
    }
}
.essenza-header {
    position: relative;
    align-self: start;
}
.essenza-essence-label {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400;
    font-style: italic;
    color: var(--color-gold);
    margin-bottom: 8px;
    line-height: 1.2;
}
.essenza-name {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 400;
    color: var(--color-warm-cream);
    margin-bottom: 16px;
    line-height: 1.3;
}
.essenza-subtitle {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--color-cream);
    font-weight: 300;
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 24px;
}
.essenza-image {
    width: 100%;
    max-width: 320px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(212, 175, 55, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.essenza-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65), 0 0 15px rgba(212, 175, 55, 0.3);
}
.essenza-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Tasting notes / definition list */
.tasting-notes {
    margin-top: 32px;
    padding: 28px 32px;
    background: var(--color-charcoal);
    border-left: 2px solid var(--color-gold);
}
.tasting-notes dt {
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 4px;
    font-weight: 500;
}
.tasting-notes dd {
    font-size: 0.95rem;
    color: var(--color-cream);
    margin-bottom: 20px;
    margin-left: 0;
    font-weight: 300;
    line-height: 1.7;
}
.tasting-notes dd:last-child {
    margin-bottom: 0;
}

/* ===== GALLERY — ESSENZE PACKAGING ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 48px;
}
.gallery-grid figure {
    overflow: hidden;
    position: relative;
}
.gallery-grid img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    background: var(--color-charcoal);
}
.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}
.gallery-grid figcaption {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--color-cream);
    opacity: 0.5;
    margin-top: 10px;
    text-align: center;
}

/* ===== FILOSOFIA ===== */
.filosofia-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
    list-style: none;
    padding: 0;
    margin: 32px 0;
    counter-reset: filosofia;
}
.filosofia-list li {
    counter-increment: filosofia;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-warm-cream);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 12px;
}
.filosofia-list li::before {
    content: counter(filosofia);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

/* ===== LINEA SECTION (Signature, Maison, Private) ===== */
.linea-section {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.linea-section .section-header {
    margin-bottom: 48px;
}
.linea-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 400;
    color: var(--color-cream);
    margin-top: 8px;
    font-style: italic;
    line-height: 1.5;
}
.elemento-distintivo {
    margin-top: 40px;
    padding: 28px 32px;
    border-left: 2px solid var(--color-burgundy);
    background: linear-gradient(
        135deg,
        rgba(139, 58, 58, 0.08) 0%,
        transparent 100%
    );
}
.elemento-distintivo h4 {
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-burgundy-light);
    margin-bottom: 8px;
    font-weight: 500;
}
.elemento-distintivo p {
    font-size: 0.95rem;
    color: var(--color-cream);
    line-height: 1.8;
    font-weight: 300;
    font-style: italic;
}

/* ===== JOURNEY SUB-ARTICLE ===== */
.journey-article {
    margin-top: 80px;
    padding-top: 64px;
    border-top: 1px solid var(--color-charcoal-light);
}
.journey-article h3 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--color-warm-cream);
    margin-bottom: 8px;
}
.journey-article h4 {
    font-size: 0.88rem;
    color: var(--color-cream);
    font-style: italic;
    font-weight: 300;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* ===== GIFT BOX GRID ===== */
.gift-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 48px;
}
.gift-grid figure {
    overflow: hidden;
    position: relative;
}
.gift-grid img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    background: var(--color-charcoal);
}
.gift-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}
.gift-grid figcaption {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--color-cream);
    opacity: 0.5;
    margin-top: 10px;
    text-align: center;
}

/* ===== MAISON THUMBNAIL ROW ===== */
.thumb-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
}
@media (max-width: 600px) {
    .thumb-row {
        grid-template-columns: repeat(2, 1fr);
    }
}
.thumb-row img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    transition: transform 0.6s ease;
    background: var(--color-charcoal);
}
.thumb-row img:hover {
    transform: scale(1.04);
}

/* ===== DIVIDER ===== */
.section-divider-full {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.section-divider-full hr {
    border: none;
    height: 1px;
    background: var(--color-charcoal-light);
}

/* ===== EXPERIENCES RESPONSIVE ===== */
@media (max-width: 768px) {
    .exp-hero {
        min-height: 40vh;
        padding-bottom: 48px;
    }
    .essenza-card {
        padding: 48px 0;
        gap: 32px;
    }
    .essenza-header {
        position: static;
    }
    .tasting-notes {
        padding: 20px 24px;
    }
    .linea-section {
        padding: 64px 24px;
    }
    .elemento-distintivo {
        padding: 20px 24px;
    }
}
