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

:root {
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --gold-dim: #8a6b2a;
    --dark: #0a0a08;
    --dark-mid: #131310;
    --dark-panel: #1a1a16;
    --red: #c0392b;
    --red-bright: #e74c3c;
    --off-white: #f0ebe0;
    --warm-grey: #8a8880;
    --text-body: #c8c4b8
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Barlow', sans-serif;
    background: var(--dark);
    color: var(--off-white);
    overflow-x: hidden
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(10, 10, 8, .9) 0%, transparent 100%);
    backdrop-filter: blur(2px)
}

.nav-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: .15em;
    color: var(--gold);
    text-transform: uppercase;
    text-decoration: none
}

.nav-logo span {
    color: var(--off-white);
    font-weight: 300
}

.nav-badge {
    background: var(--red);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: .12em;
    padding: 3px 8px;
    text-transform: uppercase;
    margin-left: 10px;
    vertical-align: middle
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none
}

.nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.3s
}

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

.nav-cta {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    padding: 8px 20px
}

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

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0
}

.hero {
    position: relative;
    overflow: hidden
}

.hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0
}

.hero-video-placeholder {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #f4f6f9
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .35) 40%, rgba(0, 0, 0, .15) 70%, rgba(0, 0, 0, .05) 100%);
    z-index: 1
}

.hero-content {
    position: relative;
    z-index: 2
}

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

.hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold)
}

.hero-tag-red {
    background: var(--red);
    color: #fff;
    font-size: .65rem;
    letter-spacing: .2em;
    padding: 3px 10px;
    margin-left: 6px
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 1;
    color: var(--off-white);
    margin-bottom: 8px
}

.hero-title em {
    font-style: italic;
    color: var(--gold-light)
}

.hero-subtitle {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-weight: 300;
    letter-spacing: .08em;
    color: var(--text-body);
    margin-bottom: 40px;
    text-transform: uppercase
}

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

.btn-primary {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: 14px 36px;
    background: var(--gold);
    color: var(--dark);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    display: inline-block
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px)
}

.btn-outline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: 14px 36px;
    background: transparent;
    color: var(--off-white);
    border: 1px solid rgba(240, 235, 224, .3);
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.3s, color 0.3s;
    display: inline-block
}

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

.hero-scroll {
    position: absolute;
    bottom: 36px;
    right: 60px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer
}

.hero-scroll span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .65rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--warm-grey);
    writing-mode: vertical-rl
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite
}

@keyframes scrollPulse {
    0%,
    100% {
        opacity: .4
    }
    50% {
        opacity: 1
    }
}

section {
    padding: 100px 60px
}

.section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px
}

.section-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--gold)
}

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--off-white)
}

h2 em {
    font-style: italic;
    color: var(--gold-light)
}

.about {
    background: var(--dark-mid);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 20px;
    font-weight: 300
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px
}

.stat-box {
    background: var(--dark-panel);
    padding: 40px 30px;
    border-top: 2px solid var(--gold);
    transition: background 0.3s
}

.stat-box:hover {
    background: #1f1e19
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px
}

.stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--warm-grey)
}

.products {
    background: var(--dark);
    padding: 100px 60px
}

.products-header {
    text-align: center;
    margin-bottom: 70px
}

.products-header .section-label {
    justify-content: center
}

.products-header .section-label::before {
    display: none
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px
}

.product-card {
    background: var(--dark-panel);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(.16, 1, .3, 1);
    cursor: default
}

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

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

.product-card:hover {
    transform: translateY(-6px);
    background: #1c1c18
}

.product-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    display: block
}

.product-tag {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 4px 10px;
    background: var(--red);
    color: #fff;
    margin-bottom: 16px
}

.product-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: .05em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 6px
}

.product-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    //color: var(--warm-grey);
    color: #fff;
    margin-bottom: 24px
    font-weight:bold;
    margin-bottom:10px;
}

.product-desc {
    font-size: .92rem;
    line-height: 1.8;
    color: var(--text-body);
    font-weight: 300;
    margin-bottom: 30px
}

.product-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.product-features li {
    font-family: 'Barlow Condensed', sans-serif;
    //font-size: .82rem;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: .05em;
    color: var(--text-body);
    display: flex;
    align-items: flex-start;
    gap: 10px
}

.product-features li::before {
    content: '—';
    color: var(--gold);
    flex-shrink: 0;
    font-weight: 300
}

.advantages {
    background: var(--dark-mid);
    padding: 100px 60px
}

.advantages-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start
}

.adv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(201, 168, 76, .1)
}

.adv-item {
    background: var(--dark-panel);
    padding: 28px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: background 0.3s
}

.adv-item:hover {
    background: #1c1c18
}

.adv-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px
}

.adv-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 6px
}

.adv-text {
    font-size: .82rem;
    line-height: 1.6;
    color: var(--warm-grey)
}

.group-banner {
    background: var(--gold);
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px
}

.group-banner-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--dark);
    margin-bottom: 8px
}

.group-banner-text p {
    font-family: 'Barlow', sans-serif;
    font-size: .95rem;
    color: rgba(10, 10, 8, .7);
    font-weight: 300
}

.group-banner-stat {
    text-align: center;
    flex-shrink: 0
}

.group-banner-stat .big {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1
}

.group-banner-stat .small {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(10, 10, 8, .6)
}

.contact {
    background: var(--dark);
    padding: 100px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start
}

.contact-intro p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-body);
    font-weight: 300;
    margin-bottom: 16px
}

.contact-info {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start
}

.ci-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px
}

.ci-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px
}

.ci-value {
    font-size: .9rem;
    color: var(--text-body)
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.form-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--warm-grey)
}

.form-input,
.form-select,
.form-textarea {
    background: var(--dark-panel);
    border: 1px solid rgba(201, 168, 76, .2);
    color: var(--off-white);
    font-family: 'Barlow', sans-serif;
    font-size: .9rem;
    padding: 14px 18px;
    outline: none;
    transition: border-color 0.3s;
    width: 100%
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--gold)
}

.form-select {
    appearance: none;
    cursor: pointer
}

.form-textarea {
    resize: vertical;
    min-height: 120px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

footer {
    background: var(--dark-mid);
    border-top: 1px solid rgba(201, 168, 76, .15);
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap
}

.footer-left {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .8rem;
    letter-spacing: .1em;
    color: var(--warm-grey)
}

.footer-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: .15em;
    color: var(--gold);
    text-transform: uppercase
}

.footer-group {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .75rem;
    letter-spacing: .12em;
    color: var(--warm-grey);
    text-transform: uppercase
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px
}

.hamburger span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold);
    transition: all 0.3s
}

@media (max-width:900px) {
    nav {
        padding: 20px 24px
    }
    .nav-links {
        display: none
    }
    .hamburger {
        display: flex
    }
    .hero-content {
        padding: 0 24px 60px
    }
    .hero-scroll {
        display: none
    }
    section {
        padding: 70px 24px
    }
    .about {
        grid-template-columns: 1fr;
        gap: 50px
    }
    .about-stats {
        grid-template-columns: 1fr 1fr
    }
    .products {
        padding: 70px 24px
    }
    .products-grid {
        grid-template-columns: 1fr
    }
    .advantages {
        padding: 70px 24px
    }
    .advantages-inner {
        grid-template-columns: 1fr;
        gap: 40px
    }
    .group-banner {
        flex-direction: column;
        text-align: center;
        padding: 50px 24px
    }
    .contact {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 70px 24px
    }
    .form-row {
        grid-template-columns: 1fr
    }
    footer {
        flex-direction: column;
        text-align: center;
        padding: 30px 24px
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.16, 1, .3, 1)
}

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

.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
}

.product-actions {
    margin-top: 30px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.btn-product {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: 12px 22px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    display: inline-block;
    transition: all .3s ease
}

.btn-product:hover {
    background: var(--gold);
    color: var(--dark)
}

.btn-gallery {
    border-color: var(--gold)
}

.btn-video {
    border-color: var(--gold-light);
    color: var(--gold-light)
}

.btn-video:hover {
    background: var(--gold-light);
    color: var(--dark)
}

.btn-catalog {
    border-color: var(--red);
    color: var(--red-bright)
}

.btn-catalog:hover {
    background: var(--red);
    color: #fff
}

.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999
}

.video-modal-content {
    width: 90%;
    max-width: 900px;
    position: relative
}

.video-modal video {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: contain;
    background: #000;
    display: block;
    border-radius: 6px
}

.video-close {
    position: absolute;
    top: -35px;
    right: 0;
    font-size: 26px;
    color: #fff;
    cursor: pointer
}

.gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999
}

.gallery-modal img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    display: block
}

.gallery-close {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    z-index: 10001
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    width: 52px;
    height: 52px;
    cursor: pointer;
    font-size: 28px;
    z-index: 10001
}

.gallery-prev {
    left: 30px
}

.gallery-next {
    right: 30px
}

.dealer-section{
padding:120px 60px;
width:100%;
background-color:#131310;
}

.dealer-container{
max-width:1400px; /* NON centrato stretto */
margin:0; /* allineato a sinistra */
}

.dealer-section h2{
text-align:left;
}

.dealer-intro{
max-width:700px;
font-size:1rem;
line-height:1.6;
opacity:0.85;
margin-bottom:12px;
}

.dealer-benefits{
display:grid;
grid-template-columns:repeat(3, 1fr);
gap:40px;
margin:60px 0;
}

.dealer-item{
padding:30px;
border:1px solid rgba(201,168,76,0.2);
background:rgba(255,255,255,0.02);
}

.dealer-icon{
font-size:30px;
margin-bottom:12px;
}

.dealer-title{
font-family:'Barlow Condensed', sans-serif;
letter-spacing:0.18em;
text-transform:uppercase;
font-size:0.85rem;
color:var(--gold);
margin-bottom:10px;
}

.dealer-item p{
font-size:0.9rem;
opacity:0.8;
}

.dealer-cta{
display:inline-block;
padding:14px 28px;
border:1px solid var(--gold);
color:var(--gold);
text-decoration:none;
letter-spacing:0.15em;
text-transform:uppercase;
font-size:0.8rem;
transition:0.25s;
}

.dealer-cta:hover{
background:var(--gold);
color:var(--dark);
}
@media (max-width: 900px){

  .dealer-section{
    padding:80px 24px;
  }

  .dealer-benefits{
    grid-template-columns:1fr;
  }

}

.contact-info-item{
display:flex;
align-items:flex-start;
gap:16px;
margin-bottom:18px;
}

.ci-icon{
font-size:28px;
min-width:32px;
display:flex;
align-items:center;
justify-content:center;
}

.ci-label{
font-family:'Barlow Condensed', sans-serif;
font-size:0.85rem;
letter-spacing:0.15em;
text-transform:uppercase;
color:var(--gold);
margin-bottom:4px;
}

.ci-value{
font-size:1.05rem;
line-height:1.4;
font-weight:500;
}

.whatsapp-icon svg{
width:26px;
height:26px;
display:block;
}
.ci-value a{
color:inherit;
text-decoration:none;
transition:0.2s;
}

.ci-value a:hover{
color:var(--gold);
}