/* ===== CSS VARIABLES ===== */
:root {
    /* Colors corporatius */
    --color-primary: #B22222;      /* Vermell corporatiu de luxe */
    --color-black: #1a1a1a;        /* Negre elegant */
    --color-gold: #D4A574;         /* Daurat suau */
    --color-beige: #F5F3F0;        /* Beige clar */
    --color-white: #FFFFFF;
    --color-charcoal: #2F2F2F;     /* Gris carbó per gradient */
    
    /* Colors secundaris */
    --color-gray-light: #f8f8f8;
    --color-gray-medium: #888;
    --color-gray-dark: #333;
    
    /* Tipografia */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    /* Espaiats */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;
    
    /* Transicions */
    --transition: all 0.3s ease;
    
    /* Ombres */
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2);
}

/* ===== RESET I BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-dark);
    background-color: var(--color-white);
    overflow-x: hidden;
}

/* ===== UTILITATS ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
    border-radius: 2px;
}

/* Botons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, #C8975F 100%);
    color: var(--color-black);
    border: 2px solid transparent;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #E6D7C3 0%, var(--color-gold) 100%);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.98) 0%, 
        rgba(25, 25, 25, 0.96) 30%,
        rgba(47, 47, 47, 0.94) 70%,
        rgba(20, 20, 20, 0.98) 100%);
    backdrop-filter: blur(25px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(178, 34, 34, 0.2);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.navbar {
    padding: 1.5rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.nav-logo {
    display: flex;
    align-items: center;
}

/* Logo de luxe amb jerarquia visual */
.logo-text-custom {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s ease;
}

.logo-text-custom:hover {
    transform: translateX(3px);
}

.logo-full {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    text-shadow: 
        0 2px 4px rgba(0,0,0,0.3),
        0 0 20px rgba(178, 34, 34, 0.3);
    position: relative;
}

.logo-text-custom:hover .logo-full {
    color: #DC2626;
    text-shadow: 
        0 2px 6px rgba(0,0,0,0.4),
        0 0 25px rgba(220, 38, 38, 0.5);
    letter-spacing: 1.5px;
}



.nav-menu {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: var(--spacing-xs) var(--spacing-sm);
    text-transform: capitalize;
}

.nav-link:hover {
    color: var(--color-gold);
    transform: translateY(-1px);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--color-gold) 50%, 
        transparent 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.nav-link.active {
    color: var(--color-gold);
}

.nav-link.active::before {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.bar {
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--color-white) 0%, 
        var(--color-gold) 100%);
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(245, 243, 240, 0.6) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.8) 0%, transparent 60%),
        linear-gradient(135deg, 
            #FEFEFE 0%, 
            #F9F7F4 25%, 
            #F5F3F0 50%,
            #F1EFEC 75%,
            #FDFBF8 100%);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 50% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 70%),
        radial-gradient(ellipse at 30% 70%, rgba(245, 243, 240, 0.2) 0%, transparent 50%),
        linear-gradient(180deg, 
            rgba(255,255,255,0.2) 0%, 
            rgba(250,248,245,0.1) 50%, 
            rgba(248,246,243,0.3) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--color-white);
    z-index: 1;
    position: relative;
}

/* Nou sistema de títols amb jerarquia clara */
.hero-titles {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.hero-main-title {
    font-family: var(--font-serif);
    font-size: 4.2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 var(--spacing-sm);
    line-height: 1.1;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(178, 34, 34, 0.15);
    transition: all 0.3s ease;
}

.hero-sub-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-gold);
    margin: 0 0 var(--spacing-md);
    line-height: 1.3;
    letter-spacing: 0.5px;
    opacity: 0.9;
    text-shadow: 0 1px 4px rgba(212, 165, 116, 0.2);
}

.hero-description {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(26, 26, 26, 0.7);
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.6;
    letter-spacing: 0.2px;
    text-align: center;
}

.hero-gallery {
    display: flex;
    justify-content: center;
    margin: var(--spacing-xl) 0;
}

.hero-jewelry-showcase {
    position: relative;
    width: 350px;
    height: 220px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 
        0 12px 40px rgba(0,0,0,0.08),
        0 4px 15px rgba(178, 34, 34, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(250, 248, 245, 0.9) 100%);
    padding: 10px;
    animation: showcaseFloat 6s ease-in-out infinite alternate;
}

@keyframes showcaseFloat {
    from {
        transform: translateY(0px) rotateY(0deg);
    }
    to {
        transform: translateY(-8px) rotateY(2deg);
    }
}

.hero-jewelry-showcase:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.12),
        0 8px 25px rgba(178, 34, 34, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.9),
        0 0 40px rgba(212, 165, 116, 0.2);
}

.jewelry-showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: var(--transition);
}

.hero-jewelry-showcase:hover .jewelry-showcase-img {
    transform: scale(1.05);
    filter: brightness(1.1) saturate(1.1);
}

.jewelry-showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        transparent 0%, 
        rgba(139, 29, 29, 0.1) 50%,
        rgba(139, 29, 29, 0.3) 100%);
    border-radius: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: var(--spacing-md);
    opacity: 0;
    transition: var(--transition);
}

.hero-jewelry-showcase:hover .jewelry-showcase-overlay {
    opacity: 1;
}

.showcase-label {
    background: linear-gradient(135deg, 
        rgba(212, 165, 116, 0.95) 0%, 
        rgba(183, 62, 62, 0.85) 100%);
    color: var(--color-white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    backdrop-filter: blur(15px);
    text-align: center;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-jewelry-showcase:hover .showcase-label {
    transform: translateY(0);
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-beige);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-gray-dark);
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-gray-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img, .location-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.about-image, .location-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.location-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.location-image .location-img {
    height: 300px;
}

.location-images .location-image:hover .location-img {
    transform: scale(1.05);
}

.about-image-overlay, .location-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.3), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: var(--spacing-md);
    opacity: 0;
    transition: var(--transition);
}

.about-image:hover .about-image-overlay,
.location-image:hover .location-image-overlay {
    opacity: 1;
}

.about-badge, .location-badge {
    background: rgba(183, 62, 62, 0.95);
    color: var(--color-white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

.badge-year {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-gold);
}

.badge-text {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.95;
}

.location-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-weight: 600;
}

.location-badge i {
    color: var(--color-gold);
}

.location-badge .fa-snowflake {
    color: #87CEEB;
}

.location-badge .fa-sun {
    color: #FFD700;
}

.location-image:nth-child(1) .location-image-overlay {
    background: linear-gradient(45deg, rgba(135, 206, 235, 0.2), transparent);
}

.location-image:nth-child(2) .location-image-overlay {
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), transparent);
}

/* ===== COLLECTIONS SECTION ===== */
.collections {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-white);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.collection-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background-color: var(--color-white);
    border-radius: 15px;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    border: 2px solid transparent;
    text-align: left;
}

.collection-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(212, 165, 116, 0.3);
}

/* Contenidor de la imatge */
.collection-image {
    position: relative;
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 8px;
    flex-shrink: 0;
}

.collection-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.collection-item:hover .collection-img {
    transform: scale(1.05);
    filter: brightness(1.05) saturate(1.1);
}

/* Overlay amb efecte gradient */
.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        transparent 0%, 
        rgba(0,0,0,0.05) 40%,
        rgba(0,0,0,0.2) 70%,
        rgba(0,0,0,0.3) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

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

.collection-overlay .collection-icon {
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.collection-item:hover .collection-overlay .collection-icon {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.collection-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
    font-size: 0.9rem;
    backdrop-filter: blur(6px);
    box-shadow: 
        0 2px 10px rgba(0,0,0,0.15),
        0 0 0 1px rgba(212, 165, 116, 0.3);
    transition: all 0.3s ease;
}

/* Overlays temàtics personalitzats per col·lecció */
.collection-item:nth-child(1) .collection-overlay {
    background: linear-gradient(
        135deg, 
        transparent 0%, 
        rgba(212, 165, 116, 0.05) 40%,
        rgba(212, 165, 116, 0.15) 70%,
        rgba(212, 165, 116, 0.25) 100%
    );
}

.collection-item:nth-child(1) .collection-icon {
    color: var(--color-gold);
    box-shadow: 
        0 8px 32px rgba(212, 165, 116, 0.4),
        0 0 0 2px var(--color-gold);
}

.collection-item:nth-child(2) .collection-overlay {
    background: linear-gradient(
        135deg, 
        transparent 0%, 
        rgba(139, 29, 29, 0.05) 40%,
        rgba(139, 29, 29, 0.15) 70%,
        rgba(139, 29, 29, 0.25) 100%
    );
}

.collection-item:nth-child(2) .collection-icon {
    color: var(--color-primary);
    box-shadow: 
        0 8px 32px rgba(139, 29, 29, 0.4),
        0 0 0 2px var(--color-primary);
}

.collection-item:nth-child(3) .collection-overlay {
    background: linear-gradient(
        135deg, 
        transparent 0%, 
        rgba(112, 128, 144, 0.05) 40%,
        rgba(112, 128, 144, 0.15) 70%,
        rgba(112, 128, 144, 0.25) 100%
    );
}

.collection-item:nth-child(3) .collection-icon {
    color: #708090;
    box-shadow: 
        0 8px 32px rgba(112, 128, 144, 0.4),
        0 0 0 2px #708090;
}

.collection-item:nth-child(4) .collection-overlay {
    background: linear-gradient(
        135deg, 
        transparent 0%, 
        rgba(147, 112, 219, 0.05) 40%,
        rgba(147, 112, 219, 0.15) 70%,
        rgba(147, 112, 219, 0.25) 100%
    );
}

.collection-item:nth-child(4) .collection-icon {
    color: #9370DB;
    box-shadow: 
        0 8px 32px rgba(147, 112, 219, 0.4),
        0 0 0 2px #9370DB;
}

.collection-content {
    flex: 1;
}

.collection-title {
    font-family: var(--font-serif);
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--color-black);
    margin: 0 0 var(--spacing-xs);
    transition: var(--transition);
    line-height: 1.2;
}

.collection-item:hover .collection-title {
    color: var(--color-primary);
}

.collection-description {
    color: var(--color-gray-dark);
    line-height: 1.6;
    margin: 0;
    font-size: 1.05rem;
    font-weight: 400;
    opacity: 0.9;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-beige);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.service-card {
    background-color: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-gold);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.4rem;
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--color-black);
    margin-bottom: var(--spacing-sm);
}

.service-description {
    color: var(--color-gray-medium);
    line-height: 1.5;
}

/* ===== LOCATION SECTION ===== */
.location {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-white);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: flex-start;
}

.location-description {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-gray-dark);
    line-height: 1.7;
}



/* ===== CONTACT SECTION ===== */
.contact {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-beige);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background-color: var(--color-white);
    border-radius: 10px;
    box-shadow: var(--shadow-light);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--color-black);
    margin-bottom: var(--spacing-xs);
}

.contact-details p {
    color: var(--color-gray-medium);
    margin: 0;
}

.contact-details a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--color-gold);
}

.address-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    margin-top: var(--spacing-xs);
    opacity: 0.8;
    transition: var(--transition);
}

.address-link:hover {
    opacity: 1;
    color: var(--color-primary) !important;
}

.address-link i {
    font-size: 0.7rem;
}

.contact-map {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-map .map-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.contact-map .map-container:hover {
    box-shadow: var(--shadow-heavy);
}

.contact-map iframe {
    border-radius: 10px;
    transition: var(--transition);
}

.map-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
    background: rgba(183, 62, 62, 0.95);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.map-link:hover {
    background: var(--color-primary);
    transform: translateY(-1px);
    box-shadow: var(--shadow-medium);
    color: var(--color-white);
}

.map-link i {
    font-size: 0.75rem;
}

/* ===== FOOTER ===== */
/* Footer de luxe coherent amb header */
.footer {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.98) 0%, 
        rgba(25, 25, 25, 0.96) 30%,
        rgba(47, 47, 47, 0.94) 70%,
        rgba(20, 20, 20, 0.98) 100%);
    color: var(--color-white);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
    border-top: 1px solid rgba(178, 34, 34, 0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(178, 34, 34, 0.3) 50%, 
        transparent 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: var(--spacing-xl);
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Left: Brand */
.footer-brand {
    text-align: left;
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 var(--spacing-xs);
    letter-spacing: 1px;
    text-shadow: 
        0 2px 4px rgba(0,0,0,0.3),
        0 0 15px rgba(178, 34, 34, 0.2);
    transition: all 0.3s ease;
}

.footer-logo-text:hover {
    color: #DC2626;
    text-shadow: 
        0 2px 6px rgba(0,0,0,0.4),
        0 0 20px rgba(220, 38, 38, 0.3);
}

.footer-location {
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 300;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Center: Navigation */
.footer-navigation {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    align-items: center;
}

.footer-link {
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: var(--spacing-xs) 0;
    position: relative;
    text-transform: capitalize;
}

.footer-link:hover {
    color: var(--color-gold);
    transform: translateY(-1px);
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.footer-link:hover::after {
    width: 100%;
}

/* Right: Company Info */
.footer-company {
    text-align: right;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0 0 var(--spacing-xs);
    letter-spacing: 0.3px;
}

.footer-legal {
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 300;
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.2px;
}

.company-name {
    color: var(--color-gold);
    font-weight: 500;
    transition: all 0.3s ease;
}

.company-name:hover {
    color: #E6D7C3;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .navbar {
        padding: 1.2rem 0;
    }
    
    .nav-container {
        padding: 0 var(--spacing-md);
    }
    
    .logo-full {
        font-size: 2.2rem;
        letter-spacing: 0.8px;
    }
    
    .nav-menu {
        gap: var(--spacing-md);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-main-title {
        font-size: 3.2rem;
        letter-spacing: -0.3px;
    }
    
    .hero-sub-title {
        font-size: 1.6rem;
        letter-spacing: 0.3px;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-gallery {
        margin: var(--spacing-md) 0;
    }
    
    .hero-jewelry-showcase {
        width: 280px;
        height: 180px;
        padding: 6px;
    }
    
    .showcase-label {
        font-size: 0.9rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content,
    .location-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .about-stats {
        justify-content: center;
    }
    
    /* Collections responsive per tablets */
    .collections-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: var(--spacing-md);
    }
    
    .collection-image {
        width: 45px;
        height: 45px;
    }
    
    .collection-icon {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .collection-title {
        font-size: 1.6rem;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, 
            rgba(0, 0, 0, 0.98) 0%, 
            rgba(25, 25, 25, 0.96) 50%,
            rgba(0, 0, 0, 0.98) 100%);
        backdrop-filter: blur(25px);
        flex-direction: column;
        padding: var(--spacing-lg);
        gap: var(--spacing-md);
        border-top: 1px solid rgba(178, 34, 34, 0.3);
        box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Footer responsive per tablets */
    .footer {
        padding: var(--spacing-xl) 0 var(--spacing-md);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
        padding: 0 var(--spacing-md);
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-logo-text {
        font-size: 1.8rem;
    }
    
    .footer-navigation {
        gap: var(--spacing-md);
    }
    
    .footer-company {
        text-align: center;
    }
}

/* Mòbils */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .navbar {
        padding: 1rem 0;
    }
    
    .nav-container {
        padding: 0 var(--spacing-sm);
    }
    
    .logo-full {
        font-size: 1.8rem;
        letter-spacing: 0.5px;
    }
    
    .contact-map iframe {
        height: 300px;
    }
    
    .map-overlay {
        top: 10px;
        right: 10px;
    }
    
    .map-link {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .hero-main-title {
        font-size: 2.8rem;
        letter-spacing: -0.2px;
    }
    
    .hero-sub-title {
        font-size: 1.4rem;
        letter-spacing: 0.2px;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 90%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .collection-image {
        width: 40px;
        height: 40px;
    }
    
    .collection-icon {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
    }
    
    .collection-title {
        font-size: 1.4rem;
    }
    
    .collection-description {
        font-size: 0.95rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .about-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .hero-gallery {
        margin: var(--spacing-sm) 0;
    }
    
    .hero-jewelry-showcase {
        width: 240px;
        height: 150px;
        padding: 5px;
    }
    
    .showcase-label {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    /* Footer responsive per mòbils */
    .footer {
        padding: var(--spacing-lg) 0 var(--spacing-sm);
    }
    
    .footer-content {
        padding: 0 var(--spacing-sm);
        gap: var(--spacing-md);
    }
    
    .footer-logo-text {
        font-size: 1.6rem;
        letter-spacing: 0.5px;
    }
    
    .footer-navigation {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .footer-link {
        font-size: 0.9rem;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
    }
    
    .footer-legal {
        font-size: 0.75rem;
        line-height: 1.5;
    }
    
    .about-img {
        height: 300px;
    }
    
    .location-images .location-img {
        height: 250px;
    }
    
    .about-badge, .location-badge {
        padding: var(--spacing-xs) var(--spacing-sm);
        gap: 4px;
    }
    
    .badge-year {
        font-size: 1.1rem;
    }
    
    .badge-text {
        font-size: 0.9rem;
    }
    
    .location-images {
        gap: var(--spacing-sm);
    }
}

/* Animacions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.section-title,
.collection-item,
.service-card {
    animation: fadeInUp 0.6s ease-out;
}