/* ============================================================
   SERAFINI E VIDOTTO — Global Stylesheet
   serafinividotto.it clone — CSS unificato (deduplicated)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Raleway:wght@300;400;500;600;700&display=swap');

/* ============================================================
   SHARED — reset, root, base
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Questa Grande';
    src: url('../font/Questa_Grande_Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

:root {
    --gold: #c5ae8a;
    --dark: #000000;
    --white: #ffffff;
    --red: #C20E1A;
    --cream: #f5f0e8;
    --gray-light: #f0ede7;
    --text: #1a1a1a;
    --text-light: #666;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Questa Grande', serif;
    color: var(--text);
    background: var(--dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Questa Grande', serif;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
}
h1 {font-size: clamp(36px, 5vw, 64px);}
h2 {font-size: clamp(36px, 3vw, 50px);}
p, ul li, ol li {
    font-family: ui-sans-serif;
    font-weight: 400;
    font-size: clamp(20px, 2vw, 24px);
    line-height: 1.5;
    margin: 0;
}


/* ============================================================
   SHARED — NAVIGATION
   ============================================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 40px;
    gap: 40px;
    background: rgb(0 0 0);
    transition: padding 0.4s ease;
}


.nav-logo img {
    height: 70px;
    filter: brightness(1);
    display: block;
    transition: height 0.5s cubic-bezier(.25,.8,.25,1), opacity 0.5s ease;
}

@media(max-width: 1350px) {
    .nav-logo img {
        height: 70px;
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: clamp(30px, 3.5vw, 60px);
    align-items: center;
}

    .nav-links a {
        color: rgba(255,255,255,0.88);
        font-family: 'Questa Grande', serif;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1.8px;
        text-transform: uppercase;
        transition: color 0.3s ease, font-size 0.5s cubic-bezier(.25,.8,.25,1);
    }


        .nav-links a:hover,
        .nav-links a.active {
            color: var(--red);
        }

/* nav sempre scura (es. dettaglio vini) */
.nav-always-dark {
    background: rgba(10,10,10,0.95) !important;
    padding: 14px 40px;
}

/* ── Hamburger ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    position: relative;
    z-index: 1300;
}

    .hamburger span {
        display: block;
        width: 26px;
        height: 1.5px;
        background: #fff;
        border-radius: 2px;
        transition: transform 0.38s cubic-bezier(.23,1,.32,1), opacity 0.3s ease, width 0.3s ease;
        transform-origin: center;
    }

    .hamburger.open span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
        width: 0;
    }

    .hamburger.open span:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }

/* ── Mobile menu overlay fullscreen ── */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: #0a0a0a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.55s cubic-bezier(.77,0,.175,1);
    pointer-events: none;
    overflow-y: auto;
}

    .mobile-menu.open {
        clip-path: inset(0 0 0% 0);
        pointer-events: all;
    }

    .mobile-menu ul {
        list-style: none;
        text-align: center;
        padding: 0;
        width: 100%;
    }

        .mobile-menu ul li {
            opacity: 0;
            transform: translateY(18px);
            transition: opacity 0.4s ease, transform 0.4s ease;
        }

    .mobile-menu.open ul li {
        opacity: 1;
        transform: translateY(0);
    }

        .mobile-menu.open ul li:nth-child(1) {
            transition-delay: 0.15s;
        }

        .mobile-menu.open ul li:nth-child(2) {
            transition-delay: 0.21s;
        }

        .mobile-menu.open ul li:nth-child(3) {
            transition-delay: 0.27s;
        }

        .mobile-menu.open ul li:nth-child(4) {
            transition-delay: 0.33s;
        }

        .mobile-menu.open ul li:nth-child(5) {
            transition-delay: 0.39s;
        }

        .mobile-menu.open ul li:nth-child(6) {
            transition-delay: 0.45s;
        }

    .mobile-menu ul li a {
        font-family: 'Questa Grande';
        display: block;
        padding: 15px 40px;
        color: rgba(255,255,255,0.82);
        text-decoration: none;
        font-size: 30px;
        font-weight: 300;
        letter-spacing: 2px;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        transition: color 0.25s, padding-left 0.3s ease;
    }

    .mobile-menu ul li:first-child a {
        border-top: 1px solid rgba(255,255,255,0.07);
    }

    .mobile-menu ul li a:hover {
        color: var(--gold);
        padding-left: 56px;
    }

.mobile-menu-social {
    margin-top: 36px;
    display: flex;
    gap: 28px;
    opacity: 0;
    transition: opacity 0.4s ease 0.65s;
}

.mobile-menu.open .mobile-menu-social {
    opacity: 1;
}

.mobile-menu-social a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.25s;
}

    .mobile-menu-social a:hover {
        color: var(--gold);
    }

/* ── Responsive ── */
@media (min-width: 1125px) {
    .mobile-menu {
        display: none !important;
    }
}

@media (max-width: 1125px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    nav {
        justify-content: space-between;
    }
}

/* ============================================================
   SHARED — FOOTER
   ============================================================ */

.cg-footer {
    background: #000;
    color: rgba(255, 255, 255, 0.75);
    padding: 60px 80px 20px;
}

.cg-footer__logo {
    margin-bottom: 20px;
}

    .cg-footer__logo img {
        height: 300px;
        display: block;
    }


.cg-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}



.cg-footer__info p {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.cg-footer__info a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

    .cg-footer__info a:hover {
        color: rgba(255, 255, 255, 1);
    }


.cg-footer__bottom .cg-footer__info {
    margin-top: 50px;
}

.cg-footer__info strong {
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.cg-footer__email {
    margin-top: 10px !important;
    font-style: italic;
}

    .cg-footer__email a {
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        transition: color 0.3s;
    }

        .cg-footer__email a:hover {
            color: #fff;
        }

/* ── Colonna destra ── */
.cg-footer__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 40px;
    margin-top: 50px;
}

/* Titolo "Contataci" */
.cg-footer__contact-title {
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 400;
    color: #fff;
    margin: 0 0 16px;
    text-align: right;
    letter-spacing: 0.5px;
}

/* Icone social */
.cg-footer__socials {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

    .cg-footer__socials a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.3s;
        display: flex;
        align-items: center;
    }

        .cg-footer__socials a:hover {
            color: #fff;
        }

/* Link legali */
.cg-footer__legal .disclaimer {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 0;
}

.cg-footer__legal a {
    font-size: clamp(16px, 1.2vw, 18px);
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.3s;
    padding: 0 10px;
}

.cg-footer__legal p {
    font-size: clamp(18px, 1.5vw, 26px);
    color: rgb(255, 255, 255);
    margin-bottom: 16px;
    text-align: end;
}

.cg-footer__legal a:hover {
    color: #fff;
}

.cg-footer__legal a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.5);
}
/* ── Responsive ── */
@media (max-width: 991px) {
    .cg-footer {
        padding: 50px 24px 10px;
    }

    .cg-footer__legal p {
        text-align: start;
    }

    .cg-footer__logo {
        order: -1;
        display: flex;
        justify-content: center;
        width: 100%;
        margin-bottom: 0px;
    }

    .cg-footer__info {
        order: 1;
        margin-top: 0px !important;
    }

    .cg-footer__right {
        order: 2;
        margin-top: 0px !important;
    }

    .cg-footer__logo img {
        height: 200px;
    }

    .cg-footer__bottom {
        flex-direction: column;
        gap: 40px;
    }

    .tp-copyright-left {
        margin-top: 20px;
    }

    .cg-footer__right {
        align-items: flex-start;
        width: 100%;
    }

    .cg-footer__contact-title,
    .cg-footer__legal {
        text-align: left;
        align-items: flex-start;
    }

    .cg-footer__socials {
        justify-content: flex-start;
    }
}

/* ============================================================
   SHARED — SCROLL REVEAL & KEYFRAMES
   ============================================================ */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes revealFromLeft {
    from {
        clip-path: inset(0 100% 0 0);
    }

    to {
        clip-path: inset(0 0% 0 0);
    }
}

@keyframes lineAnim {
    0% {
        transform: scaleY(0);
        transform-origin: top;
        opacity: 1;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: 1;
    }

    51% {
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
        opacity: 0;
    }
}

.reveal-special {
    opacity: 0;
    transform: translateY(140px);
    transition: opacity 2s cubic-bezier(0.25, 0, 0.35, 1), transform 2.5s cubic-bezier(0.16, 1, 0.3, 1);
}

    .reveal-special.visible {
        opacity: 1;
        transform: none;
    }

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: none;
    }

.reveal-left {
    opacity: 0;
    transform: translateX(-36px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

    .reveal-left.visible {
        opacity: 1;
        transform: none;
    }

.reveal-right {
    opacity: 0;
    transform: translateX(36px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

    .reveal-right.visible {
        opacity: 1;
        transform: none;
    }

.d1 {
    transition-delay: 0.1s;
}

.d2 {
    transition-delay: 0.2s;
}

.d3 {
    transition-delay: 0.3s;
}

/* Scroll cue condiviso */
.scroll-cue {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 1s 1.6s forwards;
}

    .scroll-cue span {
        font-size: 10px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: rgba(255,255,255,0.55);
    }

    .scroll-cue .line,
    .scroll-line {
        width: 1px;
        height: 44px;
        background: linear-gradient(to bottom, var(--gold), transparent);
        animation: lineAnim 2s infinite;
    }

/* ============================================================
   SHARED — PARALLAX ENGINE
   ============================================================ */
.parallax-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    inset: -20%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    will-change: transform;
}

.parallax-overlay {
    /*background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 60%), linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 60%) !important;*/
    background: rgba(0, 0, 0, 0.1);
    position: absolute;
    inset: 0;
    z-index: 1;
}

.parallax-section > *:not(.parallax-bg):not(.parallax-overlay) {
    position: relative;
    z-index: 2;
}

/* ============================================================
   SHARED — VINI GRID (usata in index.html e vini.html)
   ============================================================ */
.vini-section {
    background: #fff;
}

.vini-header {
    text-align: center;
    padding: 20px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.85s, transform 0.85s;
}

    .vini-header.visible {
        opacity: 1;
        transform: none;
    }

    .vini-header .label {
        letter-spacing: 2px;
        color: var(--red);
        margin-bottom: 16px;
        font-size: 24px;
        font-weight: 600;
    }

    .vini-header h2 {
        font-weight: 300;
        color: #000;
        margin-bottom: 0px;
        font-family: "Times New Roman", Times, serif;
    }

    .vini-header p {
        color: rgba(0, 0, 0, 0.85);
        max-width: 650px;
        margin: 0 auto;
        font-weight: 300;
    }

.vini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: auto;
    max-width: 1250px;
    margin: auto;
    padding: 20px 0px;
}

.vino-card {
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 50px 20px 38px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 420px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s, transform 0.65s, background 0.3s;
    text-decoration: none;
}

    .vino-card:nth-child(5n) {
        border-right: none;
    }

    .vino-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .vino-card::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--red);
        transform: scaleX(0);
        transition: transform 0.4s ease;
        transform-origin: left;
    }

    .vino-card:hover::before {
        transform: scaleX(1);
    }

    .vino-card img {
        width: auto;
        height: 400px;
        object-fit: contain;
        margin-bottom: 28px;
        transition: transform 0.65s cubic-bezier(.25,.8,.25,1), filter 0.4s;
    }

    .vino-card:hover img {
        transform: translateY(-12px) scale(1.1);
    }

.vino-info {
    text-align: center;
    width: 100%;
}

.vino-name {
    font-weight: 400;
    color: rgba(0,0,0,0.92);
    margin-bottom: 8px;
    line-height: 1.2;
    font-size: 24px;
}

.vino-doc {
    font-size: 14px;
    color: var(--red);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}

/* ============================================================
   SHARED — BTN COMPONENTS
   ============================================================ */
.btn-vai {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.55);
    padding: 13px 32px;
    border-radius: 4px;
    width: fit-content;
    transition: all 0.3s;
}

    .btn-vai:hover {
        background: var(--gold);
        border-color: var(--gold);
    }


.btn-policy {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.45);
    padding: 14px 32px;
    margin-top: 20px;
    width: fit-content;
    transition: all 0.3s;
}

    .btn-policy:hover {
        background: var(--gold);
        border-color: var(--gold);
        color: #fff;
    }

/* ══ DIVISORE ══ */
.divider {
    background: #0a0a0a;
    width: 100%;
    padding: 50px 0px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.divider-inner {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.divider-label {
    font-weight: 600;
    color: var(--red);
    letter-spacing: 2px;
    font-size: 24px;
}

.divider-title {
    font-size: clamp(36px, 3vw, 50px);
    font-weight: 400;
    color: #fafafa;
    line-height: 1.1;
    margin: 0;
    font-family: "Times New Roman", Times, serif;
}

.divider-text {
    color: rgba(255, 255, 255, 0.85);
    max-width: 750px;
    margin: 0;
}

.btn-vai--dark {
    background: #0a0a0a;
    border: 1px solid #f9f9f9;
    color: #f9f9f9;
}

    .btn-vai--dark:hover {
        background: #f9f9f9;
        color: #0a0a0a;
    }

/* ============================================================
   SHARED — PARALLAX TEXT CONTENT (label + h2 + sub + h3)
   ============================================================ */
.parallax-text-content {
    position: relative;
    z-index: 2;
    padding: 0 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: inherit;
}

    .parallax-text-content .label {
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 12px;
    }


    .parallax-text-content h2 {
        color: var(--white);
        font-weight: 300;
        line-height: 1.15;
        max-width: 950px;
        margin-bottom: 32px;
        text-transform: uppercase;
        text-align: center;
        text-shadow: 2px 4px 5px black;
    }

    .parallax-text-content .sub {
        color: var(--gold);
        font-style: italic;
        font-size: 24px;
        display: block;
        margin-bottom: 34px;
    }


/* ============================================================
   PAGE — index.html
   ============================================================ */

/* ── Parallax bg images ── */
/*.hero-parallax .parallax-bg {
    background-image: url('https://static.wixstatic.com/media/da6852_a4583df4d2b94b31a2ea1f718c468326f000.jpg/v1/fill/w_1920,h_1200,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/da6852_a4583df4d2b94b31a2ea1f718c468326f000.jpg');
}*/

.parallax-artigiani .parallax-bg {
    background-image: url('../images/Acino_Alessandro.jpg');
    background-size: 75%;
}

.parallax-sostenibilita {
    min-height: 60vh;
    position: relative;
    z-index: 1;
    align-items: center;
}

    .parallax-sostenibilita .parallax-bg {
        background-image: url(../images/Nicolo.jpg);
        background-size: 50%;
        background-position: top center;
        inset: -50%;
    }

.zoom-parallax .parallax-bg {
    transition: transform 0.1s linear;
    transform-origin: center center;
}

.parallax-fleur-strip {
    min-height: 150px;
}

    .parallax-fleur-strip .parallax-bg {
        background-image: url(../images/Vasca-Gialla.jpg);
        background-position: bottom;
        opacity: 0.6;
        inset: -600px 0px;
    }
/* ── Hero (index) — split foto + pannello testo nero ── */
.hero-parallax {
    background: var(--dark);
    min-height: auto !important;
    align-items: stretch;
    flex-direction: column;
}

    .hero-parallax .parallax-bg {
        position: relative !important;
        inset: auto !important;
        width: 100%;
        height: 100vh;
        min-height: 600px;
        display: block;
        flex-shrink: 0;
    }

.hero-text-panel {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 30px 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transform: translateY(-50%);
    z-index: 0;
    will-change: transform;
}

.hero-video-overlay {
    position: absolute;
    inset: -1%;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 60%), linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 60%) !important;
}

@media(max-iwidth : 991px) {
    .hero-video-overlay {
        inset: -15%;
    }
}

.hero-text-inner {
    max-width: 750px;
    width: 100%;
}

    .hero-text-inner h2 {
        font-family: "Times New Roman", Times, serif;
        color: rgba(255, 255, 255);
        line-height: 1.75;
        text-align: justify;
        letter-spacing: 0.2px;
        text-align: center;
    }

    .hero-text-inner p {
        color: rgba(255, 255, 255, 0.75);
        text-align: justify;
        margin-bottom: 16px;
        letter-spacing: 0.2px;
        text-align: center;
    }

.hero-text-outer {
    max-width: 1050px;
    width: 100%;
}

    .hero-text-outer h2 {
        font-family: "Times New Roman", Times, serif;
        color: rgba(255, 255, 255, 0.85);
        font-size: clamp(36px, 2.5vw, 48px);
        line-height: 1.15;
        letter-spacing: 0.2px;
        text-align: center;
        margin-bottom: 20px;
    }

    .hero-text-outer p {
        color: rgba(255, 255, 255, 0.75);
        text-align: justify;
        margin-bottom: 16px;
        letter-spacing: 0.2px;
    }

        .hero-text-outer p strong {
            color: rgba(255,255,255,0.95);
            font-weight: 600;
        }

.bottiglia {
    background: #000000;
    text-align: center;
}

    .bottiglia img {
        width: auto;
        height: 800px;
    }

.hero-content {
    position: absolute;
    z-index: 2;
    bottom: 55vh;
    left: 0%;
    opacity: 0;
    transform: translateY(35px);
    animation: fadeUp 1.3s 0.4s cubic-bezier(.25, .8, .25, 1) forwards;
}

    .hero-content h1 {
        font-weight: 300;
        color: var(--white);
        line-height: 1.15;
        letter-spacing: -1px;
        text-align: center;
        text-shadow: 2px 4px 5px black;
    }
/* (index) scroll-cue position override */
.hero-parallax .scroll-cue {
    bottom: 250px;
    left: 0;
    transform: translateX(-50%);
}

/* ── Capacità ── */
.capacita-parallax {
    min-height: 70vh;
    justify-content: center;
}

.capacita-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 40px;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

    .capacita-content.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .capacita-content .pre {
        font-size: 10px;
        letter-spacing: 5px;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 20px;
    }

    .capacita-content h2 {
        color: var(--white);
        font-weight: 300;
        line-height: 1.2;
        max-width: 880px;
        margin: 0 auto;
    }

#home .scroll-arrow {
    position: absolute;
    bottom: 18vh;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
    animation: bounceArrow 1.8s ease-in-out infinite;
    margin: auto;
    cursor: pointer;
    z-index: 3;
}

@media(max-width : 991px) {
    .parallax-fleur-strip .parallax-bg {
        background-size: cover;
        inset: 0% 0 -200% 0;
    }

    .parallax-sostenibilita .parallax-bg {
        background-size: cover;
        inset: 10% 0% -70% -15%;
    }

    .parallax-artigiani .parallax-bg {
        background-size: cover;
    }

    .hero-text-outer {
        padding: 0 20px;
    }

    .hero-text-panel {
        padding: 50px 0;
    }

    #home .scroll-arrow {
        bottom: 40vh;
    }

    .bottiglia img {
        height: 450px;
    }
}
/* ============================================================
   PAGE — vini.html
   ============================================================ */
.hero-vini {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hero-vini .hero-bg {
        position: absolute;
        inset: -20%;
        background: url('https://static.wixstatic.com/media/6f411b_c349e5d55e9041e2b1d644ec918be2a8~mv2.jpg/v1/fill/w_1920,h_1200,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/6f411b_c349e5d55e9041e2b1d644ec918be2a8~mv2.jpg') center/cover no-repeat;
        will-change: transform;
    }

    .hero-vini .hero-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.52);
    }

    .hero-vini .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 0 40px;
        bottom: auto;
        left: auto;
        opacity: 0;
        transform: translateY(28px);
        animation: fadeUp 1.2s 0.3s forwards;
    }

    .hero-vini .scroll-arrow {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0.7;
        animation: bounceArrow 1.8s ease-in-out infinite;
        margin: auto;
        cursor: pointer;
        z-index: 3;
    }

    .hero-vini .hero-content .eyebrow {
        font-size: 14px;
        letter-spacing: 6px;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 24px;
    }

    .hero-vini .hero-content h1 {
        letter-spacing: -1px;
        margin-bottom: 20px;
    }

    .hero-vini .hero-content .sub {
        font-size: clamp(20px, 1.6vw, 24px);
        font-weight: 300;
        color: rgba(255,255,255,0.6);
        font-style: italic;
        letter-spacing: 0.5px;
        clip-path: inset(0 100% 0 0);
        animation: revealFromLeft 1.1s cubic-bezier(0.77, 0, 0.175, 1) 0.5s forwards;
    }

/* Intro + Gambero (vini) — sfondo bianco */
.intro-section {
    background: var(--dark);
    color: #fff;
    padding: 90px 40px 80px;
    display: flex;
    justify-content: center;
}

.intro-inner {
    max-width: 750px;
    width: 100%;
}

    .intro-inner h2 {
        font-weight: 300;
        color: #fff;
        line-height: 1.2;
        margin-bottom: 32px;
    }

    .intro-inner p {
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.75);
        font-weight: 300;
        text-align: justify;
    }

.gambero-section {
    background: var(--dark);
    color: #fff;
    padding: 0 40px 90px;
    display: flex;
    justify-content: center;
}

.gambero-inner {
    max-width: 750px;
    width: 100%;
    border-top: 1px solid #e0e0e0;
    padding-top: 70px;
}

    .gambero-inner h2 {
        font-weight: 300;
        color: #fff;
        line-height: 1.15;
        margin-bottom: 24px;
    }

    .gambero-inner .source {
        font-size: 14px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 6px;
    }

    .gambero-inner .source-detail {
        font-size: 14px;
        color: #adadad;
        margin-bottom: 36px;
        letter-spacing: 0.5px;
    }

    .gambero-inner p {
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.75);
        font-weight: 300;
        margin-bottom: 16px;
        text-align: justify;
    }

    .gambero-inner .highlight {
        font-size: clamp(17px,1.8vw,22px);
        font-style: italic;
        color: rgba(255, 255, 255);
        line-height: 1.9;
        border-left: 3px solid var(--gold);
        padding-left: 24px;
        margin-top: 32px;
    }

/* ============================================================
   PAGE — chi-siamo.html
   ============================================================ */
.hero-chisiamo {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hero-chisiamo .hero-bg {
        position: absolute;
        inset: 0%;
        will-change: transform;
        background-image: url(../images/Ale-Nico.jpg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .hero-chisiamo .hero-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.1);
    }

    .hero-chisiamo .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 0 40px;
        bottom: auto;
        left: auto;
        opacity: 0;
        transform: translateY(28px);
        animation: fadeUp 1.2s 0.3s forwards;
    }

    .hero-chisiamo .scroll-arrow {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0.7;
        animation: bounceArrow 1.8s ease-in-out infinite;
        margin: auto;
        cursor: pointer;
        z-index: 3;
    }

.hero-eyebrow {
    font-size: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px;
    font-weight: 600;
}

.hero-h1 {
    font-weight: 300;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: clamp(16px,1.8vw,24px);
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    font-style: italic;
    clip-path: inset(0 100% 0 0);
    animation: revealFromLeft 1.1s cubic-bezier(0.77, 0, 0.175, 1) 0.5s forwards;
}

.hero-chisiamo .scroll-cue {
    bottom: 30vh;
    left: 50%;
    transform: translateX(-50%);
}

/* Sezione 1985 */
.section-1985 {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}


.section-1985-text {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 950px;
    padding: 50px 0px;
    color: #fff;
}

    .section-1985-text h2 {
        font-weight: 400;
        color: #fff;
        margin-bottom: 12px;
        line-height: 1.1;
        text-align: center;
    }

    .section-1985-text p {
        color: rgba(255, 255, 255, 0.85);
        font-weight: 300;
        margin-bottom: 20px;
        text-align: justify;
    }

        .section-1985-text p.bold {
            font-weight: 700;
            color: #fff;
        }

    .section-1985-text .icon {
        text-align: center;
    }

        .section-1985-text .icon .img {
            width: auto;
            height: auto;
        }
/* Gruppo parallax */
.gruppo-parallax {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gruppo-bg {
    position: absolute;
    inset: 0%;
    background: url('../images/Famiglia.jpg') center/cover no-repeat;
    will-change: transform;
}

.gruppo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.1);
}

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

    .gruppo-content .pre {
        font-size: clamp(18px,2vw,32px);
        font-weight: 300;
        font-style: italic;
        color: rgba(255,255,255,0.7);
        margin-bottom: 10px;
        display: block;
    }

    .gruppo-content h2 {
        font-weight: 300;
        color: #fff;
        line-height: 1.05;
        text-shadow: 2px 4px 5px black;
    }

/* Team */
.team-section {
    background: #000000;
    padding: 90px 80px;
}

.team-intro {
    max-width: 850px;
    margin: auto;
    text-align: center;
}

    .team-intro .pre {
        font-size: 24px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--red);
        margin-bottom: 15px;
        font-weight: 600;
    }

    .team-intro h2 {
        font-weight: 300;
        color: #fff;
        line-height: 1.15;
        margin-bottom: 28px;
    }

    .team-intro p {
        color: rgba(255, 255, 255, 0.85);
        font-weight: 300;
        text-align: justify;
    }


/* Qualità */
.qualita-section {
    position: relative;
    width: 100%;
    min-height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qualita-bg {
    position: absolute;
    inset: 0%;
    background: url('../images/Ezio-e-Mamma.jpg') center/cover no-repeat;
    will-change: transform;
}

.qualita-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.1);
}

.qualita-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 60px;
    max-width: 1250px;
}



    .qualita-content h2 {
        font-weight: 300;
        color: #fff;
        line-height: 1.15;
        margin-bottom: 32px;
        text-shadow: 2px 4px 5px black;
    }

/* LAST SECTION */

.last-section {
    background: #000000;
    padding: 10px 80px 90px;
}

    .last-section .last {
        max-width: 1050px;
        margin: auto;
        text-align: center;
    }

    .last-section h2 {
        font-weight: 300;
        color: #fff;
        line-height: 1.15;
        margin-bottom: 0px;
    }

    .last-section p {
        color: rgba(255, 255, 255, 0.85);
        font-weight: 300;
        text-align: center;
    }

    .last-section .last-sub-title {
        color: var(--red) !important;
        font-size: 36px;
        font-weight: 600;
    }

@media(max-width:991px) {
    .hero-chisiamo {
        height: auto;
    }

    .last-section {
        padding: 10px;
    }

        .last-section .last-sub-title {
            line-height: 1;
        }
}


/* ============================================================
   PAGE — Territorio
   ============================================================ */
#territorio.hero-parallax {
    height: 100vh;
}

#territorio .scroll-arrow {
    position: absolute;
    bottom: 2vh;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
    animation: bounceArrow 1.8s ease-in-out infinite;
    margin: auto;
    cursor: pointer;
    z-index: 3;
}

.hero-text-outer.territorio {
    max-width: 1250px;
}

    .hero-text-outer.territorio p {
        text-align: center;
    }

.green_experience {
    background: #000000;
    text-align: center;
    margin-bottom: 50px;
}

    .green_experience img {
        width: auto;
        height: 200px;
    }

.territorio-parallax {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.territorio-bg {
    position: absolute;
    inset: 0%;
    background: url('../images/Arnei-Barbera.jpg') center/cover no-repeat;
    will-change: transform;
}

.territorio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.1);
}

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

    .territorio-content .pre {
        font-size: clamp(18px,2vw,32px);
        font-weight: 300;
        font-style: italic;
        color: rgba(255,255,255,0.7);
        margin-bottom: 10px;
        display: block;
    }

    .territorio-content h2 {
        font-weight: 300;
        color: #fff;
        line-height: 1.05;
        text-shadow: 2px 4px 5px black;
    }


.territorio-roero-section {
    background: #000000;
    padding: 30px 80px;
}

.territorio-roero-intro {
    max-width: 1050px;
    margin: auto;
    text-align: center;
}


    .territorio-roero-intro h2 {
        font-weight: 300;
        color: #fff;
        line-height: 1.15;
        margin-bottom: 10px;
    }

    .territorio-roero-intro p strong {
        color: var(--red);
        display: inline-block;
        font-weight: 600;
        text-align: center;
        font-size: 36px;
        width: 100%;
    }

    .territorio-roero-intro p {
        color: rgba(255, 255, 255, 0.85);
        font-weight: 300;
        text-align: center;
    }

.stile-section {
    position: relative;
    width: 100%;
    min-height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stile-bg {
    position: absolute;
    inset: 0%;
    background: url('../images/Barbera.jpg') center/cover no-repeat;
    will-change: transform;
}

.stile-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.1);
}

.stile-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 60px;
    max-width: 1250px;
}



    .stile-content h2 {
        font-weight: 300;
        color: #fff;
        line-height: 1.15;
        margin-bottom: 32px;
        text-shadow: 2px 4px 5px black;
    }

/* VIGNE SECTION */

.vigne-section {
    background: #000000;
    padding: 10px 80px 90px;
}

    .vigne-section .vigne {
        max-width: 1050px;
        margin: auto;
        text-align: center;
    }

    .vigne-section h2 {
        font-size: clamp(32px, 4vw, 56px);
        font-weight: 300;
        color: #fff;
        line-height: 1.15;
        margin-bottom: 0px;
    }

    .vigne-section p {
        color: rgba(255, 255, 255, 0.85);
        font-weight: 300;
        text-align: center;
    }

    .vigne-section .vigne-sub-title {
        color: var(--red) !important;
        font-size: 36px;
        font-weight: 600;
    }
.vigne-section img{
   width : auto;
   height : 800px;
}

@media(max-width:991px) {
    .territorio-roero-section {
        padding: 30px 10px;
    }
    .green_experience img {
        width: auto;
        height: 130px;
    }
    .territorio-content, .stile-content {
        padding: 0px;
    }
    #territorio .scroll-arrow {
        bottom: 17vh;
    }
    .vigne-section {
        padding: 10px;
    }
    .vigne-section .vigne-sub-title {
        font-size: 28px;
    }
        .vigne-section img {
            height: 500px;
        }
    .territorio-roero-intro p strong {
        font-size: 24px;
    }
}
/* ============================================================
   PAGE — Dettaglio Vini
   ============================================================ */
body[data-page="vini"] {
    background-color: #ffffff;
}

    body[data-page="vini"] nav {
        background-color: #0a0a0a;
    }

.hero-det-vini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    margin-top: 78px;
}

.hero-left {
    position: relative;
    overflow: hidden;
    background: #000;
    min-height: 100%;
}

.hero-left-bg {
    position: absolute;
    inset: 0%;
    background: url(../images/hero-rosso_abazia.png);
    will-change: transform;
    opacity: 0.85;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-left-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.1) 0%, rgba(0,0,0,.35) 50%, rgba(0,0,0,.6) 100%);
}

.hero-left-content {
    position: relative;
    z-index: 2;
    padding: 60px 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

    .hero-left-content h2 {
        font-weight: 500;
        color: #fff;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .hero-left-content .doc {
        font-size: clamp(16px,1.2vw,18px);
        font-weight: 300;
        color: rgba(255,255,255,0.7);
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .hero-left-content .quote {
        font-size: clamp(18px,1.8vw,26px);
        font-weight: 300;
        color: #fff;
        font-style: italic;
        line-height: 1.4;
        margin-bottom: 36px;
        max-width: 340px;
    }

.hero-right {
    background: #e8e4df;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

    .hero-right img {
        max-height: 80vh;
        width: auto;
        object-fit: contain;
        filter: drop-shadow(0 20px 40px rgba(0,0,0,.25));
        transition: transform 0.8s cubic-bezier(.25,.8,.25,1);
    }

    .hero-right:hover img {
        transform: translateY(-8px) scale(1.02);
    }

/* Testo scheda tecnica */
.text-section {
    background: #fff;
    color: var(--text);
    padding: 80px 40px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-col {
    width: 100%;
    max-width: 750px;
}

.intro-wrapper {
    overflow: hidden;
    display: block;
    margin-bottom: 44px;
}

.intro-text {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text);
    text-align: justify;
    transform: translateY(120px);
    transition: transform 1.5s cubic-bezier(0.76, 0, 0.24, 1);
}


    .intro-text.visible {
        transform: none;
    }

    .intro-text strong {
        font-weight: 700;
    }

.sep {
    width: 130px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 40px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.5s cubic-bezier(0.76, 0, 0.24, 1);
}

    .sep.visible {
        transform: scaleX(1);
    }


.scheda {
    margin-bottom: 44px;
}

    .scheda p {
        font-size: 18px;
        line-height: 1.9;
        color: var(--text);
    }

        .scheda p strong {
            font-weight: 700;
        }

.organo {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 6px;
}

    .organo strong {
        font-weight: 700;
    }

.abbinamento {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 16px;
}

    .abbinamento strong {
        font-weight: 700;
    }

.curiosita-text {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 50px;
}

    .curiosita-text strong {
        font-weight: 700;
    }

.wine-nav {
    background: #fff;
    border-top: 1px solid #e0e0e0;
    padding: 32px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 200px;
}

.wine-nav-pdf {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    text-decoration: none;
    color: var(--text);
    opacity: 0;
    transform: translateY(-100px);
    transition: opacity 1.5s ease, transform 1.5s ease;
}

    .wine-nav-pdf:hover {
        opacity: 0.7;
    }

    .wine-nav-pdf.visible {
        opacity: 1;
        transform: none;
    }

    .wine-nav-pdf .pdf-icon {
        width: 52px;
        height: 52px;
        border: 2px solid #333;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        flex-shrink: 0;
    }

        .wine-nav-pdf .pdf-icon::before {
            content: 'PDF';
            font-size: 9px;
            font-weight: 800;
            letter-spacing: 0.5px;
            position: absolute;
            top: 6px;
            left: 50%;
            transform: translateX(-50%);
            color: #333;
        }

        .wine-nav-pdf .pdf-icon::after {
            content: '';
            position: absolute;
            bottom: 6px;
            left: 50%;
            transform: translateX(-50%);
            width: 28px;
            height: 28px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='1.5'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3Cline x1='12' y1='18' x2='12' y2='12'/%3E%3Cline x1='9' y1='15' x2='12' y2='18'/%3E%3Cline x1='15' y1='15' x2='12' y2='18'/%3E%3C/svg%3E") center/contain no-repeat;
        }

    .wine-nav-pdf span {
        font-size: 12px;
        color: var(--text-light);
        letter-spacing: 0.5px;
        transition: color 0.3s;
    }

    .wine-nav-pdf:hover span {
        color: var(--red);
    }

.wine-nav-center a {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

    .wine-nav-center a:hover {
        color: var(--red);
    }

.wine-nav-arrows {
    display: flex;
    align-items: center;
    gap: 36px;
}

    .wine-nav-arrows a {
        display: flex;
        align-items: center;
        gap: 6px;
        color: var(--text);
        text-decoration: none;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        transition: color 0.3s;
    }

    .wine-nav-arrows .arrow {
        font-size: 16px;
        color: var(--text);
        transition: color 0.3s;
    }

    .wine-nav-arrows a:hover {
        color: var(--red);
    }

        .wine-nav-arrows a:hover .arrow {
            color: var(--red);
        }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
    .vini-grid {
        grid-template-columns: repeat(4,1fr);
    }

    .vino-card:nth-child(5n) {
        border-right: 1px solid rgba(255,255,255,0.07);
    }

    .vino-card:nth-child(4n) {
        border-right: none;
    }
}

@media (max-width: 1100px) {
    .vini-grid {
        grid-template-columns: repeat(3,1fr);
    }

    .vino-card:nth-child(4n) {
        border-right: 1px solid rgba(255,255,255,0.07);
    }

    .vino-card:nth-child(3n) {
        border-right: none;
    }

    .parallax-text-content {
        padding: 0 40px 60px;
    }

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

    .section-1985-text {
        width: 100%;
        padding: 80px 20px;
    }

    .hero-left-content {
        padding: 0px 50px;
        height: 30vh;
        justify-content: end;
    }

        .hero-left-content .quote {
            font-size: clamp(18px, 1.8vw, 26px);
            margin-bottom: 0px;
        }

    .section-1985-overlay {
        background: linear-gradient(to right, rgba(0, 0, 20, 0) -50%, rgba(0, 0, 20, 0.75) 0%, rgba(0, 0, 20, 0.75) 60%, rgba(0, 0, 20, 0) 275%);
    }
}

@media (max-width: 900px) {
    .hero-abazia {
        grid-template-columns: 1fr;
        margin-top: 64px;
    }

    .hero-right {
        min-height: 50vh;
    }

        .hero-right img {
            max-height: 40vh;
        }

    .hero-det-vini {
        grid-template-columns: 1fr;
    }

    .wine-nav {
        padding: 24px;
        flex-wrap: wrap;
        gap: 16px;
    }
}

@media (max-width: 991px) {
    nav {
        padding: 14px 20px !important;
    }


    .hero-content {
        padding: 50px 20px 40px;
        bottom: 70vh;
        left: 0%;
    }

    .hero-text-inner {
        padding: 0 20px;
    }

    .vini-grid {
        grid-template-columns: 1fr;
    }

    .vino-card:nth-child(3n) {
        border-right: 1px solid rgba(255,255,255,0.07);
    }

    .vino-card:nth-child(2n) {
        border-right: none;
    }

    .vino-card {
        min-height: 300px;
        padding: 36px 12px 26px;
    }

        .vino-card img {
            height: 300px;
        }

    .footer-top {
        grid-template-columns: 1fr;
        padding: 48px 28px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px 28px;
    }

    .fleur-content {
        padding: 52px 28px;
    }

    .intro-section, .gambero-section {
        padding-left: 24px;
        padding-right: 24px;
    }

    .team-section {
        padding: 60px 16px;
    }


    .qualita-content {
        padding: 0 28px;
    }

    .text-section {
        padding: 50px 24px;
    }

    .wine-nav {
        padding: 20px;
    }
}
