/* =====================================================
   ELVIRA SPOSI - Stile Opulento & Dorato
   Design Premium per Atelier di Alta Moda
   ===================================================== */

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

:root {
    /* Oro moderno - champagne/rosé più delicato */
    --gold-primary: #c9a962;
    --gold-light: #e8d5a3;
    --gold-dark: #a8864a;
    --gold-gradient: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 50%, var(--gold-primary) 100%);
    --gold-subtle: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    --gold-shine: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    --dark-luxury: linear-gradient(180deg, #1a1715 0%, #0d0b0a 100%);
    --cream-luxury: linear-gradient(180deg, #faf8f5 0%, #f0ebe3 100%);
}

/* =====================================================
   HERO - Impatto Massimo
   ===================================================== */
.hero {
    min-height: 100vh;
}

.hero-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.2) 30%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.hero-content {
    max-width: 900px;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.hero-subtitle::before,
.hero-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary));
}

.hero-subtitle::before {
    right: calc(100% + 20px);
}

.hero-subtitle::after {
    left: calc(100% + 20px);
    background: linear-gradient(90deg, var(--gold-primary), transparent);
}

.hero-logo {
    max-height: 150px;
    filter: drop-shadow(0 0 30px rgba(201, 169, 98, 0.3));
}

.hero-description {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    line-height: 1.9;
    max-width: 650px;
    margin: 0 auto 2.5rem;
}

/* Bottoni Hero moderni */
.hero-buttons .btn-primary {
    background: var(--gold-subtle);
    border: none;
    color: #fff;
    font-weight: 500;
    padding: 1.2rem 3.5rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.05em;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(201, 169, 98, 0.3);
    filter: brightness(1.1);
}

.hero-buttons .btn-outline.btn-white {
    border: 1px solid rgba(201, 169, 98, 0.6);
    color: var(--gold-light);
    background: transparent;
}

.hero-buttons .btn-outline.btn-white:hover {
    background: rgba(201, 169, 98, 0.15);
    border-color: var(--gold-primary);
    color: #fff;
}

/* Scroll elegante */
.hero-scroll {
    color: var(--gold-primary);
}

.hero-scroll::after {
    background: linear-gradient(to bottom, var(--gold-primary), transparent);
    height: 60px;
}

/* =====================================================
   SEZIONE HEADER - Divisori Opulenti
   ===================================================== */
.section-header .subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.4rem;
    color: var(--gold-primary);
    letter-spacing: 0.1em;
}

.section-divider {
    width: 200px;
    height: 2px;
    background: var(--gold-gradient);
    position: relative;
    margin: 1.5rem auto 2.5rem;
}

.section-divider::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--gold-primary);
    border: 2px solid #fff;
    box-shadow: 0 0 10px rgba(201, 169, 98, 0.5);
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 0.05em;
}

/* =====================================================
   ABOUT - Layout Asimmetrico Lussuoso
   ===================================================== */
.about-preview {
    background: var(--cream-luxury);
    position: relative;
    overflow: hidden;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(201, 169, 98, 0.03) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.about-image {
    position: relative;
    padding: 25px;
}

/* Cornice elegante esterna */
.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--gold-primary);
    z-index: 1;
    pointer-events: none;
}

/* Cornice interna sfalsata */
.about-image::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid rgba(201, 169, 98, 0.5);
    z-index: 1;
    pointer-events: none;
}

.about-image img {
    position: relative;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.02);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.2),
        0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Decorazione angolo superiore sinistro */
.about-image-wrapper {
    position: relative;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 60px;
    height: 60px;
    border-top: 3px solid var(--gold-primary);
    border-left: 3px solid var(--gold-primary);
    z-index: 2;
}

/* Decorazione angolo inferiore destro */
.about-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 60px;
    height: 60px;
    border-bottom: 3px solid var(--gold-primary);
    border-right: 3px solid var(--gold-primary);
    z-index: 2;
}

/* Elemento decorativo dorato sfumato */
.about-image-decoration {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: var(--gold-gradient);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(20px);
    z-index: -1;
}

.about-content .subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold-primary);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-content .subtitle::before {
    content: '';
    width: 50px;
    height: 2px;
    background: var(--gold-gradient);
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

/* =====================================================
   COLLEZIONI - Cards Sfalsate con Effetto Lusso
   ===================================================== */
.collections {
    background: linear-gradient(180deg, #1a1715 0%, #0d0c0b 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

/* Pattern decorativo di sfondo */
.collections::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(201, 169, 98, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(201, 169, 98, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Linea decorativa superiore */
.collections::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: var(--gold-gradient);
}

.collections .section-header {
    position: relative;
    z-index: 1;
}

/* Header con ornamenti eleganti */
.collections-header {
    padding: 2rem 0 3rem;
}

.collections .section-header .subtitle,
.collections .section-header h2 {
    color: #fff;
}

.collections .section-header .subtitle {
    font-size: 1rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.collections .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

/* Ornamenti decorativi */
.header-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.header-ornament.bottom {
    margin-bottom: 0;
    margin-top: 1.5rem;
}

.ornament-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    transition: width 0.5s ease;
}

.ornament-diamond {
    width: 12px;
    height: 12px;
    background: var(--gold-primary);
    transform: rotate(45deg);
    position: relative;
    transition: transform 0.5s ease;
}

.ornament-diamond::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #1a1715;
}

.collections .section-divider {
    display: none;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.collection-card {
    height: 550px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(201, 169, 98, 0.1);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease;
}

.collection-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.5),
        0 0 0 2px rgba(201, 169, 98, 0.3),
        0 0 60px rgba(201, 169, 98, 0.1);
}

/* Card centrale piu alta */
.collection-card:nth-child(2) {
    margin-top: -30px;
    height: 610px;
}

/* Cornice dorata interna */
.collection-card::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(201, 169, 98, 0);
    z-index: 10;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
    border-radius: 4px;
}

.collection-card:hover::before {
    border-color: rgba(201, 169, 98, 0.6);
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
}

/* Decorazione angoli */
.collection-card::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    border-top: 2px solid var(--gold-primary);
    border-left: 2px solid var(--gold-primary);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 11;
    pointer-events: none;
}

.collection-card:hover::after {
    opacity: 1;
    transform: translate(-5px, -5px);
}

/* Immagine con effetto zoom */
.collection-card img {
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), filter 0.5s ease;
}

.collection-card:hover img {
    transform: scale(1.1);
    filter: brightness(0.9);
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.7) 35%,
        rgba(0, 0, 0, 0.3) 60%,
        transparent 100%
    );
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 5;
}

/* Decorazione angolo inferiore destro */
.collection-overlay::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-bottom: 2px solid var(--gold-primary);
    border-right: 2px solid var(--gold-primary);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.collection-card:hover .collection-overlay::after {
    opacity: 1;
    transform: translate(5px, 5px);
}

.collection-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(10px);
    opacity: 0.9;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.collection-card:hover h3 {
    transform: translateY(0);
    opacity: 1;
}

.collection-card h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.collection-card p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin: 1rem 0;
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.5s ease 0.1s, opacity 0.5s ease 0.1s;
}

.collection-card:hover p {
    transform: translateY(0);
    opacity: 1;
}

.collection-link {
    color: var(--gold-primary);
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.5s ease 0.2s, opacity 0.5s ease 0.2s, color 0.3s ease;
}

.collection-card:hover .collection-link {
    transform: translateY(0);
    opacity: 1;
}

.collection-link:hover {
    color: #fff;
}

.collection-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-primary);
    transition: width 0.3s ease;
}

.collection-link:hover::before {
    width: 100%;
}

.collection-link::after {
    content: '\2192';
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.collection-card:hover .collection-link::after {
    transform: translateX(10px);
}

/* Numero decorativo della card */
.collection-number {
    position: absolute;
    top: 25px;
    right: 25px;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 300;
    color: rgba(201, 169, 98, 0.15);
    line-height: 1;
    z-index: 5;
    transition: color 0.5s ease;
}

.collection-card:hover .collection-number {
    color: rgba(201, 169, 98, 0.3);
}

/* =====================================================
   SERVIZI - Cards Eleganti con Bordo Dorato
   ===================================================== */
.services {
    background: linear-gradient(180deg, #faf9f7 0%, #f5f3f0 100%);
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}

/* Decorazione sfondo */
.services-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.services-bg-decoration::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 50%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201, 169, 98, 0.03) 0%, transparent 70%);
}

.services-bg-decoration::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -25%;
    width: 50%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201, 169, 98, 0.03) 0%, transparent 70%);
}

/* Header dei servizi */
.services-header {
    margin-bottom: 4rem;
}

.services-header .subtitle {
    color: var(--gold-primary);
}

.services-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #1a1715;
    margin-bottom: 1rem;
}

.section-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: #666;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
}

.services-header .ornament-line {
    background: linear-gradient(90deg, transparent, #c9a962, transparent);
}

.services-header .ornament-diamond::before {
    background: #faf9f7;
}

/* Griglia servizi */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

/* Card servizio */
.service-card {
    position: relative;
    padding: 0;
    text-align: center;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card-inner {
    background: #fff;
    padding: 3rem 2rem 2.5rem;
    position: relative;
    border: 1px solid rgba(201, 169, 98, 0.2);
    transition: all 0.5s ease;
    height: 100%;
}

/* Numero decorativo */
.service-card::before {
    content: attr(data-number);
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--gold-primary);
    background: #faf9f7;
    padding: 0 1rem;
    z-index: 2;
    opacity: 0.5;
    transition: opacity 0.5s ease;
}

.service-card:hover::before {
    opacity: 1;
}

/* Angoli decorativi */
.service-card-inner::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    border-top: 2px solid var(--gold-primary);
    border-left: 2px solid var(--gold-primary);
    opacity: 0;
    transition: all 0.5s ease;
}

.service-card-inner::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-bottom: 2px solid var(--gold-primary);
    border-right: 2px solid var(--gold-primary);
    opacity: 0;
    transition: all 0.5s ease;
}

.service-card:hover .service-card-inner::before,
.service-card:hover .service-card-inner::after {
    opacity: 1;
}

.service-card:hover .service-card-inner::before {
    top: 15px;
    left: 15px;
}

.service-card:hover .service-card-inner::after {
    bottom: 15px;
    right: 15px;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card:hover .service-card-inner {
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.08),
        0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--gold-primary);
}

/* Icona servizio */
.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 2rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    background: transparent;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gold-gradient);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    z-index: -1;
}

.service-card:hover .service-icon {
    color: #1a1715;
    border-color: transparent;
    transform: scale(1.1);
}

.service-card:hover .service-icon::after {
    width: 100%;
    height: 100%;
}

.service-card:hover .service-icon::before {
    transform: scale(1.2);
    opacity: 0;
}

/* Titolo servizio */
.service-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: #1a1715;
    transition: color 0.3s ease;
}

.service-card:hover h4 {
    color: var(--gold-primary);
}

/* Descrizione servizio */
.service-card p {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Linea decorativa in basso */
.service-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    margin: 0 auto;
    transition: width 0.5s ease;
}

.service-card:hover .service-line {
    width: 80px;
}

/* =====================================================
   GALLERIA - Layout Elegante Premium
   ===================================================== */
.gallery {
    background: #1a1715;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

/* Decorazione sfondo */
.gallery-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.gallery-bg-decoration::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 50%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201, 169, 98, 0.04) 0%, transparent 70%);
}

.gallery-bg-decoration::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -25%;
    width: 50%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201, 169, 98, 0.04) 0%, transparent 70%);
}

/* Linea decorativa superiore */
.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: var(--gold-gradient);
    z-index: 1;
}

/* Header galleria */
.gallery-header {
    margin-bottom: 3rem;
}

.gallery-header .subtitle {
    color: var(--gold-primary);
    font-size: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.gallery-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.1em;
}

.gallery-header .section-description {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-top: 0.5rem;
}

.gallery-header .ornament-diamond::before {
    background: #1a1715;
}

.gallery .section-header .subtitle,
.gallery .section-header h2 {
    color: #fff;
}

.gallery .filter-btn {
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(201, 169, 98, 0.35);
    background: transparent;
}

.gallery .filter-btn:hover {
    color: #fff;
    border-color: var(--gold-primary);
    background: rgba(201, 169, 98, 0.15);
}

.gallery .filter-btn.active {
    background: var(--gold-subtle);
    border-color: transparent;
    color: #fff;
}

/* Wrapper galleria con cornice */
.gallery-wrapper {
    position: relative;
    padding: 20px;
    border: 1px solid rgba(201, 169, 98, 0.2);
    margin-bottom: 3rem;
}

/* Cornice interna */
.gallery-wrapper::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(201, 169, 98, 0.1);
    pointer-events: none;
}

/* Angoli decorativi */
.gallery-wrapper::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gold-gradient);
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
}

.gallery-item {
    flex: 1 1 25%;
    min-width: 200px;
    height: 280px;
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), filter 0.4s ease;
}

/* Overlay dorato */
.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.9) 0%, rgba(168, 134, 74, 0.9) 100%);
    opacity: 0;
    z-index: 2;
    transition: opacity 0.4s ease;
}

/* Icona zoom */
.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 1.8rem;
    color: #1a1715;
    z-index: 3;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
}

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

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item:hover img {
    transform: scale(1.15);
    filter: brightness(0.8);
}

/* Cornice interna su hover */
.gallery-item .gallery-item-frame {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0);
    z-index: 4;
    pointer-events: none;
    transition: border-color 0.4s ease;
}

.gallery-item:hover .gallery-item-frame {
    border-color: rgba(255, 255, 255, 0.5);
}

/* CTA Galleria */
.gallery-cta {
    text-align: center;
}

.btn-gallery-more {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid rgba(201, 169, 98, 0.5);
    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-gallery-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-subtle);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-gallery-more:hover::before {
    left: 0;
}

.btn-gallery-more:hover {
    border-color: var(--gold-primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.2);
}

.btn-gallery-more i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.btn-gallery-more:hover i {
    transform: translateX(5px);
}

/* =====================================================
   TESTIMONIALS - Design Premium Elegante
   ===================================================== */
.testimonials {
    background: var(--cream-luxury);
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

/* Pattern di sfondo decorativo */
.testimonials-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.4;
}

.testimonials-bg-pattern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 50%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201, 169, 98, 0.05) 0%, transparent 70%);
}

.testimonials-bg-pattern::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -25%;
    width: 50%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201, 169, 98, 0.05) 0%, transparent 70%);
}

/* Linea decorativa superiore */
.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: var(--gold-gradient);
    z-index: 1;
}

/* Header testimonianze */
.testimonials-header {
    margin-bottom: 3rem;
}

.testimonials-header .subtitle {
    color: var(--gold-primary);
    font-size: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.testimonials-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #1a1715;
    letter-spacing: 0.1em;
}

.testimonials-header .section-description {
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

.testimonials-header .ornament-line {
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.testimonials-header .ornament-diamond::before {
    background: #faf8f5;
}

/* Wrapper testimonianze */
.testimonials-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: #fff;
    border: 1px solid rgba(201, 169, 98, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

/* Cornice interna */
.testimonials-wrapper::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(201, 169, 98, 0.15);
    pointer-events: none;
}

/* Angoli decorativi */
.testimonials-wrapper::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gold-gradient);
}

/* Icona virgoletta */
.testimonials-quote-icon {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(201, 169, 98, 0.3);
}

.testimonials-quote-icon i {
    color: #fff;
    font-size: 1.2rem;
}

/* Slider */
.testimonials-slider {
    max-width: 100%;
    position: relative;
}

.testimonial-item {
    display: none;
    text-align: center;
    padding: 1rem 0;
}

.testimonial-item.active {
    display: block;
    animation: fadeInTestimonial 0.5s ease;
}

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

.testimonial-content {
    padding: 1rem 2rem;
}

/* Stelle */
.testimonial-stars {
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    color: var(--gold-primary);
    font-size: 0.9rem;
    margin: 0 3px;
}

/* Testo testimonianza */
.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.9;
    color: #3a3a3a;
    margin-bottom: 2rem;
    position: relative;
}

/* Autore wrapper */
.testimonial-author-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.testimonial-author-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary));
}

.testimonial-author-line:last-child {
    background: linear-gradient(90deg, var(--gold-primary), transparent);
}

.testimonial-author-info {
    text-align: center;
}

.testimonial-author {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--gold-primary);
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.05em;
}

.testimonial-date {
    font-size: 0.85rem;
    color: #888;
    margin-top: 0.25rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Navigazione */
.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonials-nav button {
    width: 12px;
    height: 12px;
    border: 2px solid var(--gold-primary);
    background: transparent;
    border-radius: 0;
    transform: rotate(45deg);
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0;
}

.testimonials-nav button:hover {
    background: rgba(201, 169, 98, 0.3);
}

.testimonials-nav button.active {
    background: var(--gold-primary);
    box-shadow: 0 0 10px rgba(201, 169, 98, 0.4);
}

/* Pulsante lascia testimonianza */
.testimonials-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.btn-leave-review {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    padding: 1.1rem 2.5rem;
    border: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #c9a962 0%, #a8864a 100%);
    box-shadow: 0 8px 25px rgba(201, 169, 98, 0.5);
}

.btn-leave-review:hover {
    background: linear-gradient(135deg, #d4b76d 0%, #c9a962 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201, 169, 98, 0.6);
}

.btn-leave-review i {
    font-size: 0.95rem;
}

/* Modal Testimonianza */
.testimonial-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 23, 21, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(5px);
}

.testimonial-modal.active {
    display: flex;
    animation: fadeInModal 0.3s ease;
}

@keyframes fadeInModal {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.testimonial-modal-content {
    background: #fff;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(201, 169, 98, 0.2);
    animation: slideUpModal 0.4s ease;
}

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

/* Cornice interna modal */
.testimonial-modal-content::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid rgba(201, 169, 98, 0.15);
    pointer-events: none;
}

.testimonial-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #999;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
    z-index: 1;
}

.testimonial-modal-close:hover {
    color: var(--gold-primary);
}

.testimonial-modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.testimonial-modal-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #1a1715;
    margin-bottom: 0.5rem;
}

.testimonial-modal-header p {
    font-style: italic;
    color: #888;
    font-size: 0.95rem;
}

.testimonial-modal-header .header-ornament {
    margin-bottom: 1rem;
}

.testimonial-modal-header .ornament-line {
    width: 40px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.testimonial-modal-header .ornament-diamond {
    width: 8px;
    height: 8px;
}

.testimonial-modal-header .ornament-diamond::before {
    width: 4px;
    height: 4px;
    background: #fff;
}

/* Form testimonianza */
.testimonial-form .form-group {
    margin-bottom: 1.25rem;
}

.testimonial-form label {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.4rem;
    letter-spacing: 0.05em;
}

.testimonial-form input[type="text"],
.testimonial-form input[type="email"],
.testimonial-form select,
.testimonial-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #e0dbd5;
    border-radius: 0;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.testimonial-form input:focus,
.testimonial-form select:focus,
.testimonial-form textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
}

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

/* Star rating */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.25rem;
}

.star-rating input {
    display: none;
}

.star-rating label {
    cursor: pointer;
    font-size: 1.5rem;
    color: #ddd;
    transition: color 0.2s ease;
    margin-bottom: 0;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: var(--gold-primary);
}

/* Privacy checkbox */
.form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-privacy input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
    accent-color: var(--gold-primary);
}

.form-privacy label {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Submit button */
.btn-submit-review {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    margin-top: 0.5rem;
    background: var(--gold-subtle);
    color: #fff;
    border: none;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-review:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.btn-submit-review i {
    font-size: 0.9rem;
}

/* =====================================================
   CTA - Sezione Impatto Elegante
   ===================================================== */
.cta {
    position: relative;
    padding: 10rem 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 23, 21, 0.92) 0%,
        rgba(13, 11, 10, 0.88) 50%,
        rgba(26, 23, 21, 0.92) 100%
    );
    z-index: 1;
}

/* Pattern decorativo overlay */
.cta-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(201, 169, 98, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201, 169, 98, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Decorazioni angoli */
.cta-corner-decor {
    position: absolute;
    width: 120px;
    height: 120px;
    z-index: 2;
    pointer-events: none;
}

.cta-corner-decor.top-left {
    top: 30px;
    left: 30px;
    border-top: 2px solid var(--gold-primary);
    border-left: 2px solid var(--gold-primary);
}

.cta-corner-decor.top-right {
    top: 30px;
    right: 30px;
    border-top: 2px solid var(--gold-primary);
    border-right: 2px solid var(--gold-primary);
}

.cta-corner-decor.bottom-left {
    bottom: 30px;
    left: 30px;
    border-bottom: 2px solid var(--gold-primary);
    border-left: 2px solid var(--gold-primary);
}

.cta-corner-decor.bottom-right {
    bottom: 30px;
    right: 30px;
    border-bottom: 2px solid var(--gold-primary);
    border-right: 2px solid var(--gold-primary);
}

/* Linea superiore dorata */
.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: var(--gold-gradient);
    z-index: 3;
}

/* Linea inferiore dorata */
.cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: var(--gold-gradient);
    z-index: 3;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    border: 1px solid rgba(201, 169, 98, 0.2);
    background: rgba(26, 23, 21, 0.3);
    backdrop-filter: blur(5px);
}

/* Cornice interna */
.cta-content::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(201, 169, 98, 0.15);
    pointer-events: none;
}

/* Ornamenti CTA */
.cta-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.cta-ornament.bottom {
    margin-bottom: 0;
    margin-top: 2rem;
}

.cta-ornament .ornament-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.cta-ornament .ornament-diamond {
    width: 10px;
    height: 10px;
    background: var(--gold-primary);
    transform: rotate(45deg);
    position: relative;
}

.cta-ornament .ornament-diamond::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    background: #1a1715;
}

/* Sottotitolo CTA */
.cta-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--gold-primary);
    letter-spacing: 0.2em;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

/* Divisore con cuore */
.cta-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cta-divider span {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary));
}

.cta-divider span:last-child {
    background: linear-gradient(90deg, var(--gold-primary), transparent);
}

.cta-divider i {
    color: var(--gold-primary);
    font-size: 1rem;
    animation: pulse-heart 2s ease-in-out infinite;
}

@keyframes pulse-heart {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.cta-description {
    font-size: 1.15rem;
    max-width: 550px;
    margin: 0 auto 2.5rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-weight: 300;
}

/* Bottoni CTA */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    background: var(--gold-subtle);
    color: #fff;
    font-weight: 500;
    border: none;
    letter-spacing: 0.08em;
    padding: 1.2rem 3rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 169, 98, 0.3);
    filter: brightness(1.1);
}

.btn-cta i {
    transition: transform 0.3s ease;
}

.btn-cta:hover i {
    transform: translateX(5px);
}

.btn-cta-outline {
    background: transparent;
    border: 1px solid rgba(201, 169, 98, 0.5);
    color: var(--gold-light);
    padding: 1.2rem 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.4s ease;
}

.btn-cta-outline:hover {
    background: rgba(201, 169, 98, 0.15);
    border-color: var(--gold-primary);
    color: #fff;
    transform: translateY(-3px);
}

.btn-cta-outline i {
    font-size: 0.9rem;
}

/* =====================================================
   PRODOTTI - Cards Lussuose
   ===================================================== */
.products-grid {
    gap: 2.5rem;
}

.product-card {
    background: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    z-index: 10;
    transition: border-color 0.5s ease;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.product-card:hover::before {
    border-color: var(--gold-primary);
}

.product-badge {
    background: var(--gold-subtle);
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid #e8e4de;
}

.product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.product-card:hover .product-info h3 {
    color: var(--gold-primary);
}

/* =====================================================
   CONTATTI - Form Elegante
   ===================================================== */
.contact-form {
    background: #fff;
    padding: 3rem;
    border: 1px solid #e8e4de;
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
}

.form-group label {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
}

.form-group input,
.form-group textarea,
.form-group select {
    border: none;
    border-bottom: 2px solid #e8e4de;
    border-radius: 0;
    padding: 1rem 0;
    background: transparent;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-bottom-color: var(--gold-primary);
    outline: none;
}

.contact-form .btn-primary {
    background: var(--gold-subtle);
    color: #fff;
    font-weight: 500;
    border: none;
    width: 100%;
    padding: 1.2rem;
    letter-spacing: 0.05em;
}

.contact-form .btn-primary:hover {
    filter: brightness(1.1);
}

/* =====================================================
   FOOTER - Lusso Scuro
   ===================================================== */
.footer {
    background: var(--dark-luxury);
}

.footer h4 {
    font-family: 'Playfair Display', serif;
    color: var(--gold-primary);
    font-weight: 400;
    letter-spacing: 0.15em;
}

.footer .social-link {
    border: 1px solid rgba(201, 169, 98, 0.3);
    color: var(--gold-primary);
}

.footer .social-link:hover {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: #1a1a1a;
}

.footer-bottom {
    border-top-color: rgba(201, 169, 98, 0.2);
}

/* =====================================================
   PAGE HEADER - Interno Lussuoso
   ===================================================== */
.page-header {
    min-height: 50vh;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    z-index: 1;
    pointer-events: none;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    letter-spacing: 0.1em;
}

.breadcrumb {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold-primary);
}

.breadcrumb a {
    color: #fff;
    opacity: 0.7;
}

/* =====================================================
   TEAM - Cards Eleganti
   ===================================================== */
.team-member {
    text-align: center;
}

.team-member-image {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--gold-primary);
    border-radius: 50%;
    padding: 8px;
    background: #fff;
}

.team-member-image::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 50%;
}

.team-member-image img {
    border-radius: 50%;
}

.team-member h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 500;
}

.team-member p {
    color: var(--gold-primary);
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

/* =====================================================
   VALUES - Cards con Icona Dorata
   ===================================================== */
.value-card {
    background: #fff;
    padding: 2.5rem;
    border: 1px solid #e8e4de;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--gold-primary);
}

.value-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold-primary);
    font-size: 1.4rem;
    font-weight: 500;
    margin: 1rem 0;
}

/* =====================================================
   PRELOADER - Elegante
   ===================================================== */
.preloader {
    background: #1a1715;
}

.preloader-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.preloader-logo-img {
    max-width: 280px;
    max-height: 120px;
    width: auto;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(201, 169, 98, 0.3));
}

.preloader-logo-text {
    font-family: 'Tangerine', cursive;
    color: var(--gold-primary);
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: block;
}

.preloader-spinner {
    border: 2px solid rgba(201, 169, 98, 0.2);
    border-top-color: var(--gold-primary);
    width: 50px;
    height: 50px;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
    .collections-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .collection-card:nth-child(2) {
        margin-top: 0;
        height: 550px;
    }

    .collection-card::after,
    .collection-overlay::after {
        width: 30px;
        height: 30px;
    }

    /* Servizi tablet */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

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

    /* Gallery tablet */
    .gallery-item {
        flex: 1 1 33.333%;
        min-width: 180px;
        height: 240px;
    }

    .gallery-wrapper {
        padding: 15px;
    }

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

    .btn-gallery-more {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    /* CTA tablet */
    .cta-corner-decor {
        width: 80px;
        height: 80px;
    }

    .cta-content {
        padding: 2.5rem 1.5rem;
    }

    /* Testimonials tablet */
    .testimonials-wrapper {
        padding: 2.5rem 2rem;
        margin: 0 1rem;
    }

    .testimonial-text {
        font-size: 1.3rem;
    }

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

@media (max-width: 768px) {
    .collections {
        padding: 5rem 0;
    }

    .collections::after {
        width: 100px;
    }

    .collections .section-header h2 {
        font-size: 2.5rem;
        letter-spacing: 0.1em;
    }

    .header-ornament {
        margin-bottom: 1rem;
    }

    .header-ornament.bottom {
        margin-top: 1rem;
    }

    .ornament-line {
        width: 50px;
    }

    .ornament-diamond {
        width: 10px;
        height: 10px;
    }

    .ornament-diamond::before {
        width: 5px;
        height: 5px;
    }

    .collections-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }

    .collection-card {
        height: 450px;
        border-radius: 6px;
    }

    .collection-card:nth-child(2) {
        height: 450px;
    }

    .collection-card h3 {
        font-size: 2rem;
        transform: translateY(0);
        opacity: 1;
    }

    .collection-card p {
        transform: translateY(0);
        opacity: 1;
    }

    .collection-link {
        transform: translateY(0);
        opacity: 1;
    }

    /* Servizi responsive */
    .services {
        padding: 5rem 0;
    }

    .services-header h2 {
        font-size: 2.2rem;
    }

    .section-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card::before {
        font-size: 1.5rem;
        top: -12px;
    }

    .service-card-inner {
        padding: 2.5rem 1.5rem 2rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }

    .service-card h4 {
        font-size: 1.2rem;
    }

    .collection-card::after,
    .collection-overlay::after {
        display: none;
    }

    .collection-number {
        font-size: 3rem;
    }

    /* Gallery mobile */
    .gallery {
        padding: 5rem 0;
    }

    .gallery::before {
        width: 100px;
    }

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

    .gallery-header .section-description {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .gallery-wrapper {
        padding: 10px;
        margin-bottom: 2rem;
    }

    .gallery-wrapper::before {
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
    }

    .gallery-item {
        flex: 1 1 50%;
        min-width: 150px;
        height: 180px;
    }

    .gallery-item::after {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .btn-gallery-more {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        gap: 0.75rem;
    }

    .hero-subtitle::before,
    .hero-subtitle::after {
        display: none;
    }

    .about-image::before,
    .about-image::after {
        display: none;
    }

    .about-image {
        padding: 15px;
    }

    .about-image-wrapper::before,
    .about-image-wrapper::after {
        width: 40px;
        height: 40px;
    }

    .about-image-wrapper::before {
        top: -10px;
        left: -10px;
    }

    .about-image-wrapper::after {
        bottom: -10px;
        right: -10px;
    }

    .about-image-decoration {
        display: none;
    }

    /* Testimonials mobile */
    .testimonials {
        padding: 5rem 0;
    }

    .testimonials::before {
        width: 100px;
    }

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

    .testimonials-header .section-description {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .testimonials-wrapper {
        padding: 2rem 1rem;
        margin: 0;
    }

    .testimonials-wrapper::before {
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .testimonials-quote-icon {
        width: 40px;
        height: 40px;
        top: -20px;
    }

    .testimonials-quote-icon i {
        font-size: 1rem;
    }

    .testimonial-content {
        padding: 0.5rem;
    }

    .testimonial-text {
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .testimonial-author-wrapper {
        flex-direction: column;
        gap: 0.75rem;
    }

    .testimonial-author-line {
        width: 40px;
    }

    .testimonial-author-line:first-child {
        background: linear-gradient(180deg, transparent, var(--gold-primary));
        width: 1px;
        height: 30px;
    }

    .testimonial-author-line:last-child {
        display: none;
    }

    .testimonial-stars i {
        font-size: 0.8rem;
    }

    /* Testimonial modal mobile */
    .testimonial-modal-content {
        padding: 2rem 1.5rem;
        max-height: 95vh;
    }

    .testimonial-modal-content::before {
        top: 8px;
        left: 8px;
        right: 8px;
        bottom: 8px;
    }

    .testimonial-modal-header h3 {
        font-size: 1.4rem;
    }

    .btn-leave-review {
        font-size: 0.85rem;
    }

    /* CTA mobile */
    .cta {
        padding: 6rem 0;
    }

    .cta-corner-decor {
        width: 50px;
        height: 50px;
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .cta-corner-decor.top-left {
        top: 15px;
        left: 15px;
    }

    .cta-corner-decor.top-right {
        top: 15px;
        right: 15px;
    }

    .cta-corner-decor.bottom-left {
        bottom: 15px;
        left: 15px;
    }

    .cta-corner-decor.bottom-right {
        bottom: 15px;
        right: 15px;
    }

    .cta::before,
    .cta::after {
        width: 100px;
    }

    .cta-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .cta-content::before {
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .cta-subtitle {
        font-size: 0.9rem;
        letter-spacing: 0.15em;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .cta-divider span {
        width: 50px;
    }

    .cta-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-cta,
    .btn-cta-outline {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }

    .cta-ornament .ornament-line {
        width: 40px;
    }

    .cta-background {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .collection-card h3 {
        font-size: 2rem;
    }

    /* Gallery extra small */
    .gallery-item {
        flex: 1 1 50%;
        min-width: 120px;
        height: 150px;
    }

    .gallery-wrapper {
        padding: 8px;
    }

    .gallery-wrapper::before {
        display: none;
    }

    .btn-gallery-more {
        width: 100%;
        justify-content: center;
    }

    /* CTA extra small */
    .cta-corner-decor {
        display: none;
    }

    .cta-content {
        margin: 0 0.5rem;
        padding: 1.5rem 1rem;
    }
}
