/* ============================================
   VERART - Premium Interior Design
   Complete Redesign: Elegance & WOW Effect
   ============================================ */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a1f2e;
    --secondary: #c9a96e;
    --secondary-light: #e0c98f;
    --accent: #8b7355;
    --light: #f5f3ef;
    --cream: #faf8f5;
    --dark: #0d0f14;
    --text: #2a2a2a;
    --text-light: #6b6b6b;
    --text-muted: #999;
    --gold-gradient: linear-gradient(135deg, #c9a96e 0%, #e0c98f 50%, #c9a96e 100%);
    --dark-gradient: linear-gradient(135deg, #1a1f2e 0%, #2c3345 100%);
    --shadow-soft: 0 10px 60px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 20px 80px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 30px 100px rgba(0, 0, 0, 0.18);
    --transition-smooth: cubic-bezier(0.23, 1, 0.32, 1);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--cream);
}

body.custom-cursor {
    cursor: none;
}

body.custom-cursor a,
body.custom-cursor button,
body.custom-cursor .servizio-card,
body.custom-cursor .testimonianza-card,
body.custom-cursor .social-link,
body.custom-cursor .hamburger,
body.custom-cursor .gallery-h-item,
body.custom-cursor .gallery-item,
body.custom-cursor .whatsapp-float,
body.custom-cursor .lightbox,
body.custom-cursor .lightbox-close,
body.custom-cursor .hero-indicator,
body.custom-cursor .nav-brand,
body.custom-cursor .btn-primary {
    cursor: none;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s var(--transition-smooth),
        opacity 0.15s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor-outline {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--secondary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.4s var(--transition-smooth),
        width 0.4s var(--transition-smooth),
        height 0.4s var(--transition-smooth),
        border-color 0.4s ease,
        background 0.4s ease;
    transform: translate(-50%, -50%);
}

.cursor-outline.cursor-hover {
    width: 80px;
    height: 80px;
    background: rgba(201, 169, 110, 0.08);
    border-color: var(--secondary-light);
}

.cursor-outline.cursor-gallery {
    width: 120px;
    height: 120px;
    background: rgba(201, 169, 110, 0.15);
    border-color: var(--secondary-light);
}

.cursor-label {
    position: fixed;
    pointer-events: none;
    z-index: 10001;
    color: var(--secondary);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translate(-50%, -50%);
}

.cursor-label.visible {
    opacity: 1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.15;
}

h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    letter-spacing: -1px;
}

/* ============================================
   NAVIGATION - Sleek & Transparent
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 248, 245, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.6s var(--transition-smooth);
    border-bottom: 1px solid rgba(201, 169, 110, 0);
}

.navbar.scrolled {
    background: rgba(250, 248, 245, 0.95);
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 40px;
    transition: padding 0.6s var(--transition-smooth);
}

.navbar.scrolled .container {
    padding: 0.8rem 40px;
}

.nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 6px;
    position: relative;
}

.nav-brand::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.4s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary);
    transition: width 0.5s var(--transition-smooth);
}

.nav-menu a:hover {
    color: var(--secondary);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--primary);
    transition: all 0.4s var(--transition-smooth);
    transform-origin: center;
}

/* ============================================
   HERO SECTION - Immersive Slider
   ============================================ */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease, transform 8s linear;
    transform: scale(1);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.08);
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(13, 15, 20, 0.3) 0%,
            rgba(13, 15, 20, 0.5) 50%,
            rgba(13, 15, 20, 0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 0 12vh 8vw;
    max-width: 900px;
}

.hero-label {
    display: inline-block;
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: heroReveal 1s var(--transition-smooth) 0.3s forwards;
}

.hero-title {
    font-size: 6rem;
    color: white;
    letter-spacing: 12px;
    margin-bottom: 0.8rem;
    line-height: 1;
    text-shadow: none;
}

.hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(80px) rotateX(30deg);
    animation: wordReveal 1.2s var(--transition-smooth) forwards;
}

.hero-title .word:nth-child(1) {
    animation-delay: 0.5s;
}

.hero-title .word:nth-child(2) {
    animation-delay: 0.7s;
}

.hero-title .word:nth-child(3) {
    animation-delay: 0.9s;
}

.hero-subtitle {
    font-size: 1.3rem;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: heroReveal 1s var(--transition-smooth) 1.1s forwards;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    max-width: 500px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(30px);
    animation: heroReveal 1s var(--transition-smooth) 1.3s forwards;
}

.hero-cta {
    opacity: 0;
    transform: translateY(30px);
    animation: heroReveal 1s var(--transition-smooth) 1.5s forwards;
}

/* Slider Indicators */
.hero-indicators {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-indicator {
    width: 3px;
    height: 30px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 2px;
    transition: all 0.5s var(--transition-smooth);
    border: none;
    padding: 0;
}

.hero-indicator.active {
    height: 60px;
    background: var(--secondary);
}

/* Scroll Down Hint */
.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-hint-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(201, 169, 110, 0.6), transparent);
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

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

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

/* ============================================
   PREMIUM BUTTONS
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 42px;
    background: transparent;
    color: var(--secondary);
    text-decoration: none;
    border: 1px solid var(--secondary);
    border-radius: 0;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.5s var(--transition-smooth);
    position: relative;
    overflow: hidden;
    cursor: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    transition: left 0.5s var(--transition-smooth);
    z-index: -1;
}

.btn-primary:hover {
    color: var(--dark);
    transform: none;
    box-shadow: none;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary .btn-arrow {
    display: inline-block;
    transition: transform 0.4s var(--transition-smooth);
    font-size: 1.1rem;
    line-height: 1;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(6px);
}

.btn-primary-light {
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-primary-light:hover {
    color: var(--dark);
    border-color: var(--secondary);
}

.btn-primary-light::before {
    background: var(--secondary);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s var(--transition-smooth),
        transform 0.9s var(--transition-smooth);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.9s var(--transition-smooth),
        transform 0.9s var(--transition-smooth);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 0.9s var(--transition-smooth),
        transform 0.9s var(--transition-smooth);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.9s var(--transition-smooth),
        transform 0.9s var(--transition-smooth);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Staggered children */
.stagger-children .reveal {
    transition-delay: calc(var(--i, 0) * 0.12s);
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
    padding: 140px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: inline-block;
    color: var(--secondary);
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 20px;
    position: relative;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--secondary);
    opacity: 0.4;
}

.section-label::before {
    right: calc(100% + 15px);
}

.section-label::after {
    left: calc(100% + 15px);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

/* ============================================
   CHI SIAMO - Overlapping Design
   ============================================ */
.chi-siamo {
    background: var(--cream);
    overflow: hidden;
}

.chi-siamo-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    align-items: center;
    position: relative;
}

.chi-siamo-image {
    position: relative;
    z-index: 1;
}

.chi-siamo-image img {
    width: 100%;
    border-radius: 0;
    box-shadow: var(--shadow-strong);
    display: block;
}

.chi-siamo-image::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--secondary);
    opacity: 0.3;
    z-index: -1;
}

.chi-siamo-text {
    position: relative;
    z-index: 2;
    background: white;
    padding: 60px 50px;
    margin-left: -80px;
    box-shadow: var(--shadow-soft);
}

.chi-siamo-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
}

.chi-siamo-text .highlight {
    font-style: italic;
    color: var(--secondary);
    font-weight: 500;
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
    border-left: 2px solid var(--secondary);
    padding-left: 20px;
    margin: 30px 0;
}

/* ============================================
   NUMERI - Refined & Thin
   ============================================ */
.numeri-section {
    padding: 120px 0;
    background: var(--dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.numeri-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 60%);
}

.numeri-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
    position: relative;
}

.numero-item {
    padding: 40px 20px;
    position: relative;
}

.numero-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(201, 169, 110, 0.15);
}

.numero {
    font-size: 4.5rem;
    font-weight: 300;
    color: var(--secondary);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
    line-height: 1;
}

.numero-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
}

/* ============================================
   SERVIZI - Elegant Cards
   ============================================ */
.servizi {
    background: var(--light);
}

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

.servizio-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.6s var(--transition-smooth);
    position: relative;
}

.servizio-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.6s var(--transition-smooth);
}

.servizio-card:hover::after {
    width: 100%;
}

.servizio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.servizio-image {
    height: 350px;
    overflow: hidden;
    position: relative;
}

.servizio-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.1));
}

.servizio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--transition-smooth);
}

.servizio-card:hover .servizio-image img {
    transform: scale(1.08);
}

.servizio-content {
    padding: 35px 30px;
}

.servizio-content h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.servizio-content p {
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.8;
    font-size: 0.95rem;
}

.servizio-features {
    list-style: none;
    margin-top: 25px;
}

.servizio-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 300;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.servizio-features li:last-child {
    border-bottom: none;
}

.servizio-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 1px;
    background: var(--secondary);
}

/* ============================================
   GALLERIA - Horizontal Scroll Showcase
   ============================================ */
.galleria {
    background: var(--dark);
    padding: 140px 0 0 0;
    overflow: hidden;
}

.galleria .section-header {
    padding: 0 40px;
}

.galleria .section-header h2 {
    color: white;
}

.galleria .section-header p {
    color: rgba(255, 255, 255, 0.5);
}

.gallery-horizontal-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 60px 0 100px;
}

.gallery-horizontal-track {
    display: flex;
    gap: 30px;
    padding: 0 40px;
    transition: transform 0.1s linear;
    will-change: transform;
}

.gallery-h-item {
    flex-shrink: 0;
    width: 500px;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.gallery-h-item:nth-child(even) {
    width: 400px;
    height: 500px;
    margin-top: 80px;
}

.gallery-h-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--transition-smooth);
}

.gallery-h-item:hover img {
    transform: scale(1.05);
}

.gallery-h-item .gallery-h-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-h-item:hover .gallery-h-overlay {
    opacity: 1;
}

.gallery-h-overlay span {
    color: white;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
}

.gallery-scroll-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 30px 40px 60px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.gallery-scroll-line {
    width: 80px;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.gallery-scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    animation: scrollLineMove 2s ease-in-out infinite;
}

@keyframes scrollLineMove {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.gallery-cta {
    text-align: center;
    padding: 20px 40px 80px;
}

.gallery-cta .btn-primary {
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.gallery-cta .btn-primary::before {
    background: var(--secondary);
}

.gallery-cta .btn-primary:hover {
    color: var(--dark);
    border-color: var(--secondary);
}

/* ============================================
   PROGETTO FEATURED - Cinematic
   ============================================ */
.progetto-featured {
    padding: 160px 0;
    background: var(--light);
    overflow: hidden;
}

.progetto-featured-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 0;
    align-items: center;
}

.progetto-featured-image {
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    position: relative;
}

.progetto-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1.5s var(--transition-smooth);
}

.progetto-featured-image:hover img {
    transform: scale(1.03);
}

.progetto-featured-text {
    padding: 60px 50px;
    margin-left: -60px;
    background: white;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-soft);
}

.progetto-credits {
    background: var(--cream);
    padding: 25px 30px;
    border-radius: 0;
    margin-bottom: 30px;
    border-left: 2px solid var(--secondary);
}

.progetto-credits p {
    margin: 8px 0;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 300;
}

.progetto-credits strong {
    color: var(--primary);
    font-weight: 600;
}

.progetto-featured-text>p {
    margin-bottom: 20px;
    line-height: 1.9;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 300;
}

.progetto-featured-text .btn-primary {
    margin-top: 15px;
}

/* ============================================
   TESTIMONIANZE - Elegant Quotes
   ============================================ */
.testimonianze {
    padding: 160px 0;
    background: var(--cream);
}

.testimonianze-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonianza-card {
    background: white;
    padding: 50px 35px 40px;
    border-radius: 0;
    box-shadow: none;
    text-align: left;
    transition: all 0.6s var(--transition-smooth);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.testimonianza-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--secondary);
    opacity: 0.15;
    line-height: 1;
}

.testimonianza-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(201, 169, 110, 0.15);
}

.testimonianza-stars {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-bottom: 25px;
    letter-spacing: 4px;
}

.testimonianza-text {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 30px;
    font-size: 1rem;
    font-weight: 300;
    font-family: 'Playfair Display', serif;
}

.testimonianza-author {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonianza-author strong {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.testimonianza-author span {
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============================================
   CONTATTI - Refined
   ============================================ */
.contatti {
    background: var(--light);
}

.contatti-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.contatti-info h3,
.contatti-social h3 {
    color: var(--primary);
    margin-bottom: 35px;
    font-size: 1.8rem;
    font-weight: 600;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    color: var(--text-light);
    transition: all 0.4s ease;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.info-item:hover {
    color: var(--secondary);
}

.info-item svg {
    color: var(--secondary);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.info-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 300;
}

.info-item a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 0;
    text-decoration: none;
    color: var(--text);
    transition: all 0.5s var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.social-link:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(201, 169, 110, 0.2);
}

.social-link svg {
    color: var(--secondary);
    width: 24px;
    height: 24px;
}

.social-link span {
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* ============================================
   NAV CTA BUTTON
   ============================================ */
.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: var(--secondary);
    color: white;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.4s var(--transition-smooth);
    border: 1px solid var(--secondary);
}

.nav-cta:hover {
    background: transparent;
    color: var(--secondary);
}

/* ============================================
   SECONDARY BUTTON (Ghost Style)
   ============================================ */
.btn-secondary-light {
    display: inline-flex;
    align-items: center;
    padding: 18px 42px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border: none;
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
}

.btn-secondary-light::after {
    content: '';
    position: absolute;
    bottom: 14px;
    left: 42px;
    right: 42px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    transition: background 0.4s ease;
}

.btn-secondary-light:hover {
    color: var(--secondary);
}

.btn-secondary-light:hover::after {
    background: var(--secondary);
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: heroReveal 1s var(--transition-smooth) 1.5s forwards;
}

/* ============================================
   IL NOSTRO MONDO - Categories
   ============================================ */
.mondo-section {
    padding: 140px 0;
    background: var(--light);
}

.mondo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.mondo-item {
    text-align: center;
    padding: 50px 30px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.6s var(--transition-smooth);
    position: relative;
}

.mondo-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.6s var(--transition-smooth);
}

.mondo-item:hover::after {
    width: 60px;
}

.mondo-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(201, 169, 110, 0.1);
}

.mondo-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 50%;
    transition: all 0.5s var(--transition-smooth);
}

.mondo-item:hover .mondo-icon {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

.mondo-item h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.mondo-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
}

/* ============================================
   CTA BANNER - Full Width
   ============================================ */
.cta-banner {
    padding: 120px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(201, 169, 110, 0.05) 0%, transparent 50%);
}

.cta-banner-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-banner-content .section-label {
    color: var(--secondary);
}

.cta-banner-content .section-label::before,
.cta-banner-content .section-label::after {
    background: rgba(201, 169, 110, 0.3);
}

.cta-banner-content h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 25px;
}

.cta-banner-content>p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-banner-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ============================================
   PERCHÉ SCEGLIERCI - USP
   ============================================ */
.perche-section {
    padding: 140px 0;
    background: var(--dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.perche-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 80% 20%, rgba(201, 169, 110, 0.06) 0%, transparent 50%);
}

.perche-section .section-header h2 {
    color: white;
}

.perche-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.perche-item {
    padding: 40px 30px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.6s var(--transition-smooth);
}

.perche-item:hover {
    border-color: rgba(201, 169, 110, 0.2);
    background: rgba(201, 169, 110, 0.03);
}

.perche-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--secondary);
    opacity: 0.3;
    margin-bottom: 20px;
    line-height: 1;
}

.perche-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    letter-spacing: -0.3px;
}

.perche-item p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.8;
}

/* Old footer styles removed — see FOOTER - Legal & Complete below */

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: all 0.4s var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: lightboxIn 0.5s var(--transition-smooth);
}

@keyframes lightboxIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 36px;
    cursor: pointer;
    transition: color 0.3s;
    font-weight: 300;
}

.lightbox-close:hover {
    color: var(--secondary);
}

/* ============================================
   PARALLAX IMAGE CONTAINERS
   ============================================ */
.parallax-image {
    overflow: hidden;
}

.parallax-image img {
    transition: transform 0.1s linear;
    will-change: transform;
}

/* ============================================
   PAGE TRANSITION
   ============================================ */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: 9999;
    transform: scaleY(1);
    transform-origin: top;
    animation: pageReveal 1s var(--transition-smooth) forwards;
    pointer-events: none;
}

@keyframes pageReveal {
    to {
        transform: scaleY(0);
        transform-origin: top;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 968px) {

    /* Hide custom cursor on tablets */
    .cursor-dot,
    .cursor-outline,
    .cursor-label {
        display: none !important;
    }

    body,
    body.custom-cursor,
    body.custom-cursor a,
    body.custom-cursor button {
        cursor: auto !important;
    }

    .container {
        padding: 0 25px;
    }

    h2 {
        font-size: 2.5rem;
    }

    section {
        padding: 100px 0;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(250, 248, 245, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: left 0.5s var(--transition-smooth);
        padding: 100px 0;
        justify-content: center;
        gap: 2rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        font-size: 1.1rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Hero */
    .hero-content {
        padding: 0 25px 10vh 25px;
        max-width: 100%;
    }

    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 6px;
    }

    .hero-indicators {
        display: none;
    }

    /* Chi Siamo */
    .chi-siamo-content {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .chi-siamo-text {
        margin-left: 0;
        margin-top: -40px;
        padding: 40px 30px;
    }

    .chi-siamo-image::after {
        display: none;
    }

    /* Servizi */
    .servizi-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Numeri */
    .numeri-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .numero-item:not(:last-child)::after {
        display: none;
    }

    /* Gallery Horizontal */
    .gallery-h-item {
        width: 350px;
        height: 450px;
    }

    .gallery-h-item:nth-child(even) {
        width: 300px;
        height: 380px;
        margin-top: 40px;
    }

    /* Progetto */
    .progetto-featured-content {
        grid-template-columns: 1fr;
    }

    .progetto-featured-text {
        margin-left: 0;
        margin-top: -40px;
        padding: 40px 30px;
    }

    /* Testimonianze */
    .testimonianze-grid {
        grid-template-columns: 1fr;
    }

    /* Contatti */
    .contatti-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    /* Il Nostro Mondo */
    .mondo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* CTA Banner */
    .cta-banner-content h2 {
        font-size: 2.2rem;
    }

    .cta-banner-buttons {
        flex-direction: column;
    }

    /* Perché Sceglierci */
    .perche-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }

    .hero-text {
        font-size: 0.95rem;
    }

    section {
        padding: 80px 0;
    }

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

    .numero {
        font-size: 3.5rem;
    }

    .gallery-h-item {
        width: 280px;
        height: 380px;
    }

    .gallery-h-item:nth-child(even) {
        width: 240px;
        height: 320px;
        margin-top: 30px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .btn-primary {
        padding: 14px 30px;
        font-size: 0.75rem;
    }

    /* Il Nostro Mondo */
    .mondo-grid {
        grid-template-columns: 1fr;
    }

    .mondo-item {
        padding: 35px 25px;
    }

    /* CTA Banner */
    .cta-banner {
        padding: 80px 0;
    }

    .cta-banner-content h2 {
        font-size: 1.8rem;
    }

    /* Perché Sceglierci */
    .perche-grid {
        grid-template-columns: 1fr;
    }

    .perche-item {
        padding: 30px 25px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================
   GALLERIA COMPLETA PAGE STYLES
   ============================================ */
.galleria-completa {
    padding: 100px 0;
}

.gallery-full-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-grid-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 31, 46, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-overlay span {
    color: white;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

@media (max-width: 968px) {
    .gallery-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {

    .gallery-full-grid,
    .gallery-grid-large {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   GALLERIA HEADER (galleria.html page)
   ============================================ */
.galleria-header {
    padding: 120px 0 80px 0;
    background: var(--dark-gradient);
    text-align: center;
    margin-top: 70px;
}

.galleria-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.galleria-header .section-label {
    display: inline-block;
    color: var(--secondary);
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 20px;
}

.galleria-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: white;
    margin: 20px 0;
    letter-spacing: 3px;
}

.galleria-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
    line-height: 1.8;
    font-weight: 300;
}

@media (max-width: 968px) {
    .galleria-header {
        padding: 100px 0 60px 0;
    }

    .galleria-header h1 {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .galleria-header {
        padding: 80px 0 50px 0;
    }

    .galleria-header h1 {
        font-size: 2.5rem;
    }
}

/* ============================================
   PROMO BANNER - Via Roma 60
   ============================================ */
.promo-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1f2e 0%, #0d0f14 40%, #1a1520 100%);
    position: relative;
    overflow: hidden;
}

/* Animated curtain lines */
.promo-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.promo-curtain-line {
    position: absolute;
    left: var(--left);
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(201, 169, 110, 0.08) 20%,
            rgba(201, 169, 110, 0.15) 50%,
            rgba(201, 169, 110, 0.08) 80%,
            transparent 100%);
    animation: curtainSway 6s ease-in-out var(--delay) infinite;
}

@keyframes curtainSway {

    0%,
    100% {
        transform: translateX(0) scaleY(1);
        opacity: 0.5;
    }

    50% {
        transform: translateX(8px) scaleY(1.02);
        opacity: 1;
    }
}

.promo-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.promo-glow-1 {
    width: 400px;
    height: 400px;
    background: rgba(201, 169, 110, 0.06);
    top: -100px;
    right: -100px;
    animation: promoGlowFloat 8s ease-in-out infinite;
}

.promo-glow-2 {
    width: 300px;
    height: 300px;
    background: rgba(201, 169, 110, 0.04);
    bottom: -80px;
    left: -60px;
    animation: promoGlowFloat 10s ease-in-out 2s infinite;
}

@keyframes promoGlowFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -20px);
    }
}

.promo-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Text Side */
.promo-text-side {
    padding-right: 20px;
}

.promo-badge {
    display: inline-block;
    background: rgba(201, 169, 110, 0.15);
    color: var(--secondary);
    padding: 8px 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid rgba(201, 169, 110, 0.3);
    margin-bottom: 30px;
    animation: promoBadgePulse 3s ease-in-out infinite;
}

@keyframes promoBadgePulse {

    0%,
    100% {
        border-color: rgba(201, 169, 110, 0.3);
    }

    50% {
        border-color: rgba(201, 169, 110, 0.7);
        box-shadow: 0 0 20px rgba(201, 169, 110, 0.1);
    }
}

.promo-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 700;
    color: white;
    line-height: 1.15;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.promo-highlight {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.promo-subtitle strong {
    color: var(--secondary);
    font-weight: 600;
}

.promo-description {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 300;
    max-width: 520px;
}

.promo-validity {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: 35px;
    padding: 12px 0;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.promo-validity svg {
    color: var(--secondary);
    flex-shrink: 0;
}

.promo-validity strong {
    color: var(--secondary);
}

.promo-cta-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.promo-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: #25D366;
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.4s var(--transition-smooth);
    border: none;
}

.promo-whatsapp-btn:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

/* Visual Side */
.promo-visual-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
}

.promo-discount-badge {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.12) 0%, rgba(201, 169, 110, 0.04) 100%);
    border: 2px solid rgba(201, 169, 110, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    animation: discountFloat 4s ease-in-out infinite;
}

@keyframes discountFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.promo-discount-shimmer {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(201, 169, 110, 0.12) 45%,
            rgba(201, 169, 110, 0.25) 50%,
            rgba(201, 169, 110, 0.12) 55%,
            transparent 70%);
    animation: shimmerSweep 4s ease-in-out infinite;
}

@keyframes shimmerSweep {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.promo-discount-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.promo-discount-value {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    position: relative;
    z-index: 2;
}

.promo-percent {
    font-size: 2.5rem;
    vertical-align: super;
    margin-left: 2px;
}

/* Countdown */
.promo-countdown {
    text-align: center;
}

.promo-countdown-label {
    display: block;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.promo-countdown-units {
    display: flex;
    align-items: center;
    gap: 8px;
}

.promo-countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 110, 0.12);
    padding: 12px 16px;
    min-width: 64px;
}

.promo-countdown-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.promo-countdown-text {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.promo-countdown-separator {
    color: var(--secondary);
    font-size: 1.5rem;
    font-weight: 300;
    padding-bottom: 18px;
}

.promo-brand-tag {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 300;
}

/* Promo Responsive */
@media (max-width: 968px) {
    .promo-banner {
        padding: 80px 0;
    }

    .promo-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .promo-text-side {
        padding-right: 0;
    }

    .promo-title {
        font-size: 2.8rem;
    }

    .promo-description {
        max-width: 100%;
    }

    .promo-cta-group {
        justify-content: center;
    }

    .promo-validity {
        justify-content: center;
    }

    .promo-discount-badge {
        width: 180px;
        height: 180px;
    }

    .promo-discount-value {
        font-size: 4rem;
    }

    .promo-percent {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .promo-banner {
        padding: 60px 0;
    }

    .promo-title {
        font-size: 2.2rem;
    }

    .promo-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .promo-cta-group .btn-primary,
    .promo-whatsapp-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .promo-discount-badge {
        width: 150px;
        height: 150px;
    }

    .promo-discount-value {
        font-size: 3.2rem;
    }

    .promo-percent {
        font-size: 1.6rem;
    }

    .promo-countdown-unit {
        min-width: 52px;
        padding: 10px 10px;
    }

    .promo-countdown-number {
        font-size: 1.4rem;
    }

    .promo-countdown-units {
        gap: 5px;
    }
}

/* ============================================
   FOOTER - Legal & Complete
   ============================================ */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.5);
    padding: 60px 0 0;
    text-align: left;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: 4px;
    margin-bottom: 8px;
}

.footer-tagline {
    color: var(--secondary);
    font-size: 0.85rem;
    font-style: italic;
    margin-bottom: 10px;
    font-weight: 300;
}

.footer-address {
    font-size: 0.8rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.4);
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.footer-col p {
    font-size: 0.8rem;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--secondary);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 5px;
    justify-content: flex-start;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.4s var(--transition-smooth);
}

.footer-social a:hover {
    color: var(--secondary);
    border-color: var(--secondary);
    background: rgba(201, 169, 110, 0.08);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

/* Footer Responsive */
@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(13, 15, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(201, 169, 110, 0.15);
    z-index: 9999;
    padding: 20px 0;
    animation: cookieSlideUp 0.6s var(--transition-smooth);
}

@keyframes cookieSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

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

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-text a {
    color: var(--secondary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-text a:hover {
    color: var(--secondary-light);
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
    font-family: 'Poppins', sans-serif;
}

.cookie-btn-accept {
    background: var(--secondary);
    color: var(--dark);
}

.cookie-btn-accept:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 169, 110, 0.25);
}

.cookie-btn-reject {
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-btn-reject:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}

/* Cookie Customize Button */
.cookie-btn-customize {
    background: transparent;
    color: rgba(255, 255, 255, 0.4);
    border: none;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-size: 0.7rem;
    padding: 10px 12px;
}

.cookie-btn-customize:hover {
    color: var(--secondary);
}

/* Cookie Options Panel */
.cookie-options {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    border-top: none;
}

.cookie-options.visible {
    max-height: 400px;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    padding-top: 15px;
}

.cookie-options-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cookie-option:last-of-type {
    border-bottom: none;
}

.cookie-option-info {
    flex: 1;
    padding-right: 20px;
}

.cookie-option-info strong {
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
}

.cookie-option-info p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.72rem;
    line-height: 1.5;
    margin: 4px 0 0;
}

.cookie-option-actions {
    padding-top: 12px;
    text-align: right;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 26px;
    transition: all 0.3s ease;
}

.cookie-toggle-slider::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-toggle input:checked+.cookie-toggle-slider {
    background: var(--secondary);
}

.cookie-toggle input:checked+.cookie-toggle-slider::before {
    transform: translateX(22px);
}

.cookie-toggle-disabled .cookie-toggle-slider {
    cursor: not-allowed;
    opacity: 0.5;
}

.cookie-toggle-disabled input:checked+.cookie-toggle-slider {
    background: rgba(201, 169, 110, 0.5);
}

@media (max-width: 768px) {
    .cookie-options-inner {
        padding: 0 20px;
    }

    .cookie-option {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cookie-option-info {
        padding-right: 0;
    }

    .cookie-option-actions {
        text-align: center;
        width: 100%;
    }
}

/* ============================================
   LEGAL PAGES (Privacy, Terms)
   ============================================ */
.legal-content {
    padding: 80px 0 100px;
    background: var(--cream);
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-updated {
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.legal-text h2 {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--primary);
}

.legal-text h3 {
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--primary);
}

.legal-text p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.9;
    margin-bottom: 15px;
    font-weight: 300;
}

.legal-text ul {
    margin: 10px 0 20px 20px;
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.9;
}

.legal-text ul li {
    margin-bottom: 8px;
    font-weight: 300;
}

.legal-text a {
    color: var(--secondary);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.legal-text a:hover {
    color: var(--accent);
}

.legal-info-box {
    background: white;
    border-left: 3px solid var(--secondary);
    padding: 25px 30px;
    margin: 20px 0 30px;
    box-shadow: var(--shadow-soft);
}

.legal-info-box p {
    margin-bottom: 6px;
    color: var(--text);
    font-weight: 400;
}

.legal-back {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
}

@media (max-width: 480px) {
    .legal-text h2 {
        font-size: 1.3rem;
    }

    .legal-info-box {
        padding: 20px;
    }
}

/* ============================================
   VIDEO SHOWCASE SECTION
   ============================================ */
.video-showcase {
    padding: 120px 0 140px;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.video-showcase-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 20%, rgba(201, 169, 110, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(201, 169, 110, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.video-showcase-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.video-showcase-header h2 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.video-showcase-header p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

.video-showcase-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.video-showcase-frame {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(201, 169, 110, 0.15);
}

/* Corner Accents */
.video-showcase-accent {
    position: absolute;
    width: 60px;
    height: 60px;
    z-index: 5;
    pointer-events: none;
}

.video-accent-tl {
    top: -1px;
    left: -1px;
    border-top: 2px solid var(--secondary);
    border-left: 2px solid var(--secondary);
}

.video-accent-br {
    bottom: -1px;
    right: -1px;
    border-bottom: 2px solid var(--secondary);
    border-right: 2px solid var(--secondary);
}

.showcase-video {
    width: 100%;
    display: block;
    background: #000;
    cursor: pointer;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* Custom Play Overlay */
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: rgba(13, 15, 20, 0.55);
    z-index: 4;
    cursor: pointer;
    transition: background 0.5s ease, opacity 0.5s ease;
}

.video-play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-play-overlay:hover {
    background: rgba(13, 15, 20, 0.4);
}

.video-play-btn {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(201, 169, 110, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: all 0.5s var(--transition-smooth);
    position: relative;
}

.video-play-btn::before {
    content: '';
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 110, 0.2);
    animation: videoPulse 2s ease-in-out infinite;
}

.video-play-overlay:hover .video-play-btn {
    background: rgba(201, 169, 110, 0.3);
    transform: scale(1.08);
    border-color: var(--secondary);
}

.video-play-btn svg {
    margin-left: 4px;
}

.video-play-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.4s ease;
}

.video-play-overlay:hover .video-play-label {
    color: rgba(255, 255, 255, 0.9);
}

@keyframes videoPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.15);
        opacity: 0;
    }
}

/* Video Section Responsive */
@media (max-width: 968px) {
    .video-showcase {
        padding: 80px 0 100px;
    }

    .video-showcase-header h2 {
        font-size: 2.5rem;
    }

    .video-play-btn {
        width: 70px;
        height: 70px;
    }

    .video-play-btn::before {
        width: 90px;
        height: 90px;
    }

    .video-play-btn svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .video-showcase {
        padding: 60px 0 80px;
    }

    .video-showcase-header h2 {
        font-size: 2rem;
    }

    .video-play-btn {
        width: 60px;
        height: 60px;
    }

    .video-play-btn::before {
        width: 76px;
        height: 76px;
    }

    .video-showcase-accent {
        width: 30px;
        height: 30px;
    }

    .video-play-label {
        font-size: 0.65rem;
    }
}

/* ============================================
   SMOOTH SCROLL WRAPPER (Lenis Overrides)
   ============================================ */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}