:root {
            --gold: #C9A86C;
            --gold-light: #E8D5B7;
            --gold-dark: #A68B4B;
            --cream: #FAF7F2;
            --cream-dark: #F0EAE0;
            --charcoal: #2D2A26;
            --charcoal-light: #4A4540;
            --terracotta: #C67B5C;
            --sage: #8B9A7D;
            --blush: #E8C4B8;
            --christmas-red: #A63D40;
            --christmas-green: #3D5A47;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Josefin Sans', sans-serif;
            background-color: var(--cream);
            color: var(--charcoal);
            line-height: 1.7;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 400;
        }
        
        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
            background: linear-gradient(to bottom, var(--cream), transparent);
            transition: all 0.3s ease;
        }
        
        nav.scrolled {
            background: var(--cream);
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
            padding: 0.75rem 5%;
        }
        
        .logo img {
            height: 50px;
            width: auto;
            transition: height 0.3s ease;
        }
        
        nav.scrolled .logo img {
            height: 40px;
        }
        
        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--charcoal);
            font-size: 0.85rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            position: relative;
            font-weight: 400;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 8rem 5% 4rem;
            overflow: hidden;
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(ellipse at 20% 80%, var(--blush) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, var(--gold-light) 0%, transparent 40%),
                radial-gradient(ellipse at 60% 60%, var(--sage) 0%, transparent 60%);
            opacity: 0.15;
        }
        
        .hero-content {
            text-align: center;
            position: relative;
            z-index: 2;
            max-width: 900px;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--gold);
            color: var(--cream);
            padding: 0.5rem 1.5rem;
            font-size: 0.75rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: 2rem;
            animation: fadeInDown 0.8s ease;
        }
        
        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .hero h1 {
            font-size: clamp(3rem, 8vw, 6rem);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease 0.2s both;
        }
        
        .hero h1 em {
            font-style: italic;
            color: var(--gold-dark);
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .hero-subtitle {
            font-size: 1.1rem;
            color: var(--charcoal-light);
            max-width: 600px;
            margin: 0 auto 2.5rem;
            letter-spacing: 0.05em;
            animation: fadeInUp 0.8s ease 0.4s both;
        }
        
        .hero-cta {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.6s both;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2.5rem;
            font-family: 'Josefin Sans', sans-serif;
            font-size: 0.85rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }
        
        .btn-primary {
            background: var(--charcoal);
            color: var(--cream);
        }
        
        .btn-primary:hover {
            background: var(--gold-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(166, 139, 75, 0.3);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--charcoal);
            border: 1px solid var(--charcoal);
        }
        
        .btn-secondary:hover {
            background: var(--charcoal);
            color: var(--cream);
        }
        
        .location-highlight {
            margin-top: 3rem;
            padding: 1rem 2rem;
            background: var(--cream-dark);
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            animation: fadeInUp 0.8s ease 0.8s both;
        }
        
        .location-highlight svg {
            width: 20px;
            height: 20px;
            color: var(--terracotta);
        }
        
        .location-highlight span {
            font-size: 0.9rem;
            color: var(--charcoal-light);
        }
        
        .location-highlight strong {
            color: var(--charcoal);
            font-weight: 500;
        }
        
        /* Section Styles */
        section {
            padding: 6rem 5%;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-label {
            display: inline-block;
            font-size: 0.75rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--gold-dark);
            margin-bottom: 1rem;
        }
        
        .section-label::before,
        .section-label::after {
            content: '—';
            margin: 0 1rem;
            opacity: 0.5;
        }
        
        .section-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 1rem;
        }
        
        .section-subtitle {
            font-size: 1rem;
            color: var(--charcoal-light);
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Christmas Banner */
        .christmas-banner {
            background: linear-gradient(135deg, var(--christmas-green) 0%, #2a4233 100%);
            color: var(--cream);
            padding: 3rem 5%;
            position: relative;
            overflow: hidden;
        }
        
        .christmas-banner::before {
            content: '❄';
            position: absolute;
            font-size: 15rem;
            opacity: 0.05;
            top: -3rem;
            right: -2rem;
        }
        
        .christmas-content {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        
        .christmas-text h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--gold-light);
        }
        
        .christmas-text h2 em {
            color: var(--cream);
            font-style: italic;
        }
        
        .christmas-text p {
            opacity: 0.9;
            margin-bottom: 1.5rem;
        }
        
        .christmas-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--christmas-red);
            padding: 0.5rem 1rem;
            font-size: 0.75rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }
        
        .christmas-details {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            backdrop-filter: blur(10px);
        }
        
        .christmas-details h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--gold-light);
        }
        
        .christmas-info {
            list-style: none;
        }
        
        .christmas-info li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
            font-size: 0.9rem;
        }
        
        .christmas-info li svg {
            width: 18px;
            height: 18px;
            color: var(--gold);
            flex-shrink: 0;
            margin-top: 2px;
        }
        
        .christmas-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--gold-light);
            text-decoration: none;
            font-size: 0.85rem;
            margin-top: 1rem;
            transition: gap 0.3s ease;
        }
        
        .christmas-link:hover {
            gap: 1rem;
        }
        
        /* Store Locations Section */
        .stores {
            background: var(--cream-dark);
        }
        
        .stores-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .store-card {
            background: white;
            padding: 2.5rem;
            position: relative;
            box-shadow: 0 10px 40px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .store-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }
        
        .store-card.featured {
            border: 2px solid var(--gold);
        }
        
        .store-badge {
            position: absolute;
            top: -12px;
            left: 2rem;
            background: var(--gold);
            color: var(--cream);
            padding: 0.4rem 1rem;
            font-size: 0.7rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }
        
        .store-icon {
            width: 60px;
            height: 60px;
            background: var(--cream-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .store-icon svg {
            width: 28px;
            height: 28px;
            color: var(--gold-dark);
        }
        
        .store-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .store-card .store-type {
            font-size: 0.8rem;
            color: var(--gold-dark);
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }
        
        .store-card p {
            color: var(--charcoal-light);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }
        
        .store-info {
            border-top: 1px solid var(--cream-dark);
            padding-top: 1.5rem;
            margin-top: 1.5rem;
        }
        
        .store-info-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
            font-size: 0.9rem;
        }
        
        .store-info-item svg {
            width: 16px;
            height: 16px;
            color: var(--gold);
            flex-shrink: 0;
            margin-top: 3px;
        }
        
        .store-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--gold-dark);
            text-decoration: none;
            font-size: 0.85rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-top: 1rem;
            transition: gap 0.3s ease;
        }
        
        .store-link:hover {
            gap: 1rem;
        }
        
        /* About Section */
        .about {
            background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .about-video {
            position: relative;
        }
        
        .video-frame {
            position: relative;
            background: linear-gradient(135deg, var(--gold-light), var(--blush));
            padding: 1rem;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }
        
        .video-frame::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: -20px;
            bottom: -20px;
            border: 1px solid var(--gold);
            z-index: -1;
        }
        
        .video-frame video {
            width: 100%;
            height: auto;
            display: block;
            max-height: 500px;
            object-fit: cover;
        }
        
        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        .about-text h2 em {
            color: var(--gold-dark);
            font-style: italic;
        }
        
        .about-text p {
            margin-bottom: 1.5rem;
            color: var(--charcoal-light);
        }
        
        .about-stats {
            display: flex;
            gap: 3rem;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--gold-light);
        }
        
        .stat {
            text-align: center;
        }
        
        .stat-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            color: var(--gold-dark);
            font-weight: 500;
        }
        
        .stat-label {
            font-size: 0.75rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--charcoal-light);
        }
        
        /* Collections Section */
        .collections {
            background: var(--charcoal);
            color: var(--cream);
        }
        
        .collections .section-label {
            color: var(--gold);
        }
        
        .collections .section-subtitle {
            color: var(--cream);
            opacity: 0.7;
        }
        
        .collections-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .collection-card {
            background: var(--charcoal-light);
            padding: 2.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        
        .collection-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }
        
        .collection-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--terracotta));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        
        .collection-card:hover::before {
            transform: scaleX(1);
        }
        
        .collection-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            border: 1px solid var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .collection-icon svg {
            width: 32px;
            height: 32px;
            stroke: var(--gold);
        }
        
        .collection-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
        }
        
        .collection-card p {
            font-size: 0.9rem;
            opacity: 0.7;
            margin-bottom: 1.5rem;
        }
        
        .collection-link {
            color: var(--gold);
            text-decoration: none;
            font-size: 0.8rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s ease;
        }
        
        .collection-link:hover {
            gap: 1rem;
        }
        
        /* Custom Orders Section */
        .custom-orders {
            position: relative;
            overflow: hidden;
        }
        
        .custom-orders-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at 0% 50%, var(--gold-light) 0%, transparent 50%);
            opacity: 0.2;
        }
        
        .custom-content {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .custom-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .custom-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        .custom-text h2 em {
            color: var(--terracotta);
            font-style: italic;
        }
        
        .custom-features {
            list-style: none;
            margin: 2rem 0;
        }
        
        .custom-features li {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.25rem;
            padding-left: 1rem;
            border-left: 2px solid var(--gold-light);
        }
        
        .custom-features li strong {
            display: block;
            color: var(--charcoal);
            margin-bottom: 0.25rem;
        }
        
        .custom-features li span {
            font-size: 0.9rem;
            color: var(--charcoal-light);
        }
        
        .custom-card {
            background: white;
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            position: relative;
        }
        
        .custom-card::before {
            content: '"';
            font-family: 'Cormorant Garamond', serif;
            font-size: 8rem;
            color: var(--gold-light);
            position: absolute;
            top: 0;
            left: 1rem;
            line-height: 1;
        }
        
        .custom-card blockquote {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            font-style: italic;
            color: var(--charcoal);
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }
        
        .custom-card cite {
            font-size: 0.85rem;
            color: var(--charcoal-light);
            font-style: normal;
        }
        
        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
            color: var(--cream);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .cta h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1.5rem;
        }
        
        .cta p {
            opacity: 0.8;
            margin-bottom: 2rem;
        }
        
        .cta .btn-primary {
            background: var(--gold);
            color: var(--charcoal);
        }
        
        .cta .btn-primary:hover {
            background: var(--gold-light);
        }
        
        /* Footer */
        footer {
            background: var(--charcoal);
            color: var(--cream);
            padding: 4rem 5% 2rem;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto 3rem;
        }
        
        .footer-brand .footer-logo img {
            height: 40px;
            filter: brightness(0) invert(1);
            margin-bottom: 1rem;
        }
        
        .footer-brand p {
            font-size: 0.9rem;
            opacity: 0.7;
            margin-bottom: 1.5rem;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            border: 1px solid var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--gold);
            color: var(--charcoal);
        }
        
        .footer-column h4 {
            font-size: 0.85rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            color: var(--gold);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column li {
            margin-bottom: 0.75rem;
        }
        
        .footer-column a {
            color: var(--cream);
            text-decoration: none;
            font-size: 0.9rem;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }
        
        .footer-column a:hover {
            opacity: 1;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            font-size: 0.85rem;
            opacity: 0.6;
        }
        
        /* Mobile Responsive */
        @media (max-width: 968px) {
            .nav-links { display: none; }
            .about-grid, .custom-grid, .christmas-content { grid-template-columns: 1fr; gap: 2rem; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .stores-grid { grid-template-columns: 1fr; }
        }
        
        @media (max-width: 600px) {
            section { padding: 4rem 5%; }
            .about-stats { flex-direction: column; gap: 1.5rem; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
        }
        
        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        /* Univers créatifs - grille des deux domaines */
.custom-universes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.universe-card {
    background: white;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.universe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.universe-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--cream-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.universe-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--gold-dark);
}

.universe-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.universe-card p {
    font-size: 0.95rem;
    color: var(--charcoal-light);
    margin-bottom: 1.5rem;
}

.universe-list {
    list-style: none;
    text-align: left;
    padding-left: 1rem;
}

.universe-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--charcoal-light);
}

.universe-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.7rem;
}

/* Tags des créations */
.custom-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.tag {
    background: var(--cream-dark);
    color: var(--charcoal-light);
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--gold);
    color: var(--cream);
}

/* Instagram Feed Section */
.instagram-feed {
    padding: 6rem 5%;
    background: var(--cream-dark);
    text-align: center;
}

.instagram-grid {
    max-width: 1200px;
    margin: 0 auto 3rem;
    min-height: 300px;
}

.instagram-cta {
    margin-top: 2rem;
}

.instagram-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}